@charset "UTF-8";
/******************************************************************************
PC画面の範囲で、サイズを滑らかに変化させるmixin

$type: css のプロパティ(font-size, width など)
$val : 指定したプロパティに対する値(単位はpx)　※マイナスの値だと正しく動作しません

$max_view(1919px)のとき、$val に
$min_view(751px) のとき、$val の半分の値になるよう、変化する

例：liquid(font-size,36) の場合、
画面幅 751pxで フォントサイズ 18px　～　画面幅 1919pxで フォントサイズ 36px
になるように変化する
********************************************************************************/
/******************************************************************************
PC画面の範囲で、サイズを滑らかに変化させるmixin2

$min : 指定したプロパティに対する値の最小値(単位はpx)　※マイナスの値だと正しく動作しません
$val : 指定したプロパティに対する値(単位はpx)　※マイナスの値だと正しく動作しません

@mixin liquidとほぼ同じだが、最小値を指定可能
********************************************************************************/
/******************************************************************
 * 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%;
}


footer{
    position: relative;	
	width:100%;
    background: #a6cc74;
}
.transition {
    position: relative;
    top: 150px;
	z-index: -1;
}
footer::before {
    content: "";
    position: absolute;
    top: -450px;
    left: 30px;
    width: 503px;
    height: 406px;
    background-image: url(../img/footer-ira01.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 100;
}

@media screen and (max-width:1200px) {
footer::before {
    top: -200px;
    left: 30px;
    width: 300px;
    height: 250px;
    background-size: 100%;
}
}

@media screen and (max-width: 1100px) {
.transition {
    top: 30px;
}
}
@media screen and (max-width: 765px) {
.transition {
    top: 10px;
}
footer::before {
  top: -130px;
  left: unset;
  right: 30px;
  width: 180px;
  height: 150px;
  background-size: 100%;;
}
}



html {
  box-sizing: border-box;
  font-family: sans-serif;
  margin-top: -0px!important;	
}

html * {
  box-sizing: inherit;
}

body {
  position: relative;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  color: #4d392f;
  font-weight: 500;
  line-height: 1.4;
  background: transparent;
  letter-spacing: 0px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 16px;
  }
}

body.fixed {
  width: 100%;
  height: 100vh;
  overflow: visible;
}

ul, ol {
  list-style-type: none;
}

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

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

strong {
  font-style: normal;
  font-weight: 700;
}

p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

ul li{
	font-size:18px;
}

ol li{
	font-size:18px;
	margin-bottom: 15px;
	line-height: 1.7;
}


@media screen and (max-width: 750px) {
p.text {
    font-size: 16px;
}
ul li{
	font-size:16px;
}
ol li{	
font-size:16px;	
}	
}

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

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

caption, th, td {
  text-align: left;
  font-weight: 500;
  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;
}

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

main {
  display: block;
}
main.main.about {
  display: block;
}


@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: 751px) {
  .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;
  }
}



.mgt0{
	 margin-top: 0px!important;
}
.mgt10{
	 margin-top: 10px!important;
}
.mgt20{
	 margin-top: 20px!important;
}
.mgt30{
	 margin-top: 30px!important;
}
.mgt40{
	 margin-top: 40px!important;
}
.mgt50{
	 margin-top: 50px!important;
}
.mgt60{
	 margin-top: 60px!important;
}
.mgt100{
	 margin-top: 100px!important;
}
.mgt150{
	 margin-top: 150px!important;
}
.mgt200{
	 margin-top: 200px!important;
}


.mgb0{
	 margin-bottom: 0px!important;
}
.mgb10{
	 margin-bottom: 10px!important;
}
.mgb20{
	 margin-bottom: 20px!important;
}
.mgb30{
	 margin-bottom: 30px!important;
}
.mgb40{
	 margin-bottom: 40px!important;
}
.mgb50{
	 margin-bottom: 50px!important;
}
.mgb60{
	 margin-bottom: 60px!important;
}
.mgb80{
	 margin-bottom: 80px!important;
}
.mgb100{
	 margin-bottom: 100px!important;
}
.mgb150{
	 margin-bottom: 150px!important;
}
.mgb200{
	 margin-bottom: 200px!important;
}



.mgr0{
	 margin-right: 0px!important;
}
.mgr10{
	 margin-right: 10px!important;
}
.mgr20{
	 margin-right: 20px!important;
}
.mgr30{
	 margin-right: 30px!important;
}
.mgr40{
	 margin-right: 40px!important;
}
.mgr50{
	 margin-right: 50px!important;
}
.mgr60{
	 margin-right: 60px!important;
}
.mgr100{
	margin-right: 100px!important;
}
.mgr150{
	 margin-right: 150px!important;
}
.mgr200{
	 margin-right: 200px!important;
}


.mgl0{
	 margin-left: 0px!important;
}
.mgl10{
	 margin-left: 10px!important;
}
.mgl20{
	 margin-left: 20px!important;
}
.mgl30{
	 margin-left: 30px!important;
}
.mgl40{
	 margin-left: 40px!important;
}
.mgl50{
	 margin-left: 50px!important;
}
.mgl60{
	 margin-left: 60px!important;
}
.mgl100{
	margin-left: 100px!important;
}
.mgl150{
	 margin-left: 150px!important;
}
.mgl200{
	 margin-left: 200px!important;
}

.pd05{
    padding: 0px 5px;
}

@media screen and (max-width: 750px) {
.mgt0{
	 margin-top: 0px!important;
}	
.mgt10{
	 margin-top: 5px!important;
}	
.mgt20{
	 margin-top: 10px!important;
}	
.mgt30{
	 margin-top: 15px!important;
}
.mgt40{
	 margin-top: 20px!important;
}
.mgt50{
	 margin-top: 25px!important;
}	
.mgt60{
	 margin-top: 30px!important;
}
.mgt100{
	 margin-top: 50px!important;
}
.mgt150{
	 margin-top: 90px!important;
}
.mgt200{
	 margin-top: 100px!important;
}
	
.mgb0{
	 margin-bottom: 0px!important;
}		
.mgb10{
	 margin-bottom: 5px!important;
}	
.mgb20{
	 margin-bottom: 10px!important;
}	
.mgb30{
	 margin-bottom: 15px!important;
}	
.mgb40{
	 margin-bottom: 20px!important;
}
.mgb50{
	 margin-bottom: 25px!important;
}	
.mgb60{
	 margin-bottom: 30px!important;
}
.mgb80{
	 margin-bottom: 40px!important;
}	
.mgb100{
	 margin-bottom: 50px!important;
}
.mgb150{
	 margin-bottom: 90px!important;
}
.mgb200{
	 margin-bottom: 100px!important;
}

	
.mgr0{
	 margin-right: px!important;
}
.mgr10{
	 margin-right: 5px!important;
}
.mgr20{
	 margin-right: 10px!important;
}
.mgr30{
	 margin-right: 20px!important;
}
.mgr40{
	 margin-right: 20px!important;
}
.mgr50{
	 margin-right: 25px!important;
}
.mgr60{
	 margin-right: 30px!important;
}
.mgr100{
	 margin-right: 50px!important;
}
.mgr150{
	 margin-right: 90px!important;
}
.mgr200{
	 margin-right: 100px!important;
}


.mgl0{
	 margin-left: 0px!important;
}	
.mgl10{
	 margin-left: 5px!important;
}
.mgl20{
	 margin-left: 10px!important;
}
.mgl30{
	 margin-left: 20px!important;
}
.mgl40{
	 margin-left: 20px!important;
}
.mgl50{
	 margin-left: 25px!important;
}
.mgl60{
	 margin-left: 30px!important;
}
.mgl100{
	margin-left: 50px!important;
}
.mgl150{
	 margin-left: 90px!important;
}
.mgl200{
	 margin-left: 100px!important;
}	
}	

/*パディング*/
.pdt0{
	 padding-top: 0px!important;
}
.pdt10{
	 padding-top: 10px!important;
}
.pdt20{
	 padding-top: 20px!important;
}
.pdt30{
	 padding-top: 30px!important;
}
.pdt40{
	 padding-top: 40px!important;
}
.pdt50{
	 padding-top: 50px!important;
}
.pdt60{
	 padding-top: 60px!important;
}
.pdt100{
	 padding-top: 100px!important;
}
.pdt150{
	 padding-top: 150px!important;
}
.pdt200{
	 padding-top: 200px!important;
}


.pdb0{
	 padding-bottom: 0px!important;
}
.pdb10{
	 padding-bottom: 10px!important;
}
.pdb20{
	 padding-bottom: 20px!important;
}
.pdb30{
	 padding-bottom: 30px!important;
}
.pdb40{
	 padding-bottom: 40px!important;
}
.pdb50{
	 padding-bottom: 50px!important;
}
.pdb60{
	 padding-bottom: 60px!important;
}
.pdb80{
	 padding-bottom: 80px!important;
}
.pdb100{
	 padding-bottom: 100px!important;
}
.pdb150{
	 padding-bottom: 150px!important;
}
.pdb200{
	 padding-bottom: 200px!important;
}



.pdr0{
	 padding-right: 0px!important;
}
.pdr10{
	 padding-right: 10px!important;
}
.pdr20{
	 padding-right: 20px!important;
}
.pdr30{
	 padding-right: 30px!important;
}
.pdr40{
	 padding-right: 40px!important;
}
.pdr50{
	 padding-right: 50px!important;
}
.pdr60{
	 padding-right: 60px!important;
}
.pdr100{
	padding-right: 100px!important;
}
.pdr150{
	 padding-right: 150px!important;
}
.pdr200{
	 padding-right: 200px!important;
}


.pdl0{
	 padding-left: 0px!important;
}
.pdl10{
	 padding-left: 10px!important;
}
.pdl20{
	 padding-left: 20px!important;
}
.pdl30{
	 padding-left: 30px!important;
}
.pdl40{
	 padding-left: 40px!important;
}
.pdl50{
	 padding-left: 50px!important;
}
.pdl60{
	 padding-left: 60px!important;
}
.pdl100{
	padding-left: 100px!important;
}
.pdl150{
	 padding-left: 150px!important;
}
.pdl200{
	 padding-left: 200px!important;
}

.pd05{
    padding: 0px 5px;
}

@media screen and (max-width: 750px) {
.pdt0{
	 padding-top: 0px!important;
}	
.pdt10{
	 padding-top: 5px!important;
}	
.pdt20{
	 padding-top: 10px!important;
}	
.pdt30{
	 padding-top: 15px!important;
}
.pdt40{
	 padding-top: 20px!important;
}
.pdt50{
	 padding-top: 25px!important;
}	
.pdt60{
	 padding-top: 30px!important;
}
.pdt100{
	 padding-top: 50px!important;
}
.pdt150{
	 padding-top: 90px!important;
}
.pdt200{
	 padding-top: 100px!important;
}
	
.pdb0{
	 padding-bottom: 0px!important;
}		
.pdb10{
	 padding-bottom: 5px!important;
}	
.pdb20{
	 padding-bottom: 10px!important;
}	
.pdb30{
	 padding-bottom: 15px!important;
}	
.pdb40{
	 padding-bottom: 20px!important;
}
.pdb50{
	 padding-bottom: 25px!important;
}	
.pdb60{
	 padding-bottom: 30px!important;
}
.pdb80{
	 padding-bottom: 40px!important;
}	
.pdb100{
	 padding-bottom: 50px!important;
}
.pdb150{
	 padding-bottom: 90px!important;
}
.pdb200{
	 padding-bottom: 100px!important;
}

	
.pdr0{
	 padding-right: px!important;
}
.pdr10{
	 padding-right: 5px!important;
}
.pdr20{
	 padding-right: 10px!important;
}
.pdr30{
	 padding-right: 20px!important;
}
.pdr40{
	 padding-right: 20px!important;
}
.pdr50{
	 padding-right: 25px!important;
}
.pdr60{
	 padding-right: 30px!important;
}
.pdr100{
	 padding-right: 50px!important;
}
.pdr150{
	 padding-right: 90px!important;
}
.pdr200{
	 padding-right: 100px!important;
}


.pdl0{
	 padding-left: 0px!important;
}	
.pdl10{
	 padding-left: 5px!important;
}
.pdl20{
	 padding-left: 10px!important;
}
.pdl30{
	 padding-left: 20px!important;
}
.pdl40{
	 padding-left: 20px!important;
}
.pdl50{
	 padding-left: 25px!important;
}
.pdl60{
	 padding-left: 30px!important;
}
.pdl100{
	padding-left: 50px!important;
}
.pdl150{
	 padding-left: 90px!important;
}
.pdl200{
	 padding-left: 100px!important;
}	
}



	
.tac {
    text-align: center;
}

.jcc {
    justify-content: center;
}


.flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.flex.rgt {
   justify-content: flex-start;
}
.flex.lft {
    justify-content: flex-end;
}

.two-column {
    display: flex;
    justify-content: space-between;	
}

.colum20 {
    width: 15%;
}
.colum30 {
    width: 25%;
}
.colum40 {
    width: 35%;
}
.colum50 {
    width: 45%;
}
.colum60 {
    width: 55%;
}
.colum70 {
    width: 65%;
}
.colum80 {
    width: 75%;
}

@media screen and (max-width: 767px) {
.two-column {
    display: flex;
	flex-direction: column;	
    align-items: center;
}	
.colum20 {
    width: 100%;
}
.colum30 {
    width: 100%;
}
.colum40 {
    width: 100%;
}
.colum50 {
    width: 100%;
}
.colum60 {
    width: 100%;
}
.colum70 {
    width: 100%;
}
.colum80 {
    width: 100%;
}
}


span.red {
    color: #d92424;
}
span.bk-y {
    background: #fff78b;
    font-weight: 500;
}

/******************************************************************
 * ヘッダー
******************************************************************/
/*.header {
    position: fixed;
    z-index: 500;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
	height: 60px;
    padding: 15px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #eee;
}
@media screen and (max-width: 959px) {
  .header {
	height: 45px;
    padding: 15px;
}
}
.header .header-logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    width: 200px;
    line-height: 1;
}
@media screen and (max-width: 959px) {
.header .header-logo {
    width: 130px;
}
}
.header .header-content ul {
    display: flex;
}
.header .header-content li {
    list-style-type: none;
    margin-left: 5px;
}
.header .header-dl {
    margin-right: 15px;
    padding-top: 4px;
}
.header .header-dl a {
    text-decoration: none;
    color: inherit;
}*/


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

.c-wrap {
  overflow: hidden;
  position: relative;	
}

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

/*section{
	margin-bottom:100px;
}

@media screen and (max-width: 800px) {
section{
	margin-bottom:80px;
}
}*/



.c-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}


/*お知らせ*/
.info-wrap {
    display: flex;
	justify-content: space-between;
}
.inner1340 {
    max-width: calc(1340px + 10%);
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}
.contentbox.news {
    margin-bottom: 0;
    width: 48%;
}
.por {
    position: relative;
    z-index: 1;
}
p.ttl-sub {
    color: #d4a5a5;
    font-weight: 600;
    margin-bottom: 0;
}
.contentboxnews {
    height: 300px;
    overflow-y: scroll;
    border-top: 5px dotted #ccc;
	border-bottom: 5px dotted #ccc;
    margin-top: 10px;
}
.newsbox {
    margin: 15px 15px 25px;
    line-height: 1.5em;
}
p.info-ttl a {
    color: #4d392f;
}
p.info-ttl a:hover {
    color: #b19b90;
}
p.date {
    display: inline-block;
    font-size: 0.7rem!important;
    color: #fff;
    background: #a6cc74;
    padding: 1px 10px;
    border-radius: 5px;
    margin-bottom: 3px;
}
p.info-ttl {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
}
.contentbox.blog {
    margin-bottom: 100px;
    width: 48%;
}
.contentbox.news {
    margin-bottom: 100px;
    width: 48%;
}
h3.top-news {
    font-size: 24px;
    padding: 0.3rem 2.2rem;
    margin-bottom: 10px;
    text-align: center;
}

