@charset "UTF-8";

html {
  font-size: calc(10 / 375 * 100vw);
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-family: 'Zen Old Mincho', 游明朝, 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', HGS明朝E, MS明朝, serif;
  color: #01383c;
}

/* body.non_scroll {
  overflow: hidden;
} */

img {
  width: 100%;
}

.en {
  font-family: 'Cormorant Garamond', 'Zen Old Mincho', 游明朝, 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', HGS明朝E, MS明朝, serif;
}

.inner {
  padding: 0 2.4rem;
}

br.pc_on {
  display: none;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25.6rem;
  height: 4.8rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: calc(100% - 0.6rem);
  height: calc(100% - 0.6rem);
  border: 1px solid #fff;
}

.btn.white::before {
  border-color: #004f3c;
}

.btn.green {
  background-color: #004f3c;
}

.btn.gold {
  background-color: #b0974b;
}

.btn.white {
  background-color: #fff;
  color: #004f3c;
}

.btn.open_in_new {
  gap: 0.8rem;
}

.btn.open_in_new::after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../img/common/open_in_new.svg);
  background-size: cover;
}

.sec {
  padding: 6.4rem 0;
}

.sec_ttl {
  display: flex;
  flex-direction: column;
  margin-bottom: 4.8rem;
}

.sec_ttl.right {
  text-align: right;
}

.sec_ttl.center {
  text-align: center;
}

.sec_ttl .en {
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 1.1;
}

