@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: #2E3A46;
  font-family: 'Noto Sans JP','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: "Raleway", 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: #506D84; }
.fc-dblue { color: #2E3A46; }
.fc-lblue { color: #B7C4CF; }
.fc-gold { color: #B8AFA6; }
.fc-red { color: #C75C5C; }
.fc-orange { color: #D97A40; }
.fc-orange02 { color: #E7A977; }
.fc-pink { color: #E8A0A6; }
.fc-green { color: #607D3B; }
.fc-gray { color: #676767; }
.fc-gray02 { color: #F5F5F5; }

.bg-blue { background-color: #506D84; }
.bg-dblue { background-color: #2E3A46; }
.bg-lblue { background-color: #B7C4CF; }
.bg-gold { background-color: #B8AFA6; }
.bg-red { background-color: #C75C5C; }
.bg-orange { background-color: #D97A40; }
.bg-orange02 { background-color: #E7A977; }
.bg-pink { background-color: #E8A0A6; }
.bg-green { background-color: #607D3B; }
.bg-gray { background-color: #676767; }
.bg-gray02 { background-color: #F5F5F5; }


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

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

.merriweather {
  font-family: "Merriweather Sans", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: <weight>; */
  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: #59b6d0;
  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;
}

/*----------------
line-ttl
----------------*/

.line-ttl{
  padding: 3em 20px;
  background: linear-gradient(90deg,#ffdeec, #fff5e1, #c0def4, #b7f2c5)fixed;
  background-size: 200% 200%;
  animation: GradietionAnimation 9s ease infinite;
  line-height: 2;
}

.line-ttl span{
  display: inline-block;
  position: relative;
  padding: 1em 2em;
  text-align: center;
}

.line-ttl span:before,
.line-ttl span:after {
  position: absolute;
  content: '';
}

.line-ttl span:after {
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 1px solid #919191;
  border-left: 1px solid #919191;
}

.line-ttl span:before {
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-right: 1px solid #919191;
  border-bottom: 1px solid #919191;
}





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

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

.enttl{
  line-height: 1;
  font-size:var(--fs-2s);
  font-weight: 700;
  /* color: #000; */
  text-align: center;
}

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

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

.enttl[jp="reverse"] .en{
  padding-top: 20px;
  letter-spacing: 1px;
  font-weight: 300;
  margin-bottom: 16px;
  font-size:var(--fs-s);
}

.enttl span{
  display: block;
}

.enttl[jp="reverse"]::after{
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color:#2E3A46 ;
  
}

.enttl[jp="correct"]{
  font-weight: 400;
}
.enttl[jp="correct"] span.en{
  display: block;
  font-size:var(--fs-4l);
  padding-bottom: 10px;
  letter-spacing: 1px;
}

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


/*----------------
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;
  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: inline-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/cal.svg);
  width: 45px;
  background-size: contain;
}

/* .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: #AE9373
}

.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:#AE9373;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
}

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

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

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

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

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

/*----------------
btn_30
----------------*/
a.btn_30 {
	display: flex;
  justify-content: center;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
	width: 20em;
	height: 4em;
	color: #ccc;
	cursor: pointer;
	transition: all 0.85s cubic-bezier(.17,.67,.14,.93);
	transform-style: preserve-3d;
	transform-origin: 100% 50%;
}
a.btn_30:hover {
	transform: rotateX(-90deg);
}
a.btn_30 .side {
	box-sizing: border-box;
	position: absolute;
	display: inline-block;
	width: 20em;
	text-align: center;
	padding: 1.2rem 4rem;
	font-weight: 500;
	letter-spacing: 3px;
}
a.btn_30 .top {
	background: #b4e12b;
	color: #fff;
	transform: rotateX(90deg) translate3d(0, 0, 2em);
}
a.btn_30 .front {
	background: #27acd9;
	color: #fff;
	transform: translate3d(0, 0, 2em);
}

/*----------------
btn
----------------*/

.btn{
  color: white!important;
  padding: 15px 30px;
  font-size: var(--fs-m);
  text-decoration: none;
  border-radius: 4px;
}

.btn[b-clr="orange"]{
  background-color:#D97A40 ;
}
.btn[b-clr="d-blue"]{
  background-color:#2E3A46 ;
}
/*----------------
header
----------------*/
header{
 position: fixed;
 z-index: 1;
 top: 0;
 left: 0;
 width: 100%;;
}

.header-primary{
  /* padding:22px 40px; */
  position: relative;
}
@media print, screen and (max-width:800px) {
.header-primary .btn{
font-size: var(--fs-s);
padding: 10px 15px;
}}


.header-wrap{
  width: 100%;
  padding:30px 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-box .box-inner{
  /* display: flex;
  align-items: center; */
}

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

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

.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;
  }
}
.header-tel.fix{
  margin-left: auto;
}

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

.header-tel{
  width: 220px;
  height: 58px;
  background-color: rgba(255,255,255,0); 
}

.header-tel a{
  position: relative;
  border-radius: 4px;
  height: 100%;
  color: #fff;
  display: block;
  font-size: var(--fs-2l);
  /* font-family: "Raleway", sans-serif; */
  font-weight: 500;
}

.header-tel.change-color a{
  color: #2E3A46;
}

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

.header-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: 150px;
   transition: all 0.3s;
  }
}

@media print, screen and (max-width:640px) {
  .logo img{
    width: 120px;
    transition: all 0.3s;
   }
}
/* @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:#5c5c5c;
  /*動き*/
transition: all 0.3s;
visibility: hidden;
}

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

.header-box.panelactive .header-tel {
  border: rgba(255,255,255,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: #AE9373;
    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 .inner{
  position: relative;
  backface-visibility: hidden;
  /* display:flex; */
}

#mainvisual .inner .catch{
  text-align: left;
  max-width: 1286px;
  width: 100%;
  padding: 20px;
  margin: auto;
  position: absolute;
  display: block;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(-1px -1px 1px rgba(255,255,255,0.5)) drop-shadow(1px 1px 1px rgba(255, 255, 255, 0.5))
   /* max-width :494px;
  width: 100%; */
}

@media print, screen and (max-width:900px) {
#mainvisual .inner .catch{
  top: 70%;
  left: 50%;
  }
}


#mainvisual .inner .catch img{
  /* max-width :30px;
  width: 100%;
  margin-bottom: 8px; */
}

#mainvisual .inner .catch strong{
  /* text-transform: uppercase;
  font-family: var(--ff-en);
  font-weight: 200;
  font-size: var(--fs-5l);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 2px;
  color: #fff; */
}

#mainvisual .inner .catch span{
display: block;
margin-bottom: 30px;
}

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

/* body.top #mainvisual .inner .catch img{
  max-width :494px;
} */

@media print, screen and (max-width:640px) {
  /* body.top #mainvisual .inner .catch img{
    max-width :50px;
    margin-bottom: 30px;
  }
  body.top #mainvisual .inner .catch{
    max-width :200px;
  } */
}

/* body.top #mainvisual .inner .catch span{
  padding: 2px 4px;
  border: rgba(255,255,255,0.8) 1px solid;
} */

body.top .splide{
  margin-bottom: 80px;
}

body.top .splide__slide img {
  transition: 4s ease-out;
}
body.top .splide__slide.is-active img {
  transform: scale(1.05);
  transition-delay: 0s;
}

.splide{
  /* margin-bottom: var(--block-space-l); */
}
.splide__slide{
  width: 100%;
  height: 100vh;
}

.splide__slide img{
  object-fit: cover;
  height: 100vh;
  width: 100%;
}

body.top .splide__list .splide__slide:first-child img{
  object-position: bottom center;
}

/*----------------
top
----------------*/
/*.b-menu  ---------------------------------------------------------*/
.b-menu{
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 100px;
}

.b-menu .inner {
  max-width: 1038px;
  margin: auto;
  box-sizing: border-box;
  padding: 60px 80px;
  border: 6px solid #B7C4CF;
}

.b-menu .box{
  display: flex;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 30px;
}

.b-menu .txt{
  margin-right: 62px;
}

.b-menu .txt h2{
  margin-bottom: 10px;
}



.b-menu .box img{
  max-width: 496px;
  /* width: 100%; */
  /* max-height: 170px; */
  aspect-ratio: 496/170;
    width: 90%;
}

@media print, screen and (max-width:1000px) {
  .b-menu .txt{
  margin-right: 32px;
}
.b-menu .inner {
  padding: 40px;
}
.b-menu .box img{
 width: 100%;
}
}

.b-menu ul{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.b-menu ul li:nth-child(1){
  text-align: left;
}

.b-menu ul li a{
  text-decoration: none;
}

.b-menu ul li a[href^="tel:"]{
  color: #D97A40;
}

.b-menu ul li:not(:first-child) a{
  display: block;
  padding: 24px ;
}

.b-menu ul li:not(:first-child) a img{
  height: 62px;
  margin-top: 10px;
}

.b-menu ul li:not(:last-child){
  border-right:1px solid #B7C4CF;
}

@media print, screen and (max-width:800px) {
  .b-menu .inner {
    padding: 30px 16px;
    border: 4px solid #B7C4CF;
  }

  .b-menu .box{
    flex-direction: column;
  }

  .b-menu .txt{
    margin-right: 0px;
    margin-bottom: 30px;
    /* text-align: center; */
  }
  
  .b-menu .box img{
    max-width: 750px;
  }
  
  .b-menu ul{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(1,1fr);
  }
  .b-menu ul li:not(:last-child){
    border-right:0px solid #B7C4CF;
    border-bottom:1px solid #B7C4CF;
  }
  .b-menu ul li:first-child{
    text-align: center;
    padding-bottom: 20px;
  }
}
/*missing  ---------------------------------------------------------*/

.missing {
  position: relative;
  margin-bottom: 140px;
}

.missing::before {
  content:"";
  position: absolute;
  width: 75%;
  height:330px;
  left: 0;
  bottom: -10%;
  background-color: #F5F5F5;
  z-index: -1;
}

.missing .inner{
  max-width: 1366px;
  margin: auto;
}

.missing h2{
  max-width: 1227px;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 40px;
}

.missing h3{
  margin-bottom: 20px;
}
  
  .missing .inner .box{
  display: flex;
  justify-content:space-between;
  max-width: 1227px;
  margin-right: 0;
  margin-left: auto;
}
.missing .inner .txt-box{
  max-width: 450px;
  text-align: left;
  margin-right: 60px;
}


@media print, screen and (max-width:1260px) {
  .missing h2{
    padding: 0 30px;
  }
  .missing .inner .box{
    justify-content:flex-start;
  }

  .missing .inner .txt-box{
    margin-right: 0px;
    padding: 0 30px;
  }
}
@media print, screen and (max-width:750px) {
  .missing .inner .box{
    flex-direction: column;
    margin-right: 0;
    margin-left: auto;
  }
  .missing .inner .txt-box{
    max-width: 750px;
    padding: 0 16px 30px;
    margin-right: 0px;
  }

  .missing h2{
    padding: 0 10px;
  }
}

/*about  ---------------------------------------------------------*/

.about {
  position: relative;
    margin-bottom: 120px;
}

.about::before {
  content:"";
  position: absolute;
  width: 75%;
  height:330px;
  right: 0;
  bottom: 20%;
  background-color: #F5F5F5;
  z-index: -1;
}

.about .inner{
  max-width: 1366px;
  margin: auto;
}

.about h2{
  max-width: 1227px;
  margin-right: auto;
  margin-left: 0;
  margin-bottom: 40px;
}

.about h3{
  margin-bottom: 20px;
}
  
.about .inner .box{
  display: flex;
  justify-content:space-between;
  max-width: 1227px;
  margin-right: auto;
  margin-left: 0;
}

.about .inner .box img{
  max-width: 506px;
  width: 100%;
}
.about .inner .txt-box{
  max-width: 660px;
  text-align: left;
  padding-top: 60px;
  margin-left: 60px;
}
   .about .inner .txt-box p{
    margin-bottom: 30px;
   }

   .about .inner .txt-box p + a{
    display: block;
    text-align: center;
   }

@media print, screen and (max-width:1260px) {
  .about .inner .txt-box{
    padding: 60px 30px 0px;
    margin-left: 0px;
  }
}

@media print, screen and (max-width:750px) {
  .about .inner .box{
    flex-direction: column-reverse;
    margin-right: 0;
    margin-left: auto;
  }
  .about .inner .txt-box{
    max-width: 750px;
    padding: 0 16px 30px;
    margin-left: 0px;
  }

}

/*dentist  ---------------------------------------------------------*/

.dentist{
  text-align: left;
   margin-bottom: 100px;
}

.dentist h2{
  margin-bottom: var(--box-space-l);
}

.dentist .inner{
  position:relative;
  max-width: 1088px;
  /* background-color: #F5F5F5; */
  padding: 60px 169px;
  margin: auto;
}

  @media print, screen and (max-width:1000px) {
  .dentist .inner{
    padding: 60px 100px;
  }
}

.dentist .inner::before{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 80%;
  top: 0;
  left: 0;
  background-color: #F5F5F5;
  z-index: -1;
}

.dentist .box{
  display: flex;
  margin-bottom: 40px;
}
.dentist .img-box{
  max-width: 292px;
  margin-right: 40px;
}


.dentist h3 .name{
  display: block;
  line-height: var(--line-height-s);
}

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

.dentist .txt-box p{
  margin-bottom: 20px;
}

.dentist .box + h3 + p{
  margin-bottom: 36px;
}

@media print, screen and (max-width:750px) {
.dentist .inner{
  padding: 40px 16px;
  margin: auto;
}
.dentist .box{
  flex-direction: column;
  margin-bottom: 20px;
}

.dentist .img-box{
  max-width: 750px;
  margin-right: 0px;
  margin-bottom: 20px;
}
.dentist h3{
  margin-bottom: 20px;
}
.dentist .txt-box p{
  margin-bottom: 10px;
}
.dentist .inner::before{
  height: 90%;
}
.dentist .box + h3 + p{
  margin-bottom: 20px;
}

}

/*features  ---------------------------------------------------------*/

.features{
  margin-bottom: 120px;
}

.features h2{
  max-width: 1088px;
  margin: 0 auto 70px;
}

.line-hd{
  max-width: 1088px;
  margin: 0 auto 40px;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.line-hd::before{
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 display: block;
 width: 100%;
 height: 1px;
 background-color: #2E3A46;
}

  @media print, screen and (max-width:1100px) {
.features .inner{
padding: 0 20px;
box-sizing: border-box;
}
}

.line-hd .en{
  font-weight: 400;
}

.line-hd span:not(.en){
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 300;
}
.line-hd span:not(.en) small{
  font-size: var(--fs-3s);
  font-weight: 500;
  padding-right: 4px;
}

.line-hd span.en {
  position: relative;
  padding-top: 6px;
}

.line-hd span.en::before {
  content: "";
 position: absolute;
 top: 0;
 left: 0;
 display: block;
 width: 100%;
 height: 5px;
 background-color: #2E3A46;
}

.features ul{
  max-width: 1366px;
  margin: auto;
  list-style: none;
}

.features ul li .box{
  display: flex;
  align-items: center;
  max-width: 1227px;
  justify-content: space-between;
}

.features ul li:not(:last-child){
  margin-bottom:100px ;
}

.features ul li:nth-child(odd) .box{
  margin-left: 0;
  margin-right: auto;
}

.features ul li:nth-child(odd) .box .txt-box{
  margin-left: 30px;
}

.features ul li:nth-child(even) .box{
  margin-left: auto;
  margin-right: 0;
  flex-direction: row-reverse;
}

.features ul li:nth-child(even) .box .txt-box{
  margin-right: 30px;
}

.features ul li .txt-box{
  text-align: left;
  max-width: 544px;
}

.features ul li .img-box{
  max-width: 595px;
}

.features ul li .txt-box h3{
  font-size: var(--fs-3l);
  margin-bottom: 30px;
}

@media print, screen and (max-width:750px) {
  .features ul li:nth-child(odd) .box{
    margin-left: 0;
    margin-right: auto;
    flex-direction: column-reverse;
  }

  .features ul li:nth-child(odd) .box .txt-box{
    margin-left: 0px;
    margin-bottom: 20px;
  }

  .features ul li:nth-child(even) .box{
    margin-left: auto;
    margin-right: 0;
    flex-direction: column-reverse;
  }

  .features ul li:nth-child(even) .box .txt-box{
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .features ul li .txt-box{
    padding: 0 16px 10px;
    max-width: 750px;
  }
}

/*flow  ---------------------------------------------------------*/
#flow{
  background-color: #fafafa;
  padding-top: 100px;
  padding-bottom: 100px;
}

#flow .inner{
  max-width: 1366px;
  margin: auto;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

#flow .inner::after{
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 15%;
  width: 506px;
  height: 626px;
  background-image: url(../image/top/flow-img.png);
  background-repeat: no-repeat;
  background-size: contain;
}

  @media print, screen and (max-width:1130px) {
#flow .inner::after{
  width: 60%;
  height: 60%;
}
}

  @media print, screen and (max-width:1000px) {
#flow .inner::after{
  width: 40%;
  height: 40%;
}
}

#flow h2{
  margin-right: 72px;
}

#flow .box{
  display: flex;
  justify-content: center;
}

#flow ul img{
  height: 28px;
  margin-left: 16px;
}

#flow ul li{
  display: flex;
  align-items: center;
  list-style: none;
  font-size: var(--fs-m);
}

#flow ul li:not(:last-child){
  margin-bottom: 60px;
}

#flow ul li p{
  width: 100%;
  margin-left: 30px;
  white-space: nowrap;
}

#flow ul li span{
  position: relative;
  color: #D97A40;
  font-size: var(--fs-m);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  font-family: "Merriweather Sans", sans-serif;
  width: 80px;
  height: 80px;
  padding: 30px;
  filter: drop-shadow(-10px -10px 25px rgba(255,255,255,0.2)) drop-shadow(10px 10px 25px rgba(0,0,0,0.2))
}

#flow ul li span::before{
  position: absolute;
  z-index: -1;
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

#flow ul li:not(:last-child) span::after{
  position: absolute;
  bottom: -45px;
  left: 40px;
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background-color: #2E3A46;
}

@media print, screen and (max-width:750px) {
#flow h2{
  margin-right: 0px;
  margin-bottom: 30px;
}

#flow ul img{
  height: 28px;
  margin-left: 5px;
}

#flow .box{
  display: flex;
  
  justify-content: center;
  flex-direction: column;
}

#flow ul li:not(:last-child){
  margin-bottom: 40px;
}
#flow ul li{
  text-align: left;
}

#flow ul li p{
  margin-left: 20px;
}
#flow ul li span{
  width: 60px;
  height: 60px;
  padding: 30px;
}
#flow ul li span::before{
  width: 60px;
  height: 60px;
}
#flow ul li:not(:last-child) span::after{
  bottom: -30px;
  left: 30px;
  height: 20px;
}

