@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: #D5D5D5;
  color: #434448;
  font-family: 'Zen Kaku Gothic New','Helvetica Neue','Arial','Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-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:  "Montserrat", 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: #C34141; }
.fc-orange { color: #FF3F00; }


/* // <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900 */

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: <weight>; */
  font-style: normal;
}

/* // <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900 */

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

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  /* font-weight: 400; */
  font-style: normal;
}

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



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

/*-----------------------------------------------------------------------------------
  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: #01BAEF;
  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: #003F91;
    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
----------------*/

.circle-ttl img{
  width:110px ;
  height:110px ;
  animation:4s linear infinite rotation;
}

@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

.circle-ttl{
  font-size: var(--fs-5l);
  font-family: var(--ff-min);
  line-height: 1.2;
 font-weight: 500;
}

.circle-ttl .en{
  margin-top:var(--block-space-min);
  display: block;
  text-transform: uppercase;
  font-size:12px;
  margin-bottom: 8px;
}

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

.en{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

.enttl{
  line-height: 1;
  font-size:var(--fs-6l);
  font-weight: 400;
  color: #3C3C3C;
  text-align: center;
  font-family: var(--ff-min);
  line-height: var(--line-height-m);
  margin-bottom: var(--box-space-l);
}

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

.enttl span{
  position: relative;
  display: block;
  text-transform: uppercase;
  font-family: var(--ff-en);
  font-weight: 700;
  font-style: normal;
  font-size:14px;
  margin-bottom: var(--box-space-l);
  color: #008CD6;
  line-height: 1;
  padding-left: 20px;
}

.enttl span::before{
  position: absolute;
  left:0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color:#008CD6 ;
}

/* @media screen and (max-width: 750px) {
  .enttl[enposi="left"]{
    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: 8px; */
  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: #5DA9E9
}

.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:#5DA9E9;
  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:32px 32px 32px 40px;
  position: absolute;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media print, screen and (max-width:800px) {
  .header-wrap{
    padding:32px;
  }
}

@media print, screen and (max-width:640px) {
  .header-wrap{
    padding:22px 20px;
  }
}

.header-wrap .logo{
  display: none;
}

.header-wrap .logo.active{
  display: block;
}

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

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

.header-menu a{
  color: #164070;
}

.header-menu ul{
  display: flex;
  flex-direction: column;
}

.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{
  /* width: 220px; */
  width: 178px;
  height: 58px;
  background-color: rgba(255,255,255,0); 
}

.hedder-tel a{
  position: relative;
  border-radius: 4px;
  height: 100%;
  color: #164070;
  display: block;
  font-size: var(--fs-2l);
  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{
  content: "TEL ";
  font-size: 15px;
  font-weight: 100;
  /* 
  position: absolute;
  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;
    text-align: left;
}
@media print, screen and (max-width:800px) {
.logo img{
   width: 300px;
   transition: all 0.3s;
  }
}

@media print, screen and (max-width:640px) {
  .logo img{
    width: 280px;
    transition: all 0.3s;
   }
}

.menu-trigger-button{
  position: relative;
  z-index: 9999;
}

/* @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:#D5D5D5;
  /*動き*/
  transition: all 0.3s;
  visibility: hidden;
}

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

.header-box.panelactive .hedder-tel {
  border: rgba(22,64,112,0.5) 1px solid;
  width: 260px;
  height: 72px;
}

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

@media print, screen and (max-width:800px) {
  .logo.active{
    top:32px;
    left:32px;
    }
  }
  
  @media print, screen and (max-width:640px) {
    .logo.active{
    top:22px;
    left:20px;
    }
  }

/*ナビゲーションの縦スクロール*/.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:36px;
  right: 40px;
  cursor: pointer;
  width: 36px;
  height:50px;
  background-color: rgba(255,255,255,0);
  border: none;
  /* クリックした際に枠線をnone消す */
  outline: none;
  /* 影を消す */
  box-shadow: none;
}

@media print, screen and (max-width:800px) {
  .menu-trigger{
    top:36px;
    right: 24px;
  }
}

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

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

  }

  .menu-trigger.change-color span{
    background-color: #434448;
    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;
  }

/* } */
/*----------------
mainvisual
----------------*/

#mainvisual{
  margin-bottom: 80px;
}

@media print, screen and (max-width:750px) {
#mainvisual{
  margin-bottom: 40px;
}
 }

body.top_page #mainvisual{
 margin-bottom: 0px;
}

#mainvisual::before{
  position: absolute;
  bottom: -50%;
  left: 0;
  content: "";
  display: block;
  max-width: 718px;
  width: 100%;
  max-height: 1418px;
  height: 100%;
  background-size: contain;
  z-index: -1;
}

body.top_page #mainvisual::before{
  background-image: url(../image/top/bg-main.png);
}
body.for_first #mainvisual::before{
  background-image: url(../image/for_first/bg-main.png);
}
body.maintenance #mainvisual::before{
  background-image: url(../image/maintenance/bg-main.png);
}
body.tmj #mainvisual::before{
  background-image: url(../image/tmj/bg-main.png);
}
body.implant #mainvisual::before{
  background-image: url(../image/implant/bg-main.png);
}
body.treatment #mainvisual::before{
  background-image: url(../image/treatment/bg-main.png);
}

#mainvisual .inner{
display: flex;
}

#mainvisual .ver-logo{
  position: relative;
  max-width: 112px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  transition: .3s;
}

#mainvisual .ver-logo .logo-img{
  width: 38px;
  transition: .3s;
}

@media print, screen and (max-width:800px) {
  #mainvisual .ver-logo{
    max-width: 56px;
  }
  
  #mainvisual .ver-logo .logo-img{
    width: 28px;
  }
}

@media print, screen and (max-width:480px) {
  #mainvisual .ver-logo{
    max-width: 48px;
  }
  
  #mainvisual .ver-logo .logo-img{
    width: 24px;
  }
}

.splide__track{
  position: relative;
}

.splide__slide img{
  object-fit: cover;
  height: 100vh;
  width: 100vw;
  object-position: center bottom;
  filter: brightness(80%);
}

.splide__track h1{
  position: absolute;
  content: "";
  top: 15%;
  left: 0;
  z-index: 1;
  color: #fff;
  text-align: center;
  width: 100%;
  font-size: var(--fs-5l);
  font-family: var(--ff-min);
  font-weight: 500;
}

.splide__track h1 img{
  width: 50px;
  margin: auto;
  display: block;
  margin-bottom: 15px;
}
.splide__track h1 span.en{
  display: block;
  font-size: 12px;
  font-weight: 700;
}

body.top_page #mainvisual .splide__track h1{
  left: 50%;
  width: 210px;
  height: 184px;
  transform: translateX(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 99;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url(../image/common/logo.svg);
}

@media print, screen and (max-width:800px) {
  body.top_page #mainvisual .splide__track h1{
    width: 160px;
  }
}

