@charset "utf-8";
/* CSS Document */
body {
	font-family: "Meiryo UI", "メイリオ", "sans-serif";
	font-size: 16px;
	color: #686868;
	position: relative;
	font-style: normal;
	font-weight: 500;
}
a {
	text-decoration: none;
	color: #686868;
}
img {
	max-width: 100%;
	vertical-align: bottom;
	display: block;
}
ul {
	list-style: none;
}
.wrap {
	width: 85%;
	margin: 0 auto;
	max-width: 1500px;
}
.center {
	text-align: center;
}
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.even {
	flex-direction: row-reverse;
}
.flex-2 {
	width: 48%;
}
.flex-3 {
	width: 31%;
}
.white {
	color: #FFFFFF;
}
.txt p {
	margin-bottom: 15px;
	line-height: 1.8;
}
.en {
	font-family: "Lithos Pro";
}
.ja {
	font-family: 'Zen Maru Gothic', 'Zen Maru Gothic Black', 'Zen Maru Gothic Light', 'Zen Maru Gothic Medium', 'A P-OTF 丸ツデイ+ ProN DB';
}
.w-1200 {
	max-width: 1200px;
}

.blue {
	color: #387BC6;
}


/*==================================================
ヘッダー
===================================*/
#header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	background: #DCE9F6;
}
.header-wrap {
	padding: 5px 10px 15px;
	display: flex;
	align-items: center;
}
.header-left {
	width: 30%;
}
.header-right {
	width: 70%;
	margin-left: auto;
}
.header-top {
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header-top a {
	margin-left: 10px;
}
.header-top a:hover {
	opacity: 0.7;
}
.header-top .tel {
	font-size: 20px;
	color: #EC6235;
	font-weight: bold;
}


/*==================================================
グローバルメニュー
===================================*/
.menu {
    position: relative;
    width: 100%;
	text-align: center;
}
.menu > li {
    float: left;
    width: 16.6%;
	position: relative;
}

.menu > li a {
    display: block;
	font-size: 16px;
	position: relative;
	font-weight: 700;
}


.menu > li:hover::before {
    content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #EC6235;
	position: absolute;
	bottom: -12px;
	right: 50%;
	transform: translateX(50%);
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li a:hover {
    background: #F3A565;
	color: #FFFFFF;
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}

.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: 100%;
    background: #FCEDE1;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
	z-index: 99;
}

li.menu__single:hover ul.menu__second-level {
    top: 60px;
    visibility: visible;
    opacity: 1;
	z-index: 99;
}
.menu__second-level li a {
	padding: 10px 0;
	color: #686868;
}


/*==================================================
メインビジュアル
===================================*/
#mv {
	position: relative;
	z-index: 1;
}
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url("img/top/mv01.jpg");
}

.slider-item02 {
    background:url("img/top/mv02.jpg");
}

.slider-item03 {
    background:url("img/top/mv03.jpg");
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

.cp {
	width: 100%;
	position: absolute;
	z-index: 5;
	bottom: 20px;
	right: 3rem;
}
.cp img {
	margin-left: auto;
}


/*==================================================
お知らせ
===================================*/
.index-ttl {
	text-align: center;
	margin-bottom: 45px;
	position: relative;
	z-index: 1;
}
.index-ttl .en {
	font-size: 40px;
	color: #EC6235;
}
.index-ttl .ja {
	font-size: 20px;
}

#news {
	background: #FFFCF6;
	padding: 60px 0;
}
#news .wrap {
	width: 90%;
	display: flex;
	justify-content: space-between;
}
#news .index-ttl {
	width: 20%;
}
#news .index-ttl::after {
	content: "";
	background-image: url("img/top/news_bg.png");
	width: 255px;
	height: 180px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.n-content {
	width: 75%;
}
.n-item {
	display: flex;
	margin-bottom: 25px;
	border-bottom: 1px dashed #F3A565;
	padding-bottom: 5px;
}
.n-item .date {
	width: 20%;
	text-align: center;
}
.n-item .ttl {
	width: 80%;
}