#flow .inner::after{
  display: none;
}
}

/*qa  ---------------------------------------------------------*/

.qa{
  background-image: url(../image/top/qa-back.jpg);
  background-size: cover;
  background-repeat: none;
  padding-top: 100px;
  padding-bottom: 100px;
}

.qa .inner{
  display: flex;
  justify-content: center;
  max-width: 1366px;
  margin: auto;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}

.qa h2{
  margin-right: 72px;
  filter: drop-shadow(2px 2px 2px rgba(255,255,255,0.2)) drop-shadow(2px 2px 2px rgba(255,255,255,0.2));
}

.qa-6 {
    width: 750px;
    /* width: 100%; */
    text-align: left;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff;
    font-size: var(--fs-m);
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    font-weight: 600;
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    /* font-size: 1.3em; */
}

.qa-6 summary::before {
    color: #506D84;
    content: "Q";
    font-family: var(--ff-en);
    font-size: var(--fs-l);
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #506D84;
    border-right: 3px solid #506D84;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #D97A40;
    line-height: 1.4;
    content: "A";
    font-family: var(--ff-en);
    font-size: var(--fs-l);
}

@media print, screen and (max-width:970px) {
  .qa{
    background-size: 100% 100%;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .qa h2{
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .qa .inner{
    flex-direction: column;
  }
  .qa-6 {
    max-width: 970px;
    width: 100%;
  }
}

/*fees  ---------------------------------------------------------*/
#fees{
  background-color: #F5F5F5;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 100px;
}

#fees h2{
  margin-bottom: var(--box-space-l);
}

