@charset "UTF-8";

html {
  font-size: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

:root {
  --main-color: #00b2bc;
  --base-color: #ffffff;
  --accent-color: #e95383;
  --accent-color-secondary: #fdd000;
  --green-color: #6bb92d;
  --green-color-secondary: #00913a;

  --pink-color-primary: #1974C1;
  --gray-color-primary: #585555;
  --black-color-primary: #222222;
  --lightgreen-color-background: #F0F0F0;
  --blue-color-secondary: #082E56;
  --gray-color-logo : #7e6960;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
body {
  font-family: Noto Sans JP,游ゴシック体,YuGothic,游ゴシック Medium,Yu Gothic Medium,游ゴシック,Yu Gothic,sans-serif;
  line-height: 2;
}
@media screen and (min-width: 600px) {
  body { line-height: 1.6; }
}
li {
  list-style: none;
}

/*------------------------------------------------------------

common

------------------------------------------------------------*/
/*------------------------- wrapper ----------------------- */
.wrapper {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

@media screen and (min-width: 992px) {
  .wrapper {
    padding: 0;
  }
}

/*------------------------- inner ------------------------- */
.inner {
  margin-top: 5em;
}

/*------------------------- section ------------------------*/
.section {
  padding: 4em 0;
}

/*------------------------- headline ---------------------- */
.headline-typeA {
  position: relative;
  /* font-size: 1.7em; */
  text-align: center;
  color: var(--main-color);
}

.headline-typeA::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: auto;
  width: 5%;
  height: 2px;
  background-color: var(--main-color);
}

.headline-typeB {
  position: relative;
  /* font-size: 1.7em; */
  text-align: center;
  color: var(--accent-color);
}

.headline-typeB::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: auto;
  width: 5%;
  height: 2px;
  background-color: var(--accent-color);
}

/*------------------------- global-nav -------------------*/


/*------------------------- top-button --------------------- */
.top-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em;
  color: var(--base-color);
  font-weight: 700;
  background-color: var(--gray-color-logo);
  text-decoration: none;
}

.top-button a::before {
  content: "\025b2";
  margin-right: 0.3em;
}

