@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

/* ------------------------------------
// base
------------------------------------ */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  background: #fff;
  color: #252723;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

@media (max-width: 767px) {
  body {
    font-size: 1.6rem;
    min-width: 0;
  }
}
a {
  color: #252723;
  text-decoration: none;
  transition: opacity 0.3s;
}
a img {
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (min-width: 1025px) {
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
/* // screen
----------------------------------- */
.sp {
  display: none;
}

.md {
  display: none;
}

.pc {
  display: block;
}

.pconly {
  display: block;
}

@media (max-width: 1024px) {
  .sp {
    display: none;
  }
  .md {
    display: block;
  }
  .pc {
    display: block;
  }
  .pconly {
    display: none;
  }
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .md {
    display: block;
  }
  .pc {
    display: none;
  }
  .pconly {
    display: none;
  }
}
/* fadein
----------------------------------- */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.fadein#mv {
  animation: fadeInUp 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}
.fadein.is-done {
  transform: none;
}

/* header
----------------------------------- */
header {
  background: #fbff13;
  position: relative;
}
header .vi {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
header .vi .logo {
  position: absolute;
  top: clamp(3px, 1.7vw, 25px);
  right: clamp(2px, 1.4vw, 20px);
  width: clamp(22px, 15.3vw, 220px);
}
header .vi .post {
  position: absolute;
  padding: 0 clamp(2px, 1.4vw, 20px);
  width: 100%;
  max-width: clamp(124px, 86.1vw, 1240px);
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 80%);
}
header .vi .post .post_01 {
  max-width: clamp(20px, 13.9vw, 200px);
}
header .vi .post .post_02 {
  max-width: clamp(35px, 24.3vw, 350px);
  margin-left: clamp(5px, 3.1vw, 45px);
}
@media (max-width: 767px) {
  header .vi .logo {
    top: auto;
    bottom: 0;
    right: 0.3rem;
    width: 9.5rem;
    transform: translateY(120%);
    z-index: 3;
  }
  header .vi .post {
    padding: 0;
    left: 0;
    bottom: 0;
    max-width: none;
    transform: translate(0, 120%);
  }
  header .vi .post .post_01 {
    max-width: 11rem;
    margin-left: 2.3rem;
  }
  header .vi .post .post_02 {
    max-width: 18.4rem;
    margin-left: 0;
  }
}

/* line_fixed
----------------------------------- */
#line_fixed {
  width: clamp(19px, 13.2vw, 190px);
  aspect-ratio: 190/172;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 11;
  transform: translateY(clamp(35px, 24.1vw, 347px));
  transition: 0.3s cubic-bezier(0.9, 0, 0.1, 1);
}
#line_fixed.bottom {
  transform: translateY(calc(100vh - 100%));
}
#line_fixed a {
  display: block;
  height: 100%;
  background: #4a58c4;
  border-radius: 10px 0 0 10px;
  padding: clamp(2px, 1vw, 15px) 0 clamp(2px, 1vw, 15px) clamp(2px, 1.3vw, 18px);
  border: solid 2px #fff;
  border-right: none;
}
#line_fixed a::before {
  content: "";
  display: block;
  width: clamp(2px, 1.5vw, 22px);
  aspect-ratio: 44/55;
  background: url(../img/icon_fire.png) no-repeat 0 0/100% auto;
  margin-bottom: clamp(2px, 1vw, 15px);
}
#line_fixed a p {
  color: #fff;
  font-size: clamp(0rem, 1.6vw, 2.3rem);
  line-height: 1.6;
}
#line_fixed a p::after {
  content: "";
  display: inline-block;
  width: clamp(1px, 0.7vw, 10px);
  aspect-ratio: 21/33;
  background: url(../img/icon_arrow_04.png) no-repeat 0 0/100% auto;
  margin-left: 0.3em;
}
@media (max-width: 767px) {
  #line_fixed {
    width: 85%;
    aspect-ratio: auto;
    top: auto;
    bottom: 0;
    transform: none;
  }
  #line_fixed.bottom {
    transform: none;
  }
  #line_fixed a {
    border-radius: 2rem 0 0 0;
    padding: 1.6rem 0 1.6rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    border-bottom: none;
  }
  #line_fixed a::before {
    width: 2.4rem;
  }
  #line_fixed a::after {
    content: "";
    width: 0.9rem;
    aspect-ratio: 17/28;
    background: url(../img/icon_arrow_04.png) no-repeat 0 0/100% auto;
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
  #line_fixed a p {
    font-size: 2rem;
  }
  #line_fixed a p:after {
    display: none;
  }
}

