@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{
	width:100%;
    background: #e6d5c3;
}


/* reset font style
-----------------------------------------------------------------*/
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, strong {
  font-style: normal;
  font-weight: inherit;
}


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

ul li{
	font-size:18px;	
    line-height: 1.7;
    margin-bottom: 10px;	
}

ol li{
	font-size:18px;
    margin-bottom: 10px;	
}


@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: normal;
  vertical-align: middle;
}

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

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

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

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

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

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

textarea {
  resize: none;
  overflow: auto;
}

*:focus {
  outline: none;
}

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

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;
  }
}


/******************************************************************
 * 共通パーツ
******************************************************************/
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;
  }	
}


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


p.line-btn a {
	position: relative;	
    color: #fff;
    padding: 20px 50px;
    background: #7aba3b;
    display: inline-block;
    border-radius: 10px;
    margin-top: 20px;	
}
p.line-btn a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}

p.line-btn a:hover {
    color: #fff;
    background: #a7ca85;
}


/*言語ボタン　トップページの方*/
.language-wrap {
    display: flex;
    position: fixed;
    /*flex-direction: column;	*/
    right: 0;
	z-index: 999;
}
p.english {
    position: relative;
    top: 180px;
    right: 32px;
}
p.english a {
    background: #ffffff;
    padding: 15px 20px;
    border: solid 1px #333333;
    border-radius: 16px;
}

@media screen and (max-width: 1200px) {
p.english {
    position: relative;
    top: 150px;
	right: 20px;
}
p.english a {
    padding: 10px 5.5px;
    border-radius: 5px;	
}
}

@media screen and (max-width: 959px) {
p.english {
	font-size: 1.8666666667vw;
	top: max(16vw, 70px);
	right: max(2.5vw, 10px);
}
}
	
/*@media screen and (max-width: 750px) {	
p.english {
   right: 18px;
}
}*/


/*耳鼻科サイト*/
/*p.jibika-site {
    position: relative;
    top: 220px;
    right: 32px;
}
p.jibika-site a {
    display: inline-block;
    font-size: 15px;
    text-align: center;
    width: 100%;
    color: #fff;
    background: #287d33;
    padding: 20px 5px;
    border: solid 1px #333333;
    border-radius: 16px;
}*/




/*ピックアップスライド*/
.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: #f8f8f8;
  border-radius: 10px;
  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: #666;
  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;
}	
}


/*お知らせ*/
.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: .9rem;
    color: #fff;
    background: #bfa8a0;
    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 #d4a5a5;
}
.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 #d4a5a5;
}
.main.news p {
    font-size: 18px;
}
h2.news-ttl.archive {
    font-size: 26px;
}


@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;
}	
}	



/*インフォメーション*/
/* 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;
}
h2.ttl {
    font-size: 50px;
    font-weight: 600;
    color: #d4a5a5;
    text-align: center;
    letter-spacing: 5px;
    padding: 30px 0px;
}
.button-container {
     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);
}

.icon-area {
  background-color: #bfa8a0; /* 左側の茶色系 */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  flex: 0 0 80px;
}

/*.icon {
  font-size: 1.5rem;
}*/
.btn.orange .icon-area {
    padding: 60px;
}
.btn.pink .icon-area {
    padding: 60px 66px;
}
.btn.orange .icon {
    width: 40px;
}
.btn.pink .icon {
    width: 24px;
}
.btn.line .icon {
    width: 40px;
}
.text-area {
  width: 100%;	
  padding: 1.5rem;
  font-size: 30px;
  display: flex;	
  align-items: center;
  justify-content: center;
  letter-spacing: 3px;	
   font-weight: 600;	
}

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

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

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


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


@media (max-width: 1000px){
.text-area {
    font-size: 20px;
	text-align: center;
}
.btn.orange .icon-area {
    padding: 60px 30px;
}
.btn.pink .icon-area {
    padding: 60px 33px;
}
.btn.orange .icon {
    width: 35px;
}
.btn.pink .icon {
    width: 20px;
}	
}
@media (max-width: 888px){
.btn {
  max-width: 800px;
  width: 44%;	
}
}

