@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form,
figure {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  letter-spacing: 0;
}

@media print, screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}
@media print, screen and (max-width: 1080px) {
  html {
    font-size: 0.926vw;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 2.667vw;
  }
}

body {
  position: relative;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  word-break: break-word;
  line-break: strict;
}
body > .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100lvh;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, 0, -1px);
}

.container {
  max-width: 375px;
  margin: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #f1f1f1;
}
@media print, screen and (max-width: 1080px) {
  .container {
    max-width: 37.5rem;
  }
}
@media screen and (max-width: 750px) {
  .container {
    max-width: 100%;
  }
}

a {
  text-decoration: none;
  color: inherit;
}
@media print, screen and (min-width: 751px) {
  a {
    cursor: pointer;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.6;
  }
}

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

sup {
  font-size: 60%;
}

.is-fadeUp {
  transition: all 0.8s ease-in-out;
  opacity: 0;
  transform: translateY(30px);
}

.is-fadeUp.is-active,
.is-active .is-fadeUp {
  opacity: 1;
  transform: translateY(0);
}

.is-fadeUpLeft {
  transition: all 0.8s ease-in-out;
  opacity: 0;
  transform: translateX(-30px);
}

.is-fadeUpLeft.is-active {
  opacity: 1;
  transform: translateX(0);
}

.is-fadeUpRight {
  transition: all 0.8s ease-in-out;
  opacity: 0;
  transform: translateX(30px);
}

.is-fadeUpRight.is-active {
  opacity: 1;
  transform: translateX(0);
}