/* mv
----------------------------------- */
#mv {
  background: url(../img/mv_bg.png) no-repeat right top/43% auto;
  position: relative;
  z-index: 2;
  margin-bottom: calc(clamp(2px, 1.4vw, 20px) * -1);
}
#mv .mv {
  max-width: 1440px;
  margin: 0 auto;
  transform: translateY(calc(clamp(4px, 2.8vw, 40px) * -1));
}
#mv .start {
  width: clamp(9px, 6.5vw, 94px);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -48%);
  z-index: 1;
}
@media (max-width: 767px) {
  #mv {
    background: url(../img/mv_bg_sp.png) no-repeat right top/18.7rem auto;
    margin-bottom: 0;
  }
  #mv .mv {
    transform: none;
    padding-top: 3.5rem;
  }
  #mv .start {
    width: 6.3rem;
    transform: translate(-50%, -42%);
  }
}

/* lead
----------------------------------- */
#lead {
  max-width: clamp(100px, 69.4vw, 1000px);
  margin: 0 auto;
  color: #4a58c4;
  display: flex;
  gap: clamp(5px, 3.5vw, 50px);
}
#lead h2 {
  font-size: clamp(0rem, 2.5vw, 3.6rem);
  line-height: 1.6;
  margin-top: -0.1em;
  flex-shrink: 0;
}
#lead .text p {
  font-size: clamp(1.3rem, 1.3vw, 1.8rem);
  line-height: 1.9;
}
#lead .text p + p {
  margin-top: 0.9em;
}
@media (max-width: 767px) {
  #lead {
    display: block;
    max-width: none;
    margin: 3.5rem 0 0 2rem;
  }
  #lead h2 {
    margin: 0 0 0.4em;
    font-size: 2.8rem;
    line-height: 1.5;
  }
  #lead .text p {
    font-size: 1.6rem;
    line-height: 1.9;
  }
  #lead .text p + p {
    margin-top: 0.9em;
  }
}

/* about
----------------------------------- */
#about {
  max-width: 1440px;
  margin: 0 auto clamp(8px, 5.6vw, 80px);
  padding: clamp(7px, 4.9vw, 70px) 0 0;
}
#about h2 {
  font-size: clamp(1rem, 4.9vw, 7rem);
  text-align: center;
  margin-bottom: 0.2em;
}
#about .about {
  background: url(../img/about_bg.png) no-repeat center top/100% auto;
  padding: 0 20px;
  margin-bottom: clamp(4px, 2.8vw, 40px);
}
#about .about > ul {
  max-width: clamp(100px, 69.4vw, 1000px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#about .about > ul > li {
  grid-column: 1/span 2;
  display: flex;
}
#about .about > ul > li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fbff13;
  height: clamp(12px, 8.3vw, 120px);
  font-size: clamp(0rem, 2.5vw, 3.6rem);
  font-weight: 800;
  padding: 0 0.8em 0 1em;
}
#about .about > ul > li a::after {
  content: "";
  width: clamp(5px, 3.3vw, 48px);
  aspect-ratio: 1/1;
  background: url(../img/icon_plus.png) no-repeat 0 0/100% auto;
}
#about .about > ul > li:nth-child(1) {
  justify-content: flex-end;
}
#about .about > ul > li:nth-child(1) a {
  font-size: clamp(1rem, 3.9vw, 5.6rem);
  gap: 0.5em;
}
#about .about > ul > li:nth-child(2) {
  grid-column: 1/2;
}
#about .about > ul > li:nth-child(2) a {
  gap: 1.25em;
}
#about .about > ul > li:nth-child(3) {
  grid-column: 2/3;
}
#about .about > ul > li:nth-child(3) a {
  width: clamp(36px, 25vw, 360px);
  margin: clamp(1px, 0.8vw, 12px) 0 0 clamp(1px, 0.7vw, 10px);
}
#about .about > ul > li:nth-child(4) {
  justify-content: flex-end;
}
#about .about > ul > li:nth-child(4) a {
  margin: clamp(1px, 0.8vw, 12px) clamp(8px, 5.2vw, 75px) 0 0;
}
#about .about > ul > li:nth-child(5) a {
  gap: 0.5em;
  margin-left: clamp(10px, 6.6vw, 95px);
}
#about .data {
  max-width: clamp(100px, 69.4vw, 1000px);
  margin: 0 auto;
  display: flex;
}
#about .data > * {
  display: flex;
  align-items: center;
}
#about .data dt {
  background: #323232;
  color: #fff;
  min-width: clamp(9px, 6.1vw, 88px);
  justify-content: center;
  font-size: clamp(0rem, 1.3vw, 1.8rem);
}
#about .data dd {
  padding: 0.8em 1.5em 0.8em 1em;
  font-size: clamp(0rem, 1.3vw, 1.8rem);
  background: #d2e0e9;
}
@media (max-width: 767px) {
  #about {
    max-width: 1440px;
    margin-bottom: 9rem;
    padding-top: 7rem;
  }
  #about h2 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 0.3em;
  }
  #about .about {
    background-image: url(../img/about_bg_sp.png);
    padding: 0;
    margin-bottom: 3.5rem;
  }
  #about .about > ul {
    max-width: none;
    display: block;
  }
  #about .about > ul > li a {
    height: 7rem;
    font-size: 2rem;
    padding: 0 1.8rem 0 0.6em;
  }
  #about .about > ul > li a::after {
    width: 2.8rem;
  }
  #about .about > ul > li:nth-child(1) {
    padding: 0 1rem;
  }
  #about .about > ul > li:nth-child(1) a {
    width: 100%;
    font-size: 2.8rem;
    gap: 0.3em;
  }
  #about .about > ul > li:nth-child(2) a {
    gap: 0.6em;
  }
  #about .about > ul > li:nth-child(3) {
    justify-content: flex-end;
    padding-right: 2.8rem;
  }
  #about .about > ul > li:nth-child(3) a {
    width: 18rem;
    margin: 0.5rem 0 0 0;
  }
  #about .about > ul > li:nth-child(4) {
    padding: 0 1rem;
  }
  #about .about > ul > li:nth-child(4) a {
    margin: 0;
    width: 100%;
    padding: 0.8rem 1.8rem 0 0.3em;
    position: relative;
    display: block;
  }
  #about .about > ul > li:nth-child(4) a span {
    font-size: 1.8rem;
    display: inline-block;
    transform: translateX(-0.5em);
  }
  #about .about > ul > li:nth-child(4) a::after {
    position: absolute;
    right: 1.8rem;
    top: 50%;
    transform: translateY(-50%);
  }
  #about .about > ul > li:nth-child(5) {
    margin-top: 2rem;
  }
  #about .about > ul > li:nth-child(5) a {
    gap: 0.5em;
    margin-left: 3rem;
  }
  #about .data {
    max-width: none;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 7.2rem auto;
  }
  #about .data > * {
    display: flex;
    align-items: center;
    margin-bottom: 1px;
  }
  #about .data dt {
    min-width: 0;
    font-size: 1.4rem;
  }
  #about .data dd {
    padding: 0.8em 0 0.8em 0.8em;
    font-size: 1.4rem;
  }
}

