@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500&display=swap");
html {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 62.5%;
  color: #242424;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: url(../img/media_bg.png) top 1020px center/100% auto repeat-y #487ad3;
  animation: disableScroll 1s linear 1s both;
}

b, strong, .bold {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}

_:lang(x)::-ms-backdrop,
.selector {
  font-family: "Segoe UI", Meiryo, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-feature-settings: "palt";
  letter-spacing: 2px;
}

h1 {
  font-size: clamp(2.4rem, 2vw + 1rem, 3.6rem);
}

h2 {
  font-size: clamp(2rem, 1.5vw + 0.8rem, 3rem);
}

h3 {
  font-size: clamp(1.8rem, 1.2vw + 0.6rem, 2.4rem);
}

h4, h5, h6 {
  font-size: clamp(1.6rem, 1vw + 0.5rem, 2rem);
}

p {
  font-size: clamp(1.3rem, 1vw + 0.5rem, 1.5rem);
}
p span {
  display: inline-block;
}
p + p {
  margin-top: 10px;
}
p.sub_ttl {
  font-size: clamp(1.6rem, 1vw + 0.9rem, 2rem);
  font-family: "Zen Maru Gothic", sans-serif;
  position: relative;
  z-index: 1;
}

a {
  color: #3587ec;
  font-size: clamp(1.2rem, 0.8vw + 0.4rem, 1.6rem);
  transition: 0.3s;
}
a:hover {
  opacity: 0.75;
  text-decoration: underline;
}
a:link {
  color: #2263DE;
  text-decoration: underline;
}
a:active {
  color: #5288ec;
  text-decoration: underline;
}
a:visited {
  color: #114096;
  text-decoration: underline;
}
a:hover {
  color: #5288ec;
}

.clear {
  clear: both;
}

img {
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
}

p > span {
  display: inline-block;
}

a.btn {
  position: relative;
  text-decoration: none;
  transition: 0.3s;
  color: #fff;
  display: block;
  margin: 0px auto;
  padding: 10px 30px;
  font-size: 150%;
  text-align: center;
  background: #272da5;
  border-radius: 60px;
  letter-spacing: 1px;
  line-height: 1.3;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bolder;
  transition: 0.3s;
}
a.btn span {
  display: inline-block;
}
a.btn::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
a.btn:hover {
  opacity: 0.75;
}

a.btn_kitagawa {
  background: #3b9ccf !important;
}

.btn_over a:hover {
  opacity: 0.75;
  transition: 0.3s;
}

#fade {
  position: fixed;
  background: #487ad3;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 999;
  min-height: 100%;
}

.loading_logo {
  position: absolute;
  text-align: center;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: url(../img/logo_wt.png) center center/contain no-repeat #487ad3;
}

body.menu-open {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

nav {
  position: fixed;
  z-index: 99;
}
nav .menu_logo {
  width: 220px;
  margin: 20px 15px;
  position: relative;
  z-index: 100;
}

.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  z-index: 100;
  background: url(../img/menu-btn_fish.png) center center/contain no-repeat;
  cursor: pointer;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  display: block;
  height: 2px;
  width: 23px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  margin-right: 14px;
  transition: all 0.3s ease;
}
.menu-btn span::before {
  bottom: 6px;
}
.menu-btn span::after {
  top: 6px;
}

#menu-btn-check {
  display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: transparent;
}
#menu-btn-check:checked ~ .menu-btn span::before {
  transform: rotate(45deg);
  bottom: 0;
}
#menu-btn-check:checked ~ .menu-btn span::after {
  transform: rotate(-45deg);
  top: 0;
}
#menu-btn-check:checked ~ .menu-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0%);
}

