@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500&family=Noto+Sans+JP:wght@100..900&family=Tiny5&display=swap");
:root {
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Tiny5", sans-serif;
  --font-mplus: "M PLUS Rounded 1c", sans-serif;
  --font-primary: var(--font-jp);
  --offset-top: 9.230769vw;
}
@media screen and (min-width: 768px) {
  :root {
    --offset-top: 8.671875vw;
  }
}

html {
  height: 100%;
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
html.noscroll .p-header {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 1201px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 16px;
    font-size: 1.333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
    font-size: 2.051vw;
  }
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-primary);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.8125rem;
  }
}

b, strong, .fw-bold {
  font-weight: 700;
}

ul, ol {
  list-style: none;
}

p, ul, ol, table, dl {
  line-height: 1.8;
  letter-spacing: 0.03125rem;
}
@media screen and (max-width: 767px) {
  p, ul, ol, table, dl {
    letter-spacing: 0rem;
    line-height: 1.6;
  }
}

a {
  text-decoration: none;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

.pc-none {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
  .tab-none {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .tab-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
}
/*------------------------
  button
------------------------*/
.btn_common a {
  position: relative;
  display: inline-block;
  color: #FFF;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  padding: 0.875rem 3.125rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 1;
  overflow: hidden;
  border-radius: 3.125rem;
  background: #000;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .btn_common a {
    font-size: 0.8125rem;
    padding: 0.625rem 1.25rem;
  }
}
.btn_common a i {
  -webkit-filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(337deg) brightness(101%) contrast(103%);
          filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(337deg) brightness(101%) contrast(103%);
}
.btn_common a:hover {
  background: #c2c2c2;
}

/*------------------------------------------------------------------------
  header
------------------------------------------------------------------------*/
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.5rem 2.625rem;
}
.p-header__logo img {
  width: 21.4375rem;
}

/*------------------------
  menu PC
------------------------*/
.overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: #171919;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

.global-menu {
  background-color: #171919;
  padding: 10.375rem 0 16.625rem;
  overflow-y: auto;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 100%;
  z-index: 100;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .global-menu {
    padding: 10.375rem 0 9.125rem;
    width: 37.25rem;
  }
}
@media screen and (max-width: 767px) {
  .global-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.global-menu__logo {
  display: block;
  -webkit-filter: brightness(100%) invert(1);
          filter: brightness(100%) invert(1);
  margin-bottom: 8.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .global-menu__logo {
    margin-bottom: 4.75rem;
  }
}
.global-menu__logo a:hover {
  opacity: 0.7;
}
.global-menu__logo img {
  width: 38.25rem;
}
@media screen and (min-width: 768px) {
  .global-menu__logo img {
    width: 26.1875rem;
  }
}
.global-menu__nav {
  display: grid;
  row-gap: 5.1875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .global-menu__nav {
    row-gap: 2.125rem;
  }
}
.global-menu .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  text-align: center;
}
.global-menu .nav-link--contents {
  --nav-size: 29.75rem;
}
.global-menu .nav-link--present {
  --nav-size: 12.1875rem;
}
.global-menu .nav-link--goods {
  --nav-size: 18rem;
}
.global-menu .nav-link--ticket {
  --nav-size: 19.3125rem;
}
@media screen and (min-width: 768px) {
  .global-menu .nav-link {
    text-align: left;
  }
  .global-menu .nav-link--contents {
    --nav-size: 17.625rem;
  }
  .global-menu .nav-link--present {
    --nav-size: 7.25rem;
  }
  .global-menu .nav-link--goods {
    --nav-size: 10.5625rem;
  }
  .global-menu .nav-link--ticket {
    --nav-size: 11.5625rem;
  }
}
.global-menu .nav-link__sub {
  margin-bottom: 0.5625rem;
}
.global-menu .nav-link__sub img {
  width: var(--nav-size, auto);
}
.global-menu .nav-link__ttl {
  font-size: 1.375rem;
  letter-spacing: 0.52em;
}
@media screen and (min-width: 768px) {
  .global-menu .nav-link__ttl {
    font-size: 0.8125rem;
  }
}