@media print, screen and (max-width:480px) {
  body.top_page #mainvisual .splide__track h1{
    width: 140px;
  }
}

.scroll_down{
  position:absolute;
  bottom: 0px;
  left: 45%;
}

.scroll_down a{
  position: absolute;
  left: 4px;
  bottom: 60px;
  color: #000;
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .1em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 40px;
  left: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background:#000;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:106px;}
  100%{bottom:40px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:40px;
  left:0;
  width:1px;
  height: 66px;
  background:#000;
}


/* body.top_page{
  overflow-y: visible;
  overflow-x:hidden
} */
body{
  overflow-y: visible;
  overflow-x:hidden
}


/* top-news */
/* top-news */
.top-news{
  margin-bottom: 80px;
  overflow: hidden;
}

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

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

.top-news h2{
  position: relative;
  padding-top: 30px;
  margin-right: 80px;
  white-space: nowrap;

  line-height: 1;
    font-size: var(--fs-2s);
    font-weight: 700;
    text-align: center;
}

.top-news h2 span{
  letter-spacing: 2px;

  display: block;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: var(--fs-5l);
    padding-bottom: 20px;
}

.top-news h2 small{
  display: flex;
  align-items: center;
  letter-spacing: 0;
}

/* .top-news h2 small::after{
  content: "";
  display: block;
  margin-left: 10px;
  box-sizing: border-box;
  width: 32px;
  height: 1px;
  border-top: #000 1px solid;
  transition: .3s;
} */

.top-news .inner{
  /* max-width: 1640px; */
  margin: 0 auto;
  /* background: linear-gradient(#EAF7DA, #FCFDEF); */
  /* background: #DEEBF7; */
  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 0%;
  }

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

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

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


.top-news-list{
  position: relative;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 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-greeting */

.top-greeting{
  padding: 0 20px;
  margin-bottom: var(--block-space-l);
}
.top-greeting .inner{
  max-width: 927px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}

@media print, screen and (max-width:1020px) {
  .top-greeting .inner{
    padding: 0 20px;
  }
}

@media print, screen and (max-width:800px) {
  .top-greeting .inner{
    flex-direction: column-reverse;
  }
}

@media print, screen and (max-width:640px) {
  .top-greeting .inner{
    padding: 0 0px;
  }
}

.top-greeting .inner .txt-box{
  text-align: left;
  padding:50px;
  box-sizing: border-box;
}

@media print, screen and (max-width:800px) {
  .top-greeting .inner .txt-box{
    padding:50px 10px;
  }
}

.top-greeting .inner .txt-box h2{
  margin-bottom: 50px;
}

@media print, screen and (max-width:800px) {
  .top-greeting .inner .txt-box{
    padding:40px 10px;
  }

  .top-greeting .inner .txt-box h2{
    margin-bottom: 30px;
  }
}

@media print, screen and (max-width:480px) {
  .top-greeting .inner .txt-box{
    padding:30px 10px;
  }

  .top-greeting .inner .txt-box h2{
    margin-bottom: 20px;
  }
}

.top-greeting .inner .txt-box p:not(.name){
  margin-bottom: 40px;
}

.top-greeting .inner .txt-box p.name{
  text-align: right;
}

/* youtube */

.youtube .inner{
  max-width: 927px;
  width: 100%;
  margin: auto;
  margin-bottom: var(--block-space-m);
}

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

.youtube .box{
  width: 100%;
   max-width: 927px;
  aspect-ratio: 16 / 9;
}
.youtube .box iframe {
  width: 100%;
    max-width: 927px;
  height: 100%;
}

 /*insta-banner*/
 .insta-banner{
  margin-bottom: var(--block-space-3l);
    text-decoration: none;
 }
 .insta-banner .inner{
  max-width: 927px;
  width: 100%;
  background-color: #fff;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  height: 200px;
 }
 .insta-banner .txt-box{
  text-align: left;
  color:#434448 ;

 }
 
 .insta-banner .txt-box h2{
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
}

 .insta-banner .inner > img:nth-of-type(1){
  aspect-ratio: 1/1;
  max-width: 100px;
 }
 .insta-banner .inner > img:nth-of-type(2){
  height: 100%;
}

@media print, screen and (max-width:800px) {
  .insta-banner .inner{
    max-width: 700px;
    width: 90%;
    height: 20%;
    gap: 20px 15px;
    flex-wrap: wrap;
    padding: 0px 10px 0;
   }

   .insta-banner .inner > img:nth-of-type(2){
   max-width: 382px;
   /* width: 70%; */
   height: auto;
   display: none;
  }
  
}

@media print, screen and (max-width:640px) {
  .insta-banner .inner > img:nth-of-type(1){
    max-width: 60px;
  }
  
  .insta-banner .inner{
    /* padding: 30px 10px 0 ;
    height: 42%; */
   }
  /* .insta-banner .inner > img:nth-of-type(2){
   width: 90%;
   height: auto;
  } */
}
 /* feature*/

 .feature{
  position: relative;
  margin-bottom: 100px;
  overflow: hidden;
 }

 .feature::before{
  position: absolute;
  display: block;
  content: "";
  background-image: url(../image/top/feature-txt.svg);
  background-repeat: repeat-x;
  width: 100%;
  height: 280px;
  top: 50px;
  left: 0;
  z-index: -1;
 }

 @media print, screen and (max-width:800px) {
  .feature::before{
    height: 140px;
    background-size: cover;
   }
 }

 .feature::after{
  position: absolute;
  display: block;
  content: "";
  background-image: url(../image/top/bg-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 1638px;
  /* max-width: 2400px; */
  height: 60%;
  aspect-ratio: 1/1;
  top: calc(200px + 50%);
  transform: translateY(-50%);
  right: -20%;
  z-index: 0;
 }

 /* .feature .inner{
  padding: 0 20px;
 } */

 .feature h2.circle-ttl{
  margin-bottom:160px;
  padding-top: 100px;
 }


 @media print, screen and (max-width:800px) {
  .feature h2.circle-ttl{
    margin-bottom:100px;
   }
 }
 @media print, screen and (max-width:480px) {
  .feature h2.circle-ttl{
    margin-bottom:60px;
   }
 }

 .feature h2.circle-ttl + span{
  display: block;
  margin-bottom:var(--box-space-s);
 }

 .feature-list{
  position: relative;
  list-style: none;
  z-index: 2;
 }

 .feature-list li{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: left;
 }

 .feature-list li:not(:last-child){
   margin-bottom: var(--block-space-l);
  }

  .feature-list li:nth-child(odd){
    flex-direction:row;
   }
   .feature-list li:nth-child(even){
    flex-direction:row-reverse;
  }

  @media print, screen and (max-width:960px) {
    .feature-list li{
      align-items: center;
     }

    .feature-list li:nth-child(odd){
      flex-direction:column-reverse;
     }
     .feature-list li:nth-child(even){
      flex-direction:column-reverse;
    }

   }

 .feature-list li h3{
  margin-bottom: 16px;
 }
 .feature-list li .txt-box{
  max-width: 717px;
  width: 100%;
  box-sizing: border-box;
  padding: 40px 40px 60px;
 }

 .feature-list li .img-box{
  aspect-ratio: 536/334;
  max-width: 640px;
  filter: grayscale(20%);
}


@media print, screen and (max-width:960px) {
  .feature-list li .img-box img{
    aspect-ratio: 536/334;
    max-width: 640px;
    filter: grayscale(20%);
  }
 }

@media print, screen and (max-width:640px) {
  /* .feature-list li .img-box{
    aspect-ratio:2/1;
  }

  .feature-list li .img-box img{
    height: 100%;
  } */
 }


 .feature-list .num{
  display: flex;
  height: 68px;
  margin-bottom: 40px;
 }

 @media print, screen and (max-width:960px) {
  .feature-list .num{
    height: 38px;
    margin-bottom: 24px;
   }
 }

 @media print, screen and (max-width:640px) {
  .feature-list .num{
    height: 32px;
    margin-bottom: 20px;
   }
   .feature-list li .txt-box{
    padding: 30px 20px 30px;
   }
 }



 .feature-list li:nth-child(odd) .num{
  justify-content: flex-start;
 }
 .feature-list li:nth-child(even) .num{
  justify-content: flex-end;
 }
 .feature-list .num img{
  height: 100%;
  width: auto;
 }


 @media print, screen and (max-width:960px) {
  .feature-list li:nth-child(odd) .num{
    justify-content: flex-start;
   }
   .feature-list li:nth-child(even) .num{
    justify-content: flex-start;
   }
 }

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

  はじめてのかたへ
  
----------------------------------------------------------------------------------------------------*/
/* director */
.director{
  text-align: left;
  margin-bottom: 160px;
}

@media print, screen and (max-width:750px) {
  .director{
    margin-bottom: 80px;
  }
 }

.director .inner{
  max-width: 1180px;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}
.director h2{
  font-weight: 500;
  padding:20px  0;
  margin-bottom: 80px;
}

@media print, screen and (max-width:750px) {
.director h2{
  margin-bottom: 40px;
}
 }

.director h2.uborder-ttl span{
  font-size: var(--fs-2s);
  position: relative;
  display: inline-block;
  padding-right: 60px;
}

.director h2.uborder-ttl span::after{
  position: absolute;
  top: 0;
  right: 30px;
  content: "";
  display: block;
  width:1px ;
  height: 100%;
  background-color: #989898;
}

.director .box{
  display: flex;
}

@media print, screen and (max-width:750px) {
  .director .box{
   flex-direction: column;
  }
 }


.director .img-box{
  max-width: 448px;
  margin-right: 36px;
}

@media print, screen and (max-width:750px) {
  .director .img-box{
    max-width: 750px;
    margin-right: 0px;
    margin-bottom: 40px;
  }
 }


.director .txt-box{
  position: relative;
}

.director .txt-box .blowing{
    position: absolute;
    max-width: 720px;
    width: 110%;
    top: -40px;
    right: 0;
    background-color:#fff;
    padding: 30px;
    /* width: 100vw;
      margin-right: calc(1% - 50vw); */
}

@media print, screen and (max-width:750px) {
  .director .txt-box .blowing{
    max-width: 720px;
    position: relative;
    width: 100%;
    padding: 30px 20px;
  }
}

.director .txt-box .blowing::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #ffffff transparent transparent;
  translate: calc(-50% - 0.4px) 100%;
}

@media print, screen and (max-width:750px) {
  .director .txt-box .blowing{
    max-width: 720px;
    position: relative;
    width: 100%;
  }

  .director .txt-box .blowing::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 10px 20px 10px;
    border-color: transparent transparent #ffffff;
    translate: -50% -100%;
  }
 }

.director .txt-box .blowing h3{
  margin-bottom: 1rem;
  font-weight: 500;
}

.backdrop{
  padding-top: 220px;
  display: flex;
  flex-wrap: wrap;
}

@media print, screen and (max-width:750px) {
  .backdrop{
    padding-top: 0px;
    flex-direction: column;
  }
 }

.backdrop h4{
  font-weight: 500;
  margin-bottom: 5px;
  border: 1px solid #989898;
  display: inline-block;
  padding: 2px 10px;
}
.backdrop ul{
  list-style: none;
}

.backdrop ul li{
  padding: 1px 10px;
}

.personal_record{
  padding-bottom: 20px;
  padding-right: 20px;
  width: 65%;
}

.personal_record ul li{
  display: flex;
  flex-wrap: wrap;
}

.personal_record span{
  display: block;
  width: 70px;
}

.personal_record p{
  width: calc( 100% - 70px);
}

.belong{
  border-left: 1px solid #989898;
  padding-left: 20px;
  width: 35%;
}

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

  .personal_record{
    padding-right: 0px;
    width: 100%;
  }

  .belong{
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #989898;
    border-left: 0px solid #989898;
    padding-left: 0px;
    width: 100%;
  }

  .backdrop ul li{
    padding:2px 10px;
  }
}