.sec_ttl .ja {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.fixed_bg {
  width: 100%;
  height: 100%;
  background-image: url(../img/common/nav_wrap_bg-sp.jpg);
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/* header */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 0 0 2.4rem;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.header_logo {
  width: 17rem;
}

.nav_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 12.8rem 0 2.4rem;
  background-color: rgba(30, 30, 30, 0.8);
  background-image: url(../img/common/nav_wrap_bg-sp.jpg);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  z-index: 99;
}

.nav_wrap::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.nav_wrap.active {
  visibility: visible;
  opacity: 1;
}

.nav_wrap .header_nav_list {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

.nav_wrap .header_nav_list .header_nav_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.6rem 0;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #fff;
}

.nav_wrap .header_nav_list .header_nav_item:not(:last-child) a {
  border-bottom: 1px solid #fff;
}

.nav_wrap .btn_list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.hamburger {
  width: 8rem;
  aspect-ratio: 1 / 1;
  background-image: url(../img/common/hamburger_open.svg);
  background-size: cover;
  position: relative;
  z-index: 100;
}

.hamburger.active {
  background-image: url(../img/common/hamburger_close.svg);
}

/* footer */
.cta {
  padding: 4rem 0;
  background-image: url(../img/common/cta_bg-sp.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

.cta::before {
  content: '';
  width: 12rem;
  aspect-ratio: 240 / 276;
  background-image: url(../img/common/cta_icon01.svg);
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}

.cta::after {
  content: '';
  width: 14rem;
  aspect-ratio: 32 / 28;
  background-image: url(../img/common/cta_icon02.svg);
  background-size: cover;
  position: absolute;
  top: -1.4rem;
  right: 0;
}

.cta .catch {
  margin-bottom: 3.2rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.2em;
  text-align: center;
}

.cta .text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 4.8rem;
}

.cta .btn_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}

.footer {
  background-image: url(../img/common/footer_bg-sp.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}

.footer::before {
  content: '';
  width: 8rem;
  aspect-ratio: 180 / 368;
  background-image: url(../img/common/footer_icon01.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.footer::after {
  content: '';
  width: 8rem;
  aspect-ratio: 180 / 368;
  background-image: url(../img/common/footer_icon02.png);
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
}

.footer .content_wrap {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  margin-bottom: 4rem;
}

.footer .footer_logo {
  width: 17rem;
  margin: 0 auto;
}

.footer .footer_nav {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer .footer_nav_list {
  display: flex;
  flex-direction: column;
}

.footer .footer_nav_list .footer_nav_item a {
  display: block;
  text-align: center;
  padding: 1.6rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.footer .footer_nav_list .footer_nav_item.open_in_new a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

.footer .footer_nav_list .footer_nav_item.open_in_new a::after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../img/common/open_in_new.svg);
  background-size: cover;
}

.footer .copyright {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 2;
  text-align: center;
  color: #fff;
}

/* lower */
.lower_header {
  height: 24rem;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  padding-bottom: 40px;
  background-image: url(../img/common/lower_header_bg-sp.jpg);
  background-size: cover;
}

.lower_ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #fff;
}

.lower_ttl .en {
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1;
}

.lower_ttl .ja {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.lower_catch {
  padding: 6.4rem 0 8rem;
  text-align: center;
}

.lower_catch .catch {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 2.4rem;
}

.lower_catch .text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}

@media (min-width: 769px) {
  html {
    font-size: min(calc(10 / 1360 * 100vw), 10px);
  }

  .inner {
    width: 100%;
    max-width: 116.8rem;
    margin: 0 auto;
  }

  .inner.right_over {
    max-width: 130.4rem;
    padding-left: 8rem;
  }

  .inner.left_over {
    max-width: 130.4rem;
    padding-right: 8rem;
  }

  br.pc_none {
    display: none;
  }

  br.pc_on {
    display: inline;
  }

  .btn {
    opacity: 1;
    transition: all 0.4s;
  }

  .btn:hover {
    opacity: 0.8;
  }

  .sec {
    padding: 8rem 0;
  }

  .sec_ttl .en {
    font-size: 12rem;
    line-height: 1.23;
  }

  header {
    width: calc(100% - 1.6rem);
    height: 8rem;
    top: 1.6rem;
    left: 0.8rem;
    padding: 0 4rem;
  }

  header .header_logo {
    opacity: 1;
    transition: all 0.4s;
  }
  header .header_logo:hover {
    opacity: 0.8;
  }

  .hamburger {
    display: none;
  }

  .nav_wrap {
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    background-image: none;
    visibility: visible;
    opacity: 1;
    z-index: 100;
    position: static;
  }

  .nav_wrap::before {
    content: none;
  }

  .header_nav {
    display: flex;
    align-items: center;
    gap: 2.4rem;
  }

  .nav_wrap .header_nav_list {
    flex-direction: row;
    margin-bottom: 0;
    gap: 2.4rem;
  }

  .nav_wrap .header_nav_list .header_nav_item a {
    color: inherit;
    font-size: 1.8rem;
    transition: all 0.4s;
  }

  .nav_wrap .header_nav_list .header_nav_item a:hover {
    color: #b0974b;
  }

  .nav_wrap .header_nav_list .header_nav_item:not(:last-child) a {
    border: none;
  }

  .nav_wrap .btn_list {
    flex-direction: row;
  }

  .nav_wrap .btn_list .btn {
    width: fit-content;
    padding: 0.8rem 2.4rem;
  }

  .fixed_bg {
    background-color: transparent;
    background-image: url(../img/common/nav_wrap_bg-pc.jpg);
  }

  .cta {
    background-image: url(../img/common/cta_bg-pc.svg);
  }

  .cta::before {
    width: 24rem;
    left: 0.8rem;
  }

  .cta::after {
    width: 32rem;
    right: 0.8rem;
  }

  .cta .catch {
    font-size: 4rem;
  }

  .cta .text {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }

  .cta .btn_wrap {
    flex-direction: row;
  }

  .footer {
    padding-bottom: 18rem;
    background-image: url(../img/common/footer_bg-pc.svg);
    overflow: hidden;
  }

  .footer::before {
    width: 18rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer::after {
    width: 18rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer .content_wrap {
    flex-direction: row;
    justify-content: space-between;
    max-width: 92.8rem;
    margin: 0 auto 4rem;
  }

  .footer .footer_logo {
    margin: 0;
    opacity: 1;
    transition: all 0.4s;
  }

  .footer .footer_logo:hover {
    opacity: 0.8;
  }

  .footer .footer_nav_list {
    flex-direction: row;
    gap: 2.4rem;
  }

  .footer .footer_nav_list .footer_nav_item a {
    padding: 0;
    transition: all 0.4s;
  }

  .footer .footer_nav_list .footer_nav_item a:hover {
    color: #b0974b;
  }

  .lower_header {
    height: 32rem;
    background-image: url(../img/common/lower_header_bg-pc.jpg);
    background-position: center;
  }

  .lower_ttl .en {
    font-size: 9.6rem;
  }

  .lower_ttl .ja {
    font-size: 2.4rem;
  }

  .lower_catch {
    padding: 8rem 0 12.8rem;
  }

  .lower_catch .catch {
    font-size: 4rem;
    letter-spacing: 0.2em;
  }

  .lower_catch .text {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
}
