@font-face {
  src: url("../font/Noto_Sans_400-Regular.woff") format("woff");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../font/Noto_Sans_300-Light.woff") format("woff");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
  font-weight: 300;
}
@font-face {
  src: url("../font/Noto_Sans_500-Medium.woff") format("woff");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
}
@font-face {
  src: url("../font/Noto_Sans_700-Bold.woff") format("woff");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  transition: 1s;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1D1D1D;
  background: linear-gradient(to right, rgba(128, 188, 211, 0.6), rgba(204, 174, 209, 0.3) 43%, rgba(232, 150, 181, 0.1));
  background-attachment: fixed;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  body {
    background-image: none;
  }
}

.inter {
  font-family: "Inter", sans-serif;
}

/*@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (min-width: 961px) {
  .disp_sp {
    display: none !important;
    visibility: hidden !important;
  }
}
@media screen and (max-width: 960px) {
  .disp_pc {
    display: none !important;
    visibility: hidden !important;
  }
}
.scrollanime {
  opacity: 0;
}

.updown {
  opacity: 0;
  transform: translateY(-50px);
}

.downup {
  opacity: 0;
  transform: translateY(50px);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.scaleup {
  opacity: 0;
  transform: scale(0.8);
}

.fadeIn.updown {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.fadeIn.downup {
  animation-name: fadeInUP;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.fadeIn.slide-right {
  animation-name: fadeInRight;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.fadeIn.slide-left {
  animation-name: fadeInLeft;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.fadeIn.scaleup {
  animation-name: fadeInScale;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUP {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.eachTextAnime {
  overflow: hidden;
  display: block;
  opacity: 0;
  transition: opacity ease 0.3s 0.5s;
}
.eachTextAnime span {
  transform: translateY(100%);
  display: inline-block;
}
.eachTextAnime.appeartext {
  opacity: 1;
}
.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
  position: relative;
}

@keyframes text_anime_on {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.flex_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 960px) {
  .flex_box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.wrap01 {
  width: 1040px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .wrap01 {
    width: 500px;
  }
}

.wrap-r {
  max-width: calc(100% - (50% - 600px));
  width: 95%;
  margin-right: 0;
  margin-left: auto;
}

.wrap-l {
  max-width: calc(100% - (50% - 600px));
  width: 95%;
  margin-right: auto;
  margin-left: 0;
}

.header__logo {
  position: fixed;
  top: 5%;
  left: 5%;
  max-width: 7vw;
}
.header__menu {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 46vw;
}
@media screen and (max-width: 1300px) {
  .header__menu {
    right: calc(10vw + 375px);
    max-width: 37vw;
  }
}
.header__menu__a {
  display: block;
  padding-left: 22px;
  position: relative;
}
.header__menu__a:before {
  display: block;
  content: "";
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  background: center/contain url("../img/header_arrow.png") no-repeat;
  top: 5px;
  left: 0;
}
.header__menu__jp {
  font-size: min(1.8vw, 20px);
  font-weight: bold;
  padding-bottom: 5px;
  display: block;
  line-height: 1;
}
.header__menu__en {
  font-size: min(1.3vw, 16px);
  font-weight: bold;
  display: inline-block;
  font-family: "Inter", sans-serif;
  background: linear-gradient(to right, #80BCD3, #CCAED1 47%, #E896B5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__menu__ul {
  margin-bottom: 60px;
}
.header__menu__li {
  margin-bottom: 20px;
}
.header__menu__li.last {
  margin-bottom: 0;
}

.footer {
  background-color: #E699B8;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .footer {
    padding: 50px 0 70px;
  }
}
.footer__ul {
  width: 90%;
  margin: 0 auto 30px;
  font-weight: 500;
}
.footer__li {
  margin-bottom: 5px;
}
.footer__li__a {
  transition: all ease 0.3s;
  font-size: 12px;
}
.footer__li__a:hover {
  opacity: 0.7;
}
.footer__logo {
  text-align: center;
  padding-bottom: 30px;
  padding-top: 40px;
}
.footer__logo__a {
  display: inline-block;
  transition: all ease 0.3s;
}
.footer__logo__a:hover {
  opacity: 0.8;
}
.footer__copy {
  text-align: center;
  font-size: 10px;
  padding-bottom: 20px;
}

.center {
  text-align: center;
}

.mb20 {
  margin-bottom: 20px;
}

.btn01 {
  text-align: center;
}
.btn01__txt {
  text-align: center;
  display: block;
  color: #2685AD;
  font-weight: bold;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.6;
}
.btn01__txt--line {
  color: #06C755;
}
@media screen and (min-width: 961px) {
  .btn01__txt {
    font-size: 22px;
  }
}
.btn01__color {
  color: #FFF616;
}
.btn01--fv {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 28%;
}
.btn01--fixed {
  position: sticky;
  width: 100%;
  bottom: 10px;
  left: 0;
  display: none;
  z-index: 100;
}
.btn01__a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 335px;
  max-width: 100%;
  border-radius: 60px;
  background: linear-gradient(to right, #30ACDC, #CB89D5 47%, #E9548C);
  font-weight: bold;
  color: #fff;
  font-size: 20px;
  text-align: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 15px 0;
  box-shadow: 0 4px 2px #9C778F;
}
.btn01__a--small {
  font-size: 16px;
}
@media screen and (min-width: 961px) {
  .btn01__a--small {
    font-size: 20px;
  }
}
.btn01__a--yellow {
  color: #FFF616;
}
.btn01__a--fv {
  width: 90%;
  padding: min(20px, 5.3vw);
  font-size: min(22px, 5.8vw);
}
.btn01__a--header {
  width: 176px;
  height: 36px;
  font-size: 12px;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
@media screen and (min-width: 961px) {
  .btn01__a--header {
    width: 250px;
    font-size: 16px;
    height: 45px;
  }
}
.btn01__a--line {
  display: block;
  background: #06C755;
  margin: 0 auto;
  width: 335px;
  padding: 5px 0 7px 0;
  padding-left: 8px;
  box-shadow: 0 4px 2px #329359;
  position: relative;
  line-height: 1.2;
}
@media screen and (min-width: 961px) {
  .btn01__a--line {
    width: 500px;
    padding: 18px 0;
  }
}
.btn01__a--line ::before {
  content: "";
  width: 50px;
  height: 50px;
  display: block;
  background-image: url(../img/ico-line.svg);
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}
@media screen and (min-width: 961px) {
  .btn01__a--line ::before {
    left: 45px;
  }
}
.btn01__a--line ::after {
  content: "";
  width: 23px;
  height: 23px;
  display: block;
  background-image: url(../img/ico-arrow-white.svg);
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
@media screen and (min-width: 961px) {
  .btn01__a--line ::after {
    right: 50px;
  }
}
.btn01__ico--fv {
  width: 1.27em;
  height: 1.27em;
  right: 1.72em;
}
.btn01__ico--line {
  margin-left: 20px;
}

.ttl01 {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  grid-row-gap: 10px;
  align-items: flex-start;
}
@media screen and (min-width: 961px) {
  .ttl01 {
    margin-bottom: 50px;
  }
}
.ttl01--center {
  align-items: center;
  text-align: center;
}
.ttl01__jp {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (min-width: 961px) {
  .ttl01__jp {
    font-size: 28px;
  }
}
.ttl01__en {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
  background: linear-gradient(to right, #80BCD3, #CCAED1 47%, #E896B5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 961px) {
  .ttl01__en {
    font-size: 18px;
  }
}

.ttl_grade {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.ttl_grade__bg {
  display: inline-block;
  background: linear-gradient(to right, #80BCD3, #CCAED1 47%, #E896B5);
  padding: 5px 10px;
  margin-bottom: 5px;
}
.ttl_grade__bg:last-of-type {
  margin-bottom: 0;
}
.ttl_grade__fs24 {
  font-size: 24px;
}
.ttl_grade__fs20 {
  font-size: 20px;
}/*# sourceMappingURL=cmn_layout.css.map */