@media (max-width: 765px){
.button-container {
    flex-direction: column;
    align-items: center;	
    gap: 1rem;	
}
.btn {
	width: 90%;	
    min-width: 300px;
}
.icon-area {
    padding: 2rem;
    flex: 0 0 80px;
}
.text-area {
    font-size: 25px;	
	letter-spacing: 1px;
	 padding: 1.5rem 1rem;
}
.icon {
    width: 30px;
}
.btn.orange .icon-area {
    padding: 40px 36px;
}
.btn.pink .icon-area {
    padding: 40px 40px;
}
.btn.orange .icon {
    width: 30px;
}
.btn.pink .icon {
    width: 20px;
}
.btn.line  .icon-area {
    padding: 37px 31px;
}	
h2.ttl {
    font-size: 28px;
    padding: 60px 0px 0px;
}
}

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: #d4a5a5;
    padding: 0px 15px;
}
@media screen and (max-width: 750px) {
h3.ttl-tantoui {
    font-size: 22px;
    margin-bottom: 10px;
	margin-top: 25px;
    text-align: center;
}
}	




.info-boxes {
  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秒かけてなめらかに変化 */	
}
.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-box {
  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: 30px 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: #c4a99c;
}
.info-box.tel .info-title {
    margin: -20px -20px 50px;
}
.info-box.tel {
    width: 300px;
    max-width: 450px;
    border: solid 3px #c99a97;	
}
.info-box.access {
    height: auto;
	width: 570px;
    max-width: 600px;
	padding: 20px 20px 30px 20px;
    border: solid 3px #c4a99c;
}

.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: 1rem;
  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: #d4c2af;
    color: white;
    text-decoration: none;
    padding: 18.5px 16.5px;
    border-radius: 100vw;
    text-align: center;
}
.payment .icon-area {
    background: #e99c60;
    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 #e99c60;
   transition: all 0.5s ease; /* 0.5秒かけてなめらかに変化 */	
}

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


.arrow {
  margin-left: 6px;
}

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

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

.info-circle a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #c99a97;
  color: white;
  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 #fbeff0;	
  font-size: 18px;
  line-height: 1.7;
  flex-direction: column;
    transition: all 0.5s ease;	
}

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


.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 {
    display: block;
    font-size: 24px;
    color: #d4a5a5;
	padding-bottom: 20px;
}
span.orange-ttl {
    color: #fcc800;
	font-size: 60px;
}
span.pink-ttl {
    color: #fcacbf;
}

@media (max-width: 1200px) {
.info-circle {
 right: clamp(50px, 35vw, 50px);
 bottom: -150px;  	
}	
}

@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-box.tel .info-title {
    margin: -20px -20px 20px;
}	
.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 100px;
}
span.orange-ttl {
    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.en_ttl {
    font-size: 16px;
    padding-bottom: 5px;
}	
}



/*ポイント*/
.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: #fff5cf;
    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%);
}
.point-no::before {
  content: "";
  position: absolute;
  left: -60%;
  top: 55%;
  width: 0.5em;
  height: 2px;
  background-color: #c99a97;
  transform: translateY(-50%);
}
.point-box.pink {
    background: #edd6d6;
}
.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: #c45b5b;
}
.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 {
padding: 100px 0px 50px;
  position: relative;	
}
/* アニメーションのスムーズな動き */
.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 #d4a5a5;
 border-radius: 100vw;
}

.feature-circle:hover {
    border: solid 6px #ffcbc8;
}

.feature-circle a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #c99a97;
  color: white;
  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 #fbeff0;	
  font-size: 18px;
  line-height: 1.7;
  flex-direction: column;
  transition: all 0.5s ease; /* 0.5秒かけてなめらかに変化 */	
}	
	
.feature-circle a:hover {
    background: #a95d58;
}

@media (max-width: 1200px) {
.feature-circle {
 right: clamp(50px, 35vw, 50px);
}
.feature-wrap {
    padding: 100px 0px 150px;
}	
}


@media (max-width: 768px) {
.feature-wrap {
    padding: 50px 0px 80px;
    background: #fff;
}	
  .feature-circle {
    margin-top: 0px;
	bottom: 20px;  
	right: clamp(20px, 35vw, 20px); 
    border: solid 3px #d4a5a5;	  
} 
.feature-circle a {
    width: 130px;
    height: 130px;
    font-size: 13px;
    padding: 15px 0px 0px;
    border: solid 5px #fbeff0;	
  }	
.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 {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  height:10vmin;
  background: url(../img/medical-bk.jpg) repeat;
  margin-bottom: 0;/*下部余白を0にする*/
}

.medical-wrap {
    background: url(../img/medical-bk.jpg) repeat;;
	padding-bottom: 100px;
}	
.medical-wrap h2.ttl {
    color: #584b4b;
    padding: 0px 0px 30px;
    line-height: 1.2;
}
.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: 50px 30px;
  background: #fff;
  margin: 50px 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: #f1dddd;	
}

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

