@charset "UTF-8";
/* CSS Document */ :root {
  --fnt-base: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --fnt-gin: "gin", var(--fnt-base);
  --clr-gry: #3F3F3F;
  --clr-ylw: #FFD904;
  --wall-blk: #231815;
  --wall-ylw: #FAD207;
  --wall-pink: #FFEFEF;
  --button-blk: #2B2B2B;
  --button-pink: #EF6AA4;
  --easing: cubic-bezier(0.45, 0.05, 0.55, 0.95);
  --transit: .6s var(--easing);
  --sec-pd: min(128px, 20vw);
}
html {
  scroll-behavior: auto;
}
html, body {
  overscroll-behavior: none;
}
body {
  font-family: var(--fnt-base);
  width: 100%;
  overflow-x: hidden;
  font-size: clamp(12px, 2.5vw, 18px);
  transition: opacity var(--transit);
  opacity: 0;
}
body.is-load {
  opacity: 1;
}
.js-fadeup {
  /*  opacity: 0;*/
}
a.cvr {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.udl-link-txt {
  text-decoration: underline;
  color: #E3C300;
  text-underline-offset: 3px;
  font-weight: 600;
}
/*container
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}
.inner {
  width: min(1260px, 100%);
  padding-left: min(50px, 4vw);
  padding-right: min(50px, 4vw);
  margin-left: auto;
  margin-right: auto;
}
.in-text {
  line-height: 1.4;
  font-kerning: none;
}
/*slider*/
.slide-controller {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  gap: min(16px, 3vw);
  margin-top: min(60px, 8.5vw);
}
.slide-pagination {
  width: auto !important;
  bottom: 0 !important;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  gap: min(16px, 3vw);
}
.slide-pagination span {
  /*  border: 1px solid rgba(0, 0, 0, .1);*/
}
.slide-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  background-color: rgba(255, 255, 255, .5) !important;
  width: min(12px, 2.4vw) !important;
  height: auto;
  aspect-ratio: 1;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active.swiper-pagination-bullet {
  background-color: var(--clr-gry) !important;
}
.swiper-pause {
  width: min(15px, 2.6vw);
  aspect-ratio: 1/1.2;
  background-image: url("../image/icon/play.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  /*  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .25));*/
}
.swiper-pause.is-playing {
  background-image: url("../image/icon/pause.svg");
}
/*header
+++++++++++++++++++++++++++++++++++++++++++*/
#header {
  background-color: var(--wall-blk);
  padding: min(20px, 5vw) min(23px, 2.6vw);
  height: min(75px, 15vw);
  z-index: 1;
}
.h-logo {
  width: min(223px, 28.5vw);
}
#hum-button {
  width: min(75px, 15vw);
  aspect-ratio: 1;
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--wall-blk);
  display: grid;
  grid-template-columns: 50%;
  place-content: center;
  z-index: calc(infinity);
  cursor: pointer;
  transition: background var(--transit);
}
#hum-button.lity-hidden {
  visibility: hidden;
  opacity: 0;
}
#hum-button button {
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: rotate var(--transit);
}
#hum-button button::before, #hum-button button::after {
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  background-color: #fff;
  transition: all var(--transit);
}
#hum-button button::before {
  translate: -50% calc(-100% + -7px);
}
#hum-button button::after {
  translate: -50% calc(100% + 7px);
}
#hum-button.open {
  grid-template-columns: 35%;
  background-color: #000;
}
#hum-button.open button {
  rotate: 45deg;
}
#hum-button.open button::before, #hum-button.open button::after {
  rotate: 90deg;
  top: 50%;
  translate: -50% -50%;
}
#l-nav {
  background-color: #000;
  position: fixed;
  right: 0;
  top: 0;
  width: min(380px, 100vw);
  height: 100dvh;
  color: #fff;
  z-index: 100;
  overflow-y: scroll;
  translate: 100% 0;
  transition: translate var(--transit);
}
#l-nav.is-view {
  translate: 0 0;
}
.l-nav__logo {
  width: min(88px, 23vw);
}
.l-nav_inner {
  width: 100%;
  min-height: 100%;
  padding-top: var(--head-h);
  padding-left: min(56px, 10vw);
  padding-right: min(56px, 10vw);
  padding-bottom: min(80px, 10vw);
}
.l-nav__menu {
  margin-top: min(40px, 5.33vw);
}
.l-nav__menu > li {
  border-top: 1px solid #fff;
}
.l-nav__menu > li:last-child {
  border-bottom: 1px solid #fff;
}
.l-nav__menu > li a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  font-size: min(12px, 3.2vw);
  padding-top: min(18px, 4vw);
  padding-bottom: min(18px, 4vw);
  font-weight: 600;
  line-height: 1.2;
  gap: 5px;
}
.l-nav__menu > li a .en {
  font-size: min(20px, calc(100vw/18.75));
}
/*main
+++++++++++++++++++++++++++++++++++++++++++*/
main {
  flex: 1;
  min-height: 2000px;
}
#fix-wall {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  right: 0;
  bottom: 0;
  transition: position var(--transit);
  pointer-events: none;
  z-index: -1;
}
#fix-wall.is-fit {
  position: absolute;
}
#fix-wall img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
/*title*/
.sec-title {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  font-size: min(24px, calc(100vw/23.4375));
  gap: min(1em, 2.15vw);
}
.sec-title .en {
  font-family: var(--fnt-gin);
  font-size: min(90px, calc(100vw/10));
}
.sec-title .ja {
  font-weight: 700;
}
/*button*/
.more-button {
  background-color: var(--button-blk);
  color: var(--clr-ylw);
  width: var(--btn-width);
  height: min(50px, 8.5vw);
  border-radius: 100vmax;
  font-size: clamp(14px, 2.5vw, 16px);
}
.more-button > * {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
.more-button.women {
  --btn-width: min(295px, 67vw);
  height: min(67px, 14vw);
  background-color: var(--button-pink);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
.more-button.women > a::before {
  content: "";
  width: .85em;
  aspect-ratio: 1;
  border: 2px solid;
  border-color: currentColor currentColor transparent transparent;
  position: absolute;
  right: 1.25em;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
  border-radius: 1px;
  transition: translate .3s var(--easing);
}
@media(hover) {
  .more-button.women:hover > a::before {
    translate: 25% -50%;
  }
}
/*HERO ++++++++++++++++*/
.slide-lf, .slide-rt {
  opacity: 1;
  transform: translateX(0);
}
#hero {
  width: 100%;
  height: calc(100dvh - var(--head-h));
  /*  min-height: 770px;*/
  display: grid;
  place-content: center;
}
.hero-title-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  pointer-events: none;
  translate: -50% 0;
  overflow: hidden;
  mix-blend-mode: overlay;
}
.hero-title-wrap.is-pc {
  opacity: 1;
  pointer-events: auto;
  translate: -50% 0;
}
.hero-title-wrap.is-sp {
  opacity: 0;
  pointer-events: none;
}
.hero-title {
  display: grid;
  grid-template-columns: 100%;
  gap: min(30px, 5vw);
}
.hero-title svg [mix-blend-mode] {
  opacity: 0;
}
.hero-logo {
  width: min(420px, 70vw);
  translate: 0 -15%;
}
.hero-logo::before {
  content: "";
  position: absolute;
  width: 90vw;
  background-image: url("../image/hero-light.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 1/0.8161;
  top: 50%;
  left: 50%;
  translate: -50% -55%;
  /*  scale:0;*/
  opacity: 0;
  transition: scale .6s var(--easing), opacity .4s var(--easing);
}
.hero-logo.is-show::before {
  /*  scale:1;*/
  opacity: .95;
}
.hero-logo img {
  opacity: 0;
  scale: .5;
  transition: opacity .6s var(--easing), scale .6s var(--easing);
}
.hero-logo.is-show img {
  opacity: 1;
  scale: 1;
  transition-delay: .3s;
}
.hero-treat {
  position: absolute;
  width: 50%;
  bottom: 0;
  pointer-events: none;
  transform-origin: bottom center;
}
.hero-treat.is-show {
  translate: 0 0;
  scale: 1;
}
.treat-in-rt img {
  scale: -1 1;
}
.treat-in-rt {
  right: 0;
}
.hero-treat img {
  -webkit-mask-image: linear-gradient(-90deg, rgba(0, 0, 0, 1) 80%, transparent 100%);
  -webkit-mask-size: 200% 100%;
  -webkit-mask-position: 0 0;
  mask-image: linear-gradient(-90deg, rgba(0, 0, 0, 1) 80%, transparent 100%);
  mask-size: 200% 100%;
  mask-position: 0 0;
}
/*CONTENTS
+++++++++++++++++++++++++++++++++++++++++++*/
.pin-wrapper {
  padding-bottom: var(--sec-pd);
}
.sec-title + * {
  margin-top: min(40px, 5.33vw);
}
.pin-wrapper .inner {
  padding-left: min(50px, 8vw);
  padding-right: min(50px, 8vw);
}
/*TOPICS ++++++++++++++++*/
#topics {
  padding-top: var(--sec-pd);
  display: grid;
  grid-template-columns: min(1015px, 100%);
  justify-content: center;
}
#topics-slide {
  overflow: hidden;
}
#topics-slide .swiper-slide {
  background-color: #fff;
  border-radius: min(20px, 2.67vw);
  overflow: hidden;
  isolation: isolate;
  height: auto;
}
#topics-slide .swiper-slide.blank {
  background-color: #3a3939;
}
#topics-slide .swiper-slide.blank img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center;
}
.topics-slide-item {
  display: grid;
  grid-template-columns: 46.79% 1fr;
  -ms-align-items: center;
  align-items: center;
  gap: 1em min(37px, 8.5vw);
  height: 100%;
  padding: min(32px, 6vw) min(40px, 4.8vw);
}
.topics-slide-item .thumb {
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 1/0.6979;
}
.topics-slide-item .thumb img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: center;
}
.topics-slide-item .comment {
  line-height: 1.4;
}
.topics-slide-item .slide-head .post-date {
  font-size: 0.8789em;
}
.topics-slide-item .post-title {
  font-weight: 600;
  font-size: 1.0989em;
  margin-top: 6px;
}
.topics-slide-item .in-text {
  margin-top: min(14px, 3vw);
}
.topics-slide-item .more-button {
  --btn-width: min(210px, 100%);
  margin-top: min(20px, 3vw);
}
.slide-navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -85%;
  z-index: 2;
  pointer-events: none;
  width: min(1200px, 99vw);
  display: flex;
}
.slide-navigation button {
  width: min(55px, 10vw);
  pointer-events: auto;
}
.slide-next-button {
  scale: -1 1;
  margin-left: auto;
}
/*movie +++++++++++++++++++++*/
#movie {
  padding-top: var(--sec-pd);
  display: grid;
  grid-template-columns: min(1015px, 100%);
  justify-content: center;
}
.movie-player {
  aspect-ratio: 1/0.5271;
  background-color: var(--button-blk);
  border-radius: min(20px, 2.67vw);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}
