@charset "utf-8";

/* Reset CSS （normalize.css v3.0.2） */
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
/* 追加 */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}address{font-style:normal}*{margin:0;padding:0}*,:after,:before{background-repeat:no-repeat;box-sizing:border-box}img{vertical-align:bottom;-webkit-backface-visibility:hidden}

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

  Base
  
----------------------------------------------------------------------------------------------------*/
:root {
  --base-width: 1366px;
  --cubic-bezier: cubic-bezier(.23,1,.32,1);
}
@media print, screen and (min-width:1001px) {
  :root {
    --line-height: 1.8;
    --line-height-l: 2.0;
    --line-height-m: 1.6;
    --line-height-s: 1.4;
    --side-space: 40px;
    --block-space-unit: 40px;
    --box-space-unit: 10px;
  }
}
@media print, screen and (min-width:641px) and (max-width:1000px) {
  :root {
    --line-height: 1.6;
    --line-height-l: 2.8;
    --line-height-m: 1.4;
    --line-height-s: 1.2;
    --side-space: 30px;
    --block-space-unit: 30px;
    --box-space-unit: 8px;
  }
}
@media screen and (max-width:640px) {
  :root {
    --line-height: 1.6;
    --line-height-l: 2.8;
    --line-height-m: 1.4;
    --line-height-s: 1.2;
    --side-space: 6%;
    --block-space-unit: max(calc(30 / 640 * 100vw), 15px);
    --box-space-unit: 6px;
  }
}
:root {
  --block-space-max: calc(var(--block-space-unit) * 4);/*160*/
  --block-space-3l: calc(var(--block-space-unit) * 3.5);/*140*/
  --block-space-2l: calc(var(--block-space-unit) * 3);/*120*/
  --block-space-l: calc(var(--block-space-unit) * 2.5);/*100*/
  --block-space-m: calc(var(--block-space-unit) * 2);/*80*/
  --block-space-s: calc(var(--block-space-unit) * 1.75);/*70*/
  --block-space-2s: calc(var(--block-space-unit) * 1.5);/*60*/
  --block-space-3s: calc(var(--block-space-unit) * 1.25);/*50*/
  --block-space-min: calc(var(--block-space-unit) * 1);/*40*/
  
  --box-space-max: calc(var(--box-space-unit) * 5);/*50*/
  --box-space-l: calc(var(--box-space-unit) * 4.5);/*45*/
  --box-space-m: calc(var(--box-space-unit) * 4);/*40*/
  --box-space-s: calc(var(--box-space-unit) * 3.5);/*35*/
  --box-space-2s: calc(var(--box-space-unit) * 3);/*30*/
  --box-space-min: calc(var(--box-space-unit) * 2.5);/*25*/
}
  
html,
body {
  height: 100%;
}
body {
  min-width: 320px;
  background-color: #fff;
  color: #414B4B;
  font-family: 'Shippori Mincho','Helvetica Neue','Arial','Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,serif;
  font-weight: 400;
  line-height: var(--line-height);
  word-wrap: break-word;
  text-align: center;
}
.js_rpsTable,
.js_rpsBlock {
  overflow: hidden;
}
.js_linkBox {
  cursor: pointer;
}
.js_iframe iframe {
  pointer-events: none;
  cursor: pointer;
}
.clear:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.t-nowrap { display: inline-block; }
.lineh-l { line-height: var(--line-height-l); }
.lineh-m { line-height: var(--line-height-m); }
.lineh-s { line-height: var(--line-height-s); }

/*--------------------------------------------------------------------------------
  font
--------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
}
:root {
  --fs-max: 3em;/*48*/
  --fs-6l: 2.6em;/*41.6*/
  --fs-5l: 2.3em;/*36.8*/
  --fs-4l: 2em;/*32*/
  --fs-3l: 1.7em;/*27.2*/
  --fs-2l: 1.5em;/*24*/
  --fs-l: 1.3em;/*20.8*/
  --fs-m: 1.1em;/*17.6*/
  --fs-s: 0.9em;/*14.4*/
 --fs-2s: 0.8em;
  --fs-3s: 0.7em;
  --fs-min: 0.6em; 
  
   /* --ff-en: 'Josefin Sans', sans-serif;
  --ff-min: 'Shippori Mincho', serif;; */
}
@media print, screen and (max-width:1200px) {
  :root {
    --fs-max: 2.3em;
    --fs-5l: 2.1em;
    --fs-4l: 1.9em;
    --fs-3l: 1.6em;
  }
}
@media print, screen and (max-width:800px) {
  :root {
    --fs-max: 2.1em;
    --fs-5l: 2em;
    --fs-4l: 1.8em;
    --fs-3l: 1.5em;
    --fs-2l: 1.4em;
    --fs-l: 1.2em;
  }
}
@media print, screen and (max-width:1200px) {
  html {
    font-size: clamp(58%, 0.2em + 0.6vw, 62.5%);
  }
}
@media screen and (max-width:640px) {
  html {
    font-size: clamp(50%, 0.3em + 0.8vw, 58%);
  }
}
.fs-max { font-size: var(--fs-max); }
.fs-5l { font-size: var(--fs-5l); }
.fs-4l { font-size: var(--fs-4l); }
.fs-3l { font-size: var(--fs-3l); }
.fs-2l { font-size: var(--fs-2l); }
.fs-l { font-size: var(--fs-l); }
.fs-m { font-size: var(--fs-m); }
.fs-ms { font-size: var(--fs-ms); }
.fs-s { font-size: var(--fs-s); }
.fs-2s { font-size: var(--fs-2s); }
.fs-3s { font-size: var(--fs-3s); }
.fs-min { font-size: var(--fs-min); }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }

.fc-blue { color: #305884; }
.fc-dblue { color: #1C3C5E; }
.fc-lblue { color: #5DA9E9; }
.fc-gold { color: #917D5F; }
.fc-red { color: #B93A55; }
.fc-orange { color: #FF3F00; }

/* .ff-en { font-family: var(--ff-en); }
.ff-min { font-family: var(--ff-min); } */

.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.shippori-mincho-medium {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.shippori-mincho-semibold {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.shippori-mincho-bold {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

/* .montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */


/*-----------------------------------------------------------------------------------
  img
-----------------------------------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}
img[src$=".svg"] {
  width: 100%;
  height: auto;
}
@media (hover: hover) {
  img.img-hv,
  a.img-hv img {
    transition: opacity 0.3s ease-out;
  }
  img.img-hv:hover,
  a.img-hv:hover img,
  .js_linkBox:hover img.img-hv {
    opacity: 0.6;
  }
}

/*-----------------------------------------------------------------------------------
  link
-----------------------------------------------------------------------------------*/
a {
  outline: none;
}
a,
a:visited,
a:hover {
  color: #48B8D0;
  text-decoration: underline;
}
@media (hover: hover) {
  a,
  .js_linkBox {
    transition: color 0.15s ease-out, opacity 0.15s ease-out, background 0.3s ease-out, border 0.15s ease-out;
  }
  a:hover,
  .js_linkBox:hover a {
    color: #9AB83F;
    text-decoration: none;
  }
}
@media (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    color: inherit;
  }
}
a[href^="tel:"],
a[href^="tel:"]:visited,
a[href^="tel:"]:hover {
  color: inherit;
  text-decoration: none;
}



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

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

.pc {
}
.sp {
	display: none;
}

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

.flex{
    display: flex;
}

.between{
    justify-content: space-between;
}

.j-center{
    justify-content: center;
}

.align-center{
    align-items: center;
}



/*----------------
enttl
----------------*/

.en{
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.enttl{
  line-height: var(--line-height-s);
  font-size:var(--fs-3l);
  font-weight: 400;
}

.enttl span{
  display: block;
  color: #B93A55;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.enttl[enposi="left"]{
  text-align: left;
}
@media screen and (max-width: 750px) {
  .enttl[enposi="left"]{
    text-align: center;
  }
}

.enttl[enposi="center"]{
  text-align: center;
}

/*----------------
naname
----------------*/

.naname {
  align-items: center; /* 線を上下中央 */
  display: flex; /* 文字と線を横並び */
  justify-content: center; /* 文字を中央寄せ */
}
.naname::before,
.naname::after {
  background-color: #F4C8CD; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  content: "";
  height: 5px; /* 線の高さ */
  width: 40px; /* 線の長さ */
}
.naname::before {
  margin-right: 10px; /* 文字との余白 */
  transform: rotate(60deg); /* 傾ける */
}
.naname::after {
  margin-left: 10px; /* 文字との余白 */
  transform: rotate(-60deg); /* 傾ける */
}


/*----------------
link-button
----------------*/

.link-button{
  background-color: #6F6D5A;
  border-radius: 4px;
  box-sizing: border-box;
  width: 180px;
  height: 60px;
  margin: auto;
}

.link-button a{
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  height: 100%;
  border-radius: 4px;
}

.link-button a:hover{
  background-color: #484637;
}

.link-button a > span{
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.link-button a::after{
  content: url(../image/common/arrow-white-button.svg);
  position: absolute;
  padding-top: 2px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.link-button a:hover::after{
  right: 10px;
  transition: .3s;
}

.link-button.tel-button,
.link-button.web-button{
  max-width: 400px;
  width: 100%;
  height: 120px;
  /* border-radius: 0px 20px 0px 20px;  */
}


/* .link-button.tel-button a,
.link-button.web-button a{
  border-radius: 0px 20px 0px 20px;
} */

.link-button.tel-button a > span,
.link-button.web-button a > span{
  left: 50%;
  transform: translate(-50%,-50%);
  padding-left: 56px;
  white-space: nowrap;
}

.link-button.tel-button a > span::before,
.link-button.web-button a > span::before{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  display: block;
  width: 36px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-color: #fff; */
}

.link-button.tel-button a > span::before{
  background-image: url(../image/common/phone.svg);
}

.link-button.web-button a > span::before{
  background-image: url(../image/common/smart_phone.svg);
}

.link-button.tel-button:hover,
.link-button.web-button:hover{
  animation: yureru-j 1s infinite;
}

@keyframes yureru-j {
  0% {
      transform: translate(0px, 2px);
  }
  5% {
      transform: translate(0px, -2px);
  }
  10% {
      transform: translate(0px, 2px);
  }
  15% {
      transform: translate(0px, -2px);
  }
  20% {
      transform: translate(0px, 2px);
  }
  25% {
      transform: translate(0px, -2px);
  }
  30% {
      transform: translate(0px, 0px);
  }
}


.link-button.tel-button a::after,
.link-button.web-button a::after{
  content: none;
}

.link-button.tel-button{
  background-color:#48B8D0;
}

.link-button.tel-button a > span{
  display: flex;
  flex-direction: column;
}

.link-button.tel-button a > span >span{
  white-space: nowrap;
}

.link-button.tel-button a > span >span:nth-child(2){
  background-color: #fff;
  color:#48B8D0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.link-button.tel-button a:hover{
  background-color: #fe95a1;
}

.link-button.tel-button a:hover > span >span:nth-child(2){
  color: #fe95a1;
  transition: .3s;
}

.link-button.web-button{
  background-color:#9BBC97;
}

.link-button.web-button span{
  font-size: var(--fs-l);
}

.link-button.web-button a:hover{
  background-color: #629a5c;
}

/*----------------
header
----------------*/
header{
  /* background-color: #FBFAED;
  height: 90px; */

}

.header-primary{
  /* padding:22px 40px; */
  position: relative;
}


.header-wrap{
  width: 95%;
  padding:22px 40px;
  position: absolute;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-box .box-inner{
  display: flex;
  align-items: center;
}

.header-menu{
  margin-right: 50px;
}

.header-menu ul{
  display: flex;
}

.header-menu ul li{
  list-style: none;
}

.header-menu ul li:nth-last-child(n+3){
  margin-right: 20px;
}

.header-menu ul li:nth-last-child(2){
  margin-right: 40px;
}

.header-menu ul li a:not(.insta){
  text-decoration: none;
  padding:10px;
}

@media print, screen and (max-width:1200px) {
  /* .header-primary{
    padding:22px 30px;
  } */

  .header-menu{
    margin-right: 25px;
  }

  .header-menu ul li:nth-last-child(n+3){
    margin-right: 10px;
  }
  
  .header-menu ul li:nth-last-child(2){
    margin-right: 15px;
  }
  .header-menu ul li a:not(.insta){
    padding:0px;
  }
}
.hedder-tel.fix{
  margin-left: auto;
}

@media print, screen and (max-width:640px) {
  .hedder-tel.fix{
    position: fixed;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.hedder-tel{
  border-radius: 4px;
  width: 190px;
  height: 46px;
  background-color: #48B8D0;
}

.hedder-tel a{
  position: relative;
  border-radius: 4px;
  height: 100%;
  color: #fff;
  display: block;
  font-size: var(--fs-m);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.hedder-tel a span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding-left: 24px;
  white-space: nowrap;
}

.hedder-tel a span::before{
  position: absolute;
  content: "";
  display: block;
  top: 2px;
  left: 0%;
  width: 15px;
  height: 24px;
  background-image: url(../image/common/phone.svg);
  background-size: cover;
}

/* .logo{
    transition: all 0.3s;
} */
@media print, screen and (max-width:800px) {
.logo img{
   width: 240px;
   transition: all 0.3s;
  }

  .header-wrap {
    padding: 22px 20px;
  }
}
/* @media print, screen and (min-width:961px) {
  .menu-trigger-button{
    display: none;
  }
} */

/* @media print, screen and (max-width:960px) { */

/*========= ナビゲーションのためのCSS ===============*/
.header-box{
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position:fixed;
z-index: -1;
opacity: 0;/*はじめは透過0*/
  /*ナビの位置と形状*/
top:0;
left: 0;
width:100%;
  height: 100vh;/*ナビの高さ*/
background:#ffe0f3;
  /*動き*/
transition: all 0.3s;
visibility: hidden;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/.header-box.panelactive{
opacity: 1;
z-index:999;
visibility: visible;
}

.logo.active{
  position: fixed;
  top:22px;
  left:30px;
  z-index:1000;
}

/*ナビゲーションの縦スクロール*/.header-box.panelactive.header-box-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/.box-inner {
  flex-direction: column;
  /* display: none; */
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}
.header-box.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/
.header-box li{
list-style: none;
  text-align: center; 
}
.header-box li a{
text-decoration: none;
padding:10px;
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
}

.header-menu ul li a{
  font-size: var(--fs-m);
}

/*========= ボタンのためのCSS ===============*/
.menu-trigger{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:37px;
	right: 40px;
	cursor: pointer;
    width: 50px;
    height:50px;
}

@media print, screen and (max-width:800px) {
  .menu-trigger{
    top:20px;
    right: 20px;
    
  }
}
	
/*×に変化*/	
.menu-trigger span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 0;
    height: 3px;
    border-radius: 3px;
	background-color: #fff;
  	width: 80%;
  }

  @media print, screen and (max-width:800px) {

  }

  .menu-trigger.change-color span{
    background-color: #48B8D0;
    transition: 0.3s;
  }

.menu-trigger span:nth-of-type(1) {
	top:10px;	
}

.menu-trigger span:nth-of-type(2) {
	top:24px;
}

.menu-trigger span:nth-of-type(3) {
	bottom:10px;
}

.menu-trigger.active span:nth-of-type(1) {
    /* top: 18px;
    left: 18px; */
    top: 18px;
    left: 0px;

    transform: translateY(6px) rotate(-45deg);
    /* width: 30%; */
    width: 100%;
}

.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}

.menu-trigger.active span:nth-of-type(3){
    /* top: 30px;
    left: 18px; */
    top: 30px;
    left: 0px;
    transform: translateY(-6px) rotate(45deg);
    /* width: 30%; */
    width: 100%;
}



  .header-menu ul li a.insta img{
    width: 40px;
  }

  .header-menu {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  
  .header-menu ul li:nth-last-child(n+3) {
    margin-right: 0px;
    margin-bottom: 10px;
  }
  
  .header-menu ul li:nth-last-child(2) {
    margin-right: 0;
    margin-bottom: 15px;
  }

/* } */

/*----------------
top-news
----------------*/

.splide__slide img {
  height: auto;
  width: 100%;
}

/*----------------
top-news
----------------*/
.top-news{
  position: relative;
  margin-top: -80px;
  overflow: hidden;
 padding: 0 40px;
 /* margin-bottom: 100px;
   background-color: #FBFAED; */
}

@media print, screen and (max-width:800px) {
  .top-news{
    margin-top: -20px;
  }
}

.top-news h2{
  position: relative;
  /* z-index: 1; */
  margin-right: 50px;
  white-space: nowrap;
}

.top-news .inner{
  max-width: 1640px;
  margin: 0 auto;
  /* background: linear-gradient(#EAF7DA, #FCFDEF); */
  background: linear-gradient(#FFF4FB, #FFF5D6);
  padding: 80px;
}

.top-news .box{
  display: flex;
  max-width: 1376px;
  margin: auto;
  justify-content: space-between;
}

@media print, screen and (max-width:1200px) {
  .top-news{
   padding: 0 3%;
  }

  .top-news .inner{
    padding: 40px 5%;
  }
  .top-news h2{
    margin-right: 0px;
    margin-bottom: 30px;
    text-align: center;
  }
  .top-news h2 span{
    text-align: center;
  }

  .top-news .box{
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media print, screen and (max-width:640px) {
  .top-news{
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* .r_infoback,
.l_infoback{
  position: absolute;
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
.r_infoback{
  width: 520px;
  height: 324px;
  top: 0;
  right: -200px;
  background-image: url(../image/top/r_infoback.png);
}
.l_infoback{
  width: 544px;
  height: 192px;
  bottom: 0;
  left: -100px;
  background-image: url(../image/top/l_infoback.png);
} */

.top-news-list{
  position: relative;
  /* z-index: 1; */
  list-style: none;
  background-color: #fff;
  padding: 40px;
  /* margin-bottom: 40px; */
  max-width: 1200px;
  width: 100%;
}
@media print, screen and (max-width:640px) {
  .top-news-list{
    padding-left: 20px;
    padding-right: 20px;
  }
}

.top-news-list li{
  text-align: left;
  display: flex;
}

.top-news-list li .date{
  color: #6F6D5A;
  margin-right: 20px;
}

.top-news-list li .title{
  display: block;
}

.top-news-list li:not(:last-child){
  margin-bottom: 20px;
}

@media print, screen and (max-width:640px) {
  .top-news-list li{
    flex-direction: column;
  }
  .top-news-list li .date{
    margin-right: 0px;
    margin-bottom: 4px;
  }
  .top-news-list li:not(:last-child){
    margin-bottom: 24px;
  }
  
}


.top-news .link-button{
  position: relative;
  z-index: 2;
}



/*----------------
credo
----------------*/

.credo{

padding-left: 30px;
padding-right: 30px;
margin-bottom: 120px;
}

.credo .inner{
  max-width: 1695px;
  width: 100%;
margin: auto;
}

.credo h2{
margin-bottom: 60px;
}

.credo-box{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 50px;
}

.credo-box .box-item{
  position: relative;
}

.credo-box .box-item .num{
  position: absolute;
  left: 0;
  top: -80px;
  z-index: 2;
  font-size: 100px;
  font-weight: 300;
  color: #01BAEF;
}

.credo-box .box-item img{
  position: relative;
  z-index: 1;
  border-radius: 100px 0 0 0;
  width: calc(100% - 80px);
}

.credo-box .box-item .img-box{
  position: relative;
}

.credo-box .box-item .img-box::after{
  position: absolute;
  top: 40px;
  right: 0;
  display: block;
  width: calc(100% - 80px);
  height: 100%;
  z-index:0 ;
  content: "";
background-color: #FDFAF1;
border-radius: 100px 0 0 0;
}

.credo-box .box-item p{
  font-weight: 600;
  text-align: left;
  position: relative;
  font-size: var(--fs-2l);
  margin-top: -116px;
  z-index: 1;
}

.credo-box .box-item p span{
  display: inline-block;
  color: #fff;
  background-color:#5DA9E9 ;
  padding: 5px 10px;
}

.credo-box .box-item p span:not(:last-child){
margin-bottom: 10px;
}



@media print, screen and (max-width:1440px) {
  .credo-box .box-item p{

    font-size: calc(16px + 8 * ((100vw - 320px) / 1120));
  }
}


@media print, screen and (max-width:1200px) {

  .credo-box{
    grid-template-columns: repeat(1,1fr);
    gap: 100px;
  }

  .credo-box .box-item{
    max-width: 600px;
    margin: auto;
  }
  .credo-box .box-item p{
    margin-top: -138px;
    font-size:30px
  }
}

@media print, screen and (max-width:800px) {

  .credo-box{
    grid-template-columns: repeat(1,1fr);
    gap: 100px;
  }

  .credo-box .box-item{
    max-width: 600px;
    margin: auto;
  }

  .credo-box .box-item .num{
    left: 0;
    top: -50px;
    font-size: 80px;
  }
  .credo-box .box-item p{
    font-size: 24px;
    margin-top: -20%;
}
}




/*----------------
  outline
----------------*/

.outline{
  /* background-color: #fff; */
  max-width: 1286px;
  margin: auto;
  padding-bottom: 100px;
}

.outline .inner{
  padding-right: var(--box-space-m);
  padding-left: var(--box-space-m);
}

.outline h2{
  /* font-size: var(--fs-5l); */
  margin-bottom: var(--block-space-s);
}

.outline .img-box{
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--block-space-3s);
}


.outline .img-box .img-box-item{
  max-width: 740px;
  width: 100%;
  height: 460px;
  background-image: url(../image/top/outline.jpg?v=2);
  background-size: cover;
  /* background-color: #ededed; */
}

.outline .img-box .img-box-item.gmap {
  max-width: 424px;
}

.outline .img-box .img-box-item.exterior {
  margin-right: 40px;
}

@media print, screen and (max-width:900px) {
  .outline .img-box{
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .outline .img-box .img-box-item {
      max-width: 900px;
  }

  .outline .img-box .img-box-item.gmap {
      max-width: 900px;
  }
  
  .outline .img-box .img-box-item.exterior {
      margin-right: 0px;
      margin-bottom: 40px;
  }
}
.outline .img-box .img-box-item iframe{
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.outline .txt-box{
  font-size: var(--fs-m);
  display: flex;
  justify-content: space-between;
}

.outline .txt-box .txt-box-item{
  text-align: left;
  max-width: 564px;
  width: 100%;
}


/* .outline .txt-box .txt-box-item .tel{
  margin-top: var(--block-space-s);
} */

.outline .txt-box .txt-box-item .tel-button{
  margin-left: 0;
}

.outline .txt-box .txt-box-item:nth-of-type(1){
  margin-right: var(--block-space-s);
}

.outline .txt-box .txt-box-item dl{
  margin-bottom:var(--block-space-s) ;
}

@media print, screen and (max-width:900px) {
  .outline .txt-box{
      flex-wrap: wrap;
      justify-content: center;
  }

  .outline .txt-box .txt-box-item:nth-of-type(1){
      margin-right: 0;
      margin-bottom: var(--block-space-s);
  }

  .outline .txt-box .txt-box-item{
      max-width: 900px;
  }

  .outline .txt-box .txt-box-item .tel-button{
    margin-left: auto;
  }
}

.outline .txt-box .txt-box-item dt{
  font-weight: 700;
  border-bottom:1px solid #EDEDED;
  padding-bottom: 10px;
  margin-bottom:10px ;
}

.outline .txt-box .txt-box-item dd a{
  /* color: #003F91; */
  font-weight: 700;
}

.outline .txt-box .txt-box-item dd p span{
  min-width: 84px;
  margin-right: 20px;
  display: inline-block;
}

/*-------
診療時間table
-------*/

.open-hours {
  font-weight: 700;
  display: grid;
  grid-template-areas:/*スマホ並び*/
  "th-we th-am th-pm"
  "week1 am1 pm1"
  "week2 am2 pm2"
  "week3 am3 pm3"
  "week4 am4 pm4"
  "week5 am5 pm5"
  "week6 am6 pm6"
  "week7 am7 pm7";
}

.open-hours div span.opn{
  display: block;
  width: var(--fs-m);
  height: var(--fs-m);
  background-color: #414B4B;
  border-radius: 50%;
}

.open-hours div span.cls{
  display: block;
  width: var(--fs-m);
  height: 2px;
  background-color: #222222;
}

/* .th-week,.week1,.week2,.week3,.week4,.week5,.week6,.week7,
.th-am,.am1,.am2,.am3,.am4,.am5,.am6,.am7,.th-pm,.pm1,.pm2,
.pm3,.pm4,.pm5,.pm6,.pm7 含む*/
.open-hours div[class*="week"],
.open-hours div[class*="am"],
.open-hours div[class*="pm"]{
 display: grid;
 place-items: center;
 padding-top: 15px;
 padding-bottom: 15px;
 border-top: 1px solid #EDEDED;
 text-align: center;
}
.th-week,.th-am,.th-pm{
  padding-left: var(--box-space-s);
  padding-right: var(--box-space-s);
  min-width: 100px;
}

/* 始まる */
.open-hours div[class^="week"],
.open-hours div[class^="am"],
.open-hours div[class^="pm"]{
padding: 0 5px;
}

.th-week {
grid-area: th-we;
}
.week1 {
grid-area:week1;
}
.week2 {
grid-area:week2;
}
.week3 {
grid-area:week3;
}
.week4 {
grid-area:week4;
}
.week5 {
grid-area:week5;
}
.week6 {
grid-area:week6;
color: #2E5C6A;
}
.week7 {
grid-area:week7;
/* color: #C56974; */
padding-right: var(--box-space-min);
}

.week7 small{
  font-size: var(--fs-s);
  line-height: 2.2;
}

.th-am {
grid-area:th-am;
}
.am1 {
grid-area:am1;
}
.am2 {
grid-area:am2;
}.am3 {
grid-area:am3;
}
.am4 {
grid-area:am4;
}.am5 {
grid-area:am5;
}
.am6 {
grid-area:am6;
}
.am7 {
grid-area:am7;
padding-right: var(--box-space-min);
}
.th-pm {
grid-area:th-pm;
}
.pm1 {
grid-area:pm1;
}
.pm2 {
grid-area:pm2;
}
.pm3 {
grid-area:pm3;
}
.pm4 {
grid-area:pm4;
}
.pm5 {
grid-area:pm5;
}
.pm6 {
grid-area:pm6;
}
.pm7 {
grid-area:pm7;
padding-right: var(--box-space-min);
}

@media screen and (min-width: 500px) {
  .open-hours {
  display: grid;
  grid-template-areas:/*pc並び*/
  "th-we week1 week2 week3 week4 week5 week6 week7"
  "th-am am1 am2 am3 am4 am5 am6 am7"
  "th-pm pm1 pm2 pm3 pm4 pm5 pm6 pm7";
  grid-template-columns:auto repeat(7, 1fr);
  /* grid-template-rows: 100px 100px 100px; */
  }
 
}

/*----------------
  calendar
----------------*/

.p-back{
  position: relative;
  overflow: hidden;
}


.p-back > img{
  position: absolute;
  z-index: -1;
}


.p-back .left01{
  width: 74px;
  height: 72px;
  left: 3vw;
  top: 30%;
  }

  .p-back .left02{
    width: 57px;
    height: 57px;
    left: -1vw;
    bottom: 55%;
  }

  .p-back .left03{
    width: 380px;
    height: 380px;
    left: -12vw;
    bottom: 2%;
  }


  .p-back .right01{
    width: 254px;
    height: 254px;
    right: -10vw;
    top: 15%;
  }

  .p-back .right02{
    width: 57px;
    height: 57px;
    right: 2vw;
    bottom: 36%;
  }

  .p-back .right03{
    width: 74px;
    height: 72px;
    right: 5vw;
    bottom: 20%;
  }

  @media print, screen and (max-width:800px) {
    .p-back .left01{
      width: 40px;
      height: 38px;
      left: 1vw;
      top: 15%;
      }
    
      .p-back .left02{
        width: 27;
        height: 27px;
        left: -1vw;
        bottom: 55%;
      }
    
      .p-back .left03{
        width: 180px;
        height: 180px;
        left: -12vw;
        bottom: 5%;
      }
    
    
      .p-back .right01{
        width: 140px;
        height: 140px;
        right: -7vw;
        top: 15%;
      }
    
      .p-back .right02{
        width: 27px;
        height: 27px;
        right: 2vw;
        bottom: 36%;
      }
    
      .p-back .right03{
        width: 40px;
        height: 38px;
        right: 5vw;
        bottom: 20%;
      }
  }
  
  
.calendar{
  position: relative;
  /* background-color: #FBFAED; */
}

/* .calendar::before,
.calendar::after{
  position: absolute;
  content: "";
  display: block;
  width: 584px;
  height: 292px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../image/top/calback.png);
  z-index: 0;
} */

.calendar::before{
  top: 0;
  right: 0;
  transform: rotate(180deg);
}

.calendar::after{
  bottom: 0;
  left: 0;
}

.calendar .inner{
  padding: var(--block-space-s) var(--block-space-unit);
}

.calendar h2{
  position: relative;
  /* z-index: 2; */
  /* font-size: var(--fs-5l); */
  margin-bottom: 30px;
}

.calendar-box{
  position:relative;
  /* max-width: 800px; */
  max-width: 1200px;
  width:100%;
  height:484px;
  padding-top:0%;
  margin:auto;
  /* z-index: 2; */
}

.calendar-box iframe{ 
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

@media print, screen and (max-width:800px) {
  .calendar-box{
    height:0px;
    padding-top:80%;
  }
  .calendar::before,
  .calendar::after{
    width: 100%;
    max-width: 300px;
    height: 100%;
    max-height: 150px;
  }
}

@media print, screen and (max-width:480px) {
  .calendar-box{
      padding-top:100%;
  }
}


/*----------------
  footer
----------------*/
footer{
  padding-top: 70px;
  background-color: #FFF4FB;
  /* border-top: 1px solid #ededed; */
}

.ft-logo{
  max-width: 316px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-bottom:60px;
}

footer nav{
  margin-bottom: 40px;
}

@media print, screen and (max-width:640px) {
  footer{
    padding-top: 60px;
  }

  .ft-logo{
width: 280px;
    /* margin: 0 auto 60px; */
  }

  footer nav{
    display: none;
  }
}

footer nav ul{
  display: flex;
  /* justify-content: space-between;
  width: 554px; */
  justify-content: center;
  margin: auto;
}

footer nav ul li{
  list-style: none;
  margin: 10px;
}

footer nav ul li a{
  text-decoration: none;
}

footer nav ul li a:not(.insta){
  padding: 10px;
}


footer nav ul li a.insta img{
  width:32px;
  height:32px;
}

#page_top{
  width: 70px;
  height: 70px;
  position: fixed;
  right: 20px;
  bottom: 0;
  background: #B93A55;
  opacity: 0.8;
  border-radius: 8px;
  z-index: 3;
}

#page_top:hover{
  opacity: 1;
}
#page_top a{
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  text-decoration: none;
  background: url(../image/common/arrow-white.svg) center no-repeat;  
}

@media print, screen and (max-width:640px) {
  #page_top{
    width: 50px;
    height: 50px;
  }

  #page_top a{
    width: 50px;
    height: 50px;
    background-size: 20px;
  } 
}
/* #page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106'; 
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
} */

footer .copy{
  padding: 5px  var(--box-space-s);
  background-color: #D88F91;
  color: #fff;
}

/*----------------
  subpape mainvisual
----------------*/

.subpape #mainvisual{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* background-position: 10%;
  margin-bottom: 60px; */
}

.subpape #mainvisual .inner{
  padding: 40px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.subpape #mainvisual .inner h2{
  font-size: var(--fs-5l);
  color: #D88F91;
  padding-top: 60px;
}

.subpape .inner:not(.outline .inner,.calendar .inner){
max-width: 960px;
margin: auto;
box-sizing: border-box;
padding-left: 30px;
padding-right: 30px;
}
.intro .inner p:not(:last-of-type){
  margin-bottom: 20px;
}

.subpape section:not(.outline,.calendar) {
  margin-bottom: 60px;
}

@media print, screen and (max-width:750px) {
  .intro .inner p{
    text-align: left;
  }
}


.subpape.recruit #mainvisual{
  background-image: url(../image/recruit/mv.jpg);
}




/*----------------
 first_visit
----------------*/

.about-cancel h2{
  margin-bottom: 30px;
}

.about-cancel p{
  text-align: left;
}

.cancel {
  background-color: #FFF4FB;
  padding-top: 40px;
  padding-bottom: 40px;
}

.cancel h2{
  margin-bottom: 30px;
}

.cancel h3{
  font-size: var(--fs-m);
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: #ededed 1px solid;
}

.cancel p{
  text-align: left;
}

.cancel .box-list{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.cancel .box{
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}

.cancel .box img{
  border-radius: 8px;
  margin-bottom: 20px;
}

@media print, screen and (max-width:900px) {
  .cancel .box-list{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 30px;
  }
}




.dentist h2{
  margin-bottom: 40px;
}

.dentist .inner .box:not(:last-of-type){
  margin-bottom: 60px;
}

.dentist .inner .box{
  display: flex;
  border: #FFF4FB solid 8px
}

.dentist .inner .box .img-box{
  width: 300px;
}
.dentist .inner .box .txt-box{
  text-align: left;
  padding: 30px;
}

.dentist .inner .box .txt-box h3{
  font-size: var(--fs-l);
  margin-bottom: 10px;
}

.dentist .inner .box .txt-box .personal dt{
  font-size: var(--fs-m);
  width: 20%;
  margin-right: 10px;
}
.dentist .inner .box .txt-box .personal dd{
  width: 75%;
}

.personal{
  display: flex;
  flex-wrap: wrap;
}

@media print, screen and (max-width:750px) {
  .dentist .inner .box{
    flex-direction: column;
    align-items: center;
  }
  .dentist .inner .box .txt-box{
    margin-right: 0px;
    width: 330px;
  }
  .dentist .inner .box .txt-box .personal{
    flex-direction: column;
  }
  .dentist .inner .box .txt-box .personal dt{
    font-size: var(--fs-m);
    width: 100%;
  }
  .dentist .inner .box .txt-box .personal dd{
    width: 100%;
  }
  .dentist .inner .box .txt-box .personal dd:not(:last-of-type){
    margin-bottom: 10px;
  }
  .dentist .inner .box .img-box{
    margin-bottom: 20px;
  }
}

.gallery .inner .box{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px 30px;
}

.gallery .inner .box .box-item img{
  border-radius: 8px;
}

.gallery .inner .box .box-item p{
  font-size: var(--fs-s);
}

@media print, screen and (max-width:750px) {
  .gallery .inner .box{
    grid-template-columns: repeat(2,1fr);
  }
}

@media print, screen and (max-width:500px) {
  .gallery .inner .box{
    grid-template-columns: repeat(1,1fr);
  }
}

.gallery .inner .box:first-of-type{
  margin-bottom: 40px;
}

.gallery .inner h2{
  margin-bottom: 30px;
}

/*----------------
 treatment
----------------*/

.symptoms {
  background-color:#FFF4FB;
  padding-top: 60px;
  padding-bottom: 60px;
}

.symptoms .box h2{
  font-size: var(--fs-l);
  color: #D88F91;
  border-bottom: #ededed 1px solid;
  padding-bottom: 10px;
  margin-bottom: 15px;

}

.symptoms .inner {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.symptoms .box{
  text-align: left;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 40px;
}

/* .symptoms .inner .box:not(:last-of-type){
  margin-bottom: 40px;
} */

@media print, screen and (max-width:750px) {
  .symptoms .box{
    padding: 40px 20px;
  }

  .symptoms .inner {
    grid-template-columns: repeat(1,1fr);
    grid-column-gap: 0px;
    grid-row-gap: 30px;
  }

  /* .symptoms .inner .box:not(:last-of-type){
    margin-bottom: 30px;
  } */
}

/*----------------
preventive
----------------*/

.about h2{
  margin-bottom: 40px;
}

.about p{
  text-align: left;
}

.importance {
  background-color: #FFF4FB;
  padding-top: 40px;
  padding-bottom: 40px;
}
.importance h2{
  font-size: var(--fs-m);
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: #ededed 1px solid;
}

.importance p{
  text-align: left;
}

.importance .inner{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.importance .box{
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}

.importance .box img{
  border-radius: 8px;
  margin-bottom: 20px;
}

@media print, screen and (max-width:640px) {
  .importance .inner{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 30px;
  }
}

.to-all-dh h2{
  font-size: var(--fs-l);
  margin-bottom: 40px;
}

.to-all-dh .box{
  display: flex;
  align-items: center;
  margin-bottom:10px ;
  /* background-color: #FFF4FB; */
  border: #FFF4FB solid 8px;
  padding-right: 30px;
}

.to-all-dh .inner .box:not(:last-of-type){
  margin-bottom:30px ;
}

.to-all-dh .box .txt-box{
  text-align: left;
  max-width: 600px;
}

.to-all-dh .box .img-box {
  /* max-width: 300px; */
  position: relative;
  width: 300px;
  margin-right: 30px;
}

.to-all-dh .box .img-box .name{
 font-weight: bold;
 color: #D88F91;
 position: absolute;
 bottom: 10px;
 left: 50%;
 transform: translateX(-50%);
 /* display: block;
 background-color: #fff; */
}

@media print, screen and (max-width:900px) {
  .to-all-dh .box .txt-box{
    max-width: 400px;
  }
}

@media print, screen and (max-width:760px) {
  .to-all-dh .box{
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px;
  }

  .to-all-dh .box .img-box {
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .to-all-dh .box .txt-box{
    max-width: 800px;
  }
}


.maintenannce-view .box{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.maintenannce-view .box > div{
  background-color: #FFF4FB;
  border-radius: 10px;
}

.maintenannce-view .box > div img{
 border-top-left-radius: 10px;
 border-top-right-radius: 10px;
}

.maintenannce-view .box > div p{
  padding: 20px;
  font-weight: bold;
}

.maintenannce-view  h2{
  font-size: var(--fs-l);
  margin-bottom: 40px;
}

@media print, screen and (max-width:640px) {
  .maintenannce-view .box{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 30px;
  }
}

/* .merit h2{
  font-size: var(--fs-m);
  color: #fe95a1;
  margin-bottom:5px;
}

.merit .inner{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-column-gap: 30px;
}

.merit .box p:not(.result){
  text-align: left;
}

.merit .box p.result{
  color: #629a5c;
  font-weight: 700;
}

.merit .box img{
margin-bottom: 10px;
}

@media print, screen and (max-width:900px) {
  .merit .inner{
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}

@media print, screen and (max-width:640px) {
  .merit .inner{
    grid-template-columns: repeat(1,1fr);
    grid-row-gap: 30px;
  }
} */

.flow{
  text-align: left;
}

.flow h2{
  margin-bottom: 40px;
}

.flow-list{
  list-style: none;
  counter-reset: num_a;
}

.flow-list li{
  position: relative;
  list-style: none;
  background-color: #FBFAED;
  /* border: solid 15px #FBFAED; */
  padding: 30px 20px;
}

.flow-list li:not(:last-child):after{
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 5px;
  height: 20px;
  background-color: #9BBC97;
}

.flow-list li:not(:last-child){
  margin-bottom:20px ;
}

.flow-list li h3{
  color: #629a5c;
  font-size: var(--fs-l);
  margin-bottom: 5px;
}

.flow-list li h3:before{
  content: counter(num_a,decimal-leading-zero);
  counter-increment: num_a;
  margin-right: 0.5em;
  color: #9BBC97;
}






/*--------------------------------------------------------------------------------
きたがわ歯科
--------------------------------------------------------------------------------*/
/*----------------
greeting
----------------*/

section.greeting{
  padding: 100px 0;
  overflow: hidden;
  background-color: #FFF4FB;
}

@media print, screen and (max-width:750px) {
  section.greeting{
    padding: 40px 0 80px;
  }
}

.greeting .inner .box:not(:last-of-type){
  margin-bottom: 70px;
}

.greeting h2{
  margin-bottom: 50px;
}

.greeting .box{
  position: relative;
  display: flex;
  justify-content: space-between;
}

@media print, screen and (max-width:1200px) {
  .greeting .box{
    flex-wrap: wrap;
    justify-content: center;
  }
}

.greeting .box > img{
  position: absolute;
  content: "";
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}


/* .greeting .inner .box:nth-of-type(1) .referrals-left01{
width: 328px;
height: 290px;
background-image: url(../image/top/referrals-left01.png);
left: -10vw;
top: 5%;
}
.greeting .inner .box:nth-of-type(1) .referrals-right01{
  width: 356px;
  height: 338px;
  background-image: url(../image/top/referrals-right01.png);
  right: -10vw;
bottom: 5%;
}
.greeting .inner .box:nth-of-type(2) .referrals-left02{
  width: 325px;
  height: 314px;
  background-image: url(../image/top/referrals-left02.png);
  left: -12vw;
top: 10%;
}
.greeting .inner .box:nth-of-type(2) .referrals-right02{
  width: 454px;
  height: 400px;
  background-image: url(../image/top/referrals-right02.png);
  right: -12vw;
  bottom: 10%;
} */

.greeting .img-box {
  /* background-color:#EAF7DA; */
  background-color:#fff;
  padding: 48px 48px 40px 48px;
  border-radius: 12px;
  max-width: 550px;
  max-height: 801px;
  margin-right: 40px;
}

.greeting .img-box img{
  border-radius: 8px;
  max-width: 454px;
  display: block;
}

@media print, screen and (max-width:800px) {
  .greeting .img-box img{
    height: 450px;
  }

  .greeting .img-box {
    margin-right: 0px;
  }
}

.greeting .img-box .name-box{
  position: relative;
  margin-top: -40px;
  /* border-radius: 8px; */
  background-color: #fff;
  display: inline-block;
  padding: 10px 20px;
  line-height: 1.4;
}

.greeting .img-box .name-box span{
  display: block;
}

.greeting .img-box .name-box span.offcial-posi{
  font-size: 14px;
  color:#EA8676 ;
}
.greeting .img-box .name-box span.name{
  font-size: 44px;
}
.greeting .img-box .name-box span.furigana{
  font-size: 12px;
  color: #2EB5BD;
}

.greeting .txt-box{
  margin-top: 40px;
  text-align: left;
  max-width: 787px;
}

.greeting .txt-box h3{
  font-size: 24px;
  color:#2EB5BD;
}

.greeting .txt-box .contents:not(:last-child){
 border-bottom: 1px solid #FFD8F0;
 padding-bottom: 20px;
}

.greeting .txt-box .contents h3{
  margin-bottom: 10px;
}

.greeting .txt-box .contents:not(:first-child) h3{
 margin-top:20px;
}

.greeting .txt-box .personal-record{
  
}

.greeting .txt-box .personal-record dl{
  display: flex;
  flex-wrap: wrap;
}

.greeting .txt-box .personal-record dl dt{
  width: 100px;
  margin-right: 20px;
}

.greeting .txt-box .personal-record dl dd{
  width: calc(100% - 120px);
}

.greeting .txt-box .belong{
  
}

.greeting .txt-box .belong ul{
list-style: none;
/* margin-right: 30px; */
width: 100%;
}
/* .greeting .txt-box .belong .belong-box{
  display: flex;
} */

.greeting .txt-box .belong-box img{
  margin-top: 20px;
max-width: 300px;
}

.m-cnt{
  max-width: 1472px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}





/*----------------
treatment-style
----------------*/

.treatment-style{
  padding: 80px 0px;
  /* background: linear-gradient(#EAF7DA, #FCFDEF); */
  background-image: url(../image/top/treatment-style-back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 60px;
}

.treatment-style .box {
 display: flex;
}

.treatment-style .inner .txt-box{
  text-align: left;
  padding: 60px;
  max-width:576px;
  background-color: rgba(255, 255, 255, 0.6);
  /* border-radius: 0px 60px 0px 60px;  */
}

.treatment-style .inner .img-box{
  background-image:url(../image/top/treatment-style.jpg) ;
  background-size: cover;
  background-position: center;
  width: 100%;
  /* border-top-right-radius: 8px;
  border-bottom-right-radius: 8px; */
}

.treatment-style .inner .box h2{
  margin-bottom: 30px;
}

/* .treatment-style .inner .box h2 + p{
  margin-bottom: 30px;
} */

@media print, screen and (max-width:1000px) {
  .treatment-style .box {
    flex-wrap: wrap;
    justify-content:center ;
   }

   .treatment-style .inner .img-box{
    max-width:576px;
    height: 300px;
  }

  /* .treatment-style .inner .txt-box{
    border-radius: 0px 60px 0px 60px;
  }
  .treatment-style .inner .img-box{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  } */
}

@media print, screen and (max-width:1000px){
  .treatment-style .inner .txt-box{
    padding: 40px 20px;
  }
}

/*あなたのお悩みを解決します*/

section.can-do{
  padding-top: 60px;
  padding-bottom: 70px;
  background-image: url(../image/top/can-do-back.jpg);
  background-size: cover;
  margin-bottom: 80px;
}

section.can-do .inner{
  margin: auto;
  max-width: 784px;
  padding-right: 30px;
  padding-left: 30px;
}

section.can-do h2.enttl{
  margin-bottom: 40px;
}

.can-do-list{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  /* max-width: 920px;
  margin: auto; */
}


@media print, screen and (max-width:1000px){
  .can-do-list{
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
  }
}
@media print, screen and (max-width:640px) {
  .can-do-list{
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
  }
}


.can-do-list li{
  background-color: #fff;
  border: 8px solid #F5F0DF;
  border-radius: 50%;
  width: 166px;
  height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* @media print, screen and (max-width:500px) {
  .can-do-list li{
    width: 160px;
    height: 160px;
  }
} */



.can-do-list li img[src$=".svg"]{
  width: 100%;
  height: 70px;
  margin-bottom: 12px;
}

/* .can-do-list li img[src$=".svg"].h80{
  height: 80px;
} */

@media print, screen and (max-width:480px) {

  .can-do-list li{
    width: 150px;
    height: 150px;
  }
  .can-do-list li img[src$=".svg"]{
    height: 60px;
  }
}

@media print, screen and (max-width:750px) {

}


/* 初めてご来院される皆さまへ */

.new_visitors{
  position: relative;
  z-index: 0;
  padding-top: 120px;
  padding-bottom: 90px;
}

.new_visitors::before {
  content: '';
  background-image: url('../image/top/new-visitors-back.jpg');
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* filter: blur(2px); */
  filter: brightness(1.2);
  z-index: -1;
}

.new_visitors .inner{
  display: flex;
  justify-content: flex-end;
}

@media print, screen and (max-width:1000px) {
  .new_visitors .inner{
    justify-content: center;
  }
}

.new_visitors .contents{
  text-align: left;
  padding: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  /* border-radius: 0px 60px 0px 60px;  */
}

@media print, screen and (max-width:800px) {
  .new_visitors .contents{
    padding: 40px 20px;
  }

}


.new_visitors .contents h2{
  margin-bottom: 30px;
}

/* 院内紹介 */
.hospital-introduction{
  margin-bottom: 80px;
}

.hospital-introduction h2{
  margin-bottom: 40px;
}

.hospital-introduction ul{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

@media print, screen and (max-width:1000px){
  .hospital-introduction ul{
    grid-template-columns: repeat(3,1fr);
  }
}
@media print, screen and (max-width:750px) {
  .hospital-introduction ul{
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
  }
}

.hospital-introduction ul li img{
 margin-bottom: 5px;
}
.banner_area{
  margin-bottom:80px ;
}

.banner_area a{
max-width: 900px;
display: block;
}

.banner_area a img{
width: 100%;
}

/*----------------
 recruit
----------------*/

.intro p{
  text-align: left;
}

.color-block-ttl{
  color: #fff;
  background-color:#D88F91 ;
  border-radius:4px;
  font-size:var(--fs-2l) ;
  padding: 1rem 20px;
  text-align: left;
}


.main-points h2{
  margin-bottom: 30px;
}

.main-points h3{
  text-align: left;
  margin-bottom: 10px;
  color: #ec878c;
}

.main-points .inner .main-points-list:not(:last-of-type){
  margin-bottom: 40px;
}

.main-points-list{
  /* max-width: 650px; */
  text-align: left; 
  display: flex;
  flex-wrap: wrap;
  font-size: var(--fs-m);
}

.main-points-list dt{
  max-width: 150px;
  width: 100%;
  background-color: #FFF4FB;
  padding: 10px;
  border-radius: 4px 0 0 4px;
}

.main-points-list dd{
  width: calc( 100% - 150px );
  background-color: #f6f6f6;
  padding: 10px;
  border-radius: 0 4px 4px ;
}

@media print, screen and (max-width:640px) {
  .main-points-list dt{
    max-width: 80px;
  }

  .main-points-list dd{
    width: calc( 100% - 80px );
  }
}



.main-points-list dt:not(:last-of-type){
  margin-bottom: 2px;
}

.main-points-list dd:not(:last-of-type){
  margin-bottom: 2px;
}



.recruit-feature-list{
  margin-top: 40px;
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; */
}

.recruit-feature-list .box{ 
display: flex;
align-items: center;
}



.recruit-feature-list .box:not(:last-of-type) { 
  margin-bottom: 40px;
}

.recruit-feature-list .img-box{ 
width: 350px;
height: 252px;
/* padding-top: 28%; */
/* margin-right: 30px; */
background-position: center;
background-size: cover;
}

.recruit-feature-list .box:nth-of-type(1) .img-box{ 
  background-image:url(../image/recruit/feature01.jpg);
  }
.recruit-feature-list .box:nth-of-type(2) .img-box{ 
  background-image:url(../image/recruit/feature02.jpg);
  }
.recruit-feature-list .box:nth-of-type(3) .img-box{ 
  background-image:url(../image/recruit/feature03.jpg);
  }

.recruit-feature-list .txt-box{ 
  padding: 30px;
  text-align: left;
/* width: calc(100% - 380px); */
width: calc(100% - 350px);
height: 252px;
background-color: #FFF4FB;
/* display: flex;
align-items: center; */
}

.recruit-feature-list .txt-box p{ 
  font-size: var(--fs-m);
}

.recruit-feature-list .txt-box p strong{ 
  font-size: var(--fs-max);
  color: #D88F91;
  display: block;
  /* line-height: 1.4; */
}


@media print, screen and (max-width:750px) {
  .recruit-feature-list .box{ 
  flex-wrap: wrap;
    }

    .recruit-feature-list .img-box{ 
      width: 100%;
      height: 300px;
      background-position: top;
      }

      .recruit-feature-list .box:nth-of-type(1) .img-box{ 
        background-position: center;
        }

      .recruit-feature-list .txt-box{ 
        width: 100%;
        height: 100%;
        padding: 10px 20px 20px;
      }
}
@media print, screen and (max-width:480px) {
  .recruit-feature-list .img-box{ 
    width: 100%;
    height: 200px;
    }
}



section.from-president .box{
  display: flex;
}

section.from-president h2{
  margin-bottom: 30px;
}
section.from-president .img-box{
  width: 350px;
  height: 252px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* margin-right: 30px; */
  background-image: url(../image/recruit/from-president.jpg);
  border-radius: 4px;
}

section.from-president .txt-box{
  text-align: left;
  width: calc(100% - 350px);
  padding-left:30px;
}

@media print, screen and (max-width:750px) {
  section.from-president .box{
    flex-wrap: wrap;
    justify-content: center;
  }

  section.from-president .img-box{
    margin-bottom: 20px;
    width: 100%;
    height: 380px;
    background-position: top;
  }

  section.from-president .txt-box{
    text-align: left;
    width: 100%;
    padding-left:0px;
  }
  
}

@media print, screen and (max-width:480px) {
  section.from-president .img-box{ 
    width: 100%;
    height: 280px;
    }
}

section.welfare h2{
  margin-bottom: 30px;
}

.welfare-list{
  text-align: left;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.welfare-list li{
  background-color: #FFF4FB;
}

.welfare-list li .txt-box{

padding: 10px 20px 20px;
}

@media print, screen and (max-width:480px) {
  .welfare-list{
    grid-template-columns: repeat(1,1fr);
    gap: 30px;
  }
}

/* @media print, screen and (max-width:750px) {
  .welfare-list{
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
  }
  
}


@media print, screen and (max-width:500px) {
  .welfare-list{
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
  }
  
} */

.welfare-list h3{
  color: #D88F91;
  font-size: var(--fs-l);
  margin-bottom: 5px;
}

.welfare-list li img{
  /* margin-bottom: 10px; 
  border-radius: 4px;*/
}

section.various-allowances{
  text-align: left;
}

section.various-allowances h2{
  margin-bottom: 30px;
}

.various-allowances-list{
  background-color: #f6f6f6;
  padding: 20px;
}

.various-allowances-list p strong{
  color: #D88F91;
  font-size: var(--fs-m);
  padding-right: 1em;
}

@media print, screen and (max-width:750px) {
  .various-allowances-list p strong{
   display: block;
  }
}

.indent{
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}


.various-allowances-list p:not(:last-of-type){
  border-bottom: #fff 1px solid;
  padding-bottom: 15px;
}

.various-allowances-list p:not(:first-of-type){
  padding-top: 15px;
}

/* section.revisionーschedule h2 +p{
  margin-bottom: 30px;
}

.revisionーschedule-list {
  margin-bottom: 30px;
}

.revisionーschedule-list .box-item h3{
  color: #5DA9E9;
  font-size: var(--fs-l);
}

.revisionーschedule-list .box-item{
  background-color: #FDFAF1;
  padding: 30px 20px;
}

.revisionーschedule-list .box-item:not(:last-of-type){
  margin-bottom: 20px;
} */

.contact-box{
  background-color: #FFF4FB;
  padding: 40px 0;
  margin-bottom: 100px;
}

.contact-box .tel-button{
  margin-bottom: 10px;
}

section.personnel-sought{
  text-align: left;
}

section.personnel-sought h2{
  margin-bottom: 30px;
}

section.personnel-sought h2 + p{
  margin-bottom: 30px;
}

.sought-list{
  margin-bottom: 30px;
  background-color: #FFF4FB;
  padding: 20px 30px 20px 50px;
  text-align: left;
  font-weight: 700;
  font-size: var(--fs-l);
}

.sought-list li:not(:last-of-type){
  margin-bottom: 5px;
}


.caution{
  display: inline-block;
  text-indent: -1.1em;
  padding-left: 1.1em;
}

.caution::before {
  content: "\0274b";/*\025ce※ */
  margin-right: 0.1em;
}


.cir-list li{
  list-style: none;
  text-indent: -1.1em;
  padding-left: 1.1em;
}

.cir-list li::before {
  content: "\025cf";
  margin-right: 0.1em;
}


@media print, screen and (max-width:900px) {

}



/* 初めてご来院される皆さまへ */

.new_visitors{
  position: relative;
  z-index: 0;
  padding-top: 120px;
  padding-bottom: 90px;
}

.new_visitors::before {
  content: '';
  background-image: url('../image/top/new-visitors-back.jpg');
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* filter: blur(2px); */
  filter: brightness(1.2);
  z-index: -1;
}

.new_visitors .inner{
  display: flex;
  justify-content: flex-end;
}

.new_visitors .contents{
  text-align: left;
  padding: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  /* border-radius: 8px; */
}

@media print, screen and (max-width:800px) {
  .new_visitors .contents{
    padding: 30px;
  }
}


.new_visitors .contents h2{
  margin-bottom: 30px;
}

/* 院内紹介 */
.hospital-introduction{
  margin-bottom: 80px;
}

.hospital-introduction h2{
  margin-bottom: 40px;
}

.hospital-introduction ul{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

@media print, screen and (max-width:1000px){
  .hospital-introduction ul{
    grid-template-columns: repeat(3,1fr);
  }
}
@media print, screen and (max-width:750px) {
  .hospital-introduction ul{
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
  }
}

.hospital-introduction ul li img{
 margin-bottom: 5px;
}


.banner_area{

}


/*----------------
style
----------------*/

.reservations{
  padding: 80px 0px;
  background: linear-gradient(#FFF4FB, #FFF5D6);

}

.reservations .box {
 display: flex;
}

.reservations .inner .txt-box{
  text-align: left;
  padding: 60px;
  max-width:576px;
  background-color: #fff;
}

.reservations .inner .img-box{
  background-image:url(../image/top/reservations.jpg) ;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.reservations .inner .box h2{
  margin-bottom: 30px;
}

/* .reservations .inner .box h2 + p{
  margin-bottom: 30px;
} */

@media print, screen and (max-width:1000px) {
  .reservations .box {
    flex-wrap: wrap;
    justify-content:center ;
   }

   .reservations .inner .img-box{
    max-width:576px;
    height: 300px;
  }

  .reservations .inner .txt-box{
    border-top-left-radius: 8px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 8px;
  }
  .reservations .inner .img-box{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  }
}

@media print, screen and (max-width:1000px){
  .reservations .inner .txt-box{
    padding: 40px 20px;
  }
}


/*----------------
feature
----------------*/
section.feature{
  padding-bottom: 120px;
  background-color: #FFF4FB;
}

@media print, screen and (max-width:640px) {
  section.feature{
    padding-bottom: 60px;
  }
}

section.feature .inner{
  padding: 0 30px;
}

section.feature .inner .lead{
  padding-bottom: 40px;
}


.feature-box{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 46px 60px;
}

@media print, screen and (max-width:800px){
  .feature-box{
    grid-template-columns: repeat(1,1fr);
    gap: 30px;
  }
}

.feature-box .txt-box{
  position: relative;
  padding: 30px;
  background-color: #fff;
}

.feature-box .txt-box p{
font-size: var(--fs-l);
}

.feature-box .txt-box .num{
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  /* font-size: var(--fs-5l); */
  font-size: 36px;
  background-color: #fff;
  border-radius: 50%;
  padding:0 14px;
  color: #D88F91;
}

@media print, screen and (max-width:640px){
  .feature-box .txt-box .num{
    top: -20px;
    padding: 7px 14px;
    font-size: var(--fs-5l);
  }
}


.btn--pink,
a.btn--pink {
  color: #fff;
  background-color: #D88F91;
  text-decoration: none;
  padding: 10px 20px;
}
.btn--pink:hover,
a.btn--pink:hover {
  color: #fff;
  background: #c59092;
  text-decoration:underline;
}