/* 番号（縦書き） */
.feature-number {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #b48c8c;
  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: #d99da3;
  margin-right: 15px;
  border-radius: 2px;
}

.feature-text p {
  font-size: 17px;
  line-height: 2.5;
  color: #333;
}
.corner.pink {
    background-color: #d4a5a5;
}
.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) {
  .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;
}
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: #e6d5c3;
    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: #d4a5a5; /* 優しいピンク（必要に応じて変更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: #e6d5c3;
    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:#c59898;
    font-size: 180px;
	letter-spacing: 15px;
	color: #c59898;	
}
.recruit-wrap h3.ttl {
    font-size: 24px;
    font-weight: 600;
    padding-left: 4vw;
    color: #fff;
    line-height: 1.7;
}
.recruit-list {
    padding-left: 4vw;
    color: #fff;
	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: 14px;
  color: #e26464;
  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: 1.1rem;	
	margin-bottom: 5px;
    color: #333;
    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 / auto;
  padding: 0 0 30px;
  margin: 80px 0;
}

/* h3 共通 */
h3.title {
  font-size: 24px;
  background: #f1f1f1;
  color: #743636;
  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: 60px;
}

/* h4 通常 */
h4.title {
	position:relative;
    font-size: 20px;
    color: #e06e8a;
    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(/wp-content/themes/tomiyoshi-hifu/img/h4-title.jpg);
    background-size: contain;
    background-repeat: no-repeat;

}


@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 {
   font-size: 18px;
   padding: 13px 10px 10px 20px;
   background-repeat: no-repeat;
   background-size: 0.5rem 100%;
   margin-bottom: 20px;
}
h4.title {
	font-size: 19px;
   margin: 25px 0px 10px 0px;
}	
.sub-contents p {
    font-size: 16px;
    line-height: 1.8;
}
ul.list01 {
    margin: 20px 0px;
}	
ul.list01 li{
   font-size: 16px;
   margin-bottom: 0px;
   letter-spacing: 1px;	
}	
}


/* 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 {
  position: relative;
  padding-left: 45px;
  font-weight: bold;
  font-size: 18px;
  color: #e26464;
  margin: 10px 0;
  line-height: 1.6;
}

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

.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: 24px;
   padding: 0px 0 20px;
   margin: 40px 0px 20px 0px;
}	
}

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



/* ▼ 下層ページ一覧 id：必要に応じて追記もOK */
#nikibi ul,
#atopy ul,
#atama ul,
#omutsukabure ul,
#kuchibiru-are ul,
#shimoyake ul,
#jinmashin ul,
#tobihi ul,
#mizuibo ul,
#yakedo ul,
#enshuke ul,
#kinzoku ul,
#kakukouen ul,
#hifuen ul,
#teare ul,
#shouhansen ul,
#hakusen ul,
#baby-skincare ul,
#baby-skin ul,
#shitaname-hifu ul,
#ashinomizumushi ul,
#taijouhoujin ul,
#datsumou ul,
#mushisare ul,
#nail-mizumushi ul,
#otitis_media ul,
#acute_otitis_media ul,
#otitis_media_with_effusion ul,
#ear_cleaning ul,
#external_otitis ul,
#acute_sensorineural_hearing_loss ul,
#eustachian_tube_stenosis ul,
#tinnitus ul,
#otitis_media_cured ul,
#recurrent_parotitis ul,
#dizziness ul,
#myringotomy ul,
#menieres-disease ul,
#open-eustachian-tube ul,
#tympanocentesis ul,
#mumps-test ul,
#mumps ul,
#aviation-otitis-media ul,
#hearing-test ul,
#meteorological_disease ul,
#ear-drops ul,
#ear-ointment ul,
#earing-aid-outpatient ul,
#earrings ul,
#sdgs ul,
#line ul
{
  margin: 20px 0;
  padding-left: 1.5rem;
}



