@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: #333333;
  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 */

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

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

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

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  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;
  }
}


/*------------------------------------------------------------------------------------------------------------------
　img align for wordpress
-------------------------------------------------------------------------------------------------------------------*/
.aligncenter {
  display: block;
  margin: 0 auto;
  max-width:100%;
}
.alignright { float: right; margin-left:30px; max-width:400px !important; }
.alignleft { float: left; margin-right:30px; max-width:400px !important; }

.aligncenter img,
.alignright img,
.alignleft img {
  width: 100%;
	height:auto;
}

@media (max-width: 768px) {
  .alignright,
  .alignleft {
    float: none;
    margin: 0 auto;
    max-width:100%;
  }
}



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

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

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

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

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

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


.link-button.tel-button a,
.link-button.web-button a{
  border-radius: 8px;
}

.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-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;
  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;
   }
}
/* @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:#DEEBF7;
  /*動き*/
  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: #164070;
    width: 100%;
  }

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

  }

  .menu-trigger.change-color span{
    background-color: #5CA6E7;
    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
----------------*/
body.top #mainvisual .inner{
  position: relative;
  backface-visibility: hidden
}

body.top #mainvisual .inner .catch{
  color: #164070;
  position: absolute;
  text-align: left;
  top: 50%;
   display: block;
 left: 50%;
  transform: translate(-50%, 0%);
  max-width :1092px;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
}


body.top #mainvisual .inner .catch span{
  color: #164070;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  font-family: var(--ff-en);
  letter-spacing: 1px;
}

body.top #mainvisual .inner .catch span small{
  font-size: 12px;
  font-family: 'Zen Kaku Gothic New','Helvetica Neue','Arial','Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
}
body.top #mainvisual .inner .catch span small:last-child{
  font-size: 15px;
}

@media print, screen and (max-width:640px) {
  body.top #mainvisual .inner .catch{
    max-width :218px;
  }
}

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

body.top .splide{
  margin-bottom: 0;
}

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

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

body:not(.top) #mainvisual{
  margin-bottom: 100px;
}

@media print, screen and (max-width:750px) {
  body:not(.top) #mainvisual{
    margin-bottom: 60px;
  }
}

body:not(.top)  #mainvisual .inner .catch{
  color: #164070;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -35%);
  max-width :1092px;
  width: 100%;
  font-size: var(--fs-5l);
  font-weight: 500;
}


body:not(.top) #mainvisual .inner .catch span{
  color: #164070;
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  font-family: var(--ff-en);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  letter-spacing: .1em;
}


/*----------------
scroll_down
----------------*/

.scroll_down{
  position:absolute;
  bottom: 60px;
  left: 50%;

  color: #fff;
}

.scroll_down a{
  position: absolute;
  /* left: 10px; */
  transform: translateX(-50%);
  bottom: 45px;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  /* font-family: 'Josefin Sans', sans-serif; */
  letter-spacing: .1em;
  /* writing-mode: vertical-lr; */
  text-decoration: none;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

.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: #fff;
  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-news .link-button{
  position: relative;
  z-index: 2;
}

.top-news .view-list{
  padding: 20px 0 0;
  max-width: 1376px;
  margin: auto;
}

/*greeting*/

.greeting{
  position: relative;
  margin-bottom: 110px;
}

@media print, screen and (max-width:1000px) {
  .greeting{
    margin-bottom: var(--block-space-2l);
  }
}

@media print, screen and (max-width:640px) {
  .greeting{
    margin-bottom: var(--block-space-l);
  }
}

.greeting::before{
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 40px);
  bottom: 0;
  background-color: #DEEBF7;
  z-index: 0;
}

.greeting .inner{
  position: relative;
  z-index: 1;
  max-width: 1172px;
  box-sizing: border-box;
  /* padding-left: 40px;
  padding-right: 40px; */
  margin: auto;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
}

@media print, screen and (max-width:640px) {
  .greeting .inner{
    padding-bottom: var(--box-space-m);
  }
}

.greeting .inner .img-box{
  margin: 0 40px;
  transform: .3s;
}

.greeting .inner .img-box img{
  transform: .3s;
}

.greeting .inner .txt-box{
  text-align: left;
  color: #164070;
  margin:  0 40px ;
  max-width: 560px;
  /* padding: 0 40px 30px; */
  padding-bottom: 30px;
}

@media print, screen and (max-width:1200px) {
  .greeting .inner .txt-box{
    text-align: left;
    margin:  0 40px 0 0;
    padding-left: 40px;
  }
  .greeting .inner .img-box{
    margin: 0;
  }
}

@media print, screen and (max-width:1100px) {
  .greeting .inner .txt-box{
    max-width: 420px;
  }
}

