@charset "UTF-8";
/* ========================= /
/  フォント
/* =========================*/
/* ========================= /
/  mixin
/* =========================*/
/* ========================= /
/  カラー
/* =========================*/
/* ========================= /
/  初期設定
/* =========================*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  background-color: #FFF8DE;
  color: #333333;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: normal;
  text-rendering: optimizeSpeed;
}
body.--js-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.body-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.main {
  display: block;
  flex-grow: 1;
}

@media screen and (min-width: 1024.02px) {
  .no-pc {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
  .no-tab {
    display: none !important;
  }
}

@media screen and (max-width: 599.98px) {
  .no-sp {
    display: none !important;
  }
}

.dib {
  display: inline-block;
}

@media screen and (min-width: 1024.02px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.form-reset {
  appearance: none;
  display: block;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}

.page-top, .fixed-sns__item, .global-nav__lower-item-link, .global-nav__item-link, .header__logo {
  transition: opacity 0.3s ease-out;
}
.page-top:hover, .fixed-sns__item:hover, .global-nav__lower-item-link:hover, .global-nav__item-link:hover, .header__logo:hover {
  opacity: 0.6;
}

/* ========================= /
/  z-index
/* =========================*/
.header {
  z-index: 9000;
}

.header__logo {
  position: relative;
  z-index: 6000;
}

.header__main {
  z-index: 5000;
}

.global-nav {
  position: relative;
  z-index: 5000;
}

.burger-btn {
  position: relative;
  z-index: 4000;
}

.burger-nav {
  position: relative;
  z-index: 3000;
}

/* ========================= /
/  ヘッダー
/* =========================*/
.header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 6px 12px rgba(91, 50, 24, 0.1);
}
@media screen and (max-width: 1024px) {
  .header {
    height: 55px;
  }
}
.header__inner {
  padding: 0 min(3.0864197531vw, 50px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0 min(4vw, 15px);
  }
}
.header__logo {
  flex: 1;
  max-width: 220px;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    max-width: 152px;
  }
}
.header__main {
  height: 100%;
}

