* {
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: "palt";

}
.max-wrap {
  width: min(95%, 1200px);
  margin: 0 auto;
}
.text-wrap {
  width: 90%;
  margin: 1em auto;
}
section {
  margin: 45px 0;
}
figure {
  margin: 0;
}
img {
  width: 100%;
}
button {
  background: none;
  border: none;
}
h2 {
  color: #99ccff;
  font-size: 50px;
  font-family: 'Anton', sans-serif;
  /* letter-spacing: .05em; */
  margin-bottom: 20px;
}
h3 {
  margin: 1em 0;
}
.pc {
  display: none;
}
.sp {
  display: revert;
}
.link-btn {
  width: 14em;
 border: solid 2px #15264C;
 padding: .5em 1em;
  line-height: 1.5;
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  overflow: hidden;
  color: #15264c;
  background: #fff;
  z-index: 10;
  margin: 20px auto;
}
.link-btn:hover {
 border: #fff solid 2px;
 color: #fff;
}

.link-btn:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 630%;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
  background: #99ccff;
  z-index: -1;
}

.link-btn:hover:before {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}
.second-kv {
  position: relative;
  margin-top: 0;
}
.second-kv > img {
  height: 96vh;
  object-fit: cover;
}
.kv-box {
  position: absolute;
  bottom: 30px;
}
.kv-box h1 {
  color: #99ccff;
  font-size: 60px;
  font-family: 'Anton', sans-serif;
  letter-spacing: .05em;
  margin-left: 3%;
}
.second-main h2 {
  line-height: .8em;
}
.second-main h2 span {
  display: block;
  font-size: 20px;
}

@media (min-width: 768px) {
  h2 {
    font-size: 70px;
  }
  p {
    font-size: 18px;
  }
  main {
    margin-left: 110px;
  }
  section {
    margin: 90px 0;
  }
  .pc {
    display: revert;
  }
  .sp {
    display: none;
  }
  .second-kv > img {
    width: 70%;
    display: block;
    margin-left: auto;
    margin-right: 0;
  }
  .kv-box {
    left: 5%;
    bottom: 10%;
  }
  .kv-box h1 {
    font-size: 80px;
    margin-left: 0;
  }
  .kv-box p {
    margin-left: 0;
  }
  .second-main {
    margin-top: 10vh;
  }


}

/* header */
header {
  position: fixed;
  width: 100vw;
  z-index: 999;
}
.header-wrap {
  padding: 10px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.logo img {
  width: 40px;
  height: 40px;
}


/* ヘッダーのナビ部分 */

.menu-list {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #15264C;
  transition: ease .4s;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}


@media screen and (min-width: 768px) {
  .menu-list {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 50%;
  }
}


@media screen and (min-width: 768px) {
  .menu-list ul {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}

.menu-list ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}
.menu-list ul li {
  margin: 10px 0;
}


@media screen and (min-width: 768px) {
  .menu-list ul {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);

  }
}
.menu-list.active {
  transform: translateX(0);
}
/* ハンバーガーメニュー */
.menu-btn,
.menu-btn span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-btn {
  position: relative;
  width: 25px;
  height: 22px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #15264C;
  border-radius: 4px;
}
.menu-btn span:nth-of-type(1) {
  top: 0;
}
.menu-btn span:nth-of-type(2) {
  top: 10px;
}
.menu-btn span:nth-of-type(3) {
  bottom: 0;
}
.menu-btn span:nth-of-type(1) {
  animation: menu07-bar01 .75s forwards;
}
@keyframes menu07-bar01 {
  0% {
    transform: translateY(20px) rotate(45deg);
  }
  50% {
    transform: translateY(20px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-btn span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
.menu-btn span:nth-of-type(3) {
  animation: menu07-bar03 .75s forwards;
}
@keyframes menu07-bar03 {
  0% {
    transform: translateY(-20px) rotate(-45deg);
  }
  50% {
    transform: translateY(-20px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-btn.active span {
  background-color: #fff;
}
.menu-btn.active span:nth-of-type(1) {
  animation: active-menu07-bar01 .75s forwards;
  top: -10px;
}
@keyframes active-menu07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(20px) rotate(0);
  }
  100% {
    transform: translateY(20px) rotate(45deg);
  }
}
.menu-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-btn.active span:nth-of-type(3) {
  animation: active-menu07-bar03 .75s forwards;
  bottom: -10px;
}
@keyframes active-menu07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(0);
  }
  100% {
    transform: translateY(-20px) rotate(-45deg);
  }
}
@media (min-width: 768px) {
  header {
    width: 110px;
    height: 100vh;
    background-color: #99ccff;
  }
  .header-wrap {
    flex-direction: column;
    align-items: center;
    height: 100vh;
  }
  .logo img {
    width: 55px;
    height: 55px;
  }
  .menu-list {
    width: 100%;
  }
  .menu-list ul {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .menu-list ul li {
    font-size: 20px;
  }
  .menu-list ul li:last-child {
    display: none;
  }
  .menu-btn {
    display: none;
  }
}

/* footer */
footer {
  background-color: #15264C;
  color: #fff;
  padding: 10px;
  text-align: center;
}
footer .logo-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
footer .logo-area img {
  width: 40px;
}
footer .logo-area p {
  font-weight: bold;
  font-size: 20px;
}
footer .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
footer .sns p {
  position: relative;
}
footer .sns p::after {
  position: absolute;
  content: "";
  top: 20%;
  width: 40px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: skew(45deg);

}
footer .sns .sns-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 60px;
}
footer .sns .sns-icon a {
  width: 20px;
}
@media (min-width: 786px) {
  footer {
    margin-left: 110px;
  }
  .footer-wrap {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
  }
  
}
/* --------------------------------------- */
/* home */
/* --------------------------------------- */
/* KV */
#kv {
  margin: 0;
  height: 96vh;
  position: relative;
}
#kv figure {
  height: 100%;
}
#kv figure img {
  object-fit: cover;
  height: 96vh;
}
#kv h1 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
}
/* コンセプト */
#concept h3 {
  font-size: 5vw;
}
/* school */
  #home .school-area h3 {
    font-size: 5vw;
  }