@media print, screen and (max-width:900px) {
  .greeting .inner{
    margin: auto;
    flex-direction:column;
    align-items: center;
    justify-content: center;
  }

  .greeting .inner .txt-box{
    max-width: 640px;
    margin:  0;
    padding: 40px 20px;
  }
}

.greeting .inner .txt-box h2 {
  font-size: var(--fs-l);
  margin-bottom: 24px;
}

@media print, screen and (max-width:900px) {
  .greeting .inner .txt-box h2 {
    font-size: var(--fs-3l);
  }
}

@media print, screen and (max-width:640px) {
  .greeting .inner .txt-box h2 {
    font-size: var(--fs-2l);
  }
}

.greeting .inner .txt-box h2 span{
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 16px;
}

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

.scroll_horizontal{
  position: relative;
  /* display: inline-block; */
  width: 125px;
  margin-left: auto;
  margin-right: 0;
}

.scroll_horizontal a{
  color: #164070;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  padding: 4px 5px;
  display: block;
  padding-right: 41px;
}

.scroll_horizontal.view-list{
  margin-left: auto;
  margin-right: auto;
  border:1px solid #164070;
  transition: .3s;
}

.scroll_horizontal:before {
  content: "";
  position: absolute;
  right:36px;
  top: 43%;
  /* transform: translateY(-50%); */
  bottom: 0;
  /* left: -2px; */
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background:#164070;
}
.scroll_horizontal.view-list:before {
  content: "";
  position: absolute;
  right:39px;
  top: 43%;
  /* transform: translateY(-50%); */
  bottom: 0;
  /* left: -2px; */
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background:#164070;
}
.scroll_horizontal a:hover::before,
.scroll_horizontal:hover::before{
  animation:
    circlemoveright 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}
.scroll_horizontal:hover,
.scroll_horizontal a:hover::before,
.scroll_horizontal:hover::before,
.scroll_horizontal a:hover::after,
.scroll_horizontal:hover::after,
.scroll_horizontal a:hover{
  color: #5DA9EA;
}
.scroll_horizontal a:hover::before,
.scroll_horizontal:hover::before,
.scroll_horizontal a:hover::after,
.scroll_horizontal:hover::after{
  background:#5DA9EA;
}


@keyframes circlemoveright{
  0%{right:36px;}
  100%{right:0px;}
}

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

.scroll_horizontal.view-list a:hover::before,
.scroll_horizontal.view-list:hover::before{
  animation:
    circlemoveright2 1.6s ease-in-out infinite,
    cirlemovehide2 1.6s ease-out infinite;
}

@keyframes circlemoveright2{
  0%{right:39px;}
  100%{right:10px;}
}

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

.scroll_horizontal:after{
  content:"";
  position: absolute;
  top: 50%;
  right:0;
  width:36px;
  height: 1px;
  background:#164070;
}

.scroll_horizontal.view-list:after{
  margin-right: 10px;
}

.scroll_horizontal.view-list:hover{
  border:1px solid #5DA9EA;
}



/*features*/
.features h2{
  margin-bottom: var(--box-space-l);
}

.features .inner{
  margin: auto;
  max-width: 1326px;
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 100px;
}

.feature-list{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 45px;
}
@media print, screen and (max-width:1000px) {
  .feature-list{
    gap: 20px;
  }
}

@media print, screen and (max-width:860px) {
  .feature-list{
    grid-template-columns: repeat(1,1fr);
    gap: 45px;
    max-width: 386px;
    margin: auto;
  }
}

.feature-list li{
  position: relative;
  max-width: 386px;
}

.feature_imgbox{
  position: relative;
  z-index: 0;
  /* max-width: 356px; */
  margin-right:0 ;
  margin-left:auto ;
  padding-left: 29px;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
}

.feature_imgbox img{
  aspect-ratio: 1/1;
  /* width: calc(100% - 28px); 
  object-fit: contain;
  object-position: right bottom;*/
}

.feature-list p{
  padding:8px 20px 8px 48px; 
  text-align: left;
  font-size: var(--fs-l);
  font-weight: 500;
  border-top: 1px solid #164070;
  margin-top: -37px;
}

@media print, screen and (max-width:1000px) {
  .feature-list p{
    margin-top: -33px;
  }
}
.feature-list .en.num{
  top: calc(-50% + 22px);
  left: calc(-50% + 12px); 
  position: relative;
  width: 100%;
  font-weight: 200;
  font-size: 20px;
  display: block;
  border-top: 1px solid #164070;
  transform: rotate(90deg)/*translateX(-50%)*/;
  text-align: left;
}