#fees .inner{
  max-width: 1088px;
  margin: auto;
  position: relative;
  z-index: 0;
  padding: 60px 94px;
}

#fees .inner::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  filter: drop-shadow(-10px -10px 25px rgba(255,255,255,0.2)) drop-shadow(10px 10px 25px rgba(0,0,0,0.2));
}

#fees .inner dl{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 30px;
}

#fees .inner dl dt{
  text-align: left;
  width: 50%;
  font-size: var(--fs-m);
  border-bottom: 1px solid #B7C4CF;
  padding: 20px;
  font-weight: 500;
  /* font-family: "Noto Sans JP", sans-serif; */
}

#fees .inner dl dd{
  width: 50%;
  text-align: right;
  border-bottom: 1px solid #B7C4CF;
  padding: 20px;
}

#fees .inner dd .price{
/* font-family: "Merriweather Sans", sans-serif; */
/* font-weight: 300; */
font-size: var(--fs-m);
}

#fees .inner dd .price::after{
/* font-family: "Noto Sans JP", sans-serif; */
 content: " (税込)";
 font-size: var(--fs-3s);
 font-weight: 400;
}

#fees .inner > p{
  text-align: left;
  padding: 0 20px;
}


@media print, screen and (max-width:750px) {
#fees{
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

#fees h2{
  margin-bottom: 30px;
}