.announcement{
  border-top: 1px solid #989898;
  padding-top: 20px;
  width: 100%;
}

.announcement span{
  display: block;
  /* text-align: right; */
 }

/* first-feature */

.first-feature h2{
 margin-bottom: 100px; 
}

.first-feature{
  position: relative;
    margin-bottom: 100px;
  /* overflow: hidden; */
}

 @media print, screen and (max-width:750px) {
  .first-feature{
    margin-bottom: 40px;
  }
 }

.first-feature .inner{
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  margin: auto;
}

.first-feature::before{
  position: absolute;
  display: block;
  content: "";
  background-image: url(../image/top/feature-txt.svg);
  background-repeat: repeat-x;
  width: 100%;
  height: 280px;
  top: -50px;
  left: 0;
  z-index: -1;
}

 .first-feature-list{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 60px 40px;
 }

@media print, screen and (max-width:750px) {
  .first-feature-list{
    grid-template-columns: repeat(1,1fr);
    gap: 40px;
  }
}

.first-feature-list .txt-box{
  text-align: left;
  width: 85%;
  padding: 24px 20px 20px;
  margin: auto;
  position: relative;
  background-color: #fff;
  border-bottom: #989898;
  min-height: 240px;
  margin-top: -40px;
}

@media print, screen and (max-width:750px) {
  .first-feature-list .txt-box{
    min-height: 100px;
  }
}

.first-feature-list .txt-box h3,
.first-feature-list .txt-box .num{
  text-align: center;
}

.first-feature-list .txt-box h3{
  font-weight: 400;
  margin-bottom: 10px;
}

.first-feature-list .txt-box .num{
  color: #fff;
  font-size: 48px;
  font-weight: 400;
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
}