@media screen and (max-width: 1000px){
/* ▼ 下層ページ一覧 id：必要に応じて追記もOK */
#nikibi ul,
#atopy ul,
#atama ul,
#omutsukabure ul,
#kuchibiru-are ul,
#shimoyake ul,
#jinmashin ul,
#tobihi ul,
#mizuibo ul,
#yakedo ul,
#enshuke ul,
#kinzoku ul,
#kakukouen ul,
#hifuen ul,
#teare ul,
#shouhansen ul,
#hakusen ul,
#baby-skincare ul,
#baby-skin ul,
#shitaname-hifu ul,
#ashinomizumushi ul,
#taijouhoujin ul,
#datsumou ul,
#mushisare ul,
#nail-mizumushi ul,
#otitis_media ul,
#acute_otitis_media ul,
#otitis_media_with_effusion ul,
#ear_cleaning ul,
#external_otitis ul,
#acute_sensorineural_hearing_loss ul,
#eustachian_tube_stenosis ul,
#tinnitus ul,
#otitis_media_cured ul,
#recurrent_parotitis ul,
#dizziness ul,
#myringotomy ul,
#menieres-disease ul,
#open-eustachian-tube ul,
#tympanocentesis ul,
#mumps-test ul,
#mumps ul,
#aviation-otitis-media ul,
#hearing-test ul,
#meteorological_disease ul,
#ear-drops ul,
#ear-ointment ul,
#earing-aid-outpatient ul,
#earrings ul,
#sdgs ul,
#line ul
{
  margin: 20px 0;
  padding-left: 0rem;
}
}


/* ▼ 各リストアイテムのスタイル統一 */
#nikibi ul li,
#atopy ul li,
#atama ul li,
#omutsukabure ul li,
#kuchibiru-are ul li,
#shimoyake ul li,
#jinmashin ul li,
#tobihi ul li,
#mizuibo ul li,
#yakedo ul li,
#enshuke ul li,
#kinzoku ul li,
#kakukouen ul li,
#hifuen ul li,
#teare ul li,
#shouhansen ul li,
#hakusen ul li,
#baby-skincare ul li,
#baby-skin ul li,
#shitaname-hifu ul li,
#ashinomizumushi ul li,
#taijouhoujin ul li,
#datsumou ul li,
#mushisare ul li,
#nail-mizumushi ul li,
#otitis_media ul li,
#acute_otitis_media ul li,
#otitis_media_with_effusion ul li,
#ear_cleaning ul li,
#external_otitis ul li,
#acute_sensorineural_hearing_loss ul li,
#eustachian_tube_stenosis ul li,
#tinnitus ul li,
#otitis_media_cured ul li,
#recurrent_parotitis ul li,
#dizziness ul li,
#myringotomy ul li,
#menieres-disease ul li,
#open-eustachian-tube ul li,
#tympanocentesis ul li,
#mumps-test ul li,
#mumps ul li,
#aviation-otitis-media ul li,
#hearing-test ul li,
#meteorological_disease ul li,
#ear-drops ul li,
#ear-ointment ul li,
#earing-aid-outpatient ul li,
#earrings ul li,
#sdgs ul li,
#line ul li,
#influenza-reservation ul li
{
  position: relative;
  padding: 0 0 0 38px;
  margin-bottom: 12px;
  font-size: 18px;
  color: #4d392f;
  line-height: 1.9;
  list-style: none;
}


@media screen and (max-width: 1000px){
/* ▼ 各リストアイテムのスタイル統一 */
#nikibi ul li,
#atopy ul li,
#atama ul li,
#omutsukabure ul li,
#kuchibiru-are ul li,
#shimoyake ul li,
#jinmashin ul li,
#tobihi ul li,
#mizuibo ul li,
#yakedo ul li,
#enshuke ul li,
#kinzoku ul li,
#kakukouen ul li,
#hifuen ul li,
#teare ul li,
#shouhansen ul li,
#hakusen ul li,
#baby-skincare ul li,
#baby-skin ul li,
#shitaname-hifu ul li,
#ashinomizumushi ul li,
#taijouhoujin ul li,
#datsumou ul li,
#mushisare ul li,
#nail-mizumushi ul li,
#otitis_media ul li,
#acute_otitis_media ul li,
#otitis_media_with_effusion ul li,
#ear_cleaning ul li,
#external_otitis ul li,
#acute_sensorineural_hearing_loss ul li,
#eustachian_tube_stenosis ul li,
#tinnitus ul li,
#otitis_media_cured ul li,
#recurrent_parotitis ul li,
#dizziness ul li,
#myringotomy ul li,
#menieres-disease ul li,
#open-eustachian-tube ul li,
#tympanocentesis ul li,
#mumps-test ul li,
#mumps ul li,
#aviation-otitis-media ul li,
#hearing-test ul li,
#meteorological_disease ul li,
#ear-drops ul li,
#ear-ointment ul li,
#earing-aid-outpatient ul li,
#earrings ul li,
#sdgs ul li,
#line ul li,
#influenza-reservation ul li
{
  font-size: 16px;
  line-height: 1.6;
}
}


