.font-m{font-family: 'Zen Maru Gothic', sans-serif;}
.fontd{font-family: 'Kaisei Decol', serif!important;}
.imgc{display: block; margin: auto;}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: scrollbar;
}

html, html a, body {
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
	font-size: 1rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color: #424242;
	line-height: 1.6;
}

/* Typography */

h1 {
margin:0;
padding:0;
font-size:10px;
text-align:left;
}

h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-family: Montserrat, sans-serif;
  line-height: 1.2;
  color: #242424;
  margin-top: 0;
  margin-bottom: .5rem;
}


h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.75rem;
}


h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #242424;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}


h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
  color: #a79576;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

em,
li {
  font-size: 1rem;
  font-weight: 300;
  color: #242424;
}

em > a,
li > a {
  color: #242424;
}

em > a:hover,
li > a:hover {
  color: #a79576;
}

small {
  color: #656565;
}

label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #242424;
  margin-bottom: .25rem;
}

i {
  line-height: 1;
}

img{
	max-width: 100%;
	height: auto;
}

/* Paragraph */
p {
  font-size: 0.995rem;
  font-weight: 400;
  color: #000;
  line-height: 2;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #333;
  text-decoration: none;
}

a:focus, a:hover {
  color: #584034;
  text-decoration: none;
}

a:focus {
  outline: none;
}

/*----------------------------------
  Selection
------------------------------------*/
::selection {
  color: #fff;
  background: #a79576;
  text-shadow: none;
}

::-webkit-selection {
  color: #fff;
  background: #a79576;
  text-shadow: none;
}

:active,
:focus {
  outline: none;
}

