@charset "utf-8";
/* CSS Document */
html{
	overflow-x: hidden;
}
body {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 18px;
  color: #333333;
  position: relative;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: #333333;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
.wrap {
  width: 85%;
  margin: 0 auto;
  max-width: 1200px;
}
.w-1200 {
  max-width: 1200px;
}
.center {
  text-align: center;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-2 {
  width: 48%;
}
.flex-3 {
  width: 31%;
}
.even {
  flex-direction: row-reverse;
}
.txt p {
  margin-bottom: 70px;
  line-height: 1.8;
}
.white {
  color: #fff;
}
.ja {
  font-family: "Zen Old Mincho";
}
.en {
  font-family: "Goldenbook", "Shippori Mincho B1";
}
/*==================================================
ヘッダー
===================================*/
#header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.header-wrap {
  display: flex;
  width: 98%;
  margin: 0 auto;
  align-items: center;
}
.header-left {
  max-width: 50%;
  gap: 20px;
  margin-right: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-left h1 {
  width: 30%;
}
.header-left .adress {
  width: 70%;
}
.header-right {
  width: 50%;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.reserve {
  display: block;
  text-align: center;
  padding: 5px 0;
  width: 25%;
  color: #fff;
  font-family: "Shippori Mincho B1";
}
.reserve.tel {
  width: 30%;
    background: #548BE5;
}
.header-right span {
  display: block;
  font-size: min(1.3vw, 18px);
}
.header-right p {
  font-size: min(1.4vw, 23px);
}
.header-right .web {
  background-image: url("img/top/web.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
    position: relative;
}
.header-right .web::before
{
    content: "";
    position: absolute;
    top: 50%;
    left: 1rem;
    background: url("img/top/web_icon.png")no-repeat center / contain;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
}
.header-right .map {
  background-image: url("img/top/access.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
    position: relative;
}
.header-right .map::before
{
    content: "";
    position: absolute;
    top: 50%;
    left: 0.5rem;
    background: url("img/top/access_icon.png")no-repeat center / contain;
    width: 25px;
    height: 25px;
    transform: translateY(-50%);
}
.reserve:hover {
  opacity: 0.7;
}
/*==================================================
グローバルメニュー
===================================*/
#g-nav {
  width: 100%;
  z-index: 999;
  /*最前面へ*/
  background-image: url("img/top/g-nav_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.fix-nav-wrap {
  width: 100%;
  margin: 0 auto;
}
#g-nav .header-right {
  width: 40%;
}
#g-nav .header-right .reserve {
  width: 50%;
}
#g-nav .header-right .tel {
  background: #548BE5;
}

.fix-nav-list:hover {
  -webkit-transition: all .5s;
  transition: all .5s;
}
#g-nav.fixed {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background: #FFFFFF;
}
.nav-menu-wrap {
  width: 100%;
  margin-left: auto;
}
.menu {
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.menu > li {
  float: left;
  padding: 0 2vw;
  position: relative;
}
.menu > li a {
  display: block;
  color: #333333;
  font-size: 16px;
}
.menu > li:hover::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D5C1B7;
  position: absolute;
  bottom: -7px;
  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: #D5C1B7;
  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: #F2E3DB;
  -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: #333333;
}
.menu__single a span {
  display: block;
  font-size: 14px;
    color: #548BE5;
}
/*==================================================
メインビジュアル
===================================*/
#mv {
    position: relative;
    z-index: 1;
    height: 60vw;
    overflow: hidden;
}

.mv-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.cp,
.biz-flex {
    position: relative;
    z-index: 1;
}
/*#mv {
  position: relative;
  z-index: 1;
  background: url(./img/top/mv01.png) no-repeat center / cover;
  height: 50vw;
}*/
/* .slider {
  position:relative;
	z-index: 1;
	height: 100vh;
} */
/* 
.slider-item01 {
    background:url("img/top/mv01.png");
}

.slider-item02 {
    background:url("img/top/mv02.png");
}

.slider-item03 {
    background:url("img/top/mv03.png");
}

.slider-item {
    width: 100%;
    height:100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}  */
