@charset "UTF-8";
/*------------------------------------------
色指定（css関数）
------------------------------------------*/
:root {
  --main-color: #ffb6b9;
  --main-color-rgb: 0, 255, 245;
  --text-color-b: #111111;
  --text-color-b-rgb: 17, 17, 17;
  --text-color-w: #eeeeee;
  --text-color-w-rgb: 238, 238, 238;
}

/*------------------------------------------
全体
------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif;
  text-transform: capitalize;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-weight: Regular;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--text-color-w);
}

img {
  max-width: 100%;
}

/* リセットcssで表示が消えたラジオボタンを再表示 */
input[type=radio] {
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
}

/*リセットcssで表示が消えたセレクトボックスの矢印を再表示*/
select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

select::-ms-expand {
  display: block;
}

/* レスポンシブデザイン（SP版） 1023px以下
-- 全体 -----------------------------*/
@media screen and (max-width: 1023px) {
  body {
    font-size: 14px;
  }
}
/*------------------------------------------
共通
------------------------------------------*/
.bg-w {
  color: var(--text-color-b);
  background-image: url(../assets/img/bgc-w.jpg);
  background-size: cover;
}
.bg-w .section__title-border {
  background-color: var(--text-color-b);
}

.bg-b {
  background-image: url(../assets/img/bgc-b.jpg);
  background-size: cover;
}
.bg-b .section__title-border {
  background-color: var(--text-color-w);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 50px 30px 80px;
}

.section-subtitle {
  display: inline-block;
  font-size: 38px;
  color: var(--main-color);
  background-color: var(--text-color-b);
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 5px;
}
.section-subtitle.reverse {
  color: var(--text-color-b);
  background-color: var(--main-color);
}

.section__title {
  font-family: "Candal";
}
.section__title-text {
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-bottom: 30px;
}
.section__title-border {
  display: block;
  width: 80px;
  height: 8px;
  border-radius: 5px;
  margin-bottom: 40px;
}

/* レスポンシブデザイン（SP版） 1023px以下
-- 共通 -----------------------------*/
@media screen and (max-width: 1023px) {
  .section-subtitle {
    font-size: 28px;
  }
  .section__title-text {
    font-size: clamp(60px, 7.81vw, 80px);
  }
}
/* レスポンシブデザイン（SP版） 767px以下
-- 共通 -----------------------------*/
@media screen and (max-width: 767px) {
  .section-subtitle {
    font-size: 20px;
  }
  .section__title-text {
    font-size: clamp(36px, 6.12vw + 13.04px, 60px);
    padding-bottom: 15px;
  }
  .section__title-border {
    width: 60px;
    height: 6px;
    margin-bottom: 30px;
  }
}
/*------------------------------------------
ボタン
------------------------------------------*/
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 300px;
  height: 70px;
  border-radius: 50px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.2em;
  color: var(--text-color-b);
  text-align: center;
  background-color: #00fff5;
  -webkit-box-shadow: 0 10px 0 rgba(var(--main-color-rgb), 0.4);
          box-shadow: 0 10px 0 rgba(var(--main-color-rgb), 0.4);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: 0 6px 0 rgba(var(--main-color-rgb), 0.4);
          box-shadow: 0 6px 0 rgba(var(--main-color-rgb), 0.4);
}

/* レスポンシブデザイン（SP版） 767px以下
-- ボタン -----------------------------*/
@media screen and (max-width: 767px) {
  .btn {
    width: 90%;
    height: 60px;
    font-size: 22px;
  }
}
/*------------------------------------------
アニメーション
------------------------------------------*/
.slideUp {
  opacity: 0;
}
.slideUp.active {
  -webkit-animation: slideUp 0.4s ease-in forwards;
          animation: slideUp 0.4s ease-in forwards;
}

@-webkit-keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
/*------------------------------------------
loading
------------------------------------------*/
.loading {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text-color-b);
}
.loading.hidden {
  opacity: 0;
  -webkit-animation: hide 0.5s ease-in forwards;
          animation: hide 0.5s ease-in forwards;
}

.loading-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.loading-text {
  font-size: 22px;
  font-weight: bold;
  color: var(--main-color);
}

/*loading animation*/
/*引用：「Epic Spinners」https://epic-spinners.vuestic.dev/*/
.self-building-square-spinner,
.self-building-square-spinner * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.self-building-square-spinner {
  height: 55px;
  width: 55px;
  top: -6.6666666667px;
}