/*----------------------------------
  Button
------------------------------------*/
.s-btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  border: none;
  white-space: nowrap;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.s-btn:focus, .s-btn:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.s-btn.focus {
  text-decoration: none;
}
.s-btn:active, .s-btn.active {
  background-image: none;
  outline: 0;
}
.s-btn.disabled, .s-btn:disabled,
fieldset[disabled] .s-btn {
  cursor: not-allowed;
  opacity: .65;
}
.s-btn__element--left, .s-btn__element--right {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

/* Sizes
------------------------------ */
.s-btn--xs {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.5rem 1.25rem;
}

.s-btn--sm {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.75rem 1.25rem;
}

.s-btn--md {
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 1rem 2.5rem;
}

.s-btn-icon--md {
  font-size: 1rem;
  padding: 0.9375rem 1.5625rem 0.75rem;
}

/* Styles
------------------------------ */
.s-btn--white-brd {
  color: #fff;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
}

.s-btn--white-brd:focus, .s-btn--white-brd:hover {
  color: #222324;
  background: #fff;
  border-color: #fff;
}

.s-btn--white-bg {
	color: #464646;
	background: rgba(255,255,255,0.9);
	border: 1px solid #8F8F8F;
}

.s-btn--white-bg:focus, .s-btn--white-bg:hover {
	color: #464646;
	border: 1px solid #8F8F8F;
	opacity: 0.5;
}

.s-btn--insta-bg {
	color: #fff;
	background: linear-gradient(90deg, #f2c354 0%, #f599b0 100%);
	border: 4px solid #f599b0;
	border-image: linear-gradient(to right, #f2c354 0%, #f599b0 100%);
	border-image-slice: 1;
}

.s-btn--insta-bg:focus, .s-btn--insta-bg:hover {
	color: #fff;
	opacity: 0.5;
}

.s-btn--gray-bg {
  color: #2a2622;
  background: rgba(255,255,255,0.9);
	border: 1px solid #2a2622;
}

.s-btn--gray-bg:focus, .s-btn--gray-bg:hover {
	color: #fff;
	background: #2a2622;
	border: 1px solid #2a2622;
}

.s-btn--dark-bg {
  color: #fff;
  background: #222324;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #222324;
}
.s-btn--dark-bg:focus, .s-btn--dark-bg:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}
.s-btn--primary-bg {
  color: #fff!important;
  background: #538e7a;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #538e7a;
transition-duration: 300ms;
}
.s-btn--primary-bg:focus, .s-btn--primary-bg:hover {
  color: #538e7a!important;
  background: #fff;
  border-color: #538e7a;
}
.s-btn--yellow-bg {
  color: #fff!important;
  background: #B0A154;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #B0A154;
transition-duration: 300ms;
}
.s-btn--yellow-bg:focus, .s-btn--yellow-bg:hover {
  color: #B0A154!important;
  background: #fff;
  border-color: #B0A154;
}



/* aisis
------------------------------ */
header{
	padding: 0;
	text-align: center;
	width: 100%;
	position: fixed;
	z-index: 10000;
	top: 0;
	display: none;
	 background: #9fcf8b;
}
header .row{margin: 0!important;}

hr{
  border-top: 1px solid #ccc;
  border-bottom: 2px solid #fff;
}

.marker {
 background: linear-gradient(transparent 60%, #F6FF62 60%);
}
.fontg1{font-family: 'Noto Sans JP', sans-serif;}
.fontg2{font-family: 'Noto Serif JP', serif;}
.fontg3{font-family: 'Shippori Mincho', serif;}

.flbox{
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flbox2{
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
	flex-direction: column;
}
.flend{
	align-self: flex-end;
}
.flcenter{
  align-self: center;
}
.tshadow {text-shadow: 0 0 5px rgba(0,0,0,0.8); }

.currit{
    color: #fff;
    text-shadow: 2px 1px 0 #D0CEB6,
    2px 2px 0 #928918,
    2px 3px 0 #928918,
    2px 4px 0 #928918;
	letter-spacing: 0.1em;
}
.currit2{
    color: #fff;
    text-shadow: 2px 1px 0 #8E535F,
    2px 2px 0 #8E535F,
    2px 3px 0 #8E535F,
    2px 4px 0 #8E535F;
	letter-spacing: 0.1em;
}
.currit3{
    text-shadow: 2px 1px 0 #fff,
    2px 2px 0 #fff,
    2px 3px 0 #fff,
    2px 4px 0 #fff;
	letter-spacing: 0.1em;
}
.currit4{
    text-shadow: 2px 1px 0 #EDE2B9,
    2px 2px 0 #EDE2B9,
    2px 3px 0 #EDE2B9,
    2px 4px 0 #EDE2B9;
	letter-spacing: 0.1em;
}

.time {
	width: 100%;
	margin: 0 auto 10px;
	font-weight: 600;
	font-family: 'Zen Maru Gothic', serif;
}
.time th {
	padding:10px 4px;
	word-break: break-all;
	text-align: center;
	font-weight: 600;
	font-size: 18px!important;
	color: #604c3f;
	letter-spacing: .2em;
	border-bottom: 2px solid #c9bc9c;
}
.time td {
	padding:10px 4px;
	word-break: break-all;
	text-align: center;
	font-size: 18px!important;
	border-bottom: 2px solid #c9bc9c;
	color: #604c3f;
	font-weight: bold;
}
@media only screen and (max-width: 991px) {
	.time th {
		padding:10px 2px;
		font-size: 14px!important;
		letter-spacing: 0.2;
	}
	.time td {
		padding:10px 2px;
		font-size: 14px!important;
	}
}
#footel{
	position: relative;
	margin:0;
	width:100%;
	font-weight:normal;
	background: #a9bf41;
}
#ft1{float: left;width: 100%;}
#ft2{float: left;width: 37.5%;}
#ft3{float: left;width: 25%;}
@media screen and (max-width:480px){
#footel {
	z-index: 9999;
	margin:0;
	position: fixed;
    bottom:0;
	width:100%;
	padding:0;
	background-color: rgba(0,0,0,0);
}
}
.st{
	background:#9A8A68;
	color: #fff;
	text-align: center;
	padding: .5em .2em;
	letter-spacing: .2em;
	font-weight: bold;
	line-height: inherit;
}
.st2-2 {
	position: relative;
	background-color: #FFF5E6;
	line-height: 1.5;
	border-top: 6px dotted #E7DA2A;
	border-bottom: 6px dotted #E7DA2A;
	padding: 0.4em;
	text-align: center;
	letter-spacing: 0.2em;
	font-weight: 600;
	color:#553817;
}
.st2 {
	position: relative;
	padding-top: 26px;
	padding-bottom: 10px;
	text-align: center;
	width: 100%!important;
	line-height: 1.2;
	z-index: 0;
}
.st2 span {
	z-index: 2;
	display: inline-block;
	padding: .2em .4em .4em;
}
.st2::before {
	content: attr(data-en);
	position: absolute;
	top: -.6em;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.6em;
	font-weight: bold;
	z-index: -1;
	font-family: 'Zen Maru Gothic', sans-serif;
	color: #BB5F05;
}
@media screen and (max-width: 480px) {
	.st2::before {
		top: -.2em;
		font-size: 0.6em;
	}
}


.st2b {
	position: relative;
	padding-top: 26px;
	padding-bottom: 50px;
	text-align: center;
	width: 100%!important;
	line-height: 1.2;
	z-index: 0;
}
.st2b span {
	z-index: 2;
	display: inline-block;
	padding: .2em .4em .4em;
}
.st2b::before {
	content: attr(data-en);
	position: absolute;
	top: -.6em;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.6em;
	font-weight: bold;
	z-index: -1;
	font-family: 'Zen Maru Gothic', sans-serif;
	color: #BB5F05;
}
@media screen and (max-width: 480px) {
	.st2b::before {
		top: -.2em;
		font-size: 0.6em;
	}
}

.st2c {
	position: relative;
	padding-top: 20px;
	border-bottom: 4px solid #9ccc72;
	z-index: 2;
}

.st3 {
    --x-gradient: linear-gradient(90deg, #333 0 10px, transparent 0 calc(100% - 10px), #333 calc(100% - 10px));
    --y-gradient: linear-gradient(#333 0 10px, transparent 0 calc(100% - 10px), #333 calc(100% - 10px));
    position: relative;
    padding: 1rem;
    margin-bottom: 0.2rem;
    background-image:
        var(--x-gradient),
        var(--y-gradient),
        var(--x-gradient),
        var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
    background-position: top, right, bottom, left;
    font-weight: bold;
    text-align: center;
}


.stf {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 10px;
	line-height: 1.5;
	border-radius: 10px;
	letter-spacing: 0.1em;
	font-weight: bold;
	margin-bottom: 1em;
}
.stf::before{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 1rem 0.8rem 1rem 0.8rem;
	position: absolute;
	bottom:-26px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 2;
}
.stfc1{background-color: #a9bf41;}
.stfc1::before{border-color:  #a9bf41 transparent transparent transparent;}
.stfc2{background-color: #D99393;}
.stfc2::before{border-color:  #D99393 transparent transparent transparent;}
.stfc3{background-color: #fff;color: #553817;}
.stfc3::before{border-color:  #fff transparent transparent transparent;}
.stfc4{background-color: #E37E30;}
.stfc4::before{border-color:  #E37E30 transparent transparent transparent;}

.stf2 {
    position: relative;
	display: inline-block;
	background-color: #FFFFFF;
    color: #7D6C36;
    text-align: center;
    padding: 15px;
	line-height: 1.5;
	border-radius: 10px;
	letter-spacing: 0.1em;
	font-weight: 300;
}
.stf2:before{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 1rem 0.8rem 1rem 0.8rem;
	border-color:  #FFFFFF transparent transparent transparent;
	position: absolute;
	bottom:-30px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 2;
}
.stf2-2 {
    position: relative;
	display: inline-block;
	background-color: #ecc431;
    color: #7D6C36;
    text-align: center;
    padding: 15px;
	line-height: 1.5;
	border-radius: 10px;
	letter-spacing: 0.1em;
	font-weight: 300;
}
.stf2-2:before{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 1rem 0.8rem 1rem 0.8rem;
	border-color:  #ecc431 transparent transparent transparent;
	position: absolute;
	bottom:-30px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 2;
}
.st4 {
	position: relative;
    margin-bottom: 0.5rem;
    padding-bottom: .7rem;
    background-image: repeating-linear-gradient(45deg, transparent 0 3px, #B77452 3px 6px);
    background-repeat: no-repeat;
    background-size: 100% 0.5rem;
    background-position: bottom;
    font-weight: bold;
	line-height: 2;
}
.st7{
	position: relative;
	color: #fff;
	padding:0.4em 0.2em 0.4em 1.4em;
	font-weight: bold;
	background: #5F936B;
	border-radius: 4px;
	letter-spacing: .05em;
}
.st7::after {
     position: absolute;
     top: 50%;
     left:0;
     transform:translateY(-50%);
     content: '';
     width: 1em;
     height:2px;
     background-color:#fff;
}
.st8 {
	position: relative;
	padding: 0 50px;
	text-align: center;
	z-index: 0;
	line-height: 1;
}
.st8:before {
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 100%;
	height: 3px;
	content: '';
	background: #4D3E19;
	z-index: -1;
	display: inline-block;
}
.st8:after {
	position: absolute;
	bottom: calc(50% - 10px);
	left: 0;
	width: 100%;
	height: 3px;
	content: '';
	background: #4D3E19;
	z-index: -2;
}
.st8 span {
	position: relative;
	padding: 0 1em;
	background: #FFF2CA;
	z-index: -1;
	display: inline-block;
}
.st8c1 span {background: #FFF2CA;}
.st8c2 span {background: hsla(0,100%,78%,0.00);}



table.com{
	margin:0 auto;
	width:100%;
    border-collapse:separate;
    border-spacing:6px;
    empty-cells:show;
}
.com th{
	font-size: 16px;
	letter-spacing: 0.1em!important;
    padding:1em;
	color: #333;
	font-weight: 600;
	text-align: center;
}
.com td{
	font-size: 16px;
	color: #333; 
	padding: 1em;
	font-weight: 400;
	text-align: right;
}
@media screen and (max-width:480px){
	.com th,.com td{
		width: 100%;
		font-size: 14px;
		display: block;
		padding: .6em;
	}
}
table.com2{
	margin:0 auto;
	padding: 4px;
	width:100%;
    border-collapse:separate;
    border-spacing:6px;
    empty-cells:show;
}
.com2 th{
	font-size: 14px;
	letter-spacing: 1px;
    padding:1em;
    text-align:center;
	color: #333;
}
.com2 td{
	font-size: 14px;
	color: #333; 
    padding:1em;
}


table.price2{
    margin: 0 auto 15px;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
   
}
.price2 th{
    font-size: 16px;
    letter-spacing: 1px;
    padding: 1em 0.5em;
    background: #C0D18B!important;
    color: #333;
    vertical-align: middle;
    border-bottom: 2px solid #fff;
	font-family: 'Zen Maru Gothic', sans-serif;
    font-weight:700; 
}

.price2 td{
	font-size:15px;
	color:#333;
	padding:1.2em 1.2em;
	vertical-align: middle;
	font-weight: 400;
}
.price2 td {background: #fff;}
.price2 tr:nth-child(even) td, tr:nth-child(even) th {background: #f3eee9;}


.price2-tateline{
	 border-right: 2px solid #ECDADA;
}



.bg-top{background:  url("../img/top/tri.webp") repeat-x left bottom / auto, #f2ebc6;}
.bgpt{background: url("../img/top/pt.webp") repeat center / 5%;}
@media screen and (max-width:480px){.bgpt{background: url("../img/top/pt.webp") repeat center / 10%;}}
.bgpt2{background: url("../img/top/pt2.webp") repeat center / 5%;}
@media screen and (max-width:480px){.bgpt2{background: url("../img/top/pt2.webp") repeat center / 10%;}}
.bgpt3{background: url("../img/top/pt3.webp") repeat center / auto;}
@media screen and (max-width:480px){.bgpt3{background: url("../img/top/pt3.webp") repeat center / auto;}}

.disc{
	list-style: disc!important;
	color: #45340C;
	font-weight: 400!important;
}
.disc li{
	margin-bottom: .5em;
	font-weight: 500;
	font-size: 0.94rem;
}
.disc li:last-child{
	margin-bottom: 0!important;
}
.disc2 li{
	margin-bottom: .2em;
	font-weight: 500;
	font-size: 0.94rem;
}
.radius-b{
	border-radius:20px;
}
.wrap{
	position: relative;
}
#pic{
	clear:both;
	margin:0;
	padding:0;
	width:100%;
	height:350px;
}
#picin{
	position: relative;
	clear:both;
	margin:0 auto;
	padding:0;
}
#pict{
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
#pict{
	width: 80%;
	background: url("../img/top/g.webp") no-repeat top center / contain;
    text-align: center;
	padding-bottom:40px;
}
@media screen and (max-width:480px){
	#pict{
		width: 100%;
		padding-bottom:10px;
	}
}
#pic ul,#pic li {
	float:left;
	list-style: none;
	margin: 0;
	padding:0;
}
#back-top{
	position: fixed;
	bottom: 10vh;
	right: 3%;
	z-index: 9999;
}
#back-top a{
	width: 40px;
	height: 40px;
	background: rgba(89,156,129,0.6);
	display: block;
	color: #fff;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	text-decoration: none;
}
.apb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1.2em;
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
	border-radius: 0.8em;
	text-align: center!important;
}
.apb::before {
  content: '';
  position: absolute;
  top: 0.4em;
  left: 0.4em;
  width: calc(100% - 0.8em);
  height: calc(100% - 0.8em);
  border: 2px dashed #fff;
  transition: 0.2s;
	border-radius: 0.8em;
}
.apb::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
.apb:hover::before {
  top: 0.6em;
  left: 0.6em;
  width: calc(100% - 1.2em);
  height: calc(100% - 1.2em);
}
.apb:hover {color: #fff;}

.ap1 .apb  {background-color: #E0BE2F;}
.ap2 .apb  {background-color: #ff9090;}

.supt{
  position: relative;
  display: inline-block;
  padding: 0 45px;
	color: #362602;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}
.supt:before, .supt:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #45401C;
}
.supt:before {
  left:0;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.supt:after {
  right: 0;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.tit{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}
.tit::before,.tit::after{
	content: "";
	width: 436px;
	height: 60px;
}
.tit::before {
	margin-right: 40px;
}
.tit::after {
	margin-left: 40px;
}

.tita::before,.tita::after{
	background: url("../img/top/tita.webp") no-repeat center / contain;
}
.titr::before,.titr::after{
	background: url("../img/top/titr.webp") no-repeat center / contain;
}
@media screen and (max-width:1391px){.tit::before,.tit::after{width: 30%;}}
@media screen and (max-width:1299px){
	.tit::before,.tit::after{width: 24%;}
	.tit::before {margin-right: 20px;}
	.tit::after {margin-left: 20px;}
}
@media screen and (max-width:754px){
	.tit{
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		position: relative;
		flex-direction: column;
	}
	.tit::after{
		content: "";
		width: 50%;
		height: 68px;
		margin-left: inherit;
	}
	.tit::before {
		margin-right: inherit;
		width: inherit;
		height: inherit;
		background: none;
	}
}
@media screen and (max-width:480px){
	.tit::after{
		content: "";
		width: 70%;
		height: 68px;
	}
}
.line01 span:after {
    background: radial-gradient(circle farthest-side, #E9AC26, #E9AC26 60%, transparent 60%, transparent);
    background-size: 10px;
    content: '';
    display: block;
    height: 10px;
    width: 100%;
}
.res{background:url("../img/top/clinicbgt.webp") no-repeat center top / auto, #F9F5E6;}
@media screen and (max-width:576px){
	.res{background:url("../img/top/clinicbgtsp.webp") no-repeat center top / contain, #F9F5E6;}
}
.res2{background:url("../img/top/clinicbgt2.webp") no-repeat center top / auto, #D9E5A3;}
@media screen and (max-width:576px){
	.res2{background:url("../img/top/clinicbgtsp2.webp") no-repeat center top / contain, #D9E5A3;}
}
.res3{background:url("../img/top/tri4.webp") repeat-x left bottom / auto, url("../img/top/clinicbgt3.webp") no-repeat center top / auto, #F1EDDF;}
@media screen and (max-width:576px){
	.res3{background:url("../img/top/tri4.webp") repeat-x left bottom / auto, url("../img/top/clinicbgtsp3.webp") no-repeat center top / contain, #F1EDDF;}
}
ul.flowrec{
	display: flex;
	margin: 0!important;
	padding: 0!important;
	list-style: none;
	justify-content: space-between;
}
.flowrec li{
	width: calc(25% - 20px);
	padding: 1.5em;
	background: #fff;
	border-radius: 20px;
	box-sizing: border-box;
	position: relative;
	font-size: 1rem;
	font-family: 'Noto Sans JP', sans-serif;
	color: #333333;
	font-weight: 500;
}
.flowrec li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid #fff;
  z-index: 2;
}
.flowrec li:last-child::before {
  display: none;
}
@media screen and (max-width: 991px) {
	ul.flowrec{
		flex-direction: column;
	}
	.flowrec li{
		width: 100%;
		padding: 1em;
		border: solid 3px #fff;
		margin-bottom: 2.5em;
	}
	.flowrec li::before {
		top: auto;
		right: auto;
		margin-top: auto;	
		bottom: -24px;
		left: 50%;
		margin-left: -15px;
		border: 10px solid transparent;
		border-top: 12px solid #FFF;
	}
}
.step{
	display: block;
	font-weight: bold!important;
	background-color: #a9bf41;
	color: #fff;
	letter-spacing: .1275rem!important;
	padding: .2em .5em;
	text-align: center;
	border-radius: 6px;
}
.border-d{border: double 10px #BFD1B1;}

#child{
	position: relative;
	z-index: 0;
	padding-top: 1.6em;
}
#child::before{
	content: "";
	position: absolute;
	margin: auto;
	top:0;
	left: 50%;
	transform: translateX(-50%);
	height: 204px;
	width: 100%;
	background: url("../img/top/chibg.webp") no-repeat center top / contain;
	z-index: -1;
}
#child p{
	font-size: 16px;
}
@media screen and (max-width: 576px){
	#child{
		padding-top: .5em;
	}
	#child::before{
		margin: auto;
		top:-.6em;
		background: url("../img/top/chibg.webp") no-repeat center top / contain;
		height: 200px;
		width: 118%;
	}
	#child p{
		font-size: 14px;
	}
}
.stsec{
	height: 42px;
	border: none;
}
.stsec::before{
	position: absolute;
	content: "";
	botom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url("../img/top/sec.webp") repeat-x center bottom / 80%;
	width: 100%;
	height: 42px;
}
@media screen and (max-width: 480px){
	.stsec::before{
		background: url("../img/top/sec.webp") repeat-x center bottom / 200%;
	}
}
.boxbg{
    position: relative;
    padding: 0 4% 30px;
    box-sizing: border-box;
	z-index: 1;
}
.boxbg::before{
    position: absolute;
    display: block;
    content: "";
    background: #fff;
	border-radius: 20px;
    background-size: 100% auto;
    width: 100%;
    height: calc(100% - 2rem);
    bottom: 0;
    left: 0;
    z-index: -1;
}

.bord2{border: 8px dotted #fff;}
@media screen and (max-width: 480px){
	.bord2{border: 6px dotted #fff;}
}

.voice1 {
  display: inline-block;
  position: relative; 
  margin: 0;
  padding: 10px;
  max-width: 1100px;
  border-radius: 12px;
  background: #fff;
}
.voice1:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px; 
  left: -19px;
  border: 8px solid transparent;
  border-right: 18px solid #fff;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}
.voice2 {
  display: block;
  position: relative; 
  margin: 0;
  padding: 8px;
  max-width: 1100px;
  border-radius: 12px;
  background: #FFF8CF;
}
.voice2:after {
  content: "";
  position: absolute;
  top: 3px; 
  right: -19px;
  border: 8px solid transparent;
  border-left: 18px solid #FFF8CF;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
}

/*accordion*/

summary {
    list-style: none;
    position: relative;
    margin-bottom: 20px;
    padding: 20px;
    cursor: pointer;
    border-bottom: 1px solid #B5B5B5;
    font-weight: bold;
}

summary::-webkit-details-marker {
	display: none;
}



summary::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	transition: transform 0.5s;
	font-size: 30px;
	color: rgba(88,18,18,1.00)
}

details[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.answer {
	padding: 0px 0px;
}

details[open] .answer {
	animation: fadein 0.5s ease;
}

@keyframes fadein {
	0% { opacity: 0; }
	100% { opacity: 1; }
}


.heading14 {
	position: relative;
	padding-left: 70px;
	font-size: 20px;
}

.heading14::before {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: rgba(237,231,175,0.86);
	font-size: 50px;
}

.heading14::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 70px;
	height: 1px;

}

.swipbox{
	padding: 1.5em;
	background: #fff;
	border-radius: 20px;
	box-sizing: border-box;
	position: relative;
	font-size: 1rem;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 500;
	margin-bottom: 30px;
}
.swipbox::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid #fff;
  z-index: 2;
}
.swipbox:last-child::before {
  display: none;
}

/*==================slide==================*/

#slider-area{
	position: relative;
	z-index: 0;
    width:100%;
    height: 100%;
	overflow: hidden;
}

#slider-area #slider{
	position: relative;
	z-index: 0;
    width:100%;
    height:50vw;
	overflow: hidden;
}
@media screen and (max-width:576px){
#slider-area #slider{
    height:150vw;
}
}