.header {
  position: relative;
  z-index: 1;
}
.header__logo {
  position: fixed;
  top: 4rem;
  transform: translateX(-50%);
  left: calc(50% - 40rem);
  width: 20rem;
}
.header__menuList {
  position: fixed;
  left: calc(50% + 38.6rem);
  transform: translateX(-50%);
  bottom: 7rem;
}
.header__menuItem.is-btns {
  margin-top: 2.2rem;
}
.header__menuItem > a {
  color: #8B784B;
  padding: 0.85rem 0 0.85rem 1.2em;
  display: block;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  font-weight: 500;
  text-indent: -1.2em;
  white-space: nowrap;
}
.header__menuItem__btns .btns__btn + .btns__btn {
  margin-top: 2rem;
}
.header__menuItem__btns .btns__btn a {
  z-index: 1;
  overflow: hidden;
  width: 22rem;
  height: 5rem;
  margin: 0 auto;
  border: 1px solid #b9a063;
  border-radius: 99rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 1;
  transition: all 0.3s ease;
  color: #a5863b;
  font-size: 1.4rem;
  font-weight: 500;
  background: linear-gradient(90deg, #fff 0%, #f3f1eb 70%, #e1dbcc 100%);
  box-shadow: 0.3rem 0.3rem 0 #b9a063;
}
.header__menuItem__btns .btns__btn a:hover {
  color: #ffffff;
  border-color: #ffffff;
}
.header__menuItem__btns .btns__btn a:hover::after {
  left: 0;
  width: 100%;
}
.header__menuItem__btns .btns__btn a:hover svg path {
  stroke: #ffffff;
}
.header__menuItem__btns .btns__btn a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #d0c296 0%, #b9a063 100%);
  border-color: #ffffff;
}
.header__menuItem__btns .btns__btn a svg {
  width: 0.5rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
.header__menuItem__btns .btns__btn a svg path {
  stroke: #b9a063;
  transition: all 0.3s ease;
}
.header__menuItem__btns .btns__btn.is-other a {
  font-size: 1.2rem;
  letter-spacing: -0.05em;
}

.footer {
  padding: 4rem 0 4rem;
  color: #8B784B;
  background-color: #ffffff;
}
@media screen and (max-width: 750px) {
  .footer {
    padding-bottom: 20rem;
  }
}
.footer__ttl {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.footer__txt {
  margin: 2rem 2.5rem 0;
  font-size: 1.4rem;
  line-height: 2.1428571429;
}
.footer__link {
  width: 25.6rem;
  margin: 2rem auto 0;
  padding-left: 1rem;
}
.footer__link a {
  display: block;
}
.footer__link-txt {
  margin-top: 0.7rem;
  display: inline-block;
  color: #333;
  font-size: 1.4rem;
}
.footer__copyrights {
  margin-top: 5rem;
  font-size: 1.4rem;
  text-align: center;
}

.popup {
  max-width: 35rem;
  margin: 0 auto;
  border-radius: 1rem;
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  background-color: #ffffff;
}
.popup__close {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  border: none;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
}
.popup__close::before, .popup__close::after {
  content: "";
  width: 2rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #707070;
}
.popup__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup__ttl {
  color: #000000;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}
.popup__list {
  margin-top: 2.1rem;
}
.popup__item + .popup__item {
  margin-top: 1rem;
}
.popup__item a {
  height: 5rem;
  border-radius: 99rem;
  padding: 0 2.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  background: #000000 url(../img/popup_icon.svg) no-repeat calc(100% - 2.2rem) center/1.6rem auto;
}
.popup__item a:hover {
  opacity: 1;
  background-color: #666666;
}
.popup__note {
  margin-top: 1.7rem;
  font-size: 1.2rem;
  line-height: 1.6666666667;
}

.mfp-close {
  display: none !important;
}

.mfp-bg {
  opacity: 0.7;
  background-color: #000;
}

.fixed {
  display: none;
  z-index: 100;
  width: 100%;
  padding: 13px 0 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: RGB(255, 255, 255, 1);
}
.fixed__txt {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
}
.fixed__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.fixed__btn01 {
  width: 47%;
  text-align: center;
}
.fixed__btn01 a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 1em 1.3em 1em;
  color: #ffffff;
  background-color: #000;
  border: solid 0.11em #000;
  border-radius: 3em;
  transition: 0.3s ease-in-out;
  height: 5.8em;
}
.fixed__btn01 a:hover {
  color: #000;
  background-color: #ffffff;
  border-radius: 3em;
}
.fixed__btn01 a:hover::after {
  border-color: #ffffff;
}
.fixed__btn01 svg {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
.fixed__btn01 p {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 800;
  text-align: left;
  margin-left: 0.5em;
}
.fixed__btn02 {
  width: 47%;
  text-align: center;
}
.fixed__btn02 a {
  display: block;
  padding: 1.55em;
  color: #000;
  background-color: #ffffff;
  border: solid 0.11em #000;
  border-radius: 3em;
  height: 5.8em;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 600;
}
.fixed__btn02 a:hover {
  color: #ffffff;
  background-color: #000;
  border: solid 0.11em #000;
  border-radius: 3em;
}
.fixed__btn02 a:hover::after {
  border-color: #ffffff;
}
.fixed__note {
  font-size: 0.9rem;
  letter-spacing: -0.08rem;
  display: block;
}

.fv__box {
  padding-bottom: 3.8rem;
  background: linear-gradient(0deg, #f1f1f1 0%, #e5e0db 20%, #e5e0db 80%, #f1f1f1 100%);
}
.fv__ttl {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}
.fv__txt {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 2.4rem;
  text-align: center;
}
.fv__txt--big {
  font-size: 1.4rem;
}
.fv__txt--small {
  font-size: 1rem;
}

.camp {
  padding-bottom: 4rem;
  background-color: #f8f8f8;
}
.camp_end_txt {
  width: 100%;
  color: #ffffff;
  font-size: 1.8rem;
  text-align: center;
  margin: 0 auto;
  padding: 1.2rem;
  font-weight: bold;
  background-color: #c10101;
}
.camp__ttl {
  border-top: 0.2rem solid #aea388;
  border-bottom: 0.2rem solid #aea388;
  padding: 1rem 0 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 0.7rem;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  background-color: #8B784B;
}
.camp__ttl--new {
  width: 4.4rem;
}
.camp__ttl--small {
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  font-weight: 700;
}
.camp__ttl--txt {
  width: 100%;
  font-size: 2.2rem;
  line-height: 1.6363636364;
  font-weight: 700;
}
.camp__period {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.camp__period-ttl {
  border: 1px solid #333;
  padding: 0.4rem 0.3rem 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
}
.camp__period-txt {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
.camp__period-txt--small {
  font-size: 1.4rem;
}
.camp__txt {
  width: 25rem;
  margin: 1.5rem auto 0;
}
.camp__apply {
  width: 87%;
  margin: 1.4rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
.camp__apply::before, .camp__apply::after {
  content: "";
  height: 0.05rem;
  display: block;
  flex: 1;
  background-color: #333;
}
.camp__step {
  width: 85%;
  margin: 1rem auto 0;
}
.camp__step-item {
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.camp__step-item + .camp__step-item {
  margin-top: 1.7rem;
}
.camp__step-item--num {
  margin-top: 0.3rem;
  border-radius: 99rem;
  padding: 0.2rem 0.7rem 0.4rem;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  background-color: #8B784B;
}
.camp__step-item--txt {
  font-size: 1.4rem;
  line-height: 1.5714285714;
}
.camp__step-item--slim {
  letter-spacing: -0.03em;
}
.camp__step-item--color {
  color: #8B784B;
  font-weight: 700;
}
.camp__btn {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.camp__btn a {
  overflow: hidden;
  z-index: 1;
  width: 30rem;
  height: 5rem;
  border: 1px solid #ffffff;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  background: linear-gradient(90deg, #a6956c 0%, #eeeeee 60%, #a6956c 100%);
  box-shadow: 0 0.6rem 0 #8B784B;
}
.camp__btn a:hover {
  color: #ffffff;
  opacity: 1;
}
.camp__btn a:hover::after {
  left: 0;
  width: 100%;
}
.camp__btn a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #8b784b 0%, #a6956c 60%, #8b784b 100%);
  border-color: #ffffff;
}

.event {
  padding-top: 4rem;
  padding-bottom: 5.2rem;
  background: url(../img/event_bg.jpg) no-repeat center/cover;
}
.event__ttl {
  color: #8B784B;
  font-size: 1.85rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  letter-spacing: -0.1rem;
}
.event__img01, .event__img02, .event__img03 {
  width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.event__img01 {
  margin-top: 1.6rem;
  margin-bottom: 1.9rem;
}
.event__subttl {
  margin-top: 1.8rem;
  color: #8B784B;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.event__series {
  width: 82%;
  margin: 1.7rem auto 0;
  display: flex;
}
.event__series-item {
  flex: 1;
}
.event__series-item + .event__series-item {
  margin-left: -1.1rem;
}
.event__series-item:nth-child(1) {
  z-index: 4;
}
.event__series-item:nth-child(2) {
  z-index: 3;
}
.event__series-item:nth-child(3) {
  z-index: 2;
}
.event__series-item:nth-child(4) {
  z-index: 1;
}
.event__series-item img {
  transform: translateZ(0);
  filter: drop-shadow(0.3rem 0.6rem 0.6rem rgba(0, 0, 0, 0.35));
}
.event__free {
  width: 20rem;
  height: 2.5rem;
  margin: 3rem auto 2rem;
  padding-bottom: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  background-color: #8B784B;
}
.event__schedule {
  width: 86%;
  margin: 2.3rem auto 0;
  display: flex;
  gap: 0.5rem;
}
.event__schedule-item {
  flex: 1;
  color: #8B784B;
}
.event__schedule-place {
  width: 14rem;
  height: 2rem;
  margin: 0 auto;
  border: 1px solid #8B784B;
  padding-bottom: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: center;
}
.event__schedule-address {
  margin-top: 0.7rem;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
.event__schedule-day {
  width: 15rem;
  margin: 1rem auto 0.8rem;
}
.event__schedule-time {
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  font-weight: 500;
}
.event__schedule-time--left {
  margin-right: auto;
}
.event__schedule-time--small {
  font-size: 1rem;
}
.event__schedule-note {
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
  text-align: center;
}

.intro {
  z-index: 1;
  padding-top: 4.8rem;
  padding-bottom: 9rem;
  position: relative;
}
.intro::before {
  pointer-events: none;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/intro_bg.png) no-repeat center bottom/cover;
  filter: drop-shadow(0 0.6rem 0.6rem rgba(0, 0, 0, 0.16));
}
.intro__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #646977;
  font-family: "Noto Serif JP", serif;
}
.intro__ttl--txt01 {
  padding-bottom: 1.1rem;
  display: block;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.intro__ttl--txt01::after {
  content: "";
  width: 18rem;
  height: 1.1rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/intro_line.png) no-repeat center/100% auto;
}
.intro__ttl--txt02 {
  margin-top: 0.3rem;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 700;
}
.intro__ttl--txt03 {
  color: #8B784B;
  font-size: 2.8rem;
}
.intro__ttl--txt03 sup {
  font-size: 50%;
}
.intro__ttl--txt04 {
  margin-top: 0.4rem;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.intro__ttl--txt05 {
  font-size: 1.2rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.intro__img {
  width: 32rem;
  margin: 0.8rem auto 0;
}
.intro__txt01 {
  margin-top: 1.6rem;
  color: #646977;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 500;
  text-align: center;
}
.intro__txt02 {
  color: #646977;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 3.8rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.intro__txt02--big {
  font-size: 2.8rem;
}
.intro__txt03 {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
}
.intro__txt04 {
  margin-top: 1.2rem;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}
.intro__txt05 {
  margin-top: 4.3rem;
  padding-bottom: 1.7rem;
  position: relative;
  color: #646977;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.intro__txt05::after {
  content: "";
  width: 5rem;
  height: 1px;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #646977;
}
.intro__logo01 {
  width: 24rem;
  margin: 1.9rem auto 0;
}
.intro__logo01--txt {
  margin-top: 1.1rem;
  display: block;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.intro__box {
  width: 83%;
  margin: 2.8rem auto 0;
  display: flex;
  align-items: flex-start;
  gap: 2.6rem;
}
.intro__box-img {
  width: 12rem;
  margin-top: 0.8rem;
}
.intro__box-img img {
  border-radius: 50%;
}
.intro__box-img--note {
  margin: 1.5rem 0.3rem 0;
  padding-left: 1.2em;
  display: block;
  font-size: 1rem;
  line-height: 1.8;
  text-indent: -1.2em;
}
.intro__box-img--center {
  margin-top: 0.5rem;
  text-align: center;
}
.intro__box-txt {
  margin-right: -0.5rem;
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.intro__box-txt--big {
  margin-right: -0.9rem;
}
.intro__box-txt--note {
  margin-top: 0.4rem;
  display: block;
  font-size: 1rem;
  line-height: 2;
  text-align: right;
}
.intro__box-txt--marker {
  letter-spacing: -0.04em;
  background: linear-gradient(0deg, #ffe59e 0%, #ffe59e 40%, transparent 40%, transparent 100%);
}
.intro__txt06 {
  margin-top: 2.6rem;
  color: #646977;
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
}
.intro__flow {
  width: 32rem;
  margin: 0.8rem auto 0;
  filter: drop-shadow(0 0.3rem 0.6rem rgba(0, 0, 0, 0.16));
}
.intro__txt07 {
  width: 32rem;
  margin: 2.9rem auto 0;
  position: relative;
  color: #646977;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.intro__txt07::before, .intro__txt07::after {
  content: "";
  width: 1px;
  height: 5.7rem;
  position: absolute;
  bottom: 0;
  background-color: #646977;
}
.intro__txt07::before {
  left: 0;
  transform: rotate(-20deg);
}
.intro__txt07::after {
  right: 0;
  transform: rotate(20deg);
}
.intro__txt08 {
  margin-top: 2.2rem;
  color: #646977;
  font-size: 2rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  line-height: 3.2rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.intro__txt08--small {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
}
.intro__logo02 {
  width: 24rem;
  margin: 1.9rem auto 0;
}
.intro__logo02--txt {
  margin-top: 1.1rem;
  display: block;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

.point {
  margin-top: -7rem;
  padding-top: 10.8rem;
  padding-bottom: 6rem;
  background: url(../img/point_bg.jpg) no-repeat center bottom/cover;
}
.point__txt01 {
  width: 32rem;
  margin: 0 auto;
  border-top: 1px solid #8B784B;
  border-bottom: 1px solid #8B784B;
  padding: 0.9rem 0;
  color: #8B784B;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.point__txt02 {
  width: 32rem;
  margin: 1.1rem auto 0;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.point__txt02 img {
  width: 7rem;
}
.point__txt02--txt {
  color: #8B784B;
  font-size: 2.2rem;
  line-height: 1.5454545455;
  letter-spacing: -0.05em;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
.point__txt02--small {
  font-size: 1.8rem;
}
.point__ttl {
  width: 24rem;
  margin: 3.2rem auto 0;
}
.point__img {
  margin-top: 0.8rem;
}
.point__list {
  margin-top: 1.6rem;
}
.point__item + .point__item {
  margin-top: 5rem;
}
.point__item-num {
  width: 9.5rem;
  margin: 0 auto;
  padding-bottom: 1.1rem;
  position: relative;
}
.point__item-num::after {
  content: "";
  width: 2rem;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8B784B;
}
.point__item-ttl {
  margin-top: 0.8rem;
  color: #8B784B;
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
.point__item-txt {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
}
.point__item-box01 {
  width: 88%;
  margin: 2.4rem auto 0;
  display: grid;
  grid-template-columns: 11rem 1fr;
  grid-template-rows: auto 1fr;
  gap: 1.1rem 1.7rem;
}
.point__item-box01--reverse {
  margin-top: 3.4rem;
  margin-bottom: 2.7rem;
  grid-template-columns: 1fr 11rem;
  gap: 1.1rem 2rem;
}
.point__item-box01--reverse .point__item-img01 {
  margin: auto 0;
  grid-column: 2/3;
}
.point__item-box01--reverse .point__item-img01::before {
  width: 14rem;
  height: 17.5rem;
  top: 0;
  background-image: url(../img/point01_bg02.png);
}
.point__item-box01--reverse .point__item-box02 {
  grid-column: 1/2;
  grid-row: 1/2;
}
.point__item-box01--reverse .point__item-note01 {
  text-align: left;
}
.point__item-img01 {
  z-index: 1;
  grid-column: 1/2;
  grid-row: 1/3;
  position: relative;
}
.point__item-img01::before {
  z-index: -1;
  content: "";
  width: 13.2rem;
  height: 16.5rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/point01_bg01.png) no-repeat center/contain;
}
.point__item-box02 {
  grid-column: 2/3;
  grid-row: 1/2;
}
.point__item-txt01 {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
}
.point__item-txt01--big {
  font-size: 1.6rem;
  font-weight: 700;
}
.point__item-txt01 sup {
  font-weight: 400;
}
.point__item-txt02 {
  margin-top: 0.9rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: -0.025em;
}
.point__item-note01 {
  grid-column: 1/3;
  grid-row: 2/3;
  font-size: 1rem;
  line-height: 1.8;
  text-align: right;
}
.point__item-box03 {
  width: 91%;
  margin: 3.3rem auto 0;
  border-radius: 1rem;
  padding: 1rem 1rem 0.8rem;
  background-color: rgba(255, 255, 255, 0.9);
}
.point__item-txt03 {
  font-size: 1.3rem;
  line-height: 1.5384615385;
  letter-spacing: -0.025em;
  text-align: center;
}
.point__item-img02 {
  width: 28rem;
  margin: 1.1rem auto 0;
}
.point__item-note02 {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  line-height: 2.2222222222;
  text-align: center;
}
.point__item-box04 {
  width: 91%;
  margin: 2rem auto 0;
  border-radius: 1rem;
  padding: 1.5rem 1rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.9);
}
.point__item-box04 .point__item-img02 {
  margin-top: 2rem;
}
.point__item-img03 {
  width: 25rem;
  margin: 2.7rem auto 0;
}
.point__item-video {
  width: 91%;
  aspect-ratio: 16/9;
  height: auto;
  margin: 5.3rem auto 0;
}
.point__item-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lineup {
  padding-top: 4.6rem;
  padding-bottom: 5.7rem;
  background: url(../img/lineup_bg.jpg) no-repeat center bottom/cover;
}
.lineup__ttl {
  width: 32rem;
  margin: 0 auto;
}
.lineup__list {
  width: 87%;
  margin: 3.7rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 2.5rem;
}
.lineup__item {
  width: calc((100% - 2.5rem) / 2);
  color: #8B784B;
}
.lineup__item-img {
  width: 12rem;
  margin: 0 auto;
}
.lineup__item-img img {
  transform: translateZ(0);
  filter: drop-shadow(0.6rem 0.3rem 0.6rem rgba(0, 0, 0, 0.3));
}
.lineup__item-img--new {
  z-index: 1;
  position: relative;
}
.lineup__item-img--new::before {
  z-index: -1;
  content: "";
  width: 6rem;
  height: 6rem;
  display: block;
  position: absolute;
  top: -3.3rem;
  left: -1.5rem;
  background: url(../img/badge_new.png) no-repeat center/contain;
}
.lineup__item-ttl {
  margin-top: 1.4rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 700;
  text-align: center;
}
.lineup__item-txt {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  text-align: center;
}
.lineup__item-btn {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}
.lineup__item-btn a {
  overflow: hidden;
  z-index: 1;
  width: 11rem;
  height: 2.4rem;
  border: 1px solid #8B784B;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  color: #8B784B;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  font-weight: 500;
  background: linear-gradient(90deg, #e1dbcc 0%, #f3f1eb 30%, #fff 100%);
  box-shadow: 0 0.3rem 0 #8B784B;
}
.lineup__item-btn a:hover {
  border-color: #e5e0db;
  color: #f1f1f1;
  opacity: 1;
}
.lineup__item-btn a:hover::after {
  left: 0;
  width: 100%;
}
.lineup__item-btn a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #b9a063 0%, #d1c398 100%);
}
.lineup__txt {
  margin-top: 6.2rem;
  color: #646977;
  font-size: 1.6rem;
  line-height: 1.875;
  text-align: center;
}
.lineup__btn {
  margin-top: 1.1rem;
  display: flex;
  justify-content: center;
}
.lineup__btn + .lineup__btn {
  margin-top: 2rem;
}
.lineup__btn + .lineup__btn a {
  box-shadow: 0.2rem 0.2rem 0 #646977;
}
.lineup__btn a {
  overflow: hidden;
  z-index: 1;
  width: 30rem;
  height: 6.5rem;
  border: 1px solid #646977;
  border-radius: 99rem;
  padding-bottom: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  color: #646977;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  background: linear-gradient(90deg, #ffffff 0%, #ececec 75%, #d6d6d6 100%);
  box-shadow: 0.3rem 0.3rem 0 #646977;
}
.lineup__btn a:hover {
  border-color: #ffffff;
  color: #ffffff;
  opacity: 1;
}
.lineup__btn a:hover::before {
  border-color: #ffffff;
}
.lineup__btn a:hover::after {
  left: 0;
  width: 100%;
}
.lineup__btn a::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border-top: 1px solid #646977;
  border-right: 1px solid #646977;
  display: block;
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}
.lineup__btn a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #b9beca 0%, #646977 100%);
  border-color: #ffffff;
}

.use {
  padding-top: 4rem;
  padding-bottom: 3.6rem;
  background: url(../img/use_bg.jpg) no-repeat center bottom/cover;
}
.use__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #8B784B;
}
.use__ttl--eng {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
.use__ttl--txt {
  margin-top: 0.7rem;
  font-size: 1.6rem;
  line-height: 2.125;
  font-weight: 500;
}
.use__box {
  width: 83%;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.use__img {
  width: 15rem;
}
.use__img img {
  transform: translateZ(0);
  filter: drop-shadow(0.6rem 0.3rem 0.6rem rgba(0, 0, 0, 0.3));
}
.use__txt {
  margin-right: -1rem;
  margin-bottom: 1rem;
  flex: 1;
  color: #8B784B;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.use__txt--line {
  padding-left: 1em;
  display: inline-block;
  text-indent: -1em;
}
.use__wrap {
  overflow: hidden;
  height: 56rem;
  margin-top: 0.8rem;
  padding: 0 2.7rem;
}
.use__block {
  position: relative;
}
.use__step {
  display: flex;
  position: absolute;
  top: 2.6rem;
  left: 0;
  gap: 1rem;
}
.use__step-item {
  width: 32rem;
  border-radius: 2rem;
  padding: 0.1rem 2rem 2.2rem;
  flex-shrink: 0;
  background-color: #a6956c;
  box-shadow: 0 0.6rem 0.6rem #aea388;
}
.use__step-item-num {
  width: 8rem;
  border-radius: 50%;
  padding: 0.5rem;
  margin: -2.6rem auto 0;
  background-color: #a6956c;
}
.use__step-item-img {
  width: 27rem;
  margin: 1.2rem auto 0;
}
.use__step-item-txt {
  margin-top: 1.7rem;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.use__point {
  width: 32rem;
  margin: 2.3rem auto 0;
}
.use__point-item {
  border-radius: 2rem;
  padding: 1.7rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #e0d6c0;
}
.use__point-item + .use__point-item {
  margin-top: 2rem;
}
.use__point-item-box {
  width: 14rem;
  padding: 0.3rem 0;
}
.use__point-item-img {
  margin-top: 1rem;
}
.use__point-item-img img {
  border-radius: 2rem;
}
.use__point-item-txt {
  flex: 1;
  color: #8B784B;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}

.select {
  padding-top: 4rem;
  padding-bottom: 3.3rem;
  background: url(../img/select_bg.jpg) no-repeat center bottom/cover;
}
.select__ttl {
  width: 32rem;
  margin: 0 auto;
}
.select__txt {
  margin-top: 1.3rem;
  color: #646977;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 500;
  text-align: center;
}
.select__list {
  width: 87%;
  margin: 5.6rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4.3rem 2.5rem;
}
.select__item {
  width: calc((100% - 2.5rem) / 2);
}
.select__item--type1 .select__item-color {
  color: #8B784B;
}
.select__item--type1 .select__item-back {
  background-color: #c4b38a;
}
.select__item--type2 .select__item-back {
  background-color: #9a9a9a;
}
.select__item--type3 .select__item-back {
  background-color: #a6b7bc;
}
.select__item--type4 .select__item-back {
  background-color: #a4abc0;
}
.select__item-img {
  width: 12rem;
  margin: 0 auto;
}
.select__item-img img {
  transform: translateZ(0);
  filter: drop-shadow(0.6rem 0.3rem 0.6rem rgba(0, 0, 0, 0.3));
}
.select__item-img--new {
  z-index: 1;
  position: relative;
}
.select__item-img--new::before {
  z-index: -1;
  content: "";
  width: 6rem;
  height: 6rem;
  display: block;
  position: absolute;
  top: -3rem;
  left: -1.5rem;
  background: url(../img/badge_new.png) no-repeat center/contain;
}
.select__item-ttl {
  margin-top: 1.5rem;
  color: #646977;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 700;
  text-align: center;
}
.select__item-box {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.select__item-box + .select__item-box {
  margin-top: 0.9rem;
}
.select__item-term {
  min-width: 12rem;
  border-radius: 99rem;
  padding: 0.3rem 0 0.5rem;
  color: #ffffff;
  font-size: 1.2rem;
  letter-spacing: -0.05em;
  text-align: center;
  background-color: #c4b38a;
}
.select__item-desc {
  margin-top: 0.2rem;
  font-size: 1.2rem;
  line-height: 2;
}
.select__item-desc--medium {
  font-weight: 500;
}
.select__item-star {
  margin-top: 0.2rem;
  color: #646977;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}

.thanks {
  padding-top: 3rem;
  padding-bottom: 5.4rem;
  background: url(../img/thanks_bg.jpg) no-repeat center bottom/cover;
}
.thanks__ttl {
  width: 32rem;
  margin: 0 auto;
}
.thanks__img {
  width: 24rem;
  margin: 2.8rem auto 0;
}
.thanks__txt {
  margin-top: 2rem;
  color: #8B784B;
  font-size: 1.6rem;
  line-height: 1.875;
  text-align: center;
}
.thanks__video {
  width: 91%;
  aspect-ratio: 16/9;
  height: auto;
  margin: 2.5rem auto 0;
}
.thanks__video iframe {
  width: 100%;
  height: 100%;
}

/* ------------------------------
    clearfix
------------------------------ */
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* End Hack *//*# sourceMappingURL=index.css.map */