  @charset "UTF-8";

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  font-family: "BIZ UDPMincho", serif;
  font-feature-settings: "palt";
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #FFFFFF;
  padding-top: 90px;
}

main {
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1.67;
}

img,
video {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 766px) {
  .pc-only {
    display: none;
  }
}

@media screen and (min-width: 767px) {
  .sp-only {
    display: none;
  }
}

.text-narrow {
  display: inline-block;
  transform: scale(1, 1.2);
}

.bg {
  background-image: url(/tokusetu_site/ichinichimo/assets/img/bg.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*! -------------------------------------
 *      ¥ì¥¤¥¢¥¦¥È
 * ------------------------------------- */
.l-section {
  margin: 180px auto 0;
}

@media screen and (max-width: 767px) {
  .l-section {
    margin: 100px auto 0;
  }
}

.l-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.l-section__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 30px;
  padding: 0 40px;
  flex-direction: column;
  gap: 20px;
}

.l-section__btn h3 img {
  width: 80%;
}

.l-section__btn--inner {
  width: 72%;
}

.l-section__btn--inner img.pc-only {
  width: 65%;
}

@media screen and (max-width: 767px) {
  .l-section__btn {
    flex-direction: column;
    padding: 0 32px;
    margin-top: 10px;
    max-width: 500px;
  }

  .l-section__btn--inner {
    width: 100%;
  }

  .l-section__btn h3 {
    width: 40%;
  }

  .l-section__btn h3 img {
    width: 100%;
  }
}

.l-section__btn:has(.--modal) {
  justify-content: center;
  margin-top: 55px;
}

@media screen and (max-width: 767px) {
  .l-section__btn:has(.--modal) {
    margin-top: 35px;
  }
}

/*! -------------------------------------
 *      ¥³¥ó¥Ý©`¥Í¥ó¥È
 * ------------------------------------- */
/* ¥Ü¥¿¥ó */
.c-btn {
  font-size: clamp(16px, 2.22vw, 32px);
  padding: 20px;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, #CDE0FF, #0064FF) 1;
  display: block;
  width: 100%;
  position: relative;
}

.c-btn::before {
  content: '';
  background-image: url(/tokusetu_site/ichinichimo/assets/img/btn_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  right: 30px;
  top: 56%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .c-btn {
    padding: 16px 40px 16px 0;
  }

  .c-btn::before {
    width: 20px !important;
    height: 20px !important;
    right: 0;
  }

  .c-btn::after {
    right: 10px;
  }
}

.c-btn.--small {
  /* font-size: clamp(16px, 1.94vw, 28px); */
  padding: 10px 40px 16px 10px;
  letter-spacing: -0.1em;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .c-btn.--small {
    margin-top: 10px;
  }
}

.c-btn.--small::before {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 10px;
}

.c-btn.--modal::before {
  background-image: url(/tokusetu_site/ichinichimo/assets/img/icon_popup.png);
  width: 38px;
  height: 38px;
}

.c-btn.--small.--modal::before {
  width: 34px;
  height: 34px;
}

/* ¥Ï¥ó¥Ð©`¥¬©`¥á¥Ë¥å©` */
.c-ham {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  z-index: 12;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.c-ham span {
  position: absolute;
  width: 70%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  border-radius: 1rem;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.c-ham span:nth-child(1) {
  top: 0.5em;
}

.c-ham span:nth-child(2) {
  top: 1.5em;
}

.c-ham span:nth-child(3) {
  top: 2.5em;
}

.c-ham.open span:nth-child(1) {
  background: #ffffff;
  top: 1.6rem;
  -webkit-transform: rotate(-35deg);
  -moz-transform: rotate(-35deg);
  transform: rotate(-35deg);
  left: 20%;
}

.c-ham.open span:nth-child(2),
.c-ham.open span:nth-child(3) {
  top: 1.6rem;
  background: #ffffff;
  -webkit-transform: rotate(35deg);
  -moz-transform: rotate(35deg);
  transform: rotate(35deg);
  left: 20%;
}

.c-ham__nav {
  position: fixed;
  top: 0;
  right: -100%;
  padding: 0 64px;
  height: 100%;
  background: #012e71;
  font-size: 1.6rem;
  box-sizing: border-box;
  z-index: 10;
  padding-top: 2rem;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .c-ham__nav {
    width: 100%;
  }
}

.c-ham__nav.open {
  right: 0;
  overflow-y: auto;
}

.c-ham__nav--menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 432px;
  margin: 100px auto 0;
  padding: 0;
  width: 100%;
  display: block;
}

.c-ham__nav--menu li {
  padding: 24px 8px;
  font-size: clamp(20px, 1.81vw, 26px);
  border-bottom: 1px solid #FFF;
}

.scroll-prevent {
  overflow: hidden;
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

#ham {
  position: fixed;
  top: 0;
  opacity: 1;
  transition: opacity 1s ease;
  background-color: #ffffff80;
  height: 90px;
  width: 100%;
  z-index: 999;
}

#ham.active {
  opacity: 1;
  transition: opacity 1s ease;
}

/* ¥â©`¥À¥ë */
.c-modal {
  display: none;
  position: fixed;
  z-index: 8887;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}

.c-modal__content {
  position: relative;
  width: 86%;
  max-width: 1200px;
  margin: 40px auto;
  /* background: #fff; */
  /* padding: 50px 50px 60px; */
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

@media screen and (max-width: 767px) {
  .c-modal__content {
    padding: 0;
  }
}

.c-modal__content.--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: inherit;
}

.c-modal__close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: clamp(40px, 2.6vw, 50px);
  height: clamp(40px, 2.6vw, 50px);
  background: #003b90;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: clamp(20px, 1.3vw, 25px);
  line-height: 1;
  z-index: 100;
}

.c-modal__close:hover,
.c-modal__close:focus {
  text-decoration: none;
  cursor: pointer;
}

.c-modal-title {
  color: #FFF;
}

@keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ¥¢¥³©`¥Ç¥£¥ª¥ó */
.c-accordion__header {
  margin: 0;
  padding: 12px 20px 10px;
  margin-bottom: 30px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .c-accordion__header {
    padding: 2px 20px 15px;
  }
}

.c-accordion__header h2 {
  position: relative;
  width: fit-content;
}

.c-accordion__header h2 span::before,
.c-accordion__header h2 span::after {
  position: absolute;
  content: "";
  margin: auto;
  bottom: 0;
  background: #FFF;
}

.c-accordion__header h2 span::before {
  top: 1px;
  right: 0;
  width: clamp(26px, 2.5vw, 36px);
  height: 1px;
}

.c-accordion__header h2 span::after {
  top: 1px;
  right: 17px;
  width: 1px;
  height: clamp(26px, 2.5vw, 36px);
  transition: transform 0.3s ease;
}

@media screen and (max-width: 1130px) {
  .c-accordion__header h2 span::after {
    right: 11px;
  }
}

.c-accordion__header.active h2 span::after {
  transform: rotate(90deg);
}

.c-accordion__content {
  display: none;
}

/* -------------------------------------
 *      ¥³¥ó¥Æ¥ó¥Ä
 * ------------------------------------- */
/* ¥á¥¤¥ó¥Ó¥¸¥å¥¢¥ë MV */
.mv {
  position: relative;
  margin-bottom: -6px;
}

.mv video {
  width: 100%;
  height: auto;
}

.mv_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}

/* ¥³¥ó¥»¥×¥È MV */
.concept-mv__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 33px;
}

.concept-mv__inner p {
  margin-top: 12px;
  text-align: center;
}

/* ¥³¥ó¥»¥×¥È ¥¿¥¤¥×¥é¥¤¥¿©` */
.concept_text {
  text-align: center;
}

.concept_text img {
  width: 45%;
}

@media screen and (max-width: 767px) {
  .concept_text img {
    width: 100%;
  }
}

/* ¥¿¥¤¥È¥ë */
.ttl {
  transform: scale(1, 1.2);
  background-color: #509DD8;
  overflow: hidden;
  margin-top: 3rem;
}

.ttlSplide {
  margin-top: 3rem;
  margin-bottom: 1em;
  background: #0F5DD7;
  background: linear-gradient(90deg, rgba(15, 93, 215, 1) 0%, rgba(8, 49, 113, 1) 100%);
  border-bottom: 4px solid #0F5DD7;
}

.ttlSplide h2 {
  text-align: center;
}

.ttlSplide h2 img {
  padding: 2% 5%;
  max-height: 120px;
}

div#splide06-track {
  max-width: 2000px;
  margin: 0 auto;
}