.menu-content {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #487ad3;
  z-index: 90;
  font-family: "Zen Maru Gothic", sans-serif;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.menu-content ul {
  padding: 80px 20px 50px !important;
  margin: 0 auto;
  max-width: 840px;
}
.menu-content ul li {
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.menu-content ul li a {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1px #eff5fe;
  border-right: solid 1px #eff5fe;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

@media screen and (max-width: 768px) {
  nav {
    margin-top: -10px;
  }
  nav .menu_logo {
    margin: 25px 15px;
    max-width: 180px;
  }
  .menu-btn {
    top: 0;
    right: 10px;
  }
}
header {
  position: relative;
  text-align: center;
  margin: 0 auto;
  max-width: 1280px;
}
header .logo {
  position: relative;
  z-index: 6;
  display: block;
  margin: 0 auto -20px;
  margin-top: -170px;
  max-width: 250px;
}
header .wave {
  position: absolute;
  margin: 0 0 -1px;
  width: 100%;
  bottom: 50px;
  overflow: hidden;
}
header .sp_slide {
  display: none !important;
}
header .pc_slide {
  display: block !important;
}
header nav {
  display: none !important;
}

@media screen and (max-width: 768px) {
  header .logo {
    max-width: 180px !important;
    margin-top: -50px !important;
    overflow: hidden !important;
  }
  header .wave {
    bottom: 100px;
  }
  header .sp_slide {
    display: block !important;
  }
  header .pc_slide {
    display: none !important;
  }
}
.wave {
  position: absolute;
  bottom: 0px;
  height: 50px;
  width: 150%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 50" preserveAspectRatio="none"><path fill="%23487ad3" d="M0,10 Q10,0 20,10 T40,10 T60,10 T80,10 T100,10 T120,10 V20 H0 Z"/></svg>') repeat-x;
  background-size: 200px 100%;
  animation: waveMove 2s linear infinite;
  opacity: 1;
  overflow: hidden;
}

@keyframes disableScroll {
  0% {
    overflow: hidden;
  }
  100% {
    overflow: auto;
  }
}
@keyframes waveMove {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -120px;
  }
}
@keyframes fishWiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-4deg);
  }
}
/*------------------
section
------------------*/
#concept {
  position: relative;
  box-sizing: border-box;
  margin: 0 auto 3rem;
  z-index: 4;
}
#concept .concept_inner1 {
  position: relative;
  margin: 0 auto;
  min-height: 200px;
  max-width: 1000px;
  z-index: 3;
}
#concept .concept_inner1:after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  background: url(../img/concept_cotaro.png) no-repeat center right/contain;
  width: calc(330px - 10%);
  height: auto;
  aspect-ratio: 230/260;
}
#concept .concept_inner1 h2 {
  position: relative;
  width: calc(100% - 230px);
  max-width: 450px;
  margin: 3rem auto 0;
}
#concept .concept_inner1 p {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(50% - 100px);
  max-width: 200px;
}
#concept .concept_inner2 {
  position: relative;
  background: url(../img/concept_bg.jpg) center 60%/cover no-repeat;
  min-height: 400px;
  z-index: 1;
}
#concept .concept_inner2 .txt {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  z-index: 3;
}
#concept .concept_inner2 .txt h3 {
  max-width: 280px;
  margin: -70px auto 0 0;
  display: inline-block;
  animation: fishWiggle 2s ease-in-out infinite;
}
#concept .concept_inner2 .txt h4 {
  position: absolute;
  top: 25px;
  right: 0;
  width: 200px;
  margin: auto 0;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  #concept .concept_inner1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    margin: 0 auto;
    max-width: 676px;
  }
  #concept .concept_inner1 h2 {
    width: 70%;
    margin: 0 32% 2rem 2rem;
  }
  #concept .concept_inner1:after {
    content: "";
    display: block;
    background: url(../img/concept_cotaro.png) no-repeat center right/contain;
    width: 30%;
    height: auto;
    aspect-ratio: 230/260;
  }
  #concept .concept_inner2 {
    position: relative;
    min-height: 300px !important;
  }
  #concept .concept_inner2 .txt {
    position: static;
  }
  #concept .concept_inner2 .txt h3 {
    width: 50%;
    max-width: 200px;
    margin: -50px auto 0 0;
  }
  #concept .concept_inner2 .txt h4 {
    right: 20px;
    max-width: 150px;
  }
}
@media screen and (max-width: 768px) {
  #concept {
    padding-bottom: 250px;
  }
  #concept .concept_inner1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 140px;
    position: relative;
    margin: 0 auto;
    max-width: 500px;
  }
  #concept .concept_inner1 h2 {
    width: 70%;
    margin: 0 32% 2rem 2rem;
  }
  #concept .concept_inner1:after {
    content: "";
    display: block;
    background: url(../img/concept_cotaro.png) no-repeat center right/contain;
    width: 30%;
    height: auto;
    aspect-ratio: 230/260;
  }
  #concept .concept_inner2 {
    position: relative;
    min-height: 300px !important;
  }
  #concept .concept_inner2 .txt {
    position: static;
  }
  #concept .concept_inner2 .txt h3 {
    width: 50%;
    max-width: 200px;
    margin: -50px auto 0 0;
    animation: fishWiggle 2s ease-in-out infinite;
  }
  #concept .concept_inner2 .txt h4 {
    position: absolute;
    left: 0;
    right: 0;
    top: 250px;
    margin: 0 auto -40px;
    max-width: 180px;
  }
}
/*------------------
concept2
------------------*/
#concept2 {
  position: relative;
  box-sizing: border-box;
  margin: 5rem auto;
  z-index: 4;
}
#concept2 .step_wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  justify-content: space-between;
  -moz-column-gap: 10px;
       column-gap: 10px;
  counter-reset: number;
}
#concept2 .step_wrap > .step {
  box-sizing: border-box;
  padding: 20px;
  background: #fff;
  border-radius: 30px;
}
#concept2 .step_wrap > .step h2 {
  width: 100%;
  margin: 0 auto;
  letter-spacing: 4px;
  font-size: 180%;
  font-weight: normal;
  text-align: center;
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
}
#concept2 .step_wrap > .step h2 span {
  display: inline-block;
}
#concept2 .step_wrap > .step h2::before {
  font-size: 200%;
  counter-increment: number;
  content: counter(number, decimal-leading);
  font-feature-settings: "palt";
  letter-spacing: 0;
  font-weight: bold;
  border-bottom: 1px solid #5387E3;
  color: #5387E3;
  display: block;
  margin-bottom: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
}
#concept2 .step_wrap > .step p {
  letter-spacing: 1px;
  line-height: 1.8;
  margin: 25px 0;
}
#concept2 .step_wrap > .step img {
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 20px auto;
}
#concept2 .step_wrap > .step figure {
  margin: 10px;
}
#concept2 .delay-time03 {
  animation-delay: 0.3s;
}
#concept2 .delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  #concept2 .step_wrap {
    display: block;
    align-items: baseline;
    justify-content: space-between;
    counter-reset: number;
    width: calc(100% - 40px);
  }
  #concept2 .step_wrap > .step {
    width: auto;
    border-radius: 40px;
    padding: 15px 20px;
  }
  #concept2 .step_wrap > .step + .step {
    margin-top: 20px;
  }
  #concept2 .step_wrap > .step h2 {
    font-size: 150%;
  }
  #concept2 .step_wrap > .step h2 ::before {
    font-size: 250%;
  }
  #concept2 .step_wrap > .step p {
    letter-spacing: 1px;
    line-height: 1.8;
    margin: 15px 0;
  }
  #concept2 .step_wrap > .step figure {
    margin: 0;
  }
}

/*------------------
media
------------------*/
#media {
  position: relative;
  padding: 5rem 0 10rem;
  overflow: hidden;
}
#media .media_inner {
  max-width: 1000px;
  margin: 0 auto;
}
#media .media_inner h2 {
  position: relative;
  width: calc(100% - 20px);
  max-width: 500px;
  margin: 0 0 5rem 20px;
}
#media .media_inner h2::after {
  position: absolute;
  bottom: -25px;
  right: -70px;
  content: "";
  display: block;
  background: url(../img/bubble1.png) no-repeat top right/contain;
  width: 80px;
  height: auto;
  aspect-ratio: 244/221;
  z-index: 3;
}
#media .media-banner {
  padding: 2rem;
  border-radius: 30px;
  position: relative;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  max-width: 840px;
  margin: 0 auto;
}
#media .media-banner__image {
  position: relative;
  flex: 1;
  min-width: 300px;
}
#media .media-banner__image img {
  width: 100%;
  height: auto;
  border-radius: 200px;
  border: 3px solid #272da5;
}
#media .media-banner .badge_tv::before {
  position: absolute;
  top: -55px;
  right: -25px;
  content: "";
  display: block;
  background: url(../img/badge_tv.png) no-repeat top right/contain;
  width: 80px;
  height: auto;
  aspect-ratio: 181/205;
  z-index: 3;
}
#media .media-banner .badge_paper::before {
  position: absolute;
  top: -45px;
  right: -25px;
  content: "";
  display: block;
  background: url(../img/badge_paper.png) no-repeat top right/contain;
  width: 80px;
  height: auto;
  aspect-ratio: 196/183;
  z-index: 3;
}
#media .media-banner .badge_cast::before {
  position: absolute;
  top: -45px;
  right: -25px;
  content: "";
  display: block;
  background: url(../img/badge_cast.png) no-repeat top right/contain;
  width: 80px;
  height: auto;
  aspect-ratio: 181/183;
  z-index: 3;
}
#media .media-banner__content {
  flex: 1;
  max-width: 400px;
  background: #fff;
  border-radius: 20px;
  padding: 2em;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 40px 0 0 -80px;
}
#media .media-banner__content::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#272da5 2px, transparent 0px);
  background-size: 6px 6px;
  background-repeat: repeat;
  opacity: 1;
  z-index: -1;
  pointer-events: none;
  border-radius: 20px;
}
#media .media-banner__content .media-banner__date {
  font-size: 1.2rem;
  font-weight: bold;
  color: #487ad3;
}
#media .media-banner__content .media-banner__description {
  line-height: 1.6;
  margin: 5px 0 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #242424;
}
#media .media-banner__content .movie_btn {
  background: #f65155 !important;
}
#media .wave_bottom {
  position: absolute;
  bottom: -30px;
  height: 50px;
  width: 150%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 50" preserveAspectRatio="none"><path fill="%23eff5fe" d="M0,10 Q10,0 20,10 T40,10 T60,10 T80,10 T100,10 T120,10 V20 H0 Z"/></svg>') repeat-x;
  background-size: 200px 100%;
  animation: waveMove 2s linear infinite;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #media .media_inner h2 {
    margin: 0 auto 20px;
    padding: 0 2rem;
  }
  #media .media_inner h2::after {
    bottom: -20px;
    right: 0px;
    width: 30px;
  }
  #media .media-banner {
    display: block;
  }
  #media .media-banner .badge_tv::after, #media .media-banner .badge_paper::after {
    top: -23px;
    right: -10px;
    width: 55px;
  }
  #media .media-banner__content {
    margin: -20px auto 0px !important;
    width: calc(100% - 40px);
  }
}

