@charset "UTF-8";
/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/
/* reset margin
-----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  zoom: 1;
  /* hasLayout in IE */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
}

/* reset font style
-----------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-family: sans-serif;
}

html * {
  box-sizing: inherit;
}
html {
    font-size: 62.5%; /* 16pxのデフォルトフォントサイズに対して62.5%を指定すると、10pxが基準のフォントサイズになる */
}
body {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  color: #515151;
  font-weight: 500;
  line-height: 1.4;
  background: transparent;
  letter-spacing: 0px;
  width: 100%;
  word-wrap: break-word;	
}
.main {
    margin-top: -25px;
}

@media (max-width: 1199px) {
  body {
    font-size: 15px;
  }
}

@media (max-width: 750px) {
  body {
    font-size: 14px;
  }
}
ul, ol {
  list-style-type: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

em, strong {
  font-style: normal;
  font-weight: inherit;
}

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#bbddd4;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:11px;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}


@media (max-width: 750px) {
#page-top {
	position: fixed;
	right: 10px;
	bottom:80px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
#page-top a{
	width: 40px;
	height: 40px;
	font-size:9px;
}	
}


a{
  cursor: pointer; /* 手のアイコンに変える */
}


/* reset table
-----------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table, th, td {
  table-layout: fixed;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea,
select, option {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type=reset],
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  appearance: none;
  appearance: none;
  padding: 0;
}

select::-ms-expand {
  display: none;
}

button::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button:focus,
input[type=reset]:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

textarea {
  resize: none;
  overflow: auto;
}

*:focus {
  outline: none;
}

/* reset img
-----------------------------------------------------------------*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

@media screen and (min-width: 961px) {
  .pc-none {
    display: none !important;
  }
}

@media (max-width: 960px) and (min-width: 751px) {
  .tb-none {
    display: none !important;
  }
}

@media screen and (max-width: 750px) {
  .sp-none {
    display: none !important;
  }
}

@media (max-width: 750px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 750px) {
  .sp {
    display: none !important;
  }
}

.tb-over {
  display: none;
}
@media screen and (min-width: 959px) {
  .tb-over {
    display: block;
  }
}

.tb-under {
  display: none;
}

@media screen and (max-width: 959px) {
  .tb-under {
    display: block;
  }
}

/******************************************************************
 * 共通パーツ
******************************************************************/
html.fixed, body.fixed {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.c-wrap {
  overflow: hidden;
}

.c-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.c-inner1000 {
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .c-inner {
    width: 90%;
  }
}
@media (max-width: 1199px) {
  .c-inner1000 {
    width: 90%;
  }
}
@media screen and (max-width: 750px) {
  .c-inner {
    width: 100%;
    padding: 0 15px;
  }
  .c-inner1000 {
    width: 100%;
    padding: 0 15px;
  }	
}

/* 下層MV
-----------------------------------------------------------------*/
.sub-mv {
  background: url("../img/common/mv_sub_bg.png") top right no-repeat;
  background-size: 80%;
  padding: 216px 0 50px;
}
@media (max-width: 1499px) {
  .sub-mv {
    padding: 170px 0 50px;
  }
}
@media screen and (max-width: 960px) {
  .sub-mv {
    padding: 70px 0 0;
  }
}
.sub-mv .sub-mv-inner {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1654px;
  height: 362px;
  background: url("../img/doctor/mv_doctor.jpg") center no-repeat;
  background-size: cover;
  border-radius: 80px 0 0 80px;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 1799px) {
  .sub-mv .sub-mv-inner {
    width: 90%;
    height: 300px;
  }
}
@media (max-width: 999px) {
  .sub-mv .sub-mv-inner {
    height: 200px;
  }
}
@media screen and (max-width: 960px) {
  .sub-mv .sub-mv-inner {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .sub-mv .sub-mv-inner {
    border-radius: 0;
  }
}
.sub-mv .sub-mv-inner .sub-mv-ttl {
  padding-left: 60px;
}
@media screen and (max-width: 750px) {
  .sub-mv .sub-mv-inner .sub-mv-ttl {
    padding-left: 30px;
  }
}
.sub-mv .sub-mv-inner .sub-mv-ttl .jp {
  font-size: 60px;
}
@media (max-width: 1399px) {
  .sub-mv .sub-mv-inner .sub-mv-ttl .jp {
    font-size: 40px;
  }
}
@media screen and (max-width: 750px) {
  .sub-mv .sub-mv-inner .sub-mv-ttl .jp {
    font-size: 30px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 255, 255, 0.6);
  }
}
.sub-mv .sub-mv-inner .sub-mv-ttl .en {
  font-size: 36px;
  color: #ff7500;
}
@media (max-width: 1399px) {
  .sub-mv .sub-mv-inner .sub-mv-ttl .en {
    font-size: 24px;
  }
}
@media screen and (max-width: 750px) {
  .sub-mv .sub-mv-inner .sub-mv-ttl .en {
    font-size: 18px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 255, 255, 0.6);
  }
}

/* タイトル系
-----------------------------------------------------------------*/
.c-ttl {
  text-align: center;
  font-weight: bold;
}
.c-ttl .en {
  font-size: 18px;
  color: #ff7500;
}
@media screen and (max-width: 960px) {
  .c-ttl .en {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .c-ttl .en {
    font-size: 14px;
  }
}
.c-ttl .jp {
  font-size: 48px;
  line-height: 1.4;
}
@media (max-width: 1399px) {
  .c-ttl .jp {
    font-size: 36px;
  }
}
@media screen and (max-width: 960px) {
  .c-ttl .jp {
    font-size: 32px;
  }
}
@media screen and (max-width: 750px) {
  .c-ttl .jp {
    font-size: 26px;
  }
}

.c-ttl-sub {
  background: url("../img/common/c_ttl_sub.jpg") no-repeat;
  background-size: 100% 100%;
  max-width: 1600px;
  font-size: 36px;
  text-align: center;
  letter-spacing: 3px;
  padding: 40px 0;
  margin: 0 auto;
}
@media (max-width: 1599px) {
  .c-ttl-sub {
    width: 1400px;
  }
}
@media (max-width: 1399px) {
  .c-ttl-sub {
    width: 90%;
    font-size: 26px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 750px) {
  .c-ttl-sub {
    width: calc(100% - 30px);
    font-size: 18px;
    letter-spacing: 1px;
    padding: 14px 0;
    margin: 0 auto;
  }
}

/******************************************************************
 * ヘッダー
******************************************************************/
/* PC
-----------------------------------------------------------------*/
.header-nav-pc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #8cbaae;
  z-index: 999;
  padding-left: 70px;
  display: none;
}
@media (max-width: 1699px) {
  .header-nav-pc {
    padding-left: 40px;
  }
}
@media (max-width: 1399px) {
  .header-nav-pc {
    padding-left: 20px;
  }
}
@media screen and (max-width: 960px) {
  .header-nav-pc {
    display: none;
  }
}
.header-nav-pc .c-globalmenu {
  width: calc(100% - 360px - 300px);
  background: transparent;
  color: #2f3640;
  padding: 0;
}
@media (max-width: 1699px) {
  .header-nav-pc .c-globalmenu {
    width: calc(100% - 300px - 100px);
  }
}
@media (max-width: 1399px) {
  .header-nav-pc .c-globalmenu {
    width: calc(100% - 200px - 50px);
  }
}
.c-globalmenu {
    position: relative;
    z-index: 10;
}
.header-nav-pc .c-globalmenu-list {
  width: unset;
}
.header-nav-pc .c-globalmenu-list li a {
  font-size: 18px;
}
.header-nav-pc .header-btn {
  display: flex;
  width: 360px;
}
@media (max-width: 1699px) {
  .header-nav-pc .header-btn {
    width: 300px;
  }
}
@media (max-width: 1399px) {
  .header-nav-pc .header-btn {
    width: 200px;
  }
}
.header-nav-pc .header-btn li {
  width: 180px;
  height: 80px;
  transition: all 0.3s ease;
}
@media (max-width: 1699px) {
  .header-nav-pc .header-btn li {
    width: 150px;
  }
}
@media (max-width: 1399px) {
  .header-nav-pc .header-btn li {
    width: 100px;
  }
}
.header-nav-pc .header-btn li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 1699px) {
  .header-nav-pc .header-btn li a {
    font-size: 16px;
  }
}
.header-nav-pc .header-btn li a img {
  width: 22px;
}
@media (max-width: 1699px) {
  .header-nav-pc .header-btn li a img {
    width: 16px;
  }
}
@media (max-width: 1399px) {
  .header-nav-pc .header-btn li a img {
    width: 12px;
  }
}
.header-nav-pc .header-btn li.header-btn-tel a {
  background: #efeee1;
}
.header-nav-pc .header-btn li.header-btn-web a {
  background: #76c2b4;
  color: #FFF;
}
.header-nav-pc .header-btn li:hover {
  opacity: 0.7;
}
.header-nav-pc.fixed {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .header-nav-pc.fixed {
    display: none;
  }
}

h1.top-mv-head__logo pc {
    display: block;
}
h1.top-mv-head__logo sp {
    display: none;
}

@media screen and (max-width: 750px){
h1.top-mv-head__logo pc {
    display: none;
}
h1.top-mv-head__logo sp {
    display: block;
}
}