/* „Ó»­¥¹¥é¥¤¥É */
.mvSplide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 40px 0;
}

@media screen and (max-width: 767px) {
  .mvSplide {
    padding: 0;
  }
}

#content02 .ttlSplide {
  margin-bottom: 10px;
}

.videoSplide {
  background-color: #08307130;
  padding: 60px 0 90px;
  margin-top: -1em;
}

@media screen and (max-width: 767px) {
  .videoSplide {
    padding: 40px 0 50px;
    margin-top: -1.5em;
  }

  .mvSplide01 {
    margin-top: -1.6em;
    background-color: #08307130;
    padding: 40px 0 55px;
  }
}

.mvSplide01 .splide__slide button {
  position: relative;
}

.mvSplide01 .splide__slide button::before {
  content: '';
  background-image: url(/tokusetu_site/ichinichimo/assets/img/icon_play.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80px;
  min-width: 50px;
  width: 4.56vw;
  max-height: 80px;
  min-height: 50px;
  height: 4.56vw;
}

.mvSplide01 .splide__slide p {
  text-align: center;
}


.mvSplide01 .splide__list {
  flex-wrap: wrap;
  gap: 32px;

  .splide__slide {
    width: calc(50% - 16px) !important;
    margin: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .mvSplide01 .splide__list {
    flex-wrap: nowrap;
    gap: 0;

    .splide__slide {
      margin-right: 16px !important;
      width: calc(100% + 0px) !important;
    }
  }
}

.videoSplide .splide__slide button {
  position: relative;
}

.videoSplide .splide__slide button::before {
  content: '';
  background-image: url(/tokusetu_site/ichinichimo/assets/img/icon_play.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80px;
  min-width: 50px;
  width: 4.56vw;
  max-height: 80px;
  min-height: 50px;
  height: 4.56vw;
}

.splide__arrow {
  top: inherit;
  transform: inherit;
  bottom: 40px;
  background: url(/tokusetu_site/ichinichimo/assets/img/icon_arrow.png) no-repeat center center;
  background-size: contain;
  width: 48px;
  height: 24px;
  border-radius: inherit;
}

.splide__arrow--prev {
  left: inherit;
  right: 12em;
  transform: rotate(180deg);
}

.splide__arrow--next {
  right: 7.5em;
}

.splide__arrow svg {
  display: none;
}

@media screen and (max-width: 767px) {
  .splide__arrow {
    width: 40px;
    height: 20px;
    bottom: 20px;
  }

  .splide__arrow--prev {
    right: 5.5em;
  }

  .splide__arrow--next {
    right: 2em;
  }
}

/* „Ó»­ ¥â©`¥À¥ë */
/* .video-modal .c-modal__content{
  padding: 0;
}

.special-modal .c-modal__content{
  text-align: center;
  width: fit-content;
  padding: 0;
}

.special-modal .c-modal__content video{
  height: 80vh;
} */

.theme-modal .c-modal__content {
  background-color: #FFF;
  border-radius: 10px;
  text-align: left;
}

.character {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 100px auto 30px;
  padding: 0 40px;
}

.character img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .character {
    margin: 60px auto 30px;
    gap: 30px;
  }
}

/* Ìô¤à?Ö§¤¨¤ë?¼Ä¤ê¤½¤¦ ¥â©`¥À¥ë */
@media screen and (max-width: 767px) {
  .theme-modal .c-modal__content {
    padding: 30px 0;
  }
}

#cts01 * {
  color: #D69B68;
  -webkit-text-stroke: 0.5px #D69B68;
}

#cts02 * {
  color: #D59B9A;
  -webkit-text-stroke: 0.5px #D59B9A;
}