.cp {
  position: absolute;
  z-index: 5;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#mv .biz-flex {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  margin: 0;
  font-size: 16px;
}
.biz-flex {
  display: flex;
  width: 50%;
}
.biz-txt {
  background: #EEF3F8;
  width: 40%;
  padding: 20px 2%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.time-table {
  width: 60%;
  max-width: 600px;
  background: #548BE5;
}
.biz-hour {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  background: #548BE5;
  padding: 5%;
}
.biz-hour .ryu {
  border-bottom: 1px solid #ffffff;
}
.biz-hour td, .biz-hour th {
  text-align: center;
  padding: 14px 5px 8px;
  color: #fff;
}

/*==================================================
予約バナー
===================================*/
.web_reserve_bnr{
	width: 40%;
	margin: 0 auto 50px;
}

.web_reserve_bnr a:hover{
	opacity: .7;
}

/*==================================================
お知らせ
===================================*/
#news {
  background: #EEF3F8;
  padding: 50px 0;
}
#news .index-ttl {
  margin-bottom: 60px;
}
#news .index-ttl .en {
  font-size: 20px;
  color: #548BE5;
}
#news .index-ttl .ja {
  font-size: 35px;
  font-weight: normal;
}
.news-content {
  width: 100%;
}
.news-content .item {
  padding: 10px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #548BE5;
  display: flex;
}
.news-content .date {
  width: 15%;
  text-align: center;
}
.news-content .news-ttl {
  width: 85%;
}
/*==================================================
カレンダー
===================================*/
#calendar
{
    padding: 4% 3%;
    background: #dcedff;
}
#calendar .index-ttl {
    margin-bottom: 60px;
}
.calendars.xo-months {
    display: flex;
    gap: 2rem;
}
#calendar .index-ttl .en {
    font-size: 20px;
    color: #548BE5;
}
@media screen and (max-width:480px)
{
    .calendars.xo-months {
    flex-direction: column;
}
}
/*==================================================
メディア
===================================*/
#media
{
    padding: 6% 0;
}
.media_inner
{
    max-width: 700px;
    margin: 0 auto;
}
#media .flex
{
    margin-bottom: 6%;
    align-items: center;
}
/*==================================================
メッセージ
===================================*/
#message {
  background:url("img/top/messageco_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 110px 0 200px;
}
#message .message-content {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #548BE5;
  padding: 40px 5% 80px;
}
#message .message-lead {
  text-align: center;
  font-size: min(6vw, 35px);
  color: #548BE5;
  font-weight: 400;
  padding-bottom: 40px;
}
/*==================================================
ご挨拶
===================================*/
#greeting {
  background: rgba(181,203,227,0.7);
  padding: 160px 0 60px;
  position: relative;
  z-index: 1;
}
#greeting::after
{
    content: "";
    background-image: url("img/top/greeting_bg.png");
  width: 657px;
  height: 573px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top left;
  position: absolute;
  top: 0;
  left: 0;
    z-index: -1
    
}
#greeting::before {
  content: "";
  background-image: url("img/top/greeting02.png");
  width: 520px;
  height: 270px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom left;
  position: absolute;
  bottom: -180px;
  left: 0;
  z-index: 1;
}
#greeting .index-ttl {
  font-size: 140px;
  color: #6EA3E9;
  font-weight: normal;
  position: absolute;
  top: -100px;
  left: 15px;
  z-index: 1;
  text-shadow: 0 2px 2px rgba(84, 139, 229, 1.00);
}
#greeting .wrap {
  margin: 0 0 0 auto;
  width: 95%;
  max-width: 1710px;
  position: relative;
  z-index: 1;
}
#greeting .wrap::after {
  content: "";
  background-image: url("img/top/greeting03.png");
  height: 315px;
  width: 70%;
  max-width: 1200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  position: absolute;
  bottom: -120px;
  right: 0;
  z-index: -1;
}
#greeting .ttl {
  margin-bottom: 30px;
  font-size: 35px;
  font-weight: normal;
}
#greeting .ttl span {
  font-size: 25px;
  margin-bottom: 15px;
}
#greeting .d-name {
  display: flex;
  margin-top: 70px;
  font-size: 20px;
  align-items: baseline;
  margin-bottom: 30px;
}
#greeting .d-name .ja {
  font-size: 35px;
  padding-left: 10px;
}
#greeting .d-name .en {
  font-size: 28px;
  padding-left: 20px;
}
#greeting .btn {
  display: block;
  width: 40%;
  max-width: 410px;
  padding: 20px 0;
  background: #fff;
  border: 1px solid #333;
  text-align: center;
}
/*==================================================
診療案内
===================================*/
#index-medical .index-ttl {
  padding: 80px 0;
  background-image: url("img/top/medical_ttl.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: -1;
}
#index-medical .index-ttl .en {
  font-size: 140px;
  font-weight: normal;
  color: rgba(75, 154, 218, 0.35);
}
#index-medical .index-ttl .ja {
  font-size: 55px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.medical-top {
  padding: 40px 0;
  background-image: url("img/top/medical_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}
.medical-top::before {
  content: "";
  border-top: 150px solid rgba(255, 255, 255, 0.50);
  border-right: 300px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.medical-top::after {
  content: "";
  border-top: 150px solid transparent;
  border-right: 300px solid rgba(255, 255, 255, 0.50);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.medical-top .wrap {
  max-width: 950px;
  align-items: center;
}
.medical-top .ttl {
  display: flex;
  width: 20%;
  flex-direction: row-reverse;
    color: #FFFFFF;
    border-bottom: none;
}
.medical-top .ttl p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 30px;
}
.medical-top .txt {
  width: 75%;
}
.medical-mdl {
  display: flex;
}
.medical-mdl .item {
  width: 33.3%;
}
.medical-mdl .item .bg {
  padding: 60px 3% 120px;
  background: #EEF3F8;
    position: relative;
}
.medical-mdl .item .bg .ttl
{
    color: #333333;
    border-bottom: none;
}
.medical-mdl .item .bg .more
{
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}
.medical-mdl .item .bg.mdl {
  background: #F0F1ED;
}
.medical-mdl .item .ttl {
  text-align: center;
  font-size: 35px;
  margin-bottom: 30px;
}
.medical-mdl .item .ttl span {
  display: block;
  font-size: 25px;
  margin-bottom: 15px;
}
.medical-mdl .item .txt {
  width: 75%;
  margin: 0 auto;
}
.more {
  width: 80%;
  margin: 30px auto;
  max-width: 400px;
}
.more-btn {
  display: block;
  padding: 25px 0;
  text-align: center;
  background: #548BE5;
  font-family: "Shippori Mincho B1";
  color: #fff;
}
.more-btn:hover {
  opacity: 0.7;
}
.medical-btm {
  width: 90%;
  max-width: 1420px;
  margin: 0 auto;
  gap: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px 0;
}
.medical-btm .item {
  width: calc((100% - 120px)/ 4);
    position: relative;
    padding-bottom: 9rem;
}
.medical-btm .item .more
{
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}
.medical-btm .item .ttl {
  font-size: 18px;
  margin: 20px auto;
    border-bottom: none;
}
.medical-btm .item .ttl span
{
    font-size: 16px;
    color: #548BE5;
    margin-left: 10px;
}
.medical-btm .item .list {
  width: 80%;
  margin: 0 auto;
}
.medical-btm .item .list li {
  margin-bottom: 10px;
}

/******************************************
動画紹介
***************************************/
#top_movie .index-ttl {
  padding: 80px 0;
  position: relative;
}
#top_movie .index-ttl .en {
  font-size: 140px;
  font-weight: normal;
  color: rgba(157,185,230,0.5);
}
#top_movie .index-ttl .ja {
  font-size: 55px;
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#top_movie .movie-contents{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px clamp(1.25rem, -5.446rem + 10.71vw, 3.125rem);
	margin: 0 auto 50px;
	width: 80%;
}