h2.blog-ttl {
    font-size: 30px;
    padding: 20px 0px 10px;
    margin: 0px 0px 30px;
    border-bottom: dotted 5px #71bbdd;
}
.main.blog p {
    font-size: 18px;
}
h2.blog-ttl.archive {
    font-size: 26px;
}	

h2.news-ttl {
    font-size: 30px;
    padding: 20px 0px 10px;
    margin: 0px 0px 30px;
    border-bottom: dotted 5px #71bbdd;
}
.main.news p {
    font-size: 18px;
}
h2.news-ttl.archive {
    font-size: 26px;
}
p.blog-instagram a {
    background: #7dc0de;
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    display: block;
    text-align: center;
    margin: 10px 0px;	
}

@media (max-width: 764px){
.info-wrap {
    display: flex;
	flex-direction: column;
}
.contentbox.news {
    width: 100%;
   margin-bottom: 60px;	
}	
.contentbox.blog {
    margin-bottom: 0px;
    width: 100%;
}
.contentboxnews {
    height: 200px;
    overflow-y: scroll;
    border-top: 2px dotted #ccc;
	border-bottom: 2px dotted #ccc;
    margin-top: 10px;
}
h2.blog-ttl {
    font-size: 24px;
}
h2.news-ttl {
    font-size: 24px;
}	
.main.blog p {
    font-size: 16px;
}
.main.news p {
    font-size: 16px;
}	
h2.blog-ttl.archive {
        margin-bottom: 10px;
        font-size: 16px;
}
h2.news-ttl.archive {
        margin-bottom: 10px;
        font-size: 16px;
}	
p.info-ttl {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}
.newsbox p {
	font-size: 16px;
}	
}	



/*日曜診療について*/
/* ===== Sunday Clinic Accordion ===== */
.sunday-time{
  padding: 200px 0 0px;
}

.sun-clinic-accordion {
  border-radius: 10px;
  overflow: clip;
  background: #f7c5c5;            /* ヘッダー背景に近い淡いピンク */
  display: block;
  max-width: 980px;                /* 任意 */
  margin: 0 auto;
}

/* ヘッダー */
.sun-clinic-head {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: #f3a3a4;            /* 見出し帯（やや濃いめ） */
  color: #7a2b2c;
  font-weight: 700;
}

/* デフォルトのカーソル三角を消す（Safari含む） */
.sun-clinic-accordion summary::-webkit-details-marker { display: none; }

/* 左のアイコン（！の丸） */
.sun-clinic-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #ffffff;
  position: relative;
  display: inline-block;
}
.sun-clinic-icon::after {
  content: "！";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
  color: #d15758;
}

/* ▼矢印 */
.sun-clinic-caret {
  transition: transform .25s ease;
  font-weight: 700;
  line-height: 1;
  transform-origin: 50% 45%;
}

/* 開閉で▼を回転 */
.sun-clinic-accordion[open] .sun-clinic-caret { 
	transform: rotate(180deg); 
}

/* 本文領域 */
.sun-clinic-body {
  background: #fdeff0;            /* かなり淡いピンク */
  color: #3d3d3d;
  padding: 20px 22px;
  border-top: 1px solid #f0b9ba;
}

/* 行間と余白調整 */
.sun-clinic-times > div + div { 
	margin-top: 8px; 
}
.sun-clinic-note {
	margin-top: 18px; 
}
.sun-clinic-notehead {
  display: inline-block;
  margin-bottom: 8px;
  color: #c03a3a;                   /* 赤見出し */
  font-weight: 700;
}