#fees .inner{
  padding: 40px 20px;
}

#fees .inner dl{
  /* display: flex; */
  align-items: flex-end;
  /* flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 30px; */
}

#fees .inner dl dt{

  font-size: var(--fs-s);
  padding: 20px 10px;
}

#fees .inner dl dd{
  font-size: var(--fs-s);
  padding: 20px 10px;
}

}
/*case  ---------------------------------------------------------*/
#case {
  margin-bottom: 100px;
}

#case h2{
  margin-bottom: var(--box-space-l);
}
#case .inner{
  padding-left: 20px;
  padding-right: 20px;
}

#case .inner ul{
  max-width: 990px;
  margin: auto;

}

#case .inner ul li h3{
margin-bottom: 50px;
}

#case .inner ul li h3  span{
display: block;
font-size: var(--fs-3s);
color:#B7C4CF;
position: relative;
}

#case .inner ul li h3  span::after{
position: absolute;
content: "";
width: 20px;
height: 1px;
background-color: #B7C4CF;
bottom: -10px;
left: 0;
}

#case .inner ul li{
  list-style: none;
  display: flex;
  align-items: flex-start;
}

#case .inner ul li .img-box{
  max-width: 360px;
  width: 100%;
  margin-right: 60px;

}

#case .inner ul li .txt-box{
  text-align: left;
  max-width: 570px;
}