/* clinic */
.clinic-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 45px 0;
}
.clinic-box {
  width: 90%;
  margin: 0 auto;
  position: relative;
  font-family: 'Anton', sans-serif;
}
.clinic-box img {
  box-shadow:  5px 5px 10px #15264C;
}
.clinic-box p {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
  width: 8em;
}
.clinic-box p span {
  font-size: 20px;
}
/* profile */
.plofile-top {
  position: relative;
  margin: 45px 0;
}
.plofile-top-name {
  position: absolute;
  bottom: 0; 
}
.plofile-top-name h3 {
  font-family: 'Anton', sans-serif;
  font-size: 9.5vw;
  line-height: 1;
  letter-spacing: .03em;
  color: #fff;
  text-shadow: 4px 4px 10px #15264C;
}

.plofile-top-name h3 span {
  font-size: 8vw;
}
.plofile-top-img {
  width: 80%;
  margin-left: auto;
  margin-right: 0;
}

/* instagram */
.instagram-area {
  text-align: center;
}
.instagram-area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 45px 0 0;
}
.instagram-area ul li {
  width: 45%;
  list-style: none;
  padding-bottom: 2vw;
}
.instagram-area ul li img {
  max-width: 300px;
}
/* contact */
#contact .contact-text{
  text-align: center;

}
@media (min-width: 768px) {
  /* kv */
  #kv {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  #kv figure {
    flex: 2;
  }
  #kv figure img {
    object-fit: cover;
    height: 100vh;
  }
  #kv h1 {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: unset;
    flex: 1;
    padding: 5%;
  }
  #kv h1 img:nth-child(2) {
    width: 60%;
  }
  #kv h1 img:nth-child(3) {
    width: 100%;
  }
  /* コンセプト */
  .pc-max-wrap {
    max-width: 890px;
    margin: 0 auto;
  }
  .concept-wrap h2 {
    width: 650px;
    margin: 0 auto;
  }
  #concept h3 {
    text-align: center;
    font-size: 28px;
  }
  /* school */
  #home .school-area h3 {
    font-size: 28px;
    text-align: center;
  }
  /* clinic */
  .clinic-area {
    flex-direction: row;
  }
  /* plofile */
  .plofile-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  .plofile-top {
    flex: 1;
  }
  .plofile-top-name h3 {
    font-size: 5vw;
  }
  .plofile-top-name {
    bottom: -100px;
  }
  .plofile-top-name h3 span {
    font-size: 3.5vw;
  }
  .plofile-text {
    flex: 1;
  }
  /* instagram */
  .instagram-area ul {
    max-width: 980px;
    margin: 0 auto;
  }
  .instagram-area ul li {
    width: 30%;
    padding-bottom: 1vw;
  }
}
@media (min-width: 1200px) {
  .plofile-top-name h3 {
    font-size: 70px;
  }
  .plofile-top-name h3 span {
    font-size: 50px;
  }
}
/* --------------------------------------- */
/* clinic */
/* --------------------------------------- */

#clinic .second-main > div  {
  margin: 60px 0;
}
.clinic-kv .kv-box p {
  font-size: 5vw;
  color: #fff;
  font-weight: bold;
  width: 20em;
  margin-left: 1em;
}
.price {
  width: 90%;
  margin: 45px auto;
  border: solid 3px #15264C;
  padding: 1.5em;
}
.price h3 {
  margin-top: 0;
}
.price .ex {
  margin: 1em 0;
}