/* 角や影など（任意） */
.sun-clinic-accordion {
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

/* コンテナに合わせて文字が潰れないように */
.sun-clinic-body,
.sun-clinic-head { 
	word-break: break-word; 
}



@media (max-width: 960px){
.sunday-time{
  padding: 50px 0 0px;
}
	
}

@media (max-width: 765px){
.sunday-time{
  padding: 30px 0 60px 0px;
}
}


/*インフォメーション*/
/* maskで切り抜き（波・上下）*/
.mask-img-top-bottom {
 --mask:
    radial-gradient(51.61px at 50% 72px,#000 99%,#0000 101%) calc(50% - 60px) 0/120px 51% repeat-x,
    radial-gradient(51.61px at 50% -42px,#0000 99%,#000 101%) 50% 30px/120px calc(51% - 30px) repeat-x,
    radial-gradient(51.61px at 50% calc(100% - 72px),#000 99%,#0000 101%) calc(50% - 60px) 100%/120px 51% repeat-x,
    radial-gradient(51.61px at 50% calc(100% + 42px),#0000 99%,#000 101%) 50% calc(100% - 30px)/120px calc(51% - 30px) repeat-x;
  -webkit-mask: var(--mask);
          mask: var(--mask);
}
section.information {
    background: #fbf9ee;
    position: relative;
    top: -10px;
}
section.information:before {
    position: absolute;
    content: "";
    background: url(../img/information-ira03.png)no-repeat;
    width: 375px;
    height: 341px;	
    z-index: 0;
    bottom: 1000px;
    left: 0%;
}
section.information:after {
    position: absolute;
    content: "";
    background: url(../img/information-ira04.png)no-repeat;
    width: 376px;
    height: 255px;
    z-index: 0;
    bottom: 1200px;
    right: 0%;
}
.web-yoyaku-time {
    margin: 20px auto;
    padding: 30px 10px;
    background: #fff5cb;
}
h4.yoyaku-time-ttl {
    color: #5e4626;
    background: #ffffff;
    padding: 5px;
    margin: 0px 15px 10px;
}
.web-yoyaku-time .three-column {
    justify-content: center!important;
	text-align: center;
}
.web-yoyaku-time .three-column .column30{
    border-right: solid 1px #8c8c8c;
}
.web-yoyaku-time .three-column .column30:last-child {
    border-right: none;
}
h3.information-ttl {
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
    color: #ff9e02;
}
h3.information-ttl:before, h3.information-ttl:after {
    content: "●";
    padding: 0px 10px;
}

h2.ttl {
	position: relative;
    font-size: 50px;
    font-weight: 600;
    color: #bbd3de;
    text-align: center;
    letter-spacing: 5px;
    padding: 30px 0px;
}

section.information h2.ttl:before{
    position: absolute;
    content: "";
    background: url(../img/information-ira01.png)no-repeat;
    width: 168px;
    height: 122px;	
    z-index: 100;
    top: -150px;
    left: 15%;
}
section.information h2.ttl:after{
    position: absolute;
    content: "";
    background: url(../img/information-ira02.png)no-repeat;
    width: 102px;
    height: 79px;
    z-index: 100;
    top: -100px;
    right: 10%;
}
.button-container {
	position: relative;
    z-index: 1;
     display: flex;
    flex-wrap: wrap;	
    gap: 2rem;
    padding: 2rem 0px;
    justify-content: space-between;
}
.btn {
  display: flex;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  /*max-width: 800px;
  width: 48%;*/	
}

.btn:hover {
  transform: translateY(-6px);
}

.top-information-btn {
    width: 48%;
}

.icon-area {
  background-color: #bfa8a0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35%;;
  /*padding: 50px;
  flex: 0 0 80px;*/
}

/*.icon {
  font-size: 1.5rem;
}*/
/*.btn.yellow .icon-area {
    padding: 60px;
}
.btn.sky .icon-area {
    padding: 60px 66px;
}
.btn.pink .icon-area {
    padding: 50px 55px;
}
.btn.yellow .icon {
    width: 40px;
}
.btn.sky .icon {
    width: 24px;
}
.btn.pink .icon {
    width: 30px;
}
.btn.line .icon {
    width: 40px;
}*/

a.btn.yellow img {
    width: 50px;
}
a.btn.line img {
    width: 50px;
}
a.btn.sky img {
    width: 30px;
}
a.btn.pink img {
    width: 35px;
}
a.btn.orange img {
    width: 35px;
}

.text-area {
  width: 100%;
  padding: 60px 30px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 3px;
  font-weight: 600;	
}

.yellow .text-area {
   background-color: #ebca44;
   background-image: linear-gradient(203deg, #e6d280 50%, #ebca44 50%);
}

.sky .text-area {
  background-color: #71bbdd;
  background-image: linear-gradient(203deg, #abcede 50%, #71bbdd 50%);;
}

.orange .text-area {
   background-color: #e09740;
  background-image: linear-gradient(203deg, #dda664 50%, #e09740 50%);
}

.pink .text-area {
  background-color: #fcacbf;
  background-image: linear-gradient(203deg, #ffbecd 50%, #fcacbf 50%);
}

.line .text-area {
  background-color: #d59a99;
  background-image: linear-gradient(203deg, #a8cda4 50%, #9ac294 50%);
}

span.green {
    color: #a6cc74;
}
span.sky {
    color: #71bbdd;
}

@media (max-width: 1400px){
section.information:before {
	background-size:70%;
}
section.information:after {
	background-size:100%;
	width: 300px;
    height: 200px;
    bottom: 1400px;	
}	
}

@media (max-width: 1200px){
h2.ttl {
    font-size: 36px;
    letter-spacing: 5px;
    padding: 30px 0px;
}
.text-area {
    font-size: 24px;
}
}

@media (max-width: 930px) {
    .top-information-btn {
        width: 100%;
    }
}

@media (max-width: 1000px){
.text-area {
    font-size: 20px;
	text-align: center;
}
/*.icon-area {
   padding: 60px 30px;
}
.btn.yellow .icon-area {
   padding: 60px 30px;
}	
.btn.sky .icon-area {
    padding: 60px 37px;
}
.btn.pink .icon-area {
    padding: 60px 40px;
}*/	
.btn.yellow .icon {
    width: 35px;
}
.btn.sky .icon {
    width: 20px;
}
.btn.pink .icon {
    width: 20px;
}
.btn.orange .icon {
    width: 20px;
}	
section.information:before {
	background-size:50%;
    bottom: 1100px;	
}
section.information:after {
	background-size:100%;
	width: 260px;
    height: 200px;
    bottom: 1300px;	
}		
}

@media (max-width: 930px){
.top-information-btn {
    width: 100%;
}
}

@media (max-width: 765px){
.button-container {
    flex-direction: column;
    align-items: center;	
    gap: 1rem;	
}
.btn {
	width: 90%;	
    min-width: 300px;
    margin: 0 auto;	
}
.text-area {
    font-size: 25px;	
	letter-spacing: 1px;
	 padding: 1.5rem 1rem;
}
.icon {
    width: 30px;
}
/*
.icon-area {
    padding: 2rem;
    flex: 0 0 80px;
}
.btn.yellow .icon-area {
	padding: 40px 33.5px;
}
.btn.sky .icon-area {
    padding: 40px 40px;
}
.btn.pink .icon-area {
    padding: 46px 40px;
}
.btn.line .icon-area {
    padding: 37px 31px;
}
*/		
.btn.yellow.icon {
    width: 30px;
}
.btn.sky .icon {
    width: 20px;
}
		
h2.ttl {
    font-size: 28px;
    padding: 60px 0px 0px;
}
h2.ttl img {	
   width: 80%;
   margin: 0 auto;	
}
.medical-wrap h2.ttl img {	
   width: auto;
   margin: 0 auto;	
}	
	
section.information h2.ttl:before {
  background-size: 70%;
  left: 3%;
  top: -20px;;
}
section.information h2.ttl:after {
  background-size: 70%;
  right: 3%;
  top: -50px;;	
}
section.information:before {
  background-size: 100%;
  width: 160px;
  height: 200px;
  bottom: 1500px;
}	
section.information:after {
  background-size: 100%;
  width: 150px;
  height: 200px;
  bottom: 1000px;
}
	
.web-yoyaku-time{
	width: 90%;	
}	
.web-yoyaku-time .three-column .column30{
    border-right: none;
	margin-bottom:20px
}
.web-yoyaku-time .three-column .column30:last-child {
    border-right: none;
}
h3.information-ttl {
    text-align: center;
    font-size: 18px;
}		
}


h3.ttl-time {
	position:relative;
	z-index:10;
	font-size: 24px;
	font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;	
    color: #4d392f;	
	text-align: center;
}
h3.ttl-tantoui {
    font-size: 24px;
	font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;	
    color: #4d392f;	
	text-align: center;
}
h3.ttl-tantoui:before,h3.ttl-tantoui:after {
    content: "---";
    color: #71bbdd;
    padding: 0px 15px;
}
h3.ttl-time:before,h3.ttl-time:after {
    content: "---";
    color: #71bbdd;
    padding: 0px 15px;
}
@media screen and (max-width: 750px) {
h3.ttl-tantoui {
    font-size: 22px;
    margin-bottom: 10px;
	margin-top: 25px;
    text-align: center;
}
h3.ttl-time{
    font-size: 22px;
    margin-bottom: 10px;
	margin-top: 25px;
    text-align: center;
}	
}	




.info-boxes {
 /* position:relative;
  z-index:10;*/
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.info-boxes a {
    width: 31%;
}
.information-box {
  position: relative;
  width: 100%;
  padding: 30px 20px;
  border: 2px solid #d3c3b9;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.5s ease; /* 0.5秒かけてなめらかに変化 */	
}
.time-information{
  position: relative;
  z-index:10;
}

.information-box.machi:hover {
    background: #f08080;
}
.information-box.line:hover {
    background: #8fbc8f;
}
.information-box.komi:hover {
    background: #c0a591;
}
.information-box h2 {
  font-size: 24px;
  font-weight:600;
  margin-bottom: 10px;
  color: #4d392f;
  text-align: center;
  letter-spacing: 2px;
}
.information-box p {
  font-size: 15px;
  text-align: center;
  color: #333333;
}
.corner {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 40px;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.corner.red {
  background-color: #f08080;
}
.corner.green {
  background-color: #8fbc8f;
}
.corner.brown {
  background-color: #c0a591;
}
.information-wrap .c-inner.two-colum {
    padding: 100px 0px;
}

@media (max-width: 1300px){
.information-box {
  width: 100%;
}
}
@media (max-width: 1050px){
.information-box {
  width: 100%;
}
.information-box h2 {
   font-size: 22px;
}
.info-boxes {
    gap: 8px;
}	
}

@media (max-width: 765px){
.information-box h2 {
    font-size: 23px;
    margin-bottom: 10px;
}
.information-box p {
    font-size: 14px;
}
.info-boxes a {
    width:90%;
}	
.information-box {
    position: relative;
    padding: 20px 20px;
}
.info-boxes {
    gap: 5px;
	justify-content: center;
    flex-direction: column;	
	align-content: center;
}
.information-wrap .c-inner.two-colum {
    padding: 30px 15px;
}
.information-wrap {
    margin-bottom: 60px;
}
.information-wrap .column40 img{
    text-align:center;
}		
}


.information-bottom-box {
    position: relative;
    z-index: 1;
	background:#e6d5c3;
}

.information-bottom-box:after {
    content: "";
    background: url(../img/pattern_stripe.webp) repeat left top / calc(21 / 1920 * 100vw) auto;
    width: 100%;
    height: calc(120 / 1920 * 100vw);
    position: absolute;
    left: 0;
    bottom: 0;
}


/*問い合わせゾーン*/
.info-wrapper {
  background: repeating-linear-gradient(316deg, #f8f1ec, #f8f1ec 2px, #f2e5dd 2px, #f2e5dd 5px);
  padding: 80px 20px 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.info-wrapper:before{
    position: absolute;
    content: "";
	background: url(../img/information-ira05.png) no-repeat;
    width: 356px;
    height: 422px;	
    top: -420px;
    right: 0%;
	z-index:1;
}
.info-wrapper:after{
    position: absolute;
    content: "";
	background: url(../img/information-ira07.png) no-repeat;
    width: 306px;
    height: 249px;	
    z-index: 100;
    top: -150px;
    left: 0%;
	z-index:1;
}
.info-box {
  position: relative;
  z-index: 20;	
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  /*flex: 1 1 280px;*/
  /*max-width: 360px;*/
}


.info-title {
  font-size: 20px;	 
  background: #c99a97;
  color: white;
  padding: 10px 10px;
  /*border-top-left-radius: 5px;
  border-top-right-radius: 5px;*/
  font-weight: bold;
  margin: -20px -20px 10px;	
  text-align: center;
}
.info-box.access .info-title {
    background: #ede97a;
}
.info-box.tel .info-title {
    margin: -20px -20px 10px;
}
.info-box.tel {
	/*display: flex;
    flex-direction: column;*/
    width: 300px;
	max-width: 450px;
    border: solid 3px #d1d1d1;	
}

.gosoudan .info-title{
	background:#57badb;
}
.ukatsuke .info-title{
	background:#fcacbf;
}

.info-box.access {
    height: auto;
	width: 570px;
    max-width: 600px;
	padding: 20px 20px 30px 20px;
    border: solid 3px #ede97a;
}
.info-box.access .info-title{
	color:#f09509;
}


.info-box.tel .info-content {
    text-align: center;
}
.info-box.access .info-content {
    padding-left: 20px;
}
.info-content {
  font-size: 26px;
  line-height: 1.6;
  font-weight:600;	
}
.info-content p {
  font-size: 18px;
  line-height: 1.6;
  font-weight:600;	
}

.info-box.access .info-content img {
    width: 25px;
    margin-right: 15px;
}
/*.icon {
  font-size: 20px;
  margin-right: 6px;
  margin-bottom: 10px;	
  color: #c99a97;
}*/
.info-box.tel .info-content .icon {
  font-size: 20px;
  margin-right: 6px;
  margin-bottom: 10px;	
  color: #c99a97;
}
.info-box.tel .info-content .icon img {
    width: 18px;
    margin-bottom: 5px;	
}
.map-btn {
    display: inline-block;
    margin: 0px 0px -15px 25px;
    font-size: 12px;
    line-height: 1;
    background: #c4a99c;
    color: white;
    text-decoration: none;
    padding: 18.5px 16.5px;
    border-radius: 100vw;
    text-align: center;
}
.payment .icon-area {
    background: #73bb5a;
    padding: 40px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment a {
  padding: 0px 20px 0px 0px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 350px;
  border: solid 3px #73bb5a;
   transition: all 0.5s ease; /* 0.5秒かけてなめらかに変化 */	
}

.payment a:hover {
	background: #d9e3cb;
}


.arrow {
  margin-left: 0px;
	color:#73bb5a;
}

/* 丸ボタン */
.info-circle {
 position: absolute;
 right: clamp(50px, 35vw, 250px);
 bottom: -60px;
 border: solid 5px #ede97a;
 border-radius: 100vw;
}

.info-circle:hover {
    border: solid 6px #ede97a;
}

.info-circle a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
   background: #f6f9e4;
  color: #4b4141;
  text-decoration: none;
  font-weight: 500;
  width: 200px;
  height: 200px;
  padding-top: 20px;	
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  border: solid 10px #c9e4c0;	
  font-size: 18px;
  line-height: 1.7;
  flex-direction: column;
    transition: all 0.5s ease;	
}

.info-circle a:hover {
    background: #a6cc74;
}


.payment-button {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.payment .icon-area img {
  width: 32px;
}

.payment .text-area {
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
}

.arrow-area {
  padding-right: 16px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.feature-wrap h2.ttl {
    color: #584b4b;
	padding: 0px 0px 200px;
   line-height: 1.2;	
}



section.point-wrap {
    margin: 60px 0px 100px 0px;
}
span.en_ttl {
    position: relative;	
    display: block;
    font-size: 24px;
    color: #64b7dd;
	padding-bottom: 20px;
}
span.orange-ttl {
    color: #fcc800;
	font-size: 60px;
}
span.sky-ttl {
    color: #71bbdd;
	font-size: 60px;
}
span.green-ttl {
    color: #a6cc74;
	font-size: 60px;
}
span.pink-ttl {
    color: #fcacbf;
}
span.orange-ttl {
    color: #fcacbf;
}
span.green02-ttl {
    color: #a6cc74;
}



.feature-wrap span.en_ttl:before {
    position: absolute;
    content: "";
    background: url(../img/point-icon01.png) no-repeat;
    width: 37px;
    height: 69px;
    left: 50%;
    transform: translateX(300px);
    z-index: 1;
}
.feature-wrap span.en_ttl:after{
	position: absolute;
    content: "";
    background: url(../img/point-icon02.png) no-repeat;
    width: 47px;
    height: 89px;
    top: 150px;
    right: 50%;
    transform: translateX(-300px);
    z-index: 1;
}


@media (max-width: 1300px){
.info-wrapper:before{
     background-size: 100%;
     width: 280px;
     height: 355px;
     top: -320px;		
}
.info-wrapper:after{
    background-size:70%;		
}	
}	
	
	
@media (max-width: 1200px) {
.info-circle {
 right: clamp(50px, 35vw, 50px);
 bottom: -150px;  	
}	
}

@media (max-width: 1000px){
.info-wrapper:before{
     background-size: 100%;
     width: 200px;
     height: 240px;
     top: -230px;		
}
.info-wrapper:after{
    background-size:70%;		
}	

.feature-wrap span.en_ttl:after{
    top: 0px;
}	
}	

@media (max-width: 930px) {
.info-box.tel {
    height: auto;	
    width: 100%;
    max-width: unset;	
}
.info-box.access {
    height: auto;
    width: 100%;
    max-width: unset;	
}
.payment {
    width: 100%;
}
.payment a {
    width: 100%;
}	
.info-circle {
 right: clamp(50px, 35vw, 50px);
}
.info-title {
    font-size: 18px;
    padding: 20px 10px;
}

.info-content p {
    font-size: 16px;
}
.map-btn {
    margin: 0px 0px -15px 5px;
    font-size: 10px;
    line-height: 0.8;
    padding: 13px 9px;
}
.info-box.access .info-content {
    padding-left:0px;
	
}
.feature-wrap h2.ttl {
    padding: 0px 0px 150px;
}
span.orange-ttl {
    font-size: 40px;
}
span.sky-ttl {
    font-size: 40px;
}	
span.green-ttl {
    color: #a6cc74;
	font-size: 40px;
}	
}


/* レスポンシブ */
@media (max-width: 768px) {
  .info-wrapper {
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
  }
  .info-circle {
    /*position: static;*/
    margin-top: 0px;
    bottom: -100px;  
  }
.info-title {
    font-size: 16px;
    padding: 15px 10px;
}	
  .info-circle a {
    width: 150px;
    height: 150px;
    font-size: 13px;
    padding: 15px 0px 0px;
  }
.payment .icon-area {
    padding: 30px 0px;
    display: flex;
}
.payment .icon-area img {
    width: 25px;
}
section.point-wrap {
    margin-top: 0px;
}
section.point-wrap h2.ttl {
   font-size: 18px;
   letter-spacing: 0px;
   padding: 60px 0px 40px;
}
span.orange-ttl {
   font-size: 30px;
}
span.sky-ttl {
   font-size: 30px;
}	
span.en_ttl {
    font-size: 16px;
    padding-bottom: 5px;
}
	
 .info-wrapper:before {
    background-size: 100%;
    width: 150px;
    height: 180px;
    top: -80px;
}
.info-wrapper:after {
    background-size: 100%;
    width: 140px;
    height: 140px;
    top: -70px;
}
.feature-wrap span.en_ttl:before {
	background-size: 100%;
    width: 25px;
    height: 69px;
    left: unset;
    top: 60px;
    right: 3%;
    transform: translateX(0px);;
}
.feature-wrap span.en_ttl:after{
    background-size: 100%;
    width: 25px;
    height: 80px;
    top: 10px;
    left: 1%;
    right: unset;
    transform: translateX(-0px);
    z-index: 1;
}	
}



/*ポイント*/
.point-wrap .two-column {
    display: flex;
    justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}
.point-wrap .two-column {
    position: relative;
}

.point-img {
    position: relative;
    width: 30%;	
	text-align: center;
}
.point-img img {
    border-radius: 20px;
}
.point-img span{
    position: absolute;
    font-size: 150px;
    right: -50px;
    top: 30px;
}
.point-box {
    position: relative;	
    width: 65%;
    background: #d7edb9;
    padding: 40px 30px 40px 100px;
    border-radius: 40px 0px 0px 40px;
}
p.point-no {
    position: absolute;
    left: 0px;
    font-size: 130px !important;
    top: 50%;
    transform: translate(-50%, -50%);
	color: #a6cc74;
}
.point-no::before {
  content: "";
  position: absolute;
  left: -60%;
  top: 55%;
  width: 0.5em;
  height: 2px;
  background-color: #a6cc74;
  transform: translateY(-50%);
}
.point-box.pink {
    background: #edd6d6;
}
.point-box.sky {
    background: #b2e2f8;
}
.point-wrap .two-column h3.ttl {
    font-size: 33px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: dotted 8px #fff;
    display: inline-block;
	padding-bottom: 5px;
}
.point-box h3.ttl span {
    font-size: 37px;
    color: #7f341b;
}
.point-box p {
    font-size: 24px;
    line-height: 1.8;	
}

@media (max-width: 1200px) {
.point-wrap .two-column span {
    font-size: 70px;
}
.point-wrap .two-column h3.ttl {
    font-size: 28px;
}
.point-box p {
    font-size: 20px;
}
p.point-no {
	font-size: 120px !important;
}	
}	
	
@media (max-width: 768px) {	
.point-wrap .two-column {
    align-items: flex-end;
	margin-bottom: 30px;
}	
.point-wrap .two-column span {
    font-size: 50px;
    margin: 0 auto;
}
.point-box {
    width: 90%;
    padding: 40px 20px 40px 50px;
    border-radius: 40px 0px 0px 40px;	
}
.point-wrap .two-column h3.ttl {
    font-size: 22px;
}
.point-box p {
    font-size: 15px;
}
.point-box h3.ttl span {
    font-size: 24px;
}
.point-img {
	width: 95%;
}
p.point-no {
    left: 5px;
    top: 10%;	
    font-size: 80px !important;
}	
}	
	
	
	
	

/*特徴*/
/* スライダー内の各レイヤーをすべて可視化 */
.slider-pro,
.sp-mask,
.sp-slides,
.sp-slide {
  overflow: visible !important;
}

/* スライド自体を上に上げる設定 */
.sp-selected .slide-item {
  transform: translateY(-100px);
  z-index: 10;
}
.feature-wrap {
  position:relative;
  padding: 100px 0px 50px;
  position: relative;	
}

.feature-wrap:before {
    position: absolute;
    content: "";
    background: url(../img/point-ira01.png) no-repeat;
    width: 357px;
    height: 229px;
    top: -80px;
    right: 0%;
}

/* アニメーションのスムーズな動き */
.slide-item {
  position: relative;
  transition: transform 0.4s ease;
  overflow: hidden;	
}
.slide-item {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  transition: transform 0.4s ease; /* アニメーションのため追加 */
  /* overflow: hidden; ← 削除で中央スライドの上昇を見えるように */
}

/* スライド内の画像 */
.slide-item img {
  width: 100%;
  display: block;
}

/* スライド上の黒背景キャプションエリア */
.slide-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 0px 40px 20px;
  background: rgba(0, 0, 0, 0.3); /* 黒の半透明背景 */
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

/* 番号画像（01〜05など） */
.slide-number img {
  display: block;
  width: auto;
  height: 40px;
}

/* キャッチコピーの文字部分 */
.slide-text {
  font-size: 26px;
  font-weight: bold;
}

/* 各スライドの見た目に角丸を付ける（画像の切り抜き） */
.sp-slide {
  overflow: hidden;
  border-radius: 15px;
}

/* 中央スライド（選択中のスライド）だけ100px上に移動 */
.sp-selected .slide-item {
  transform: translateY(-100px);
}

.feature-circle {
 position: absolute;
 right: clamp(50px, 35vw, 600px);
 bottom: 120px;
 border: solid 6px #ece87a;
 border-radius: 100vw;
}


.feature-circle a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f6f9e4;
    color: #4b4141;
    text-decoration: none;
    font-weight: 500;
    width: 200px;
    height: 200px;
    padding-top: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: solid 10px #c9e4c0;
    font-size: 18px;
    line-height: 1.7;
    flex-direction: column;
    transition: all 0.5s ease;
}	
	
.feature-circle a:hover {
    background: #a6cc74;
}


.feature-wrap .container {
    position: relative;
}
.feature-wrap .container:before {
	position: absolute;
    content: "";
    background: url(../img/point-ira02.png) no-repeat;
    width: 378px;
    height: 218px;
    top: -170px;
    right: 50%;
    transform: translateX(-300px);
}
.feature-wrap .container:after {
    position: absolute;
    content: "";
    background: url(../img/point-ira03.png) no-repeat;
    width: 200px;
    height: 156px;
    top: -120px;
    left: 50%;
    transform: translateX(300px);
    z-index: -1;
}



@media (max-width: 1200px) {
.feature-circle {
 right: clamp(50px, 35vw, 50px);
}
.feature-wrap {
    padding: 100px 0px 150px;
}
.feature-wrap:before {
    background-size: 100%;
    width: 300px;
    height: 200px;
    top: -80px;
    right: 0%;
}
.feature-wrap .container:before	{
    width: 300px;
    height: 180px;
    top: -140px;
    left: 0;
    right: unset;
    transform: translateX(-0px);	
    background-size: 100%;	
}	
}

@media (max-width: 768px) {
.feature-wrap {
    padding: 50px 0px 80px;
    background: #fff;
}
.feature-wrap:before {
    background-size: 100%;
    width: 160px;
    height: 200px;
    top: -40px;
}	
.feature-wrap .container:before	 {
  width: 130px;
  height: 100px;
  top: -110px;
  left: 60px;
  right: unset;	
}
.feature-wrap .container:after	{
    background-size: 100%;
    width: 80px;
    height: 100px;
    top: 280px;
    left: unset;
    right: 0px;
    transform: translateX(0px);
    z-index: 0;	
}	
	
  .feature-circle {
    margin-top: 0px;
	bottom: 20px;  
	right: clamp(20px, 35vw, 20px); 
    border: solid 3px #ece87a;	  
} 
.feature-circle a {
    width: 130px;
    height: 130px;
    font-size: 13px;
    padding: 15px 0px 0px;
    border: solid 5px #a6cc74;	
  }	
.slide-text {
    font-size: 18px;
    font-weight: bold;
}
.slide-number img {
    height: 30px;
}
.slide-caption {
    padding: 20px 0px 20px 10px;
}
/* 中央スライド（選択中のスライド）だけ100px上に移動 */
.sp-selected .slide-item {
  transform: translateY(-50px);
}	
}
	

/*診療案内*/
/* 三角形 上 */
.cstm-clip-upper-kaku {
  position:relative;	
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  height:10vmin;
  background: url(../img/medical-bk.png) bottom repeat;
  margin-bottom: 0;/*下部余白を0にする*/
}
.medical-wrap {
   position:relative;	
	background: url(../img/medical-bk.png) repeat;
	padding-bottom: 100px;
}
.medical-wrap::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 30%;
    width: 102px;
    height: 79px;
    background-image: url(../img/medical-ira01.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.medical-wrap h2.ttl {
    color: #584b4b;
    padding: 0px 0px 30px;
    line-height: 1.2;
	position:relative;
}
.medical-wrap h2.ttl::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(150px);
    width: 83px;
    height: 109px;
    background-image: url(../img/medical-ira03.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.medical-wrap h3.ttl{
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 5px;
    padding: 30px 0px;	
}

p.medical-lead {
    text-align: center;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 90px;
	line-height: 2;	
}


.feature-box {
  position: relative;	
  display: block;
  border: 2px dashed #d7cfc7;
  border-radius: 10px;
  padding: 20px 30px;
  background: #fff;
  margin: 10px auto;
  max-width: 1400px;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.5s ease;
  transition: all 0.3s ease; /* 0.3秒かけてなめらかに変化 */	
}

.feature-box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #e4eef2;	
}

/* 中身のレイアウト */
.feature-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  flex-wrap: wrap;
}

/* 番号（縦書き） */
.feature-number {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #71bbdd;
  font-size: 16px;
  letter-spacing: 3px;
}

/* 画像 */
.feature-image img {
  width: 300px;
  border-radius: 12px;
  display: block;
}

/* テキストエリア */
.feature-text {
  flex: 1;
  min-width: 220px;
}

.feature-text h3 {
  font-size: 28px;
  letter-spacing: 2px;	
  font-weight: bold;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.feature-text h3 .bar {
  display: inline-block;
  width: 4px;
  height: 32px;
  background-color: #a6cc74;
  margin-right: 15px;
  border-radius: 2px;
}

.feature-text p {
  font-size: 17px;
  line-height: 2.5;
  color: #333;
}
.corner.pink {
    background-color: #d4a5a5;
}
.corner.sky {
    background-color: #71bbdd;
}
.corner.green {
    background-color: #a6cc74;
}
.corner.white02 {
    background-color: #fff;
}
.feature-image {
    margin-right: 50px;
}



@media screen and (max-width: 1400px) {
.feature-box {
    margin: 20px auto;
    max-width: 90%;
}
.feature-image {
    margin-right: 30px;
}	
}
/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
.medical-wrap::before {
    top: -40px;
    left: 12%;
    width: 60px;
    height: 60px;
    background-size: 100%;
}
.medical-wrap h2.ttl::before {
    top: 15px;
    left: unset;
    transform: translateX(0px);
    right: 15%;
    width: 45px;
    height: 55px;
    background-size: 100%;
}	
  .feature-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-number {
    writing-mode: horizontal-tb;
    transform: none;
    margin: 0px auto;
  }

  .feature-image img {
    width: 100%;
    max-width: 100%;
  }

  .feature-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .feature-text p {
    font-size: 16px;
	line-height: 2;  
  }
.feature-image {
    margin: 0 auto;
	width: 80%;
}
p.medical-lead {
    font-size: 14px;
    margin-bottom: 60px;	
}
.medical-wrap h2.ttl {
    padding: 40px 0px 10px;
}
.medical-wrap h3.ttl{
    font-size: 20px;
    color: #584b4b;
    text-align: center;
    letter-spacing: 5px;
    padding: 30px 0px 20px 0px;	
}
.corner.white02 {
    width: 30px;
    height: 20px;
}	
}


/*採用情報*/
.recruit-wrap a{
 transition: all 0.5s ease; /* 0.5秒かけてなめらかに変化 */
}

.recruit-wrap a:hover{
	opacity:0.7;
}
.recruit-wrap .two-column {
    position: relative;
}
section.recruit-wrap {
    background: #71bbdd;
    padding: 50px;
}
.recruit-wrap .column50 img {
  width: 900px;
  height: 440px;
  aspect-ratio: 4 / 2; /* 必要に応じて比率調整 */
  object-fit: cover;   /* 必要なら crop した見せ方も */
  display: block;
}
.recruit-wrap .column60 {
    position: relative;
    width: 55%;
	background-color: #fce4ea; /* 優しいピンク（必要に応じて変更OK） */
    background-image: url('../img/patten01_50.png'); /* ドット画像のパスを指定 */
    background-repeat: repeat; /* 繰り返して全面に敷き詰め */
    background-size: auto; /* 必要に応じて変更可 */
    padding: 0em 2em 0em 2em;
}
.heading06 {
	position: relative;
    padding-top: 70px;
    padding-bottom: 90px;
    font-size: 26px;
    text-align: center;
    color: #f67493;
    right: 15%;
}
.heading06 span {
	position: relative;
	z-index: 2;
}
.heading06::before {
    content: attr(data-en);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    color:#ffcad7;
    font-size: 180px;
	letter-spacing: 15px;
	color: #ffcad7;	
}
.recruit-wrap h3.ttl {
    font-size: 24px;
    font-weight: 600;
    padding-left: 4vw;
    color: #806565;
    line-height: 1.7;
}
.recruit-list {
    padding-left: 4vw;
    color: #806565;
	margin-top: 20px;
}
.recruit-list ul {
  list-style: disc;
  column-count: 2;
  column-gap: 2em; /* 列間の余白（任意） */
  width: 30vw;	
}
.recruit-list ul li {
    margin-bottom: 10px;
}
.corner.white {
    background-color: #fff;
    bottom: 0px;
    right: 0px;
    width: 500px;
    height: 180px;
}
.recruit-wrap p {
    position: absolute;
    right: 40px;
    bottom: 20px;
    line-height: 1.8;
    z-index: 1;
    color: #c99a97;
}


@media screen and (max-width: 1400px) {
.recruit-wrap .column50 img {
  aspect-ratio: 4 / 3; /* 必要に応じて比率調整 */
}
.recruit-list ul {
    width: 90%;
}
.corner.white {
    background-color: #fff;
    bottom: 0px;
    right: 0px;
    width: 250px;
    height: 150px;
}
.recruit-wrap h3.ttl {
    font-size: 20px;
}	
.recruit-wrap p {
    right: 10px;
    bottom: 15px;
    font-size: 13px;
    letter-spacing: 0px;
}
.heading06 {
    padding-top: 50px;
    padding-bottom: 80px;
    font-size: 20px;
}	
.heading06::before {
    font-size: 150px;;
}	
}

@media screen and (max-width: 768px) {
section.recruit-wrap {
    padding: 60px 20px 30px 20px;
}	
.recruit-wrap .column50 img {
    width: 500px;
    height: 200px;
}	
.recruit-wrap .column60 {
    width: 100%;
    padding: 0em 1em 0em 1em;		
}	
.heading06::before {
   font-size: 70px;
}
.heading06 {
   right: 0%;
   padding-top: 20px;
   padding-bottom: 20px;
}
.recruit-wrap h3.ttl {
    font-size: 18px;
    padding-left: 2vw;	
    line-height: 1.6;
}	
.recruit-list {
    margin-bottom: 100px;
}
.recruit-list ul {
    width: 100%;
}	
.corner.white {
    width: 300px;
    height: 100px;
}	
.recruit-wrap p {
    font-size: 11px;
    line-height: 1.5;
}	
}

.anchor-target {
  scroll-margin-top: 300px; /* ヘッダーの高さに合わせて調整 */
}

@media screen and (max-width: 768px) {
.anchor-target {
  scroll-margin-top: 150px; /* ヘッダーの高さに合わせて調整 */
}
}


/*下層ページ*/
section.contents {
    margin: 100px 0px;
}
.sub-contents {
    margin: 300px 0px 0px;
}
/* h2.title {
    text-align: center;
    font-weight: 600;
    font-size: 333.33%;
    color: #55424c;
    letter-spacing: .1em;
    background: url(../img/bdr_hdg3.svg) no-repeat center bottom / auto;
    padding: 0px 0 30px;
    position: relative;
    z-index: 1;
    margin: 80px 0px;
}
h3.title {
    font-size: 30px;
    background: #f1f1f1;
    color: #743636;
    padding: 13px 20px 13px 30px;
    background-image: linear-gradient(#c99a97 50%, #e5ab7e 50%);
    background-repeat: no-repeat;
    background-size: 0.5rem 100%;
    margin-bottom: 30px;
}
h4.title {
    font-size: 24px;
    margin: 30px 0px 10px 0px;;
    color: #b98080;
}
h5.title {
  font-size: 16px;
  color: #e26464;
  padding: 8px 12px;
  margin: 5px 0;
  line-height: 1.6;
} 
h6.title {
	font-size: 18px;
    color: #333333;
    background: #e7e7e7;
    padding: 8px 12px;
    margin: 5px 0;
    line-height: 1.6;
}*/

.sub-contents p {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.8;
}

ul.list01 {
    margin-top: 20px;
}
ul.list01 li {
	font-size: 18px;	
	margin-bottom: 10px;
    color: #333;
	line-height:1.8;
    /*padding: 5px 10px;*/
    list-style-type: disc;
    padding-left: 0.5rem;
    margin-left: 2.3rem;
    letter-spacing: 2px;
    font-weight: 500;
}
ul.list01 li::marker {
    color: #6e9715;
}


@media (max-width: 1200px) {
.sub-contents {
    margin: 250px 0px 100px;
}
}


/* 共通 */

/* -----------------------------
共通見出しスタイル
----------------------------- */

/* h2 共通 */
h2.title {
    text-align: center;
    font-weight: 600;
    font-size: 28px;
    color: #55424c;
    letter-spacing: 0.1em;
    background: url(../img/bdr_hdg3.svg) no-repeat center bottom;
    background-size: 88px 9px;
    padding: 0 0 30px;
    margin: 80px 0;
}

/* h3 共通 */
h3.title{
  font-size: 24px;
  background: #f1f1f1;
  color: #543509;
  padding: 18px 20px 18px 30px;
  background-image: linear-gradient(#71bbdd 50%, #b8d7e5 50%);
  background-repeat: no-repeat;
  background-size: 0.5rem 100%;
  margin-bottom: 20px;
  margin-top: 60px;
}

.news .sub-contents h3,.blog .sub-contents h3{
  font-size: 24px;
  background: #f1f1f1;
  color: #543509;
  padding: 18px 20px 18px 30px;
  background-image: linear-gradient(#71bbdd 50%, #b8d7e5 50%);
  background-repeat: no-repeat;
  background-size: 0.5rem 100%;
  margin-bottom: 20px;
  margin-top: 60px;
}
.main.news .sub-contents a {
    border-bottom: solid 2px #333333;
    color: #0360a5;
}

/* h4 通常 */
h4.title {
	position:relative;
	font-size: 24px;
    color: #a6cc74;
    padding: 10px 10px 10px 40px;
    margin: 40px 0 10px;
    font-weight: 600;
    line-height: 1.6;
    border-bottom: 1px solid #b3b3b3;
}

h4.title::before {
    content: "";
    position: absolute;
	top: 15px;
    left: 3px;
    width: 25px;
    height: 25px;
	background-image: url(../img/h4-title.jpg);
    background-size: contain;
    background-repeat: no-repeat;

}
.news .sub-contents h4,.blog .sub-contents h4 {
	position:relative;
	font-size: 24px;
    color: #a6cc74;
    padding: 10px 10px 10px 40px;
    margin: 40px 0 10px;
    font-weight: 600;
    line-height: 1.6;
    border-bottom: 1px solid #b3b3b3;
}
.news .sub-contents h4::before,.blog .sub-contents h4::before {
    content: "";
    position: absolute;
	top: 15px;
    left: 3px;
    width: 25px;
    height: 25px;
	background-image: url(../img/h4-title.jpg);
    background-size: contain;
    background-repeat: no-repeat;

}*/

h6.title,.news .sub-contents h6,.blog .sub-contents h6 {
	font-size: 18px;
    color: #333333;
    background: #e7e7e7;
    padding: 8px 12px;
    margin: 5px 0;
    line-height: 1.6;
}

@media (max-width: 764px) {
section.contents {
    margin: 60px 0px;
}	
.sub-contents {
    margin: 80px 0px 80px;
}
/*h2.title {
   font-size: 24px;
   padding: 0px 0 20px;
   margin: 40px 0px 20px 0px;
}*/	
h3.title,.news .sub-contents h3,.blog .sub-contents h3 {
   font-size: 18px;
   padding: 13px 10px 10px 20px;
   background-repeat: no-repeat;
   background-size: 0.5rem 100%;
   margin-bottom: 20px;
}
h4.title,.news .sub-contents h4,.blog .sub-contents h4 {
   font-size: 19px;
   margin: 25px 0px 10px 0px;
}	
h6.title,.news .sub-contents h6,.blog .sub-contents h6 {
	font-size: 15px;
    padding: 5px 12px;
}
.sub-contents p {
    font-size: 16px;
    line-height: 1.8;
}
ul.list01 {
    margin: 20px 0px;
}	
ul.list01 li{
   font-size: 16px;
   margin-bottom: 10px;
   letter-spacing: 0.5px;	
   margin-left: 1.8rem;
   padding-left: 0px;
   line-height: 1.7;	
}	
}


/* h4 質問 */
h4.qa-title {
  font-size: 20px;
  color: #743636;
  font-weight: bold;
  position: relative;
  padding-left: 30px;
  margin: 40px 0 10px;
}

h4.qa-title::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0;
  color: #e08080;
  font-weight: bold;
  font-size: 1em;
}

/* h5 共通 */
h5.title,.news h5,.blog h5 {
  position: relative;
  padding-left: 45px;
  font-weight: bold;
  font-size: 22px;
  color: #71bbdd;
  margin: 40px 0px 20px 0px;
  line-height: 1.6;
}

h5.title::before,.news h5::before,.blog h5::before {
  content: "▶";
  position: absolute;
  left: 7px;
  top: -2px;
  color: #c9e4c0;
  font-size: 1em;
}

@media (max-width: 764px) {
h5.title,.news h5,.blog h5 {
  font-size: 18px;
  padding-left: 35px;
  margin: 20px 0px 10px 0px;	
}	
}

.advice-box{
	    margin-top: 45px;
    padding: 1.2em;
    background-color: #EFEFEF;
    border-radius: 10px;
    box-sizing: border-box;
    border: 1px solid #DDD;
}

@media (max-width: 764px) {
h2.title {
   font-size: 19px;
   padding: 0px 0 20px;
   margin: 40px 0px 20px 0px;
}	
}

/* 必要に応じて h6 なども今後追加OK */


/*ここ一旦削除した*/




ul.list02{
    margin: 20px 0;
    /*padding-left: 1.5rem;*/
}
ul.list02 li{
    position: relative;
    padding: 0 0 0 38px;
	margin-bottom: 10px;
    font-size: 18px;
    color: #4d392f;
    line-height: 1.9;
 }
ul.list02 li::before{
  content: "✓";
  position: absolute;
  left: 10px;
  /*top: 50%;
  transform: translateY(-50%);*/
  color: #71bbdd;
  font-size: 18px;
  font-weight: bold;
}



@media screen and (max-width: 1000px){
ul.list02{	
        margin: 20px 0;
        padding-left: 0rem;
}
ul.list02 li{
        font-size: 16px;
        line-height: 1.6;	
}
}
	

/* point */
#point .two-column{
	position:relative;
	margin: 150px auto 0;
	align-items: center;
    display: flex;
    justify-content: space-around;	
}

#point h3.title {
    font-size: 24px;
    background: #a6cc74;
    color: #ffffff;
    padding: 18px 20px 18px 30px;
    /* background-image: linear-gradient(#ff8aa7 50%, #f7afbb 50%); */
    background-repeat: no-repeat;
    background-size: 0.5rem 100%;
    margin-bottom: 20px;
    margin-top: 0px;
    text-align: center;
}

#point .two-column:nth-of-type(odd):before{
	position: absolute;
    content: "";
    background: url(/wp-content/themes/tomiyoshi-hifu/img/point-bg-01.jpg);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    top: -60px;
    left: 250px;
    opacity: 0.3;
    z-index: -1;
}

#point .two-column:nth-of-type(even) {
	flex-direction: row-reverse;	
}

  #point .two-column:nth-of-type(even):before{
	position: absolute;
    content: "";
    background: url(/wp-content/themes/tomiyoshi-hifu/img/point-bg-01.jpg);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    top: -60px;
    right: 250px;
    opacity: 0.3;
    z-index: -1;
 }

#point .point-number-wrap {
  text-align: center;
}

#point .two-column .column50 .point-number {
    font-size: 7rem;
    text-align: center;
    color:#71bbdd;
    margin: -100px 0 -30px 0;
}

#point .point-number span{
	font-size: inherit;
	color:#b1b1b1;
}

@media screen and (max-width: 1024px) {
  #point .two-column {
    flex-direction: column;
    margin: 0px auto 0;
  }
	
  #point .two-column .column50{
    flex-direction: column;
    margin: 50px auto 0;
	width:95%;
  }	

  #point .two-column:nth-of-type(even),
  #point .two-column:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
	
  #point .two-column:nth-of-type(even):before,
  #point .two-column:nth-of-type(odd):before {
	top: 50px;
  }

  #point .point-number-wrap {
    margin-bottom: 10px;
  }

  #point .two-column .column50 .point-number {
    font-size: 4rem;
    margin: -30px 0 10px 0;
  }
}
	@media screen and (max-width: 750px) {
#point .two-column:nth-of-type(odd):before {
    left: 100px;
}
	
#point .two-column:nth-of-type(even):before {
    right: 100px;
}
		
#point .two-column .column50 .point-number {
        font-size: 4rem;
        margin: -40px 0 -15px 0;
 }
}