/*------------------------- margin --------------------- */
.mt10,
.mt10ul li {
  margin-top: 10px;
}
.mt20,
.mt20ul li {
  margin-top: 20px;
}
.mt30,
.mt30ul li {
  margin-top: 30px;
}
.mt40,
.mt40ul li {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mt75 {
  margin-top: 75px;
}
.mt100 {
  margin-top: 100px;
}
.mt150 {
  margin-top: 150px;
}
.mt1em {
  margin-top: 1em;
}
.mt2em {
  margin-top: 2em;
}
.mt3em {
  margin-top: 3em;
}

/*============================================================================================================================
animation
============================================================================================================================*/
/* テキストアニメーション */
.text-animation { transform: translateY(10px); transition: all 0.3s ease-in; transition-delay: 0.5s; opacity: 0; visibility: hidden; }
.text-animation.is-inview { transform: translateY(0); opacity: 1; visibility: visible; }
/* 画像アニメーション */
.image-animation { transform: translateY(10px); transition: all 0.5s ease; transition-delay: 0.8s; opacity: 0; visibility: hidden; }
.image-animation.is-inview { transform: translateY(0); opacity: 1; visibility: visible; }
/*------------------------------------------------ mvIndex ------------------------------------------------------------*/
/* 全共通 */
.bgextend { position: relative; opacity: 0; overflow: hidden; animation: bgextendAnimeBase 1s forwards; }
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 中の要素 */
.bgappear { opacity: 0; animation: bgextendAnimeSecond 1s 0.6s forwards; }
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 左から右 */
.bgLRextend::before { content: ""; position: absolute; width: 100%; height: 100%; background-color: var(--main-color); animation: bgLRextendAnime 1s forwards; }
@keyframes bgLRextendAnime {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
/* スクロールしたら出現する要素に透過0を指定 */
.bgappearTrigger, .bgLRextendTrigger { opacity: 0; }

/*------------------------------------------------------------

header

------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--base-color);
  z-index: 10;
}
.header__parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 20px;
}
@media screen and (min-width: 600px) {
  .header__parent {
    flex-direction: row;
    justify-content: space-between;
  }
}
.header__parent .logo__link {
  display: flex;
  align-items: center;
}
.header__parent .logo__image {
  width: 185px;
  height: 29px;
}
@media screen and (min-width: 600px) {
  .header__parent .logo__image {
    width: 363px;
    height: 56px;
  }
}
.header__parent .nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.header__parent .nav__item {
  list-style-type: none;
  margin-right: 1em;
}
.header__parent .nav__item:nth-last-of-type(1) {
  margin-right: 0;
}
.header__parent .nav__item a {
  font-size: 0.9em;
  font-weight: 700;
  color: var(--black-color-primary);
  text-decoration: none;
}
@media screen and (min-width: 1400px) {
  .header__parent .nav__item a {
    font-size: 1.2em;
  }
}
.header__parent .nav__item.current a {
  color: var(--accent-color);
}

.header__parent .left .treatment-icon { display: none; }
.header__parent .left .treatment-icon__list { text-align: center; }
.header__parent .left .treatment-icon__list .treatment-icon__list__item:nth-last-of-type(odd) { background-color: var(--main-color); }
.header__parent .left .treatment-icon__list .treatment-icon__list__item:nth-last-of-type(even) { background-color: var(--accent-color); }
.header__parent .left .treatment-icon__list .treatment-icon__list__item { padding: 0.5em; background-color: var(--green-color-secondary); color: var(--base-color); font-size: 1.1em;font-weight: bold; border-radius: 10px; list-style: none; align-content: center; }
.header__parent .left .treatment-icon__list .treatment-icon__list__item .subtext { display: block; font-size: 0.8rem; }
.header__parent .right { margin-top: 10px; }
.header__parent .left .treatment-icon__list { display: block grid; grid-template-columns: repeat(4, 1fr); gap: 1em; }
@media screen and (min-width: 600px) {
  .header__parent .left { display: flex; align-items: center; gap: 30px; }
  .header__parent .left .treatment-icon { display: block; }
  .header__parent .right { margin-top: 0; }
}

/*------------------------------------------------------------

main

------------------------------------------------------------*/
/*------------------------- mvIndex -------------------------*/
.mvIndex { height: 100vh; background: url("../images_pre/mv2.jpg") no-repeat top center / cover; background-position: 90% 0%;}

.mvInner { position: relative; margin: 0 auto; padding-top: 8em; padding-left: 15px; }
.mvTitle_B { font-size: min(10vw, 80px); line-height: 1.2; }
.mvTitle_S { font-size: min(8vw, 50px); line-height: 1.5; }
.mvTitle_Ss{ font-size: min(11vw, 30px); line-height: 1.5; }
.mvText { color: var(--base-color); font-weight: bold; }
.mvText.accent { color: var(--accent-color); }
@media (width >= 1000px) {
  .mvInner { max-width: 1200px; height: 100%; padding-top: 220px; padding-left: 1%; }
}

@media screen and (max-width: 599px) {
 .mvIndex { height: 80vh; margin-top: 100px;}
}


/*------------------------- WEB予約 -------------------------*/
.reservation__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .reservation__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.reservation__container > div {
  margin-top: 1em;
  padding: 0 1em;
}
@media screen and (min-width: 768px) {
  .reservation__container > div {
    margin-top: 0;
  }
}

/*------------------------- button -------------------------*/
.button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 50px;
  color: var(--base-color);
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  text-decoration: none;
  border-radius: 0.8em;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}
.button a:hover {
  color: var(--accent-color);
  background-color: var(--base-color);
  border: 1px solid var(--accent-color);
}
.button a.recruit-link {
  width: 100%;
  font-size: 1.1em;
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  .button a.recruit-link {
    width: 350px;
    font-size: 1.2em;
  }
}
/*------------------------- INFORMATION, RECRUIT --------------------*/
.recruit .wrapper {
  padding: 4em 0;
  background-color: #fff2dc;
}
.recruit .inner {
  margin-top: 2em;
}
@media screen and (min-width: 600px) {
  .recruit .wrapper {
    border-radius: 0.8em;
  }
}
.information__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2em;
  border: 2px solid var(--accent-color);
  border-radius: 0.8em;
}
.recruit__box {
  padding: 0 5%;
  border: none;
}
@media screen and (min-width: 600px) {
  .recruit__box {
    padding: 2em;
  }
  .recruit__box .button {
    display: flex;
    justify-content: center;
  }
}