/* ▼ カスタムマーカー */
#nikibi ul li::before,
#atopy ul li::before,
#atama ul li::before,
#omutsukabure ul li::before,
#kuchibiru-are ul li::before,
#shimoyake ul li::before,
#jinmashin ul li::before,
#tobihi ul li::before,
#mizuibo ul li::before,
#yakedo ul li::before,
#enshuke ul li::before,
#kinzoku ul li::before,
#kakukouen ul li::before,
#hifuen ul li::before,
#teare ul li::before,
#shouhansen ul li::before,
#hakusen ul li::before,
#baby-skincare ul li::before,
#baby-skin ul li::before,
#shitaname-hifu ul li::before,
#ashinomizumushi ul li::before,
#taijouhoujin ul li::before,
#datsumou ul li::before,
#mushisare ul li::before,
#nail-mizumushi ul li::before,
#otitis_media ul li::before,
#acute_otitis_media ul li::before,
#otitis_media_with_effusion ul li::before,
#ear_cleaning ul li::before,
#external_otitis ul li::before,
#acute_sensorineural_hearing_loss ul li::before,
#eustachian_tube_stenosis ul li::before,
#tinnitus ul li::before,
#otitis_media_cured ul li::before,
#recurrent_parotitis ul li::before,
#dizziness ul li::before,
#myringotomy ul li::before,
#menieres-disease ul li::before,
#open-eustachian-tube ul li::before,
#tympanocentesis ul li::before,
#mumps-test ul li::before,
#mumps ul li::before,
#aviation-otitis-media ul li::before,
#hearing-test ul li::before,
#meteorological_disease ul li::before,
#ear-drops ul li::before,
#ear-ointment ul li::before,
#earing-aid-outpatient ul li::before,
#earrings ul li::before,
#sdgs ul li::before,
#line ul li::before,
#influenza-reservation ul li::before
{
  content: "✓";
  position: absolute;
  left: 10px;
  color: #e5ab7e;
  font-size: 18px;
  font-weight: bold;
}


/* #nikibi */
#nikibi.two-column {
    display: flex;
    justify-content: space-around;	
	align-items:center;
}

#nikibi .con05 h4.title {
    font-size: 18px;
    color: #743636;
    font-weight: bold;
    position: relative;
    padding-left: 25px;
    margin: 40px 0 10px;
  }
  
#nikibi .con05 h4.title::before {
    content: "Q.";
    position: absolute;
    left: 0;
    top: 0;
    color: #e08080;
    font-weight: bold;
    font-size: 1em;
  }
  
  #nikibi .con05 p {
    border-left: 4px solid #e5ab7e;
    padding: 15px 20px;
    border-radius: 6px;
    color: #333333;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
  }

#nikibi .con09 dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }
  #nikibi .con09 dt {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  #nikibi .con09 dd {
    margin: 0 0 10px 0;
  }


#nikibi .con08 dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }
  
  #nikibi .con08 dt {
    width: 30%;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  #nikibi .con08 dd {
    margin: 0 0 10px 0;
  }

  #nikibi .con08 .treatment-info,
  #nikibi .con09 .treatment-info {
    max-width: 600px;
    margin: 0 auto;
  }
  
  #nikibi .con08 dl,
  #nikibi .con09 dl {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff8f8;
    border: 1px solid #e4caca;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 2px 5px #c896961a;
    margin: 0 auto;
    max-width: 100%;
  }
  
  #nikibi .con08 dt,
  #nikibi .con09 dt {
    font-weight: bold;
    color: #743636;
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  #nikibi .con08 dd,
  #nikibi .con09 dd {
    margin-left: 0;
    padding-left: 1rem;
    font-size: 18px;
    color: #333333;
    line-height: 1.7;
    /*border-left: 3px solid #e5ab7e;*/
    background: #fffdfd;
    padding: 8px 10px;
    border-radius: 5px;
  }