/* modal
------------------------------------------------------*/
.modal_box {
  position: fixed;
  z-index: 8888;
  display: none;
  width: 100%;
  max-width: 1040px;
  max-height: 100vh;
  padding: 0 20px 20px;
}
.modal_box .title {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1;
}
.modal_box .box {
  background: #fff;
  max-width: 1000px;
  max-height: 600px;
  height: calc(100vh - 100px);
  margin: 0 auto;
  padding: 55px 50px 35px 50px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.modal_box .box::before {
  content: "";
  width: 36%;
  height: 90px;
  background: #d2e0e9;
  position: absolute;
  top: 0;
  right: 5%;
  z-index: -1;
}
.modal_box .box h3 {
  width: 100%;
  max-width: 800px;
  font-size: 3.6rem;
  background: #fbff13;
  padding: 0.6em 0.5em 0.6em 1em;
  margin: 0 auto 40px;
}
.modal_box .box h3::after {
  content: "";
  width: 36%;
  height: 60px;
  background: #d2e0e9;
  position: absolute;
  left: 0;
  z-index: -1;
  transform: translateY(40%);
}
.modal_box .box h3.line_2 {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}
.modal_box .box h3.line_2::after {
  transform: translateY(25%);
}
.modal_box .box .text {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  flex: 1;
  overflow-y: auto;
  font-weight: 500;
  line-height: 2;
}
.modal_box .box .text p + * {
  margin-top: 2em;
}
.modal_box .box .text p.note {
  font-size: 1.4rem;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
}
.modal_box .modal_close {
  width: 140px;
  cursor: pointer;
  background: #e2e2e2;
  margin: 20px auto 0;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0.7em 0 0.7em 1em;
  position: relative;
  transition: 0.3s;
  text-align: center;
  border-radius: 2em;
}
.modal_box .modal_close:hover {
  opacity: 0.9;
}
.modal_box .modal_close::before {
  content: "";
  width: 17px;
  aspect-ratio: 1/1;
  background: url(../img/icon_close.png) no-repeat 0 0/100% auto;
  position: absolute;
  left: 1.5em;
  top: 50%;
  transform: translateY(-50%);
}

.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7777;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(139, 139, 139, 0.8);
}