.self-building-square-spinner .square {
  height: 15px;
  width: 15px;
  top: -6.6666666667px;
  margin-right: 3.3333333333px;
  margin-top: 3.3333333333px;
  background: var(--main-color);
  float: left;
  position: relative;
  opacity: 0;
  -webkit-animation: self-building-square-spinner 6s infinite;
          animation: self-building-square-spinner 6s infinite;
}

.self-building-square-spinner .square:nth-child(1) {
  -webkit-animation-delay: 1800ms;
          animation-delay: 1800ms;
}

.self-building-square-spinner .square:nth-child(2) {
  -webkit-animation-delay: 2100ms;
          animation-delay: 2100ms;
}

.self-building-square-spinner .square:nth-child(3) {
  -webkit-animation-delay: 2400ms;
          animation-delay: 2400ms;
}

.self-building-square-spinner .square:nth-child(4) {
  -webkit-animation-delay: 900ms;
          animation-delay: 900ms;
}

.self-building-square-spinner .square:nth-child(5) {
  -webkit-animation-delay: 1200ms;
          animation-delay: 1200ms;
}

.self-building-square-spinner .square:nth-child(6) {
  -webkit-animation-delay: 1500ms;
          animation-delay: 1500ms;
}

.self-building-square-spinner .square:nth-child(7) {
  -webkit-animation-delay: 0ms;
          animation-delay: 0ms;
}

.self-building-square-spinner .square:nth-child(8) {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

.self-building-square-spinner .square:nth-child(9) {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}

.self-building-square-spinner .clear {
  clear: both;
}

@-webkit-keyframes self-building-square-spinner {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
    top: 0;
  }
  50.9% {
    opacity: 1;
    top: 0;
  }
  55.9% {
    opacity: 0;
    top: inherit;
  }
}

@keyframes self-building-square-spinner {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
    top: 0;
  }
  50.9% {
    opacity: 1;
    top: 0;
  }
  55.9% {
    opacity: 0;
    top: inherit;
  }
}
/*------------------------------------------
parallax
------------------------------------------*/
.bgParallax {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
}

.bgParallax::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.5) 50%);
  background-size: 4px 4px;
}

.bgParallax-video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}

/* レスポンシブデザイン（SP版） 1023px以下
-- Parallax -----------------------------*/
@media screen and (max-width: 1023px) {
  .bgParallax-video {
    width: 100%;
  }
}
/* レスポンシブデザイン（SP版） 767px以下
-- Parallax -----------------------------*/
@media screen and (max-width: 767px) {
  .bgParallax-video {
    -o-object-position: 85% 50%;
       object-position: 85% 50%;
  }
}
/*------------------------------------------
header
------------------------------------------*/
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 100px;
}
.header-bg {
  position: absolute;
  z-index: -1;
  inset: 0;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header.slide {
  -webkit-animation: header 0.4s linear forwards;
          animation: header 0.4s linear forwards;
}
.header.slide .header-bg {
  opacity: 1;
}

.header-container {
  height: 100%;
  padding: 0 20px;
}

.header-inner {
  position: relative;
  height: 100%;
  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;
}

.header__title-logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 140px;
  height: 90px;
  font-family: "Hiragino Maru Gothic ProN", "Rounded Mplus 1c", sans-serif;
  font-weight: bold;
  line-height: 1.2;
  z-index: 1;
}
.header__title-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 85px;
  height: 85px;
  background: radial-gradient(circle at 30% 30%, #fff9e5 0%, #ffede0 40%, #ffb6b9 100%);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 6px rgba(255, 182, 185, 0.3), 0 0 15px rgba(255, 111, 97, 0.2);
          box-shadow: 0 0 0 6px rgba(255, 182, 185, 0.3), 0 0 15px rgba(255, 111, 97, 0.2);
  z-index: -1;
}