/*------------------
profile
------------------*/
#profile {
  position: relative;
  padding: 2rem 0;
  background: #eff5fe;
  overflow: hidden;
}
#profile .profile_wrap {
  margin: 0 auto 3rem;
  padding: 2rem;
  position: relative;
  max-width: 1000px;
}
#profile .profile_wrap h2 {
  position: relative;
  margin: 3rem auto 0px;
  width: calc(100% - 20px);
  max-width: 500px;
  text-align: center;
}
#profile .profile_wrap h2::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  margin-top: -40px;
  content: "";
  display: block;
  background: url(../img/bubble2.png) no-repeat center/contain;
  width: 130%;
  aspect-ratio: 1605/221;
  z-index: 0;
}
#profile .profile_wrap .sub_ttl {
  position: relative;
  text-align: center;
  margin: 2rem auto 5rem;
  color: #272da5;
  font-size: 240%;
  z-index: 1;
}
#profile .profile_wrap dl {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: flex-start;
}
#profile .profile_wrap dl dt {
  flex: 0 0 280px;
}
#profile .profile_wrap dl dt img {
  transform: rotate(3deg);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  border: 8px solid #fff;
}
#profile .profile_wrap dl dd {
  flex: 1;
}
#profile .profile_wrap dl dd p {
  letter-spacing: 1px;
  line-height: 1.8;
}
#profile .profile_wrap dl dd p + p {
  margin-top: 1em;
}
#profile .profile_wrap dl dd h5 {
  font-size: 140%;
  letter-spacing: 0;
  margin: 25px 0 5px;
  font-weight: 400;
}
#profile .wave {
  bottom: -31px;
}
@media screen and (max-width: 768px) {
  #profile .profile_wrap h2 {
    margin: 20px auto;
  }
  #profile .profile_wrap h2::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    margin-top: 20px;
    content: "";
    display: block;
    background: url(../img/bubble2.png) no-repeat center/contain;
    width: 100%;
    aspect-ratio: 1605/221;
    z-index: 0;
  }
  #profile .profile_wrap .sub_ttl {
    margin: 3rem;
    font-size: 200%;
  }
  #profile .profile_wrap dl {
    flex-direction: column;
  }
  #profile .profile_wrap dl dt {
    flex: none;
    width: calc(100% - 100px);
    margin: 0 auto;
    max-width: 300px;
  }
  #profile .profile_wrap dl dt img {
    transform: rotate(0deg);
    border: 5px solid #fff;
  }
  #profile .profile_wrap dl dd {
    flex: none;
  }
}

/*------------------
program
------------------*/
#program {
  position: relative;
  padding: 2rem 0 5rem;
  background: #487ad3;
  overflow: hidden;
}
#program .program_inner {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-direction: row-reverse;
  margin: 3rem auto 0;
  max-width: 1000px;
}
#program .program_inner > div {
  flex: 1;
}
#program .program_inner > div h2 {
  max-width: 500px;
  margin: 3rem 0 3rem auto;
}
#program .program_inner > div p {
  text-align: right;
  margin: 0 0 0 auto;
  color: #fff;
  line-height: 2;
}
#program .program_inner h3 {
  max-width: 300px;
  margin: 1rem auto 0 30px;
}
#program .horizontal_scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding: 1rem 0;
  cursor: grab;
  margin-top: -5rem;
  scrollbar-color: #caddf4 transparent;
  scrollbar-width: thin;
}
#program .horizontal_scroll .horizontal_scroll::-webkit-scrollbar {
  height: 5px;
}
#program .horizontal_scroll .horizontal_scroll::-webkit-scrollbar-track {
  background: #eee;
}
#program .horizontal_scroll .horizontal_scroll::-webkit-scrollbar-thumb {
  border-radius: 30px;
  border: 2px solid #caddf4;
}
#program .horizontal_scroll .scroller {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  padding: 2rem;
  counter-reset: my-counter;
  overflow-x: auto;
  margin-left: 5rem;
}
#program .horizontal_scroll .scroller > * {
  flex: 0 0 35%;
  scroll-snap-align: start;
  margin-right: 1rem;
}
#program .horizontal_scroll .scroller.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
#program .program_box {
  position: relative;
  box-sizing: border-box;
  background: #fff;
  border-radius: 30px;
  overflow: visible;
  z-index: 3;
  pointer-events: none;
}
#program .program_box::after {
  position: absolute;
  top: -15px;
  left: -15px;
  content: counter(my-counter);
  counter-increment: my-counter;
  background: #272da5;
  color: #fff;
  display: block;
  text-align: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  font-size: 250%;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
}
#program .program_box .p_pic img {
  border-radius: 30px 30px 0 0;
}
#program .program_box dl {
  padding: 0;
  margin: -20px 0 20px;
  z-index: 1;
  position: relative;
}
#program .program_box dt {
  font-size: 170%;
  margin-bottom: 10px;
  padding: 10px;
  background: #caddf4;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.8;
}
#program .program_box dd {
  padding: 10px 20px;
  line-height: 1.8;
}
#program .program_box dd p:has(small) {
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #program .program_inner {
    display: block;
    gap: 20px;
    max-width: inherit;
    margin: 3rem 40px 0;
    overflow: visible;
  }
  #program .program_inner > div {
    flex: 1;
  }
  #program .program_inner > div h2 {
    max-width: 500px;
    margin: 3rem auto 3rem;
  }
  #program .program_inner > div p {
    text-align: center;
    margin: 0 0 0 auto;
    color: #fff;
    line-height: 1.6;
  }
  #program .program_inner h3 {
    margin: 2rem auto -4rem;
    max-width: 200px;
  }
  #program .horizontal_scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding: 1rem 0;
    cursor: grab;
    margin-top: -5rem;
  }
  #program .horizontal_scroll .scroller {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    padding: 2rem;
    counter-reset: my-counter;
    overflow-x: auto;
    margin-left: 0px;
  }
  #program .horizontal_scroll .scroller > * {
    flex: 0 0 80%;
    scroll-snap-align: start;
    margin-right: 1rem;
  }
  #program .horizontal_scroll .scroller.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
  }
  #program .program_box {
    position: relative;
    box-sizing: border-box;
    background: #fff;
    border-radius: 30px;
    overflow: visible;
    z-index: 3;
    pointer-events: none;
  }
  #program .program_box::after {
    position: absolute;
    top: -10px;
    left: -10px;
    content: counter(my-counter);
    counter-increment: my-counter;
    background: #272da5;
    color: #fff;
    display: block;
    text-align: center;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    font-size: 210%;
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
  }
  #program .program_box .p_pic img {
    border-radius: 30px 30px 0 0;
  }
  #program .program_box dl {
    padding: 0;
    margin: -20px 0 0;
    z-index: 1;
    position: relative;
  }
  #program .program_box dt {
    font-size: 140%;
    padding: 5px 10px;
    background: #caddf4;
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.6;
    color: #242424;
  }
  #program .program_box dd {
    padding: 10px 20px 15px;
    line-height: 1.8;
  }
  #program .program_box dd p:has(small) {
    line-height: 1.2;
    margin-bottom: 20px;
  }
}
#program .wave_bottom {
  position: absolute;
  bottom: -20px;
  height: 50px;
  width: 150%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 50" preserveAspectRatio="none"><path fill="%23487ad3" d="M0,10 Q10,0 20,10 T40,10 T60,10 T80,10 T100,10 T120,10 V20 H0 Z"/></svg>') repeat-x;
  background-size: 200px 100%;
  animation: waveMove 2s linear infinite;
  opacity: 1;
  transform: scaleY(-1);
  z-index: 2;
}