/* symptom */
/* 症状一覧グリッド */
#symptom .symptom-button {
  position: relative;
  height: 100%;	
}

/* 右下の三角アクセント */
#symptom .symptom-button::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #a6cc74 transparent;
  border-radius: 0 0 10px 0;
}

#symptom .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px auto;
  padding: 0 20px;
}

/* カード全体がクリック可能になるように <a> をブロック化 */
#symptom .symptom-button a {
  display: block;
  background-color: #f5f4e5;
  border-radius: 12px;
  padding: 35px 20px;
  text-align: left;
  color: #763b37;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;	
  text-decoration: none;
  border: solid 1px #cccccc;	
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);*/
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;	
}

/* ホバー時にへこむ */
#symptom .symptom-button a:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* 1024px以下：4列 */
@media (max-width: 1024px) {
  #symptom .card-grid {
    grid-template-columns: repeat(3, 1fr);
	gap:15px
  }
 #symptom .symptom-button a {
  padding: 25px 10px;
}
}

/* 767px以下：2列 */
@media (max-width: 767px) {
	#symptom h2.title {
    margin: 50px 0;
	}
	
  #symptom .card-grid {
    grid-template-columns: repeat(2, 1fr);
	gap:15px;
	padding: 0px;	
  }

  #symptom .symptom-button a {
	padding: 20px 10px;
    font-size: 0.85rem;
  }
}
/* access */
#access .sp {
  display: none;
}
#access .splide {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  background-color: #f8f9f8;
  border: 1px solid #ccc;
  padding: 30px 20px;
  box-sizing: border-box;
  border-radius: 12px;
}