@media print, screen and (max-width:750px) {
  .first-feature-list .txt-box .num{
    top: -58px;
  }
 }

/* flow */
.flow{
  position: relative;
  padding-top: 80px;
  padding-bottom: 120px;
  /* overflow: hidden;  */
}

@media print, screen and (max-width:750px) {
.flow{
  overflow: hidden; 
}
 }

.flow_body{
  max-width: 486px;
  width: 100%;
  margin: auto;
  margin-bottom: var(--block-space-l);
}

.flow_body {
  padding-top: var(--block-space-m);
}
.flow_body p:not(:first-of-type) {
  padding-top: 2em;
}

.flow-list{
  list-style: none;
  position: relative;
}

.flow-list::before{
  content: "";
  display: block;
  position: absolute;
  left: 23px;
  /* top: 50%;
  transform: translateY(-50%); */
  background-color :#434448;
  width: 1px;
  height: calc(100% + 40px);
}

.flow-list li{
  position: relative;
  padding-left: 60px;
  text-align: left;
}

.flow-list li::before{
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background-color :#434448;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.flow-list li:not(:last-child){
  margin-bottom: var(--box-space-min);
}

  @media print, screen and (max-width:750px) {
  .flow-list li:not(:last-child){
    margin-bottom: var(--box-space-l);
  }
  .flow_body{
    margin-bottom: var(--block-space-2l);
  }
 }

.flow-list .flow_item_hd{
  line-height: var(--line-height-s);
  margin-bottom: 4px;
}

.flow-list .flow_item_hd .ttl{
  font-size: var(--fs-m);
  font-family: var(--ff-min);
  font-weight: 500;
  margin-bottom: 16px;
}
.flow-list .flow_item_hd .ttl small{
  font-size: var(--fs-2s);
}

.flow-list .flow_item_hd .no{
  font-family: var(--ff-min);
  font-size: var(--fs-2l);
  margin-bottom: 6px;
  display: block;
}

@media print, screen and (max-width:750px) {
  .flow-list::before{
    left: 12px;
  }

  .flow-list li{
    padding-left: 30px;
  }

  .flow-list li::before{
    left: 9px;
  }
}

.flow .box{
  text-align: left;
  max-width: 900px;
  width: 100%;
  margin: auto;
  padding:40px 60px;
  background-color: rgba(255, 255, 255, 0.8);
}

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

.flow .box h4{
  font-family: var(--ff-min);
  font-weight: 400;
  margin-bottom: 20px;
  font-size: var(--fs-3l);
}

.flow .box .fc-red{
  font-weight: 700;
}

.flow::after{
  position: absolute;
  display: block;
  content: "";
  background-image: url(../image/top/bg-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  /* max-width: 1638px; */
  max-width: 1760px;
  /* max-width: 2400px; */
  height: 100%;
  aspect-ratio: 1/1;
  /* top: calc(200px + 50%); */
  top: calc(50px + 50%);
  transform: translateY(-50%);
  right: -20%;
  z-index: -1;
 }

/*        */
.h-intro,
.i-control{
  padding-left: 40px;
  padding-right: 40px;
  text-align: left;
  margin-bottom: 100px;
}

.h-intro h2,
.i-control h2{
  margin-bottom: var(--block-space-min);
}

.h-intro ul,
.i-control ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap:36px;
}

@media print, screen and (max-width:900px) {
  .h-intro,
  .i-control{
    padding-left: 20px;
    padding-right: 20px;
  }

  .h-intro ul,
  .i-control ul {
    grid-template-columns: repeat(3,1fr);
    gap:30px;
  }
}

@media print, screen and (max-width:750px) {
  .h-intro ul,
  .i-control ul {
    grid-template-columns: repeat(2,1fr);
    gap:24px;
  }
}

@media print, screen and (max-width:480px) {
  .h-intro ul,
  .i-control ul {
    grid-template-columns: repeat(1,1fr);
    gap:20px;
  }
}

.h-intro ul li,
.i-control ul li {
  box-shadow: 10px 10px 20px #d3d3d3, -10px -10px 20px #efefef;
}

.h-intro ul li img,
.i-control ul li img{
  filter: brightness(1.1);
}

.h-intro ul p,
.i-control ul p {
  background-color: #fff;
  padding: 24px 20px;
}


.line-ttl{
  position: relative;
  font-size: var(--fs-max);
  font-family: var(--ff-min);
  font-weight: 500;
  line-height: 1.4;
}

.line-ttl > span{
  background-color: #D5D5D5;
  padding-right: 40px;
  display: inline-block;
}

.line-ttl::before{
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #989898;
}

.line-ttl .en{
  font-size: 12px;
  display: block;
  letter-spacing: 0.5px;
}

@media print, screen and (max-width:750px) {
  .line-ttl .en{
    font-size: 10px;
    letter-spacing: 0px;
  }
}

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

予防メインテナンス
  
----------------------------------------------------------------------------------------------------*/
/* about-m */
.about-m{
  text-align: left;
  margin-bottom: 160px;
}

.about-m .inner{
  max-width: 1180px;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}

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

@media print, screen and (max-width:750px) {
  .about-m{
    margin-bottom: 80px;
  }
 }

 .about-m .box{
  display: flex;
 }


 @media print, screen and (max-width:750px) {
  .about-m .box{
  flex-direction: column;
  }
 }

  .about-m .txt-box{
    max-width: 564px;
    margin-right: 60px;
    /* line-height: 2; */
  }

 .about-m .txt-box p:not(:last-of-type){
  margin-bottom: 30px;
 }
  @media print, screen and (max-width:750px) {
  .about-m .txt-box{
    max-width: 750px;
    margin-right: 0px;
    margin-bottom: 30px;
  }
 }


 /* maintenance-feature */

.maintenance-feature h2{
 margin-bottom: 100px; 
}

.maintenance-feature{
  position: relative;
  margin-bottom: 100px;
}

 @media print, screen and (max-width:750px) {
  .maintenance-feature{
    margin-bottom: 40px;
  }
 }

.maintenance-feature .inner{
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  margin: auto;
}

.maintenance-feature::before{
  position: absolute;
  display: block;
  content: "";
  background-image: url(../image/top/feature-txt.svg);
  background-repeat: repeat-x;
  width: 100%;
  height: 280px;
  top: -50px;
  left: 0;
  z-index: -1;
}

 .maintenance-feature-list{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  padding-top: 40px;
  /* gap: 60px 40px; */
  gap: 120px 40px;
 }

@media print, screen and (max-width:750px) {
  .maintenance-feature-list{
    grid-template-columns: repeat(1,1fr);
    gap: 100px;
  }
}

.maintenance-feature-list .txt-box{
  text-align: left;
  /* width: 85%; */
  padding: 24px 20px 20px;
  margin: auto;
  position: relative;
  background-color: #fff;
  border-bottom: #989898;
  min-height: 240px;
  margin-top: -40px;
}