#top_movie .top-movie__item-title {
    color: #548BE5;
    font-size: 24px;
    border-bottom: 1px dotted #548BE5;
    padding-bottom: 10px;
	font-weight: 500;
}

#top_movie .top-movie__video {
    width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
    margin-top: 20px;
	display: block;
}

/******************************************
流れ
***************************************/
#top_flow .index-ttl {
  padding: 80px 0;
  position: relative;
}
#top_flow .index-ttl .en {
  font-size: 140px;
  font-weight: normal;
  color: rgba(157,185,230,0.5);
}
#top_flow .index-ttl .ja {
  font-size: 55px;
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#top_flow .inner {
	margin: 0 auto;
}
.flow-con {
	padding: 5rem 0;
}
.flow-con p {
	width: 95%;
	margin: 3rem auto 0 auto;
}
.flow-ttl {
	font-size: 24px;
	margin-bottom: 2rem;
}
.flow-txt {
	font-size: 16px;
	line-height: 2;
}
.bg_box
{
    background: #EEF3F8;
    padding: 3vw;
}
.bg_box2
{
    background: #FFFFFF;
    padding: 3vw;
    box-shadow: 2px 2px 10px 0px #777777;
}
.pt3
{
    padding-top: 30px;
}
.bg_box .ttl
{
    text-align: center;
    font-size: max(1.2vw , 20px);
    color: #548BE5;
    margin-bottom: 3%;
    font-weight: 600;
}
.sub_ttl2
{
    font-size: max(1vw , 18px);
    padding-left: 10px;
    border-left: 3px solid #548BE5;
    font-weight: 600;
    margin-bottom: 15px;
}
.sub_ttl3
{
    font-size: max(1.2vw , 18px);
    font-weight: 600;
    margin-bottom: 15px;
    color: #548BE5;
}
.re
{
    flex-direction: row-reverse;
}
.mt3
{
    margin-top: 30px;
}
.flow_list
{
    margin-bottom: 50px;
}
.flow_list li
{
    position: relative;
}
.flow_list > li + li {
    border-top: 1px solid #CCCCCC;
    padding-top: 50px;
    margin-top: 50px;
}
.flow_list > li + li::before {
    content: "";
    width: 20px;
    height: 20px;
    border-bottom: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    position: absolute;
    top: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    z-index: 2;
}
.flow_list > li + li::after {
    content: "";
    background: #eef3f8;
    width: 40px;
    height: 22px;
    position: absolute;
    top: -18px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

/*tabの形状*/
.tab{
	justify-content: center;
	gap:2vw;
}
.tab li {
	width: 200px;
	padding: 2rem 0;
	border: 1px solid #548BE5;
	background: #fff;
}
.tab li a{
	display: block;
	color: #444;
	text-align: center;
	font-size: 16px;
	letter-spacing: 2px;
}
.tab li:hover
.tab li:active {
	background: #C5B17A;
}

/*エリアの表示非表示と形状*/
.area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	width: 50%;
	margin: auto;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/*********************************
flow
**********************************/
.flow_ttl {
    font-size: min(20vw, 100px);
    text-align: center;
    letter-spacing: 0.2em;
}

.flow_index {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    width: 90%;
    margin: 40px auto;
    max-width: 1350px;
}

.flow_index li {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.6;
    border: 1px solid #548BE5;
    font-size: max(0.9vw, 16px);
    position: relative;
}

.flow_index li:not(:first-child)::before {
    content: "";
    width: 16px;
    height: 1px;
    background-color: #548BE5;
    position: absolute;
    top: 50%;
    right: 100%;
    z-index: 1;
}

.flow_index li.active {
    color: #548BE5;
}

#flow_slider li {
    width: 50vw;
}

