﻿@charset "UTF-8";

@import url('//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css?family=Cinzel');
/* Google font Icon */
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");


/*========================
２カラムレイアウト
========================*/
#column {
  width:100%;
  height: auto;
  margin: 0 auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:stretch;
}
#column .navbar {
  width: 420px;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  margin: 0 auto;
  padding:0;
  background: #66C8B7;
  box-shadow: 3px 0px 3px 0px rgba(0,0,0,0.2);
}
#column .main {
  height: auto;
  box-sizing: border-box;
  flex: 1;
  margin:0 auto;
  padding: 0;
}
@media screen and (max-width: 1640px) {
#column .navbar {
  width: 340px;
  }
}
@media screen and (max-width: 1240px) {
#column .navbar {
  width:280px;
  }
}
@media screen and (max-width: 960px) {
#column {
  flex-direction: column;
  display:block;
  }
#column .navbar {
  display: none;
  width:100%;
  position: static;
  padding: 0;
  }
#column .main {
  padding: 68px 0 0;
  }
}

/*========================
ナビゲーション枠 (右カラム)
========================*/
nav {
  height: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  position: relative;
  overflow-y: auto;
}
nav::-webkit-scrollbar {
  background: #66C8B7;
  width: 5px;
  height: 5px;
}
nav::-webkit-scrollbar-thumb {
  background-color: #A3DED4;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
}
nav h1 img {
  width: 100%;
  max-width: 200px;
  margin: 36px 0;
}
@media screen and (max-width: 1240px) {
nav {
  max-width: 100%;
  }
nav h1 img {
  max-width: 164px;
  margin: 24px 0;
  }
}
@media screen and (max-width: 960px) {
nav {
  display: none;
  }
}

/*リンクボタン*/
.navbtn {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}
.navbtn a{
	display: block;
	color: #333;
	background-color: #FFF;
	text-decoration: none;
	padding: 0.8em 1em;
	transition: 0.3s;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
	position: relative;
  line-height: 1;
  white-space: nowrap;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
  margin: 0 0 0.8em;
  z-index: 1;
}
.navbtn a:after {
	position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1em;
  font-family:"Material Symbols Rounded";
  color: #66C8B7;
	content: "\e5e1"; /*矢じりのみ矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 300
}
.navbtn a:hover{
  box-shadow: inset 2px 2px 4px 0px rgba(0,0,0,0.3);
  background-color: #E0F4F1;
	transition: 0.3s;
}
@media screen and (max-width: 1240px) {
.navbtn {
  font-size: 0.9em;
  }
}
@media screen and (max-width: 960px) {
.navbtn {
  max-width: 320px;
  font-size: 1.05em;
  }
}

/*-------------------------
クリニック概要
--------------------------*/
.navinfo {
  margin-top: 24px;
  font-family: 'Zen Old Mincho', serif;
  color: #111;
  font-size: 0.9em;
  line-height: 1.6;
  font-weight: 600;
  padding-bottom: 24px;
}
.navaddbr {
  display: none;
}
@media screen and (max-width: 1240px) {
.navinfo {
  bottom: 24px;
  font-size: 0.85em;
  }
.navaddbr {
  display: block;
  }
}
@media screen and (max-width: 960px) {
.navinfo {
  bottom: 32px;
  font-size: 0.9em;
  }
}

/*電話リンク*/
.navtel {
  position:relative;
  display: inline-block;
  font-size: 1.7em;
  line-height: 1;
  padding: 0 0 0 1em;
  color: #FFF;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  margin: 10px 0 6px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
}
.navtel:before{
	position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content:"";
  display:inline-block;
  width:0.9em;
  height:0.9em;
  background:url(../img/tel_wt.png) no-repeat;
  background-size:contain;
}
@media screen and (max-width: 1240px) {
.navtel {
  font-size: 1.6em;
  }
}
@media screen and (max-width: 960px) {
.navtel {
  font-size: 1.8em;
  }
}


/*========================
スマホ用ナビ
========================*/
.spnav {
  display: none;
}
@media screen and (max-width: 960px) {
.spnav {
  display: block;
  }
}

.spnav {
  position: fixed;
  width:100%;
  height: 68px;
  background: #FFF;
  padding: 0 24px;
  box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
  z-index: 99;
}
.spnav h1 img{
  width: 100%;
  max-width: 300px;
  margin: 10px 0 0;
}
@media screen and (max-width: 480px) {
.spnav {
  padding: 0 18px;
  }
.spnav h1 img{
  max-width: 260px;
  margin: 15px 0 0;
  }
}

/*3本線メニュー*/
.hbgmenu, .hbgmenu span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  box-sizing: border-box;
}
.hbgmenu {
  position: fixed;
  top: 22px;
  right: 18px;
  width: 42px;
  height: 24px;
  z-index: 10;
  cursor: pointer;
  border: none;
  background: none;
}
.hbgmenu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #66C8B7;
  z-index: 10;
}
.hbgmenu span:nth-of-type(1) {
  top: 0px;
}
.hbgmenu span:nth-of-type(2) {
  top: 12px;
}
.hbgmenu span:nth-of-type(3) {
  top: 24px;
}
.hbgmenu.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(45deg);
  transform: translateY(12px) rotate(45deg);
}
.hbgmenu.active span:nth-of-type(2) {
  opacity: 0;
}
.hbgmenu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(-45deg);
  transform: translateY(-12px) rotate(-45deg);
}
.hbgmenu.active span {
  background-color: #FFF;
}