#cts03 * {
  color: #8EBF7F;
  -webkit-text-stroke: 0.5px #8EBF7F;
}

.cts__inner {
  line-height: 2;
}

.cts__inner--lead {
  margin: 60px 0 82px;
  padding: 63px 0;
  text-align: center;
  position: relative;
  font-size: clamp(16px, 2.5vw, 30px);
}

@media screen and (max-width: 767px) {
  .cts__inner p {
    line-height: 1.92;
    font-feature-settings: "palt";
    padding: 0 15.5px 0 14.5px;
    /* letter-spacing: 0.126em; */
  }

  .cts__inner--lead {
    margin: 15.7px 0 28.6px;
    padding: 21.7px 20px 13.7px 18.5px !important;
    text-align: justify;
  }
}

.cts__inner--lead::before,
.cts__inner--lead::after {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #D69B68;
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.cts__inner--lead::before {
  top: 0;
}

.cts__inner--lead::after {
  bottom: 0;
}

#cts02 .cts__inner--lead::before,
#cts02 .cts__inner--lead::after {
  background-color: #D59B9A;
}

#cts03 .cts__inner--lead::before,
#cts03 .cts__inner--lead::after {
  background-color: #8EBF7F;
}

@media screen and (max-width: 767px) {

  .cts__inner--lead::before,
  .cts__inner--lead::after {
    width: 82%;
  }
}