#access .splide .splide__track {
  overflow: hidden;
}

#access .splide .splide__slide {
  width: 100%;
  box-sizing: border-box;
  padding: 30px 20px;
  text-align: center;
}

#access .splide figure {
  margin: 0;
}

#access .splide .img img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  border-radius: 12px;
}

#access .splide figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: #333;
  text-align: center;
}

#access figcaption {
  margin-top: 20px;
}

#access .splide__arrow--prev,
#access .splide__arrow--next {
  color: #333;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#access .splide__arrow--prev::after,
#access .splide__arrow--next::after {
  font-size: 18px;
}


#access table {
  width: 95%;
  max-width: 1000px;
  margin: 50px auto 20px;
  border-collapse: collapse;
  font-size: 16px;
  color: #333;
}

#access th,
#access td {
  padding: 12px 15px;
  border: 1px solid #ccc;
  text-align: left;
  vertical-align: middle;
  font-weight: 500;	
}

#access th {
  background-color: #a6cc74;
  color:#fff;
  white-space: nowrap;
  width: 120px;
}


#access .map-wrap {
  max-width: 1000px;
  margin: 0 auto;
  width: 95%;
}

#access .map-wrap iframe {
  width: 100%;
  height: 450px;
  display: block;
}


@media screen and (max-width: 768px) {
  #access .splide {
    padding: 20px 10px;
  }

  #access .splide .img img {
    max-height: 240px;
  }

  #access table {
    font-size: 14px;
  }

  #access .sp {
    display: block;
  }

  #access .text-left {
    text-align: left;
  }
}

/* staff */
#staff h4.title {
  text-align: center;
  font-size: 1.5em;
  margin: 2em 0 1em;
  padding: 10px 10px 10px 10px;	
  background: none;
  border: none;
  color: #71bbdd;
  font-weight: bold;
  border: dotted 2px #71bbdd;	
}

#staff h4.title::before {
  content: none;
  display: none;
}

#staff section:nth-of-type(1) {
    margin-bottom: 100px;
}

#staff .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

#staff .two-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:20px;
}

#staff .flex-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: space-between;
  padding: 2rem;
  border: 1px solid #eee; 
  border-radius: 8px; 
  background-color: #fff8f1; 
}


#staff .two-column > .flex-item:first-of-type{
  width:35%;
  text-align: center;
  margin: 0 auto;	
}

#staff .two-column > .flex-item:last-of-type{
  width:60%;
}

#staff .doctor-photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

#staff h3{
    display: block;
    padding: 15px 24px;
    line-height: 1.4;
    font-size: 130%;
    font-weight: bold;
    color: #55424c;
    background-color: #c9e4c0;
    border-radius: 6px;
}

#staff .director-sign-wrapper {
  text-align: right;
  margin-top: 30px;
}

#staff .director-sign {
  display: inline-block;
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  color: #8b6c4b;
}


#staff .director-sign:after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #d88c8c;
  margin: 0.5em auto 0;
}

#staff .section-title {
  font-size: 1.2em;
  color: #4aa8c0;
  margin-bottom: 0.5em;
  border-bottom: 2px solid #4aa8c0;
  padding-bottom: 0.3em;
}

#staff .career-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

#staff .career-list li {
  display: flex;
  gap: 1em;
  padding: 20px 50px;
  background-color:#fffdfa;
  border-bottom: 1px dotted #ccc;
}

#staff .career-list .year {
  color: #555;
  width: 20%;	
}

p.doctor-name {
    font-size: 30px;
    color: #71bbdd;
    text-align: center;
    margin: 40px 0px;
}
.doctor-name span{
    font-size: 20px;
    color: #fff;
	background:#71bbdd;
    text-align: center;
    padding: 10px  30px;
	margin:0px 15px 0px 0px;
    border-radius: 5px;	
}

p.daijin{
	font-weight: 600;
    font-size: 20px;	
	display: flex;
	align-items: center;
}
.daijin span{
	padding-right:10px;
}
p.riyuu {
    color: #7eae40;
}
@media (max-width: 1200px) {
  #staff .two-column {
    flex-direction: column;
	  gap:0;
  }

#staff .two-column > .flex-item:first-of-type{
  width:100%;
	text-align: center;
}
	
#staff .two-column > .flex-item:last-of-type{
  width:100%;
}
	
　#staff .flex-item img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
p.daijin{
    font-size: 16px;	
}	
}


#staff .flex-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: space-around;
}

#staff .flex-box:nth-of-type(even) {
  flex-direction: row-reverse;
}

#staff .flex-item02 {
  flex: 0 0 60%;
}

#staff .flex-item02 img {
  height: auto;
  border-radius: 8px;
  display: block;
 margin: 0 auto;
}

#staff .flex-box .flex-item02:first-child {
  flex: 0 0 30%;
}

#staff .flex-box .flex-item02:last-child {
  flex: 0 0 60%;
}

/* レスポンシブ対応（画面幅が768px以下で縦並び） */
@media (max-width: 800px) {
  #staff .flex-box {
    flex-direction: column !important;
  }
#staff h4.title {
    font-size: 1.2em;
    margin: 1.5em 0 1em;
}
  #staff .flex-item02 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #staff .flex-item02 img {
    max-width: 70%;
  }
#staff .career-list li {
  padding: 20px 20px;
}
#staff .career-list .year {
	width: 26%;
	padding-right: 5px;
}
span.desc {
    width: 74%;
}	
p.doctor-name {
    font-size: 24px;
}
.doctor-name span{
    font-size: 16px;
}	
}

/* otitis_media */

#otitis_media img {
  display: block;
 margin:20px auto;
  max-width: 100%;
}

/* ear_cleaning */
#ear_cleaning img {
  display: block;
 margin:20px auto;
  max-width: 100%;
}

/* external_otitis */
#external_otitis img {
  display: block;
 margin:20px auto;
  max-width: 100%;
}

/* eustachian_tube_stenosis */
#eustachian_tube_stenosis img{
　 display: block;
　 margin:20px auto;
  max-width: 100%;
}


.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9比率 (9÷16×100) */
  overflow: hidden;
  margin: 0 auto; /* 中央揃えしたいなら */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}




/* 耳の病気〆 */

/* 鼻の病気 */

.nasal_disease img{
	display: block;
    margin: 20px auto;
    max-width: 100%;
}

.nasal_disease a:hover{
opacity: 0.7;
  transition: opacity 0.3s;
}

/*#nose_laser_surgery .laser-surgery-imgs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

#nose_laser_surgery .laser-surgery-imgs img {
  width: 30%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}
*/
@media (max-width: 768px) {
  #nose_laser_surgery .laser-surgery-imgs {
    flex-direction: column;
    align-items: center;
  }

  #nose_laser_surgery .laser-surgery-imgs img {
    width: 90%;
  }
}

#allergy_test .pc-image {
  display: block;
}

#allergy_test .sp-image-group {
  display: none;
}

@media screen and (max-width: 768px) {
  #allergy_test .pc-image {
    display: none;
  }

  #allergy_test .sp-image-group {
    display: block;
    margin-top: 10px;
  }

  #allergy_test .sp-image-group picture {
    display: block;
    margin-bottom: 10px;
  }

  #allergy_test .sp-image-group img {
    width: 100%;
    height: auto;
    display: block;
  }
}

#insect_allergy_rhinitis table{
	table-layout:auto;
}


#insect_allergy_rhinitis .mobile-block{
	width:95%;
	margin:auto;
}

#insect_allergy_rhinitis .mobile-block tr{
	    width: 15%;
    border:1px solid;
}

#insect_allergy_rhinitis .mobile-block th{
  width: 15%;
  min-width: 200px;
  background: #eaeaea;
  text-align: center;
}

#insect_allergy_rhinitis .mobile-block td{
    padding:10px;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #insect_allergy_rhinitis .mobile-block,
  #insect_allergy_rhinitis .mobile-block tbody,
  #insect_allergy_rhinitis .mobile-block tr,
  #insect_allergy_rhinitis .mobile-block th,
  #insect_allergy_rhinitis .mobile-block td {
    display: block;
    width: 100%;
	  margin:auto;
  }

  #insect_allergy_rhinitis .mobile-block tr {
    margin-bottom: 20px;
    border: 1px solid #ccc;
  }

  #insect_allergy_rhinitis .mobile-block th {
    background: #eaeaea;
    font-weight: bold;
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }

  #insect_allergy_rhinitis .mobile-block td {
    padding: 10px;
    border-top: none;
  }
}

#child_sleep_apnea img[src$="child_sleep_apnea.png"] {
  max-width: 200px;
}


#child_sleep_apnea table{
	table-layout:auto;
}


#child_sleep_apnea .mobile-block{
	width:95%;
	margin:auto;
}

#child_sleep_apnea .mobile-block tr{
	    width: 15%;
    border:1px solid;
}

#child_sleep_apnea .mobile-block th{
  width: 15%;
  min-width: 200px;
  background: #eaeaea;
  text-align: center;
}

#child_sleep_apnea .mobile-block td{
    padding:10px;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #child_sleep_apnea .mobile-block,
  #child_sleep_apnea .mobile-block tbody,
  #child_sleep_apnea .mobile-block tr,
  #child_sleep_apnea .mobile-block th,
  #child_sleep_apnea .mobile-block td {
    display: block;
    width: 100%;
	  margin:auto;
  }

  #child_sleep_apnea .mobile-block tr {
    margin-bottom: 20px;
    border: 1px solid #ccc;
  }

  #child_sleep_apnea .mobile-block th {
    background: #eaeaea;
    font-weight: bold;
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }

  #child_sleep_apnea .mobile-block td {
    padding: 10px;
    border-top: none;
  }
}

#snoring .training-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#snoring .training-list .training-item {
  display: flex;
  align-items: center;
  gap: 50px;
	border-top: 1px solid #6f6f6f;
	padding-top: 25px;
}

#snoring .training-list .training-item:first-child{
	border-top:none;
}

#snoring .training-item img {
  width: 200px;
  height: auto;
  flex-shrink: 0;
   margin:20px 0
}

#snoring .training-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

#snoring .bold {
  font-weight: bold;
}

#snoring .snoring-img{
	max-width:200px;
}

@media screen and (max-width: 765px) {
  #snoring .training-item {
    flex-direction: column;
    align-items: center;
  }

  #snoring .training-item img {
    width: 150px;
    margin: 10px auto;
  }

  #snoring .training-item p {
    text-align: left;
	font-size: 16px;  
    width: 100%;
  }
}

#dog_allergy .red-num-list {
  list-style-type: decimal;
  color: #d60000;
  padding-left: 1em;
  line-height: 1.8;
}

#dog_allergy .red-num-list li {
  margin-bottom: 1em;
}

#dog_allergy .bold {
  font-weight: bold;
  color: #000;
}

#dog_allergy .red-num-list li {
  margin-bottom: 1em;
}

#dog_allergy .black {
  color: #000;
}

/* ▼ 効果表示グリッド */
#sublingual_immunotherapy .effect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
#sublingual_immunotherapy .effect-item {
  text-align: center;
}
#sublingual_immunotherapy .effect-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 10px;
}

/* ▼ 副作用表示リスト */
#sublingual_immunotherapy .side-effect-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}
#sublingual_immunotherapy .side-effect-item {
  display: flex;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}
#sublingual_immunotherapy .side-effect-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}
#sublingual_immunotherapy .side-effect-item .text {
  flex: 1;
}
#sublingual_immunotherapy .side-effect-list .note {
  font-size: 18px;
  color: #d00;
  margin-top: 10px;
}

@media screen and (max-width: 780px) {
#sublingual_immunotherapy .effect-grid {
display : grid ;
grid-template-columns : repeat(2, 1fr) ;
grid-template-rows : repeat(2, 1fr) ;
gap:20px;
  margin: 40px 0;
}
}
	
/* 鼻の病気〆 */

/* 口の病気 */
.mouth_disease img{
	display: block;
    margin: 20px auto;
    max-width: 100%;
}

.mouth_disease a:hover{
		  opacity: 0.7;
  transition: opacity 0.3s;
}

#cough_relief ol {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin: 0;
}

#cough_relief li {
    counter-increment: item;
    margin: 2em 0;
    padding-left: 25px;
    position: relative;
}

#cough_relief li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #ffa000;
  font-size: 1.2em;
  line-height: 1.5;
}

#cough_relief li > br:first-of-type + .bold {
  display: block;
  font-size: 1.1em;
  margin-bottom: 0.5em;
  color: #333;
}

#throat_care .small{
	font-size:12px;
}

#throat_care .water-intake-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* テーブル全体の幅固定 */
}

#throat_care .water-intake-table th,
#throat_care .water-intake-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

#throat_care .water-intake-table th {
  background-color: #f9f9f9;
  font-weight: bold;
}

#throat_care .water-intake-table td:first-child,
#throat_care .water-intake-table th:first-child {
  width: 80px;
  text-align: center;
  white-space: nowrap;
}

#streptococcal_infection table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; 
	margin-bottom: 30px;
}

#streptococcal_infection table th,
#streptococcal_infection table td {
  border: 1px solid #ddd;
  padding: 10px;
}

#streptococcal_infection table th {
  background-color: #f9f9f9;
  font-weight: bold;
}