:is(.information__box, .recruit__box) .text em {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 1.4em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .information__box .text em {
    font-size: 2em;
    /* background: -webkit-gradient(linear, left top, left bottom, color-stop(35%, transparent), color-stop(65%, #fdd000));
    background: linear-gradient(transparent 35%, #fdd000 65%); */
  }
  .sp {
    display: none;
  }
}

:is(.information__box, .recruit__box) .text + .text {
  margin-top: 1em;
}
.recruit__box .text + .button {
  margin-top: .7em;
}

/*------------------------- GREETING -----------------------*/
@media screen and (min-width: 768px) {
  .greeting__parent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.greeting__child.image {
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .greeting__child.image {
    width: 260px;
  }
}

.greeting__child.lead {
  margin-top: 2em;
}

.greeting__child.lead .headline {
  font-size: 1.5em;
}

.greeting__child.lead .text {
  margin-top: 0; /*0610 2em*/
  line-height: 1.7;
  text-align: justify;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .greeting__child.lead {
    width: 70%;
    margin-top: 0;
    margin-left: 2em;
  }
}

/*------------------------- FEATURE ------------------------*/
.feature__text {
  width: 100%;
  display: flex;
}
.feature__text__inner {
  max-width: 390px;
  padding: 5%;
  line-height: 1.7;
}
.feature__text__inner p {
  margin-top: 1em;
}
.feature__image {
  width: 100%;
  height: 100%;
  min-height: 440px;
  padding-top: 30%;
  background-image: url('https://placehold.jp/3d4070/ffffff/1260x860.png?text=sample');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .feature__parent {
    display: flex;
  }
  .feature__parent:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
  .feature__parent:nth-of-type(even) .feature__text {
    justify-content: flex-end;
  }
  .feature__text {
    width: 52%;
    display: flex;
  }
  .feature__text__inner {
    max-width: 390px;
  }
  .feature__parent:nth-of-type(odd) .feature__text__inner {
    padding: 2em 2.5em 0;
  }
  .feature__parent:nth-of-type(even) .feature__text__inner {
    padding: 2em 2.5em 0;
  }
  .feature__image {
    width: 48%;
    height: 100%;
    padding-top: 30%;
    background-image: url('https://placehold.jp/3d4070/ffffff/1260x860.png?text=sample');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

/*------------------------- GUIDE --------------------------*/
@media screen and (min-width: 768px) {
  .guide__parent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.guide__child {
  padding: 1em 0;
  line-height: 1.6;
}

.guide__child .headline {
  text-align: center;
  margin: 1.5em;
}

@media screen and (min-width: 768px) {
  .guide__child {
    width: 50%;
  }
}

.guide__child:nth-of-type(1) {
  background-color: #6b280033;
}

.guide__child:nth-of-type(2) {
  background-color: #fff2dc;
}

.guide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 0;
  margin-top: 1.5em;
}

.guide__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40%;
  height: 120px;
  margin-bottom: 1.5em;
  padding: 3em 0;
  background-color: var(--main-color);
  animation: gradient 15s ease infinite;
  list-style-type: none;
  text-align: center;
  color: var(--base-color);
}


.guide__list__item2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40%;
  height: 80px;
  margin-bottom: 1em;
  /* padding: 1em 0; */
  background-color: var(--gray-color-logo);
  list-style-type: none;
  text-align: center;
  color: var(--base-color);
}
@media screen and (min-width: 600px) {
  .guide__list__item2 { height: 50px; }
}
/*------------------------- SCHEDULE -----------------------*/
.schedule__table {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border: 1px solid var(--gray-color-logo);
}

.schedule__table th {
  padding: 0.3em 1em;
  color: var(--base-color);
  background-color: var(--gray-color-logo);
}

.schedule__table td {
  padding: 1em;
  text-align: center;
}

.schedule__table.-sm {
  display: table;
}

.schedule__table.-sm tr:not(:nth-of-type(1)) {
  border-bottom: 1px solid var(--gray-color-logo);
}

.schedule__table.-sm td {
  width: 10%;
}

.schedule__table.-md {
  display: none;
}

.schedule__time__child {
  line-height: 1.5;
}

.schedule__time__child .title {
  font-style: normal;
  font-weight: 700;
}

.schedule__time__child + .schedule__time__child {
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .schedule__table.-sm {
    display: none;
  }
  .schedule__table.-md {
    display: table;
  }
  .schedule__table.-md tr:nth-of-type(2) {
    border-bottom: 1px solid var(--gray-color-logo);
  }
  .schedule__time__parent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .schedule__time__child {
    width: calc(100% / 2 - 30px);
  }
  .schedule__time__child + .schedule__time__child {
    margin-top: 0;
  }
}

@media screen and (min-width: 992px) {
  .schedule__table th {
    padding: 1em;
  }
  .schedule__table.-md td {
    width: 10%;
  }
  .schedule__table.-md td:nth-of-type(1) {
    width: 15%;
  }
  .schedule__table td {
    padding: 1.5em 1em;
  }
}

/*------------------------- EQUIPMENT ------------------------*/
.equipment {
  background-image: url(/images/toin_back.png);
  background-repeat: repeat-y;
}

.equipment__parent {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 50px;
}

@media screen and (min-width: 768px) {
  .equipment__parent {
    grid-template-columns: 1fr 1fr;
  }
}

.equipment__title {
  margin: 1.5em 0 1em;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*------------------------- ACCESS ------------------------*/
.access.section {
  padding: 4em 0 0;
}

.access .inner .wrapper {
  margin-top: 20px;
}

.access__address {
  font-style: normal;
  line-height: 1.5;
  text-align: center;
}

.access__child + .access__child {
  margin-top: 1em;
}
@media screen and (min-width: 600px) {
  .access .inner {
    display: flex;
  }
  .access .inner .wrapper {
    width: calc(100% / 2 - 20px);
  }
}
@media screen and (min-width: 768px) {
  .access__child:nth-of-type(1) {
    text-align: center;
  }
}

/*------------------------- viewslide -----------------------*/
.viewslide .item {
  margin: 0 1.5em;
}

/*------------------------------------------------------------

footer

------------------------------------------------------------*/
.footer {
  padding: 3em 0 0;
}

@media screen and (min-width: 992px) {
  .footer__parent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer__child .image {
  width: 185px;
  height: 29px;
}
@media screen and (min-width: 600px) {
  .footer__child .image {
    width: 363px;
    height: 56px;
  }
}

.footer__address {
  margin-top: 1.5em;
  font-style: normal;
  line-height: 1.5;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style-type: none;
  margin-top: 1em;
  padding: 0;
}

.footer__nav__item a {
  color: var(--gray-color-primary);
  font-size: 0.8em;
  font-weight: 700;
  text-decoration: none;
}

.footer__nav__item + .footer__nav__item {
  margin-left: 0;
}

.footer__banner-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em 2em;
  color: #FFF;
  font-size: 1.2rem;
  background-color: var(--green-color);
  border: 2px solid var(--green-color);
  text-decoration: none;
  transition: 0.3s ease-in;
}
.footer__banner__text .small {
  font-size: 0.9rem;
}
.footer__banner-link .new-tab-icon {
  font-size: 1.2rem;
  margin-left: 1em;
}
@media (hover: hover) {
  .footer__banner-link:hover {
    color: var(--green-color);
    background-color: #FFF;
  }
}

/* gmap
	****************************************************/

		.gmap{
			width:100%;
			position: relative;
			padding-bottom:515px;
			height: 0;
			overflow: hidden;
      margin-top: 20px;
		}
		.gmap iframe, .gmap object, .gmap embed{
			position: absolute;
			top:0;
			left:0;
			width:100%;
			height:515px;
		}
    @media screen and (min-width: 600px) {
      .gmap {
        width: calc(100% / 2 - 20px);
      }
    }


@media screen and (min-width: 992px) {
  .footer__nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 0;
  }
  .footer__nav__item + .footer__nav__item {
    margin-left: 2em;
  }
}

.footer__copyright {
  margin-top: 3em;
  padding: 1em;
  color: var(--base-color);
  background-color: var(--main-color);
  text-align: center;
}