@media (max-width: 767px) {
  .modal_box {
    width: 84vw;
    padding: 0;
  }
  .modal_box .title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
  }
  .modal_box .box {
    background: #fff;
    max-width: 1000px;
    height: calc(100vh - 7rem);
    padding: 2rem;
  }
  .modal_box .box::before {
    width: 16rem;
    height: 6rem;
    right: 0;
  }
  .modal_box .box h3 {
    font-size: 2.2rem;
    min-height: 8rem;
    display: flex;
    align-items: center;
    padding: 0 0.5em 0 0.7em;
    margin-bottom: 3.5rem;
  }
  .modal_box .box h3::after {
    width: 24.4rem;
    height: 4rem;
    transform: translateY(90%);
  }
  .modal_box .box h3.line_2 {
    font-size: 2rem;
  }
  .modal_box .box h3.line_2::after {
    transform: translateY(100%);
  }
  .modal_box .box .text p {
    font-size: 1.5rem;
  }
  .modal_box .box .text p + * {
    margin-top: 2em;
  }
  .modal_box .box .text p.note {
    font-size: 1.3rem;
  }
  .modal_box .modal_close {
    width: 12.6rem;
    margin-top: 1.5rem;
    font-size: 1.4rem;
    padding: 0.5em 0 0.5em 1em;
  }
  .modal_box .modal_close::before {
    width: 1.5rem;
    left: 1.5em;
  }
}
/* youtube
----------------------------------- */
#youtube {
  overflow: hidden;
  margin-bottom: clamp(13px, 9vw, 130px);
}
#youtube .pickup {
  position: relative;
  min-height: clamp(46px, 31.9vw, 460px);
}
#youtube .pickup::before {
  content: "";
  width: clamp(146px, 101.4vw, 1460px);
  height: clamp(46px, 31.9vw, 460px);
  position: absolute;
  left: calc((100vw - clamp(100px, 69.4vw, 1000px)) / 2);
  bottom: 0;
  background: #fbff13;
  border-radius: clamp(23px, 16vw, 230px);
  z-index: 0;
}
#youtube .pickup > div {
  max-width: clamp(100px, 69.4vw, 1000px);
  margin: 0 auto;
  padding: 0 clamp(6px, 4.2vw, 60px) clamp(4px, 2.4vw, 35px) 0;
  display: grid;
  grid-template-columns: auto clamp(29px, 20vw, 288px);
  grid-template-rows: max-content max-content max-content 1fr;
  gap: 0 clamp(8px, 5.6vw, 80px);
  position: relative;
}
#youtube .pickup > div .thumb {
  grid-column: 2/3;
  grid-row: 1/span 4;
}
#youtube .pickup > div .thumb a {
  display: block;
  aspect-ratio: 288/512;
  border-radius: clamp(2px, 1vw, 15px);
  overflow: hidden;
}
#youtube .pickup > div .thumb a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#youtube .pickup > div .sakusaku {
  grid-column: 1/2;
  grid-row: 1/2;
  text-align: right;
  padding-top: clamp(7px, 4.9vw, 70px);
}
#youtube .pickup > div .sakusaku img {
  width: clamp(24px, 16.4vw, 236px);
}
#youtube .pickup > div h2 {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: clamp(0rem, 3vw, 4.3rem);
  color: #4a58c4;
  line-height: 1.6;
  display: flex;
  justify-content: flex-end;
  padding-top: clamp(3px, 2.1vw, 30px);
}
#youtube .pickup > div .check {
  grid-column: 1/2;
  grid-row: 3/4;
  text-align: right;
}
#youtube .pickup > div .check img {
  width: clamp(15px, 10.4vw, 150px);
  transform: translateX(20%);
}
#youtube .pickup > div .btn_apply {
  grid-column: 1/2;
  grid-row: 4/5;
  margin-top: clamp(1px, 0.7vw, 10px);
  text-align: right;
}
#youtube .pickup > div .btn_apply a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: clamp(30px, 20.8vw, 300px);
  border-radius: 2em;
  font-size: clamp(0rem, 1.3vw, 1.8rem);
  letter-spacing: 0.1em;
  text-indent: -0.1em;
  color: #fff;
  background: #4a58c4;
  position: relative;
  padding: 1em 0;
  gap: 2em;
}
#youtube .pickup > div .btn_apply a::after {
  content: "";
  width: clamp(1px, 0.7vw, 10px);
  aspect-ratio: 27/42;
  background: url(../img/icon_arrow_05.png) no-repeat 0 0/100% auto;
}
#youtube .nichiyoban {
  position: relative;
  max-width: clamp(100px, 69.4vw, 1000px);
  margin: 0 auto;
  padding-top: clamp(8px, 5.2vw, 75px);
}
#youtube .nichiyoban::before {
  content: "";
  width: clamp(71px, 49.1vw, 707px);
  height: clamp(26px, 18.1vw, 260px);
  position: absolute;
  left: 0;
  top: 0;
  background: #d1bbff;
  border-radius: clamp(13px, 9vw, 130px);
  z-index: 0;
  transform: translate(-50%, -50%);
}
#youtube .nichiyoban::after {
  content: "";
  width: clamp(13px, 8.7vw, 125px);
  aspect-ratio: 250/210;
  background: url(../img/youtube_img_02.png) no-repeat 0 0/100% auto;
  position: absolute;
  left: clamp(7px, 4.5vw, 65px);
  top: 0;
  transform: translateY(-165%);
}
#youtube .nichiyoban h2 {
  font-size: clamp(0rem, 2.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  transform: translateY(-55%);
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}
#youtube .nichiyoban .slides .swiper-slide {
  width: clamp(23px, 15.6vw, 225px);
  margin-right: clamp(3px, 2.3vw, 33px);
}
#youtube .nichiyoban .slides .swiper-slide a {
  display: block;
  aspect-ratio: 225/400;
  border-radius: clamp(2px, 1vw, 15px);
  overflow: hidden;
}
#youtube .nichiyoban .slides .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#youtube .nichiyoban .slide_nav {
  position: absolute;
  top: clamp(3px, 1.7vw, 25px);
  right: clamp(1px, 0.7vw, 10px);
  display: flex;
  gap: clamp(1px, 0.7vw, 10px);
}
#youtube .nichiyoban .slide_nav > * {
  width: clamp(3px, 2.2vw, 32px);
  aspect-ratio: 1/1;
  cursor: pointer;
  background: url(../img/icon_arrow_slide_01.png) no-repeat 0 0/100% auto;
}
#youtube .nichiyoban .slide_nav > *.prev {
  transform: scale(-1, 1);
}
@media (max-width: 767px) {
  #youtube {
    margin-bottom: 10rem;
    overflow: visible;
  }
  #youtube .pickup {
    min-height: 0;
  }
  #youtube .pickup::before {
    display: none;
  }
  #youtube .pickup > div {
    max-width: none;
    padding: 3rem 0 7rem;
    border-radius: 6rem 0 0 0;
    display: block;
    background: #fbff13;
  }
  #youtube .pickup > div .thumb a {
    width: 21.6rem;
    border-radius: 1.5rem;
    margin: 0 auto;
  }
  #youtube .pickup > div .sakusaku {
    padding-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%);
  }
  #youtube .pickup > div .sakusaku img {
    width: 19.6rem;
  }
  #youtube .pickup > div h2 {
    font-size: 2.8rem;
    display: block;
    text-align: center;
    padding-top: 0;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  #youtube .pickup > div .check {
    padding-top: 0;
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 6.2rem;
    aspect-ratio: 123/138;
    background: url(../img/icon_check_sp.png) no-repeat 0 0/100% auto;
    transform: translateY(-50%);
  }
  #youtube .pickup > div .check img {
    display: none;
  }
  #youtube .pickup > div .btn_apply {
    margin-top: 2rem;
    text-align: center;
  }
  #youtube .pickup > div .btn_apply a {
    width: 80vw;
    font-size: 1.8rem;
  }
  #youtube .pickup > div .btn_apply a::after {
    width: 1rem;
  }
  #youtube .pickup > div::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 6.2rem;
    aspect-ratio: 121/138;
    background: url(../img/icon_check_left_sp.png) no-repeat 0 0/100% auto;
    transform: translateY(-50%);
  }
  #youtube .nichiyoban {
    max-width: none;
    padding-top: 9rem;
    position: relative;
  }
  #youtube .nichiyoban::before {
    display: none;
  }
  #youtube .nichiyoban::after {
    width: 8rem;
    left: 3.5rem;
    transform: translateY(-85%);
  }
  #youtube .nichiyoban h2 {
    font-size: 2.5rem;
    transform: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 28rem;
    height: 17rem;
    border-radius: 0 14rem 14rem 0;
    background: #d1bbff;
    display: flex;
    align-items: center;
    padding-left: 3rem;
    margin-top: -4rem;
  }
  #youtube .nichiyoban .slides {
    padding-left: 3rem;
    position: relative;
  }
  #youtube .nichiyoban .slides .swiper-slide {
    width: 18rem;
    margin-right: 2rem;
  }
  #youtube .nichiyoban .slides .swiper-slide a {
    display: block;
    border-radius: 1.5rem;
  }
  #youtube .nichiyoban .slide_nav {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
  }
  #youtube .nichiyoban .slide_nav > * {
    width: 2.5rem;
    aspect-ratio: 50/177;
    background-image: url(../img/icon_arrow_slide_01_sp.png);
  }
  #youtube .nichiyoban .slide_nav > *.prev {
    display: none;
  }
}