#flow_slider li img {
    width: 100%;
}

#flow_slider li .caption {
    text-align: justify;
    padding: 2% 5%;
    height: 240px;
}

#flow_slider li .caption dt {
    font-size: max(1.4vw, 20px);
    font-weight: 600;
    padding-bottom: 10px;
}

#flow_slider li .caption dd {
    font-size: max(0.9vw, 16px);
}

#flow_slider .slick-next,
#flow_slider .slick-prev {
    content: "";
    display: block;
    width: 1.8vw;
    height: auto;
    aspect-ratio: 65 / 113;
    background: url("img/arrow.png") no-repeat center / contain;
    position: absolute;
    top: 12vw;
    left: 25%;
    z-index: 5;
    border: none;
    transform: rotate(0);
    ;
}

#flow_slider .slick-next::before,
#flow_slider .slick-prev::before {
    display: none;
}

#flow_slider .slick-next {
    left: auto;
    right: 25%;
    transform: scaleX(-1);
}
.flow .item {
  padding: 35px 2%;
  background: #f4e9e9;
  margin-bottom: 90px;
  position: relative;
  z-index: 1;
}

.flow .item::before {
  content: "▼";
  color: #f1a1a1;
  font-size: 50px;
  position: absolute;
  bottom: -80px;
  right: 50%;
  transform: translateX(50%);
  z-index: 1;
}

.flow .item .ttl {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  border-bottom: none;
  font-size: 28px;
}

.flow .item .ttl .number {
  font-size: 35px;
  width: 50px;
  color: #f1a1a1;
  position: relative;
  z-index: 1;
  text-align: center;
}

.flow .item .ttl .number::before {
  content: "STEP";
  font-size: 16px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}


/*==================================================
大切にしていること
===================================*/
#index_important {
  margin: 100px auto;
}
#index_important .wrap {
  border-top: 10px solid #548be8;
  border-bottom: 10px solid #548be8;
  padding: 40px 0;
    position: relative;
    background: url("img/top/important_ttl_bg.png")no-repeat center/contain;
    background-position: bottom right;
    background-size: 20%;
}