@media (max-width: 767px) {
  #nikibi .con05 p {
    font-size: 15px;
  }
  #nikibi .con08 dt,
  #nikibi .con09 dt {
    font-size: 15px;
  }
  
  #nikibi .con08 dd,
  #nikibi .con09 dd {
    font-size: 15px;
  }	
 }

/* #atopy */
#atopy img{
	max-width:300px
	
}
#atopy .two-column{
	align-items:center
}

/* ibo */
#ibo img{
	max-width:100px
}

/* omutsukabure */
#omutsukabure img{
	max-width:100px
}

/* kuchibiru-are */
#kuchibiru-are img{
	max-width:250px;
	margin-bottom:20px;
}
	
/* shimoyake */
#shimoyake img{
	max-width:100px;
	margin-bottom:20px;
}

/* jinmashin */
#jinmashin img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width:300px;
}

#jinmashin .two-column{
	align-items:center;
	gap:10px;
}

#jinmashin .column-item:first-child {
  flex: 0 0 70%;
}

#jinmashin .column-item:last-child {
  flex: 0 0 30%;
}

#jinmashin .two-column p:nth-of-type(2){
	font-size:14px;
    margin-top: 16px;
    color: #666;
}
@media screen and (max-width: 1000px){
#jinmashin img {
    height: auto;
    object-fit: contain;
	
  }
#jinmashin .two-column {
        display: flex;
        flex-direction: column;
    }
}

/* tonohi */
#tobihi img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  display: block;
  margin-bottom:10px;
}

#tobihi .two-column{
	gap:10px;
}

#tobihi .column-item:first-child {
  flex: 0 0 70%;
}

#tobihi .column-item:last-child {
  flex: 0 0 30%;
}

/* mizuibo */
#mizuibo img{
    max-width: 200px;
}

/* yakedo */
#yakedo img{
    max-width: 200px;
	max-height: 150px;
}

/* metal-allergy */
#metal-allergy img{
  max-width: 350px;
  height: auto;
  display: block;
    margin: 20px auto 10px;
}

@media screen and (max-width: 767px) {
#metal-allergy img{
  max-width: 100px;
  height: auto;
  display: block;
    margin: 20px auto 10px;
}
}

/* koukaku-en */
#koukaku-en img{
	max-width: 200px;
	margin-bottom:20px;
}

/* shirouhifu-en */
#shirouhifu-en img{
	max-width: 200px;
	margin-bottom:20px;
}

/* baby-skincare */
#baby-skincare img{
	max-width: 200px;
	margin-bottom:20px;
}

/* baby-skincare */
#shitaname-hifu img{
	max-width: 200px;
	margin-bottom:20px;
}

/* foot-mizumushi */
#foot-mizumushi img{
	max-width: 200px;
	margin-bottom:20px;
}

/* taijo-hoshin */
#taijo-hoshin img{
	max-width: 200px;
	max-height:200px;
	margin-bottom:20px;
}

/* datsumou */
#datsumou img{
	max-width: 200px;
	max-height:200px;
	margin-bottom:20px;
}

/* mushisasare */
#mushisasare img{
	max-width: 200px;
	max-height:200px;
	margin-bottom:20px;
}

/* nail-mizumushi */
#nail-mizumushi img{
	max-width: 200px;
	max-height:200px;
	margin-bottom:20px;
}

/* point */
#point .two-column{
	position:relative;
	margin: 150px auto 0;
	align-items: center;
}

#point h3.title {
    font-size: 24px;
    background: #e99c60;
    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:#e5ab7e;
    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: 70px 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 #d4a5a5 transparent;
  border-radius: 0 0 10px 0;
}

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

/* カード全体がクリック可能になるように <a> をブロック化 */
#symptom .symptom-button a {
  display: block;
  background-color: #ededed;
  border-radius: 12px;
  padding: 30px 15px;
  text-align: left;
  color: #763b37;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;	
  text-decoration: none;
  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
  }

  #symptom .symptom-button a {
	padding: 20px 10px;
    font-size: 0.85rem;
  }
}
/* access */
#access .sp {
  display: none;
}