/* SP
-----------------------------------------------------------------*/
.header-nav-sp {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  background: transparent;
  padding-left: 16px;
  z-index: 9999;
  /*丸の拡大*/
}
@media screen and (min-width: 961px) {
  .header-nav-sp {
    display: none;
  }
}
.header-nav-sp .header-logo {
  width: 230px;
}
.header-nav-sp .navToggle {
  position: absolute;
  top: 20px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: #FFF;
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
  z-index: 9999;
}
.header-nav-sp .navToggle span {
  display: block;
  position: absolute;
  width: 18px;
  cursor: pointer;
  border-bottom: solid 2px #6ccad3;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.header-nav-sp .navToggle span:nth-child(1) {
  top: 10px;
}
.header-nav-sp .navToggle span:nth-child(2) {
  top: 16px;
}
.header-nav-sp .navToggle span:nth-child(3) {
  top: 23px;
}
.header-nav-sp .navToggle.active {
  background: rgba(255, 255, 255, 0.9);
}
.header-nav-sp .navToggle.active span {
  width: 18px;
  border-bottom: solid 2px #6ccad3;
}
.header-nav-sp .navToggle.active span:nth-child(1) {
  top: 16px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-nav-sp .navToggle.active span:nth-child(2) {
  opacity: 0;
}
.header-nav-sp .navToggle.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-nav-sp .globalMenu {
  position: fixed;
  top: 70px;
  right: 0;
  color: #333;
  opacity: 0;
  width: 100%;
  height: 100%;
  line-height: 1.45;
  padding: 6vw;
  transition: all 0.6s;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  z-index: 1001;
}
.header-nav-sp .globalMenu.active {
  opacity: 1;
  pointer-events: all;
    height: 90%;
    overflow-y: scroll;	
}
.header-nav-sp .globalMenu.active .menu-wrap .menu-list {
  animation-name: fadeleft;
  animation-duration: 1s;
}
@keyframes fadeleft {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.header-nav-sp .globalMenu .menu-wrap .menu-list {
  border-top: 1px dotted #727171;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li {
  font-size: 16px;
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li a {
  position: relative;
  display: block;
  font-family: "Shippori Mincho", serif;
  border-bottom: 1px dotted #727171;
  padding: 12px 0;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li a::after {
  position: absolute;
  display: flex;
  align-items: center;
  content: "▶";
  right: 1vw;
  top: 0;
  bottom: 0;
  font-size: 10px;
  color: #6ccad3;
  margin: auto;
}
ul.menu-child li a:after {
    content: "▼";
    display:none!important;
}
ul.menu-child.has-child a:after {
    content: "▼";
    color: #fff !important;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li .menu-child {
  display: none;
  background: #77c3b1;
  padding: 10px;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li .menu-child li a {
  color: #FFF;
  border-bottom: 0;
	padding: 5px 0 5px 10vw 0px;
}
/*.header-nav-sp .globalMenu .menu-wrap .menu-list li .menu-child li a::after {
  content: "▶";
  align-items: center;
  left: 10px;
  right: unset;
  top: 0;
  bottom: 0;
  color: #FFF;
  margin: auto;
}*/
.header-nav-sp .globalMenu .menu-wrap .menu-list li.accord a::after {
  content: "▼";
  align-items: center;
  right: 1vw;
  top: 0;
  bottom: 0;
  color: #6ccad3;
  margin: auto;
  transition: all 0.3s ease;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li.accord a.active {
  border-bottom: none;
}
.header-nav-sp .globalMenu .menu-wrap .menu-list li.accord a.active::after {
  position: absolute;
  right: 1vw;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(180deg);
}
.header-nav-sp .circle-bg {
  position: fixed;
  z-index: 3;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transform: scale(0);
  right: -50px;
  top: -50px;
  transition: all 0.8s;
}
.header-nav-sp .circle-bg.circleactive {
  transform: scale(50);
}

ul ul ul.menu-child-child {
    position: absolute;
    top: 75px !important;
    left: 450px !important;
    background: #a4beb8 !important;
    opacity: 0;
    width: 450px;
    padding: 15px 0;
    transition: all 0.3s ease;
}
li.has-child a::after {
    font-size: 10px;
    content: "▶︎";
    position: absolute;
    right: 30px;
}
li.has-child  li a::after {
    display:none;
}
/*.menu-list li.menu-child .menu-child:hover .menu-child-child {
  visibility: visible;
  opacity: 1;
}*/
ul.menu-child ul {
    background: #9ccdc1;
    padding: 10px 20px;
}
ul.menu-child ul li a {
    padding: 0px 20px;
	padding: 5px 0;
    font-size: 14px;
}




/******************************************************************
 * フッター
******************************************************************/
/* footer
-----------------------------------------------------------------*/
.footer {
  position: relative;
  background: #FFF;
  border-top: 2px solid #27c5b4;
  padding-top: 5px;
}
@media screen and (max-width: 750px) {
  .footer {
    padding-top: 3px;
  }
}
.footer-wrap {
  border-top: 2px solid #27c5b4;
}
.footer-inner {
  max-width: 1190px;
  width: 100%;
}
@media (max-width: 1199px) {
  .footer-inner {
    width: 94%;
    margin: 0 auto;
  }
}
.footer-head {
  padding: 82px 0 113px;
}
@media screen and (max-width: 750px) {
  .footer-head {
    padding: 40px 0 60px;
  }
}
.footer-head-logo {
  width: 369px;
  margin: 0 auto 57px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .footer-head-logo {
    width: 80%;
    margin: 0 auto 30px;
  }
}

.footer-head-wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .footer-head-wrap {
    display: block;
  }
}
.footer-head-wrap__address {
  flex: 0 1 500px;
}
@media (max-width: 1199px) {
  .footer-head-wrap__address {
    flex: unset;
    width: 42%;
  }
}
@media screen and (max-width: 750px) {
  .footer-head-wrap__address {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .footer-head-wrap__address .address-info {
    width: 90%;
    margin: 0 auto;
  }
}
.footer-head-wrap__address .address-info-box {
  display: flex;
  margin-bottom: 34px;
}
.footer-head-wrap__address .address-info-box__icon {
  display: flex;
  align-items: center;
  border-right: 1px solid #6ccad3;
  padding-right: 38px;
  margin-right: 38px;
}
@media (max-width: 1199px) {
  .footer-head-wrap__address .address-info-box__icon {
    padding-right: 25px;
    margin-right: 25px;
    width: 15%;
  }
}
.footer-head-wrap__address .address-info-box__icon img {
  width: 20px;
}
@media screen and (max-width: 750px) {
  .footer-head-wrap__address .address-info-box__txt {
    font-size: 14px;
    width: 85%;	  
  }
.footer-head-wrap__address .address-info-box__icon img {
  width: 15px;
}	
}
.footer-head-wrap__address .address-bnr {
  display: flex;
}
@media screen and (max-width: 750px) {
  .footer-head-wrap__address .address-bnr {
    width: 90%;
    margin: 0 auto 40px;
  }
}
.footer-head-wrap__address .address-bnr li {
  height: 98px;
}
@media screen and (max-width: 750px) {
  .footer-head-wrap__address .address-bnr li {
    height: 70px;
  }
}
.footer-head-wrap__address .address-bnr-tel {
  flex: 0 1 313px;
}
@media screen and (max-width: 750px) {
  .footer-head-wrap__address .address-bnr-tel {
    flex: unset;
    width: 60%;
  }
}
.footer-head-wrap__address .address-bnr-tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #efeee1;
  height: 100%;
  font: 30px "Shippori Mincho", serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .footer-head-wrap__address .address-bnr-tel a {
    font-size: 19px;
  }
}
.footer-head-wrap__address .address-bnr-tel a:hover {
  opacity: 0.6;
}
.footer-head-wrap__address .address-bnr-tel a img {
  width: 22px;
  height: 30px;
  margin-right: 10px;
}
@media screen and (max-width: 750px) {
  .footer-head-wrap__address .address-bnr-tel a img {
    width: 14px;
    height: 21px;
  }
}
.footer-head-wrap__address .address-bnr-reserve {
  flex: 0 1 187px;
}
@media screen and (max-width: 750px) {
  .footer-head-wrap__address .address-bnr-reserve {
    flex: unset;
    width: 40%;
  }
}
.footer-head-wrap__address .address-bnr-reserve a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: #76c2b4;
  font: 24px "Shippori Mincho", serif;
  color: #FFF;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .footer-head-wrap__address .address-bnr-reserve a {
    font-size: 16px;
  }
}
.footer-head-wrap__address .address-bnr-reserve a:hover {
  opacity: 0.6;
}
.footer-head-wrap__address .address-bnr-reserve a img {
  width: 30px;
  height: 30px;
  margin-right: 6px;
}
@media screen and (max-width: 750px) {
  .footer-head-wrap__address .address-bnr-reserve a img {
    width: 22px;
    height: 22px;
  }
}
.footer-head-wrap__address .address-bnr-reserve a::after {
  position: absolute;
  top: 6px;
  right: 6px;
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  border-width: 0px 17px 17px 0px;
}
@media screen and (max-width: 750px) {
  .footer-head-wrap__address .address-bnr-reserve a::after {
    border-width: 0px 14px 14px 0;
  }
}
.footer-head-wrap__time {
  flex: 0 1 564px;
}
@media (max-width: 1199px) {
  .footer-head-wrap__time {
    flex: unset;
    width: 50%;
  }
}
@media screen and (max-width: 750px) {
  .footer-head-wrap__time {
    width: 100%;
  }
}
.footer-head-wrap__time .c-timetable {
  margin-bottom: 14px;
  border: solid 1px;	
}
.footer-head-wrap__time .time-absent {
  margin-bottom: 10px;
}
.footer iframe {
  width: 100%;
  height: 396px;
}
@media screen and (max-width: 750px) {
  .footer iframe {
    height: 200px;
  }
.footer-head-wrap__time .time-absent {
  font-size: 14px;
}	
}
.footer-menu {
  display: flex;
  justify-content: center;
  background: #9fd9cb;
  padding: 128px 0;
}
@media screen and (max-width: 750px) {
  .footer-menu {
    flex-wrap: wrap;
    padding: 60px 0;
    padding-left: 20px;
  }
}
.footer-menu li {
  font: 24px "Shippori Mincho", serif;
  color: #FFF;
  font-weight: 500;
  margin-right: 44px;
}
@media (max-width: 1199px) {
  .footer-menu li {
    font-size: 18px;
  }
}
@media screen and (max-width: 960px) {
  .footer-menu li {
    font-size: 15px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 750px) {
  .footer-menu li {
    font-size: 13px;
    margin-bottom: 6px;
  }
}
.footer-menu li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .footer-menu li:last-child {
    margin-right: 30px;
  }
}
.footer-menu li a {
  transition: all 0.3s ease;
}
.footer-menu li a:hover {
  opacity: 0.6;
}
.footer-copy {
  background: #77c3b1;
  font: 16px "Shippori Mincho", serif;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  padding: 21px 0;
}
@media screen and (max-width: 750px) {
  .footer-copy {
    font-size: 10px;
    padding: 10px 0 80px;
  }
}

/* floatbnr
-----------------------------------------------------------------*/
.floatbnr {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 999;
}
.floatbnr a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #7acc72, #4cbd6e);
  font: 30px "Shippori Mincho", serif;
  color: #FFF;
  letter-spacing: 0.1rem;
  transition: all 0.3s ease;
}
.floatbnr a img {
  width: 18px;
  height: 30px;
  margin-right: 14px;
}
.floatbnr a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 961px) {
  .floatbnr {
    display: none;
  }
}

/******************************************************************
 * parts
******************************************************************/
/* c-globalmenu
-----------------------------------------------------------------*/
@media screen and (max-width: 960px) {
  .c-globalmenu {
    display: none;
  }
}
.c-globalmenu-list {
  width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 auto;
}
@media (max-width: 1799px) {
  .c-globalmenu-list {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 1199px) {
  .c-globalmenu-list {
    width: 100%;
    justify-content: center;
  }
}
.c-globalmenu-list li {
  text-align: center;
}
@media (max-width: 1799px) {
  .c-globalmenu-list li {
    margin-right: 40px;
  }
}
@media (max-width: 1199px) {
  .c-globalmenu-list li {
    margin-right: 30px;
  }
}
.c-globalmenu-list li a {
  display: flex;
  flex-direction: column;
  font: 15px "Shippori Mincho", serif;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .c-globalmenu-list li a {
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .c-globalmenu-list li a {
    font-size: 13px;
  }
}
.c-globalmenu-list li a:hover {
  opacity: 0.6;
}
.c-globalmenu-list li a .list-icon img {
  width: 23px;
}
@media (max-width: 1799px) {
  .c-globalmenu-list li:last-child {
    margin-right: 0;
  }
}
.c-globalmenu-list li.globalmenu-drop {
  position: relative;
}
.c-globalmenu-list li.globalmenu-drop .globalmenu-drop-child {
  position: absolute;
  top: 80px;
  left: -140px;
  /*visibility: hidden;
  opacity: 0;*/
  width: 350px;
  background: #77c3b1;
  padding: 15px 0;
  transition: all 0.3s ease;
}
ul ul ul.globalmenu-drop-child-child {
    position: absolute;
    top: 75px !important;
    left: 350px !important;
    background: #a4beb8 !important;
    opacity: 0;
    width: 200px;
    padding: 15px 0;
    transition: all 0.3s ease;
}
ul ul ul li.globalmenu-drop-child {
    visibility: hidden;
}
.c-globalmenu-list li.globalmenu-drop .globalmenu-drop-child li {
  margin-right: 0;
}
.c-globalmenu-list li.globalmenu-drop .globalmenu-drop-child li a {
  display: block;
  position: relative;
  font: 15px "Shippori Mincho", serif;
  color: #FFF;
  text-align: left;
  padding: 10px 10px 10px 20px;
}
/*.c-globalmenu-list li.globalmenu-drop .globalmenu-drop-child li a::before {
  font-size: 10px;
  content: "▶︎";
  margin-right: 10px;
}*/

/*3階層目矢印
.c-globalmenu-list li.globalmenu-drop .globalmenu-drop-child-child li a::before {
  font-size: 10px;
  content: "▶︎";
  margin-right: 10px;
}*/

/*.globalmenu-drop-child,
.globalmenu-drop-child-child {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 10;
}

.globalmenu-drop.active > .globalmenu-drop-child,
.has-child.active > .globalmenu-drop-child-child {
  visibility: visible;
  opacity: 1;
}*/


li.has-child a::after {
    font-size: 10px;
    content: "▶︎";
    position: absolute;
    right: 30px;
}
li.has-child  li a::after {
    display:none;
}

/*.c-globalmenu-list li.globalmenu-drop:hover .globalmenu-drop-child {
  visibility: visible;
  opacity: 1;
}
.c-globalmenu-list li.globalmenu-drop .globalmenu-drop-child:hover .globalmenu-drop-child-child {
  visibility: visible;
  opacity: 1;
}*/
.c-globalmenu-list li:first-child a .list-icon img {
  width: 18px;
  padding-bottom: 5px;
}
.c-globalmenu-list li:nth-of-type(2) a .list-icon img {
  width: 24px;
  padding-bottom: 5px;	
}
.c-globalmenu-list li:nth-of-type(3) a .list-icon img, .c-globalmenu-list li:nth-of-type(4) a .list-icon img, .c-globalmenu-list li:nth-of-type(5) a .list-icon img, .c-globalmenu-list li:nth-of-type(7) a .list-icon img, .c-globalmenu-list li:nth-of-type(8) a .list-icon img {
	width: 20px;
  padding-bottom: 5px;	
}
.c-globalmenu-list li:nth-of-type(6) a .list-icon img{
	width: 20px;
  padding-bottom: 5px;	
}


/*クリック展開*/
.globalmenu-drop {
  position: relative;
}

.globalmenu-drop-child,
.globalmenu-drop-child-child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  z-index: 10;
}

.globalmenu-drop.active > .globalmenu-drop-child,
.has-child.active > .globalmenu-drop-child-child {
  visibility: visible;
  opacity: 1;
}




@media (max-width: 1500px) {
ul ul ul.globalmenu-drop-child-child {
	width: 150px;
}
}

@media (max-width: 1100px) {
.c-globalmenu-list li.globalmenu-drop .globalmenu-drop-child {
  width: 300px;
}
ul ul ul.globalmenu-drop-child-child {
    left: 300px !important;
}	
}




/* .c-top-ttl
-----------------------------------------------------------------*/
.c-top-ttl {
  position: relative;
  text-align: center;
  padding-bottom: 94px;
}
@media screen and (max-width: 750px) {
  .c-top-ttl {
    padding-bottom: 50px;
  }
}
.c-top-ttl__en {
  font: 150px "questa-grande", serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -4px;
  background: -webkit-linear-gradient(#77c3b1 50%, #bbddd4 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 960px) {
  .c-top-ttl__en {
    font-size: 100px;
  }
}
@media screen and (max-width: 750px) {
  .c-top-ttl__en {
    font-size: 60px;
    letter-spacing: 0;
  }
}
.c-top-ttl__jp {
  font: 24px "Shippori Mincho", serif;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .c-top-ttl__jp {
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .c-top-ttl__jp {
    font-size: 16px;
  }
}
.c-top-ttl::after {
  position: absolute;
  content: " ";
  bottom: 0;
  right: 0;
  left: 0;
  width: 1px;
  height: 70px;
  background: #77c3b1;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .c-top-ttl::after {
    height: 35px;
  }
}

/* .c-btn
-----------------------------------------------------------------*/
.c-btn {
  width: 243px;
  height: 76px;
}
@media screen and (max-width: 750px) {
  .c-btn {
    width: 170px;
    height: 40px;
  }
}
.c-btn a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #FFF;
  font-weight: 500;
  border-radius: 76px;
  padding-left: 50px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .c-btn a {
    padding-left: 30px;
	font-size: 12px;  
  }
}
.c-btn a::after {
  position: absolute;
  content: "▶︎";
  top: 0;
  bottom: 0;
  right: 36px;
  display: flex;
  align-items: center;
  margin: auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .c-btn a::after {
    right: 20px;
    font-size: 12px;
  }
}
.c-btn.line-w a {
  border: 1px solid #fff;
}
.c-btn.line-w a:hover {
  background: transparent;
  color: #FFF;
}
.c-btn.line-g a {
  border: 1px solid #77c3b1;
}
.c-btn.line-g a::after {
  color: #77c3b1;
}
.c-btn.line-g a:hover {
  background: #77c3b1;
  color: #FFF;
}
.c-btn.line-g a:hover::after {
  color: #FFF;
}

/* .c-timetable
-----------------------------------------------------------------*/
.c-timetable {
  max-width: 563px;
  width: 100%;
  color: #76c2b4;
  padding: 20px 30px;
}
@media (max-width: 1199px) {
  .c-timetable {
    font-size: 14px;
    padding: 20px;
  }
}
.c-timetable table {
  width: 100%;
}
.c-timetable table thead tr th, .c-timetable table thead tr td {
  font-weight: 500;
  border-bottom: 1px solid #77c3b1;
  padding-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .c-timetable table thead tr th, .c-timetable table thead tr td {
    padding-bottom: 10px;
  }
}
.c-timetable table thead tr th {
  width: 185px;
  text-align: center;
}
@media (max-width: 1199px) {
  .c-timetable table thead tr th {
    width: 130px;
  }
}
@media screen and (max-width: 960px) {
  .c-timetable table thead tr th {
    width: 110px;
  }
}
.c-timetable table tbody tr th, .c-timetable table tbody tr td {
  font-weight: 500;
  padding-bottom: 12px;
}
.c-timetable table tbody tr th {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-timetable table tbody tr th div {
  width: 120px;
  text-align: right;
  letter-spacing: 1px;
  font-size: 22px;
}
@media (max-width: 1199px) {
  .c-timetable table tbody tr th div {
    width: unset;
    font-size: 18px;	  
  }
}
.c-timetable table tbody tr td {
  font-size: 15px;
}
@media screen and (max-width: 750px) {
  .c-timetable table tbody tr td {
    font-size: 12px;
  }
}
.c-timetable table tbody tr:first-child th, .c-timetable table tbody tr:first-child td {
  padding-top: 12px;
}
@media screen and (max-width: 750px) {
  .c-timetable.sp {
    width: calc(100% - 40px);
    margin: 0 auto;
	border: solid 1px;  
  }
}

/* animation
-----------------------------------------------------------------*/
.scroll_up {
  transition: 1s ease-in-out;
  transform: translateY(60px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

.slide-in {
  overflow: hidden;
  display: inline-block;
  padding: 0;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

/* c-floatbnr
-----------------------------------------------------------------*/

.c-floatbnr{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 999;
}

.c-floatbnr li{
  width: 50%;
  height: 70px;
}

.c-floatbnr li a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.c-floatbnr li.tel a{
    background: #efeee1;
    font: 19px "Shippori Mincho", serif;
    font-weight: 500;
}

.c-floatbnr li.tel a img{
  width: 14px;
  height: 21px;
  margin-right: 10px;
  margin-top: 5px;	
}

.c-floatbnr li.web a{
  background: #76c2b4;
  font: 19px "Shippori Mincho", serif;
  color: #FFF;
  font-weight: 500;
}

.c-floatbnr li.web a img{
  width: 22px;
  height: 22px;
  margin: 2px 10px 0px 0px;
}

@media (min-width: 751px){
    .c-floatbnr{
      display: none;
    }
}

/******************************************************************
 * TOP
******************************************************************/
/* main
-----------------------------------------------------------------*/

/*#container {
  position: relative;
  z-index: 1;
  background: #fff;
  padding-top: 42px;
  padding-bottom: 130px;
  margin-top: 1000px;
}
@media (max-width: 1299px) {
  #container {
    margin-top: 900px;
  }
}
@media screen and (max-width: 960px) {
  #container {
    margin-top: 700px;
  }
}

@media screen and (max-width: 750px) {
  #container {
    padding-bottom: 50px;
  }
}*/


/* .top-mv
-----------------------------------------------------------------*/
.top-mv {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 1000px;
  background: #bcddd4;
}
@media (max-width: 1299px) {
  .top-mv {
    height: 800px;
  }
}
@media screen and (max-width: 960px) {
  .top-mv {
    height: 700px;
  }
}
@media screen and (max-width: 750px) {
  .top-mv {
    height: 100vh;
  }
}
@media screen and (max-width: 500px) {
  .top-mv {
    height: 600px;
  }
}
.top-mv-sidebar {
  position: relative;
  display: flex;
  justify-content: center;
  width: 60px;
  height: 100%;
  background: #FFF;
  padding-top: 50px;
}
@media screen and (max-width: 750px) {
  .top-mv-sidebar {
    width: 40px;
    font-size: 13px;
    padding-top: 10px;
  }
}
.top-mv-sidebar__cont {
    text-align: center;
}
@media screen and (max-width: 750px) {
.top-mv-sidebar__cont {
	position: absolute;
    text-align: center;
}
}
.top-mv-sidebar__cont .cont-item {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-weight: 400;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
.top-mv-sidebar__cont .cont-item {
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  left: -1px;
}	
}	
.top-mv-sidebar__cont .cont-item img {
  width: 22px;
  padding-left: 4px;
  margin-bottom: 14px;
}
@media screen and (max-width: 750px) {
  .top-mv-sidebar__cont .cont-item img {
    width: 16px;
    margin: 0 4px 10px 0px;
	padding-left: 0px;
    position: relative;
    left: 2px;	  
  }
}
.top-mv-sidebar__cont .cont-item:last-child {
  margin-bottom: 0;
}
.top-mv-sidebar__scroll {
  position: absolute;
  bottom: 0;
  /* 丸の描写 */
  /*下からの距離が変化して丸の全体が上から下に動く*/
  /*下からの距離が変化して丸の全体が上から下に動く*/
  /*上から下にかけて丸が透過→不透明→透過する*/
  /* 線の描写 */
}
.top-mv-sidebar__scroll span {
  position: absolute;
  font-weight: 400;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  top: -260px;
  left: -9px;
}
@media screen and (max-width: 960px) {
  .top-mv-sidebar__scroll span {
    top: -120px;
    left: -8px;
  }
}
.top-mv-sidebar__scroll::before {
  content: " ";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -2px;
  /*丸の形状*/
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #444;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media screen and (max-width: 960px) {
  .top-mv-sidebar__scroll::before {
    animation: circlemove-sp 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  }
}
@keyframes circlemove {
  0% {
    bottom: 175px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove-sp {
  0% {
    bottom: 60px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.top-mv-sidebar__scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 175px;
  background: #444;
}
@media screen and (max-width: 960px) {
  .top-mv-sidebar__scroll::after {
    height: 65px;
    bottom: -5px;
  }
}
.top-mv-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../img/top/mv.jpg") top center no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;	
}
.top-mv-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgb(255 255 255 / 25%); /* 黒の50%透過 */
    z-index: 1;
}

.top-mv-content > * {
    position: relative;
    z-index: 2; /* 中身を前面に出す */
}

@media screen and (max-width: 960px) {
  .top-mv-content {
    display: flex;
    align-items: center;
	background: url("../img/top/mv_sp.jpg") top center no-repeat;	  　
  }
}

@media screen and (max-width: 500px) {
  .top-mv-content {
    display: flex;
    align-items: center;
	background: url("../img/top/mv_sp500.jpg") bottom center no-repeat;	  　
  }
}

.top-mv-head {
  position: absolute;
  top: 0px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;	
  width: 100%;
  padding: 0 24px 0 40px;
  z-index: 1;
  background: lab(48 -12.92 0.18 / 0.4);	
}
@media (max-width: 1599px) {
  .top-mv-head {
    padding: 0 100px 0 0;
  }
}

@media (max-width: 1400px) {
  .top-mv-head {
    padding: 0 50px 0 0;
  }
}
@media (max-width: 1100px) {
  .top-mv-head {
    padding: 0 10px 0 0;
  }
}

.top-mv-head__logo {
  width: 570px;
  transition: all 0.3s ease;
  padding: 5px;	
}
@media (max-width: 1300px) {
  .top-mv-head__logo {
	 width: 470px;
  }
}

@media (max-width: 1199px) {
  .top-mv-head__logo {
	 width: 370px;
  }
}
@media screen and (max-width: 750px) {
  .top-mv-head {
       justify-content: center;
  }	
  .top-mv-head__logo {
     width: 100%;
    background: #a0d8cb;
	padding: 15px 60px 10px 20px;
    margin: 0 auto;
}
}
@media screen and (max-width: 450px) {
  .top-mv-head__logo {
     width: 100%;
}
}


.top-mv-head__logo:hover {
  opacity: 0.6;
}
.top-mv-head__tel {
  width: 294px;
  height: 80px;
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .top-mv-head__tel {
    width: 200px;
    height: 60px;
  }
}
@media screen and (max-width: 750px) {
  .top-mv-head__tel {
    display: none;
  }
}
.top-mv-head__tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font: 36px "Shippori Mincho", serif;
  font-weight: 500;
  color: #FFF;
  border: 1px solid #FFF;
}
@media (max-width: 1199px) {
  .top-mv-head__tel a {
    font-size: 20px;
  }
}
.top-mv-head__tel a img {
  width: 22px;
  margin-right: 14px;
}
@media (max-width: 1199px) {
  .top-mv-head__tel a img {
    width: 15px;
  }
}
.top-mv-head__tel:hover {
  opacity: 0.6;
}
.top-mv-inner {
  max-width: 1700px;
  width: 88%;
  /*display: flex;
  justify-content: space-between;
  padding: 44px 0;*/
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;	
}
@media (max-width: 1549px) {
  .top-mv-inner {
    width: 100%;
    padding: 10% 0 0;
	margin-left:60px;
  }
}
@media (max-width: 1100px) {
  .top-mv-inner {
	margin-left:40px;
  }
}
@media screen and (max-width: 750px) {
  .top-mv-inner {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 414px) {
  .top-mv-inner {
    flex-direction: column-reverse;
    padding: 0% 0 0;
	margin-left:20px;  
  }
}
.top-mv-inner__cont {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 1799px) {
  .top-mv-inner__cont {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .top-mv-inner__cont {
    width: 100%;
  }
}
.top-mv-inner__cont-ttl {
  font-family:"Shippori Mincho", serif;	 
  font-size: max(2.2vw, 1.2rem);
  color: #28554d;
  text-shadow: 0 0 20px #fff;	
  font-weight: 500;
  line-height: 2.2;
  letter-spacing:1px;
  /*text-align: center;	*/
}
.top-mv-inner__cont-ttl span {
  font-family:"Shippori Mincho", serif;	 
  font-size: max(2.5vw, 1.5rem);
  color: #28554d;
  text-shadow: 0 0 16px #fff;	
}
@media (max-width: 1799px) {
  .top-mv-inner__cont-ttl {
    /*font-size: 40px;*/
  }
}
@media (max-width: 1199px) {
  .top-mv-inner__cont-ttl {
    font-size: 30px;
	letter-spacing:0px;  
  }
  .top-mv-inner__cont-ttl span {
    font-size: 36px;
	letter-spacing:0px;  
  }	
}
@media screen and (max-width: 960px) {
  .top-mv-inner__cont-ttl {
    font-size: 22px;
	margin-bottom: 0px;  
  }
.top-mv-inner__cont-ttl span {
  font-size: 30px;
}	
}
@media screen and (max-width: 750px) {
  .top-mv-inner__cont-ttl {
    font-size: 18px;
	line-height: 1.8;  
  }
.top-mv-inner__cont-ttl span {
  font-size: 21px;
}		
}

@media screen and (max-width: 500px) {
  .top-mv-inner__cont-ttl {
    font-size: 18px;
	line-height: 2.2;  
  }
.top-mv-inner__cont-ttl span {
  font-size: 22px;
}		
}

.top-mv-inner__cont .c-timetable {
	background: #fff;
 
}
@media screen and (max-width: 960px) {
  .top-mv-inner__cont .c-timetable {
    padding: 10px;
  }
}
.top-mv-inner__img {
  position: relative;
  max-width: 710px;
  width: 100%;
  height: 100%;
}
@media (max-width: 1799px) {
  .top-mv-inner__img {
    max-width: unset;
    width: 50%;
  }
}
@media screen and (max-width: 960px) {
  .top-mv-inner__img {
    width: 45%;
  }
}
@media screen and (max-width: 750px) {
  .top-mv-inner__img {
    width: 80%;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 414px) {
  .top-mv-inner__img {
    width: 90%;
  }
}
.top-mv-inner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 350px 350px 0 0;
}
/*.top-mv-inner__img::after {
  position: absolute;
  bottom: -5%;
  right: -10%;
  content: " ";
  width: 218px;
  height: 218px;
  background: #6ccad3;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .top-mv-inner__img::after {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 750px) {
  .top-mv-inner__img::after {
    width: 100px;
    height: 100px;
  }
}*/

/* .top-news
-----------------------------------------------------------------*/
.top-news {
  padding: 0px 0 0;
}
.top-news-bnr {
  width: 920px;
  margin: 50px auto 20px;
}
@media screen and (max-width: 960px) {
  .top-news-bnr {
    width: 80%;
  }
}
@media screen and (max-width: 750px) {
  .top-news-bnr {
    width: 90%;
	margin: 20px auto 20px;  
  }
}
.top-news-wrap {
  background: #efeee1;
  padding: 70px 0 100px;
}
@media screen and (max-width: 750px) {
  .top-news-wrap {
    padding: 50px 20px;
  }
}
.top-news-inner {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1379px) {
  .top-news-inner {
    width: 90%;
  }
}
@media screen and (max-width: 750px) {
  .top-news-inner {
    width: 100%;
  }
}
.top-news-inner__ttl {
  display: flex;
  align-items: center;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .top-news-inner__ttl {
    margin-bottom: 20px;
  }
}
.top-news-inner__ttl .ttl-jp {
  font-size: 36px;
  color: #6ccad3;
  font-weight: 500;
  margin-right: 40px;
}
@media screen and (max-width: 750px) {
  .top-news-inner__ttl .ttl-jp {
    font-size: 24px;
    margin-right: 20px;	  
  }
}
.top-news-inner__ttl .ttl-en {
  font-size: 30px;
  color: #989274;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .top-news-inner__ttl .ttl-en {
    font-size: 16px;
  }
}
.top-news-article-inner::-webkit-scrollbar {
  width: 9px;
  height: 5px;
}
.top-news-article-inner::-webkit-scrollbar-track {
  background: #d1d1d1;
}
.top-news-article-inner::-webkit-scrollbar-thumb {
  background: #6ccad3;
}

.top-news-article-inner{
  overflow-y: scroll;
  height: 280px;
}
@media screen and (max-width: 750px) {
  .top-news-article-inner{
    height: 280px;
  }
}
.top-news-article {
  display: flex;
  align-items: flex-start;
  flex-direction: column;	
  font: 24px "Shippori Mincho", serif;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .top-news-article {
    display: block;
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.top-news-article__date {
  margin-right: 40px;
  font-size: 17px;
  color: #9d997b;	
}
@media screen and (max-width: 750px) {
  .top-news-article__date {
    margin-right: 0;
  }
}
.top-news-article:last-child {
  margin-bottom: 0;
}

/* .top-concept
-----------------------------------------------------------------*/
.top-concept {
  padding: 0px 0 0;
}
@media screen and (max-width: 960px) {
  .top-concept {
    padding: 0px 0 0;
  }
}
.top-concept-ttl {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.top-concept-ttl__inner {
  position: relative;
  right: 10%;
  background: #FFF;
  padding: 0 40px;
}
@media screen and (max-width: 960px) {
  .top-concept-ttl__inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 750px) {
  .top-concept-ttl__inner {
    padding: 0;
  }
}
.top-concept-ttl .slide-in {
  position: relative;
  font: 100px "questa-grande", serif;
  color: #caf8fc;
  bottom: -35px;
  font-weight: 500;
  line-height: 1;
  z-index: 0;
}
@media screen and (max-width: 1200px) {
.top-concept-ttl .slide-in {
  position: relative;
  font: 80px "questa-grande", serif;
  color: #caf8fc;
  bottom: -35px;
  font-weight: 500;
  line-height: 1;
  z-index: 0;
}
}

@media screen and (max-width: 960px) {
  .top-concept-ttl .slide-in {
    font-size: 70px;
    padding: 0 24px;
	bottom: -25px;  
  }
}
@media screen and (max-width: 750px) {
  .top-concept-ttl .slide-in {
    font-size: 40px;
    padding: 0px 0px 0px 45px;
	bottom: -15px;  
  }
}
.top-concept-ttl::after {
  position: absolute;
  top: 0;
  bottom: -35px;
  content: " ";
  width: 100%;
  height: 5px;
  background: #caf8fc;
  margin: auto;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .top-concept-ttl::after {
    height: 2px;
    bottom: -15px;  
  }
}
.top-concept-wrap {
  position: relative;
  /*background: #caf8fc;*/
}
.top-concept-wrap__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .top-concept-wrap__img {
    top: unset;
    bottom: 0;
    width: 90%;
    height: 300px;
    z-index: 1;
  }
}
@media screen and (max-width: 750px) {
  .top-concept-wrap__img {
    height: 150px;
  }
}
.top-concept-wrap__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 516px 0 0;
}
.top-concept-wrap__inner {
  max-width: 1600px;
  margin: 0 auto;
}
@media (max-width: 1599px) {
  .top-concept-wrap__inner {
    width: 90%;
  }
}
@media screen and (max-width: 960px) {
  .top-concept-wrap__inner {
    width: 100%;
  }
}
.top-concept-wrap__cont {
  position: relative;
  width: calc(50% - 85px);
  padding: 90px 0 96px;
  margin: 0 0 0 auto;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .top-concept-wrap__cont {
    width: 100%;
    padding: 40px 20px 340px;
  }
}
@media screen and (max-width: 750px) {
  .top-concept-wrap__cont {
    padding: 40px 20px 200px;
  }
}
.top-concept-wrap__cont .cont-txtbox p {
  font-family: "Shippori Mincho", serif;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .top-concept-wrap__cont .cont-txtbox p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
}
.top-concept-wrap__cont .cont-txtbox p:last-child {
  margin-bottom: 0;
}
.top-concept-wrap::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: " ";
  width: 104px;
  height: 327px;
  /*background: #6ccad3;*/
  border-radius: 100px 0 0 0;
  z-index: 0;
}

/* .top-feature
-----------------------------------------------------------------*/
.top-feature {
  padding: 130px 0 0;
}
@media screen and (max-width: 900px) {
.top-feature {
  padding: 100px 0 0;
}
}	
@media screen and (max-width: 750px) {
  .top-feature {
    padding: 70px 0 0;
  }
}
.top-feature-item__ttl {
  text-align: center;
  border-bottom: 12px double #bbddd4;
  margin-bottom: 20px;
}
@media (max-width: 1599px) {
  .top-feature-item__ttl {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 750px) {
  .top-feature-item__ttl {
    border-bottom: 6px double #9fd9cb;
  }
}
.top-feature-item__ttl .ttl-num {
  font: 130px "oskar-inline", sans-serif;
  color: #bbddd4;
}
@media (max-width: 1599px) {
  .top-feature-item__ttl .ttl-num {
    font-size: 80px;
  }
}
@media screen and (max-width: 750px) {
  .top-feature-item__ttl .ttl-num {
    font-size: 60px;
  }
}
.top-feature-item__ttl .ttl-txt {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.8;
}
@media (max-width: 1599px) {
  .top-feature-item__ttl .ttl-txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .top-feature-item__ttl .ttl-txt {
    font-size: 18px;
    line-height: 1.5;
  }
}
.top-feature-item__txtbox p {
  line-height: 1.8;
  margin-bottom: 30px;
}
.top-feature-item__txtbox span {
    font-weight: 600;
    color: #27c5b4;
}
@media screen and (max-width: 750px) {
  .top-feature-item__txtbox p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 16px;
  }
}
.top-feature-item__txtbox p:last-child {
  margin-bottom: 0;
}
.top-feature-head {
  position: relative;
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  z-index: 1;
}
.top-feature-head.feature04 {
    margin-top: 200px;
    background: #fcfcf4;
	width: 100%;
    max-width: 1920px;
    padding: 0px 10%;	
}
.top-feature-head.feature05 {
    margin-top: 90px;
}


@media (max-width: 1599px) {
  .top-feature-head {
    width: 90%;
  }
.top-feature-head.feature04 {
    padding: 0px 3%;	
}	
}
@media screen and (max-width: 750px) {
  .top-feature-head {
    display: block;
    width: 90%;
  }
.top-feature-head.feature04 {
    padding: 0px 15px 30px 15px;	
}		
}
.top-feature-head__cont {
  width: calc(50% - 50px);
}
@media screen and (max-width: 960px) {
  .top-feature-head__cont {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 750px) {
  .top-feature-head__cont {
    width: 100%;
    margin: 0 auto 60px auto;
  }
}
.top-feature-head__cont .top-feature-item__ttl {
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .top-feature-head__cont .top-feature-item__ttl {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 750px) {
  .top-feature-head__cont .top-feature-item__ttl {
    margin-bottom: 20px;
  }
}
.top-feature-head__cont .top-feature-item__ttl .ttl-num {
  padding-bottom: 0;
  margin-right: 40px;
}
@media screen and (max-width: 960px) {
  .top-feature-head__cont .top-feature-item__ttl .ttl-num {
    margin-right: 20px;
  }
}
@media screen and (max-width: 750px) {
  .top-feature-head__cont .top-feature-item__ttl .ttl-num {
    margin-right: 10px;
  }
}
.top-feature-head__img {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: calc(50% - 50px);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .top-feature-head__img {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 750px) {
  .top-feature-head__img {
    width: 100%;
  }
}


.top-feature-head.feature01 .top-feature-head__img p{
  width: 100%;
}

.top-feature-head__img p {
  width: calc(50% - 22px);
}
@media screen and (max-width: 960px) {
  .top-feature-head__img p {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 750px) {
  .top-feature-head__img p {
    width: calc(50% - 20px);
  }
}

.feature01 .top-feature-head__img p img {
    border-radius: 5vw 0 5vw 0;
}
.top-feature-head__img p img {
	border-radius: 5vw 0 5vw 0;
}
@media screen and (max-width: 1000px) {
  .top-feature-head__img p img {
    border-radius: 30px 0 30px 0;
  }
}
@media screen and (max-width: 750px) {
  .top-feature-head__img p img {
    border-radius: 50px 0 50px 0;
  }
}
.top-feature-head__img p:first-child {
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .top-feature-head__img p:first-child {
    margin-top: 30px;
  }
}
.top-feature-head__img p:last-child {
  margin-top: -60px;
}
@media screen and (max-width: 750px) {
  .top-feature-head__img p:last-child {
    margin-top: -30px;
  }
}
.top-feature-body {
  position: relative;
}

/*.top-feature-body::before {
  position: absolute;
  top: -546px;
  left: 0;
  content: " ";
  width: 120px;
  height: 546px;
  background: #6ccad3;
  border-radius: 0 189px 0 0;
  z-index: 0;
}
@media screen and (max-width: 750px) {
  .top-feature-body::before {
    top: -350px;
    height: 350px;
    width: 50px;
  }
}*/
.top-feature-body__bg {
  height: 400px;
  margin-top: -60px;
}
@media (max-width: 1599px) {
  .top-feature-body__bg {
    margin-top: -30px;
  }
}
@media screen and (max-width: 960px) {
  .top-feature-body__bg {
    height: 300px;
  }
}
@media screen and (max-width: 750px) {
  .top-feature-body__bg {
    height: 200px;
    margin-top: -100px;
  }
}

.top-feature-body__bg  .simpleParallax{
  height: 100%;
}
.top-feature-body__bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-feature-body__wrap {
  max-width: 1600px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: -130px auto 0;
}
@media screen and (max-width: 900px) {
  .top-feature-body__wrap {
    display: block;
    padding: 0 20px;
    margin: -50px auto 0;
  }
}
.top-feature-body__wrap .top-feature-item {
  position: relative;
  width: calc(50% - 70px);
  border-radius: 500px 500px 0 0;
  padding: 16px;
  background: #fdfcf4;	
}
@media (max-width: 1799px) {
  .top-feature-body__wrap .top-feature-item {
    width: calc(50% - 40px);
  }
}
@media screen and (max-width: 900px) {
  .top-feature-body__wrap .top-feature-item {
    width: 100%;
    padding: 8px;
  }
}
.top-feature-body__wrap .top-feature-item__inner {
  border: 2px solid #b9ddd3;
  border-radius: 500px 500px 0 0;
  padding: 50px 60px 60px;
}
@media screen and (max-width: 750px) {
  .top-feature-body__wrap .top-feature-item__inner {
    padding: 20px 100px 40px;
  }
}
@media screen and (max-width: 500px) {
  .top-feature-body__wrap .top-feature-item__inner {
    padding: 20px 20px 40px;
  }
}
.top-feature-body__wrap .top-feature-item:first-child {
  background: #f5f5ed;
}
@media screen and (max-width: 900px) {
  .top-feature-body__wrap .top-feature-item:first-child {
    margin-bottom: 80px;
  }
}
.top-feature-body__wrap .top-feature-item:last-child {
  background: #fcfcf4;
}
@media screen and (max-width: 750px) {
  .top-feature-body__wrap .top-feature-item:last-child {
    margin: 0 0 0 auto;
  }
}
.top-feature-body__wrap .top-feature-item:last-child .top-feature-item__ttl {
  border-bottom: 12px double #b9ddd3;
}
.top-feature-body__wrap .top-feature-item:last-child .top-feature-item__ttl .ttl-num {
  color: #b9ddd3;
}
@media screen and (max-width: 750px) {
  .top-feature-body__wrap .top-feature-item:last-child .top-feature-item__img {
    right: unset;
    left: 0px;
  }
}
.top-feature-body__wrap .top-feature-item__img {
  position: absolute;
  right: -10%;
  bottom: -18%;
  width: 238px;
  height: 238px;
  border-radius: 50%;
}
@media (max-width: 1799px) {
  .top-feature-body__wrap .top-feature-item__img {
    right: 0%;
    bottom: -24%;
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 750px) {
  .top-feature-body__wrap .top-feature-item__img {
    right: 0px;
    width: 140px;
    height: 140px;
  }
}

/* .top-medical
-----------------------------------------------------------------*/
.top-medical {
  padding: 190px 0 0;
}
@media screen and (max-width: 750px) {
  .top-medical {
    padding: 120px 0 0;
  }
}
.top-medical .c-top-ttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
.top-medical .c-top-ttl {
  margin-bottom: 0px;
}
}
/*.top-medical-cont {
  padding: 40px;
}
@media (max-width: 1499px) {
  .top-medical-cont {
    padding: 20px;
  }
}
@media screen and (max-width: 750px) {
  .top-medical-cont {
    padding: 10px;
  }
}*/
.top-medical-cont__ttl {
  position: relative;
  text-align: center;
}
.top-medical-cont__ttl span {
  position: relative;
  background: #FFF;
  font: 72px "Shippori Mincho", serif;
  color: #6ccad3;
  font-weight: 500;
  padding: 0 50px;
  z-index: 1;
}
@media (max-width: 1499px) {
  .top-medical-cont__ttl span {
    font-size: 36px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 750px) {
  .top-medical-cont__ttl span {
    font-size: 26px;
    line-height: 1;
    padding: 0 20px;
  }
}
.top-medical-cont__ttl::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 2px;
  background: #6ccad3;
  margin: auto;
  z-index: 0;
}
.top-medical-cont__bg {
  border: 2px solid #FFF;
  padding: 0px 0px 70px;
}
@media (max-width: 1499px) {
  .top-medical-cont__bg {
    padding: 0px 0px 70px;
  }
}
@media screen and (max-width: 960px) {
  .top-medical-cont__bg {
    padding-top: 0px;
  }
}
@media screen and (max-width: 750px) {
  .top-medical-cont__bg {
    padding: 0px 0px 40px;
  }
}

.top-medical-cont__inner {
    margin-bottom: 80px;
}
.top-medical-cont__inner.row2 {
  display: flex;
  justify-content:space-between;
}
@media screen and (max-width: 1499px) {
.top-medical-cont__inner {
    margin-bottom: 0px;
}
}	
@media screen and (max-width: 750px) {
.top-medical-cont__inner {
    margin-bottom: 0px;
}	
  .top-medical-cont__inner.row2 {
    display: block;
  }
}
.top-medical-cont__inner.row2 .top-medical-cont__item {
  width: calc(50% - 50px);
}
@media (max-width: 1499px) {
  .top-medical-cont__inner.row2 .top-medical-cont__item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 750px) {
  .top-medical-cont__inner.row2 .top-medical-cont__item {
    width: 100%;
    margin-bottom: 0px;
    padding: 50px 0px 0px;
  }
  .top-medical-cont__inner.row2 .top-medical-cont__item:last-child {
    margin-bottom: 0;
  }
}
.top-medical-cont__inner:not(.row2) .top-medical-cont__item {
  width: calc(100% - 84px);
  padding: 110px 100px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .top-medical-cont__inner:not(.row2) .top-medical-cont__item {
    width: 100%;
    padding: 50px 20px 60px;
  }
}
.top-medical-cont__inner:not(.row2) .top-medical-cont__item .item-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .top-medical-cont__inner:not(.row2) .top-medical-cont__item .item-list {
    display: block;
  }
}
.top-medical-cont__inner:not(.row2) .top-medical-cont__item .item-list li {
  width: calc(50% - 90px);
}
@media (max-width: 1399px) {
  .top-medical-cont__inner:not(.row2) .top-medical-cont__item .item-list li {
    width: calc(50% - 40px);
  }
}
@media screen and (max-width: 750px) {
  .top-medical-cont__inner:not(.row2) .top-medical-cont__item .item-list li {
    width: 100%;
  }
}
/*.top-medical-cont__item {
  position: relative;
  width: 100%;
  background: #FFF;
  border-radius: 60px;
  padding: 60px 100px 150px;
  z-index: 1;
}*/
@media (max-width: 1499px) {
  .top-medical-cont__item {
    padding: 80px 0px 0px;
  }
}
@media screen and (max-width: 750px) {
  .top-medical-cont__item {
    border-radius: 30px;
    padding: 50px 20px 0px;
  }
}
/*.top-medical-cont__item .item-head {
  position: absolute;
  top: -136px;
  right: 0;
  left: 0;
  max-width: 353px;
  width: 100%;
  height: 353px;
  background: #FFF;
  border-radius: 353px 353px 0 0;
  padding-top: 40px;
  margin: auto;
  z-index: -1;
}*/
.top-medical-cont__item .item-head {
  width: 100%;
  padding-top: 0px;
  display: flex;
  background: #fff;
  border: solid 2px #b9b9b9;	
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 50px;	
}
@media screen and (max-width: 960px) {
  .top-medical-cont__item .item-head {
    top: -70px;
    width: 100%;
    padding-top: 0px;
  margin-bottom: 30px;		  
  }
}
@media screen and (max-width: 750px) {
  .top-medical-cont__item .item-head {
    top: -55px;
    width: 100%;
    height: unset;
  }
}
.top-medical-cont__item .item-head-img {
 /* width: 125px;*/
  margin: 0px 0px;
}
@media screen and (max-width: 1499px) {
.top-medical-cont__item .item-head-img {
    width: 250px;
}
}
@media screen and (max-width: 960px) {
  .top-medical-cont__item .item-head-img {
    width: 180px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 750px) {
  .top-medical-cont__item .item-head-img {
    width: 50%;
    margin-bottom: 0px;
  }
}
.top-medical-cont__item .item-head-ttl {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  color: #858181;
  margin-bottom: 0px;
}
@media (max-width: 1499px) {
  .top-medical-cont__item .item-head-ttl {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 750px) {
  .top-medical-cont__item .item-head-ttl {
    margin-bottom: 4px;
  }
}
.top-medical-cont__item .item-head-ttl__jp {
  font-size: 25px;
  font-weight: 600;
}
@media (max-width: 1499px) {
  .top-medical-cont__item .item-head-ttl__jp {
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .top-medical-cont__item .item-head-ttl__jp {
    font-size: 16px;
  }
}
@media (max-width: 1499px) {
  .top-medical-cont__item .item-head-ttl__en {
    font-size: 15px;
  }
}
@media screen and (max-width: 750px) {
  .top-medical-cont__item .item-head-ttl__en {
    font-size: 11px;
  }
}
.top-medical-cont__item .item-list {
  position: relative;
  z-index: 0;
  display: grid;
  column-gap: 1.5em;
  grid-template-columns: repeat(2, auto);
}
.top-medical-cont__item .item-list li {
  margin-bottom: 20px;
}
.top-medical-cont__item .item-list li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 10px 0px 0px;
  transition: all 0.3s ease;
  pointer-events: none;
  line-height: 1.8;	
}
li.medical-pickup.link-ac a {
    pointer-events: auto !important;
	border-bottom: dotted 2px;
    display: inline;	
}
li.medical-pickup.link-ac a:hover {
    color:#efeee1;
}
/*a.media-list{
    pointer-events: none!important;
}
a.media-list:hover{
  opacity: 1!important;
}*/

ul.medical-child li a::before {
    content: "┗" !important;
    color: #adadad !important;
    padding-right: 20px !important;
}
ul.medical-child li a {
    margin-left: 30px;
}
ul.medical-child li {
    margin-bottom: 10px !important;
}

@media screen and (max-width: 750px) {
  .top-medical-cont__item .item-list li a {
    font-size: 13px;
    letter-spacing: 0;
    padding: 5px 0px 0px 0px;	  
  }
ul.medical-child li a {
    margin-left: 10px;
}
ul.medical-child li a::before {
    padding-right: 5px!important;
}	
ul.medical-child li {
    margin-bottom: 0px !important;
}	
}

.top-medical-cont__item .item-list li a::before {
  content: "―";
  font-size: 16px;
  color: #333333;
  padding-right: 10px;
  transition: all 0.3s ease;
}
/*.top-medical-cont__item .item-list li a::after {
  content: "▶︎";
  font-size: 12px;
  color: #6ccad3;
  transition: all 0.3s ease;
}*/
.top-medical-cont__item .item-list li:last-child {
  margin-bottom: 0;
}
.top-medical-cont__item .item-list li:hover a {
  opacity: 1;
}
.top-medical-cont.cont01 {
  position: relative;
 /* background: #6ccad3;*/
}
.top-medical-cont.cont01 .top-medical-cont__ttl {
  position: absolute;
  top: -104px;
  left: 0;
  width: 100%;
}
@media (max-width: 1499px) {
  .top-medical-cont.cont01 .top-medical-cont__ttl {
    top: -53px;
  }
}
@media screen and (max-width: 750px) {
  .top-medical-cont.cont01 .top-medical-cont__ttl {
    top: -31px;
  }
.top-medical-cont.cont01 {
  margin-bottom: 50px;
}	
}
/*.top-medical-cont.cont01::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 313px;
  height: 384px;
  background: url("../img/top/medical-deco01.png") no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 750px) {
  .top-medical-cont.cont01::before {
    width: 250px;
    height: 300px;
  }
}*/
/*.top-medical-cont.cont01::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: " ";
  width: 189px;
  height: 313px;
  background: url("../img/top/medical-deco02.png") no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 750px) {
  .top-medical-cont.cont01::after {
    bottom: -70px;
  }
}*/
.top-medical-cont.cont02 {
  position: relative;
  background: #f5f4ed;
  padding: 60px 0 20px;
}
.top-medical-cont.cont02 .top-medical-cont__ttl span {
  background: #f5f4ed;
}
.top-medical-cont.cont02 .top-medical-cont__bg {
  border: none;
  padding-top: 170px;
}
@media screen and (max-width: 960px) {
  .top-medical-cont.cont02 .top-medical-cont__bg {
    padding-top: 100px;
  }
}
.top-medical-cont.cont02::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: " ";
  width: 413px;
  height: 545px;
  background: url("../img/top/medical-deco03.png") no-repeat;
  background-size: 100%;
  z-index: 0;
}
@media screen and (max-width: 750px) {
  .top-medical-cont.cont02::before {
    top: -3px;
    bottom: unset;
    left: -38px;
    width: 174px;
    height: 370px;
  }
}
.top-medical-cont.cont02::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: " ";
  width: 221px;
  height: 357px;
  background: url("../img/top/medical-deco04.png") no-repeat;
  background-size: 100%;
  z-index: 0;
}
@media screen and (max-width: 750px) {
  .top-medical-cont.cont02::after {
    width: 90px;
    height: 135px;
  }
}

/* .top-doctor
-----------------------------------------------------------------*/
.top-doctor {
  padding: 200px 0 0;
}
@media screen and (max-width: 960px) {
  .top-doctor {
    padding-top: 60px;
  }
}
@media screen and (max-width: 750px) {
  .top-doctor {
    padding: 0px 0 0;
  }
}
.top-doctor-wrap {
  position: relative;
  margin-bottom: 140px;
}
@media screen and (max-width: 900px) {
  .top-doctor-wrap {
    margin-bottom: 50px;
  }
}
.top-doctor-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  max-height: 550px;
  height: 100%;
}

@media screen and (max-width: 900px) {
  .top-doctor-img {
    position: relative;
    width: 96%;
	height: 550px;  
    max-height: 300px;
    margin-bottom: 100px;
  }
}
.top-doctor-img__pic {
  position: absolute;
  clip-path: inset(0 0 0 round 0 275px 275px 0);
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .top-doctor-img__pic {
    position: relative;
    clip-path: inset(0 0 0 round 0 130px 130px 0);
    height: 350px;
  }
}

.top-doctor-img__pic .simpleParallax{
  height: 100%;
}

.top-doctor-img__pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-doctor-img__en {
  position: absolute;
  top: -120px;
  left: 0;
  font: 150px "questa-grande", serif;
  font-weight: 500;
  letter-spacing: -4px;
  background: -webkit-linear-gradient(#ebb2c1 50%, #bbddd4 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1799px) {
  .top-doctor-img__en {
    top: -100px;
    font-size: 120px; 
  }
}
@media screen and (max-width: 960px) {
  .top-doctor-img__en {
    top: -100px;
    font-size: 100px;
	  
  }
}
@media screen and (max-width: 750px) {
  .top-doctor-img__en {
    top: -40px;
    font-size: 50px;
    letter-spacing: 0;
  }
}
.top-doctor-img__label {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 278px;
  height: 278px;
  border-radius: 50%;
  background: #bbddd4;
  color: #FFF;
  padding: 6px;
}
@media (max-width: 1299px) {
  .top-doctor-img__label {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 750px) {
  .top-doctor-img__label {
    bottom: -80px;
    right: 0;
	width: 130px;
    height: 130px;
    padding: 3px;
  }
}
.top-doctor-img__label .label-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  border-radius: 50%;
  border: 1px solid #FFF;
  padding-bottom: 40px;
}
@media (max-width: 1299px) {
  .top-doctor-img__label .label-inner {
    padding-bottom: 26px;
  }
}
@media screen and (max-width: 750px) {
  .top-doctor-img__label .label-inner {
    padding-bottom: 16px;
  }
}
.top-doctor-img__label .label-inner .label-sub {
  position: relative;
  font-size: 30px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media (max-width: 1299px) {
  .top-doctor-img__label .label-inner .label-sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .top-doctor-img__label .label-inner .label-sub {
    padding-bottom: 6px;
	font-size: 16px;  
  }
}
.top-doctor-img__label .label-inner .label-sub::before, .top-doctor-img__label .label-inner .label-sub::after {
  position: absolute;
  right: 0;
  left: -25%;
  content: " ";
  width: 90px;
  height: 1px;
  background: #FFF;
  margin: auto;
}
@media (max-width: 1299px) {
  .top-doctor-img__label .label-inner .label-sub::before, .top-doctor-img__label .label-inner .label-sub::after {
    width: 60px;
  }
}
.top-doctor-img__label .label-inner .label-sub::before {
  bottom: 0;
}
.top-doctor-img__label .label-inner .label-sub::after {
  bottom: -4px;
}
@media screen and (max-width: 750px) {
  .top-doctor-img__label .label-inner .label-sub::after {
    bottom: -3px;
  }
}
.top-doctor-img__label .label-inner .label-name {
  font-size: 48px;
}
@media (max-width: 1299px) {
  .top-doctor-img__label .label-inner .label-name {
    font-size: 34px;
  }
}
@media screen and (max-width: 750px) {
  .top-doctor-img__label .label-inner .label-name {
    font-size: 24px;
  }
}
.top-doctor-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1800px !important;	
}
@media screen and (max-width: 1399px) {
.top-doctor-inner {
  width: 100%!important;
}
}
@media screen and (max-width: 900px) {
  .top-doctor-inner {
    width: 90%!important;
  }
}
@media screen and (max-width: 750px) {
  .top-doctor-inner {
    height: unset;
  }
}
.top-doctor-cont {
  width: 45%;	
  max-width: 830px;
  margin: 0 20px 0 auto;
}
/*@media (max-width: 1299px) {
  .top-doctor-cont {
    width: calc(50% - 60px);
  }
}*/
@media screen and (max-width: 900px) {
  .top-doctor-cont {
    width: 100%;
	max-width: unset; 
   margin: 0 auto;	  
  }
}
.top-doctor-cont__ttl {
  font: 30px "Shippori Mincho", serif;
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .top-doctor-cont__ttl {
    font-size: 21px;
    margin-bottom: 20px;
  }
}
.top-doctor-cont__txtbox {
  margin-bottom: 60px;
}
.top-doctor-cont__txtbox p {
  line-height: 1.8;
  margin-bottom: 15px;
}
.top-doctor-cont__txtbox p:last-child {
  margin-bottom: 0;
}
.top-doctor-cont__btn {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 950px) {
.top-doctor-cont__txtbox {
    margin-bottom: 60px;
}
}	
@media screen and (max-width: 750px) {
.top-doctor-cont__txtbox {
  margin-bottom: 0px;
}	
  .top-doctor-cont__btn {
    margin: 0 auto;
  }
}

/* .top-recruit
-----------------------------------------------------------------*/
.top-recruit {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 378px;
  background: linear-gradient(#f0f0de, #ffffff);
}
@media screen and (max-width: 960px) {
  .top-recruit {
    display: block;
    height: unset;
  }
}
.top-recruit-img {
  position: absolute;
  width: 33.333333%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .top-recruit-img {
    position: unset;
    width: 100%;
  }
}
.top-recruit-img__pic {
  position: relative;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .top-recruit-img__pic {
    height: 350px;
    z-index: 1;
  }
}
@media screen and (max-width: 750px) {
  .top-recruit-img__pic {
    height: 180px;
  }
}
.top-recruit-img__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-recruit-img__blur {
  position: absolute;
  width: 402px;
  top: 0;
  bottom: 0;
  right: -402px;
  margin: auto;
}
@media (max-width: 1499px) {
  .top-recruit-img__blur {
    width: 200px;
    right: -200px;
  }
  .top-recruit-img__blur img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 960px) {
  .top-recruit-img__blur {
    content: none;
   display: none;
  }
  .top-recruit-img__blur img {
    width: 100%;
    height: 100%;
    display: none;
  }	
}
.top-recruit-inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1499px) {
  .top-recruit-inner {
    width: 90%;
  }
}
@media screen and (max-width: 960px) {
  .top-recruit-inner {
    width: 100%;
  }
}
.top-recruit-cont {
  position: relative;
  max-width: 810px;
  width: 100%;
  color: #FFF;
  margin: 0 0 0 auto;
}
@media (max-width: 1499px) {
  .top-recruit-cont {
    width: 60%;
  }
}
@media screen and (max-width: 960px) {
  .top-recruit-cont {
    max-width: unset;
    width: 100%;
    padding: 30px 20px 50px;
    margin: unset;
  }
  .top-recruit-cont::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    content: " ";
    background: linear-gradient(to bottom, #FFF, transparent);
  }
}
.top-recruit-cont__ttl {
  font: 120px "questa-grande", serif;
  font-weight: 500;
  letter-spacing: -3px;
  color:#bbddd4;
}
@media (max-width: 1399px) {
  .top-recruit-cont__ttl {
    font-size: 90px;
  }
}
@media screen and (max-width: 960px) {
  .top-recruit-cont__ttl {
    font-size: 60px;
    text-align: left;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
}
.top-recruit-cont__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .top-recruit-cont__wrap {
    display: block;
  }
}
.top-recruit-cont__wrap .wrap-txt {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: #4b4b4b;	
}
@media (max-width: 1399px) {
  .top-recruit-cont__wrap .wrap-txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 960px) {
  .top-recruit-cont__wrap .wrap-txt {
    font-size: 15px;
    text-align: left;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 960px) {
  .top-recruit-cont__wrap .wrap-btn {
    margin: 0 auto;
  }
}
.top-recruit-cont__wrap .wrap-btn a {
  color: #515151;
    border: solid 1px #4b4b4b;
}

.top-recruit-cont__wrap .wrap-btn a:hover {
  color: #77c3b1;
    border: solid 1px #77c3b1;
}


li.medical-pickup {
    color: #77c3b1;
}

span.green {
    color: #77c3b1;
}

.medical-box {
    margin: 0px 20px 60px;
    line-height: 2;
    background: #f1f1f1;
    padding: 3rem;
}
@media screen and (max-width: 960px) {
.medical-box {
	margin: 30px 10px 20px;
    line-height: 2;
    background: #f1f1f1;
    padding: 3rem;
}
}




.web-btn {
    margin: 50px;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 30px 60px;
  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;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  font-size: 30px;
  font-family: "Shippori Mincho", serif;	
}
a.btn--yellow {
  color: #fff;
  background-color: #77c3b1;
  border-bottom: 5px solid #5e9185;
}

a.btn--yellow:hover {
  margin-top: 3px;
  color: #fff;
  background: #77c3b1;
  border-bottom: 2px solid #5e9185;
}



@media screen and (max-width: 960px) {
.btn,
a.btn,
button.btn {
  padding: 25px 20px;
  font-size: 18px;
}
}

span.menu-small {
    font-size: 13px;
}

h3.clinic-name {
    font-size: 30px;
    font-family: "Shippori Mincho", serif;
    line-height: 2;
	margin-bottom: 40px;
    border-bottom: solid 1px #bbddd4;
    padding-bottom: 10px;
    color: #77c3b1;
}

@media screen and (max-width: 767px) {
h3.clinic-name {
    font-size: 22px;
}
}

/*お知らせ*/
.post_items h2 {
    font-size: 18px;
    background: #efefef;
    padding: 7px 10px;
    margin-bottom: 10px;
}

.content.news ul {
    padding-left:20px;
}
.content.news ul li {
    list-style: disc;
}


.sample_text20 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight:bold;
  text-align: center;
}
.sample_text20::before,
.sample_text20::after {
  content: '';
  width: 3px;
  height: 40px;
  background-color: #77bcff;
}
.sample_text20::before {
  margin-right: 30px;
  transform: rotate(-35deg)
}
.sample_text20::after {
  margin-left: 30px;
  transform: rotate(35deg)
}

section.pickup-menu {
    margin: 100px 0px 0px 0px;
}
.pickup-ttl {
    text-align: center;
    margin-bottom: 60px;
}
ul.pickup-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;	
}
ul.pickup-wrap li {
    width: 100%;
    margin-bottom: 30px;	
}
ul.pickup-wrap a {
	width: 49%;
}
ul.pickup-wrap a:hover {
    opacity: 0.6;
}
.top-news-wrap .two-coulmn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;	
}
.news-box,.blog-box {
	width: 48%;
}


@media screen and (max-width: 950px) {
section.pickup-menu {
	margin: 100px 0px 0px 0px;
}	
}	

@media screen and (max-width: 767px) {
ul.pickup-wrap a {
    width: 100%;
}	
ul.pickup-wrap li {
    width: 100%;
    margin-bottom: 30px;	
}
.pickup-ttl {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 40px;
}
.top-news-wrap .two-coulmn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-box,.blog-box {
	width: 100%;
}
.blog-box {
        border-top: solid 1px #b2b2b2;
        padding-top: 40px;
}	
}

@media screen and (max-width: 500px) {
section.pickup-menu {
    margin: 80px 0px 0px 0px;
}
}

/*poppuappu */
#popup_content {
    overflow-y: hidden;
    overflow-x: auto;
    height: 100%;
    width: 100%;
	font-weight:500;
    font-family: var(--zen-maru-gothic);
	padding: 3rem 2rem 1rem;
}

input#ageEnterButton {
    background: #76c2b4;
    padding: 5px 20px;
    margin-top: 15px;
    font-weight: 500;
    border-radius: 10px;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    padding: 10px 30px;
    margin: 20px auto;
    display: block;
    background-color: #ecbd31;
    color: #fff;
    font-size: 18px;
}
input#ageLeaveButton {
    display: none;
}
p.pop-p {
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
#popup_content {
    padding: 6rem 5rem 1rem;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    font-size: 14px!important;
}	
}		
	
	

section.catchphrase {
    background-image: linear-gradient(90deg, #e4f5f2, rgb(234 234 234));
    padding: 80px 0px;
	margin-bottom: 60px;
	position: relative;
}

.sub-catchphrase {
	position: relative;
    text-align: center;
    line-height: 1.8;
    color: #4b4b4b;
    letter-spacing: 1.5px;
    font-family: "Shippori Mincho", serif;
    font-size: max(1.6vw, 1.3rem);
	z-index: 1;
}
.sub-catchphrase span {
    font-size: max(1.3vw, 1rem);
}
.catchphrase:after {
    content: "";
    background: #ffffff66;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.sub-catchphrase:before {
    position: absolute;
    content: "";
    background: url("../img/top/bg_pattern01.webp") repeat left center / calc(6 / var(--break) * 100vw);
    width: 100%;
    height: calc(4 / var(--break) * 100vw);
    left: 0;
    top: calc(6 / var(--break) * 100vw);
}

@media screen and (max-width: 1199px) {
.sub-catchphrase {
    line-height: 2;
    font-size: max(2vw, 1.6rem);
}
.sub-catchphrase span {
    font-size: max(1.7vw, 1.4rem);
}	
}


@media screen and (max-width: 767px) {
section.catchphrase {
	padding: 50px 0px;
}
.sub-catchphrase {
    line-height: 1.8;	
    font-size: max(3.5vw, 1.6rem);
}	
.sub-catchphrase span {
    font-size: max(3vw, 1.4rem);
}		
}
@media screen and (max-width: 400px) {
.sub-catchphrase {
    line-height: 1.8;	
    font-size: max(4vw, 1.6rem);
}	
.sub-catchphrase span {
    font-size: max(3.5vw, 1.4rem);
	margin-top:20px;
}		
}


/*はじめての方へ*/
section.top-first {
    margin-top: 50px;
}
p.top-concept-wrap__img.first {
    right: 0;
    left: unset;
	width: 40%;	
}
p.top-concept-wrap__img.first img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 516px 0px 0 0;
}
.top-concept-wrap__cont.first {
    position: relative;
    width: calc(60% - 85px);
    padding: 90px 0 50px;
     margin-left: 0;
    z-index: 1;
}

.new-treatment {
  background: #e6f6f3;
  padding: 60px 20px;
  text-align: center;
    margin-top: 60px;	
}

.new-treatment__title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 40px;
}

.new-treatment__boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;	
}

.new-treatment__box {
  padding: 0px 0px;
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}

h3.new-treatment__heading {
  font-size: 24px;
  margin-bottom: 20px;
}

h4.new-treatment__heading {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.new-treatment__image {
  width: 100%;
  height: auto;
  background: #ccc;
  margin: 20px 0px;
}
.top-concept-wrap__cont .cont-txtbox.first p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 2;
    margin-bottom: 25px;
}


@media screen and (max-width: 1300px) {
.top-concept-wrap__img.first {
    width: 40%;
}
.top-concept-wrap__cont.first {
    position: relative;
    width: calc(60% - 50px);
    padding: 90px 0 96px;
     margin-left: 0;
    z-index: 1;
}	
}

@media screen and (max-width: 960px) {
section.top-first {
    margin-top: 0px;
}	
    .top-concept-wrap__img .first {
        top: unset;
        bottom: 0;
        width: 90%;
        height: 300px;
        z-index: 1;
    }
.top-concept-wrap__cont.first {
    padding: 0px 0 96px;
}	
    .top-concept-wrap__inner .first {
        width: 100%;
    }
	
	.top-concept-wrap__cont .first {	
        padding: 40px 20px 50px;	
}	
p.top-concept-wrap__img.first {
     width: 80%;
	 height: 150px;
}
p.top-concept-wrap__img.first img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    border-radius: 100px 0px 0 0;
}	
}


@media screen and (max-width: 765px) {
    p.top-concept-wrap__img.first {
        width: 90%;
    }
 }

/*当院のこだわり専門施術*/
p.new-treatment-btn {
    text-align: center;
}
p.new-treatment-btn a {
    background: #6ccad3;
    color: #fff;
    padding: 15px 20px;
    letter-spacing: 2px;
    display: inline-block;
    margin: 15px;
}
p.new-treatment-time {
	font-size: 20px;
    text-align: center;
}
p.new-treatment-time span {
    font-size: 24px;
    font-weight: 600;
    padding: 0px 5px;
}
h3.new-treatment__heading {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #77c3b1;
    border-bottom: solid 2px;
    padding-bottom: 10px;
}
.image-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.image-link img {
  width: 100%;
  height: auto;
  display: block;
}

.image-link .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 黒い透過 */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 24px;
  pointer-events: none;
  letter-spacing: 2px;
}


}