#case .inner ul li dl{
  display: flex;
  flex-wrap: wrap;
      position: relative;
}

#case .inner ul li .txt-box dl::after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: calc(100% + 40px);
  width: 1px;
  background-color: #B7C4CF;
  left:142px;
}

#case .inner ul li dt{
  width: 142px;
  margin-right: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

#case .inner ul li dd{
  margin-bottom: 15px;
  width: calc( 100% - 172px);
}

@media print, screen and (max-width:980px) {
#case h2{
  margin-bottom: var(--block-space-l);
}

#case .inner ul li{
  flex-direction: column-reverse;
  align-items: center;
}

#case .inner ul li .txt-box{
  max-width: 700px;
}

#case .inner ul li .txt-box dl::after{
  height: calc(100% + 40px);
  left:112px;
}

#case .inner ul li dt{
  width: 112px;
}

#case .inner ul li dd{
  width: calc( 100% - 142px);
}

#case .inner ul li .img-box{
 max-width: 750px;
 margin-top: 30px;
margin-right: 0px;

}

}


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

.outline{
  /* background-color: #fff; */
  /* padding-bottom: 60px; */
  overflow: hidden;
}
.outline h2{
  margin-bottom: var(--box-space-l);
}

.outline .inner{
  padding-right: var(--box-space-m);
  padding-left: var(--box-space-m);
    max-width: 990px;
  margin: auto;
}