/* pr
----------------------------------- */
#pr {
  background: #f6f8fa;
}
#pr .pr {
  max-width: clamp(100px, 69.4vw, 1000px);
  margin: 0 auto;
  padding: clamp(5px, 3.5vw, 50px) 0;
  position: relative;
}
#pr .pr .post {
  position: absolute;
  top: calc(clamp(2px, 1.4vw, 20px) * -1);
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#pr .pr .post p:nth-child(1) {
  width: clamp(24px, 16.7vw, 240px);
}
#pr .pr .post p:nth-child(2) {
  width: clamp(28px, 19.4vw, 280px);
  transform: translateX(40%);
}
#pr .pr .title {
  display: flex;
  align-items: center;
  gap: clamp(3px, 1.7vw, 25px);
  margin-bottom: clamp(3px, 2.1vw, 30px);
}
#pr .pr .title h2 {
  font-size: clamp(0rem, 2.5vw, 3.6rem);
  font-weight: 500;
  flex-shrink: 0;
}
#pr .pr .title p {
  font-size: clamp(0.9rem, 1vw, 1.5rem);
  font-weight: 400;
  line-height: 1.8;
}
#pr .pr .sozai {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(3px, 2.1vw, 30px);
}
#pr .pr .sozai > * .image a {
  display: block;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  aspect-ratio: 312/300;
}
#pr .pr .sozai > * .image a img {
  max-height: 100%;
  width: auto;
}
#pr .pr .sozai > * .btn {
  margin-top: clamp(3px, 2.1vw, 30px);
  text-align: center;
}
#pr .pr .sozai > * .btn a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: clamp(24px, 16.7vw, 240px);
  background: #e2e2e2;
  border-radius: 2em;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  padding: 0.8em 1.8em 0.8em 2em;
}
#pr .pr .sozai > * .btn a::after {
  content: "";
  width: 6px;
  aspect-ratio: 11/19;
  background: url(../img/icon_arrow_01.png) no-repeat 0 0/100% auto;
}
#pr .pr .btn_others {
  margin-top: clamp(4px, 2.8vw, 40px);
  text-align: center;
}
#pr .pr .btn_others a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: clamp(24px, 16.7vw, 240px);
  border: solid 1px #252723;
  border-radius: 2em;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  padding: 0.8em 1.8em 0.8em 2em;
  gap: 2em;
}
#pr .pr .btn_others a::after {
  content: "";
  width: 6px;
  aspect-ratio: 11/19;
  background: url(../img/icon_arrow_01.png) no-repeat 0 0/100% auto;
}
@media (max-width: 767px) {
  #pr .pr {
    max-width: none;
    margin: 0 auto;
    padding: 4rem 0 3.5rem;
  }
  #pr .pr .post {
    top: -4rem;
  }
  #pr .pr .post p:nth-child(1) {
    width: 18rem;
    margin-right: 8rem;
  }
  #pr .pr .post p:nth-child(2) {
    width: 21rem;
    transform: none;
  }
  #pr .pr .title {
    display: block;
    margin: 0 0 2rem 3rem;
  }
  #pr .pr .title h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
  #pr .pr .title p {
    font-size: 1.2rem;
  }
  #pr .pr .sozai {
    margin: 0 1.5rem;
    gap: 0.5rem;
  }
  #pr .pr .sozai > * .image a {
    border-radius: 1rem;
    aspect-ratio: 1/1;
  }
  #pr .pr .sozai > * .btn {
    margin-top: 1rem;
    padding: 0 0.5rem;
  }
  #pr .pr .sozai > * .btn a {
    display: flex;
    min-width: 0;
    font-size: 1.1rem;
    padding: 0.4em 1.2rem 0.5em 1.2rem;
  }
  #pr .pr .sozai > * .btn a::after {
    width: 0.6rem;
    margin-top: 2px;
  }
  #pr .pr .btn_others {
    margin-top: 3.5rem;
  }
  #pr .pr .btn_others a {
    min-width: 18rem;
    font-size: 1.2rem;
    padding: 0.6em 1.2rem 0.7em 1.5rem;
  }
  #pr .pr .btn_others a::after {
    width: 0.6rem;
  }
}