/* ========================= /
/  グローバルナビ
/* =========================*/
.global-nav {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .global-nav {
    display: none;
  }
}
.global-nav__list {
  display: flex;
  align-items: center;
  gap: min(2.2222222222vw, 36px);
}
.global-nav__item {
  position: relative;
}
.global-nav__item-link {
  display: block;
  font-weight: bold;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.global-nav__item-link::before {
  content: "";
  display: block;
  margin-bottom: 5px;
  width: 46px;
  height: 40px;
  background: no-repeat center/contain;
}
.global-nav__item.--concept .global-nav__item-link::before {
  background-image: url(../img/common/icon-concept.svg);
}
.global-nav__item.--news .global-nav__item-link::before {
  background-image: url(../img/common/icon-news.svg);
}
.global-nav__item.--course .global-nav__item-link::before {
  background-image: url(../img/common/icon-course.svg);
}
.global-nav__item.--voice-faq .global-nav__item-link::before {
  background-image: url(../img/common/icon-voice.svg);
}
.global-nav__item.--introduction-access .global-nav__item-link::before {
  background-image: url(../img/common/icon-access.svg);
}
.global-nav__item.--infomation-application .global-nav__item-link::before {
  background-image: url(../img/common/icon-application.svg);
}
.global-nav__lower-list {
  padding: 14px 40px 18px 20px;
  min-width: 180px;
  height: auto;
  max-height: none;
  position: absolute;
  top: 100%;
  bottom: auto;
  background: #5B3218;
  transform: translateX(-15px);
  display: flex;
  flex-direction: column;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.global-nav__item:hover .global-nav__lower-list {
  opacity: 1;
  pointer-events: visible;
}
.global-nav__lower-item-link {
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

/* ========================= /
/  バーガーボタン
/* =========================*/
.burger-btn {
  width: 55px;
  height: 55px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  display: none;
}
@media screen and (max-width: 1024px) {
  .burger-btn {
    display: block;
  }
}
.burger-btn button {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.burger-btn__line {
  width: 29px;
  height: 3px;
  margin: auto;
  background-color: #333333;
  border-radius: 3px;
  position: absolute;
  right: 11px;
  transition: transform 0.3s cubic-bezier(0.4, 0.4, 0, 1), opacity 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.burger-btn__line:nth-of-type(1) {
  top: 15.5px;
}
.burger-btn.--active .burger-btn__line:nth-of-type(1) {
  top: 25.5px;
  transform: rotate(45deg);
}
.burger-btn__line:nth-of-type(2) {
  top: 25.5px;
}
.burger-btn.--active .burger-btn__line:nth-of-type(2) {
  opacity: 0;
}
.burger-btn__line:nth-of-type(3) {
  top: 35.5px;
}
.burger-btn.--active .burger-btn__line:nth-of-type(3) {
  top: 25.5px;
  transform: rotate(135deg);
}

/* ========================= /
/  バーガーメニュー
/* =========================*/
.burger-nav {
  position: fixed;
  top: 55px;
  right: 0;
  width: 100%;
  height: calc(100vh - 55px); /* Fallback */
  height: calc(var(--vh, 1vh) * 100 - 55px);
  background: #FFF8DE;
  overflow-y: auto;
  display: none;
}
.burger-nav__inner {
  padding-top: 49px;
  padding-inline: 4%;
}
.burger-nav__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.burger-nav__item {
  position: relative;
}
.burger-nav__item-open {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 5px;
  right: 0;
}
.burger-nav__item-open::before, .burger-nav__item-open::after {
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: #5B3218;
  position: absolute;
  right: 8px;
  top: 17px;
  transition: transform 0.3s ease-out;
}
.burger-nav__item-open::after {
  transform: rotate(90deg);
}
.burger-nav__item-open.--js-open::after {
  transform: none;
}
.burger-nav__item-link {
  display: block;
  width: fit-content;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 2rem;
}
.burger-nav__item-link::before {
  content: "";
  display: block;
  margin-bottom: 5px;
  width: 32px;
  height: 32px;
  background: no-repeat center/contain;
}
.burger-nav__item.--concept .burger-nav__item-link::before {
  background-image: url(../img/common/icon-concept.svg);
}
.burger-nav__item.--news .burger-nav__item-link::before {
  background-image: url(../img/common/icon-news.svg);
}
.burger-nav__item.--course .burger-nav__item-link::before {
  background-image: url(../img/common/icon-course.svg);
}
.burger-nav__item.--voice-faq .burger-nav__item-link::before {
  background-image: url(../img/common/icon-voice.svg);
}
.burger-nav__item.--introduction-access .burger-nav__item-link::before {
  background-image: url(../img/common/icon-access.svg);
}
.burger-nav__item.--infomation-application .burger-nav__item-link::before {
  background-image: url(../img/common/icon-application.svg);
}
.burger-nav__lower-list {
  margin-top: 12px;
  padding-left: 49px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.burger-nav__lower-item-link {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4444444444;
}
.burger-nav__btn {
  margin: 72px auto 0;
}
.burger-nav__sns-list {
  margin-top: 38px;
  margin-bottom: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

/* ========================= /
/  右下固定ボタン
/* =========================*/
.fixed-btn {
  position: fixed;
  right: 0;
  bottom: 98px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .fixed-btn {
    width: 100%;
    bottom: 0;
  }
}
.fixed-btn__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .fixed-btn__list {
    flex-direction: row;
    gap: 0;
  }
}
@media screen and (max-width: 1024px) {
  .fixed-btn__item {
    width: 50%;
  }
}
.fixed-btn__item-link {
  width: 212px;
  height: 95px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 0 0 20px;
  border: 1px solid transparent;
  border-right: none;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1024px) {
  .fixed-btn__item-link {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 1.6rem;
    border-radius: 10px 10px 0 0;
  }
}
.fixed-btn__item:nth-of-type(1) .fixed-btn__item-link {
  background: #DB5558;
}
.fixed-btn__item:nth-of-type(1) .fixed-btn__item-link:hover {
  color: #DB5558;
  background: #fff;
  border-color: #DB5558;
}
.fixed-btn__item:nth-of-type(2) .fixed-btn__item-link {
  background: #8EB92B;
}
.fixed-btn__item:nth-of-type(2) .fixed-btn__item-link:hover {
  color: #8EB92B;
  background: #fff;
  border-color: #8EB92B;
}

/* ========================= /
/  固定SNS
/* =========================*/
.fixed-sns {
  position: fixed;
  bottom: 52px;
  left: min(3.0864197531vw, 50px);
  display: none;
}
.fixed-sns__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fixed-sns__item {
  width: 36px;
}

/* ========================= /
/  ページトップ
/* =========================*/
.page-top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 4000;
}
@media screen and (max-width: 1024px) {
  .page-top {
    right: 15px;
    bottom: 75px;
    width: 40px;
    height: 40px;
  }
}

.footer-nav__lower-item-link, .footer-nav__item-link {
  transition: opacity 0.3s ease-out;
}
.footer-nav__lower-item-link:hover, .footer-nav__item-link:hover {
  opacity: 0.6;
}

/* ========================= /
/  フッター
/* =========================*/
.footer {
  margin-top: -1px;
  padding: 40px 0 32px;
  background: #5B3218;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-top: 0;
  }
}
.footer__box {
  width: 90%;
  margin-inline: auto;
  padding: 32px 40px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer__box {
    padding: 16px 6.4% 44px;
    width: 100%;
    flex-direction: column;
  }
}
.footer__txt {
  flex: 1;
  border-right: 1px solid #5B3218;
  padding-right: 24.5px;
  margin-right: 24.5px;
}
@media screen and (max-width: 1024px) {
  .footer__txt {
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 24.5px;
    margin-bottom: 24.5px;
    border-right: none;
    border-bottom: 1px solid #5B3218;
  }
}
.footer__logo {
  max-width: 195px;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    margin-inline: auto;
  }
}
.footer__address {
  margin-top: 12px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .footer__address {
    font-size: 1.6rem;
    text-align: center;
  }
}
.footer__para {
  margin-top: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .footer__para {
    display: none;
  }
}
.footer__tel {
  margin-bottom: 19px;
  display: block;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .footer__tel {
    font-size: 2.4rem;
    justify-content: center;
    gap: 10px;
  }
}
.footer__tel::before {
  content: "";
  display: block;
  width: 43px;
  height: 43px;
  background: url(../img/common/icon-tel.svg) no-repeat center/contain;
}
.footer__row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer__row + .footer__row {
  margin-top: 12px;
}
.footer__cat {
  width: 87px;
  height: 27px;
  line-height: 27px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
}
.footer__cat.--time {
  background: #8EB92B;
}
.footer__cat.--date {
  background: #55C1D5;
}
.footer__time, .footer__date {
  font-weight: bold;
}
.footer__btn {
  margin-top: 18px;
}
@media screen and (max-width: 1024px) {
  .footer__btn {
    margin-top: 24px;
    margin-inline: auto;
  }
}
.footer__copyright {
  margin-top: 59px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
}

/* ========================= /
/  フッターナビ
/* =========================*/
.footer-nav {
  margin-top: 48px;
}
.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(4.4444444444vw, 72px);
}
@media screen and (max-width: 1024px) {
  .footer-nav__list {
    padding-left: 6.4%;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-nav__item {
    width: 100%;
  }
}
.footer-nav__item-link {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
.footer-nav__lower-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .footer-nav__lower-list {
    padding-left: 6.4%;
  }
}
.footer-nav__lower-item-link {
  color: #fff;
  font-weight: bold;
}

/* ========================= /
/  アクセス
/* =========================*/
.access {
  margin-top: 130px;
  background: url(../img/common/access-bg.svg) no-repeat center bottom/100% auto;
}
@media screen and (max-width: 1024px) {
  .access {
    margin-top: 64px;
    padding-bottom: 153px;
    background-image: url(../img/common/access-bg_sp.svg);
  }
}
.access__map {
  margin-top: 42px;
  width: 100%;
  aspect-ratio: 1080/405;
}
@media screen and (max-width: 1024px) {
  .access__map {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    aspect-ratio: 375/309;
  }
}
.access__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
@media screen and (max-width: 1024px) {
  .access__map iframe {
    border-radius: 0;
  }
}

.btn02 {
  transition: opacity 0.3s ease-out;
}
.btn02:hover {
  opacity: 0.6;
}

/* ========================= /
/  カラー
/* =========================*/
.green {
  color: #8EB92B;
}

.orange {
  color: #F49E1A;
}

.red {
  color: #DB5558;
}

.blue {
  color: #55C1D5;
}

.pink {
  color: #FD81E9;
}

/* ========================= /
/  共通パーツ
/* =========================*/
.indent10e {
  text-indent: -1em;
  padding-left: 1em;
}

.inner {
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .inner {
    width: 100%;
    padding-inline: 4%;
  }
}

.sec {
  margin: 130px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sec {
    margin: 64px 0;
  }
}
.sec__ttl {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .sec__ttl {
    flex-direction: column;
    gap: 8px;
  }
}
.sec__ttl.--col {
  flex-direction: column;
  gap: 4px;
}
.sec__ttl.--dot {
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .sec__ttl.--dot {
    gap: 24px;
  }
}
.sec__ttl.--dot::after {
  content: "";
  display: block;
  width: 88px;
  height: 10px;
  background: url(../img/common/icon-dot.svg) no-repeat center/contain;
}
.sec__ttl.--dot.--col {
  gap: 24px;
}
.sec__ttl.--dot.--left {
  justify-content: flex-start;
}
.sec__ttl.-min {
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .sec__ttl.-min {
    gap: 15px;
  }
}
.sec__ttl--ja {
  color: #5B3218;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4375;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .sec__ttl--ja {
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 0.05em;
  }
}
.sec__ttl--en {
  display: flex;
  align-items: center;
  gap: 0.1em;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.4583333333;
}
@media screen and (max-width: 1024px) {
  .sec__ttl--en {
    font-size: 2rem;
  }
}

.btn {
  padding: 0 25px 0 21px;
  width: fit-content;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 63px;
  letter-spacing: 0.05em;
  font-weight: bold;
  background: #fff;
  border: 1px solid #5B3218;
  box-shadow: 0 3px 0 0 #5B3218;
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
}
@media screen and (max-width: 1024px) {
  .btn {
    padding: 0 20px 0 15px;
    height: 58px;
    height: 55px;
    line-height: 55px;
    font-size: 1.4rem;
    gap: 4px;
  }
}
.btn:hover {
  transform: translateY(3px);
  box-shadow: none;
}
.btn::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url(../img/common/btn-arrow_brawn.svg) no-repeat center/contain;
}
@media screen and (max-width: 1024px) {
  .btn::after {
    width: 24px;
    height: 24px;
  }
}

.btn02 {
  padding: 0 16px;
  width: fit-content;
  height: fit-content;
  min-width: 318px;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 1.8rem;
  font-weight: bold;
  background: #fff;
  border: 1px solid #5B3218;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4444444444;
  color: #5B3218;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .btn02 {
    min-width: 300px;
    font-size: 1.6rem;
  }
}
.btn02 span {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .btn02 span {
    font-size: 1.3rem;
  }
}
.btn02.--arrow {
  position: relative;
}
.btn02.--arrow::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 15px;
  height: 9px;
  background: url(../img/common/btn-arrowdown_brawn.svg) no-repeat center/contain;
}