.outline .inner .box{
  /* display: grid;
  grid-template-columns: repeat(2,1fr); */
  display: flex;
  gap: 30px;
  text-align: left;
  margin-bottom: 50px;
}

.outline .inner .box img{
  max-width: 540px;
}

/* .outline .gmap{
  width: 100%;
  ove
} */
.outline .gmap iframe{
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 520px;
  display: block;
}


@media print, screen and (max-width:750px) {
.outline .inner .box{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 20px;
  text-align: left;
  margin-bottom: 50px;
}


}
/* .outline h2{
  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;
  aspect-ratio: 740/460;
  background-size: cover;
  overflow: hidden;
}

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

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

.outline .img-box .img-box-item.exterior img{
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.2);
}
  
@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;
      aspect-ratio: 2/1;
    height:auto ;
  }

  .outline .img-box .img-box-item.exterior img{
    object-position: left;
  }
}


.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%;
  font-size: 18px;
}



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

.outline .txt-box .txt-box-item .tel-button{
  margin-bottom: 20px;
}

.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,
  .outline .txt-box .txt-box-item .web-button{
    margin-left: auto;
    max-width: 900px;
  }
}

.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{
line-height: 2;
}


.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;
 white-space: nowrap;
}
.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 (max-width: 500px) {

.th-week, .th-am, .th-pm {
  padding-left: 0;
  padding-right: 0;
  font-size: var(--fs-s);
}
}
@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; */
  }
 
}