#index_important .index-ttl {
  position: relative;
  z-index: 1;
}
#index_important .index-ttl .en {
  font-size: 140px;
  font-weight: normal;
  color: rgba(84, 139, 232, 0.2);
}
#index_important .index-ttl .ja {
  font-size: 40px;
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#index_important .txt {
  max-width: 750px;
  width: 80%;
  margin: 0 auto;
}
/*==================================================
コンセプト
===================================*/
#index_concept {
  display: flex;
}
#index_concept .left {
  width: 50%;
  background-image: url("img/top/concept01.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  padding: 120px 0;
}
#index_concept .left .ttl {
  padding-right: 80px;
  text-align: end;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
}
#index_concept .left .ttl p {
  font-size: 35px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background: #fff;
}
#index_concept .right {
  width: 50%;
  position: relative;
  z-index: 1;
}
#index_concept .right::after {
  content: "";
  width: 50%;
  height: 100%;
  max-width: 360px;
  background-image: url("img/top/concept02.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
#index_concept .right .txtbox {
  padding-top: 80px;
  padding-left: 50px;
  width: 60%;
}
#index_concept .right .ttl {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: normal;
    border-bottom: none;
}
#index_concept .right .ttl .en {
  color: #548BE5;
    
}
#index_concept .right .ttl .ja
{
 font-size: 28px;
    color: #548BE5;
}
/*==================================================
5つのこだわり
===================================*/
#index_feature {
  position: relative;
  z-index: 1;
}
#index_feature .bg-top {
  background: #548be7;
  padding: 80px 0 250px;
  position: relative;
  z-index: 1;
}
#index_feature .bg-top::before {
  content: "";
  background-image: url("img/top/feature_ttl.png");
  height: 600px;
  width: 55%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  top: -60px;
  left: 0;
  z-index: -1;
}
#index_feature .index-ttl {
  position: relative;
  z-index: 1;
}
#index_feature .index-ttl .en {
  font-size: 140px;
  font-weight: normal;
  color: rgba(110, 183, 220, 0.35);
}
#index_feature .index-ttl .ja {
  font-size: 55px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
    color: #FFFFFF;
}
#index_feature .ttl-top {
  width: 50%;
  max-width: 560px;
  padding: 20px 0;
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  font-size: 28px;
  margin: 0 auto;
    color: #FFFFFF;
}
#feature01, #feature02 {
  position: relative;
  z-index: 1;
  margin-top: 60px;
    max-width: 1400px;
    margin: 0 auto;
}
#feature01 .img, #feature02 .img {
  position: relative;
  z-index: 1;
  width: 70%;
  margin: 0 0 0 auto;
}
#feature02 .img {
  margin: 0 auto 0 0;
}
#feature01 .img img {
  margin-left: auto;
  max-width: 100%;
}
#feature01 .txtbox {
  max-width: 750px;
  width: 50%;
  background: #fff;
  padding: 60px 4%;
  margin-top: -400px;
  margin-left: 0;
  position: relative;
  z-index: 5;
    margin-bottom: 50px;
}
.fea-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}
.fea-ttl .number {
  width: 20%;
  font-size: 65px;
  color: #548BE5;
  position: relative;
  z-index: 1;
  border-right: 1px solid #548BE5;
    text-align: center;
}
.fea-ttl .number::before {
  content: "こだわり";
  font-size: 18px;
  display: block;
  text-align: center;
  margin-bottom: -10px;
}
.fea-ttl .txt {
  width: 80%;
  padding-left: 10px;
}
.fea-ttl .txt .top {
  font-size: 28px;
  margin-bottom: 10px;
}
.fea-ttl .txt .btm {
  font-size: 24px;
}
#feature02 .txtbox {
  max-width: 750px;
  width: 50%;
  background: #fff;
  padding: 60px 40px;
  margin-top: -300px;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 5;
}
#feature02 .img::before {
  content: "";
  background-image: url("img/top/feature02-2.png");
  width: 510px;
  height: 350px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top left;
  position: absolute;
  bottom: -250px;
  left: 0;
  z-index: 1;
}
#feature03 {
  display: flex;
}
#feature03 .left {
  width: 50%;
  position: relative;
  z-index: 1;
  padding: 70px 0;
}
#feature03 .left::before {
  content: "";
  background-image: url("img/top/feature03-2.png");
  width: 40%;
  max-width: 360px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#feature03 .right {
  width: 50%;
}
#feature03 .left .wrap {
  max-width: 530px;
}
#feature03 .fea-ttl {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#feature03 .fea-ttl .number {
  width: 100%;
  border-right: none;
}
#feature03 .fea-ttl .txt {
  width: 100%;
  padding-left: 0;
}
.feature-btm {
  padding: 90px 0;
  background-image: url("img/top/feature_bg02.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.feature-btm .flex-2 {
  position: relative;
  z-index: 1;
}
.feature-btm .flex-2::after {
  content: "";
  width: 100%;
  height: 75%;
  background: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.feature-btm .img img {
  margin: 0 auto;
}
.feature-btm .txtbox {
  margin-top: 50px;
}
/*==================================================
徹底した衛生管理
===================================*/
#hygiene {
  padding: 90px 0 70px;
  background-image: url("img/top/hygiene_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 1;
}
/*
#hygiene::before {
  content: "";
  width: 30%;
  background-image: url("img/top/feature03-2.png");
  max-width: 360px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}*/
#hygiene .wrap {
  max-width: 1200px;
}
#hygiene .index-ttl {
  margin-bottom: 40px;
  font-weight: normal;
  font-size: 35px;
}
#hygiene .index-ttl .en {
  font-size: 30px;
  color: #548BE5;
}
#hygiene ul.flex {
  margin-top: 40px;
}
#hygiene .flex-3 {
  width: calc((100% - 80px) / 5);
}
#hygiene .img img {
  margin: 0 auto;
}
#hygiene .flex-3 p {
  font-size: 15px;
  margin-top: 20px;
}
#hygiene .flex
{
    gap: 20px;
}