/*treatment*/
.treatment h2{
  margin-bottom: var(--box-space-l);
}
.treatment .inner{
  margin: auto;
  max-width: 1326px;
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 80px;
}
@media print, screen and (max-width:640px) {
  .treatment .inner{
    padding-left: 20px;
    padding-right: 20px;
  }
}

.treatment-box{
  list-style: none;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:8px 12px;
}

@media print, screen and (max-width:1080px) {
  .treatment-box{
    grid-template-columns: repeat(2,1fr);
    gap:14px 10px;
  }
}

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

.treatment-box li{
  text-align: left;
}

.treatment-box li a{
  border: 1px solid #DEEBF7;
  padding: 36px 30px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #3B3B3B;
}

@media print, screen and (max-width:640px) {
  .treatment-box li a{
    padding: 24px 20px;
  }
}

.treatment-box li a:hover:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid #164070;
  border-width: 1px 0 0 1px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.treatment-box li a:hover::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  right: 0px;
  border-bottom: 1px solid #164070;
  border-width: 0 1px 1px 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.treatment-box li a:before {
  content: "";
  height: 100%;
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid #164070;
  border-width: 1px 0 0 1px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.treatment-box li a:after {
  content: "";
  height: 100%;
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 1px solid #164070;
  border-width: 0 1px 1px 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.treatment-box li a .arrow{
  display: block;
  position: relative;
  margin-left: auto;
  margin-right:0 ;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  width: 10px;
  height: 14px;
  background-color: #DEEBF7;
  transition: .3s;
}

.treatment-box li a:hover .arrow{
  margin-right:-10px ;
  background-color: #164070;
}

.treatment-box li a .txt-box{
  font-size: var(--fs-m);
  margin-right: 10px;
}

.treatment-box li a .img-box{
  display: block;
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

@media print, screen and (max-width:640px) {
  .treatment-box li a .txt-box{
    margin-right: 5px;
  }
  
  .treatment-box li a .img-box{
    width: 36px;
    height: 36px;
    margin-right: 15px;
  }
}

.subpage .treatment-box{
  margin-top: 40px;
}
@media print, screen and (max-width:960px) {
.subpage .treatment .inner > p{
  text-align: left;
}

}


/*top-blog*/
.top-blog h2{
  margin-bottom: var(--box-space-l);
}
.top-blog .inner{
  margin: auto;
  max-width: 1326px;
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 100px;
}
@media print, screen and (max-width:640px) {
  .top-blog .inner{
    padding-left: 20px;
    padding-right: 20px;
  }
}


/*----------------
our_thoughts
----------------*/

.philosophy {
  text-align: left;
  color: #164070;
  margin-bottom: 120px;
}

@media print, screen and (max-width:640px) {
  .philosophy {
    margin-bottom: var(--block-space-l);
  }
}

.philosophy .inner{
  max-width: 1180px;
  margin:auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

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

.philosophy .inner h2 {
  font-size: var(--fs-4l);
  margin-right: 70px;
  width: 35%;
  white-space: nowrap;
}

.philosophy .inner h2 span{
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 30px;
}

.philosophy .inner .box{
  padding-top: 68px;
 width: 75%;
}

@media print, screen and (max-width:750px) {
  .philosophy .inner h2 {
    margin-right: 0px;
    width: 100%;
  }

  .philosophy .inner .box{
    padding-top: 40px;
   width: 100%;
  }
}

.philosophy .inner .box p:nth-child(1){
  padding-bottom: var(--box-space-m);
}


.philosophy .inner .box h3{
  padding-bottom: var(--box-space-m);
  font-size: var(--fs-m);
}
/*career*/
.career{
  position: relative;
  color: #164070;
  margin-bottom: 150px;
}
@media print, screen and (max-width:750px) {
  .career{
    margin-bottom: var(--block-space-l);
  }
}
.career::before{
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  width: 90%;
  height: 84%;
  background-color: #DEEBF7;
  z-index: -1;
}

.career .inner{
  max-width: 1180px;
  margin:auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media print, screen and (max-width:900px) {
  .career .inner{
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
  }
  .career::before{
    width: 70%;
    height: 84%;
  }
}

.career .inner .img-box{
  margin-right: 100px;
}

.career .inner .txt-box{
  text-align: left;
  margin-top: 150px;
  max-width: 640px;
  padding-bottom: 80px;
}

@media print, screen and (max-width:900px) {
  .career .inner .txt-box{
    margin-top: 0px;
    padding-bottom: 80px;
  }
}

.career .inner .txt-box > p{
  margin-bottom: 30px;
}

@media print, screen and (max-width:1200px) {
  .career .inner .img-box{
    margin-right: 40px;
  }
}

@media print, screen and (max-width:900px) {
  .career .inner .img-box{
    margin-right: 0px;
  }
}

.career .inner .img-box .name{
  font-size: var(--fs-s);
  letter-spacing: .1em;
  padding: 50px 10px 30px;
}

@media print, screen and (max-width:900px) {
  .career .inner .img-box .name{
    padding: 30px 10px;
  }
}

.career .inner .img-box .name span{
  font-size: 22px;
  letter-spacing: 0;
}

.career .inner .img-box .name span small{
  font-size: 16px;
}

.career-list-box{
  display: flex;
  justify-content: space-between;
}

.career-list:not(.career-list.biography){
  padding-left: 1.25em;
}

.career-list-box .career-list{
  margin-right: 20px;
}

@media print, screen and (max-width:640px) {
  .career-list-box .career-list{
    /* font-size: var(--fs-s); */
  }

  .career-list-box{
    flex-direction: column;
    gap: 20px;
  }
}

.career-list-box h3{
  font-size: var(--fs-m);
  margin-bottom: 5px;
}

.career-list-box .career-list.biography{
  list-style: none;
}

.career-list-box .career-list.biography li{
  display: flex;
  align-items: baseline;
  /* vertical-align: bottom; */
}

.career-list-box .career-list.biography li .date{
  margin-right: 8px;
  font-size: var(--fs-s);
}

/*----------------
treatment
----------------*/
.treatment-content .inner{
  margin: auto;
  max-width: 1326px;
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 80px;
}

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

.treatment-content-list{
  list-style: none;
  text-align: left;
}


.treatment-content-list li:not(:last-child){
  margin-bottom: var(--block-space-m);
}

.treatment-content-list li .box{
  display: flex;
  gap: 20px 30px;
}

@media print, screen and (max-width:800px) {
  .treatment-content-list li .box{
    flex-direction: column;
  }
}

/* .treatment-content-list li:nth-child(even) .box{
  flex-direction: row-reverse;
}  */

.treatment-content-list li .box .txt-box{
  width: 65%;
}

.treatment-content-list li .box .img-box{
  width: 35%;
}

@media print, screen and (max-width:800px) {
  .treatment-content-list li .box .txt-box{
    width: 100%;
  }
  
  .treatment-content-list li .box .img-box{
    width: 100%;
  }
}


.treatment-content-list li .box .txt-box h2{
  position: relative;
  display: flex;
  align-items: center;
  color: #164070;
  font-size: var(--fs-m);
  /* border: 1px solid #164070; */
  padding: 1em;
  margin-bottom: 30px;
  background-color: #DEEBF7;
  font-weight: 500;
}

.treatment-content-list li .box .txt-box h2:after {
  position: absolute;
  bottom: -9px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #DEEBF7 transparent transparent transparent;
}

.treatment-content-list li .box .txt-box h2 img{
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.treatment-content-list li .box .txt-box h3{
  color: #5DA9EA;
  margin-bottom: 8px;
}

/*----------------
hosp_intro
----------------*/

.hosp_intro-content{
  /* background-color: #EAEAEA; */
}
.hosp_intro-content .inner{
  padding: 0px 40px 80px;
}

.hosp_intro-content-list{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 60px 30px;
  margin-top: 40px;
}

@media print, screen and (max-width:1160px) {
  .hosp_intro-content-list{
    grid-template-columns: repeat(3,1fr);
    gap: 60px 30px;
  }
 }
@media print, screen and (max-width:960px) {
  .hosp_intro-content .inner{
    padding: 0px 30px 80px;
  }
  .hosp_intro-content-list{
    grid-template-columns: repeat(2,1fr);
    gap: 50px 30px;
  }

  .hosp_intro-content .inner > p {
    text-align: left;
  }
 }
@media print, screen and (max-width:560px) {
  .hosp_intro-content .inner{
    padding: 0px 20px 60px;
  }
  .hosp_intro-content-list{
    grid-template-columns: repeat(1,1fr);
    gap: 40px 30px;
  }

 }

.hosp_intro-content-list li{
  text-align: left;
  background-color: #fff;
  box-shadow: 10px 10px 20px #f1faff, -10px -10px 20px #fff;
  overflow: hidden;
}

.hosp_intro-content-list li img{
  filter: brightness(1.1);
}

.hosp_intro-content-list p{
  position: relative;
  padding: 20px;
}

/* .hosp_intro-content-list li p::before{
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 60px;
  background-image: url(../image/common/logomark.svg);
  background-size: cover;
  top: -58px;
  left: calc(100% - 50px);
} */

.hosp_intro-content-list li p span{
  display: block;
  font-size: var(--fs-m);
  font-weight: 500;
  margin-bottom: 20px;
  color: #164070;
  border-bottom: 1px solid #DEEBF7;
  position: relative;
  padding-bottom: 5px;
}

.hosp_intro-content-list li p span::before {
  position: absolute;
  bottom: -12px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: #DEEBF7 transparent transparent transparent;
}

.hosp_intro-content-list li p span::after {
  position: absolute;
  bottom: -10px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}


/*----------------
blog
----------------*/
section.blog{
  margin-bottom: var(--block-space-l);
}


.blog .inner{
  display: flex;
  align-items: flex-start;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
  box-sizing: border-box;
}

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

.blog .box{
  max-width: 750px;
  width: 100%;
  box-sizing: border-box;
}

@media print, screen and (max-width:750px) {
  .blog .box{
    margin-bottom: var(--block-space-l);
  }
 }

.blog .box article{
  margin-bottom: var(--block-space-3s);
}

/*blog 一覧*/

.blog-list{
  list-style: none;
  text-align: left;
  margin-bottom: var(--box-space-m);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px 40px ;
}

@media print, screen and (max-width:1000px) {
  .blog-list{
    grid-template-columns: repeat(2,1fr);
  }
 }

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

.blog-list li{
  border-bottom: 1px solid #DEEBF7;
}

.blog-list li a{
  text-decoration: none;
  display: block;
}

.blog-list li a .txt-box{
  padding:12px 10px 16px ;
}

.blog-list li a .img-box{
 
}

.blog-list li a .img-box img{
  height: 100%;
  max-height: 179px;
  object-fit: cover;
}

.blog-list.top-blog-list li a .img-box img{
 height: 100%;
 max-height: 311px;
 object-fit: cover;
}

.blog-list li .list-page-ttl{
  color: #164070;
  font-size: var(--fs-m);
  font-weight: 500;
}

.blog-list li .list-date{
  color: #6A6A6A;
  margin-right: 15px;
}


/*----------------
news
----------------*/
section.news{
  margin-bottom: var(--block-space-l);
}

.news .inner{
  display: flex;
  align-items: flex-start;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  margin: auto;
  box-sizing: border-box;
}

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

.news .box{
  max-width: 750px;
  width: 100%;
  box-sizing: border-box;
}

@media print, screen and (max-width:750px) {
  .news .box{
    margin-bottom: var(--block-space-l);
  }
 }

.news .box article{
  margin-bottom: var(--block-space-3s);
}

/*news一覧*/
.news-list{
  list-style: none;
  text-align: left;
  margin-bottom: var(--box-space-m);
}

.news-list li:not(:last-child){
  border-bottom: 1px solid #EAEAEA;
}

.news-list li a{
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px 12px;
}

.news-list li .list-page-ttl{
  color: #164070;
  font-size: var(--fs-m);
  font-weight: 500;
}

.news-list li .list-date{
  color: #6A6A6A;
  margin-right: 15px;
}

.news-list li a{
  display: flex;
  align-items: center;
}

.news-list li a:hover .list-page-ttl,
.news-list li a:hover .list-date{
  color: #01BAEF;
}


.news-list li a:hover .arrow{
  margin-right: 10px;
}

.news-list li a .arrow{
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: 20px;
  transition: .3s;
  /* padding-left: 20px; */
}
.news-list li a .arrow:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #6A6A6A;
  border-right: solid 2px #6A6A6A;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.news-list li a:hover .arrow:before{
  border-top: solid 2px #01BAEF;
  border-right: solid 2px #01BAEF;
}



.box article .page-ttl{
  font-size: var(--fs-l);
  color: #164070;
  text-align: left;
  border-bottom: 1px solid #EAEAEA;
  line-height: var(--line-height-s);
  padding: 16px 10px;
  margin-bottom: 40px;
}

.page-ttl .page-date{
  display: block;
  color: #6A6A6A;
  font-size: var(--fs-3s);
}


.sidebar{
  margin-bottom: var(--block-space-l);
  max-width: 300px;
  width: 100%;
  margin-left: 50px;
  transition: .3s;
}

@media print, screen and (max-width:1000px) {
  .sidebar{
    max-width: 250px;
    margin-left: 30px;
  }
 }

@media print, screen and (max-width:750px) {
  .sidebar{
    margin-bottom: var(--block-space-l);
    max-width: 750px;
    width: 100%;
    margin-left: 0px;
  }
 }

.sidebar ul{
  list-style: none;
  text-align: left;
}

.sidebar ul a{
  text-decoration: none;
  line-height: var(--line-height-s);
  color: #164070;
  display: block;
}

.sidebar ul a:hover{
  color: #01BAEF;
}

.sidebar .side-box:not(:last-child){
  margin-bottom: 20px;
}

.sidebar select {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.sidebar .sidebar-ttl{
  color: #164070;
  font-weight: 500;
  font-size: var(--fs-m);
  background-color: #DEEBF7;
  padding: 24px 10px;
  margin-bottom: 16px;
}

.latest li{
  padding:5px 10px 15px;
}

.latest li:not(:last-child){
  margin-bottom:18px ;
  border-bottom: 1px solid #EAEAEA;
}

.latest .latest-date{
  display: block;
  color: #6A6A6A;
}

.category li{
border: 1px solid #EAEAEA;
}

.category li a{
  padding: 14px 10px;
  text-align: center;
  position: relative;
}

.category li a::after{
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  background: #DEEBF7;
  height: 10px;
  width: 8px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: .3s;
}

.category li a:hover::after{
  right: 10px;
}

.page-number {
}

.page-number ul{
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: center;
}

.page-number ul li:not(:last-child){
margin-right: 5px;
}

.page-number ul a{
text-decoration: none;
color: #164070;
}

.page-number ul li.active{
margin: 5px;

}

.page-number ul li.active a{
  color: #fff;
  padding: 5px 10px;
  background-color: #164070;
  border-radius: 4px;
}


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

/* greeting */
/* .greeting{

  padding-left:20px;
  padding-right:20px;
  padding-top: 40px;
  padding-bottom: 330px;
  margin-bottom: 80px;
  box-sizing: border-box;
    overflow: hidden;
}

.greeting::before{

}

.greeting .inner{
  max-width: 1280px;
  margin: auto;
  position: relative;
}

 .greeting .txt-box{
  text-align: left;
  text-shadow: 1px 2px 2px #cecece;
  position: relative;
  width: calc(100% - 60px);
  max-width: 940px;
  margin: 0 auto;
  z-index: 3;
  padding-top: 160px;
}

.greeting .txt-box h2{
  text-align: left;
  font-size: var(--fs-5l);
  font-weight: 500;
  color:#25A5FF;
  margin-bottom: 90px;
  line-height: var(--line-height-m);
}
.greeting .txt-box h2 + p{
  max-width: 500px;
  font-weight: 500;
}

.greeting .illust01 {
  transition: 1.5s;
  position: absolute;
  width: 166px;
  top: 60px;
  left: calc(50% + 400px);
  z-index: 2;
}
.greeting .illust02 {
  transition: 1.5s;
  position: absolute;
  width: 470px;
  top: 760px;
  left: calc(50% + 160px);
  z-index: 1;
}

.greeting .illust03 {
  transition: 1.5s;
  position: absolute;
  width: 345px;
  bottom: -300px;
  right: calc(50% + 180px);
  z-index: 1;
}

.greeting .img01 {
  transition: 1.5s;
  position: absolute;
  width: 940px;
  top: 100px;
  left: calc(50% - 300px);
  z-index: 1;
}

.greeting .img02 {
  transition: 1.5s;
  position: absolute;
  width: 400px;
  top: 780px;
  left: calc(50% - 640px);
  z-index: 1;
}

.greeting .img03 {
  transition: 1.5s;
  position: absolute;
  width: 650px;
  top: 960px;
  left: calc(50% - 10px);
  z-index: 1;
}

.greeting .img02 img,
.greeting .img03 img{
  filter: brightness(130%) opacity(0.5);
}

@media screen and (max-width: 1050px) {
  .greeting .illust01 {
  left: auto;
  right: 0;
  }

  .greeting .illust02 {
  left: auto;
  right: 30px;
  }

  .greeting .illust03 {
    width: 285px;
  left: 40px;
  }

  .greeting .img01 {
  left: auto;
  right: -100px;
  }

  .greeting .img02 {
  left: -110px;
  }

  .greeting .img03 {
  left: auto;
  width: 630px;
  right: -200px;
  }

  .greeting {
    padding-bottom: 460px;
  }
}

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

  .greeting{
  padding: 0 0 280px;
  margin-top: 20px;
  margin-bottom: 80px;
  }

  .greeting h2{
  font-size: var(--fs-4l)!important;
  }

  .greeting .illust01 {
  width: 85px;
  top: 70px;
  right: 40px;
  }

  .greeting .illust02 {
  width: 280px;
  top: 440px;
  right: 10px;
  filter: opacity(0.8);
  }
  .greeting .illust03 {
  width: 242px;
  left: 10px;
  bottom: -260px;
  }
  .greeting .img01 {
  width: 360px;
  top: 110px;
  right: -30px;
  }

  .greeting .img02 {
  width: 240px;
  left: -40px;
  top: 570px;
  }
  .greeting .img03 {
  width: 400px;
    right: -40px;
    top: auto;
    bottom: -240px;
  }

  .greeting .txt-box{
  padding-top: 60px;
  }
}


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

  .greeting .illust02 {
  width: 150px;
  }
  .greeting .illust03 {
  width: 142px;
  }
  .greeting .img03 {
  width: 360px;
  }

.greeting .img01 img{
  filter: opacity(0.7);
}
} */

 /* 
 .greeting .img-box img{
  aspect-ratio: 1;
 } */

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

 }

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

 }


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

 }

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

 }
 /* career */
 /* .career{
  padding-left:20px;
  padding-right:20px;
  margin-bottom: 130px;
 }

 .career .inner{
  max-width: 1280px;
  margin: auto;
 }
 
 .career .box{
  display: flex;
  justify-content: space-between;
 }

 .career .content-box{
  border: 20px solid #EAF8FF;
  border-radius: 40px;
  text-align: left;
  padding: 40px 50px;
  max-width: 620px;
  width: 100%;
 }

 .career .content-box h2{
  color: #009BDC;
  font-size: var(--fs-2l);
  margin-bottom: 10px;
  font-weight: 400;
 }

 .career ul{
  list-style: none;
 }

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

 .career .ex-list li::before{
  content: "・";
}

.career .bg-list li{
  display: flex;
  align-items: flex-start;
}

.career .bg-list li > span{
  display: block;
  margin-right: 20px;
}

@media print, screen and (max-width:1300px){
  .career .box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   }

   .career .content-box{
    max-width: 800px;
    width: 100%;
   }

   .career .box .content-box:not(:last-of-type){
    margin-bottom: 40px;
   }
 }

 @media print, screen and (max-width:800px){
  .career .content-box{
    padding:var(--box-space-2s) var(--box-space-s) ;
   }
 } */

  /* career */

 /* staff-we-seek */
 .staff-we-seek{
  position: relative;
  background-color: #EAF8FF;
  /* padding-top: 50px;
  padding-bottom: 50px; */
}

.staff-we-seek::before{
  content: "";
  display: block;
  position: absolute;
  background-repeat: repeat-x;
  height:45px;
  width: 100%;
  background-image: url(../image/recruit/staff-we-seek-line.svg);
  background-position: center;
}

.staff-we-seek::before{
  top: -43px;
  left:0 ;
  transform: scale(1, -1);
}

.staff-we-seek .inner{
  max-width: 1000px;
  box-sizing: border-box;
  border-radius: 40px;
  margin: auto;
  padding:60px 20px;
}


.staff-we-seek .txt-box h3{
  font-weight: 500;
font-size: var(--fs-3l);
margin-bottom: 10px;
}

.staff-we-seek .txt-box h3 .en{
  display: flex;
  align-items: center;
  color: #FF6AA3;
  font-weight: 600;
  position: relative;
  font-size: 15px;
}

.staff-we-seek .txt-box h3 .en::after{
  content: "";
  background-color:#FF6AA3;
  width: 20px;
  height: 2px;
  display: inline-block;
  margin-left:8px;
}

.seek-list {
  text-align: left;
  margin: auto;
}

.seek-list li{
  list-style: none;
  display: flex;
  align-items: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.seek-list li .txt-box{
  max-width: 400px;
  width: 100%;
}

.seek-list li .img-box{
  width: 202px;
  margin-right: 48px;
}

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

@media print, screen and (max-width:1000px) {
  .staff-we-seek{
    padding-left: 10px;
    padding-right: 10px;
  }
}

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

}
@media print, screen and (max-width:800px) {
  .seek-list li:not(:last-child) {
    margin-bottom: 60px;
}
}

@media print, screen and (max-width:480px) {
  .seek-list li {
    flex-direction: column;
  }
  .seek-list li .img-box{
    margin: 0 0 10px;
    width: 152px;
  }
 }

 /* welfare*/

 .welfare{
  position: relative;
  background-color: #EAF8FF;
  margin-bottom: 150px;
 }

 .welfare .inner{
  padding-top:40px;
  padding-bottom: 100px;
  max-width: 1000px;
  margin: 0 auto;
 }

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

 .welfare-list li p{
  font-size: var(--fs-m);
  padding-top: 10px;
  color: #20A7E0;
 }

 .welfare-list li img{
  width: 100%;
 }

 .welfare-list + p{
  text-align: left;
 }

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

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

   .welfare{
    padding-top:30px;
    padding-bottom: 60px;
    margin-bottom: 100px;
   }
}

 @media print, screen and (max-width:450px) {
  .welfare-list{
    gap: 30px 20px;
   }
}

.welfare::after{
  content: "";
  display: block;
  position: absolute;
  background-repeat: repeat-x;
  height:45px;
  width: 100%;
  background-image: url(../image/recruit/staff-we-seek-line.svg);
  background-position: center;
}

.welfare::after{
  left:0 ;
  bottom: -42px;
}
  /* welfare*/



 /* recruitment-details*/
 .recruitment-details .box{
  max-width: 1000px;
  box-sizing: border-box;
  padding: 40px 50px;
  margin: auto;
  background: #EAF8FF;
  border-radius: 40px;
  margin-bottom: 150px;
}

.recruitment-details{
  
}

.recruitment-details-list{
  text-align: left;
  display: flex;
  flex-wrap: wrap;
}

.recruitment-details-list dt{ 
  border-bottom: 2px solid #fff;
  max-width: 220px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 20px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  margin-right: 30px;
}

.recruitment-details-list dd{ 
  border-bottom: 2px solid #fff;
  width:calc(100% - 250px); 
  box-sizing: border-box;
  padding-left: 20px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

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

.recruitment-details-list dd ul{ 
  list-style: none;
}

.recruitment-details-list + iframe{
  width: 100%;
  height: 500px;
  border-radius: 40px;
}

 .recruitment-details h2{
  margin-bottom: 30px;
 }

 .recruitment-details h2 + span{
  display: block;
  color: #707070;
  padding-bottom: 30px;
 }


@media print, screen and (max-width:1000px) {
  .recruitment-details .box{
    padding: 40px 20px;
  }
  .recruitment-details .inner {
    padding: 0px 10px;
  }
}

@media print, screen and (max-width:800px) {
  .recruitment-details-list dt{ 
    margin-right: 10px;
  }

  .recruitment-details-list dt{ 
    max-width: 90px;
  }
  .recruitment-details-list dd{ 
    width:calc(100% - 130px); 
  }

  .recruitment-details-list + iframe{
    height: 300px;
  }

  .recruitment-details .box{
    margin-bottom: 80px;
  }
}

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

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

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

}


 .to-form{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 360px;
  width: 100%;
  background-image: url(../image/recruit/to-form-bc.jpg);
  background-size: cover;
  background-position: center;
  text-decoration: none;
  line-height: var(--line-height-s);
  /* filter: brightness(0.8); */
 }

 @media print, screen and (max-width:600px) {
  .to-form{
    height: 240px;
   }
}


 .to-form span{
  color: #fff;
  font-weight: 600;
 }

 .to-form span:not(.en){
font-size: var(--fs-l);
display: block;
 
}
 .to-form span.en{
font-size: var(--fs-3s);
text-transform: uppercase;
 }


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

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

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

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

.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: 424px;
  aspect-ratio: 740/424;
  /* background-image: url(../image/top/exterior.jpg); */
  background-size: cover;
  overflow: hidden;
  /* background-color: #ededed; */
}