.header__row-1 {
  font-size: 22px;
  color: #ff6f61;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.header__row-2 {
  font-size: 20px;
  color: #52a34b;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* background music */
.soundSwitch {
  position: absolute;
  top: 20px;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  cursor: pointer;
}
.soundSwitch:hover {
  color: var(--main-color);
}
.soundSwitch-text::before {
  content: "sound off";
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.soundSwitch-icon::before {
  font-family: "Material Icons Round";
  text-transform: none;
  content: "volume_up";
  font-size: 24px;
}
.soundSwitch.on .soundSwitch-text::before {
  content: "sound on";
}
.soundSwitch.on .soundSwitch-icon::before {
  content: "volume_off";
}

/* nav */
.nav {
  margin: 0 auto;
  padding: 10px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.nav.slide {
  background-color: rgba(var(--text-color-b-rgb), 0.4);
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-column-rule: 2px solid rgba(var(--text-color-w-rgb), 0.6);
     -moz-column-rule: 2px solid rgba(var(--text-color-w-rgb), 0.6);
          column-rule: 2px solid rgba(var(--text-color-w-rgb), 0.6);
}
.nav-list:first-child {
  padding-left: 10px;
}
.nav-list:last-child {
  padding-right: 10px;
}

.nav-item {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-item a.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main-color);
}
.nav-item a.active::before {
  content: "▶";
  font-size: 10px;
  padding-right: 5px;
}
.nav-item a:hover {
  color: var(--main-color);
}

.underline {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--main-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* レスポンシブデザイン（SP版） 1023px以下
-- header -----------------------------*/
@media screen and (max-width: 1023px) {
  .header-bg {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(255, 0, 0, 0.6)), to(rgba(255, 0, 0, 0.4)));
    background: linear-gradient(rgba(255, 0, 0, 0.6) 50%, rgba(255, 0, 0, 0.4) 100%);
  }
  .header__title-logo {
    font-size: 24px;
  }
  /* background music */
  .soundSwitch-text::before {
    font-size: 18px;
  }
  /* nav */
  .nav.slide {
    background-color: rgba(255, 0, 0, 0.4);
  }
  .nav-item {
    font-size: 18px;
  }
}
/* レスポンシブデザイン（SP版） 767px以下
-- header -----------------------------*/
@media screen and (max-width: 767px) {
  .header-bg {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 255, 0.6)), to(rgba(0, 0, 255, 0.4)));
    background: linear-gradient(rgba(0, 0, 255, 0.6) 50%, rgba(0, 0, 255, 0.4) 100%);
  }
  /* background music */
  .soundSwitch {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 20%;
  }
  /* nav */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;
    width: 150px;
    height: 50%;
    border-left: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    border-radius: 50% 0 0 50%;
    color: var(--text-color-b);
    background-color: var(--text-color-w);
    padding-top: 100px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav.open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .nav.slide {
    background-color: var(--text-color-w);
  }
  .nav-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: end;
    row-gap: 5px;
  }
  .underline {
    display: none;
  }
  /* hamburger */
  .hamburger {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    z-index: 30;
  }
  .hamburger-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff9e5 0%, #ffede0 40%, #ffb6b9 100%);
    cursor: pointer;
  }
  .hamburger-icon.open .hamburger-border:nth-child(1) {
    -webkit-transform: translateY(14px) rotate(45deg);
            transform: translateY(14px) rotate(45deg);
  }
  .hamburger-icon.open .hamburger-border:nth-child(2) {
    opacity: 0;
  }
  .hamburger-icon.open .hamburger-border:nth-child(3) {
    -webkit-transform: translateY(-14px) rotate(315deg);
            transform: translateY(-14px) rotate(315deg);
  }
  .hamburger-border {
    position: absolute;
    right: 12px;
    width: 36px;
    height: 8px;
    border: 1px solid red;
    border-radius: 5px;
    background-color: var(--main-color);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .hamburger-border:nth-child(1) {
    top: 12px;
  }
  .hamburger-border:nth-child(2) {
    top: 26px;
  }
  .hamburger-border:nth-child(3) {
    top: 40px;
  }
}
/*------------------------------------------
mv
------------------------------------------*/
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
}

.mv-container {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 40px;
}

.mv__title-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.2em;
  padding-left: 10px;
  margin-bottom: 30px;
}

.mv-icon {
  font-size: 32px;
}

.mv-text {
  padding: 0 5px;
}

.mv__title-maintitle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  font-size: 120px;
  font-weight: bold;
  line-height: 1.1;
  padding-bottom: 30px;
}

.mv__title-row1 {
  color: #ff6f61;
}

.mv__title-row2 {
  color: #52a34b;
}

.mv__title-subtitle {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.4em;
  padding-bottom: 50px;
}