/* line
----------------------------------- */
#apply {
  max-width: clamp(120px, 83.3vw, 1200px);
  margin: clamp(7px, 4.5vw, 65px) auto clamp(7px, 4.9vw, 70px);
  padding: clamp(8px, 5.6vw, 80px) clamp(10px, 6.9vw, 100px) clamp(11px, 7.3vw, 105px);
  position: relative;
  z-index: 1;
}
#apply::before {
  content: "";
  width: clamp(15px, 10.4vw, 150px);
  aspect-ratio: 297/210;
  background: url(../img/apply_star.png) no-repeat 0 0/100% auto;
  position: absolute;
  top: clamp(9px, 6.5vw, 94px);
  right: clamp(3px, 1.9vw, 27px);
  z-index: 1;
}
#apply .apply {
  background: url(../img/line_bg.png) no-repeat center bottom/100% auto;
  position: relative;
  padding: clamp(9px, 6.3vw, 90px) 0 clamp(6px, 4.2vw, 60px);
  text-align: center;
  aspect-ratio: 1000/476;
  color: #4a58c4;
}
#apply .apply .title p {
  font-size: clamp(0rem, 3.1vw, 4.4rem);
}
#apply .apply .title h2 {
  font-size: clamp(1rem, 6.8vw, 9.8rem);
}
#apply .apply .title h2 span {
  margin-left: 0.2em;
}
#apply .apply p.start {
  font-size: clamp(0rem, 1.4vw, 2rem);
  font-weight: 400;
}
#apply .apply .btn_apply {
  margin-top: clamp(2px, 1.4vw, 20px);
}
#apply .apply .btn_apply a {
  display: inline-block;
  width: clamp(50px, 34.7vw, 500px);
  border-radius: 2em;
  font-size: clamp(0rem, 2.5vw, 3.6rem);
  letter-spacing: 0.2em;
  text-indent: -0.2em;
  color: #fff;
  background: #4a58c4;
  position: relative;
  padding: 0.6em 0;
}
#apply .apply .btn_apply a::after {
  content: "";
  width: clamp(1px, 0.9vw, 13px);
  aspect-ratio: 27/42;
  background: url(../img/icon_arrow_05.png) no-repeat 0 0/100% auto;
  position: absolute;
  right: clamp(5px, 3.8vw, 54px);
  top: 50%;
  transform: translateY(-50%);
}
#apply .girl {
  position: absolute;
  left: clamp(1px, 0.7vw, 10px);
  bottom: 0;
  z-index: 1;
  width: clamp(33px, 22.6vw, 325px);
  aspect-ratio: 649/1093;
}
#apply .msg p {
  position: absolute;
  z-index: 1;
}
#apply .msg p.wakuwaku {
  left: calc(clamp(3px, 2.3vw, 33px) * -1);
  top: clamp(1px, 0.8vw, 12px);
  width: clamp(43px, 29.9vw, 430px);
}
#apply .msg p.itsudemo {
  left: clamp(4px, 3.1vw, 44px);
  top: clamp(6px, 3.8vw, 55px);
  width: clamp(44px, 30.8vw, 443px);
}
#apply .msg p.zehi {
  right: clamp(16px, 11.1vw, 160px);
  bottom: clamp(8px, 5.6vw, 80px);
  width: clamp(24px, 16.4vw, 236px);
}
#apply .line {
  position: absolute;
  top: 0;
  right: clamp(15px, 10.4vw, 150px);
  width: clamp(19px, 12.9vw, 186px);
}
@media (max-width: 767px) {
  #apply {
    max-width: none;
    margin: 0 auto 5.5rem;
    padding: 10rem 0 8rem;
  }
  #apply::before {
    display: none;
  }
  #apply .apply {
    background: #fbff13 url(../img/line_bg_sp.png) no-repeat 0 0/cover;
    padding: 6rem 3rem 21rem;
    aspect-ratio: auto;
  }
  #apply .apply .title p {
    font-size: 2.8rem;
  }
  #apply .apply .title h2 {
    font-size: 8.2rem;
    line-height: 1.2;
  }
  #apply .apply .title h2 span {
    margin: 0;
    display: block;
  }
  #apply .apply p.start {
    font-size: 1.5rem;
  }
  #apply .apply .btn_apply {
    margin-top: 2.5rem;
  }
  #apply .apply .btn_apply a {
    display: block;
    width: auto;
    font-size: 2.6rem;
    padding: 0.8em 0;
  }
  #apply .apply .btn_apply a::after {
    width: 1.3rem;
    right: 4rem;
  }
  #apply .girl {
    left: 6rem;
    bottom: 0;
    width: 16rem;
  }
  #apply .msg p.wakuwaku {
    left: 0;
    top: 4.7rem;
    width: 28rem;
  }
  #apply .msg p.itsudemo {
    left: 2.8rem;
    top: 7.5rem;
    width: 31rem;
  }
  #apply .msg p.zehi {
    display: none;
  }
  #apply .line {
    top: auto;
    bottom: 3.2rem;
    right: 3.8rem;
    width: 18.6rem;
  }
}