@media print, screen and (max-width:750px) {
  .maintenance-feature-list .txt-box{
    min-height: 100px;
  }
}

.maintenance-feature-list .txt-box h3,
.maintenance-feature-list .txt-box .num{
  text-align: center;
}

.maintenance-feature-list .txt-box h3{
  font-weight: 400;
  margin-bottom: 10px;
}

.maintenance-feature-list .txt-box .num{
  color: #fff;
  font-size: 48px;
  font-weight: 400;
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
}

@media print, screen and (max-width:750px) {
  .maintenance-feature-list .txt-box .num{
    top: -58px;
  }
 }

@media print, screen and (max-width:750px) {
  .maintenance .flow{
    padding-bottom: 60px;
  }
 }

 

 /* importance */
.importance{
  /* text-align: left; */
  margin-bottom: 160px;
}

  @media print, screen and (max-width:750px) {
.importance{
  /* text-align: left; */
  margin-bottom: 80px;
}
 }

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

@media print, screen and (max-width:750px) {
.importance h2{
  margin-bottom: 30px;
}
 }

.importance .txt-box{
  max-width: 900px;;
  margin: auto;
  margin-bottom: 60px;
}

@media print, screen and (max-width:750px) {
.importance .txt-box{
  margin-bottom: 30px;
}
 }

.importance .txt-box p{
  text-align: left;
}

.importance .inner{
  max-width: 1180px;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}

.importance ul{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 60px 40px;
  margin-bottom:100px ;
}

@media print, screen and (max-width:750px) {
.importance ul{
  grid-template-columns: repeat(1,1fr);
  gap: 30px;
  margin-bottom:40px ;
}
 }

.importance ul li{
  border: 1px solid #fff;
  padding: 30px;
}
.importance ul li p{
text-align: left;
}

.importance ul li h3{
  text-align: center;
  font-weight: 500;
  margin-bottom: 16px;
}

.importance ul li img{
  height: 50px;
  margin-bottom: 20px;
}

.importance .box{
  text-align: left;
  max-width: 900px;
  width: 100%;
  margin: auto;
  padding:40px 60px;
  background-color: rgba(255, 255, 255, 0.8);
}

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

.importance .box h4{
  font-family: var(--ff-min);
  font-weight: 400;
  margin-bottom: 20px;
  font-size: var(--fs-3l);
}


.importance .box .fc-red{
  font-weight: 700;
}



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

顎関節・噛み合わせ
  
----------------------------------------------------------------------------------------------------*/
.about-t{
  margin-bottom: var(--block-space-l);
}

@media print, screen and (max-width:750px) {
  .about-t{
    margin-bottom: var(--block-space-m);
  }
 }
 
 .about-t .inner{
   max-width: 1180px;
   box-sizing: border-box;
   padding-left: 20px;
   padding-right: 20px;
   margin: auto;
   text-align: left;
   /* line-height: var(--line-height-m); */
  }
  
  .tmj-bte{
    margin-bottom: 100px;
  }
@media print, screen and (max-width:750px) {
  .tmj-bte{
    margin-bottom: 60px;
  }
}

.tmj-bte .inner{
  max-width: 1180px;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
  text-align: left;
  line-height: var(--line-height-m);
}

.tmj-bte h2{
  margin-bottom: var(--box-space-min); 
}

.tmj-bte .box{
  display: flex;
  gap: 60px;
}

@media print, screen and (max-width:750px) {
.tmj-bte .box{
  gap: 40px;
}
}
@media print, screen and (max-width:640px) {
.tmj-bte .box{
 flex-direction: column-reverse;
}
}

.tmj-bte .txt-box{
  max-width: 692px;
  width: 100%;
}

.tmj-bte .txt-box p:not(:last-of-type){
  margin-bottom: 20px;
}

.tmj-bte .txt-box p strong{
  font-weight: 500;
}


.bite-c{
  margin-bottom: var(--block-space-l);
}
.bite-c .inner{
  max-width: 940px;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}

.bite-c h2{
  margin-bottom: var(--box-space-s);
}

.bite-c h2 + p{
   text-align: left;
   margin-bottom: var(--box-space-m);
}

.bite-c h2 small{
 text-align: center;
 font-size: 16px;
 display:block;
 line-height: var(--line-height-s)
}

.bite-c ul{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}