/*------------------
parent,#teacher
------------------*/
#parent, #teacher {
  position: relative;
  background: linear-gradient(to bottom, #eff5fe, #fff);
  overflow: hidden;
}
#parent .parent_inner, #parent .teacher_inner, #teacher .parent_inner, #teacher .teacher_inner {
  position: relative;
  display: flex;
  align-items: stretch;
  -moz-column-gap: 40px;
       column-gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
#parent .parent_inner__txt, #parent .teacher_inner__txt, #teacher .parent_inner__txt, #teacher .teacher_inner__txt {
  padding: 5rem 0 0 20px;
  box-sizing: border-box;
  width: calc(70% - 40px);
}
#parent .parent_inner__txt h2, #parent .teacher_inner__txt h2, #teacher .parent_inner__txt h2, #teacher .teacher_inner__txt h2 {
  position: relative;
  max-width: 280px;
  margin: 20px auto 10px 0;
  display: inline-block;
  z-index: 1;
}
#parent .parent_inner__txt h2::before, #parent .teacher_inner__txt h2::before, #teacher .parent_inner__txt h2::before, #teacher .teacher_inner__txt h2::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: #caddf4;
  pointer-events: none;
  border-radius: 50%;
  z-index: -1 !important;
}
#parent .parent_inner__txt p.sub_ttl, #parent .teacher_inner__txt p.sub_ttl, #teacher .parent_inner__txt p.sub_ttl, #teacher .teacher_inner__txt p.sub_ttl {
  color: #272da5;
  line-height: 1.6;
  margin-bottom: 3rem;
}
#parent .parent_inner__txt .txt, #parent .teacher_inner__txt .txt, #teacher .parent_inner__txt .txt, #teacher .teacher_inner__txt .txt {
  line-height: 2;
  margin-bottom: 3rem;
}
#parent .parent_inner__txt a.btn, #parent .teacher_inner__txt a.btn, #teacher .parent_inner__txt a.btn, #teacher .teacher_inner__txt a.btn {
  max-width: calc(100% - 100px);
  background: linear-gradient(to right, #0043cb, #696bfd, #50b6ef) !important;
  margin-bottom: 6rem;
  padding: 10px 30px;
  font-size: 180%;
}
#parent .parent_inner__pic, #parent .teacher_inner__pic, #teacher .parent_inner__pic, #teacher .teacher_inner__pic {
  position: absolute;
  right: 0;
  width: 30%;
  height: 100%;
  overflow: hidden;
}
#parent .parent_inner__pic .scroll-mask, #parent .teacher_inner__pic .scroll-mask, #teacher .parent_inner__pic .scroll-mask, #teacher .teacher_inner__pic .scroll-mask {
  height: 100%;
  overflow: hidden;
  position: relative;
}
#parent .parent_inner__pic .scroll-track, #parent .teacher_inner__pic .scroll-track, #teacher .parent_inner__pic .scroll-track, #teacher .teacher_inner__pic .scroll-track {
  display: flex;
  flex-direction: column;
  animation: scrollVertical 20s linear infinite;
  will-change: transform;
  height: 200%;
  transform: translateZ(0);
  backface-visibility: hidden;
}
#parent .parent_inner__pic img, #parent .teacher_inner__pic img, #teacher .parent_inner__pic img, #teacher .teacher_inner__pic img {
  width: 100%;
  height: auto;
  display: block;
}
#parent .teacher_inner, #teacher .teacher_inner {
  flex-direction: row-reverse;
  position: relative;
  z-index: 1;
}
#parent .teacher_inner__txt, #teacher .teacher_inner__txt {
  padding: 5rem 0 0 20px;
  box-sizing: border-box;
  width: calc(70% - 40px);
}
#parent .teacher_inner__pic, #teacher .teacher_inner__pic {
  position: absolute;
  left: 0;
  width: 30%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