/*==================================================
ギャラリー
===================================*/
.gallery {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*
IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop, .d-demo {
  display: -ms-grid;
  overflow: hidden;
}
/*----------------------------*/
.d-demo__wrap {
  display: flex;
  overflow: hidden;
}
.d-demo__list {
  display: flex;
  list-style: none;
}
.d-demo__list--left {
  animation: infinity-scroll-left 95s infinite linear 0.5s both;
}
.d-demo__item {
  width: calc(220vw / 6);
}
.d-demo__item > img {
  width: 95%;
}
/*==================================================
採用情報
===================================*/
.recruit
{
    position: relative;
    padding: 3% 0;
}
.recruit::before
{
    content: "";
    position: absolute;
    top: 10%;
    left: 70%;
    background: url("img/top/deco07.png")no-repeat center / contain;
    width: 25%;
    height: 25%;
}
.recruit::after
{
    content: "";
    position: absolute;
    bottom: 5%;
    left: 5%;
    background: url("img/top/deco08.png")no-repeat center / contain;
    width: 25%;
    height: 25%;
}
.recruit .index-ttl
{
    margin-bottom: 50px;
}
.recruit .index-ttl .en
{
    font-size: 35px;
}
.recruit .index-ttl .ja
{
    color: #548BE5;
    font-size: 32px;
}
.recruit_bg {
  background: url("img/top/recruit_bg.png") no-repeat top / cover;
  padding-top: 6%;
  padding-bottom: 6%;
  margin-top: -6%;
}
.recruit_txt
{
    margin-bottom: 6%;
    font-size: 20px;
}
.recruit .list {
    background: #FFFFFF;
    margin-top: 80px;
    position: relative;
    z-index: 1;
    max-width: 80%;
    margin: 80px auto 0;
    padding-bottom: 50px;
}
.recruit .flex li {
    width: 50%;
    margin-bottom: 25px;
    border-bottom: 1px dashed #707070;
    padding-left: 40px;
    position: relative;
    z-index: 1;
    padding-bottom: 10px;
}
.recruit .ttl {
    font-size: 25px;
    color: #548BE5;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100%;
}
.recruit .flex {
    padding-top: 80px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.recruit .flex li::before {
    content: "";
    background-image: url(img/top/check.png);
    width: 30px;
    height: 30px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.w-1200 {
    max-width: 1200px;
    margin: 50px auto;
}
.tc {
    text-align: center;
}
.recruit_inner
{
    max-width: 950px;
    margin: 0 auto 3%;
}
.rec
{
    position: relative;
    padding-bottom: 30px;
}
.rec::before
{
    content: "";
    height: 15vw;
    width: 100%;
    background: #EEF3F8;
    position: absolute;
    bottom: 0;
    z-index: -1;
}
.rec_flex
{
    padding: 3% 0;
}
.rec_flex .txt
{
    width: 70%;
}
.rec_flex .img
{
    width: 28%;
}
.tc img
{
    margin: 0 auto;
}
.tr
{
    text-align: right;
}
/*==================================================
コロナウイルス対策
===================================*/
#covid19 {
  padding: 5rem 0;
}
.accordion-001 {
  max-width: 1300px;
  margin: 0 auto;
  border: 1px solid #A2A2A2;
}
.accordion-001 summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 1em 0;
  background-color: #FFFFFF;
  margin: 0 auto;
  color: #2B2B2B;
  font-size: 30px;
  cursor: pointer;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.accordion-001 summary::-webkit-details-marker {
  display: none;
}
.accordion-001 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 11px;
  height: 11px;
  margin-top: 2rem;
  border-bottom: 3px solid #9A8C82;
  border-right: 3px solid #9A8C82;
  content: '';
  transition: transform .3s;
}
.accordion-001[open] summary::after {
  transform: rotate(225deg);
}
.accordion-open {
  transform: translateY(-10px);
  opacity: 1;
  margin: 0;
  padding: 1em 2em 2em 2em;
  background: #FFFFFF;
  transition: transform .5s, opacity .5s;
}
.accordion-open[open] {
  transform: none;
  opacity: 1;
}
.covid19-flex {
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
    margin-bottom: 3%;
}
.covid19-list {
  width: 30%;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}
.covid19-list .img {
  background: #E5F3F9;
    padding: 4vw 0;
}
.covid19-list img {
  margin: 0 auto;
    max-width: 100%;
    width: auto;
}
.covid19-list span {
  display: inline-block;
  text-align: center;
  padding: 15px 0;
}
.covid19-box
{
    background: #EEF3F8;
    max-width: 900px;
    margin: 0 auto;
}
.covid19-ttl
{
    background: #548BE5;
    color: #FFFFFF;
    text-align: center;
    font-size: max(1.2vw , 20px);
    padding: 10px 0;
}
.covid19-box p
{
    padding: 3vw;
}
/*==================================================
フッター
===================================*/
#footer {
  background-color: #CFD6DE;
  padding: 55px 0 0;
}
.footer-wrap {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-wrap .flex-2:first-of-type {
  padding: 0 5%;
}
.footer-wrap .biz-hour
{
    width: 60%;
}
.footer-wrap .logo {
  width: 80%;
  margin: 0 auto;
}
.footer-wrap .logo img {
  width: 100%;
}
.footer-wrap .ad {
  margin: 25px auto;
}
.f-reserve {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.f-reserve .reserve {
  width: 100%;
  padding: 10px 0;
}
.f-reserve .tel {
  color: #FFFFFF;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
    font-size: max(1.6vw , 18px);
}
.f-reserve .web {
  background-image: url("img/top/web.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.footer-wrap .access {
  background: #EFEFEF;
  border-radius: 30px;
  padding: 25px 5%;
  position: relative;
  z-index: 1;
}
.footer-wrap .access .ttl {
  font-size: 30px;
  color: #548BE5;
  position: absolute;
  top: -20px;
  left: 30px;
  z-index: 1;
    border-bottom: none;
}
.footer-wrap .access .item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}
.footer-wrap .access .item .img {
  width: 20%;
}
.footer-wrap .access .item .ja {
  width: 80%;
  font-size: 20px;
}
.footer-wrap .access .item .ja span
{
    color: #548BE5;
}
.footer-wrap .biz-flex {
  width: 100%;
  margin: 50px auto;
}
.map iframe {
  display: block;
}
.copyright {
  padding: 15px 0;
  background: #548BE5;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
}
.card
{
    max-width: calc(740px + 6%);
    padding: 3%;
    margin: 0 auto;
}
/*==================================================
ページトップボタン
===================================*/
#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: #9A8C82;
  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-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 60vh;
  position: relative;
  z-index: 1;
}
#page-ttl {
  text-align: center;
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
#page-ttl .ja {
  font-size: 50px;
}
#page-ttl .en {
  font-size: 30px;
}
.section {
  padding-top: 100px;
}
.sec-ttl {
  max-width: 1500px;
  margin: 0 auto 60px;
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 40px 0;
  background: #90C3DE;
  color: #fff;
  font-size: 40px;
  font-weight: normal;
}
.sec-ttl::before {
  content: "";
  border-top: 80px solid rgba(255, 255, 255, 0.50);
  border-right: 120px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.sec-ttl::after {
  content: "";
  border-top: 80px solid transparent;
  border-right: 120px solid rgba(255, 255, 255, 0.50);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.policy {
  padding: 25px 0;
  background: #F9F4F1;
}
.policy .en {
  font-size: 45px;
  color: #9A8C82;
  margin-bottom: 45px;
}
.policy .txt {
  width: 70%;
  margin: 0 auto;
}
.clinic-info {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.clinic-info dt {
  width: 180px;
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #548BE5;
    background: #EEF3F8;
}
.clinic-info dd {
  width: calc(100% - 180px);
  padding: 15px;
  border-bottom: 1px solid #548BE5;
}
.clinic .flex-3
{
    max-width: 350px;
}
.access_box
{
    max-width: 600px;
    margin: 3rem auto 3%;
    background: #EEF3F8;
    padding: 20px 3vw 3vw;
}
.access_ttl
{
    text-align: center;
    color: #548BE5;
    margin-top: -35px;
    margin-bottom: 2rem;
    font-size: max(1.8vw , 20px);
}
.access_box p
{
    text-align: center;
}
.access_txt
{
    position: relative;
    color: #548BE5;
    text-align: center;
    margin-bottom: 3%;
}
.access_txt::before
{
    content: "";
    background: url("img/clinic/access_icon.png")no-repeat center/contain;
    position: absolute;
    left: 7vw;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
}

.biz-flex {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
}
.facility .img img {
  margin: 0 auto;
}
.facility p {
  padding: 10px 0;
}
.facility li {
  margin-bottom: 30px;
}
#faq .wrap {
  margin-bottom: 90px;
}
.qa-1 {
  width: 100%;
  margin-bottom: 7px;
  border: 1px solid #d6dde3;
  border-radius: 5px;
}
.qa-1 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}
.qa-1 summary::before, .qa-1 p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}
.qa-1 summary::before {
  color: #9A8C82;
  content: "Q";
}
.qa-1 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #333333b3;
  border-right: 3px solid #333333b3;
  content: '';
  transition: transform .5s;
}
.qa-1[open] summary::after {
  transform: rotate(225deg);
}
.qa-1 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 3em 1.5em;
  color: #333;
  transition: transform .5s, opacity .5s;
}
.qa-1[open] p {
  transform: none;
  opacity: 1;
}
.qa-1 p::before {
  color: #D5C1B7;
  line-height: 1.2;
  content: "A";
}
.img_ttl {
  text-align: center;
  color: #548BE5;
  font-size: max(1vw, 18px);
  font-weight: 600;
  padding: 20px 0;
  margin-bottom: 10px;
    background: #F0F1ED;
}
.gap3 {
  gap: 30px;
}
section:last-child {
  margin-bottom: 100px;
}
.sub_ttl
{
    font-size: max(1.2vw , 20px);
    margin-bottom: 3%;
}
.policy_inner
{
    max-width: calc(1000px + 6%);
    padding: 3%;
    margin: 0 auto;
}
/*==================================================
ドクター紹介ページ
===================================*/
.skill {
  padding: 25px 3%;
  background: #F2E3DB;
}
.skill .ttl {
  font-size: 20px;
  margin-bottom: 30px;
    width: 100%;
}
.skill ul li {
  margin-bottom: 10px;
}
.name {
  margin-top: 15px;
  font-size: 23px;
    padding-bottom: 15px;
    border-bottom: 1px solid #548BE5;
}
.name span {
  display: inline-block;
  font-size: 18px;
  padding-right: 15px;
}
.name span + span
{
    margin-left: 15px;
}
.staff {
  margin: 100px auto;
}
.doctor {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  padding-bottom: 60px;
}
.doctor::before {
  content: "";
  width: 100%;
  height: 85%;
  background: #F9F4F1;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.doctor .flex {
  align-items: center;
}
.doctor .ttl {
  font-size: 32px;
  margin-bottom: 25px;
  color: #9A8C82;
}
.interview {
  margin: 70px auto;
}
.interview .item {
  border-top: 5px solid #D5C1B7;
  border-bottom: 5px solid #D5C1B7;
  margin-bottom: 60px;
}
.interview .item .ttl {
  padding: 20px 0;
  font-size: 23px;
  border-bottom: 1px dashed #9A8C82;
}
.interview .item p {
  padding: 20px 0 50px;
}
.ttl {
  font-size: 30px;
  color: #9A8C82;
  width: 100%;
  margin-bottom: 35px;
}
.career_box
{
    padding: 6% 0;
    background: #8BC2F8;
}
.career_inner
{
    max-width: 900px;
    padding: 3vw;
    background: #FFFFFF;
    margin: 0 auto;
}
.career_ttl
{
    font-size: max(1.2vw , 22px);
    color: #548BE5;
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #548BE5;
}
.career li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.career dl {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.career dt
{
    width: 25%;
}
.career dd
{
    width: 70%;
    text-align: left;
}
/*==================================================
診療案内ページ
===================================*/
.medical .flex {
  margin-bottom: 50px;
}
.medical .flex .ttl {
  font-size: 30px;
  padding-bottom: 10px;
  color: #9A8C82;
  margin-bottom: 20px;
  border-bottom: 1px solid #D5C1B7;
    width: 100%;
}
.medical .flex-2 img {
  margin: 0 auto;
}
.re
{
    flex-direction: row-reverse;
}
#visiting .point .ttl {
  font-size: 30px;
  color: #D5C1B7;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-top: 100px;
}
#visiting .point .ttl::before {
  content: "";
  width: 90px;
  height: 5px;
  background: #D5C1B7;
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  z-index: 1;
}
#visiting .point .num {
  font-size: 30px;
  color: #D5C1B7;
  display: block;
  margin-bottom: -9px;
}
#visiting .point .list {
  justify-content: space-around;
  margin-bottom: 90px;
}
#visiting .point .list p.ja {
  font-size: 20px;
  color: #9A8C82;
}
.h4_ttl
{
    background: #548BE5;
    padding: 10px 0 10px 20px;
    font-size: max(1vw , 20px);
    color: #FFFFFF;
    margin-bottom: 3%;
}
.border_box
{
    padding: 3vw;
    border: 1px solid #548BE5;
    margin-bottom: 3%;
}
.check
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.check li {
    font-weight: bold;
    margin-bottom: 8px;
    padding-left: 27px;
    position: relative;
    width: 48%;
}
.check li::before {
    content: "";
    background: url("img/icon_check.png")no-repeat center;
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
}
.mb3
{
    margin-bottom: 3vw;
}
.merit
{
    background: #F1F1F1;
    padding: 20px;
    margin: 3% 0;
}
.merit .ttl
{
    font-size: max(1vw , 18px)!important;
    font-weight: 600; 
}
.hyou .ttl
{
    font-size: max(1vw , 18px)!important;
    font-weight: 600; 
}
.list_disc li
{
    list-style: disc;
    margin-left: 18px;
}
.table-bordered {
    border-collapse: collapse;
    border: solid 1px #ddd;
    width: 100%;
    margin-bottom: 6%;
}
.table-bordered th {
    width: 20%;
    font-weight: bold;
    text-align: left;
    background-color: #eeeeee;
}
.table-bordered th, .table-bordered td {
    border: solid 1px #ddd;
    padding: 10px;
    vertical-align: middle;
}
.table-bordered i {
    color: #FBBD04;
    font-weight: 900;
}