/*----------------
  foot-gallery
----------------*/

#foot-gallery-col {
	width: 100%;
	padding-top: 0px;
	padding-bottom:40px;
	margin-bottom:80px ;
  }

  #footSlide {
    overflow: hidden;
  }
  
  #footSlide li{
	margin: 0 20px;
  }
  #footSlide li img{
    height: 400px;
  }
  #footSlide{
	padding: 0;
  } 
  
  @media print,screen and (max-width:640px) {
	#foot-gallery-col {
		/* padding-top: 40px;
		padding-bottom:40px; */
	}
	
	#footSlide li{
		margin: 0 10px;
	} 
  }

/*----------------
  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
----------------*/
footer{
  background-color:#EAEAEA;
  padding-top: 80px;
}

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

footer nav{
  margin-bottom: 40px;
}

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

  .ft-logo{
    width: 233px;
    /* 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: 68px;
  height: 68px;
  position: fixed;
  right: 20px;
  bottom: 0;
  /* background: #fff;
  border: #AE9373 2px solid; */
  background: #909090;
  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: #506D84;
  transition: .3s;
}
#page_top a{
  position: relative;
  z-index: 1;
  display: block;
  width: 68px;
  height: 68px;
  text-decoration: none;
  background: url(../image/common/n_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{
  padding: 5px  var(--box-space-s);
  /* background-color: #D97A40; */
  background-color: #2E3A46;
  color: #fff;
}