@keyframes scrollVertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  #parent .parent_inner, #parent .teacher_inner, #teacher .parent_inner, #teacher .teacher_inner {
    flex-direction: column;
    padding-top: 20px;
  }
  #parent .parent_inner__txt, #parent .teacher_inner__txt, #teacher .parent_inner__txt, #teacher .teacher_inner__txt {
    width: auto;
    margin: 0 auto;
    padding: 2rem;
  }
  #parent .parent_inner__txt h2, #parent .teacher_inner__txt h2, #teacher .parent_inner__txt h2, #teacher .teacher_inner__txt h2 {
    max-width: 200px;
    margin: 20px auto 20px 0;
  }
  #parent .parent_inner__txt .txt, #parent .teacher_inner__txt .txt, #teacher .parent_inner__txt .txt, #teacher .teacher_inner__txt .txt {
    margin-bottom: 3rem;
  }
  #parent .parent_inner__txt a.btn, #parent .teacher_inner__txt a.btn, #teacher .parent_inner__txt a.btn, #teacher .teacher_inner__txt a.btn {
    max-width: calc(100% - 10px);
    margin-bottom: 2rem;
  }
  #parent .parent_inner__pic, #parent .teacher_inner__pic, #teacher .parent_inner__pic, #teacher .teacher_inner__pic {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
  }
  #parent .parent_inner__pic .scroll-mask, #parent .teacher_inner__pic .scroll-mask, #teacher .parent_inner__pic .scroll-mask, #teacher .teacher_inner__pic .scroll-mask {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  #parent .parent_inner__pic .scroll-track, #parent .teacher_inner__pic .scroll-track, #teacher .parent_inner__pic .scroll-track, #teacher .teacher_inner__pic .scroll-track {
    display: flex;
    flex-direction: row;
    width: -moz-max-content;
    width: max-content;
    animation: scrollHorizontal 22s linear infinite;
    will-change: transform;
    height: 100%;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  #parent .parent_inner__pic img, #parent .teacher_inner__pic img, #teacher .parent_inner__pic img, #teacher .teacher_inner__pic img {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    display: block;
  }
  @keyframes scrollHorizontal {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  #parent .teacher_inner, #teacher .teacher_inner {
    position: relative !important;
    flex-direction: column !important;
  }
}

#parent .wave_bottom {
  position: absolute;
  top: -30px;
  height: 50px;
  width: 150%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 50" preserveAspectRatio="none"><path fill="%23487ad3" d="M0,10 Q10,0 20,10 T40,10 T60,10 T80,10 T100,10 T120,10 V20 H0 Z"/></svg>') repeat-x;
  background-size: 200px 100%;
  animation: waveMove 2s linear infinite;
  opacity: 1;
  overflow: hidden;
  transform: scaleY(-1);
  z-index: 2;
}

#teacher .wave {
  position: absolute;
  bottom: -32px;
  height: 50px;
  width: 150%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 50" preserveAspectRatio="none"><path fill="%23eff5fe" d="M0,10 Q10,0 20,10 T40,10 T60,10 T80,10 T100,10 T120,10 V20 H0 Z"/></svg>') repeat-x;
  background-size: 200px 100%;
  animation: waveMove 2s linear infinite;
  opacity: 1;
  z-index: 4;
}

/*------------------
comment
------------------*/
#comment {
  position: relative;
  padding: 2rem 0 5rem;
  background: #eff5fe;
}
#comment .comment_inner {
  position: relative;
  margin: 3rem auto 0;
}
#comment .comment_inner::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  content: "";
  display: block;
  background: url(../img/bubble2.png) no-repeat center/contain;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 1605/221;
  z-index: 0;
}
#comment .comment_inner > div {
  flex: 1;
}
#comment .comment_inner > div h2 {
  max-width: 200px;
  margin: 3rem auto;
}
#comment .comment_inner > div .sub_ttl {
  position: relative;
  border-radius: 60px;
  border: 2px solid #272da5;
  padding: 5px 20px 10px;
  margin: 0 auto 8rem;
  width: calc(100% - 100px);
  max-width: 400px;
  z-index: 1;
}
#comment .horizontal_scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding: 1rem 0;
  cursor: grab;
  margin-top: -5rem;
  scrollbar-color: #caddf4 transparent;
  scrollbar-width: thin;
}
#comment .horizontal_scroll .horizontal_scroll::-webkit-scrollbar {
  height: 8px;
}
#comment .horizontal_scroll .horizontal_scroll::-webkit-scrollbar-track {
  background: #eee;
}
#comment .horizontal_scroll .horizontal_scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: 2px solid #caddf4;
}
#comment .horizontal_scroll .scroller {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  padding: 2rem;
  overflow-x: auto;
  margin-left: 5rem;
}
#comment .horizontal_scroll .scroller > * {
  flex: 0 0 35%;
  scroll-snap-align: start;
  margin-right: 1rem;
}
#comment .horizontal_scroll .scroller.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
#comment .comment_box {
  position: relative;
  box-sizing: border-box;
  background: #fff;
  overflow: visible;
  z-index: 1;
  border-radius: 30px;
}
#comment .comment_box .c_pic {
  background: #487ad3;
  margin-bottom: 3rem;
  border-radius: 30px 30px 0 0;
  pointer-events: none;
}
#comment .comment_box .c_pic > img {
  margin-top: -20px;
}
#comment .comment_box dl {
  padding: 0 0 15px;
  margin: -20px 0 20px;
  z-index: 1;
  position: relative;
}
#comment .comment_box dt {
  font-size: 200%;
  padding: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.8;
}
#comment .comment_box dd {
  padding: 10px 20px;
  line-height: 1.8;
  pointer-events: none;
}
#comment .comment_box dd p:has(small) {
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #comment .comment_inner {
    display: block;
    gap: 20px;
    max-width: inherit;
    margin: 3rem auto 0;
    overflow: visible;
  }
  #comment .comment_inner::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    content: "";
    display: block;
    background: url(../img/bubble2.png) no-repeat center/contain;
    width: 95%;
    aspect-ratio: 1605/221;
    z-index: 0;
  }
  #comment .comment_inner > div {
    flex: 1;
  }
  #comment .comment_inner > div h2 {
    max-width: 150px;
    margin: 2rem auto;
  }
  #comment .comment_inner > div .sub_ttl {
    width: calc(100% - 40px);
  }
  #comment .horizontal_scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding: 1rem 0;
    cursor: grab;
    margin-top: -5rem;
  }
  #comment .horizontal_scroll .scroller {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    padding: 2rem;
    overflow-x: auto;
    margin-left: 0px;
  }
  #comment .horizontal_scroll .scroller > * {
    flex: 0 0 80%;
    scroll-snap-align: start;
    margin-right: 1rem;
  }
  #comment .horizontal_scroll .scroller.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
  }
  #comment .comment_box {
    position: relative;
    box-sizing: border-box;
    background: #fff;
    border-radius: 30px;
    overflow: visible;
    z-index: 3;
    pointer-events: auto;
  }
  #comment .comment_box .c_pic img {
    border-radius: 30px 30px 0 0;
  }
  #comment .comment_box dl {
    padding: 0;
    margin: -20px 0 0;
    z-index: 1;
    position: relative;
  }
  #comment .comment_box dt {
    font-size: 140%;
    padding: 5px 10px;
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.6;
    color: #242424;
  }
  #comment .comment_box dd {
    padding: 10px 20px 15px;
    line-height: 1.8;
  }
  #comment .comment_box dd p:has(small) {
    line-height: 1.2;
    margin-bottom: 20px;
  }
}
#comment #listup {
  margin: 0 auto;
  position: relative;
  padding: 5rem 2rem 0;
  background: #eff5fe;
  overflow: hidden;
}
#comment #listup::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0px;
  content: "";
  display: block;
  background: url(../img/list_bg.png) top center/contain no-repeat;
  width: 1000px;
  aspect-ratio: 1000/319;
  z-index: 0;
}
@media (max-width: 768px) {
  #comment #listup::before {
    top: 0;
    background: url(../img/list_bg.png) top 0px center/contain no-repeat;
    width: 90%;
  }
}
#comment #listup h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  margin: 0 auto 2rem;
  width: calc(100% - 40px);
  z-index: 1;
  position: relative;
}
#comment #listup h4 span {
  display: inline-block;
  line-height: 2;
  text-align: center;
}
#comment #listup h4 img {
  width: 220px;
  height: 100%;
  vertical-align: text-bottom;
}
#comment #listup .list_inner {
  position: relative;
  padding: 2rem;
  margin: 0 auto;
  max-width: 1000px;
  font-family: "Zen Maru Gothic", sans-serif;
}
#comment #listup .list_inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
#comment #listup .list_inner ul > li {
  flex: 1 1 calc(33.333% - 1rem);
  border: 1px solid #272da5;
  color: #242424;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 60px;
  font-size: 130%;
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: calc(33.333% - 1rem);
}
@media (max-width: 768px) {
  #comment #listup .list_inner ul > li {
    flex: 1 1 calc(50% - 1rem);
    max-width: 50%;
    font-size: 110%;
  }
}
@media (max-width: 400px) {
  #comment #listup .list_inner ul > li {
    flex: 1 1 calc(100% - 1rem);
    max-width: 100%;
    font-size: 110%;
  }
}