@media print, screen and (max-width:800px) {
.bite-c ul{
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
}

@media print, screen and (max-width:480px) {
.bite-c ul{
  grid-template-columns: repeat(1,1fr);
  gap: 10px;
}
}

.bite-c ul li{
  padding: 20px;
}

.bite-c ul li h3{
  font-weight: 500;
  margin-bottom: 10px;
}


.bite-c ul li h3 small{
  font-size: var(--fs-3s);
}

.bite-c ul li img{
  height: 74px;
  margin-bottom: 15px;
}

.bite-c ul li p{
  text-align: left;
}


.jjdise .inner{
  max-width: 940px;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}
.jjdise h2{
  margin-bottom: var(--box-space-s);
}

.jjdise h2 + p{
  text-align: left;
  margin-bottom: var(--box-space-m);
}

.jjdise h2 + p + p{
  text-align: left;
  margin-bottom: var(--box-space-m);
}

.jjdise h2 + p + p strong{
  font-weight: 500;
}

.jjdise ul{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-bottom: var(--box-space-m);
}
.jjdise ul+p{
  margin-bottom: 100px;
  text-align: left;
}

@media print, screen and (max-width:750px) {
.jjdise ul{
  grid-template-columns: repeat(1,1fr);
  gap: 30px;
  margin-bottom:40px ;
}
 }

.jjdise ul li{
  border: 1px solid #fff;
  padding: 30px 20px;
}
.jjdise ul li p{
text-align: left;
}

.jjdise ul li h3{
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
}

.jjdise ul li img{
  height: 60px;
  margin-bottom: 16px;
}

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

  インプラント
  
----------------------------------------------------------------------------------------------------*/

.about-i{
  margin-bottom: var(--block-space-2l);
}


.about-i .inner{
  max-width: 1180px;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
  margin: auto;
}

.about-i h2{
  margin-bottom: var(--box-space-s);
}

.about-i h2 +p{
  margin-bottom: var(--block-space-s);
}

.about-i .box{
  display: flex;
  gap: 80px;
align-items: flex-start
}

@media print, screen and (max-width:1000px) {
.about-i .box{
  gap: 40px;
}
 }

 @media print, screen and (max-width:700px) {
.about-i .box{
  flex-direction: column;
  gap: 20px;
}
 }

.about-i h3{
position: sticky;
top: 10px;
white-space: nowrap;
}

 @media print, screen and (max-width:700px) {
.about-i h3{
position: static;
 }
  }

.about-i .box ul{
  list-style: none;
  max-width: 746px;
}
.about-i .box ul li{
  padding-bottom: 30px;
  padding-left:32px ;
}

.about-i .box ul li h4{
  margin-bottom: 16px;
  position: relative;
  margin-left: -32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-i .box ul li h4::before{
  /* position: absolute; */
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  /* top: 50%;
  left: -32px;
  transform: translateY(-50%); */
  background-color: #989898;

}

.about-i .box ul li:not(:last-child){
  border-bottom:1px solid #989898;
  margin-bottom: 30px;
}


.from2c .inner{
  max-width: 1180px;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
}

.from2c .inner > h2{
  text-align: left;
  margin-bottom: 20px;
}

.from2c .inner > h2 + p{
  text-align: left;
  margin-bottom:var(--block-space-s) ;
}

 @media print, screen and (max-width:700px) {
.from2c .inner > h2 + p{
  text-align: left;
  margin-bottom:40px;
}

  }

.from2c .inner .box{
  max-width: 900px;
  box-sizing: border-box;
  margin: auto;
  margin-bottom: var(--block-space-3l);
}

.from2c .inner .box h2{
  margin-bottom: 40px;
}

 @media print, screen and (max-width:700px) {
.from2c .inner .box h2{
  text-align: left;
  margin-bottom: 20px;
}

  }

.from2c .inner .box > p{
  text-align: left;
   margin-bottom: 40px;
}

.from2c .inner .box ul{
  list-style: none;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 36px;
  margin-bottom: 30px;
}

 @media print, screen and (max-width:700px) {
.from2c .inner .box ul{
  gap: 20px;
}

.from2c .inner .box > p{
   margin-bottom: 30px;
}
  }
  
 @media print, screen and (max-width:480px) {
.from2c .inner .box ul{
grid-template-columns: repeat(1,1fr);
}
  }

.from2c .inner .box ul li{
padding: 30px;
border: 1px solid #989898;
background-color: rgba(255, 255, 255, 0.2);
}

 @media print, screen and (max-width:700px) {
.from2c .inner .box ul li{
padding: 20px;
}

  }

.from2c .inner .box ul li h3{
  margin-bottom: 16px;
  font-weight: 500;
}

.flow .caution{
  display: flex;
  gap: 80px;
align-items: flex-start;
  max-width: 1180px;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
  margin-top: var(--block-space-3l);
}

.flow .caution h3{
position: sticky;
top: 10px;
}

.flow .caution ul{
  list-style: none;
  max-width: 746px;
}
.flow .caution ul li{
  padding-bottom: 30px;
  padding-left:32px ;
}

.flow .caution ul li h4{
  margin-bottom: 16px;
  position: relative;
  margin-left: -32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.flow .caution ul li h4::before{
  /* position: absolute; */
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  /* top: 50%;
  left: -32px;
  transform: translateY(-50%); */
  background-color: #989898;

}

.flow .caution ul li:not(:last-child){
  border-bottom:1px solid #989898;
  margin-bottom: 30px;
}

@media print, screen and (max-width:1000px) {
.flow .caution{
  gap: 40px;
}
 }

 @media print, screen and (max-width:700px) {
.flow .caution{
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
}
 }

 @media print, screen and (max-width:700px) {
.flow .caution h3{
position: static;
 }
  }


  .treatment{
  overflow-y: visible;
  overflow-x:hidden;
}
.treatment-c {
  margin-bottom: 80px;
  position: relative;
  overflow-y: visible;
  /* overflow-x: hidden; */
}

 .treatment-c::after{
  position: absolute;
  display: block;
  content: "";
  background-image: url(../image/top/bg-icon.svg);
  background-repeat: no-repeat;
  width: 100%;
  max-width: 1638px;
  height: 60%;
  aspect-ratio: 1/1;
  top: 50%;
  right: -20%;
  z-index: -1;
 }

  .treatment-c .inner{
  display: flex;
  gap: 34px;
  align-items: flex-start;
  max-width: 1180px;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
  text-align: left;
  }

   .treatment-c .list-box{
    position: sticky;
    top: 20px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 4px;
    max-width: 382px;
    width: 100%;
    padding: 40px 24px;
   }

    .treatment-c .list-box h2{
      margin-bottom: var(--box-space-min);
      font-size: var(--fs-2l);
      font-weight: 500;
    }

   .treatment-c .list-box ul{
    list-style: none;
    display: flex;
    /* justify-content: center; */
    gap: 10px;
    flex-wrap: wrap;
  }

   .treatment-c .list-box ul a{
    background-color: rgba(255,255,255,0.6);
   }

   .treatment-c .list-box ul li{
    background-color: rgba(255,255,255,0.6);
    border-radius: 4px;
   }

   .treatment-c .list-box ul li a{
    color: #434448;
    text-decoration: none;
    display: block;
    padding: 10px;
    font-size: 18px;
   }

    @media print, screen and (max-width:800px) {
         .treatment-c .list-box ul li a{
    font-size: 14px;
   }
    }

   .treatment-c .list-box ul li a::before{
    color: #0397F3;
    content: "# ";
   }


.treatment-c .txt-box{
  width: calc( 100% - 416px);
}

 @media print, screen and (max-width:800px) {
   .treatment-c{
    overflow: hidden;
   }

    .treatment-c .inner{
  display: flex;
  gap: 34px;
  align-items: flex-start;
flex-direction: column;
  }

   .treatment-c .list-box{
    position: static;
    top: 0px;
    max-width: 800px;
    width: 100%;
   }
.treatment-c .txt-box{
   max-width: 800px;
  width: 100%
}
  }


.treatment-c .txt-box > p{
  margin-bottom:var(--block-space-s) ;
}

.treatment-c .txt-box > div:not(:last-of-type){
  margin-bottom:var(--block-space-s) ;
  border-bottom: 1px solid #989898;
}

.treatment-c .txt-box > div{
  padding-bottom:var(--block-space-s) ;
}

 @media print, screen and (max-width:480px) {
  .treatment-c .txt-box > div:not(:last-of-type){
  margin-bottom:var(--block-space-min) ;
}

.treatment-c .txt-box > div{
  padding-bottom:var(--block-space-min) ;
}

 }

.treatment-c .txt-box > div h3{
  margin-bottom: 12px;
}

.treatment-c .txt-box > div p:not(:last-of-type){
  margin-bottom: 20px
}

.treatment-c .txt-box > div ul{
  margin-bottom: 20px
}
/* .treatment-c .txt-box > div h3 + p{
  margin-bottom:0; 
} */

.treatment-c .txt-box > div h4{
  border: 1px solid #434448;
  padding: 5px 10px;
  display: inline-block;
  font-weight: 500;
  margin:20px 0 10px ;
}

.fw500{
  font-weight: 500;
}

.uline{
  border-bottom: 1px solid #434448;
  padding-bottom: 2px;
}

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

/*----------------
recruit
----------------*/
.recruit-page{
  overflow-y: visible;
  overflow-x:hidden
}

/* greeting */
.greeting{
  position: relative;
  border-top:1px solid #CCC;
  margin-top: 110px;
}

.greeting::before{
  position: absolute;
  display: block;
  content: "";
  background-image: url(../image/recruit/message-txt.svg);
  background-repeat: repeat-x;
  width: 100%;
  height: 280px;
  top: -300px;
  left: 0;
  z-index: -1;
}

.greeting .box{
  display: flex;
  justify-content: flex-start;
}

.greeting .img-box{
  width: 50%;
  height: 100%;
  min-height: 850px;
  background-image: url(../image/recruit/director.jpg?v=2);
  background-size: cover;
  background-position: center;
}

.greeting .img-box img{
  width: 100%;
  height: 100%;
  max-height:900px;
  object-fit: cover;
}

.greeting .txt-box{
  width: 50%;
  padding: var(--block-space-m);
  text-align: left;
  height: 100%;
  max-width: 683px;
}

.greeting .txt-box .name{
  text-align: right;
  font-size: var(--fs-2l);
  margin-top: 60px;
}


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

  .greeting .enttl{
    font-size: var(--fs-5l);
  }

  .greeting .txt-box{
    padding: var(--block-space-s);
  }

  .greeting .txt-box .name{
    margin-top: 30px;
  }
 }

 @media print, screen and (max-width:900px) {
  .greeting .box{
   flex-direction: column;
   margin-bottom: 30px;
  }

  .greeting .txt-box{
    padding: var(--block-space-m) 20px;
    width: 100%;
    max-width: 900px;
  }

  .greeting .img-box{
   background-image: url(../image/recruit/director-sp.jpg?v=2);
   height: 340px;
   min-height: auto;
   width: 100%;
  }
 }


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

 }

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

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

 /* we-seek */

 .we-seek{

}

.we-seek .inner{
  /* max-width: 1366px;
  margin: auto; */
}

.we-seek .box{
  display: flex;
  /* align-items: center; */
  justify-content: flex-end;
}

.we-seek .img-box{
  width: 50%;
  height: 100%;
  min-height: 700px;
  background-image: url(../image/recruit/weseek.jpg);
  background-size: cover;
  background-position: center;
}

.we-seek .img-box img{
  height: 100%;
  object-fit: cover;
  max-height:900px;
}

.we-seek .txt-box{
  width: 50%;
  padding: var(--block-space-m);
  text-align: left;
  box-sizing: border-box;
  max-width: 683px;
}

.we-seek .txt-box .seek-list h3{
  font-family: var(--ff-min);
  font-size: var(--fs-2l);
  font-weight: 500;
  margin-bottom: 0.5em;
}

.we-seek .txt-box .seek-list{
  list-style: none;
}

.we-seek .txt-box .seek-list li:not(:last-child){
  margin-bottom: var(--box-space-s);
}


@media print, screen and (max-width:1366px) {
  .we-seek  .enttl{
    font-size: var(--fs-5l);
  }

  .we-seek .txt-box{
    padding: var(--block-space-s);
  }
 }

 @media print, screen and (max-width:900px) {
  .we-seek .box{
   flex-direction: column-reverse;
   margin-bottom: 30px;
  }

  .we-seek .txt-box{
    padding: var(--block-space-m) 20px;
    width: 100%;
    max-width: 900px;
  }

  .we-seek .img-box{
   background-image: url(../image/recruit/weseek-sp.jpg);
   height: 340px;
   min-height: auto;
   background-position: 80%;
   width: 100%;
  }
 }

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

}

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

 }

 @media print, screen and (max-width:480px) {
  .we-seek .img-box{
    height: 200px;
   }
 }


 /*keypoints*/

 .keypoints{
  border-bottom:1px solid #CCC ;
  margin-bottom: 120px;
}