.pageHeader {
  margin: 100px 0 0;
  aspect-ratio: 3240/750;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .pageHeader {
    margin: 77px 0 0;
  }
}
.pageHeader__bg {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .pageHeader__bg {
    scale: 1.5;
  }
}
.pageHeader__bg img {
  aspect-ratio: 3240/750;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageHeader__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pageHeader__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px 0;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .pageHeader__ttl {
    gap: 5px 0;
  }
}
.pageHeader__ttl--ja {
  font-size: 4rem;
}
@media screen and (max-width: 1024px) {
  .pageHeader__ttl--ja {
    font-size: 2.5rem;
    text-align: center;
  }
}
.pageHeader__ttl--en {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .pageHeader__ttl--en {
    font-size: 1.4rem;
  }
}

.point__inner {
  backdrop-filter: blur(8px);
  border-radius: 64px;
}
.point__box {
  padding: 88px min(3.950617284vw, 64px) 56px;
  background: rgba(91, 50, 24, 0.05);
  border-radius: 64px;
}
.point__para {
  margin-top: 27px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .point__para {
    font-size: 1.4rem;
    text-align: left;
  }
}
.point__heading {
  margin: 33px auto 0;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .point__heading {
    max-width: 205px;
  }
}
.point__list {
  margin-top: -32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}