/*------------------
北川水産
------------------*/
#kitagawa_suisan {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: right;
  background: linear-gradient(to bottom, rgba(191, 211, 245, 0) 50%, #bfd3f5 90%, #bfd3f5 100%), url(../img/kitagawa_suisan_bg.jpg) top -6rem left/cover no-repeat;
}
#kitagawa_suisan .kitagawa_suisan_inner {
  margin: 8rem 2rem;
  padding: 4rem 3rem;
  max-width: 500px;
  background: rgba(0, 34, 132, 0.95);
}
#kitagawa_suisan .kitagawa_suisan_inner h2 {
  margin: -40px 0 20px;
}
#kitagawa_suisan .kitagawa_suisan_inner .txt {
  line-height: 1.8;
  color: #fff;
  margin-bottom: 3rem;
  font-size: 90%;
}
@media (max-width: 768px) {
  #kitagawa_suisan {
    position: relative;
    overflow: hidden;
    display: block;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 5rem;
    background: url(../img/kitagawa_suisan_bg.jpg) top 0 center/100% auto no-repeat #bfd3f5;
  }
  #kitagawa_suisan .kitagawa_suisan_inner {
    padding: 3rem 20px 4rem;
    max-width: calc(100% - 40px);
    margin: 60% auto 0;
    background: rgba(0, 34, 132, 0.95);
  }
  #kitagawa_suisan .kitagawa_suisan_inner h2 {
    max-width: 300px;
  }
  #kitagawa_suisan .kitagawa_suisan_inner .txt {
    line-height: 1.8;
    color: #fff;
    margin-bottom: 3rem;
    font-size: 90%;
  }
  #kitagawa_suisan .kitagawa_suisan_inner > a.btn {
    background: #3b9ccf;
  }
}
#kitagawa_suisan .wave_bottom {
  position: absolute;
  top: -30px;
  height: 50px;
  width: 150%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 50" preserveAspectRatio="none"><path fill="%23eff5fe" d="M0,10 Q10,0 20,10 T40,10 T60,10 T80,10 T100,10 T120,10 V20 H0 Z"/></svg>') repeat-x;
  background-size: 200px 100%;
  animation: waveMove 2s linear infinite;
  opacity: 1;
  transform: scaleY(-1);
  z-index: 2;
}

/*------------------
price
------------------*/
#price {
  position: relative;
  background: #bfd3f5;
  padding: 2rem 2rem 8em;
  margin-top: -10px;
}
#price .price_inner {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 3;
  background: #fff;
  border-radius: 30px;
  padding: 2rem;
  border: 2px solid #272da5;
  box-shadow: 0 0 0 5px white;
}
#price .price_inner h2 {
  position: relative;
  max-width: 200px;
  margin: 3rem auto 5rem;
  z-index: 2 !important;
}
#price .price_inner h2::after {
  position: absolute;
  bottom: -15px;
  right: -15%;
  content: "";
  display: block;
  background: url(../img/bubble2.png) no-repeat top right/contain;
  width: 135%;
  height: auto;
  aspect-ratio: 1605/221;
  z-index: 1 !important;
}
#price .price_inner p.sub_ttl {
  text-align: center;
  line-height: 1.8;
  font-size: 1.6rem;
}
#price .price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 3rem 0;
}
#price .price-list .price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  text-align: left;
  padding: 0 10px;
  gap: 20px;
  color: #242424;
}
#price .price-list .price-item .price-label {
  flex: 0 0 25%;
  background: #f0f4ff;
  border-radius: 60px;
  padding: 5px 10px;
  margin: 10px auto 10px;
  text-align: center;
  font-weight: normal;
  color: #272da5;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
  font-size: 180%;
  font-family: "Zen Maru Gothic", sans-serif;
}
#price .price-list .price-item .price-txt {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}
#price .price-list .price-item .price-txt div {
  margin-top: 10px;
}
#price .price-list .price-item .price-txt div .price-txt__ttl {
  margin-bottom: 10px;
  font-weight: 600;
  color: #272da5;
  letter-spacing: 2px;
  font-size: 170%;
  margin-top: 5px;
}
#price .price-list .price-item .price-txt div .price-txt__note {
  color: #242424;
  line-height: 1.6;
  margin-top: 5px;
  font-size: 1.3rem;
}
#price .price-list .price-item .price-txt div .price-txt__ttl + .price-txt__note {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #price .price_inner {
    border-radius: 20px;
    padding: 1.5rem;
  }
  #price .price_inner h2 {
    max-width: 130px !important;
    margin: 20px auto 30px;
  }
  #price .price_inner p.sub_ttl {
    text-align: center;
    line-height: 1.8;
    font-size: 1.4rem;
  }
  #price .price-list .price-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0 !important;
    row-gap: 20px;
  }
  #price .price-list .price-item .price-label,
  #price .price-list .price-item .price-txt {
    width: 100%;
    text-align: left;
    padding: 0;
  }
  #price .price-list .price-item .price-label {
    background: #f0f4ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 10px;
    font-size: 150%;
  }
  #price .price-list .price-item .price-txt {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    font-size: 90%;
  }
  #price .price-list .price-item .price-txt div {
    margin-top: 0px;
  }
  #price .price-list .price-item .price-txt div .price-txt__ttl {
    font-weight: 600;
    color: #272da5;
    letter-spacing: 2px;
    margin-bottom: 0px;
    font-size: 140%;
  }
  #price .price-list .price-item .price-txt div .price-txt__note {
    line-height: 1.6;
    margin-top: 5px;
  }
  #price .price-list .price-item .price-txt div + div {
    margin-top: 10px;
  }
}