#access .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

#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: #d4a5a5;
  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: #d4a5a5;
  font-weight: bold;
  border: dotted 2px #d4a5a5;	
}

#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: #e6d5c3;
    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: #e99c60;
    text-align: center;
    margin: 40px 0px;
}
.doctor-name span{
    font-size: 20px;
    color: #fff;
	background:#e99c60;
    text-align: center;
    padding: 10px  30px;
	margin:0px 15px 0px 0px;
    border-radius: 5px;	
}

@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;
}
}


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

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

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

#staff .flex-item02 img {
 width:130px;
  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 70%;
}

/* レスポンシブ対応（画面幅が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: 23%;
}
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;
}

/* eustachian_tube_stenosis */

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

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

#eustachian_tube_stenosis .flex-box p,
#eustachian_tube_stenosis .flex-box .flex-item {
  width: 80%;
  font-size: 16px;
  line-height: 1.6;
  color: #4D392F;
}

#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;
}
}


#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 .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

#price_list .c-inner {
  max-width: 1000px;
  margin: 0 auto;
}

#price_list table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 16px;
  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: #ffeeee;
  font-weight: bold;
}

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

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

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

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

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

  #price_list .title {
    font-size: 20px;
  }

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

  #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: #8B0000;
    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 #d4a5a5;
    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(550px, 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: #d4a5a5;
    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 #ffdfe6;
    font-weight: 500;	
}

@media screen and (max-width: 1100px) and (min-width: 769px) {
	#about .basic-information .flex-box .flex-item table {
     font-size: 14px;
}
	#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 ul{
	    padding-left: 25px;
}

#hug ul li{
	list-style:disc;
}

#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: #e6d5c3;
    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;
    color: #e5ab7e;	
}

#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;
    }


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

.page-archive a {
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    background: #d0bab0;
    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: #c99a97;
    padding: 15px 30px;
    margin: 0px 20px;
}

.page-prev a {
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    background: #c99a97;
    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: #f9bb87;
    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 {
    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: #f7d5d5;
	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;	
}
.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;	
}

.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: 15px auto;
    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:#d4a5a5;
    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;
}
.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: 50px;
    border: solid 6px #d4a5a5;
    border-radius: 100vw;
	z-index: 20;
}
.doctor-circle:hover {
    border: solid 6px #ffcbc8;
}

.doctor-circle a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #c99a97;
  color: white;
  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 #fbeff0;	
  font-size: 18px;
  line-height: 1.7;
  flex-direction: column;
  transition: all 0.5s ease; /* 0.5秒かけてなめらかに変化 */	
}	
	
.doctor-circle a:hover {
    background: #a95d58;
}

@media (max-width: 1200px) {
section.doctor {
    background: #fbf9ee;
    padding: 100px 0px 200px 0px;
}	
.doctor-circle {
    bottom: -150px;
}
}

	
@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: 0px 0px 100px;
}	
  .doctor-circle {
    margin-top: 0px;
	bottom: -30px;  
	right: 0; 
	left:unset; 
    border: solid 3px #d4a5a5;	  
} 
.doctor-circle a {
    width: 130px;
    height: 130px;
    font-size: 13px;
    padding: 15px 0px 0px;
    border: solid 5px #fbeff0;	
  }	
.doctor h2.ttl {
    padding: 60px 0px 0px;
}	
}	
	



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

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

.acc-btn:hover {
    background: #f9bb87;
    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: #f9bb87;
  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 {
    margin: 50px auto;
    padding: 0px 40px 50px 40px;
    max-width: 1400px;
    background: #fff7f7;
    border: solid 2px #ffffff;
}
.pickup-medical ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;	
}
.pickup-medical ul li {
    width: 30%;
	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: #d4a5a5;
    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: 50px 0px;
    border-radius: 10px;
    box-sizing: border-box; /* 念のため追加 */
}

.pickup-medical ul li a:hover {
    background:#ecdbdb;
}

@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;
}	
}

@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;
}	
}


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;
}
}



/*リンク*/
section.top-link-section {
	margin: 0px 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: 0px 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;
}	
}







/*# 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 */