.mv-Notice {
  line-height: 1.2;
  padding-top: 20px;
}

/* レスポンシブデザイン（SP版） 1023px以下
-- mv -----------------------------*/
@media screen and (max-width: 1023px) {
  .mv__title-text {
    font-size: clamp(28px, 1.56vw + 16px, 32px);
    padding-left: 5px;
    margin-bottom: 20px;
  }
  .mv-icon {
    font-size: clamp(28px, 1.56vw + 16px, 32px);
  }
  .mv__title-maintitle {
    font-size: clamp(100px, 7.81vw + 40px, 120px);
    padding-bottom: 30px;
  }
  .mv__title-subtitle {
    font-size: clamp(28px, 2.34vw + 10px, 34px);
    letter-spacing: 0.3em;
  }
}
/* レスポンシブデザイン（SP版） 767px以下
-- mv -----------------------------*/
@media screen and (max-width: 767px) {
  .mv {
    height: 500px;
  }
  .mv__title-text {
    font-size: clamp(18px, 2.55vw + 8.43px, 28px);
    padding-left: 0;
    margin-bottom: 10px;
  }
  .mv-icon {
    font-size: clamp(18px, 2.55vw + 8.43px, 28px);
  }
  .mv__title-maintitle {
    font-size: clamp(48px, 13.27vw - 1.74px, 100px);
    padding-bottom: 15px;
  }
  .mv__title-subtitle {
    font-size: clamp(16px, 3.06vw + 4.52px, 28px);
    letter-spacing: 0.2em;
    padding-bottom: 20px;
  }
}
/* clamp関数の設定：「CSS Clamp Generator（Font Size専用）」
url：https://urban-sp.jp/column/webtools/css-clamp/ */
/*------------------------------------------
choice
------------------------------------------*/
.choice__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-bottom: 50px;
}

.choice__categories-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 45%;
          flex: 1 0 45%;
  text-align: center;
  font-size: 48px;
  line-height: 1.2;
  cursor: pointer;
}
.choice__categories-item .choice__categories-text {
  padding-bottom: 20px;
}
.choice__categories-item .choice__categories-text:hover {
  font-weight: 600;
}
.choice__categories-item .choice__categories-border {
  width: 100%;
  height: 1px;
  background-color: var(--text-color-b);
  border-radius: 10px;
}
.choice__categories-item.trigger .choice__categories-text {
  padding-bottom: 18px;
  font-weight: 600;
}
.choice__categories-item.trigger .choice__categories-border {
  height: 5px;
}

.choice-cat {
  display: none;
}
.choice-cat.active {
  display: block;
}

.choice-dog {
  display: none;
}
.choice-dog.active {
  display: block;
}

.choice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.choice__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.choice__item-img {
  width: 343.3333333333px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.choice__item-text {
  max-width: 343.3333333333px;
  font-size: 1em;
  line-height: 1.5;
  color: var(--text-color-b);
  background-color: var(--text-color-w);
  padding: 20px;
  border-radius: 0 0 10px 10px;
}

/* レスポンシブデザイン（SP版） 767px以下
-- mv -----------------------------*/
@media screen and (max-width: 767px) {
  .choice__categories-item {
    font-size: 36px;
  }
  .choice__categories-item .choice__categories-text {
    padding-bottom: 15px;
  }
  .choice__categories-item.trigger .choice__categories-text {
    padding-bottom: 13px;
  }
  .choice-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
  .choice__item-img {
    width: 100%;
  }
  .choice__item-text {
    max-width: 100%;
  }
}
/*------------------------------------------
slide(Swiper)
------------------------------------------*/
.swiper-container {
  position: relative;
  margin: 0 auto;
  padding-bottom: 60px;
}

.swiper {
  border-radius: 12px;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination {
  bottom: -50px;
}
.swiper-pagination-bullet {
  background-color: #ffb6b9;
  opacity: 0.6;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background-color: var(--main-color);
  opacity: 1;
  width: 48px;
  border-radius: 10px;
}

.swiper-button-prev,
.swiper-button-next {
  color: transparent;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--main-color);
  font-size: 120px;
  line-height: 1;
  color: var(--text-color-b);
  text-align: center;
  font-family: "Material Icons Round";
  text-transform: none;
}

.swiper-button-prev::after {
  left: -60px;
  content: "chevron_left";
}

.swiper-button-next::after {
  right: -60px;
  content: "chevron_right";
}

/* レスポンシブデザイン（SP版） 1023px以下
-- swiper -----------------------------*/
@media screen and (max-width: 1023px) {
  .swiper-container {
    padding-bottom: 30px;
  }
  .swiper-pagination {
    bottom: -25px;
  }
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 5px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 40px;
    height: 40px;
    font-size: 40px;
  }
  .swiper-button-prev::after {
    left: -20px;
  }
  .swiper-button-next::after {
    right: -20px;
  }
}
/*------------------------------------------
price（右スクロール）
------------------------------------------*/
.price-body {
  position: relative;
  overflow-x: auto;
}