/*------------------
Q&A
------------------*/
#q_a {
  position: relative;
  padding: 2rem 2rem 6rem;
  background: linear-gradient(to bottom, #bfd3f5, #fff);
  z-index: 1;
}
#q_a .q_a_inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
#q_a .q_a_inner::before {
  background: url("../img/q&a_bg.png") top right/contain no-repeat;
  position: absolute;
  top: -20px;
  right: 0px;
  content: "";
  display: block;
  width: 300px;
  height: auto;
  aspect-ratio: 645/225;
  z-index: 1;
}
#q_a .q_a_inner h2 {
  position: relative;
  width: calc(100% - 20px);
  max-width: 300px;
  margin: 0 0 5rem 0px;
  z-index: 3;
}
#q_a .q_a_inner h2::after {
  position: absolute;
  bottom: -25px;
  right: -70px;
  content: "";
  display: block;
  background: url(../img/bubble1_wt.png) no-repeat top right/contain;
  width: 80px;
  height: auto;
  aspect-ratio: 244/221;
  z-index: 3;
}
#q_a .faq-item {
  position: relative;
  margin: 20px auto 0px;
  max-width: 800px;
  background: linear-gradient(to right, #487ad3 0%, #487ad3 60px, #fff 60px, #fff 100%);
  border-radius: 30px;
  padding: 5px;
  z-index: 2;
  box-shadow: 0 0 10px #c9d9f6;
}
#q_a .faq-question__wrap {
  position: relative;
  padding: 10px 5px 10px 55px;
  cursor: pointer;
}
#q_a .minus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: #272da5;
  right: 20px;
  top: 50%;
  border-radius: 10px;
  transform: translateY(-50%);
}
#q_a .plus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: #272da5;
  right: 20px;
  top: 50%;
  border-radius: 10px;
  transform: translateY(-50%) rotate(90deg);
  transition: ease all 0.1s;
}
#q_a .plus-icon.active {
  transform: translateY(-50%);
}
#q_a .faq-question__title {
  color: #272da5;
  font-size: 150%;
  position: relative;
  padding-left: 15px;
}
#q_a .faq-question__title::before {
  position: absolute;
  color: #fff;
  content: "Q";
  top: 50%;
  left: -35px;
  font-size: 160%;
  transform: translateY(-50%);
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: -3px;
}
#q_a .faq-answer__wrap {
  padding: 10px 5px 10px 55px;
  transition: ease all 0.2s;
  height: 0;
  overflow: hidden;
  border-radius: 30px;
}
#q_a .faq-answer__wrap.active {
  height: auto;
  padding: 10px 5px 10px 55px;
}
#q_a .faq-answer__wrap {
  opacity: 0;
  padding: 0px 5px 0px 55px;
  overflow: hidden;
  transition: ease all 0.2s;
}
#q_a .faq-answer__wrap.active {
  opacity: 1;
  padding: 10px 5px 10px 55px;
}
#q_a .faq-answer__txt {
  position: relative;
  padding-left: 15px;
  line-height: 1.6;
}
#q_a .faq-answer__txt::before {
  font-weight: bold;
  position: absolute;
  color: #feffb4;
  content: "A";
  top: 10px;
  left: -35px;
  font-size: 170%;
  transform: translateY(-50%);
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 768px) {
  #q_a .q_a_inner {
    padding-top: 2rem;
  }
  #q_a .q_a_inner::before {
    background: url("../img/q&a_bg.png") top right/contain no-repeat;
    position: absolute;
    top: -20px;
    right: 0px;
    content: "";
    display: block;
    width: 50%;
    height: auto;
    aspect-ratio: 645/225;
    z-index: 1;
  }
  #q_a .q_a_inner h2 {
    position: relative;
    width: calc(100% - 20px);
    max-width: 200px;
    margin: 0 0 2rem 0px;
    z-index: 3;
  }
  #q_a .q_a_inner h2::after {
    position: absolute;
    bottom: -10px;
    right: -20px;
    content: "";
    display: block;
    background: url(../img/bubble1_wt.png) no-repeat top right/contain;
    width: 30px;
    height: auto;
    aspect-ratio: 244/221;
    z-index: 3;
  }
  #q_a .faq-item {
    margin: 20px auto 0px;
    max-width: 800px;
    background: linear-gradient(to right, #487ad3 0%, #487ad3 45px, #fff 45px, #fff 100%);
    border-radius: 20px;
    padding: 5px;
  }
  #q_a .minus-icon {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    background: #272da5;
    right: 20px;
    top: 50%;
    border-radius: 10px;
    transform: translateY(-50%);
  }
  #q_a .plus-icon {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    background: #272da5;
    right: 20px;
    top: 50%;
    border-radius: 10px;
    transform: translateY(-50%) rotate(90deg);
    transition: ease all 0.1s;
  }
  #q_a .plus-icon.active {
    transform: translateY(-50%);
  }
  #q_a .faq-question__title {
    font-size: 130%;
    padding-left: 0px;
    margin-right: 45px;
  }
  #q_a .faq-question__title::before {
    position: absolute;
    color: #fff;
    content: "Q";
    top: 50%;
    left: -45px;
    font-size: 200%;
    transform: translateY(-50%);
    margin-top: -2px;
  }
  #q_a .faq-answer__wrap {
    padding: 10px 5px 10px 55px;
    transition: ease all 0.2s;
    height: 0;
    overflow: hidden;
    border-radius: 30px;
  }
  #q_a .faq-answer__wrap.active {
    height: auto;
    padding: 10px 5px 10px 55px;
  }
  #q_a .faq-answer__wrap {
    opacity: 0;
    padding: 0px 5px 0px 55px;
    overflow: hidden;
    transition: ease all 0.2s;
  }
  #q_a .faq-answer__wrap.active {
    opacity: 1;
    padding: 10px 5px 10px 55px;
  }
  #q_a .faq-answer__txt {
    position: relative;
    padding-left: 0;
    font-size: 120%;
  }
  #q_a .faq-answer__txt::before {
    font-weight: bold;
    position: absolute;
    color: #feffb4;
    content: "A";
    top: 10px;
    left: -45px;
    font-size: 210%;
    transform: translateY(-50%);
  }
}