/*-------------------------
ハンバーガーメニュー
--------------------------*/
.hbg {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background-color: #66C8B7;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  overflow: auto;
}
.hbg::-webkit-scrollbar {
  background: #66C8B7;
  width: 5px;
  height: 5px;
}
.hbg::-webkit-scrollbar-thumb {
  background-color: #A3DED4;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
}
.hbg.active {
  right: 0;
  opacity: 1;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}
.hbginner {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  padding: 32px 24px 0;
}
.hbginner img{
  width: 100%;
  max-width: 164px;
  margin-bottom: 24px;
}
@media screen and (max-width: 480px) {
.hbginner img{
  max-width: 142px;
  }
}


/*========================
フッター
========================*/
footer {
  width: 100%;
  padding: 0 32px;
  text-align: center;
  margin: 64px 0 24px;
  font-family: 'Zen Old Mincho', serif;
  line-height: 1.6;
  font-size: 0.9em;
  font-weight: 600;
}
footer h1 img{
  width: 100%;
  max-width: 320px;
  margin-bottom: 12px;
}
footer .copyright {
  color: #AAA;
  font-size: 0.85em;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  margin-top: 24px;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
footer {
  padding: 0 24px;
  margin: 48px 0 18px;
  }
}
@media screen and (max-width: 480px) {
footer h1 img{
  max-width: 260px;
  }
}

/*電話リンク*/
.foottel{
  position:relative;
  display: inline-block;
  font-size: 1.8em;
  line-height: 1;
  padding: 0 0 0 1em;
  color: #222;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
  margin: 12px 0 8px;
}
.foottel:before{
	position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content:"";
  display:inline-block;
  width:0.9em;
  height:0.9em;
  background:url(../img/tel_gr.png) no-repeat;
  background-size:contain;
}
@media screen and (max-width: 480px) {
.foottel{
  font-size: 1.6em;
  }
}


/*========================
汎用パーツ
========================*/

/*-------------------------
汎用テーブル
--------------------------*/
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
}
.table th{
  font-weight: normal;
  line-height: 100%;
  text-align: left;
  padding: 0.5em 0.8em;
  line-height: 1.65;
  border: 1px solid #999;
  background-color: #F3F3F3;
}
.table td{
  font-weight: normal;
  line-height: 100%;
  text-align: right;
  padding: 0.5em 0.8em;
  line-height: 1.65;
  border: 1px solid #999;
}
@media screen and (max-width: 480px) {
.table {
  font-size: 0.9em;
  }
.table th{
  padding: 0.3em 0.5em;
  }
.table td{
  padding: 0.3em 0.5em;
  }
}

/*-------------------------
イラスト付きタイトル＆白枠
--------------------------*/
section {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 42px 64px 48px;
  background-color: #FFF;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.3);
  margin-top: 124px;
}
@media screen and (max-width: 1420px) {
section {
  width: 88%;
  }
}
@media screen and (max-width: 960px) {
section {
  width: 92%;
  }
}
@media screen and (max-width: 767px) {
section {
  padding: 32px 48px 38px;
  }
}
@media screen and (max-width: 640px) {
section {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  }
}
@media screen and (max-width: 480px) {
section {
  padding: 24px 24px 32px;
  margin-top: 84px;
  }
}