.image-link .icon {
  font-size: 1.2rem;
}


@media screen and (max-width: 1300px) {
h3.new-treatment__heading {
    font-size: 24px;
}
h4.new-treatment__heading {
    font-size: 20px;
}
p.new-treatment-time {
    font-size: 20px;
}	
p.new-treatment-time span {
    font-size: 24px;
}	
}

@media screen and (max-width: 764px) {
    h3.new-treatment__heading {
        font-size: 20px;
    }
h4.new-treatment__heading {
    font-size: 16px;
}
p.new-treatment-time {
    font-size: 18px;
}	
p.new-treatment-time span {
    font-size: 20px;
}	
.new-treatment__boxes {
    margin-top: 30px;
}
.image-link .overlay {	
	font-size: 20px;
}
}

@media screen and (max-width: 764px) {
    .image-link .overlay {
        font-size: 18px;
    }
}

.sred-campaign {
    margin: 100px 0px;
	text-align: center;
}	
.sred-campaign img {
    text-align:center;
}
@media screen and (max-width: 764px) {
.sred-campaign {
    margin: 60px 10px;
}		
}	
	
	
.wave-red {
    background: url(/wp-content/themes/akinature/img/common/wave-red.png) bottom repeat-x;
    background-size: 20px;
    padding-bottom: 5px;
}