/* countdown
----------------------------------- */
#countdown {
  background: #fbff13;
  position: relative;
}
#countdown h2 {
  width: clamp(32px, 22.2vw, 320px);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(15%, -50%);
  z-index: 1;
}
#countdown .countdown {
  max-width: clamp(100px, 69.4vw, 1000px);
  margin: 0 auto;
  position: relative;
  min-height: clamp(29px, 20.1vw, 290px);
  overflow-y: hidden;
}
#countdown .countdown .timeleft {
  width: clamp(53px, 36.5vw, 526px);
  margin: 0 auto clamp(2px, 1vw, 15px);
}
#countdown .countdown .timer {
  display: flex;
  justify-content: center;
  font-size: clamp(1rem, 4.2vw, 6rem);
  color: #4a58c4;
  gap: 0.8em;
  position: relative;
  z-index: 2;
  line-height: 1;
}
#countdown .countdown .timer > * .num {
  font-size: clamp(1rem, 5.6vw, 8rem);
  margin-right: clamp(1px, 0.3vw, 5px);
  position: relative;
  top: clamp(1px, 0.3vw, 5px);
}
#countdown .countdown .start {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 12.4vw, 17.9rem);
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
  transform: translateY(15%);
}
@media (max-width: 767px) {
  #countdown {
    margin-top: -2rem;
  }
  #countdown h2 {
    width: 20rem;
    left: auto;
    right: 0;
    transform: translate(0, -50%);
  }
  #countdown .countdown {
    max-width: none;
    min-height: 0;
  }
  #countdown .countdown .timeleft {
    width: auto;
    margin: 0 3rem 0.5rem;
  }
  #countdown .countdown .timer {
    font-size: 3.1rem;
    gap: 0.7em;
  }
  #countdown .countdown .timer > * .num {
    font-size: 4rem;
    margin-right: 0.2rem;
    top: 0.2rem;
  }
  #countdown .countdown .start {
    font-size: 6.8rem;
    position: static;
    width: auto;
    transform: translateY(14%);
    white-space: nowrap;
    overflow: hidden;
    margin-top: -0.8rem;
  }
}