#streptococcal_infection table td:first-child,
#streptococcal_infection table th:first-child {
  width: 30%;
  text-align: center;
  white-space: nowrap;
}

#pharyngoconjunctival_fever .video-wrapper{
margin-bottom:20px;
}

#taste_disorder .taste-disorder-list {
  display: grid;
  grid-template-columns: 200px 1fr;
  margin: 2em 0;
	    border: 1px solid;
}

#taste_disorder .taste-disorder-list .item {
  display: contents; 
}

#taste_disorder dt {
  font-weight: bold;
  background: #f2f2f2;
  padding: 1em;
  border: 1px solid;
}

#taste_disorder dd {
  margin: 0;
  padding: 1em;
  background: #fff;
  border: 1px solid;
}


@media screen and (max-width: 768px) {
  #taste_disorder .taste-disorder-list {
    display: block;
  }

  #taste_disorder dt,
  #taste_disorder dd {
    display: block;
    width: 100%;
  }

  #taste_disorder dt {
    border-bottom: 1px solid #ddd;
  }
}

#rs_virus_infection .taste-disorder-list {
  display: grid;
  grid-template-columns: 200px 1fr;
  margin: 2em 0;
	    border: 1px solid;
}

#rs_virus_infection .taste-disorder-list .item {
  display: contents; 
}

#rs_virus_infection dt {
  font-weight: bold;
  background: #f2f2f2;
  padding: 1em;
	    border: 1px solid;
}

#rs_virus_infection dd {
  margin: 0;
  padding: 1em;
  background: #fff;
	    border: 1px solid;
}



@media screen and (max-width: 768px) {
  #rs_virus_infection .taste-disorder-list {
    display: block;
  }

  #rs_virus_infection dt,
  #rs_virus_infection dd {
    display: block;
    width: 100%;
  }

  #rs_virus_infection dt {
    border-bottom: 1px solid #ddd;
  }
}

#mycoplasma_infection .infection-flow {
  display: grid;
  grid-template-columns: 200px 1fr;
  margin: 2em 0;
	    border: solid 1px;
}

#mycoplasma_infection .infection-flow dt,
#mycoplasma_infection .infection-flow dd {
    border: solid 1px;
  padding: 1em;
  vertical-align: top;
}

#mycoplasma_infection dt {
  font-weight: bold;
  padding: 1em;
background-color: #f2f2f2;
}

#mycoplasma_infection dd {
  padding: 1em;
  margin: 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

#mycoplasma_infection .note {
  display: block;
  color: #666;
  font-size: 0.95em;
  margin-top: 0.3em;
}

@media screen and (max-width: 768px) {
  #mycoplasma_infection .infection-flow {
    display: block;
  }

  #mycoplasma_infection dt {
    border-left: none;
    border-top: 2px solid #f06292;
  }

  #mycoplasma_infection dt,
  #mycoplasma_infection dd {
    width: 100%;
    box-sizing: border-box;
  }
}


/* 口の病気〆 */
#attempt img{
	line-height: 0;
    vertical-align: bottom;
    height: auto;
    max-width: 100%;
    margin: 30px auto;
    display: block;
}






/* eustachian_tube_stenosis */

#eustachian_tube_stenosis .flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: stretch;	
  gap:20px;
}

#eustachian_tube_stenosis .flex-box img {
  width: 50%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

#eustachian_tube_stenosis .flex-box p,
#eustachian_tube_stenosis .flex-box .flex-item {
  width: 100%;
  font-size: 18px;
  line-height: 1.6;
  color: #4D392F;
  text-align: left;	
}
#eustachian_tube_stenosis .flex-box .flex-item {
    border: solid 2px #c9c9c9;
    padding: 20px;
    border-radius: 10px;
   text-align: center;	
}
#eustachian_tube_stenosis .grid-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

#attempt img{
	line-height: 0;
    vertical-align: bottom;
    height: auto;
    max-width: 100%;
    margin: 30px auto;
    display: block;
}

#sdgs img{
	max-width: initial;
}

#sdgs .flex-box{
	display: flex;
    gap: 100px;
	margin-bottom
}

#sdgs ul{
	padding-left:0;
}

#sdgs .subheading {
  font-weight: 600;
  font-size: 20px;
  color: #5a4b42;
  border-bottom: 2px solid #e5ab7e;
  display: inline-block;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}

@media (max-width: 1100px) {
  #sdgs .flex-box {
    flex-direction: column ;
	gap:50px;
  }

	  #sdgs .flex-box .flex-item:first-child {
    text-align: center;
  }

  #sdgs .flex-box .flex-item:first-child img {
    display: inline-block;
  }
	
	  #sdgs .subheading {
        text-align:left;
        display: block;
  }
}

@media (max-width: 768px) {	
#sdgs .subheading {	
font-size: 18px;	
}
#eustachian_tube_stenosis .flex-box {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}	
}


#emergency span.map {
    background: #ebc300;
    margin: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

#emargency a:hover {
        color: rgb(25, 173, 221);
    }

#emergency .map-address {
 display:inline;
}

#emergency .two-column{
	display: flex;
    justify-content: space-between;
    gap;20px;
}

#emergency .two-column .column50 {
	width:50%;
}

#emergency .column50:first-child {
  margin-right: 10px;
}

#emergency .column50:first-child p:nth-of-type(1){
    color: #ff1e1e;
    font-size: 14px;
    padding: 10px 0 0;
}

#emergency .column50:last-child {
  margin-left: 20px;
}

#emergency two-column img{
    width: 100%;
    height: auto;
    display: block;
}
#emergency .column50 ol {	
list-style-type: auto;	
margin-right: 10px;	
padding: 0px 0px 0px 30px;	
}	
.emergency ol li {	
margin-bottom: 10px;	
}	


@media (max-width: 1050px) {
#emergency .two-column{
	display: flex;
    flex-direction:column ;
    gap;20px;
}
	#emergency .two-column .column50 {
	width:100%;
}
}

@media (max-width: 768px) {	
.emergency ol li {	
font-size: 16px;	
margin-bottom: 10px;	
}	
}

/* price_list*/

#price_list {
  padding: 40px 15px;
  background-color: #fff;
  color: #333;
}

#price_list table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 18px;
  background-color: #fff;
  table-layout: fixed;
  word-break: break-word;
}

#price_list th,
#price_list td {
  border: 1px solid #ccc;
  padding: 20px 12px;
  text-align: right;
  vertical-align: middle;
  font-weight: 500;	
}

#price_list .section-title,
#price_list th[colspan="2"] {
  background-color: #d4a5a5;
  color:#fff;	
  font-weight: bold;
  text-align: left;
  padding-left: 12px;
  font-size:18px;
}

#price_list .price-label {
  background-color: #fff3f2;
  text-align: left;
  width: 50%;
}

#price_list .price-value {
  background-color: #fff;
  text-align: right;
  width: 50%;
}

#price_list th:not([colspan]) {
  background-color: #c9e4c0;
  font-weight: bold;
}

#price_list p {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}

#price_list .red {
  color: #ff0000;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #price_list {
	font-size: 16px; 
    padding: 0;
  }

  #price_list table {
    width: 100%;
    display: table;
    table-layout: fixed;
    font-size: 16px;
  }

  #price_list th,
  #price_list td {
    font-size: 14px;
    min-width: auto;
  }

  #price_list p {
    font-size: 16px;
  }

  #price_list .price-label,
  #price_list .price-value {
    min-width: auto;
  }
}
/* #about philosophy */
#about .sp{
	display:none;
}

#about .philosophy p:nth-of-type(1),
#about .philosophy p:nth-of-type(4){
	margin:70px 0;
	text-align: center;
}

#about .philosophy p:nth-of-type(5),
#about .philosophy p:nth-of-type(6){
	padding-left:20px;
}

#about .philosophy strong {
    color: #50290a;
    font-weight: bold;
	text-align: center;
    font-size: 24px;
}

#about .philosophy-box {
    position: relative;
    background: #fff8f1;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 2em 3em;
    margin: 40px 0 2em 0;
    line-height: 2.5;	
}
#about .philosophy-box h5 {
    font-size: 24px;
    border-bottom: solid 2px #71bbdd;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 15px;
}
#philosophy .ribbon-title {
  background-color: #f2e8dc;
  border-left: 6px solid #c69c6d;
  padding: 0.4em 1em;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.8em;
  position: relative;
  color: #5b4636;
}

#philosophy .ribbon-title::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #c69c6d;
}

#about .philosophy ol,
#about .philosophy ul{
	padding-left:35px;
}

#about .philosophy ol li{
		list-style:outside;
	list-style-type:decimal;
}

#about .philosophy ul li{
	list-style:outside;
    padding: 5px;	
}

@media screen and (max-width: 900px) {
	    #about .philosophy-box {
        padding: 2.5em 1em;
    }

    #about .philosophy-box h5 {
        font-size: 1.1em;
        padding: 0em 3em;
		letter-spacing:2px;
		text-align: center;
        display: block;
    }
	#about .philosophy strong {
    font-size: 16px;
}
	#about .philosophy ol{
		padding-left:15px;
}
	#about .philosophy ul{
		padding-left:35px;
}		
    #about .philosophy ol li,
    #about .philosophy ul li {
        font-size: 15px;
		line-height: 1.8;
        padding-bottom: 10px;
    }
#about .philosophy-box h5 {
    font-size: 20px;
    margin-bottom: 15px;	
}
}


@media screen and (max-width: 570px) {
#about .sp{
	display:block;
}
}

/* about payment-list */
#about .payment-list p:nth-of-type(1){
	text-align:right;
	font-size:12px;
}

#about .payment-airpay{
    width: 70%;
    min-width: 200px;
    border: 3px solid #20aee5;
    margin: auto;
}
	
#about .payment-airpay p{
	font-size:12px;
	text-align: right;
}

#about .payment-list {
    margin: 0 auto;
    padding: 20px;
}

#about .payment-list .payment-airpay img {
	width:30%;
	min-width: 130px;
    height: auto;
    display: block;
    margin: 20px auto;
}

#about .payment-list .payment-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, 150px);
    gap: 10px;
    justify-content: flex-start;
}

#about .payment-list .payment-logos li {
	width: 150px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    background: #fff;
}

#about .payment-list .payment-logos img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    display: block;
}

#about .payment-list .payment-pitapa {
    color: #20aee5;
    font-size: 12px;
	text-align: right;
}

@media screen and (max-width: 768px) {	
#about .payment-list .payment-logos {
    grid-template-columns: repeat(auto-fit, 90px);
}

#about .payment-list .payment-logos li {
	width: 90px;
    height: 60px;
}
}


@media screen and (max-width: 450px) {	
	#about .payment-list .payment-logos {
		padding: 0;
}
}

/* about phpto */
#about .photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 15px;
}

#about .photo-grid figure {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
	height: 100%;
}

#about .photo-grid img {
    width: 100%;
    height: auto;
    display: block;
}

#about .photo-grid figcaption {
    font-size: 18px;
    color: #333;
    margin-top: 20px;
    line-height: 1.6;	
}

html body #swipebox-overlay {
	background: #0d0d0ddb;
}
html body #swipebox-slider .slide img {
	    width: 90vw;
    height: 50vh;
    object-fit: contain;
    margin: 0 auto;
}

@media screen and (max-width: 1300px) {
#about .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
}


@media screen and (max-width: 768px) {
#about .photo-grid figcaption {
    font-size: 16px;
}
#about .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}	
}


@media screen and (max-width: 550px) {
    #about .photo-grid figure {
        height: auto;
}
}

/* about basic-information */
#about .basic-information .flex-box{
	display:flex;
	justify-content:space-between;	
}

#about .basic-information .flex-box .flex-item{
	width:48%;
}


#about .basic-information .flex-box .flex-item table{
	width:100%;
}

#about .basic-information .flex-box .flex-item table th{
	width: 40%;
	padding: 0.7em 1em;
	background: #a6cc74;
    color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
	text-align: center;
    font-weight: 500;
}


#about .basic-information .flex-box .flex-item table td{
padding: 0.7em 1em;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
	border: 1px solid #c9e4c0;
    font-weight: 500;	
}

@media screen and (max-width: 1100px) and (min-width: 769px) {
	#about .basic-information .flex-box .flex-item table {
     font-size: 16px;
}
	#about .basic-information .flex-box .flex-item:first-child {
		width:40%;
		margin-bottom:10px;
	}
#about .basic-information .flex-box .flex-item:nth-of-type(2) {
width:57%;
}
}

@media screen and (max-width: 768px) {
    #about .basic-information .flex-box {
        flex-direction: column;
    }
    #about .basic-information .flex-box .flex-item {
        width: 100%;
    }
    #about .basic-information .flex-box .flex-item:first-child {
		margin-bottom:20px;
    }
}

/* hug */
#hug .video-wrapper{
	width:100%;
}

#hug h3:nth-of-type(2){
	margin-top:100px;
}

/* how-to-drink */
#how-to-drink .img-wrapper{
	text-align: center;
}

/* drop */
#drop ul{
	list-style-type:disc;	
}

#drop ol{
  list-style-type: decimal;
}

#drop ul li,
#drop ol li{
	margin-left:25px;	
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.8;
}


@media screen and (max-width: 765px) {
#drop ul li,
#drop ol li{
        font-size: 16px;
        line-height: 1.8;
}
}

#drop img[src*="drop-01.jpg"],
#drop img[src*="drop-03.jpg"] {
  width: 100%;
  height: auto;
}

#drop .two-column{
   margin-top:20px;
}

#drop .two-column > .column50.mgb30:first-of-type {
    text-align: center;
}

#drop .two-column:nth-of-type(3),
#drop .two-column:nth-of-type(4){
	align-items:center;
}


#drop .faq-box {
  background-color: #fdecef; /* 淡いピンク */
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#drop .faq-q {
  font-weight: bold;
  color: #d14b6f;
  font-size: 1.05em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 2.2em;
}

#drop .faq-q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f8bfc7;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 1.8em;
  height: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
}

#drop .faq-a {
  padding-left: 2.2em; /* ← .faq-q に揃える */
  display: block;
  color: #333;
  font-size: 1em;
  line-height: 1.6;
  margin-top: 5px;
}


#drop .notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#drop .notice-list li {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

#drop .star {
    color: #ffc107; 
    font-weight: bold;
    margin-right: 5px;
	    font-size: 24px;
}

#drop .emphasis-red {
    color: #d62828;
    font-weight: bold;
    text-decoration: underline;
	font-size: 24px;
}

#drop .underline-pink {
    color: #e75480;
    font-weight: bold;
    text-decoration: underline;
}

#drop .notice-list .sub {
    color: #555;
    font-size: 0.95em;
    margin-top: 5px;
}

/* line */
#line {
  background-color: #ffffff;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

#line p{
margin:0;
}

#line .section-ttl {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #222;
}

#line .flow-step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 25px 20px;
  margin-bottom: 85px;
  position: relative;
  flex-wrap: wrap;
}

#line .flow-step::after {
    content: "";
    position: absolute;
	bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-image: url(http://test-tomiyoshi-hifu.kiddotest2.xyz/wp-content/themes/tomiyoshi-hifu/img/flow-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#line .flow-num {
background-color: #c9e4c0;
    color: #4d392f;
    font-family: serif;
    font-weight: bold;
    font-size: 40px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

#line .flow-num::after {
  content: "";
  position: absolute;
  top: 0;
  right: -35px;
  height: 100%;
  width: 1px;
  background-color: #ccc;
}

#line .flow-content {
  flex: 1;
  min-width: 200px;
    padding-left: 65px;
}

#line .flow-ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

#line ul {
  margin: 0;
  font-size: 18px;
  padding: 5px 0 0 20px;
	    margin-left: 25px;
}

#line ul li{
  margin: 0;
  font-size: 18px;
	padding-left:0;
}

#line ul li::before {
    left: -25px;
}