.price__scroll {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  z-index: 1;
  width: 75px;
  height: 75px;
  border: 1px solid #707070;
  border-radius: 4px;
  color: var(--text-color-b);
  background-color: rgba(var(--text-color-w-rgb), 0.6);
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.price__scroll.hidden {
  opacity: 0;
}

.price__scroll-arrow {
  font-size: 40px;
}

.price__scroll-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.15;
}

.price-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  width: 1020px;
  padding: 20px 0;
}

.price-item {
  position: relative;
  width: 320px;
  border-radius: 10px;
  text-align: center;
  color: var(--text-color-w);
  background-color: var(--text-color-b);
  border: 2px solid var(--main-color);
}

.price-content {
  padding: 30px 0;
  margin: 0 20px;
  border-bottom: 1px solid rgba(var(--text-color-w-rgb), 0.8);
  line-height: 1.15;
}
.price-content:last-child {
  border-bottom: none;
}

.price-course {
  font-size: 26px;
  font-weight: 600;
  padding: 10px 0;
}

.price-price {
  font-size: 48px;
}
.price-price .yen {
  font-size: 40px;
}

.price__plan-title {
  font-size: 18px;
  font-weight: 300;
  padding-bottom: 10px;
}

.price__plan-text {
  font-size: 16px;
  font-weight: 600;
}

.price__pop {
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  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;
  width: 260px;
  height: 40px;
  border: 2px solid var(--main-color);
  border-radius: 70px;
  background-color: var(--text-color-b);
}

.price__pop-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--main-color);
}

/*------------------------------------------
faq（アコーディオン）
------------------------------------------*/
.faq-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.faq__contents {
  cursor: pointer;
  color: var(--text-color-b);
  background-color: var(--text-color-w);
  border-radius: 30px;
  overflow: hidden;
}
.faq__contents .faq-arrow::before {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--text-color-b);
  -webkit-box-shadow: 0 0 8px rgba(var(--text-color-b-rgb), 0.4);
          box-shadow: 0 0 8px rgba(var(--text-color-b-rgb), 0.4);
  padding: 6px;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-color-w);
  text-transform: none;
  font-family: "Material Icons Round";
  content: "arrow_back_ios_new";
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.faq__contents .faq__answer {
  padding: 0 20px;
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  max-height: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.faq__contents.open .faq-arrow::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__contents.open .faq__answer {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  max-height: 500px;
}

.faq__question {
  padding: 0 20px;
}

.faq__question-items {
  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: 20px 0;
}

.faq__question-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq-mark {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--main-color);
  text-shadow: 2px 2px rgba(var(--text-color-b-rgb), 0.6);
  padding-right: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-transform: none;
}

.faq__answer-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(var(--text-color-b-rgb), 0.6);
}
.faq__answer-items .faq-text {
  font-weight: normal;
}

/* レスポンシブデザイン（SP版） 767px以下
-- faq -----------------------------*/
@media screen and (max-width: 767px) {
  .faq__contents .faq-arrow::before {
    width: 30px;
    height: 30px;
    padding: 4px;
    font-size: 22px;
  }
  .faq-text {
    font-size: 14px;
    line-height: 1.2;
  }
}
/*------------------------------------------
icon(material icon)
------------------------------------------*/
.material-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  padding-top: 10px;
}

.material-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 20%;
          flex: 1 0 20%;
  border: 1px solid var(--text-color-b);
  text-align: center;
  text-transform: none;
  padding: 10px 0;
}

.material-icon {
  font-size: 100px;
}

.material-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.15;
  padding-bottom: 10px;
}