.yt-thumb {
  width: 100%;
  height: 100%;
}
.yt-thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
  transition: opacity .3s var(--easing), scale .3s var(--easing);
  transform-origin: center;
}
.yt-thumb .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: min(150px, 25%);
  pointer-events: none;
}
@media(hover) {
  .movie-player:hover .yt-thumb img.thumb {
    opacity: .7;
    scale: 1.05;
  }
}
/*contents ++++++++++++++++*/
.ylw-wrapper {
  padding-top: var(--sec-pd);
  padding-bottom: var(--sec-pd);
  background-color: var(--wall-ylw);
}
.ylw-wrapper::before, .ylw-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ylw-wrapper::before {
  background-image: url("../image/wall-tiger_lf.png"), url("../image/wall-tiger_lf.png");
  background-repeat: no-repeat;
  background-size: calc(100vw/3);
  background-position: top min(430px, 50vw) left, bottom max(-430px, -50vw) left;
}
.ylw-wrapper::after {
  background-image: url("../image/wall-tiger_rt.png"), url("../image/wall-tiger_rt.png"), url("../image/wall-tiger_rt.png");
  background-repeat: no-repeat;
  background-size: calc(100vw/3);
  background-position: top 15% right, top 55% right, bottom 10% right;
}
.ylw-wrapper > * {
  z-index: 1;
}
/*about*/
#about {
  padding-bottom: var(--sec-pd);
}
.sec-line-box {
  padding: 0 min(50px, 5.5vw) min(96px, 5.33vw);
}
.sec-line-box::before {
  content: "";
  width: 100%;
  height: calc(100% - min(90px, 11.5vw));
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  border-radius: min(24px, 2.67vw);
  border: 3px solid;
}
.sec-line-box .lead-text {
  text-align: center;
  font-size: clamp(14px, 2.5vw, 24px);
  line-height: 1.8;
  font-weight: 500;
}
.sec-line-box .in-text {
  line-height: 1.6;
}
.sec-line-box .comment .in-text {
  margin-top: min(24px, 4.2vw);
}
.list-about-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:min(48px, 4vw);
}
.list-about-links > li {
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  background-color: var(--button-blk);
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: subgrid;
  grid-area: span 2;
  gap: 0;
}
.list-about-links > li figure {
  aspect-ratio: 1/0.6263;
  overflow: hidden;
  width: 100%;
}
.list-about-links > li figure img {
  object-fit: cover;
  height: 100%;
  transition: opacity .3s var(--easing), scale .3s var(--easing);
}
.list-about-links > li .link-title {
  color: #fff;
  padding: min(30px, 5.8vw) min(15px, 2vw);
  display: grid;
  place-content: center;
  font-weight: 700;
  line-height: 1.4;
}
.list-about-links > li .link-title span {
  padding-right: 2.5em;
  word-break: keep-all;
}
.list-about-links > li .link-title span::after {
  content: "";
  width: 1.8em;
  aspect-ratio: 1;
  background-image: url("../image/icon/ccl-arrow.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  transition: translate .3s var(--easing);
}
@media(hover) {
  .list-about-links > li:hover img {
    scale: 1.05;
    opacity: .7;
  }
  .list-about-links > li:hover .link-title span::after {
    translate: 10% -50%;
  }
}
.sec-thumb-box {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: min(23px, 6vw) min(48px, 4vw);
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.sec-thumb-box .thumb {
  display: grid;
  grid-template-columns: calc(100% - min(17px, 2.5vw));
}
.sec-thumb-box .thumb::before {
  content: "";
  position: absolute;
  width: calc(100% - min(17px, 2.5vw));
  height: 100%;
  top: 0;
  right: 0;
  translate: 0 min(17px, 2.5vw);
  background-color: var(--sdw-clr);
  border-radius: 8px;
}
.sec-thumb-box .thumb picture {
  aspect-ratio: 1/0.7241;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
}
.sec-thumb-box .thumb img {
  object-fit: cover;
  height: 100%;
  object-position: center;
}
/*about*/
.about-title {
  white-space: nowrap;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  gap: min(20px, 2.5vw);
  font-size: min(32px, 4.8vw);
  letter-spacing: .025em;
  text-indent: .025em;
  font-weight: 600;
}
.about-title .hash {
  padding-left: 1.25em;
  padding-right: 1.25em;
}
.about-title .hash::before, .about-title .hash::after {
  content: "";
  width: 3px;
  height: 1.6em;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.about-title .hash::before {
  left: 0;
  rotate: -45deg;
}
.about-title .hash::after {
  right: 0;
  rotate: 45deg;
}
.about-title .en {
  width: min(707px, 60vw);
  height: min(90px, 10.67vw);
  border-radius: 100vmax;
  border: 3px solid;
  display: grid;
  place-content: center;
  text-align: center;
  background-color: #fff;
}
.about-title .en span {
  height: min(46px, 4.5vw);
}
.about-title .en span img {
  object-fit: contain;
  height: 100%;
  object-position: center;
}
.about-title + * {
  margin-top: min(35px, 5vw);
}
.box-about-detail {
  background-color: #fff;
  border-radius: min(20px, 2.67vw);
  padding-top: min(168px, 21.333vw);
  padding-left: min(24px, 4vw);
  padding-right: min(24px, 4vw);
  padding-bottom: min(168px, 21.333vw);
  display: grid;
  grid-template-columns: min(1012px, 100%);
  justify-content: center;
  gap: min(96px, 15vw);
}
/*about - intro*/
.box-about__intro .logo {
  width: min(415px, 53vw);
  margin-left: auto;
  margin-right: auto;
}
.box-about__intro .message {
  width: min(657px, 100%);
  margin: min(96px, 10vw) auto 0;
}
/*about - lessons*/
.box-about__lessons .kids-logo {
  width: min(330px, 43%);
  margin-left: auto;
  margin-right: auto;
}
.item-lessons_intro {
  display: grid;
  grid-template-columns: 100%;
  gap: min(50px, 6.4vw);
  margin-top: min(60px, 6.4vw);
}
.item-lessons_area {
  margin-top: min(96px, 8.5vw);
}
.item-lessons_area .in-title {
  text-align: center;
  font-size: min(32px, 3.6vw);
  font-weight: 500;
}
.item-lessons_area .thump-map {
  margin-top: min(30px, 3vw);
}
.item-ipdl_logo {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-around;
  gap: min(50px, 4vw);
  margin-top: min(35px, 4.2vw);
}
.item-ipdl_logo img {
  object-fit: contain;
  height: min(152px, 14vw);
  object-position: center;
}
.sec-line-box .item-ipdl_logo + .in-text {
  margin-top: min(35px, 4.2vw);
}
.box-about__ipbl .list-about-links {
  margin-top: min(48px, 6.4vw);
}
.box-about__ipbl .att-txt{
  margin-top: 1em;
  font-size: min(14px,2.6vw);
}
/*about - club*/
.box-about__club .sec-thumb-box {
  --sdw-clr: #FFEA73;
}
.box-about__club .sec-thumb-box {
  margin-top: min(48px, 6.4vw);
}
.item-about__club {
  display: grid;
  grid-template-columns: min(695px, 100%);
  justify-content: center;
  gap: min(24px, 4.2vw);
  margin-top: min(80px, 4.2vw);
  justify-items: flex-start;
}
.banner-puremiya {
  width: 100%;
  display: grid;
  grid-template-columns: min(242px, 37.6vw);
  justify-content: center;
}
/*about - women*/
.box-about__women {
  --pink-wall: var(--wall-pink);
}
.box-about__women::before {
  background-color: var(--pink-wall);
}
.box-about__women .about-title .en {
  background-color: var(--pink-wall);
}
.logo-women {
  display: grid;
  grid-template-columns: min(356px, 53.6vw);
  justify-content: center;
}
.box-about__women > .lead-text {
  margin-top: min(32px, 4.2vw);
}
.box-about__women .sec-thumb-box {
  --sdw-clr: #FFA2C7;
  margin-top: min(56px, 4.2vw);
}
.marker-pink span {
  background: linear-gradient(rgba(255, 205, 227, 0) 60%, rgba(255, 205, 227, 1) 60%);
}
.box-about__women .sec-thumb-box{
  -ms-align-items: center;
  align-items: center;
}
.box-about__women .sec-thumb-box .text-box{
  line-height: 1.6;
}
.box-about__women .sec-thumb-box .more-button {
  margin-top: min(24px, 4.2vw);
}
.c-num-list {
}
.c-num-list > li{
  padding-left: 1.25em;
}
.c-num-list > li::before{
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  font-family: sans-serif;
}
.c-num-list > li:nth-child(1)::before{
  content: "①";
}
.c-num-list > li:nth-child(2)::before{
  content: "②"
}
.c-num-list > li:nth-child(3)::before{
  content:"③"
}
/*about - trial ++++++*/
.trial-link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(40px, 4vw) min(40px, 2.6vw);
}
.trial-link-list > li {
  aspect-ratio: 1/0.6776;
  overflow: hidden;
  isolation: isolate;
  border-radius: min(7.6px, 2vw);
  color: #fff;
}
.trial-link-list > li figure {
  width: 100%;
  height: 100%;
}
.trial-link-list > li figure img {
  object-fit: cover;
  height: 100%;
  object-position: center;
  transition: scale .3s var(--easing);
  transform-origin: center;
}
.trial-link-list > li figcaption {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  translate: -50% 0;
  text-align: center;
  font-weight: 500;
  padding: min(.85em, 2vw) .85em;
  line-height: 1.4;
  word-break: keep-all;
}
@media(hover) {
  .trial-link-list > li:hover figure img {
    scale: 1.05;
  }
}
/*about - ambassador ++++++*/
.item-amb-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  gap: min(48px, 3.78vw);
}
.item-amb-list > li {
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
}
/* text slider +++++++++++++++++ */
.text-slider {
  overflow: hidden;
  margin-inline: calc(50% - 50vw);
}
.text-slider__track {
  display: flex;
  width: max-content;
  animation: slide-left 45s linear infinite;
}
.text-slider__track > p {
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: min(198.45px, 23.47vw);
  flex-shrink: 0;
}
.text-slider__track span {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  padding-left: min(40px, 4vw);
}
.text-slider__track span.txt {
  padding-top: 10px;
  padding-bottom: 10px;
}
.text-slider__track img {
  display: block;
  height: 100%;
  width: auto;
  flex-shrink: 0;
}
.js-rotate-item img.is-rotate {
  animation: spin-x 1.2s var(--easing);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes spin-x {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
/*event +++++++++++++++++++++*/
#event {
  margin-top: var(--sec-pd);
}
#event-slide .swiper-slide {
  height: auto;
}
.event-slide-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto 1fr;
}
.event-slide-item .thumb {
  aspect-ratio: 1/0.6928;
  overflow: hidden;
  isolation: isolate;
}
.event-slide-item .thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
.event-slide-item .event-data {
  line-height: 1.4;
  padding: min(30px, 4vw) min(25px, 4vw);
  display: grid;
  grid-template-columns: 100%;
}
.event-slide-item .post-date {
  font-weight: 500;
}
.event-slide-item .post-title {
  font-size: 1.0989em;
  font-weight: 600;
  margin-top: 8px;
  padding-bottom: min(20px, 3vw);
}
.event-slide-item .more-button {
  --btn-width: min(225px, 100%);
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}
.event-slide-item .thumb {
  aspect-ratio: 1/0.5776;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--button-blk);
}
.event-slide-item .thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
  transition: opacity .3s var(--easing), scale .3s var(--easing);
}
@media(hover) {
  .event-slide-item:hover .thumb img {
    opacity: .7;
    scale: 1.05;
  }
}
.box-event_message {
  display: grid;
  grid-template-columns: min(782px, 70vw);
  justify-content: center;
  margin-top: var(--sec-pd);
}
.box-event_message .lead-text {
  font-size: clamp(14px, 2.5vw, 24px);
  text-align: center;
  line-height: 269%;
  padding-top: min(58px, 8vw);
  padding-bottom: min(58px, 8vw);
  border-top: min(18px, 2.13vw) solid rgba(0, 0, 0, .13);
  border-bottom: min(18px, 2.13vw) solid rgba(0, 0, 0, .13);
}
/*gallery +++++++++++++++++++*/
#gallery {
  margin-top: var(--sec-pd);
}
.box-gallery-slider {
  width: 100vw;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  overflow: hidden;
  pointer-events: none;
}
.gallery-silder {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  animation: gallery-slide 65s infinite linear 0.5s both;
}
.gallery-silder li {
  width: min(606px, 80vw);
}
@keyframes gallery-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*news +++++++++++++++++++*/
#news {
  margin-top: var(--sec-pd);
}
.sec-news-blc {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  gap: min(40px, 5.33vw);
}
.box-news-list {
  background-color: #fff;
  margin-top: 0;
  padding: min(40px, 6vw) min(40px, 4.2vw);
  display: grid;
  grid-template-columns: min(850px, 100%);
  justify-content: center;
  border-radius: min(20px, 2.67vw);
}
/*sponsor +++++++++++++++++++*/
#sponsor {
  margin-top: var(--sec-pd);
}
.sec-sponsor-blc {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  gap: min(40px, 5.33vw);
}
.box-ponsor-list {
  background-color: #fff;
  margin-top: 0;
  padding: min(40px, 6vw) min(40px, 4.2vw);
  display: grid;
  grid-template-columns: min(850px, 100%);
  justify-content: center;
  border-radius: min(20px, 2.67vw);
}
.sponsor-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(50px, 5vw) min(30px, 4.2vw);
}
.sponsor-list li {
  padding: 10px;
  background-color: #ccc;
}
/*footer 0.7248
+++++++++++++++++++++++++++++++++++++++++++*/
#footer {
  background-color: var(--wall-blk);
  color: #fff;
}
p.copy {
  padding: min(20px, 3vw);
  text-align: center;
}
/*++++++++++++++++++++++++++++++++++++++++++++
responsive 
+++++++++++++++++++++++++++++++++++++++++++++*/
@media(max-width:768px) {
  /*HERO ++++++++++++*/
  .hero-title-wrap.is-pc {
    opacity: 0;
  }
  .hero-title-wrap.is-sp {
    display: block;
    opacity: 1;
  }
  .hero-line.slide-rt {}
  .slide-rt .hero-title {
    translate: 0 -52%;
  }
  .hero-line-row {
    white-space: nowrap;
  }
  .slide-lf .hero-line-row:nth-child(odd) {
    font-size: calc(100vw/2.65);
  }
  .slide-lf .hero-line-row:nth-child(even) {
    font-size: calc(100vw/2.6);
  }
  .slide-rt .hero-line-row:nth-child(odd) {
    text-align: right;
    font-size: calc(100vw/2.6);
  }
  .slide-rt .hero-line-row:nth-child(even) {
    font-size: calc(100vw/2.85);
  }
  /*ABOUT +++++++++++*/
  .list-about-links, .sec-thumb-box {
    grid-template-columns: 1fr;
  }
  .sec-thumb-box .thumb {
    grid-area: 1/1;
  }
  .list-about-links > li figure {
    aspect-ratio: 1/0.7006;
  }
  .sec-line-box::before, .about-title .en {
    border-width: 2px;
  }
  .about-title .hash::before, .about-title .hash::after {
    width: 2px;
  }
  /*TOPICS +++++++++++*/
  .topics-slide-item {
    grid-template-columns: 100%;
  }
  .topics-slide-item .more-button {
    margin-left: auto;
    margin-right: auto;
  }
  /*MOVIE +++++++++++*/
  .movie-player {
    aspect-ratio: 1/1.114;
  }
  /*TRIAL*/
  .trial-link-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .trial-link-list > li {
    aspect-ratio: 1/0.7248;
  }
  /*sponsor +++++++++++++++++++*/
  .sponsor-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*++++++++++++++++++++++++++++++++++++++++++++
news 
+++++++++++++++++++++++++++++++++++++++++++++*/
.ctop #news-unit, .ctop #policy-unit {
  margin: 0;
}