/*タイトル画像*/
.titleimg {
  text-align: center;
  margin: -100px 0 64px;
}
.titleimg img {
  width: 100%;
  max-width: 340px;
}
@media screen and (max-width: 1240px) {
.titleimg img {
  max-width: 300px;
  }
}
@media screen and (max-width: 480px) {
.titleimg {
  text-align: center;
  margin: -64px 0 42px;
  }
.titleimg img {
  max-width: 240px;
  }
}

/*-------------------------
アイコン付き電話リンクテキスト
--------------------------*/
/*グリーン*/
.tel{
  position:relative;
  display: inline-block;
  font-size: 2em;
  line-height: 1;
  padding: 0 0 0 0.9em;
  color: #48B0AE;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
}
.tel:before{
	position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content:"";
  display:inline-block;
  width:0.9em;
  height:0.9em;
  background:url(../img/tel_gr.png) no-repeat;
  background-size:contain;
}
@media screen and (max-width: 640px) {
.tel{
  font-size: 1.8em;
  }
}

/*-------------------------
見出し
--------------------------*/
/* 文末横線付き見出し */
.linetitle{
  display:flex; 
  align-items:center;
  font-size: 1.1em;
  font-weight: 700;
  color: #47B0AD;
  margin: 1em 0 0.5em;
  line-height: 1.5;
}
.linetitle:after {
  margin-left:0.5em; 
  border-top:1px solid #66C8B7; 
  content:""; 
  flex-grow:1;
}


/*-------------------------
ボタン・テキストリンク
--------------------------*/
/*文末矢印アイコン付きボタン*/
.btn {
	display: inline-block;
	color: #FFF;
	background-color: #48B0AE;
	text-decoration: none;
	padding: 0.8em 2.4em 0.8em 1.2em;
	transition: 0.3s;
	position: relative;
  line-height: 1;
  white-space: nowrap;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0.3em 0.3em 0;
}
.btn:after {
	position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1.4em;
  font-family:"Material Symbols Rounded";
	content: "\e5c8"; /*矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 300
}
.btn:hover{
	background-color: #5878B8;
	transition: 0.3s;
}

/*-------------------------
ページ上部へジャンプ
--------------------------*/
#jumptop{
  position:fixed;
  right: 32px;
  bottom:32px;
  z-index: 2;
}
.jumpbtn {
  width:5em;
  height:5em;
  cursor:pointer;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  cursor:pointer;
  background:#FFF;
  box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.4);
  position: relative;
}
.jumpbtn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: block;
  font-size: 3em;
  color: #66C8B7;
  font-family:"Material Symbols Rounded";
	content: "\e5d8"; /*上向き矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 400
}
@media(max-width:1240px){
#jumptop{
  right: 24px;
  bottom:24px;
  }
.jumpbtn {
  width: 4.2em;
  height: 4.2em;
  }
.jumpbtn:before {
  font-size: 2.4em;
  }
}
@media(max-width:640px){
.jumpbtn {
  display: none;
  }
}


/*========================
予備パーツ
========================*/
/*-------------------------
横並びflexbox
--------------------------*/
/* 幅可変横並び*/
.column {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:flex-start;
}
.column li{
  margin:0 15px 0 0;
}
.column li:last-child{
  margin:0 0 0 0;
}

/* 画像320px ＋ テキスト*/
.column320 {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:center;
}
.column320_img {
  max-width: 320px;
  margin: 0 30px 0 0;
}
.column320_text {
  flex: 1;
}
@media screen and (max-width: 1000px) {
.column320_img {
  max-width: 240px;
  margin: 0 20px 0 0;
  }
}
@media screen and (max-width: 767px) {
.column320 {
  flex-direction: column;
  display:block;
  }
.column320_img {
  max-width: 100%;
  margin: 0 0 15px 0;
  text-align: center;
  }
}

/* 均等2列(767px以下で縦列切り替え) */
.col2 {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:center;
}
.col2 li{
  width: 50%;
  max-width:50%;
  width: calc(100% / 2);
  margin:0 30px 0 0;
}
.col2 li:last-child{
  margin:0 0 0 0;
}
@media screen and (max-width: 1000px) {
.col2 li{
  margin:0 20px 0 0;
  }
}
@media screen and (max-width: 767px) {
.col2 {
  flex-direction: column;
  display:block;
  }
.col2 li {
  width:100%;
  max-width:100%;
  margin:0 0 20px 0;
  }
.col2 li:last-child{
  margin:0 0 0 0;
  }
}