/*------------------------
  menu burger
------------------------*/
.menu_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3.0625rem;
  width: 5.5625rem;
  cursor: pointer;
  position: relative;
  z-index: 200;
}
@media screen and (min-width: 768px) {
  .menu_btn {
    height: 2.8125rem;
    width: 5.75rem;
  }
}
.menu_btn span {
  position: relative;
}
.menu_btn span,
.menu_btn span::before,
.menu_btn span::after {
  width: 100%;
  display: block;
  height: 0.1875rem;
  background-color: var(--menu-btn-color, #3a3a3a);
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.menu_btn span::before,
.menu_btn span::after {
  content: "";
  width: 100%;
  position: absolute;
}
.menu_btn span::before {
  top: 1.25rem;
}
.menu_btn span::after {
  bottom: 1.25rem;
}

#menu_btn_check {
  display: none;
}
#menu_btn_check:checked ~ .menu_btn span {
  --menu-btn-color: #fff;
  background-color: transparent; /*メニューオープン時は真ん中の線を透明にする*/
}
#menu_btn_check:checked ~ .menu_btn span::before, #menu_btn_check:checked ~ .menu_btn span::after {
  -webkit-transform-origin: center;
          transform-origin: center;
}
#menu_btn_check:checked ~ .menu_btn span::before {
  top: 0;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
#menu_btn_check:checked ~ .menu_btn span::after {
  bottom: 0;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}
#menu_btn_check:checked ~ .global-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#menu_btn_check:checked ~ .overlay {
  opacity: 0.5;
  visibility: visible;
  pointer-events: all;
}

/*------------------------------------------------------------------------
  layout
------------------------------------------------------------------------*/
.main-content {
  background-color: #f3f3f2;
  padding-bottom: calc(4.3125rem + var(--offset-top));
}

.inner {
  padding: 0 4.5rem;
}
@media screen and (min-width: 768px) {
  .inner {
    margin: 0 auto;
    max-width: 63.75rem;
    padding: 0 5rem;
    width: 100%;
  }
}

.ly-wrapper {
  padding: 0 4.5rem;
}
@media screen and (min-width: 768px) {
  .ly-wrapper {
    margin: 0 auto;
    max-width: 72.5rem;
    width: 100%;
    padding: 0 5rem;
  }
}

.sticky-txt {
  color: #444747;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-en);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.57em;
  position: fixed;
  top: 0;
  height: 100vh;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .sticky-txt {
    font-size: 0.8125rem;
  }
}
.sticky-txt.sticky-txt--left {
  left: 0.75rem;
}
@media screen and (min-width: 768px) {
  .sticky-txt.sticky-txt--left {
    left: 1.6875rem;
  }
}
.sticky-txt.sticky-txt--right {
  right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .sticky-txt.sticky-txt--right {
    right: 1.6875rem;
  }
}

.c-indent {
  margin-inline: -0.5em;
}

.hover {
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.hover:hover {
  opacity: 0.7;
}

/*------------------------
  heading
------------------------*/
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
}

/*------------------------
  page-headline
------------------------*/
.page-headline {
  margin-bottom: 3.5rem;
  padding: 10.4375rem 0 3rem;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-headline {
    margin-bottom: 4.6875rem;
    padding: 7.9375rem 0 6rem;
  }
}
.page-headline--special {
  --headline-title-size: 14.1875rem;
  --headline-icon-size: 11.9375rem;
}
@media screen and (min-width: 768px) {
  .page-headline--special {
    --headline-title-size: 10.125rem;
    --headline-icon-size: 21.125rem;
  }
}
.page-headline--goods {
  --headline-title-size: 21.125rem;
  --headline-icon-size: 11.5625rem;
}
@media screen and (min-width: 768px) {
  .page-headline--goods {
    --headline-title-size: 14.8125rem;
    --headline-icon-size: 25.75rem;
  }
}
.page-headline--ticket {
  --headline-title-size: 22.625rem;
  --headline-icon-size: 11.4375rem;
}
@media screen and (min-width: 768px) {
  .page-headline--ticket {
    --headline-title-size: 15.875rem;
    --headline-icon-size: 26.25rem;
  }
}
.page-headline--contents {
  --headline-title-size: 35.125rem;
  --headline-icon-size: 11.75rem;
}
@media screen and (min-width: 768px) {
  .page-headline--contents {
    --headline-title-size: 24.75rem;
    --headline-icon-size: 34.875rem;
  }
}
.page-headline::before {
  content: "";
  background: url("../../images/common/bg_headline_sp.svg") no-repeat center bottom/contain;
  aspect-ratio: 780/518;
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-headline::before {
    aspect-ratio: 1154/742;
    background-image: url("../../images/common/bg_headline.svg");
    width: 90.15625vw;
  }
}
.page-headline__inner {
  position: relative;
}
.page-headline__sub {
  margin-bottom: 0.5rem;
}
.page-headline__sub img {
  width: var(--headline-title-size, auto);
}
.page-headline__ttl {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.52em;
}
@media screen and (min-width: 768px) {
  .page-headline__ttl {
    font-size: 0.8125rem;
  }
}
.page-headline__icon {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-headline__icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-headline__icon {
    margin-top: 2.0625rem;
  }
}
.page-headline__icon img {
  width: var(--headline-icon-size, auto);
}