/*==================================================
コンセプト
===================================*/
#index-concept {
	margin: 100px auto;
}
#index-concept .flex-2 {
	position: relative;
	z-index: 1;
}
#index-concept .img::before {
	content: "";
	background-image: url("img/top/concept_bg01.png");
	width: 520px;
	height: 270px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: -80px;
	left: -100px;
	z-index: -1;
}
#index-concept h3 {
	font-size: 30px;
	margin-bottom: 30px;
}
#index-concept .txtbox {
	position: relative;
	z-index: 1;
}
#index-concept .txtbox::after {
	content: "";
	background-image: url("img/top/concept_bg02.png");
	width: 590px;
	height: 220px;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -40px;
	right: -80px;
	z-index: -1;
}


/*==================================================
当院のこだわり
===================================*/
#index-feature {
	padding: 65px 0 30px;
	background: #FEF9F9;
}
.feature {
	position: relative;
	z-index: 1;
	padding: 50px 0 100px;
	margin-bottom: 85px;
}
.fea01::before {
	content: "";
	width: 60%;
	height: 70%;
	max-width: 1200px;
	max-height: 400px;
	background: rgba(220,233,246,0.50);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -3;
}
.fea01::after {
	content: "";
	width: 60%;
	height: 90%;
	max-width: 1200px;
	max-height: 545px;
	background: rgba(220,233,246,0.50);
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.fea02::before {
	content: "";
	width: 60%;
	height: 90%;
	max-width: 1200px;
	max-height: 545px;
	background: rgba(252,237,225,0.50);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -3;
}
.fea02::after {
	content: "";
	width: 60%;
	height: 70%;
	max-width: 1200px;
	max-height: 400px;
	background: rgba(252,237,225,0.50);
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.feature .txtbox {
	position: relative;
	z-index: 1;
	padding: 30px 2%;
	background: rgba(255,255,255,0.60);
}
#index-feature h3 {
	color: #EC6235;
	font-size: 30px;
	margin-bottom: 15px;
}
#index-feature h3 .number {
	font-size: 50px;
	display: inline-block;
	margin-left: 10px;
}
#index-feature .ttl {
	font-size: 30px;
	margin-bottom: 25px;
	font-weight: 600;
}
.fea01 .txtbox::before {
	content: "";
	background-image: url("img/top/feature01-2.png");
	width: 175px;
	height: 135px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	bottom: -30px;
	left: -25px;
	z-index: -1;
}
.fea02 .txtbox::before {
	content: "";
	background-image: url("img/top/feature02-2.png");
	width: 180px;
	height: 155px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	bottom: -30px;
	right: -25px;
	z-index: -1;
}
.fea03 .img {
	margin-bottom: 50px;
	align-items: baseline;
}
.fea03 .img img {
	margin: 0 auto;
}
.fea03 .txtbox {
	max-width: 680px;
	width: 80%;
	margin: 0 auto;
}

/*==================================================
診療案内
===================================*/
.index-bg {
	background-image: url("img/top/medical_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#medical {
	padding: 100px 0;
}
#medical .index-ttl {
	text-align: left;
	padding-left: 8%;
}
#medical .index-ttl::before {
	content: "";
	width: 70%;
	max-width: 1200px;
	height: 1px;
	background: #F3A565;
	position: absolute;
	bottom: -20px;
	left: 0;
}
.medical-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.medical-list li a {
	display: block;
	background: #DCE9F6;
	padding: 20px 2%;
	border-radius: 30px;
	position: relative;
	z-index: 1;
}
.medical-list li a::after {
	content: "";
	border-bottom: 30px solid #fff;
	border-left: 30px solid transparent;
	position: absolute;
	bottom: 15px;
	right: 15px;
	z-index: 1;
}
.medical-list .ttl {
	font-size: 30px;
	text-align: center;
	margin: 20px auto;
}
.medical-list img {
	margin: 0 auto;
}


/*==================================================
ご挨拶
===================================*/
#greeting {
	padding: 50px 0;
}
#greeting .index-ttl {
	text-align: left;
}
#greeting h3 {
	font-size: 25px;
	color: #F3A565;
	margin-bottom: 25px;
}
#greeting .txt {
	position: relative;
	z-index: 1;
}
#greeting .txt::after {
	content: "";
	background-image: url("img/top/greeting02.png");
	width: 185px;
	height: 175px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	bottom: -55px;
	right: -75px;
	z-index: -1;
}
.more {
	width: 50%;
	max-width: 70px;
	margin: 40px auto 0;
}
.more-btn {
	display: block;
	color: #EC6235;
	text-align: center;
	border-top: 1px solid #EC6235;
	border-bottom: 1px solid #EC6235;
	padding: 5px 0;
}