/*------------------
button
------------------*/
.btn_area {
  width: calc(100% - 40px);
  margin: 8rem auto 4rem;
  max-width: 600px;
}
.btn_area > a.btn {
  font-size: 160%;
  background: linear-gradient(to right, #0043cb, #696bfd, #50b6ef);
}
.btn_area a + a {
  margin-top: 15px;
}

/*------------------
company
------------------*/
#company {
  position: relative;
  background: #487ad3;
  padding-top: 2rem;
}
#company .company_inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  -moz-column-gap: 0px;
       column-gap: 0px;
  max-width: 1000px;
  padding: 2rem;
  margin: 0 auto;
  color: #fff;
  font-size: 1.3rem;
}
#company .company_inner__info {
  width: 35%;
}
#company .company_inner__info > img {
  display: block;
  width: calc(100% - 20px);
  padding: 0 40px;
  margin: 0 auto 20px;
  max-width: 250px;
}
#company .company_inner__info dt {
  margin-top: 10px;
}
#company .company_inner__info dd > ul {
  list-style: none;
}
#company .company_inner__info dd > ul li {
  color: #fff;
  line-height: 1.8;
}
#company .company_inner__info dd > ul li > a {
  font-size: 100%;
  color: #fff;
  -webkit-text-decoration: underline rgba(255, 255, 255, 0.3) 1px;
          text-decoration: underline rgba(255, 255, 255, 0.3) 1px;
}
#company .company_inner__sns {
  flex: 1;
  position: relative;
}
#company .company_inner__sns img {
  max-width: 400px;
  margin: 0px auto -20px;
  display: block;
}
#company .company_inner__sns div.feed {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #company .company_inner {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 0px;
    max-width: auto;
    margin: 0 auto 0rem;
    color: #fff;
    font-size: 120%;
  }
  #company .company_inner__info {
    width: 90%;
    margin: 0 auto;
    max-width: 500px;
  }
  #company .company_inner__sns {
    flex: 0 0 100%;
  }
  #company .company_inner__sns .feed {
    width: 100%;
  }
}

/*------------------
footer
------------------*/
footer {
  width: 100%;
  background: #272da5;
  padding: 2rem;
  bottom: 0;
}
footer .copyright p {
  font-size: 110%;
  opacity: 0.8;
  display: block;
  text-align: center;
  color: #fff !important;
}

/*=============================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInTrigger,
.fadeUpTrigger {
  opacity: 0;
}

#gallery h4 {
  width: 157px;
  margin: 0 auto 3em;
}

/*------------------
contact
------------------*/
#contact {
  margin: 3em auto;
  color: #fff;
}

#contact h2 {
  width: 370px;
  margin: 0 auto 30px;
}

#contact .txt {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}

#contact .txt p:nth-child(1) {
  width: calc(25% - 0px) !important;
}

#contact .txt p:nth-child(2) {
  width: calc(75% - 10px) !important;
  margin: 0 !important;
}

#contact .txt img {
  width: 100%;
}

.contact_wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 4em 0;
}

.Form {
  margin: 0 auto;
  max-width: 800px;
}

.Form-Item {
  padding: 20px 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 15px;
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.Form-Item-Label-Required {
  color: #feffb4;
  font-size: 15px;
}

.Form-Item-Input {
  border-radius: 50px;
  margin-left: 40px;
  padding: 1em;
  height: 48px;
  flex: 1;
  width: 100% !important;
  background: #eaedf2;
  font-size: 14px;
}

.Form-Item-Textarea {
  border-radius: 20px;
  margin-left: 40px;
  padding: 1em !important;
  flex: 1;
  width: 100% !important;
  background: #fff;
  font-size: 14px;
  min-height: 200px !important;
}

.Form-Btn {
  border-radius: 50px;
  margin: 32px auto 0;
  padding: 10px 0;
  width: 280px;
  display: block;
  letter-spacing: 2px;
  background: #272da5;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.Form-Btn:hover {
  opacity: 0.75;
  transition: 0.3s;
}

.Form-RadioGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-left: 40px;
}

.Form-RadioGroup label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 150%;
  cursor: pointer;
  font-weight: 700;
}

.Form-RadioGroup input[type=radio] {
  margin: 0;
  vertical-align: middle;
}

.selecter {
  position: relative;
}

.selecter::before {
  content: "";
  margin: auto;
  position: absolute;
  top: -10px;
  bottom: 0;
  right: 20px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  border-right: 1px solid rgba(0, 0, 0, 0.6);
  transform: rotate(45deg);
  z-index: 3;
}

select, option {
  position: relative;
  border-radius: 50px;
  margin-left: 40px;
  padding: 1em 3em 1em 1em;
  height: 48px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  background: #eaedf2;
  cursor: pointer;
}

@media screen and (max-width: 840px) {
  #contact {
    padding: 0 10px;
    margin: 3em auto;
  }
  #contact h4 {
    width: 310px;
    margin: 0 auto !important;
  }
  #contact .txt {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: inherit;
  }
  #contact .txt p:nth-child(1) {
    width: 200px !important;
    margin: 20px 0 30px;
    margin-right: 0;
    margin-left: auto;
  }
  #contact .txt p:nth-child(2) {
    width: calc(100% - 0px) !important;
    margin: 0 !important;
  }
  #contact .txt img {
    width: 100%;
  }
  .contact_wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
  }
  .Form {
    margin-top: 40px;
  }
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
  .Form-Item-Label-Required {
    font-size: 15px;
  }
  .Form-Item-Input {
    position: relative;
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
  .Form-Item-Textarea {
    border-radius: 20px;
    margin-top: 18px;
    margin-left: 0;
    flex: inherit;
    font-size: 15px;
  }
  .Form-Btn {
    margin-top: 24px;
    padding: 14px;
    width: 160px;
    font-size: 16px;
  }
  .Form-RadioGroup {
    flex-direction: column;
    gap: 1rem;
    margin-left: 0;
    margin-top: 20px;
  }
  .selecter {
    position: relative;
  }
  .selecter::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 10px;
    bottom: 0;
    right: 20px;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
    border-right: 1px solid rgba(0, 0, 0, 0.6);
    transform: rotate(45deg);
    z-index: 3;
  }
  select, option {
    position: relative;
    border-radius: 50px;
    margin-left: 0px;
    margin-top: 18px;
    padding: 1em 3em 1em 1em;
    height: 48px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    background: #eaedf2;
    cursor: pointer;
  }
}/*# sourceMappingURL=style.css.map */