.cts__inner h3 {
  font-size: clamp(22px, 5.33vw, 50px);
  line-height: 1.6;
  margin-bottom: 3.03vw;
}

@media screen and (max-width: 767px) {
  .cts__inner h3 {
    padding: 0 15.5px 0 14.5px;
  }

  .cts__inner h3 {
    letter-spacing: -0.08em;
  }
}

.cts__inner img {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.deco-cts {
  position: relative;
}

.desc-text {
  font-size: clamp(15px, 2.5vw, 25px);
  letter-spacing: -0.01em;
}

#cts01 .img01 {
  margin-bottom: 25.8px;
}

#cts01 .desc-text:nth-of-type(1) {
  margin-bottom: 66.9px;
}

@media (min-width:767px) {
  #cts01 .space {
    float: right;
    height: 314px;
  }

  #cts01 .img02 {
    float: right;
    clear: both;
  }

  #cts01 .deco-img {
    top: inherit;
    bottom: -670px;
  }
}

#cts01 .img02 {
  margin-bottom: 7.6px;
  margin-left: 23.8px;
  width: 32.86vw;
  max-width: 502.31px;
  min-width: 288.1px;
}

#cts01 .img03 {
  margin-top: 102.8px;
  margin-bottom: 69.5px;
  width: 80.16vw;
  max-width: 1033.96px;
  min-width: 357px;
}

@media screen and (max-width: 767px) {
  #cts01 .float {
    display: flex;
    flex-direction: column-reverse;
  }

  #cts01 .img02 {
    margin-top: 0px;
    margin-bottom: 26.6px;
    margin-left: auto;
  }

  #cts01 .img03 {
    margin-top: 17px;
    margin-bottom: 20.4px;
    min-width: inherit;
  }
}

#cts02 .cts__inner h3:first-of-type {
  margin-bottom: 20.6px;
}

#cts02 .img01 {
  margin-bottom: 23.2px;
}

#cts02 .img02 {
  margin-top: 25.6px;
  margin-bottom: 36.6px;
}

#cts02 .img03 {
  margin-top: 82.8px;
  margin-bottom: 54.1px;
}

#cts02 .deco02 {
  position: absolute;
  top: 90px;
}

#cts02 .text-margin {
  margin-bottom: 75.8px;
}

#cts02 .img04 {
  float: left;
  max-width: 392.7px;
  margin-top: -15px;
  margin-left: -8px;
}