.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: 100%;
  object-fit: contain;
  object-position: top;
  /* 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 iframe{
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

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

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


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

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

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

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

.outline .txt-box .txt-box-item.adress dl{
  margin-bottom:30px;
}
.outline .txt-box .txt-box-item.adress dl .maplink,
.outline .txt-box .txt-box-item.adress dl  .transport{
  margin-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.calendar{
  position: relative;
  /* background-color: #FBFAED; */
}

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

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

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

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

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

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

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

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

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


/*----------------
  footer
----------------*/
footer{
padding-top:90px;
  background-color: #DEEBF7;
}

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

footer nav{
  margin-bottom: 40px;
}

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

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

  footer nav{
    /* display: none; */
  }
}

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

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

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

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


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

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

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

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

  #page_top a{
    width: 50px;
    height: 50px;
    background-size: 20px;
  } 
}

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




.top-greeting{
  
}



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

}


/* .btn {
  width: 140px;
  height: 50px;
  background: linear-gradient(to top, #00154c, #12376e, #23487f);
  color: #fff;
  border-radius: 50px;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.btn span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: top 0.5s;
}

.btn-text-one {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.btn-text-two {
  position: absolute;
  width: 100%;
  top: 150%;
  left: 0;
  transform: translateY(-50%);
}

.btn:hover .btn-text-one {
  top: -100%;
}

.btn:hover .btn-text-two {
  top: 50%;
} */
.btn--blue,
a.btn--blue {
  color: #fff;
  background-color: #5DA9E9;
  text-decoration: none;
  padding: 10px 20px;
}
.btn--blue:hover,
a.btn--blue:hover {
  color: #fff;
  background: #01BAEF;
  text-decoration:underline;
}