@charset "UTF-8";
/* color
================================================== */
/* font
================================================== */
/* font-size
================================================== */
/* u-inner
================================================== */
/* shadow
================================================== */
/* cubic-bezier
================================================== */
/* breakpoints
================================================== */
.contents {
  padding: clamp(80px, 10px + 15vw, 110px) 0;
  max-width: 1620px;
  margin: 0 auto;
}

main {
  padding: calc(28px + 1.3vw) 0;
}

.en {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 0.1em;
  color: rgb(247, 177, 25);
}

.u-inner {
  padding-left: clamp(25px, -8px + 10vw, 110px);
  padding-right: clamp(25px, -8px + 10vw, 110px);
}
@media all and (min-width: 480px) {
  .u-inner {
    padding-left: clamp(40px, -40px + 15vw, 110px);
    padding-right: clamp(40px, -40px + 15vw, 110px);
  }
}
@media all and (min-width: 900px) {
  .u-inner {
    padding-left: clamp(50px, -230px + 30vw, 110px);
    padding-right: clamp(50px, -230px + 30vw, 110px);
  }
}

.br-pc {
  display: none;
}
@media all and (min-width: 900px) {
  .br-pc {
    display: block;
  }
}

/* 固定ボタン */
.fixed-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999999999;
  width: 100%;
  height: clamp(56px, 45px + 3vw, 65px);
}
.fixed-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
.fixed-btn-list-item {
  width: 50%;
  height: 100%;
  border-top: 1px solid rgb(88, 66, 50);
}
.fixed-btn-list-item.is-test {
  background: rgb(88, 66, 50);
  color: rgb(255, 255, 255);
}
.fixed-btn-list-item.is-brochure {
  background: rgb(255, 255, 255);
  color: rgb(88, 66, 50);
}
.fixed-btn-list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.2s cubic-bezier(0.63, 0.02, 0.43, 0.99);
  transition: opacity 0.2s cubic-bezier(0.63, 0.02, 0.43, 0.99);
}
@media (hover: hover) and (pointer: fine) {
  .fixed-btn-list-item a:hover {
    opacity: 0.5;
  }
}
.fixed-btn-list-item p {
  font-size: clamp(1.3rem, 0.75rem + 1.5vw, 1.6rem);
  padding-right: 0.24em;
}
.fixed-btn-list-item img {
  width: clamp(19px, 12px + 1.5vw, 22px);
  height: auto;
  padding-bottom: 0.25em;
}
@media all and (min-width: 650px) {
  .fixed-btn {
    height: auto;
    bottom: initial;
    left: initial;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    top: 110px;
    right: 0;
  }
  .fixed-btn-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: clamp(10px, 1vw, 18px);
  }
  .fixed-btn-list-item {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-top: 1px solid rgb(88, 66, 50);
    border-left: 1px solid rgb(88, 66, 50);
    border-bottom: 1px solid rgb(88, 66, 50);
    border-radius: 20px 0 0 20px;
  }
  .fixed-btn-list-item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-top: clamp(18px, 5px + 1vw, 23px);
    padding-bottom: clamp(18px, 5px + 1vw, 23px);
    padding-left: clamp(13px, 1vw, 18px);
    padding-right: clamp(13px, 1vw, 18px);
    -webkit-transition: padding-right 0.2s cubic-bezier(0.63, 0.02, 0.43, 0.99);
    transition: padding-right 0.2s cubic-bezier(0.63, 0.02, 0.43, 0.99);
  }
}
@media (min-width: 650px) and (hover: hover) and (pointer: fine) {
  .fixed-btn-list-item a:hover {
    padding-right: clamp(28px, 1vw + 15px, 33px);
    opacity: 1;
  }
}
@media all and (min-width: 650px) {
  .fixed-btn-list-item p {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.15em;
    padding-bottom: 0.24em;
    padding-right: 0;
    font-size: clamp(1.6rem, 0.32rem + 1vw, 2rem);
  }
  .fixed-btn-list-item img {
    padding-bottom: 0;
  }
}