.keypoints .box{
  display: flex;
  justify-content: flex-start;
}

.keypoints .img-box{
  width: 50%;
  height: 100%;
  min-height: 900px;
  background-image: url(../image/recruit/keypoints.jpg);
  background-size: cover;
  background-position: center;
}

.keypoints .txt-box{
  width: 50%;
  padding: 60px var(--block-space-m);
  text-align: left;
  box-sizing: border-box;
}

.keypoints .txt-box .points-list h3{
  font-family: var(--ff-min);
  font-size: var(--fs-2l);
  font-weight: 500;
  margin-bottom: 0.5em;
}

.keypoints .txt-box .points-list{
  list-style: none;
}

.keypoints .txt-box .points-list li:not(:last-child){
  margin-bottom: var(--box-space-s);
}

@media print, screen and (max-width:1366px) {
  .keypoints .enttl{
    font-size: var(--fs-5l);
  }

  .keypoints.txt-box{
    padding: var(--block-space-s);
  }
 }

 @media print, screen and (max-width:900px) {
  .keypoints .box{
   flex-direction: column;
   margin-bottom: 30px;
  }

  .keypoints .txt-box{
    padding: var(--block-space-m) 20px;
    width: 100%;
    max-width: 900px;
  }

  .keypoints .img-box{
   background-image: url(../image/recruit/keypoints-sp.jpg);
   height: 340px;
   min-height: auto;
   background-position: 90%;
   width: 100%;
  }
 }


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

}

@media print, screen and (max-width:480px) {
  .keypoints .img-box{
    height: 200px;
   }
 }


 /* recruitment-details*/

 .recruitment-details{
  position: relative;
  margin-bottom: 100px;
 }

 .recruitment-details::before{
  position: absolute;
  display: block;
  content: "";
  background-image: url(../image/recruit/recruit-txt.svg);
  background-repeat: repeat-x;
  width: 100%;
  height: 280px;
  top: 50px;
  left: 0;
  z-index: -1;
 }

 .recruitment-details .inner{
  padding: 0 20px;
 }

 .recruitment-details h2.circle-ttl{
  margin-bottom:80px
 }

 .recruitment-details h2.circle-ttl + span{
  display: block;
  margin-bottom:var(--box-space-s);
 }

 .main-points{
  display: flex;
  flex-wrap: wrap;
  max-width: 750px;
  margin: 0 auto 40px;
  text-align: left;
 }

 .main-points dt{
  font-size: var(--fs-l);
  width: 240px;
  margin-right: 15px;
  border-bottom:2px solid #2C6AA5;
  color:#2C6AA5 ;
  font-weight: 700;
  padding-left: 30px;
  line-height: var(--line-height-l);
 }

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

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

 .main-points dd{
  font-size: var(--fs-l);
  width: calc(100% - 255px);
  border-bottom:1px solid #D9D9D9;
  padding-left: 30px;
  font-weight: 500;
  padding-bottom: 20px;
  line-height: var(--line-height-l);
 }


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

}

 @media print, screen and (max-width:750px) {
  .recruitment-details{
    position: relative;
    margin-bottom: 60px;
   }

  .main-points dt{
    font-size: var(--fs-m);
    width: 20%;
    margin-right: 2%;
   }
  
   .main-points dd{
    font-size: var(--fs-m);
    width: 78%;
    padding-left: 30px;
    font-weight: 500;
    padding-bottom: 20px;
   }
}
 @media print, screen and (max-width:640px) {

  .main-points dt{
    font-size: var(--fs-m);
    width: 20%;
    margin-right: 2%;
    padding-left: 10px;
   }
  
   .main-points dt:not(:last-of-type){
    margin-bottom:10px;
   }
  
   .main-points dd:not(:last-of-type){
    margin-bottom:10px;
   }
  
   .main-points dd{
    font-size: var(--fs-m);
    width: 78%;
    padding-left: 10px;
    font-weight: 500;
    padding-bottom: 10px;
   }

}
 @media print, screen and (max-width:500px) {
  .main-points dt{
    padding-left: 5px;
   }
  .main-points dd{
    padding-left: 5px;
   }
}