/*==================================================
フッター
===================================*/
#footer {
	position: relative;
	z-index: 1;
}
.footer-top {
	background: #FFFCF6;
	padding: 50px 0;
	position: relative;
	z-index: 1;
}
.footer-top::before {
	content: "";
	background-image: url("img/top/footer01.png");
	width: 335px;
	height: 255px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top left;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.footer-top::after {
	content: "";
	background-image: url("img/top/footer02.png");
	width: 225px;
	height: 115px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top right;
	position: absolute;
	top: 30px;
	right: 20px;
	z-index: -1;
}
.footer-top .logo img {
	margin: 0 auto;
}
.footer-top .ad {
	margin: 25px auto;
}
.footer-top .tel {
	display: block;
	width: 80%;
	max-width: 180px;
	text-align: center;
	margin: 0 auto 25px;
	font-weight: bold;
	color: #EC6235;
	font-size: 20px;
}
.reserve {
	display: flex;
	justify-content: center;
	align-items: center;
}
.reserve a {
	display: inline-block;
	text-align: center;
	margin-left: 10px;
	margin-right: 10px;
}

.time-table {
	width: 85%;
	padding: 2%;
	background: #FCEDE1;
	border-radius: 20px;
	margin: 20px auto 0;
}
.biz-hour {
	width: 100%;
	border-collapse: collapse;
}
.biz-hour td, .biz-hour th {
	text-align: center;
	padding: 5px;
}
.biz-txt {
	width: 85%;
	margin: 0 auto;
}


.sitemap {
	margin-bottom: 40px;
}
.sitemap li {
	margin-bottom: 10px;
}
.sitemap .ttl {
	font-size: 20px;
	margin-bottom: 15px;
}
.sitemap .top {
	color: #EC6235;
	border-bottom: 1px solid #F3A565;
}
.sitemap .btm {
	color: #387BC6;
	border-bottom: 1px solid #A9C6E7;
}
.sitemap li a:hover {
	opacity: 0.7;
}

.copyright {
	font-size: 14px;
	text-align: center;
	padding: 15px 0;
	background: #A9C6E7;
	color: #fff;
	font-weight: normal;
}


/*==================================================
ページトップに戻る
===================================*/
#page_top{
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: #F3A565;
  border-radius: 50%;
	z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  color: #fff;
  position: absolute;
  width: 30px;
  height: 30px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


/*==================================================
ここから下層ページ_医院紹介
===================================*/
#mainvisual {
    background-image: url("img/subpage_bg.jpg");
    background-position: top center;
    background-size: cover;
	background-repeat: no-repeat;
	position: relative;
    height: 60vh;
    z-index: 1;
}
.page-ttl {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 100%;
	text-align: center;
	font-weight: bold;
}
.page-ttl .ja {
	font-size: 20px;
}
.page-ttl .en {
	font-size: 50px;
	color: #EC6235;
}

.section {
	padding-top: 100px;
}

.sec-ttl {
	text-align: center;
	margin: 0 auto 40px;
	padding: 35px 0;
	background: #DCE9F6;
	position: relative;
	z-index: 1;
	width: 90%;
	max-width: 1500px;
}
.sec-ttl::before {
	content: "";
	width: 100%;
	height: 3px;
	background: #fff;
	position: absolute;
	bottom: 20px;
	right: 0;
}
.sec-ttl .ja {
	font-size: 30px;
}


#feature .item {
	padding: 50px 3%;
	background: #FFFCF6;
	margin-bottom: 60px;
}
#feature .item .num {
	font-size: 20px;
	margin-bottom: 10px;
}
#feature .item .num span {
	font-size: 40px;
	display: inline-block;
	padding-left: 10px;
}
.orange {
	color: #EC6235;
}
.blue {
	color: #387BC6;
}
#feature .item h3 {
	font-size: 25px;
	margin-bottom: 25px;
}

.clinic-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 150px;
}
.clinic-list .txtbox {
	width: 31%;
	margin-bottom: 70px;
	max-width: 370px;
}
.clinic-list .ttl {
	color: #fff;
	text-align: center;
	padding: 10px 0;
	background: #F3A565;
}