.hline01 {
  font-family: var(--font-en);
  font-size: 4.375rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hline01 {
    font-size: 3.75rem;
    margin-bottom: 2.4375rem;
  }
}

/*------------------------
  coming soon
------------------------*/
.coming_soon {
  display: none;
  text-align: center;
  background-color: #FFF;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: calc(100% - 400px);
  min-height: 31.25rem;
  padding: 3.75rem 0rem;
}
@media screen and (max-width: 767px) {
  .coming_soon {
    height: calc(100% - 233px);
  }
}
.coming_soon img {
  margin-top: -50px;
  width: 70%;
  max-width: 760px;
}
@media screen and (max-width: 767px) {
  .coming_soon img {
    width: 80%;
  }
}
.coming_soon.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.coming_soon.is-active ~ section {
  display: none;
}

/*------------------------
  footer
------------------------*/
.p-footer {
  background-color: #fff;
  padding: 1.25rem;
  position: relative;
  z-index: 1;
}
.p-footer::before {
  content: "";
  background: #fff;
  -webkit-mask: url(../../images/common/bg_mask.svg) no-repeat left top;
          mask: url(../../images/common/bg_mask.svg) no-repeat left top;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  height: var(--offset-top);
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% - 2px);
}
.p-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns {
    gap: 3.5625rem;
  }
}
.p-footer__sns img {
  width: 4.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns img {
    width: 3.125rem;
  }
}
.p-footer__copyright {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-top: 2.8125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    font-size: 0.6875rem;
    margin-top: 1.1875rem;
  }
}

/*------------------------
  scroll to top
------------------------*/
.page-top {
  cursor: pointer;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 55;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-top {
    bottom: 0;
    right: 0;
  }
}
.page-top a {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-en);
  font-size: 1.8125rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .page-top a {
    font-size: 1.5625rem;
  }
}
.page-top a:hover::after {
  background-image: url("../../images/common/icon02.svg");
}
.page-top a::before {
  content: "";
  background: url("../../images/common/icon02.svg") no-repeat center/contain;
  height: 1.75rem;
  width: 1.75rem;
  position: absolute;
  bottom: 0;
  opacity: 0;
}
.page-top a::after {
  content: "";
  background: url("../../images/common/icon01.svg") no-repeat center/contain;
  height: 1.75rem;
  width: 1.75rem;
  position: relative;
  left: -0.125rem;
  margin-top: 0.3125rem;
}

div [data-remodal-id=modal_recipe] {
  background: none;
}

.slider {
  width: 100%;
}

.n_pad {
  padding-left: 0;
  padding-right: 0;
}

.pad_2 {
  padding-left: 2%;
  padding-right: 2%;
}

.remodal-overlay {
  background: rgba(0, 0, 0, 0.9);
}

.slick-dots li button:before {
  color: #999999;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: #FFA64D;
}

.remodal-wrapper {
  bottom: 0;
  top: 0;
}

.taxin_text {
  font-size: 11.5px;
}

.wwimg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.features .inner .wwimg img {
  width: 50%;
}

.features .inner .chikawa_f_img {
  width: 200px;
  margin: 0 auto;
}

button.btn.btn-success.btn-block.reject {
  background-color: #525252 !important;
  color: #ffffff !important;
}