.to-form-box{
  position: relative;
  /* background-color: #fff; */
  padding-top: 140px;
  padding-bottom: 120px;
  background-image: url(../image/recruit/toform-back.png);
  background-size: cover;
  background-position: top center;
}

 .to-form{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: var(--box-space-s);
  padding-bottom: var(--box-space-s);
  background-color: #034E95;
  max-width: 480px;
  min-height: 145px;
  width: 100%;
  margin: auto;
  text-decoration: none;
  border-radius: 8px;
  line-height: 1;
 }

 .to-form span{
  color: #fff;
  font-weight: 500;
  font-size:28px;
 }

 .to-form .en{
  display: block;
  text-transform: uppercase;
  margin:20px auto 0 ;
  font-size: 12px;
 }

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

  .to-form-box{
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .to-form{
    max-width: 360px;
    min-height: 120px;
   }

  .to-form span{
    font-size:22px;
   }
  
   .to-form .en{
    display: block;
    text-transform: uppercase;
    margin:20px auto 0 ;
    font-size: 10px;
   }
}






/*----------------
  contents-banner
----------------*/
.contents-banner{
  
}

.contents-banner ul{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  list-style: none;
}

@media print, screen and (max-width:700px) {
  .contents-banner ul{
    grid-template-columns: repeat(1,1fr);
  }
 }

.contents-banner ul li{
  position: relative;
  background-size: cover;
  transition: .3s;
}

.contents-banner ul li::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.4);
  transition: .3s;
}

.contents-banner ul li:nth-child(1){
  background-image: url(../image/top/b-01.jpg);
  filter: grayscale(20%);
}
.contents-banner ul li:nth-child(2){
  background-image: url(../image/top/b-02.jpg);
  filter: grayscale(40%);
}
.contents-banner ul li:nth-child(3){
  background-image: url(../image/top/b-03.jpg);
  filter: grayscale(20%);
}

.contents-banner ul li:hover{
  filter: grayscale(0%);
}

.contents-banner ul li:hover::before{
  background-color: rgba(255, 255, 255, 0);
}

.contents-banner ul li a{
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 3/2;
} 

.contents-banner ul li p{
  color: #fff;
}

/* .contents-banner ul li:hover p{
  transform: scale(1.1, 1.1);
} */
.contents-banner ul li .en{
  display: block;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 400;
  font-size: var(--fs-3l);
  letter-spacing: 1px;
}




/*----------------
  gmap
----------------*/

.gmap iframe{
  width: 100%;
  aspect-ratio:3 / 1;
  filter: grayscale(100%);
  vertical-align: bottom;
   /*   filter: invert(100%);
  filter: grayscale(100%) invert(92%) contrast(83%); */
}

@media print, screen and (max-width:800px) {
  .gmap iframe{
    width: 100%;
    aspect-ratio:3 / 2;
  }
}

@media print, screen and (max-width:640px) {
  .gmap iframe{
    width: 100%;
    aspect-ratio:1;
  }
}

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

.open-hours {
  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: #595758;
  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
----------------*/

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

.under-info{
  display: flex;
  justify-content: flex-end;
}

footer{
  /* background-color:#EAEAEA; */
  padding-top: 60px;
  text-align: left;
  background: #fff;
}

footer .box{
  display: flex;
  justify-content: space-between;
  margin: 0 auto 30px;
  max-width: 1040px;
  padding: 0 20px;
}

@media print,screen and (max-width:980px) {
  footer .box{
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .under-info{
    justify-content: center;
  }
}

.ft-left{
  margin-right: 60px;
}

.ft-right{
  max-width: 564px;
  width:100%;
}

@media print,screen and (max-width:980px) {
  .ft-left{
    margin-right: 0px;
  }
}

.ft-logo{
  max-width: 490px;
  width: 100%;
  height: auto;
  /* margin: 0 auto; */
  padding-bottom:var(--box-space-min);
}

@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 {
  margin: auto;
  max-width: 1040px;
  padding-bottom: 30px;
}

@media print,screen and (max-width:1040px) {
  footer nav {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
  }
}

@media print,screen and (max-width:980px) {
  footer nav{
    display:none;
  }
}


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

@media print,screen and (max-width:980px) {
  footer nav ul{
    justify-content: center;
  }
  footer .hedder-tel{
    margin: auto;
  }
}

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

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

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

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

#page_top{
  width: 68px;
  height: 68px;
  position: fixed;
  right: 20px;
  bottom: 0;
  /* background: #fff;
  border: #AE9373 2px solid; */
  background: #717171;
  border-radius: 4px;
  z-index: 3;
  transition: .3s;
}

/* #page_top a::before{
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #FFF;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: -1;
} */

#page_top:hover{
  background-color: #3d3d3d;
  transition: .3s;
}
#page_top a{
  position: relative;
  z-index: 1;
  display: block;
  width: 68px;
  height: 68px;
  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;
  } 
}

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

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

}

.bb-btn{
  background-color: #525252;
  padding: 4px 12px 5px;
  display: inline-block;
  margin: 4px auto;
  color: white;
  text-decoration: none;
  font-weight: 300;
  border: 1px solid #525252;
}

.bb-btn:hover{
  color: white;
}

.bb-btn:visited{
  color: white;
}

.bd-btn{
  border: 1px solid #525252;
  padding: 4px 12px 5px;
  display: inline-block;
  margin: 4px auto;
  color: #525252;
  text-decoration: none;
  font-weight: 400;
}

.bd-btn:hover{
  color: #525252;
}

.bd-btn:visited{
  color: #525252;
}

.uborder-ttl{
  border-bottom:1px solid #989898 ;
  padding-bottom: 10px;
  font-weight: 500;
}

.normal-ttl{
  font-size: var(--fs-5l);
  font-family: var(--ff-min);
  line-height: 1.2;
  font-weight: 500;
}

.normal-ttl .en{
  display: block;
  /* text-transform: uppercase; */
  font-size: 12px;
  margin-bottom: 8px;
}