#line .flow-step:last-of-type::after {
  display: none;
}

#line .flow-summary {
  margin-top: 50px;
  font-size: 18px;
  font-weight: 500;
  color: #444;
}

@media screen and (max-width: 768px) {
#line p {	
text-align: left;	
}	
	#line .flow-ttl{
		font-size:18px;
	}
#line ul {	
font-size: 16px;	
margin-left: 10px;	
}	
	#line ul li{
		font-size:16px;
	}
}

@media screen and (max-width: 450px) {
#line .flow-ttl{
	text-align:center;
		font-size:16px;
	}
	
		#line .flow-content ul {
		  padding-left: 1.5em;
		  margin-left: auto;
		  margin-right: auto;
		  max-width: 300px;
		  text-align: left;
		}
	
		#line ul li{
		font-size:16px;
		margin-bottom: 15px;			
	}
	
  #line .flow-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }

  #line .flow-num {
	  font-size:30px;
	width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
	
	#line .flow-num::after {
 content: none;
  position: absolute;
  top: 0;
  right: -45px;
  height: 100%;
  width: 1px;
  background-color: #ccc;
}
	
	#line .flow-content {
    padding-left: 0;
}

  #line .flow-step::before {
    transform: none;
    position: static;
  }
	
	#line .flow-summary {
  font-size: 16px;
}
}

#influenza-reservation a.bold{
	font-weight: 600;
    color: #75bbd2;
}

#influenza-reservation a.bold:hover{
        color: #19ADDD;
    }




.price-table{
	width:100%;
}
.price-table th{
	width: 40%!important;
	padding: 0.7em 1em!important;
	background: #a6cc74!important;
    color: #fff!importantf;
    border-bottom: 1px solid rgba(0, 0, 0, .05)!important;
	text-align: center!important;
    font-weight: 500!important;
}
.price-table td{
padding: 0.7em 1em;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
	border: 1px solid #ffdfe6;
    font-weight: 500;	
}




/*ブログページ送り*/
.pagination {
    margin: 0px 0px 100px;
    text-align: center;
}

.page-archive a {
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    background: #71bbdd;
    padding: 15px 30px;
}
.nav-posts {
    display: flex;
    justify-content: center;
	align-items: center;
}

.page-next a {
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    background: #b1c695;
    padding: 15px 30px;
    margin: 0px 20px;
}

.page-prev a {
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    background: #b1c695;
    padding: 15px 30px;
    margin: 0px 20px;
}
.page-archive {
    margin: 80px 0px;
}


/*医師紹介　アコーディオン*/
.accordion-header {
  cursor: pointer;
  background: #f3f3f3;
  padding: 10px 15px;
  border: 1px solid #ccc;
  position: relative;
}

.accordion-header::after {
  content: '＋';
  position: absolute;
  right: 15px;
}

.accordion-header.active::after {
  content: '−';
}

.accordion-content {
  display: none;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-top: none;
  background: #fff;
}

p.web-yoyaku a {
    background: #e6d280;
    color: #fff;
    font-size: 24px;
    padding: 50px 0px;
    margin: 50px 0px 0px 0px;
    text-align: center;
    display: inline-block;
    border-radius: 10px;
    width: 40%;
}
p.web-yoyaku.tel a {
    background: #fdbdcc;
    color: #fff;
    font-size: 24px;
    padding: 50px 0px;
    margin: 30px 0px 0px 0px;
    text-align: center;
    display: inline-block;
    border-radius: 10px;
    width: 40%;
}

p.web-yoyaku {
    text-align: center;
}
p.web-yoyaku a:hover {
    opacity:0.6;
}
.machi-box {
    width: 40%;
    margin: 60px auto;
}
.line-box {
    width: 40%;
    margin: 60px auto;
}

.link01-btn a {
    position: relative;
	background: #efefef;
	padding: 10px 60px 10px 40px;
	display: inline-block;
	transition: opacity 0.2s ease;	
}
	
.link01-btn a:before {
	content: "▶";
    position: absolute;
    width: 30px;
    height: 30px;
    right: 5%;
    color: #333333;
}

.link01-btn a:hover {
	background: #d2d2d2;
	color:#fff;
}


@media screen and (max-width: 900px) {
p.web-yoyaku a {
    font-size: 20px;	
    width: 60%;
	padding: 40px 0px;
    margin: 0px;
    text-align: center;	
}
p.web-yoyaku.tel a {	
    width: 60%;	
    font-size: 20px;	
    margin: 20px 0px 0px 0px;	
}	
.machi-box {
    width: 60%;
	margin: 20px auto;
}
.line-box {
    width: 60%;
	margin: 20px auto;
}	
.machi-box .information-box.machi h2 {	
    font-size: 20px;		
}
.line-box .information-box.line h2 {	
    font-size: 20px;		
}
.link01-btn a {	
padding: 10px 40px 10px 20px;	
}	
.link01-btn a:before {	
width: 20px;	
height: 20px;	
right: 2%;	
}	
}
	
	
	
@media screen and (max-width: 550px) {
p.web-yoyaku {
        text-align: center;
}
p.web-yoyaku a {
    width: 90%;
	padding: 30px 0px;
    margin: 0px;
    text-align: center;	
}
p.web-yoyaku.tel a {	
    width: 90%;	
	padding: 30px 0px;
}
.machi-box {
    width: 90%;
	margin: 20px auto;
}
.line-box {
    width: 90%;
	margin: 20px auto;
}	
}	

	
.imformation-first-box {
    font-size: 20px;
    padding: 20px;
    text-align: center;
    color: #6e3f3f;
    border: dotted 3px #b8b8b8;
}	

@media screen and (max-width: 900px) {	
.imformation-first-box {
    font-size: 17px;
    padding: 15px 10px;
    margin: 30px auto 0px;
    text-align: left;
    width: 90%;
}		
}



section.instagram {
    margin: 60px auto 100px;
}
@media screen and (max-width: 900px) {	
section.instagram {
    margin: 30px auto 60px;
}
}

/*リンク集ページ*/
ul.link-box li {
    position: relative;	
    padding: 15px 15px 15px 45px;
    border-bottom: solid 2px #c8c8c8;
}
ul.link-box li:hover {
    color:#929292;
}
ul.link-box li:after {
    content: "";
    position: absolute;
    background: url(../img/new-window.svg);
    width: 20px;
    height: 20px;
    right: 15px;
}
ul.link-box li:before {
	content: "●";
    position: absolute;
	color:#71bbdd;
    width: 20px;
    height: 20px;
	left: 15px;
}
@media screen and (max-width: 900px) {	
ul.link-box li {
    padding: 15px 35px 15px 35px;
}	
}		
	
/*パララックス*/
.parallax {
  background-image: url('../img/palala.jpg'); /* 画像は変更してください */
  height: 60vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: -20px;
  position: relative;
  z-index: -1;	

  /* パソコン表示時のみ固定 */
  background-attachment: fixed;
}

.content {
  padding: 100px 20px;
  background-color: #fff;
  text-align: center;
}

/* スマホ時は background-attachment を無効化 */
@media screen and (max-width: 768px) {
  .parallax {
	height: 50vh; 
    background-attachment: scroll;
  }
}	



/*院長紹介*/
section.doctor {
	background: #fbf9ee;
    padding: 100px 0px 80px 0px;
}
.doctor h2.ttl {
    color: #584b4b;
    padding: 0px 0px 30px;
    line-height: 1.2;
}
h3.top-doctor-name {
    font-size: 30px;
    border-bottom: solid 5px #fcacbf;
    display: inline-block;
    margin-bottom: 15px;
    padding: 5px 0px;
}
h3.top-doctor-name span {
    padding-right: 20px;
}
p.top-shikaku {
    color: #4ba3cb;
	margin: 20px 0px;
}
.doctor .column60 {
    padding: 0px 0px 0px;
	position: relative;
}
.doctor .column60 p {
    line-height: 2.3;
}
.doctor .column40 {
	position: relative;
}

/*.doctor .column40:before {
    content: "";
	background: url(../img/doctor-icon.png) no-repeat;
    position: absolute;
	width: 241px;
    height: 180px;
    left: -100px;
    top: -50px;
}*/

.doctor-circle {
    position: absolute;
    left: clamp(50px, 35vw, 500px);
    bottom: -100px;
    border: solid 5px #ede97a;
    border-radius: 100vw;
	z-index: 20;
}

.doctor-circle a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f6f9e4;
    color: #4b4141;
    text-decoration: none;
    font-weight: 500;
    width: 200px;
    height: 200px;
    padding-top: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: solid 10px #c9e4c0;
    font-size: 18px;
    line-height: 1.7;
    flex-direction: column;
    transition: all 0.5s ease;
}	
	
.doctor-circle a:hover {
    background: #a6cc74;
}

@media (max-width: 1200px) {
section.doctor {
    background: #fbf9ee;
    padding: 100px 0px 200px 0px;
}	
.doctor-circle {
    bottom: -180px;
	left:unset;
	right: clamp(50px, 35vw, 500px);
}
}

	
@media screen and (max-width: 768px) {
section.doctor {
    padding: 0px 0px 80px 0px;
}
.doctor .column40:before {
	background-size:100%;
    left: -10px;
    top: -50px;
    width: 150px;
    height: 120px;
}
.doctor .column60 {
    padding: 50px 0px 100px;
}	
  .doctor-circle {
    margin-top: 0px;
	bottom: -30px;  
	right: 0; 
	left:unset; 
    border: solid 3px #ede97a;	  
} 
.doctor-circle a {
    width: 130px;
    height: 130px;
    font-size: 13px;
    padding: 15px 0px 0px;
    border: solid 5px #c9e4c0;	
  }	
.doctor h2.ttl {
    padding: 60px 0px 0px;
}
h3.top-doctor-name {
    font-size: 24px;
}
h3.top-doctor-name span {
    padding-right: 15px;
}	
p.top-shikaku {
    margin: 0px 0px;
}	
}	
	



	
/*アコーディオン*/
.acc-container {
  width: 100%;
  margin: 30px auto 0 auto;
  overflow: hidden;
}

.acc-btn {
	background: #ffffff;
    color: #333333;
    border: solid 2px #a6cc74;
    width: 100%;
    margin: 0 auto;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}

.acc-btn:hover {
    background: #a6cc74;
    color: #fff;
	transition: 0.5s; /* マウスカーソルを載せるとき */	
}

.acc-icon {
  font-size: 18px;
  transition: transform 0.5s ease-out;
  margin-left: 10px;
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 25px;
  border-radius: 50%;
  background-color: #a6cc74;
  text-align: center;
  color: #fff;	
}

.acc-content {
  width: 100%;
  margin: 0 auto;
  display: none;
  padding: 20px 10px;
  height: auto;
}

.acc-content p {
  margin: 0;
 line-height: 1.9;	
}

/* Opened state */
.acc-btn.active .acc-icon::before {
  content: '-';
}

.acc-btn .acc-icon::before {
  content: '+';
  display: inline-block;	
}

@media only screen and (max-width: 900px) {
.acc-container {
  width: 100%;
}	
.acc-icon {
  font-size: 10px;	
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 50%;
}	
.acc-content {
    width: 100%;
    padding: 20px 5px 0px 5px;
}
.acc-content p {
  margin: 0;
 line-height: 1.9;	
}

.acc-btn {
    padding: 10px 15px;
}	
}	
	

.pickup-medical {
	position: relative;
    margin: 50px auto;
    padding: 0px 40px 50px 40px;
    max-width: 1400px;
    background: #e7f3d8;
    border: solid 2px #ffffff;
}
.pickup-medical::after {
	content: '';	
	background: url('../img/medical-ira02.png') no-repeat center / contain;	
	position: absolute;	
    left: 10%;
    width: 118px;
    height: 151px;
    top: -160px;
    background-size: 100%;;
}

.pickup-medical ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;	
}
.pickup-medical ul li {
    width: 24%;
	position: relative;
	margin: 10px 5px;
	height: auto;
}
.pickup-medical ul li span {
    font-size: 16px;
    line-height: 1.8 !important;
    padding-bottom: 2px;
    margin-bottom: 5px;
    border-bottom: solid 1px #ffffff;	
}

.pickup-medical ul li a {
    background: #71bbdd;
    border: solid 2px #ffffff;
    width: 100%;
    height: 100%;
    display: flex; /* 変更：inline-block → flex に */
    flex-direction: column;
    justify-content: center; /* 上下中央揃え */
    align-items: center;     /* 左右中央揃え */
    color: #fefefe;
    font-size: 25px;
    text-align: center;
    padding: 30px 0px;
    border-radius: 10px;
    box-sizing: border-box; /* 念のため追加 */
}

.pickup-medical ul li a:hover {
    background:#d2dfc0;
	color: #71bbdd;
}

@media only screen and (max-width: 1000px) {
	.pickup-medical ul li{	
    width: 30%;
}
.pickup-medical ul li {
    width: 48%;
	position: relative;
	margin: 10px 5px;
	height: auto;
}
.pickup-medical::after {
	background-size:100%;
    left: 3%;
    width: 100px;
    height: 130px;
    top: -130px;
    background-size: 100%;;
}	
}

@media only screen and (max-width: 750px) {
.pickup-medical ul li{	
    width: 48%;
	margin: 10px 2px;		
}
.pickup-medical {
	padding: 0px 10px 50px 10px;
}	
.pickup-medical ul li a {
    padding: 40px 0px;
	font-size: 17px;
}
.pickup-medical ul li span {
    font-size: 13px;
}
	.pickup-medical::after	{
	left: 1%;
    width: 70px;
    height: 100px;
    top: -60px;		
}
}

section.jibika-site-link {	
text-align: center;	
margin: 120px 0px 0px;	
}	
section.jibika-site-link a {	
background: #a3dfff;	
display: block;	
font-size:24px;	
padding: 50px 0px;	
}	
section.jibika-site-link a:hover {	
opacity:0.5;	
}	
@media only screen and (max-width: 960px) {	
section.jibika-site-link {	
text-align: center;	
margin: 0px 0px 0px;	
}	
}	


ul.career-list li {
    padding-bottom: 10px;
}
span.year {
    padding-right: 30px;
}