.price .ex th {
  display: inline-block;
  margin-right: 2em;
}
.price .caution {
  font-size: 12px;
}
.price .caution p::before {
  content: "※";
  font-size: 12px;
}
@media (min-width: 768px) {
  #clinic .second-main > div {
    margin: 90px 0;
  }
  .flex-wrap {
    display: flex;
    align-items: flex-start;
    gap: 5%;
  }
  .flex-wrap > div {
    flex: 1;
  }
  .clinic-kv .kv-box p {
    text-shadow: 2px 2px 5px #fff;
    font-weight: bold;
    font-size: 28px;
    color: #000;
  }
  .price {
    flex: 1;
    width: 80%;
  }
  .price .caution p {
    font-size: 14px;
  }

}

/* --------------------------------------- */
/* school */
/* --------------------------------------- */
.sc-content-wrap > img {
  display: none;
}
.school-kv p {
  font-weight: bold;
  width: 100%;
  font-size: 5vw;
  color: #fff;
  margin: 1em;
}
.sc-content {
  margin-bottom: 45px;
  width: 90%;
  margin: 2em auto;
  font-size: 18px;
}
.sc-content th {
  display: inline-block;
  margin-right: 2em;
}
#school h3 {
  color: #99ccff;
  font-size: 30px;
  font-family: 'Anton', sans-serif;
  letter-spacing: .05em;
  margin: 0;
  margin-bottom: 10px;
}
.sc-content .school-detail {
  margin-bottom: 1em;
}
.sc-content .price {
  margin-top: 0;
}
.sc-content .school-detail h4 {
  font-size: 20px;
  margin-bottom: 5px;
}
/* .sc-content .price tr {
  border-bottom: solid 1px #000;
} */
.sc-content .price .caution {
  margin-top: 1em;
}
#school figure {
  width: 80%;
  margin: 0 auto;
}
#school figure img {
  max-width: 100%;
}
#school .trial {
  margin-top: 30px;
}
#school .trial h3 {
  font-size: 24px;
  color: black;
  text-align: center;
  font-family: sans-serif;
}
#school .trial p {
  text-align: center;
}

@media (min-width: 768px) {
  .sc-content-wrap .sc-content-box {
    flex: 2;
  }
  .school-kv p {
    font-size: 32px;
    text-shadow: 4px 4px 10px #fff;
    color: #000;
  }
  #school > .flex-wrap {
    width: 90%;
    margin: 0 auto 90px;
    align-items: center;
  }
  #school figure {
    width: 60%;
  }
  #school .trial {
    margin-top: 30px;
  }
  .sc-content {
    margin: 30px auto;
  }

}

@media (min-width: 960px){
  .sc-content-wrap > img {
    display: revert;
    width: 30%;
  }
  .sc-content .price {
    margin-left: 0;
  }

}

/* --------------------------------------- */
/* 記事　news-story */
/* --------------------------------------- */
#news-story .max-wrap {
  margin-top: 30px;
}
.news-story-inner {
  display: flex;
  flex-direction: column;
}

#news-story h1 {
  color: #99ccff;
  font-size: 60px;
  font-family: 'Anton', sans-serif;
  letter-spacing: .05em;
  text-align: center;
  padding-top: 70px;
}

#news-story h2 {
  color: #000;
  font-family: inherit;
  font-size: 5.3vw;
  margin-top: 20px;
}
#news-story .news_kv {
  text-align: center;
}
#news-story .news_kv img {
  width: auto;
  max-width: 100%;
}
#news-story .news_content {
  margin-bottom: 50px;
}
#news-story .news_content_box {
  margin: 30px 0;
}
.news_content_box:first-child p {
  margin-bottom: 1em
}
#news-story h3 {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.5em;
}
#news-story .news_content_box:first-child h3 {
  margin-top: 0;
}

#news-story h3::before {
  position: absolute;
  content: "■";
  color: #99ccff;
  left: 0;
}
.news_content_box_txt {
  padding-left: 25px;
}
#news-story th {
  position: relative;
  text-align: center;
  padding-right: 1.6em;
}
#news-story th::after {
  position: absolute;
  content: ":";
  right: 0.6em;
}
#news-story ul {
  list-style: none;
}
#news-story .news_content_box a {
  text-decoration: underline;
}

@media (min-width: 768px) {
  #news-story h1 {
    font-size: 80px;
    padding-top: 0;
  }
  #news-story h2 {
    font-size: 32px;
  }
  .news-story-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  #news-story .news_kv {
    width: 25%;
  }
  #news-story .news_content {
    width: 70%;
  }
  #news-story .news_content_box:first-child {
    margin-top: 0;
  }
}
/* imadake */
header img {
  width: 45px;
}
@media (min-width: 768px) {
  header img {
    width: 65px;
  }
}