@media screen and (max-width:767px) {
  #cts02 .flex p {
    max-width: 510px;
    margin-bottom: 39.5px;
  }

  #cts02 .flex-row {
    display: flex;
    flex-direction: column-reverse;
  }

  #cts02 .text-margin {
    margin-bottom: 24px;
  }

  #cts02 .img03 {
    margin-top: 5.4px;
  }

  #cts02 .img04 {
    margin-right: -35px;
  }

  #cts02 .img04 {
    width: 45.7vw;
    max-width: 548.44px;
    min-width: 246.44px;
    margin: 13px auto 0;
  }
}

#cts03 .cts__ttl--text {
  letter-spacing: -0.1em;
  padding-left: 0;
}

@media screen and (min-width:768px) {
  #cts03 .float .desc-text {
    padding-bottom: 45px;
  }
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

#cts03 .img01 {
  width: 33.04vw;
  max-width: 396.53px;
  min-width: 229.75px;
  float: left;
  margin: 12px 50.6px 90px 0;
}

#cts03 .img02 {
  width: 38.08vw;
  max-width: 456px;
  min-width: 287px;
  float: right;
  margin-left: 10px;
}

#cts03 .img03 {
  width: 62.67vw;
  max-width: 752px;
  min-width: 272.1px;
  margin-right: 15px;
}

#cts03 .deco-cts03 {
  margin-top: 49.2px;
  margin-bottom: 58px;
}

#cts03 .desc-text:last-of-type {
  max-width: 1022px;
}

#cts03 .deco-img {
  top: -400px;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  #cts03 .row {
    display: flex;
    flex-direction: column;
    grid-row-gap: 0;
  }

  #cts03 .img01 {
    float: inherit;
    margin-left: auto;
    margin-right: 24.4px;
    margin-bottom: 19.3px;
    margin-top: 1px;
    order: -1;
  }

  #cts03 .img02 {
    margin: 12px auto 15px;
    order: 2;
  }

  #cts03 .deco-cts03 {
    margin: -5px 0 5px;
  }

  #cts03 .img03 {
    margin-right: 48.4px;
    margin-bottom: 20px;
  }
}

/* ¥×¥é¥¹¥Ü¥¿¥ó */
.plus {
  position: absolute;
  right: 0;
  bottom: 6.9px;
}

.plus,
.minus {
  text-align: right;
  cursor: pointer;
}

.minus .c-modal__close {
  color: #FFF !important;
  -webkit-text-stroke: 0.5px #ffffff !important;
}

.dli-plus {
  display: inline-block;
  vertical-align: middle;
  color: #164F97 !important;
  line-height: 1;
  width: 44.5px;
  min-width: 22.05px;
  height: 3px;
  min-height: 2px;
  background: currentColor;
  position: relative;
}

@media (max-width:767px) {
  .dli-plus {
    width: 22.5px;
    height: 2px;
  }
}

.dli-plus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.minus .dli-plus::before {
  display: none;
}

.minus {
  position: absolute;
  left: 50%;
  bottom: 30px;
}

@media screen and (max-width: 767px) {
  .dli-plus {
    width: 22.5px;
    height: 2px;
  }
}

/* CM¡¢¥×¥ì¥¤¥ê¥¹¥È */
#cm,
#playlist {
  padding-top: 5em;
}

ul.bg-blue {
  background: linear-gradient(90deg, rgba(205, 224, 255, 0.3) 0%, rgba(0, 69, 178, 0.3) 100%);
  border-bottom: 2px solid #0F5DD7;
}

ul.bg-blue li {
  max-width: 1200px;
  margin: 0 auto;
}

ul.bg-blue li h2 {
  margin: 0 auto;
  white-space: nowrap;
}

.bg-blue .c-accordion__header h2 {
  margin-top: -3.5vw;
  text-align: center;
  padding-right: clamp(40px, 4.17vw, 60px);
}

@media screen and (max-width: 767px) {
  .bg-blue .c-accordion__header h2 {
    margin-top: -4.5vw;
  }
}