/*リンク*/	
section.top-link-section {	
margin: 100px 20px 100px 20px;	
}	
.link-section {	
display: flex;	
flex-wrap: wrap;	
gap: 30px;	
}	
.link-column {	
flex: 1;	
min-width: 250px;	
}	
.link-column ul {	
list-style: none;	
margin: 0;	
padding: 10px 0;	
}	
.link-column li {	
border-bottom: 1px solid #ddd;	
padding: 10px 0;	
}	
.link-column li a {	
display: flex;	
align-items: center;	
justify-content: space-between;	
text-decoration: none;	
font-size: 18px;	
color: #333;	
position: relative;	
padding-left: 30px;	
}	
.link-column li a:hover {	
color: #d4a5a5;	
}	
.link-column li a::before {	
content: '';	
display: inline-block;	
width: 10px;	
height: 10px;	
border-radius: 50%;	
position: absolute;	
left: 0;	
top: 50%;	
transform: translateY(-50%);	
}	
.arrow::after {	
content: '';	
display: inline-block;	
width: 14px;	
height: 14px;	
background: url('../img/yazirushi.png') no-repeat center / contain;	
margin-left: auto;	
}	
.external::after {	
content: '';	
display: inline-block;	
width: 14px;	
height: 14px;	
background: url('../img/icon-blank.png') no-repeat center / contain;	
margin-left: auto;	
}	
.instagram::before {	
content: '';	
background: url('../img/instagram.png') no-repeat center / contain;	
width: 18px;	
height: 18px;	
margin-right: 8px;	
}	
.tiktok::before {	
content: '';	
background: url('../img/tiktok.png') no-repeat center / contain;	
width: 18px;	
height: 18px;	
margin-right: 8px;	
}	
.youtube::before {	
content: '';	
background: url('../img/youtube_icon01.png') no-repeat center / contain;	
width: 18px;	
height: 18px;	
margin-right: 8px;	
}	
.arrow.orange::before,	
.external.orange::before { background-color: #f6a623; }	
.arrow.pink::before,	
.external.pink::before { background-color: #fba3c6; }	
.arrow.purple::before,	
.external.purple::before { background-color: #b291e1; }	
.arrow.green::before,	
.external.green::before { background-color: #a2cd88; }	
.link-column.sns li {	
border: none;	
padding: 6px 0;	
}	
.link-column.sns a {	
display: flex;	
align-items: center;	
text-decoration: none;	
color: #333;	
}	
.link-column li a.instagram::before {	
width: 20px;	
height: 25px;	
}	
.link-column li a.tiktok::before {	
width: 20px;	
height: 25px;	
}	
.link-column li a.youtube::before {	
width: 20px;	
height: 25px;	
}


@media only screen and (max-width: 750px) {	
section.top-link-section {	
margin: 30px 0px 30px 0px;	
}	
.link-column li {	
padding: 10px 0px;	
}	
.link-column li a.instagram::before {	
width: 20px;	
height: 25px;	
}	
.link-column li a.tiktok::before {	
width: 20px;	
height: 25px;	
}	
.link-column li a.youtube::before {	
width: 20px;	
height: 25px;	
}	
.link-column li a {	
font-size: 16px;	
}
.link-section {	
gap: 0px;	
}
.link-column ul {
    padding: 0px 0;
}	
}


/*耳鼻咽喉科一覧*/
.eyers-wrap {
    background: #f7f7f7;
    text-align: center;
    padding: 15px 0px;
    border-radius: 10px;
}
.eyers-wrap img {
    width: 13%;
}
.nose-wrap {
    background: #f7f7f7;
    text-align: center;
    padding: 15px 0px;
    border-radius: 10px;
}
.nose-wrap img {
    width: 13%;
}
.throat-wrap{
    background: #f7f7f7;
    text-align: center;
    padding: 15px 0px;
    border-radius: 10px;
}
.throat-wrap img {
    width: 13%;
}

.allergy-wrap {
    background: #f7f7f7;
    text-align: center;
    padding: 15px 0px;
    border-radius: 10px;
}
.allergy-wrap img {
    width: 13%;
}


@media only screen and (max-width: 750px) {	
.eyers-wrap img {
    width: 20%;
}	
.nose-wrap img {
    width: 20%;
}	
.throat-wrap img {
    width: 20%;
}
.allergy-wrap img {
    width: 20%;
}
}


.grid-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;  	
}
.grid-item {
    width: 30%;
    padding: 20px;
    margin: 10px;
    border: solid 2px #c5c5c5;
    border-radius: 10px;
    text-align: center;
}
.grid-item img {
    width: 60%;
}
.grid-item p {
    text-align: left;
}

@media only screen and (max-width: 750px) {	
.grid-item {
    width: 44%;
    padding: 10px;
    margin: 5px;
    border: solid 1px #c5c5c5;
}
.grid-item img {
    width: 70%;
}	
}


/*ピックアップスライド*/
.pickup-medical-wrap {
  padding: 50px 20px 30px;	
}
h3.pickup-ttl {
    font-size: 24px;
	font-weight: 600;
    padding: 0.3rem 2.2rem;
    margin-bottom: 10px;
    text-align: center;
}
.pickup-slider {
  overflow: hidden;
  max-width: 1300px;	
  margin: 0 auto;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.medical-slide {
  flex: 0 0 33.3333%;
  box-sizing: border-box;
  padding: 20px;
}

.card {
  background: #f9f8dc;
  border-radius: 10px;
  /*border: solid 3px #71bbdd;*/
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.card img {
     width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.card .lead {
  font-size: 14px;
  color: #121212;
  margin-bottom: 5px;
}

.card h3 {
  font-size: 22px;
  color: #c16262;
}

@media screen and (max-width: 768px) {
.pickup-medical-wrap {
  padding: 10px 0px 30px;	
}
.pickup-slider {
	padding: 0px 0px 0px;		
}
.slider-track {
 width: 100% !important;
}	
}

/*オンライン診療フロー*/
h3.online-step-ttl{
    font-size: 24px;
	font-weight: 600;
}
h3.online-step-ttl span {
    font-size: 20px;
    background: #71bbdd;
    color: #fff;
    padding: 5px 10px;
    display: inline-block;
	margin-right:10px;
    margin-bottom: 10px;
    border-radius: 5px;
}
.online-flow {
    border: solid 3px #c9e4c0;
    border-radius: 20px;
    padding: 30px 50px;
}

.online-step:after {
    content: "";
    background: url(../img/arrow_bottom.svg) center 50% no-repeat;
    background-size: 50px 50px;
    display: block;
    overflow: hidden;
    height: 50px;
    width: 50px;
    margin: 0 auto;
}
.online-step:last-child:after {
    display: none;
}
ol.list03{
	list-style:auto;
	padding-left: 1.7rem;
}
ol.list03 ::marker {
    color: #71bbdd !important;
	font-weight: 600;
}

.faq-box {
    background-color: #fdecef;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-q {
    font-weight: bold;
    color: #d14b6f;
    font-size: 1.05em;
    margin-bottom: 10px;
    position: relative;
    padding-left: 2.2em;
}

.faq-q::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 3px;
    background-color: #f8bfc7;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    width: 1.8em;
    height: 1.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
}

.faq-a {
    padding-left: 2.2em;
    display: block;
    color: #333;
    font-size: 1em;
    line-height: 1.6;
    margin-top: 5px;
}

p.img-wrapper{
	text-align:center;
}

img.img-normal{
	width: 25%;
    min-width: 200px;
}

span.bold{
	font-weight:bold;
}



/* 予防接種 */
dl.veu_qaItem {
    display: block;
    overflow: hidden;
    border-bottom: 1px dotted #ccc;
    padding: 0 0 25px;
    margin: 25px 0;
    width: 100%;
    position: relative;
}

dl.veu_qaItem dd,
dl.veu_qaItem dt {
    border: none;
    padding-left: 35px;
}

dl.veu_qaItem dd:before,
dl.veu_qaItem dt:before {
    position: absolute;
    left: 0;
    font-size: 24px;
    line-height: 105%;
}

dl.veu_qaItem dt {
    margin-bottom: 15px;
    font-size: 18px;
	font-weight:bold;
}

dl.veu_qaItem dt:before {
    font-family: areal;
    content: "Q ";
    color: #e50000;
}

dl.veu_qaItem dd {
    margin-bottom: 0;
}

dl.veu_qaItem dd:before {
    content: "A ";
    color: #337ab7;
    font-family: "areal";
}


a.link-btn {
    border-bottom: solid 2px #71bbdd;
}
a.link-btn:hover {
	opacity:0.6;
}










/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../src/sass/modules/_mixin.scss%22,%22../../src/sass/modules/_reset.scss%22,%22../../src/sass/modules/_variables.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/pages/_top.scss%22,%22../../src/sass/pages/_about.scss%22,%22../../src/sass/pages/_interview.scss%22,%22../../src/sass/pages/_policy.scss%22,%22../../src/sass/pages/_career.scss%22,%22../../src/sass/pages/_schedule.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%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AaI;IACA;IACA;IACA;;;;ACjOJ;AAAA;AAAA;AAKA;AAAA;AAGA;EACE;EACA;;AAEA;EAJF;IAKI;IACA;;;APTF;EOGF;IAUI;IACA;;;APRF;EOHF;IAeI;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;;;APzBJ;EOgBA;IAcI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;IACA;;;APjDN;EOuCE;IAcI;;;AP/CN;EOiCE;IAkBI;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;IACA;;;APjER;EOuDI;IAcI;IACA;IACA;;;AAGF;EACE;;;AAOV;AAAA;AAGA;EACE;;AAEA;EAHF;IAII;;;APzFF;EOqFF;IAQI;;;AAIA;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;;;AP9GN;EOuGE;IAWI;;;AP5GN;EOiGE;IAeI;;;AAGF;EACE;;AP1HN;EOyHI;IAII;IACA;IACA;IACA;;;AP1HR;EOmHI;IAWI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATF;IAUI;;;AP3IV;EOiIM;IAcI;IACA;;;AAGF;EAlBF;IAmBI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAVF;IAWI;IACA;;;APnKZ;EOuJQ;IAgBI;IACA;IACA;;;AAKN;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;;;APrLV;EO8KM;IAWI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAVF;IAWI;IACA;;;APxMZ;EO4LQ;IAgBI;IACA;IACA;;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAVF;IAWI;IACA;IACA;IACA;;;AAGF;EAjBF;IAkBI;;;APzOZ;EOuNQ;IAsBI;IACA;IACA;IACA;;;AAOR;EACE;EACA;;AP/PN;EO6PI;IAKI;IACA;IACA;;;AP9PR;EOuPI;IAWI;IACA;;;AAGF;EACE;EACA;;APxQR;EOsQM;IAKI;;;AAIJ;EACE;EACA;;AAEA;EAJF;IAKI;;;APpRV;EO+QM;IASI;;;AAMR;EACE;EACA;EACA;EACA;EACA;;AAEA;EAPF;IAQI;;;AP5SN;EOoSE;IAYI;IACA;;;AP3SN;EO8RE;IAiBI;IACA;;;AAGF;EACE;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZF;IAaI;IACA;IACA;;;APlUR;EOmTI;IAmBI;IACA;IACA;;;AAIJ;EACE;EACA;EACA;;AP/UN;EO4UI;IAMI;;;AAIJ;EACE;;APvVN;EOsVI;IAII;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EAPF;IAQI;;;AP5WV;EOoWM;IAYI;IACA;;;AP3WV;EO8VM;IAiBI;IACA;IACA;;;AAIJ;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;;;APxYZ;EO+XQ;IAaI;;;APtYZ;EOyXQ;IAiBI;IACA;;;AAGF;EACE;;AAKN;EACE;EACA;;APtZR;EOoZM;IAKI;IACA;;;AAGF;EACE;;AAQA;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAMR;EACE;EACA;;APrbR;EOmbM;IAKI;IACA;IACA;;;AAGF;EACE;EACA;EACA;EACA;;APjcV;EO6bQ;IAOI;;;AAMN;EACE;;AP3cR;EO0cM;IAII;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;APxdV;EOidQ;IAUI;;;;AAWd;AAAA;AAIE;EACE;EACA;EACA;;AP7eF;EO0eA;IAMI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AP1fJ;EOmfE;IAUI;;;AAIJ;EACE;EACA;;APngBJ;EOigBE;IAKI;;;AAGF;EACE;;AP1gBN;EOygBI;IAII;IACA;;;AAGF;EACE;EACA;EACA;;APphBR;EOihBM;IAMI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;APpiBV;EO0hBQ;IAaI;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZF;IAaI;IACA;;;APzjBZ;EO2iBQ;IAkBI;IACA;IACA;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATF;IAUI;IACA;;;AP/kBV;EOokBM;IAeI;IACA;;;AAIJ;EACE;EACA;;AAEA;EAJF;IAKI;;;AP7lBV;EOwlBM;IASI;IACA;;;;AAUZ;AAAA;AAGA;EACE;EACA;EACA;;AAEA;EALF;IAMI;;;APrnBF;EO+mBF;IAUI;;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;;;APvoBN;EOgoBE;IAWI;IACA;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATF;IAUI;IACA;;;AP3pBR;EOgpBI;IAeI;IACA;;;AAIJ;EACE;EACA;EACA;;APvqBN;EOoqBI;IAMI;;;AAIJ;EACE;EACA;EACA;;APjrBN;EO8qBI;IAMI;;;AAKN;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;;;APhsBN;EOyrBE;IAWI;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATF;IAUI;;;APltBR;EOwsBI;IAcI;;;AAGF;EACE;EACA;;AAEA;EAJF;IAKI;;;AP9tBV;EOytBM;IASI;IACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZF;IAaI;IACA;IACA;;;APtvBV;EOuuBM;IAmBI;IACA;IACA;;;AAMN;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAVF;IAWI;IACA;IACA;;;APnxBR;EOswBI;IAiBI;IACA;IACA;IACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZF;IAaI;IACA;;;AP5yBR;EO8xBI;IAkBI;IACA;;;AAOR;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;;;APj0BJ;EOwzBA;IAaI;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAbF;IAcI;IACA;IACA;IACA;;;AP11BN;EOy0BE;IAqBI;IACA;IACA;;;AAGF;EACE;;AAEA;EAHF;IAII;;;APv2BR;EOm2BI;IAQI;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAVF;IAWI;IACA;IACA;IACA;;;AP73BR;EO+2BI;IAkBI;IACA;IACA;IACA;;;AAMN;EACE;EACA;;APl5BJ;EOg5BE;IAKI;IACA;;;APh5BN;EO04BE;IAUI;;;AAGF;EACE;EACA;;AP/5BN;EO65BI;IAKI;IACA;;;AAGF;EACE;EACA;EACA;;APz6BR;EOs6BM;IAMI;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;;;APj8BV;EOw7BM;IAaI;IACA;;;AAKF;EADF;IAEI;;;AP58BV;EO08BM;IAMI;;;AAEF;EACE;EACA;;AAEA;EAJF;IAKI;;;APv9BZ;EOk9BQ;IASI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAVF;IAWI;IACA;IACA;;;AP3+Bd;EO89BU;IAiBI;IACA;IACA;;;AAWd;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;;;APngCJ;EO4/BA;IAWI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAdF;IAeI;IACA;IACA;IACA;IACA;;;APniCN;EOghCE;IAuBI;IACA;;;APliCN;EO0gCE;IA4BI;IACA;IACA;IACA;IACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAVF;IAWI;IACA;;;AP/jCR;EOmjCI;IAgBI;IACA;IACA;;;AP/jCR;EO6iCI;IAsBI;;;AAMF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;IACA;;;APnlCV;EOykCM;IAcI;IACA;IACA;;;AAGF;EACE;;AAEA;EAHF;IAII;;;APhmCZ;EO4lCQ;IAQI;;;AAON;EACE;;AAIA;EACE;;AAOJ;EACE;;AAIA;EACE;;AAOJ;EACE;;AAIA;EACE;;AAOJ;EACE;;AAIA;EACE;;AAOJ;EACE;;AAIA;EACE;;AAMN;EACE;;;AAOR;AAAA;AAGA;EACE;;APvrCA;EOsrCF;IAII;;;AAGF;EACE;;AP9rCF;EO6rCA;IAII;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;;;AP3sCN;EOosCE;IAWI;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;IACA;;;AP1tCR;EOktCI;IAYI;IACA;;;AAGF;EACE;;AAGF;EACE;;;AAQV;AAAA;AAGA;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;;;APtwCJ;EO6vCA;IAaI;;;APpwCJ;EOuvCA;IAiBI;IACA;;;AAGF;EACE;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EARF;IASI;;;AP5xCJ;EOmxCA;IAaI;IACA;;;AAGF;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;;;APrzCN;EO8yCE;IAWI;;;APnzCN;EOwyCE;IAeI;;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AP30CN;EOq0CI;IASI;IACA;IACA;;;AP10CR;EO+zCI;IAeI;IACA;IACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AP31CN;EOo1CI;IAUI;IACA;;;AAON;EACE;EACA;;AAGF;EACE;;;AASA;EACE;EACA;EACA;EACA;EACA;;AP13CN;EOq3CI;IAQI;IACA;IACA;IACA;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;APz4CN;EOq4CI;IAOI;IACA;IACA;IACA;;;AAKF;EACE;EACA;;;AAWJ;EACE;EACA;EACA;EACA;EACA;;APt6CN;EOi6CI;IAQI;IACA;IACA;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;AAEA;EANF;IAOI;IACA;IACA;;;AP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%22,%22file%22:%22style.css%22%7D */