/*------------------------
  loading
------------------------*/
.loading {
  background-color: #000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-animation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.loading-img {
  -webkit-animation: bounce 2s ease infinite;
          animation: bounce 2s ease infinite;
  width: 4.1875rem;
}
.loading-txt {
  color: #d8d8d8;
  font-family: var(--font-en);
  font-size: 3.125rem;
  letter-spacing: 0.14em;
  margin-top: 1.5rem;
}
.loading-copyright {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
/*------------------------
  wow animation
------------------------*/
@-webkit-keyframes animate__fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes animate__fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpSmall {
  -webkit-animation-name: animate__fadeInUpSmall;
  animation-name: animate__fadeInUpSmall;
}

/*------------------------
  Button
------------------------*/
.btn-primary {
  border: 0.125rem solid #000;
  border-radius: 3.125rem;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1.4375rem;
  line-height: 1.26;
  margin: 0 auto;
  min-height: 4.625rem;
  max-width: 21.25rem;
  padding: 0.625rem 2.1875rem;
  position: relative;
  text-align: left;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .btn-primary {
    font-size: 1.0625rem;
    line-height: 1.58;
    min-height: 3.6875rem;
    max-width: 16.6875rem;
    padding: 0.25rem 2.1875rem;
  }
}
.btn-primary::after {
  content: "";
  background: url("../../images/common/icon_arrow.svg") no-repeat center/contain;
  height: 2.625rem;
  width: 2.625rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .btn-primary::after {
    right: 1.0625rem;
    height: 2rem;
    width: 2rem;
  }
}
.btn-primary:hover {
  background-color: #000;
  color: #fff;
  opacity: 1;
}
.btn-primary.btn-primary--auto {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.75rem;
  padding-inline: 3.5625rem 6.25rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .btn-primary.btn-primary--auto {
    font-size: 1.125rem;
    padding-inline: 1.5625rem 4.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .btn-primary.btn-primary--auto::after {
    height: 3.125rem;
    width: 3.125rem;
  }
}
.btn-primary.font-en {
  font-family: var(--font-en);
  font-size: 2.375rem;
  min-height: 5.375rem;
  max-width: 24.75rem;
  padding-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .btn-primary.font-en {
    font-size: 1.5rem;
    min-height: 3.4375rem;
    max-width: 15.375rem;
    padding-top: 0.375rem;
  }
}
@media screen and (max-width: 767px) {
  .btn-primary.font-en {
    letter-spacing: 0.13em;
  }
  .btn-primary.font-en::after {
    height: 3.25rem;
    width: 3.25rem;
  }
}

/*------------------------
  coming-soon
------------------------*/
.coming-soon {
  padding-block: 11.375rem 9.4375rem;
}
.coming-soon__txt {
  color: #d8d8d8;
  font-family: var(--font-en);
  font-size: 5rem;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .coming-soon__txt {
    font-size: 6rem;
  }
}

/*------------------------
  box
------------------------*/
.c-box {
  background-color: #fff;
  border-radius: 3.75rem;
  margin-bottom: 3.75rem;
  padding: 3.5rem 1.8125rem 4.375rem;
}
@media screen and (min-width: 768px) {
  .c-box {
    border-radius: 7.5rem;
    margin-bottom: 2.25rem;
    padding: 2rem 2.75rem 3.0625rem;
  }
}
.c-box:last-child {
  margin-bottom: 0;
}
.c-box__head {
  border-bottom: 0.125rem dotted #000;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-box__head {
    font-size: 1.6875rem;
    letter-spacing: 0.19em;
    margin-bottom: 1.875rem;
    padding-bottom: 1.8125rem;
  }
}
.c-box__body {
  padding-inline: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .c-box__body {
    padding-inline: 0.9375rem;
  }
}
.c-box__img {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-box__img {
    margin-bottom: 1.5625rem;
  }
}
.c-box__img img {
  width: 100%;
}
.c-box__ttl {
  font-size: 1.625rem;
  font-weight: 500;
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-box__ttl {
    font-size: 1.1875rem;
  }
}
.c-box__txt {
  font-size: 1.625rem;
  line-height: 1.88;
}
@media screen and (min-width: 768px) {
  .c-box__txt {
    font-size: 0.875rem;
    line-height: 1.71;
    letter-spacing: 0.11em;
  }
}
.c-box__txt--medium {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .c-box__txt--medium {
    font-size: 0.9375rem;
  }
}
.c-box__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem 1.375rem;
  font-size: 1.375rem;
  line-height: 1.88;
  padding-right: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-box__time {
    font-size: 0.9375rem;
    padding-right: 5rem;
  }
}
.c-box__note {
  font-family: var(--font-mplus);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.667;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-box__note {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .c-box__note--small {
    font-size: 0.625rem;
    line-height: 2;
  }
}