/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../src/sass/modules/_reset.scss%22,%22../../src/sass/modules/_variables.scss%22,%22../../src/sass/modules/_mixin.scss%22,%22../../src/sass/modules/_util.scss%22,%22../../src/sass/modules/_common.scss%22,%22../../src/sass/parts/_header.scss%22,%22../../src/sass/parts/_footer.scss%22,%22../../src/sass/parts/_parts.scss%22,%22../../src/sass/pages/_top.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%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EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAQR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGE;EACE;EACA;;AAEA;EACE;IACI;IACC;;EAEL;IACI;IACA;;;AAUV;EACE;;AAGA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA,aJlSD;EImSC;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;;AAIE;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAUJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIF;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAiBhB;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;;ACvYJ;AAAA;AAAA;AAIA;AAAA;AAGA;EACE;EACA;EACA;;AJCA;EIJF;IAMI;;;AAGF;EACE;;AAGF;EACE;EACA;;AAEA;EAJF;IAKI;IACA;;;AAIJ;EACE;;AJpBF;EImBA;IAII;;;AAGF;EACE;EACA;EACA;;AJ7BJ;EI0BE;IAMI;IACA;;;AAGF;EACE;;AAIJ;EACE;EACA;;AJ3CJ;EIyCE;IAKI;;;AAGF;EACE;;AAEA;EAHF;IAII;IACA;;;AJtDR;EIiDI;IASI;;;AJ1DR;EI6DM;IAEI;IACA;;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EAPF;IAQI;IACA;;;AAGF;EACE;;AJpFd;EIwFU;IAEI;;;AAMR;EACE;;AJjGR;EIgGM;IAII;IACA;;;AAGF;EACE;;AJzGV;EIwGQ;IAII;;;AAIJ;EACE;;AJjHV;EIgHQ;IAII;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AJhIZ;EIwHU;IAWI;;;AAGF;EACE;;AAGF;EACE;EACA;EAC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ACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZF;IAaI;;;AN9CF;EMiCF;IAiBI;;;AN5CF;EM2BF;IAqBI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AN1DF;EMmDA;IAUI;IACA;IACA;;;AAIA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AN5ER;EMyEM;IAMI;IACA;;;AAIJ;EACE;;AAMN;EACE;EACA;AAiBF;AAwBA;AAQE;AAQF;AAQE;;AA/DA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AN5GN;EMqGI;IAUI;IACA;;;AAKN;EACE;AACA;EACA;EACA;EACA;AACA;EACA;EACA;EACA;EACA;AACE;EACF,WACE;;ANlIN;EMqHE;IAiBM,WACA;;;AAMN;EACE;IACE;;EAEF;IAAO;;;AAIP;EACE;IACE;;EAEF;IAAO;;;AAIX;EACE;IAAI;;EACJ;IAAK;;EACL;IAAK;;EACL;IAAM;;;AAIN;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AN5KR;EMqKI;IAUM;;;AAMV;EACE;EACA;EACA;EACA;;ANnLF;EM+KA;IAOI;IACA;IACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATF;IAUI;;;AAGF;EACE;EACA;;AAEA;EAJF;IAKI;;;AN9MN;EMyME;IASI;;;AAGF;EACE;;AAIJ;EACE;EACA;EACA;;AAEA;EALF;IAMI;IACA;;;ANjON;EM0NE;IAWI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAXF;IAYI;;;AAGF;EACE;EACA;;AAEA;EAJF;IAKI;;;AAKN;EACE;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;IACA;;;ANjRJ;EMuQA;IAcI;IACA;;;AAGF;EACE;EACA;EACA;;AAEA;EALF;IAMI;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EAPF;IAQI;;;AAGF;EAXF;IAYI;;;AN9SR;EMkSI;IAgBI;;;AAIJ;EACE;EACA;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;EM4pCI;IAWI;;;AAGA;EACE;EACA;;AAEA;EAJF;IAKI;;;AN/qCZ;EM0qCQ;IASI;;;AAKF;EADF;IAEI;;;ANzrCZ;EMurCQ;IAMI;;;AAMR;EACE;EACA;;AAEA;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;ANhtCV;EM0sCQ;IASI;IACA;;;AAGF;EACE;EACA;EACA;EACA;;AAIJ;EACE;;AAIA;EACE;;AAOV;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;;;ANvvCR;EMgvCI;IAWI;;;AAKJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ANxwCN;EMgwCI;IAWI;IACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ANxxCN;EMgxCI;IAWI;;;AAKN;EACE;EACA;EACA;;AAGE;EACE;;AAIJ;EACE;EACA;;ANnzCN;EMizCI;IAKI;;;AAMF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AN/zCR;EMszCM;IAYI;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ANn1CR;EM00CM;IAYI;IACA;;;;AAWZ;AAAA;AAGA;EACE;;AN52CA;EM22CF;IAII;;;ANz2CF;EMq2CF;IAQI;;;AAGF;EACE;EACA;EACA;;ANn3CF;EMg3CA;IAMI;IACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;ANj4CF;EM23CA;IASI;IACA;IACA;IACA;;;AAGF;EACE;;AN34CJ;EM04CE;IAII;;;AAGF;EACE;EACA;EACA;EACA;;ANr5CN;EMi5CI;IAOI;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AN56CJ;EMm6CE;IAYI;IACA;;;AN16CN;EM65CE;IAiBI;IACA;IACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAXF;IAYI;IACA;;;ANj8CN;EMo7CE;IAiBI;IACA;IACA;IACA;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA,aP59CG;EO69CH;EACA;EACA;EACA;;AAEA;EAZF;IAaI;;;ANz9CR;EM48CI;IAiBI;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;;;ANv+CV;EMg+CM;IAWI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAVF;IAWI;;;AAIJ;EACE;;AAGF;EACE;;ANlgDV;EMigDQ;IAII;;;AAKN;EACE;;AAEA;EAHF;IAII;;;AN9gDV;EM0gDM;IAQI;;;AAOV;EACE;EACA;EACA;;AN5hDF;EMyhDA;IAMI;;;AAIJ;EACE;EACA;;AAEA;EAJF;IAKI;;;AAGF;EACE;EACA;EACA;;AN9iDJ;EM2iDE;IAMI;IACA;;;AAIJ;EACE;;AAEA;EACE;EACA;;AAEA;EACE;;AAKN;EACE;;ANpkDJ;EMmkDE;IAII;;;;AAOR;AAAA;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;;AN7lDA;EMulDF;IASI;IACA;;;AAGF;EACE;EACA;EACA;;ANvmDF;EMomDA;IAMI;IACA;;;AAGF;EACE;EACA;;ANhnDJ;EM8mDE;IAKI;IACA;;;AN9mDN;EMwmDE;IAUI;;;AAGF;EACE;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;IACA;;EAEA;IACE;IACA;;;ANhpDR;EMkoDE;IAmBI;;;AAKN;EACE;EACA;EACA;;AAEA;EALF;IAMI;;;ANhqDJ;EM0pDA;IAUI;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EAPF;IAQI;;;ANhrDJ;EMwqDA;IAYI;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;EACA;;AAEA;EALF;IAMI;;;AN1sDN;EMosDE;IAWI;IACA;IACA;IACA;;;AAIJ;EACE;EACA;EACA;;ANztDJ;EMstDE;IAMI;;;AAGF;EACE;EACA;EACA;;AAEA;EALF;IAMI;;;ANruDR;EM+tDI;IAUI;IACA;IACA;;;AN3uDR;EM+uDI;IAEI;;;AAGF;EACE%22,%22file%22:%22style.css%22%7D */