.ctop #news-unit {
  overflow-y: scroll;
  height: 20em;
  font-size: 16px;
}

#news-list table {
  width: 100%;
  background: url(/img/line_1.gif) bottom left repeat-x;
}

#news-list th.icon {
  width: 40px;
  vertical-align: middle;
}

#news-list th.date {
  width: 7em;
  text-align: center;
}

#news-list th, #news-list td {
  padding: 5px 0 8px 0;
  font-weight: normal;
  line-height: 1.5;
}

#news-list td a:link {
  color: #0066CC;
  text-decoration: none;
}

#news-list td a:visited {
  color: #0066CC;
  text-decoration: none;
}

#news-list td a:hover, a:focus {
  color: #0066CC;
  text-decoration: underline;
}

/*sp
--------------------*/

@media(max-width:768px) {
  .ctop #news-unit, .ctop #policy-unit {
    margin: 0;
  }

  .ctop #news-unit {
    overflow-y: scroll;
    height: 20em;
    font-size: 16px;
  }

  #news-list table {
    width: 100%;
    background: url(/img/line_1.gif) bottom left repeat-x;
  }

  #news-list th.icon {
    display: inline-block;
    padding-bottom: 0;
  }

  #news-list th.date {
    width: auto;
    text-align: center;
    font-size: 12px;
    display: inline-block;
    padding-bottom: 0;
    padding-left: 5px;
  }

  #news-list td {
    display: block;
    font-size: 12px;
    padding: 2px 0 5px 0;
  }
}