@media screen and (max-width: 1024px) {
  .point__list {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .point__item {
    margin-inline: auto;
    max-width: 292px;
  }
}
.point__item:nth-of-type(2) {
  margin-top: 54px;
}
@media screen and (max-width: 1024px) {
  .point__item:nth-of-type(2) {
    margin-top: 0;
  }
}
.point__item-ttl {
  margin-top: 12px;
  text-align: center;
  color: #5B3218;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .point__item-ttl {
    font-size: 1.8rem;
  }
}
.point__item-para {
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .point__item-para {
    font-size: 1.4rem;
  }
}
.point__result {
  margin-top: 72px;
  padding: 18px 35px 23px 35px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .point__result {
    font-size: 1.6rem;
  }
}
.point__result::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18px 0 18px;
  border-color: #55C1D5 transparent transparent transparent;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translate(-50%, -100%);
}

/* ========================= /
/  ローディング
/* =========================*/
.loading {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: auto;
  transition: opacity 1s;
  z-index: 9999;
}
.loading--js-loaded {
  opacity: 0;
  pointer-events: none;
}

/* ========================= /
/  流体シェイプ
/* =========================*/
.shape {
  width: 100vw;
  position: absolute;
  aspect-ratio: 1/1;
  z-index: -1;
}
.shape.--w80 {
  width: 80vw;
}
@media screen and (max-width: 1024px) {
  .shape.--w80 {
    width: 100vw;
  }
}
.shape.--w60 {
  width: 60vw;
}
@media screen and (max-width: 1024px) {
  .shape.--w60 {
    width: 80vw;
  }
}
.shape.--w50 {
  width: 50vw;
}
@media screen and (max-width: 1024px) {
  .shape.--w50 {
    width: 70vw;
  }
}
.shape.--w40 {
  width: 40vw;
}
@media screen and (max-width: 1024px) {
  .shape.--w40 {
    width: 60vw;
  }
}
.shape.--w30 {
  width: 30vw;
}
@media screen and (max-width: 1024px) {
  .shape.--w30 {
    width: 50vw;
  }
}
.shape.--w20 {
  width: 20vw;
}
@media screen and (max-width: 1024px) {
  .shape.--w20 {
    width: 40vw;
  }
}
.shape.--w15 {
  width: 15vw;
}
@media screen and (max-width: 1024px) {
  .shape.--w15 {
    width: 35vw;
  }
}
.shape.--w10 {
  width: 10vw;
}
@media screen and (max-width: 1024px) {
  .shape.--w10 {
    width: 30vw;
  }
}
.shape.--right {
  right: 0;
}
@media screen and (max-width: 1024px) {
  .shape.--right {
    transform: translateX(50%);
  }
}
.shape.--left {
  left: 0;
}
@media screen and (max-width: 1024px) {
  .shape.--left {
    transform: translateX(-50%);
  }
}
.shape.--top {
  top: 0;
}
.shape.--bottom {
  bottom: 0;
}