/*==================================================
採用情報ページ
===================================*/
.recruit-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.recruit-list dt {
  width: 300px;
  padding: 20px 0;
  background: #EEF3F8;
  border: 1px solid #548BE5;
  text-align: center;
}
.recruit-list dd {
  border: 1px solid #548BE5;
  width: calc(100% - 300px);
  padding: 20px 10px;
}
.comment {
  margin-bottom: 85px;
}
.comment .ttl {
  font-size: 30px;
  color: #9A8C82;
  width: 50%;
  border-bottom: 1px solid #D5C1B7;
  margin-bottom: 35px;
}
.comment .flex .txtbox {
  width: 70%;
  padding: 20px 2%;
  background: #F2E3DB;
}
.comment .flex .img {
  width: 30%;
}
.comment .flex .img img {
  margin: 0 auto;
}
.comment .item {
  margin-bottom: 30px;
}
.comment .item .ja {
  font-size: 20px;
  color: #9A8C82;
  margin-bottom: 10px;
}
.comment .img .name {
  text-align: center;
  font-size: 20px;
  padding-top: 20px;
  color: #9A8C82;
}
/*==================================================
料金表ページ
===================================*/
#price .txt {
  width: 70%;
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 20px;
}
.price {
  margin-bottom: 65px;
}
.price .ttl {
  width: 50%;
  margin-bottom: 30px;
  border-bottom: 3px solid #D5C1B7;
  font-size: 25px;
  padding-bottom: 5px;
  font-weight: normal;
}
.price .item {
  display: flex;
  border: 1px solid #707070;
}
.price .item .left {
  width: 30%;
  background: #A2A2A2;
  padding: 20px 0;
}
.price .item .right {
  width: 70%;
  padding: 20px 2%;
}
.price .item .fee {
  padding-bottom: 10px;
  border-bottom: 1px dashed #D5C1B7;
}
.price .item .detail {
  display: flex;
  flex-wrap: wrap;
}
.price .item .detail span {
  width: 220px;
  text-align: center;
  padding: 10px 0;
}
.price .item .detail div {
  padding: 10px 0;
  width: calc(100% - 220px);
}
/*==================================================
ふわっ
===================================*/
/* その場で */
.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;
}

/*==================================================
公式LINEフローティングバナー
===================================*/
#floating-line {
	position: fixed;
	right: 20px;
	bottom: 110px;
	z-index: 9999;
	width: 200px;
	background: #F2E3DB;
    padding: 20px;
    border-radius: 10px;
	transition: opacity 0.3s ease;
}

#floating-line:hover {
	opacity: 0.7;
}

#floating-line p {
	text-align: center;
	padding-bottom:5px;
}

#floating-line img {
	display: block;
	width: 40%;
	height: auto;
	margin: 0 auto;
}

#floating-line-close {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 28px;
	height: 28px;
	border: none;
	border-radius: 50%;
	background: #333;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}

/*==================================================
AIチャット
===================================*/
iframe[src*="nomoca-ai"],
iframe[src*="chatbot"] {
    right: -30px!important;
    bottom: 90px!important;
}