@charset "utf-8";

html {
  font-size: 100%;
}

/* ==========================
    カスタムプロパティ
========================== */
:root {
  --white: #fff;
  --primary: #20406c;
  --color-text-primary: #141414;
  --border_gray: #9d9d9d;
  --gray200: #262626;
  --gray100: #343434;
  --bg_gray: #e0e0e0;
}

body {
  width: 100%;
  min-width: 1440px;
  font-family: 'Noto Sans JP', sans-serif;
}

button:hover,
a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.en {
  font-family: 'Josefin Sans', sans-serif;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.visually_hidden {
  display: block !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  visibility: visible !important;
}

img {
  width: 100%;
  height: auto;
}

@media all and (min-width: 768px) {
  [href^='tel'] {
    pointer-events: none;
  }
}

/* ----------------------main--------------------- */

/* --------------js-animate------------ */
.js-animate-leftin {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease var(--delay, 0s);
  -webkit-transition: -webkit-clip-path 0.8s ease;
  will-change: clip-path;
}

.js-animate-leftin.is-animated {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.js-animate-fadeinup {
  opacity: 0;
  -webkit-transform: translate3d(0, 8%, 0);
  transform: translate3d(0, 8%, 0);
  transition: all 0.8s var(--delay, 0s);
}

.js-animate-fadeinup.is-animated {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* -----------------h2-------------- */

.title-ja {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-primary);
}

.title-en {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.8;
  text-transform: uppercase;
  color: var(--primary);
}

/* --------------catch-ja------------ */

.catch-ja {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: fit-content;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.catch-ja__inner-left {
  display: block;
  width: fit-content;
  margin-right: 40px;
  padding: 14px 12px 14px 24px;
  background-color: var(--color-text-primary);
}

.catch-ja__inner-right {
  display: block;
  width: fit-content;
  margin: -12px 0 0 0;
  padding: 14px 12px 14px 24px;
  text-align: end;
  background-color: var(--color-text-primary);
}

/* ---------------------catch-en------------------ */
.catch-en {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
  text-transform: uppercase;
}

/* -----------------------btn------------- */
.btn {
  display: block;
  width: fit-content;
  padding: 16px 84px 16px 32px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-primary);
  border: 1px solid var(--border_gray) !important;
  background-color: var(--white);
  position: relative;
}

.btn::after {
  content: '';
  display: block;
  width: 12px;
  aspect-ratio: 12/10;
  margin-left: 40px;
  background: url(/assets/img/vector_p.svg) center center/cover;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}

.btn:hover {
  opacity: 1;
  filter: grayscale(1) invert(1);
}

/* ------------vector-w-------------- */
.vector-w {
  width: 40px;
  aspect-ratio: 1/1;
  padding: 15px 14px;
  text-align: center;
  border: 1px solid var(--white);
}

.vector-w img {
  display: block;
  width: 100%;
}

/* ---------------gallery-item-btn---------- */
.gallery-item-btn {
  width: 48px;
  aspect-ratio: 1/1;
  padding: 19px 18px;
  text-align: center;
  border: 1px solid var(--border_gray);
}

.gallery-item-btn img {
  display: block;
  width: 100%;
  aspect-ratio: 12/10;
}

/* ----------------------second-mv------------------ */
.second-mv {
  background-color: var(--color-text-primary);
}

.second-mv__title {
  display: flex;
  column-gap: 40px;
  align-items: center;
  padding: 88px 0 25px;
}

.second-mv__title-en {
  display: block;
  width: fit-content;
  height: 51px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.second-mv__title-ja {
  display: block;
  width: fit-content;
  padding: 14px 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-text-primary);
  background-color: var(--white);
}

.breadcrumb {
  display: flex;
  padding-bottom: 40px;
  justify-content: end;
  column-gap: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}

.breadcrumb__item {
  width: fit-content;
}

.breadcrumb__link {
  display: block;
  padding-right: 21px;
  position: relative;
}

.breadcrumb__link::after {
  content: '';
  display: block;
  width: 7px;
  aspect-ratio: 5/7;
  background: url(/assets/img/triangle.svg) center center/cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.second-mv__image {
  width: 100%;
  height: 480px;
}

.second-mv__image img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ----------------------footer--------------------- */
.footer {
  padding-top: 64px;
  background-color: var(--color-text-primary);
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 40px 64px;
  border-bottom: 1px solid var(--white);
  color: var(--white);
}

.contact__block {
  width: fit-content;
}

.contact__title {
  margin-bottom: 24px;
}

.contact__title-ja {
  color: var(--white);
}

.contact__title-en {
  color: var(--white);
}

.contact__text {
  font-size: 16px;
  line-height: 1.8;
}

.contact-list {
  display: flex;
  column-gap: 80px;
  padding-bottom: 16px;
}

.contact-list li {
  display: block;
  width: fit-content;
}

.contact-item__title {
  padding-left: 32px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  position: relative;
}

.contact-item__title::before {
  content: '';
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.contact-list__item--mail .contact-item__title {
  margin-bottom: 16px;
}

.contact-list__item--mail .contact-item__title::before {
  background: url(/assets/img/icon_mail.svg) center center/cover;
}

.contact-list__item--mail a {
  display: block;
  padding: 16px 90px 16px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  border: 1px solid var(--white);
  position: relative;
}

.contact-list__item--mail a::after {
  content: '';
  display: block;
  width: 12px;
  aspect-ratio: 12/10;
  background: url(/assets/img/vector.svg) center center/cover;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}

.contact-list__item--tel .contact-item__title {
  margin-bottom: 8px;
}

.contact-list__item--tel .contact-item__title::before {
  background: url(/assets/img/icon_phon.svg) center center/cover;
}

.contact-list__item--tel a {
  display: block;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.8;
}

.footer-inner {
  padding: 64px 40px;
}

.footer-nav--large ul {
  display: flex;
  column-gap: 56px;
  justify-content: center;
  margin-bottom: 96px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.8;
}

.footer-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}

.footer-content__block--left {
  width: fit-content;
  color: var(--white);
}

.footer__logo {
  display: block;
  width: 222px;
  margin-bottom: 18px;
}

.footer-content__block--right {
  color: var(--border_gray);
}

.footer-nav--small ul {
  display: flex;
  column-gap: 24px;
  margin-bottom: 16px;
}

.footer-copyright {
  font-weight: 400;
  text-align: end;
}

@media screen and (max-width: 750px) {
  body {
    min-width: 0;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .wrap {
    max-width: calc((100 / 390) * 358 * 1vw);
    margin: 0 auto;
  }

  /* ---------------------main------------------------ */

  /* -----------------h2-------------- */

  .title-ja {
    font-size: calc((100 / 390) * 13 * 1vw);
  }

  .title-en {
    font-size: calc((100 / 390) * 44 * 1vw);
  }

  /* --------------catch-ja------------ */

  .catch-ja {
    font-size: calc((100 / 390) * 18 * 1vw);
  }

  .catch-ja__inner-left {
    margin-right: calc((100 / 390) * 32 * 1vw);
    padding: calc((100 / 390) * 12 * 1vw) calc((100 / 390) * 6 * 1vw) calc((100 / 390) * 12 * 1vw) calc((100 / 390) * 18 * 1vw);
  }

  .catch-ja__inner-right {
    margin: calc((100 / 390) * -10 * 1vw) 0 0 0;
    padding: calc((100 / 390) * 12 * 1vw) calc((100 / 390) * 6 * 1vw) calc((100 / 390) * 12 * 1vw) calc((100 / 390) * 18 * 1vw);
  }

  /* ---------------------catch-en------------------ */
  .catch-en {
    font-size: calc((100 / 390) * 39 * 1vw);
  }

  /* -----------------------btn------------- */
  .btn {
    padding: calc((100 / 390) * 16 * 1vw) calc((100 / 390) * 76 * 1vw) calc((100 / 390) * 16 * 1vw) calc((100 / 390) * 28 * 1vw);
    font-size: calc((100 / 390) * 15 * 1vw);
    border: calc((100 / 390) * 1 * 1vw) solid var(--border_gray);
  }

  .btn::after {
    width: calc((100 / 390) * 12 * 1vw);
    margin-left: calc((100 / 390) * 36 * 1vw);
    right: calc((100 / 390) * 28 * 1vw);
  }

  /* ------------vector-w-------------- */
  .vector-w {
    width: calc((100 / 390) * 32 * 1vw);
    padding: calc((100 / 390) * 12 * 1vw) calc((100 / 390) * 11 * 1vw);
    border: calc((100 / 390) * 1 * 1vw) solid var(--white);
  }

  /* -----------gallery-item-btn---------------- */
  .gallery-item-btn {
    width: calc((100 / 390) * 46 * 1vw);
    padding: calc((100 / 390) * 18.5 * 1vw) calc((100 / 390) * 17.5 * 1vw);
    border: calc((100 / 390) * 1 * 1vw) solid var(--border_gray);
  }

  /* ----------------------second-mv------------------ */
  .second-mv {
    background-color: var(--color-text-primary);
  }

  .second-mv__title {
    display: block;
    padding: calc((100 / 390) * 40 * 1vw) 0 calc((100 / 390) * 24 * 1vw);
  }

  .second-mv__title-en {
    width: 100%;
    height: calc((100 / 390) * 34 * 1vw);
    margin-bottom: calc((100 / 390) * 26 * 1vw);
    font-size: calc((100 / 390) * 48 * 1vw);
  }

  .second-mv__title-ja {
    display: block;
    padding: calc((100 / 390) * 10 * 1vw) calc((100 / 390) * 16 * 1vw);
    font-size: calc((100 / 390) * 18 * 1vw);
  }

  .breadcrumb {
    padding-bottom: calc((100 / 390) * 24 * 1vw);
    column-gap: calc((100 / 390) * 12 * 1vw);
    font-size: calc((100 / 390) * 15 * 1vw);
  }

  .breadcrumb__link {
    padding-right: calc((100 / 390) * 16 * 1vw);
  }

  .breadcrumb__link::after {
    width: calc((100 / 390) * 6 * 1vw);
  }

  .second-mv__image {
    height: calc((100 / 390) * 256 * 1vw);
  }

  .second-mv__image img {
    height: calc((100 / 390) * 256 * 1vw);
  }

  /* ----------------------footer--------------------- */
  .footer {
    padding-top: calc((100 / 390) * 56 * 1vw);
  }

  .contact {
    display: block;
    padding: 0 0 calc((100 / 390) * 32 * 1vw);
    border-bottom: calc((100 / 390) * 1 * 1vw) solid var(--white);
  }

  .contact__block {
    width: 100%;
    text-align: center;
  }

  .contact__title {
    margin-bottom: calc((100 / 390) * 16 * 1vw);
  }

  .contact__text {
    margin-bottom: calc((100 / 390) * 40 * 1vw);
    font-size: calc((100 / 390) * 15 * 1vw);
  }

  .contact-list {
    display: block;
    padding-bottom: 0;
  }

  .contact-list li {
    display: block;
    width: 100%;
    margin-bottom: calc((100 / 390) * 32 * 1vw);
  }

  .contact-list li:last-child {
    margin-bottom: 0;
  }

  .contact-item__title {
    width: fit-content;
    margin: 0 auto;
    padding-left: calc((100 / 390) * 28 * 1vw);
    font-size: calc((100 / 390) * 14 * 1vw);
  }

  .contact-item__title::before {
    width: calc((100 / 390) * 20 * 1vw);
  }

  .contact-list__item--mail .contact-item__title {
    margin: 0 auto calc((100 / 390) * 16 * 1vw);
  }

  .contact-list__item--mail a {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: calc((100 / 390) * 16 * 1vw) calc((100 / 390) * 76 * 1vw) calc((100 / 390) * 16 * 1vw) calc((100 / 390) * 28 * 1vw);
    font-size: calc((100 / 390) * 15 * 1vw);
    border: calc((100 / 390) * 1 * 1vw) solid var(--white);
  }

  .contact-list__item--mail a::after {
    width: calc((100 / 390) * 12 * 1vw);
    right: calc((100 / 390) * 28 * 1vw);
  }

  .contact-list__item--tel .contact-item__title {
    margin-bottom: calc((100 / 390) * 2 * 1vw);
  }

  .contact-list__item--tel a {
    font-size: calc((100 / 390) * 36 * 1vw);
  }

  .footer-inner {
    padding: calc((100 / 390) * 40 * 1vw) 0;
  }

  .footer-nav--large ul {
    flex-wrap: wrap;
    justify-content: start;
    column-gap: 0;
    row-gap: calc((100 / 390) * 24 * 1vw);
    margin-bottom: calc((100 / 390) * 48 * 1vw);
    font-size: calc((100 / 390) * 15 * 1vw);
  }

  .footer-nav--large li {
    width: 50%;
    text-align: center;
  }

  .footer-content {
    display: block;
    text-align: center;
    font-size: calc((100 / 390) * 12 * 1vw);
  }

  .footer-content__block--left {
    width: 100%;
    margin-bottom: calc((100 / 390) * 24 * 1vw);
  }

  .footer__logo {
    display: block;
    width: calc((100 / 390) * 206 * 1vw);
    margin: 0 auto calc((100 / 390) * 16 * 1vw);
  }

  .footer-content__block--right {
    color: var(--border_gray);
  }

  .footer-nav--small ul {
    display: flex;
    column-gap: calc((100 / 390) * 24 * 1vw);
    justify-content: center;
    margin-bottom: calc((100 / 390) * 8 * 1vw);
  }

  .footer-copyright {
    font-weight: 400;
    text-align: center;
  }
}