/* ========================= /
/  ページネーション
/* =========================*/
.pagination {
  margin-top: 64px;
}
.pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pagination__list .page-numbers {
  display: block;
  width: 45px;
  height: 45px;
  background: #fff;
  border: 1px solid #5B3218;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
  .pagination__list .page-numbers {
    width: 32px;
    height: 32px;
    font-size: 1.6rem;
  }
}
.pagination__list .page-numbers.current {
  background: #333333;
  color: #fff;
}
.pagination__list .page-numbers.dots {
  border: none;
  background: initial;
}
@media screen and (max-width: 1024px) {
  .pagination__list .page-numbers.dots {
    width: fit-content;
  }
}

/* ========================= /
/  プラグイン
/* =========================*/
#sb_instagram .sbi_photo {
  border-radius: 8px;
}

@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.anime-fuwafuwa {
  animation: 3s fuwafuwa infinite;
}

.anime-delay3ms {
  animation-delay: 300ms;
}

.anime-delay6ms {
  animation-delay: 600ms;
}

.js-fadeup {
  opacity: 0;
  transform: translate(0%, 50px);
  transition: opacity, transform, 0.8s ease-out 0.3s;
}
.js-fadeup.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.js-fadelist {
  position: relative;
}
.js-fadelist > * {
  opacity: 0;
  transition: opacity 0.5s, transform 1.5s;
  transition-delay: 0.3s;
  transform: translateY(50px);
}
.js-fadelist > *:nth-of-type(1) {
  transition-delay: 0.5s;
}
.js-fadelist > *:nth-of-type(2) {
  transition-delay: 0.7s;
}
.js-fadelist > *:nth-of-type(3) {
  transition-delay: 0.9s;
}
.js-fadelist > *:nth-of-type(4) {
  transition-delay: 1.1s;
}
.js-fadelist > *:nth-of-type(5) {
  transition-delay: 1.3s;
}
.js-fadelist > *:nth-of-type(6) {
  transition-delay: 1.5s;
}
.js-fadelist > *:nth-of-type(7) {
  transition-delay: 1.7s;
}
.js-fadelist > *:nth-of-type(8) {
  transition-delay: 1.9s;
}
.js-fadelist > *:nth-of-type(9) {
  transition-delay: 2.1s;
}
.js-fadelist > *:nth-of-type(10) {
  transition-delay: 2.3s;
}
.js-fadelist > *:nth-of-type(11) {
  transition-delay: 2.5s;
}
.js-fadelist > *:nth-of-type(12) {
  transition-delay: 2.7s;
}
.js-fadelist > *:nth-of-type(13) {
  transition-delay: 2.9s;
}
.js-fadelist > *:nth-of-type(14) {
  transition-delay: 3.1s;
}
.js-fadelist > *:nth-of-type(15) {
  transition-delay: 3.3s;
}
.js-fadelist.is-visible > * {
  opacity: 1;
  transform: none;
}/*# sourceMappingURL=whole.css.map */