/*==================================================
下層ページ_院長紹介
===================================*/
#doctor {
	margin-bottom: 150px;
}
#doctor .img img {
	margin: 0 auto;
}
#doctor .d-name {
	font-size: 23px;
	text-align: center;
	margin: 20px auto;
}
.d-name span {
	height: 60px;
	width: 60px;
	border-radius: 50%;
	background: #EC6235;
	font-size: 18px;
	color: #fff;
	line-height: 60px;
	display: inline-block;
	margin-right: 15px;
}

.skill {
	width: 50%;
	margin-top: 40px;
}
.skill .ttl {
	font-size: 20px;
	border-bottom: 1px solid #387BC6;
	margin-bottom: 20px;
}
.skill .list {
	display: flex;
	flex-wrap: wrap;
}
.skill .list span {
	width: 130px;
	margin-bottom: 10px;
}
.skill .list div {
	width: calc(100% - 130px);
	margin-bottom: 10px;
}


/*==================================================
下層ページ_診療案内
===================================*/
.medical {
	margin-bottom: 150px;
}
.medical .ttl {
	font-size: 25px;
	margin-bottom: 25px;
}
.medical .content {
	margin-top: 70px;
}
.medical .content h3 {
	font-size: 25px;
	border-bottom: 2px solid #387BC6;
	margin-bottom: 25px;
}
.medical .content .list {
	display: flex;
	flex-wrap: wrap;
}
.medical .content .list li {
	width: 50%;
	margin-bottom: 20px;
	padding-left: 35px;
	position: relative;
	z-index: 1;
}
.medical .content .list li::before {
	content: "";
	background-image: url("img/medical/check.png");
	width: 25px;
	height: 25px;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}
.medical .content p {
	font-size: 20px;
	margin-bottom: 10px;
	margin-top: 30px;
}
#internal-medicine .content .list li {
	width: 33.3%;
}



/*==================================================
下層ページ_診療時間・アクセス
===================================*/
#clinic-info .list {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #387BC6;
}
#clinic-info .list dt {
	width: 250px;
	text-align: center;
	padding: 15px 0;
	border-bottom: 1px solid #387BC6;
}
#clinic-info .list dd {
	width: calc(100% - 250px);
	padding: 15px 0 15px 10px;
	border-bottom: 1px solid #387BC6;
}

#access {
	margin-bottom: 150px;
}
.movie {
	width: 70%;
	max-width: 850px;
	margin: 0 auto 50px;
	height: 460px;
}
#access .item {
	margin: 50px auto;
}
#access .item h3 {
	font-size: 20px;
	margin-bottom: 15px;
	border-bottom: 1px solid #387BC6;
}
#access .item ul li {
	margin-bottom: 10px;
}



/*==================================================
下層ページ_お問い合わせ
===================================*/

.contactform {
    margin: 0 auto 150px;
    padding: 30px 0;
}
.contact-table {
	width: 100%;
	margin-bottom: 20px;
	border-collapse: collapse;
}
.contact-item,
.contact-body {
	padding: 20px 10px;
	border: 1px solid #686868;
}

.contact-item {
  text-align: left; /* テキスト左寄せ */
  width: 25%; /* 横幅30%指定（グレーの背景色部分） */
	background: #F7C7A0;
}

.contact-body {
  width: 75%; /* 横幅70%指定（白背景色部分） */
}
.form-text {
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form-textarea {
  width: 100%;
  padding: 10px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}


.contact-submit {
  width: 250px; /* 横幅指定 */
  background-color: #387BC6; /* 背景色 */
  color: #FFFFFF; /* 文字色 */
  font-weight: bold; /* 文字の太さ */
  display: block; /* インライン要素をブロック要素に変更 */
  margin: 0 auto; /* 中央寄せ */
  font-size: 20px; /* 文字の大きさ */
  padding: 15px 0; /* 内側の余白 */
  border-radius: 100vh; /* 角丸指定 */
  border: 1px solid #387BC6;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.contact-submit:hover {
	background: #FFFFFF;
	color: #387BC6;
}
.contact-item span {
    background: #A9C6E7;
    padding: 3px 10px;
    margin-left: 8px;
    font-size: 14px;
    border-radius: 50px;
    position: relative;
    top: -2px;
}


/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}