/* レスポンシブデザイン（SP版） 767px以下
-- material -----------------------------*/
@media screen and (max-width: 767px) {
  .material-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .material-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 45%;
            flex: 1 0 45%;
  }
}
/*------------------------------------------
registor(form)
------------------------------------------*/
.register-inner {
  border: 5px solid var(--main-color);
  border-radius: 20px;
  background-color: var(--text-color-b);
  padding: 90px 90px;
}

.register__radio-title {
  font-weight: bold;
  line-height: 1.15;
  padding-bottom: 15px;
}

.required {
  font-size: 0.7em;
  font-weight: bold;
  line-height: 1.15;
  color: var(--main-color);
  margin-left: 9px;
}

.register__radio-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.register-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
  padding-top: 40px;
}

.inputFrame {
  width: 350px;
  height: auto;
  background-color: var(--text-color-w);
  border: 1px solid #aaa;
  border-radius: 6px;
  font-size: 1em;
  line-height: 1.15;
  color: var(--text-color-b);
  text-transform: none;
  padding: 8px;
}

.small {
  font-size: 0.75em;
  font-weight: bold;
  line-height: 1.15;
  margin-left: 5px;
}

.register-inputTel {
  width: 200px;
}

.register-inputQuestion {
  width: 600px;
  height: calc(5.75em + 16px);
  font-size: 1em;
  line-height: 1.15;
}

.register-inputKnow {
  cursor: pointer;
}

.register-submit {
  padding-top: 80px;
}

.register-btn {
  margin: 0 auto;
}

.register-Notice {
  padding-top: 20px;
  text-align: center;
}

/* レスポンシブデザイン（SP版） 1023px以下
-- register -----------------------------*/
@media screen and (max-width: 1023px) {
  .register-inner {
    padding: 60px 30px;
  }
}
/* レスポンシブデザイン（SP版） 767px以下
-- header -----------------------------*/
@media screen and (max-width: 767px) {
  .register-inner {
    padding: 40px 10px;
  }
  .inputFrame {
    width: 100%;
  }
  .register-submit {
    padding-top: 40px;
  }
}
/*------------------------------------------
map(access)
------------------------------------------*/
.company {
  width: 100%;
}

.company-item {
  width: 100%;
  border-bottom: 1px solid var(--text-color-b);
}

.company-title,
.company-text {
  padding: 30px 0;
  font-size: 18;
  line-height: 1.5;
  letter-spacing: 0.1em;
  vertical-align: middle;
}

.company-title {
  width: 25%;
  text-align: center;
}

.company-text {
  width: 75%;
}

.map__naviText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
  margin-bottom: 10px;
}

.map-map {
  width: 100%;
}

.map__link {
  text-align: right;
  margin-top: 10px;
  text-transform: none;
}

.map__link-link {
  color: revert;
  -webkit-text-decoration: revert;
          text-decoration: revert;
}

/* レスポンシブデザイン（SP版） 1023px以下
-- map -----------------------------*/
@media screen and (max-width: 1023px) {
  .company-title,
  .company-text {
    padding: 20px 0;
  }
  .map__naviText {
    margin-top: 60px;
  }
}
/* レスポンシブデザイン（SP版） 767px以下
-- map -----------------------------*/
@media screen and (max-width: 767px) {
  .company-title,
  .company-text {
    padding: 10px 0;
  }
  .map__naviText {
    margin-top: 40px;
  }
  .map-map {
    height: 200px;
  }
}
/*------------------------------------------
footer
------------------------------------------*/
.footer {
  width: 100%;
  height: 200px;
  background-color: var(--text-color-b);
}

.footer-inner {
  height: 100%;
  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-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 20px;
}

.linkIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

/*------------------------------------------
scrollTop
------------------------------------------*/
.scrollTop {
  background-color: var(--text-color-b);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.scrollTop.show {
  opacity: 0.6;
  pointer-events: auto;
}
.scrollTop.show:hover {
  opacity: 1;
}

.scrollTop-link {
  position: fixed;
  z-index: 10;
  right: 30px;
  bottom: 30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--text-color-b);
  -webkit-box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2);
          box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2);
  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;
}

.scrollTop-icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 30px;
  font-weight: bold;
}

/* レスポンシブデザイン（SP版） 767px以下
-- scrollTop -----------------------------*/
@media screen and (max-width: 767px) {
  .scrollTop-link {
    width: 60px;
    height: 60px;
  }
  .scrollTop-icon {
    font-size: 24px;
  }
}