/* CM¥é¥¤¥Ö¥é¥ê©` */
.cm {
  display: flex;
  justify-content: space-around;
  gap: 70.5px 20px;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .cm {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}

.cm__cts {
  margin-bottom: 60px;
}

.two-cm .cm__cts {
  width: calc((100% - 90px) / 2);
}

.three-cm .cm__cts {
  width: calc((100% - 90px) / 3);
}

.four-cm .cm__cts {
  width: calc((100% - 90px) / 4);
}

@media screen and (max-width: 767px) {

  .two-cm .cm__cts,
  .three-cm .cm__cts,
  .four-cm .cm__cts {
    width: 90%;
  }
}

.cm__cts p {
  margin-top: 10px;
  text-align: center;
}

/* ¥×¥ì¥¤¥ê¥¹¥È */
.spotify {
  margin: 60px auto;
  width: 70%;
}

@media screen and (max-width: 767px) {
  .spotify {
    width: 90%;
  }
}

.spotify iframe {
  width: 100%;
  height: auto;
  min-height: 360px;
  aspect-ratio: 2 / 1;
}

/* statement */
.statement {
  margin: clamp(100px, 18.06vw, 260px) auto clamp(100px, 15.56vw, 224px);
}

.statement .c-accordion__header {
  width: fit-content;
  margin: 77px auto 0;
  padding: 1em;
}

.statement__ttl {
  max-width: 572.19px;
  min-width: 239.44px;
  width: 47.68vw;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.statement .c-accordion__inner li {
  text-align: center;
  font-size: clamp(18px, 2.08vw, 30px);
  line-height: 4em;
}

.statement__txt {
  margin-top: clamp(50px, 5.56vw, 80px);
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
  -webkit-text-stroke: 0.5px #FFF;
  text-align: center;
  font-size: clamp(18px, 2.08vw, 30px);
  line-height: 2.5em;
}

.statement .c-accordion__header h2 span::before {
  right: -20px;
}

.statement .c-accordion__header h2 span::after {
  right: -3px;
}

@media screen and (max-width: 1130px) {
  .statement .c-accordion__header h2 span::after {
    right: -8px;
  }
}

/* footer */
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 200px;
}

.footer__logo {
  width: 100%;
  max-width: 285px;
  margin: 0 auto;
  padding-right: 10px;
}

.footer__sns {
  margin-top: 128px;
}

.footer__sns ul {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer__sns ul li {
  width: 48px;
  height: 48px;
}

.footer__sns ul li a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 180px;
  }
}

.c-modal__content iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

@media screen and (max-width: 767px) {
  .c-modal__content iframe {
    min-height: 200px;
    /* ×îÐ¡¸ß¤µ¤òÔO¶¨ */
  }

  .special-modal iframe {
    aspect-ratio: 9 / 16;
  }
}

/* iframe¥í©`¥Ç¥£¥ó¥°¥¹¥Ô¥Ê©` */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.iframe-loading p {
  font-size: 14px;
  margin: 0;
}

/* 20250919×·¼Ó */

.mvSplide999 .splide__slide button {
  position: relative;
}

.mvSplide999 .splide__slide button::before {
  content: '';
  background-image: url(/tokusetu_site/ichinichimo/assets/img/icon_play02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80px;
  min-width: 50px;
  width: 4.56vw;
  max-height: 80px;
  min-height: 50px;
  height: 4.56vw;
}

.mvSplide999 p {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .mvSplide999 {
    margin-top: -1.6em;
    background-color: #08307130;
    padding: 40px 0 55px;
  }
}

/* 20250925×·¼Ó */

.header__logo {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 220px;
}

.concept-mv__inner button {
  position: relative;
}

.concept-mv__inner button::before {
  content: '';
  background-image: url(/tokusetu_site/ichinichimo/assets/img/icon_play02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80px;
  min-width: 50px;
  width: 6.56vw;
  max-height: 80px;
  min-height: 50px;
  height: 6.56vw;
}

#cts01,
#cts02,
#cts03 {
  padding: 0 72px 60px;
}

@media screen and (max-width: 767px) {

  #cts01,
  #cts02,
  #cts03 {
    padding: 0;
  }
}