/* footer
----------------------------------- */
footer {
  background: #d7dfdf;
}
footer .footer {
  max-width: clamp(100px, 69.4vw, 1000px);
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
footer .footer .share {
  display: flex;
  align-items: center;
  gap: clamp(2px, 1vw, 15px);
}
footer .footer .share dt {
  font-size: clamp(0rem, 1.6vw, 2.3rem);
  color: #4a58c4;
}
footer .footer .share dd {
  width: clamp(6px, 3.9vw, 56px);
}
footer .footer .akahata {
  display: flex;
  align-items: center;
  gap: clamp(3px, 2.1vw, 30px);
  padding: clamp(1px, 1vw, 14px) 0 clamp(1px, 0.6vw, 8px);
}
footer .footer .akahata .logo {
  text-align: center;
}
footer .footer .akahata .logo img {
  width: clamp(15px, 10.3vw, 148px);
}
footer .footer .akahata .logo p {
  font-size: clamp(0rem, 0.9vw, 1.3rem);
  font-weight: 300;
  margin-top: clamp(1px, 0.3vw, 5px);
}
footer .footer .akahata .util {
  display: flex;
  gap: clamp(1px, 0.7vw, 10px);
}
footer .footer .akahata .util > * a {
  display: block;
  border: solid 1px #fff;
  border-radius: 2em;
  font-size: clamp(0rem, 1vw, 1.4rem);
  font-weight: 500;
  color: #687cc4;
  min-width: clamp(16px, 11.1vw, 160px);
  padding: 0.9em 0.5em;
  text-align: center;
}
@media (max-width: 767px) {
  footer .footer {
    max-width: none;
    margin: 0 auto;
    display: block;
    padding: 1.5rem 2rem 8rem;
  }
  footer .footer .share {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem 2rem;
    width: fit-content;
    margin: 0 auto;
  }
  footer .footer .share dt {
    font-size: 2.1rem;
    grid-column: 1/span 3;
    text-align: center;
    color: #fff;
  }
  footer .footer .share dd {
    width: 5.6rem;
  }
  footer .footer .akahata {
    display: block;
    padding: 0;
    margin-bottom: 2rem;
  }
  footer .footer .akahata .logo {
    margin-bottom: 1rem;
  }
  footer .footer .akahata .logo img {
    width: 14.5rem;
  }
  footer .footer .akahata .logo p {
    font-size: 1.3rem;
    margin-top: 0.5rem;
  }
  footer .footer .akahata .util {
    justify-content: center;
    gap: 1rem;
  }
  footer .footer .akahata .util > * a {
    font-size: 1.4rem;
    width: 16rem;
    padding: 0.6em 0.5em;
  }
}