/* パンクズ */
.breadcrumbsWrap {
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}
.breadcrumbsWrap .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.2rem;
}
.breadcrumbsWrap .breadcrumbs a {
  opacity: 0.5;
}
.breadcrumbsWrap .breadcrumbs .arrow {
  position: relative;
  padding: 0 1em;
  opacity: 0.5;
}
.breadcrumbsWrap .breadcrumbs .arrow::after, .breadcrumbsWrap .breadcrumbs .arrow::before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 1px;
  background: rgb(88, 66, 50);
  border-radius: 50px;
}
.breadcrumbsWrap .breadcrumbs .arrow::after {
  -webkit-transform: translate(-50%, -2px) rotate(45deg);
          transform: translate(-50%, -2px) rotate(45deg);
}
.breadcrumbsWrap .breadcrumbs .arrow::before {
  -webkit-transform: translate(-50%, 2px) rotate(-45deg);
          transform: translate(-50%, 2px) rotate(-45deg);
}

/* ページタイトル */
.c-page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-page-title-en {
  font-size: clamp(1.2rem, 7px + 1.2vw, 1.6rem);
}
.c-page-title-jp {
  font-size: clamp(3.2rem, 2.25rem + 2.75vw, 5.4rem);
  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;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.08em;
}
.c-page-title-jp span {
  font-weight: 500;
  font-size: 0.58em;
  line-height: 1.4;
}
.c-page-title.is-left .c-page-title-jp {
  font-size: clamp(2.5rem, 1.7rem + 2.75vw, 5.4rem);
}

.c-font-size {
  font-size: 1.4rem;
  line-height: 1.715;
}
@media all and (min-width: 480px) {
  .c-font-size {
    font-size: 1.6rem;
  }
}
@media all and (min-width: 900px) {
  .c-font-size {
    font-size: 1.8rem;
  }
}

/* 小見出しタグ */
.c-tag {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  position: relative;
  margin-bottom: 20px;
}
.c-tag p {
  font-size: clamp(1.8rem, 1.2rem + 0.95vw, 2.1rem);
  font-weight: 500;
  background: rgb(247, 177, 25);
  border-radius: 100px;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 0.4em 1em;
  color: rgb(255, 255, 255);
}
.c-tag::after, .c-tag::before {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 10px;
  background: rgb(247, 177, 25);
}
.c-tag::after {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.c-tag::before {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media all and (min-width: 900px) {
  .c-tag::after {
    display: none;
  }
}

/* ボタン */
.c-btn01 {
  width: 315px;
  margin: 0 auto;
  display: block;
  font-size: 1.6rem;
  padding: 1em 2em 1em calc(2em + 5px);
  background: rgb(88, 66, 50);
  border-radius: 5px;
  position: relative;
  color: rgb(255, 255, 255);
  text-align: center;
}
.c-btn01.is-prev {
  margin-top: clamp(40px, 3px + 12vw, 110px);
}
.c-btn01.is-prev > span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 1.15em;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.c-btn01.is-prev > span span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 0;
  width: 60%;
  height: 1px;
  background: rgb(255, 255, 255);
}
.c-btn01.is-prev > span span::after, .c-btn01.is-prev > span span::before {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 1px;
  left: 0;
  background: rgb(255, 255, 255);
  border-radius: 50px;
}
.c-btn01.is-prev > span span::after {
  -webkit-transform: translate(0%, -200%) rotate(-45deg);
          transform: translate(0%, -200%) rotate(-45deg);
}
.c-btn01.is-prev > span span::before {
  -webkit-transform: translate(0%, 200%) rotate(45deg);
          transform: translate(0%, 200%) rotate(45deg);
}
@media all and (min-width: 650px) {
  .c-btn01 {
    padding: 1.25em 2.5em 1.25em calc(2.5em + 5px);
    border-radius: 10px;
    width: 350px;
  }
}
@media all and (min-width: 900px) {
  .c-btn01 {
    padding: 1.5em 2.5em 1.5em calc(2.5em + 5px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn01 {
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.18, 0.68, 0.57, 1.34);
    transition: -webkit-transform 0.3s cubic-bezier(0.18, 0.68, 0.57, 1.34);
    transition: transform 0.3s cubic-bezier(0.18, 0.68, 0.57, 1.34);
    transition: transform 0.3s cubic-bezier(0.18, 0.68, 0.57, 1.34), -webkit-transform 0.3s cubic-bezier(0.18, 0.68, 0.57, 1.34);
  }
  .c-btn01:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.c-btn02 {
  display: block;
  position: relative;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  padding: 0.7em 0.8em;
  border: 1px solid rgb(88, 66, 50);
  border-radius: 50px;
}
.c-btn02 img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 10px;
  height: auto;
  right: 15px;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn02 {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .c-btn02:hover {
    opacity: 0.5;
  }
}