@charset "utf-8";
body {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo,
    "sans-serif";
  font-size: 20px;
  color: #707070;
  position: relative;
}
a {
  text-decoration: none;
  color: #707070;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
ul {
  list-style: none;
}
.white {
  color: #ffffff;
}
.blue {
  color: #066c9d;
}
.pink {
  color: #f4aeb8;
}
.purple {
  color: #b1a2c1;
}

/*==================================================
ヘッダー
===================================*/
#header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
.header-wrap {
  display: flex;
  padding: 10px 0;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
}
.header-logo {
  width: 22%;
}
.header-logo a {
  display: block;
}
.header-logo a:hover {
  opacity: 0.7;
}
.header-logo img {
  display: block;
  width: 70%;
}
.header-right {
  width: 60%;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}
.tel {
  display: block;
  width: 40%;
  background: #066c9d;
  text-align: center;
  font-size: 16px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  padding: 10px 0;
}
.tel span,
.web span {
  display: block;
}
.tel-txt {
  font-size: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ffffff;
}
.tel:hover,
.web:hover {
  opacity: 0.7;
}
.web {
  background: #b1a2c1;
  padding: 10px 0;
  text-align: center;
  width: 30%;
  position: relative;
}
.web-txt {
  font-size: 25px;
}
.web::before {
  content: "";
  width: 95%;
  height: 85%;
  display: block;
  border: 1px solid #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*==================================================
メインビジュアル
===================================*/
.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全体を覆い表示*/
}

#mainvisual {
  position: relative;
}
.cp {
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 30px;
  z-index: 5;
}
.f-45 {
  font-size: 45px;
}
.f-60 {
  font-size: 60px;
  font-weight: 600;
}
.cp-top span {
  display: block;
  text-align: center;
}
.cp-top {
  padding-bottom: 20px;
  border-bottom: 5px solid #ffffff;
}
.cp-btm {
  padding-top: 10px;
}

/*↓↓↓　グローバルナビ　↓↓↓*/
.nav-menu {
  background: #f4aeb8;
  width: 100%;
  padding: 45px 0;
}
.nav-menu-wrap {
  width: 100%;
  margin: 0 auto;
}
.menu {
  position: relative;
  width: 100%;
  text-align: center;
}
.menu > li {
  float: left;
  width: 16.6%;
  position: relative;
}

.menu > li a {
  display: block;
  color: #ffffff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 18px;
}

.menu > li:hover::before {
  content: "";
  width: 40px;
  height: 5px;
  background: #066c9d;
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
}

ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.menu > li:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.menu__second-level li a:hover {
  background: #f4aeb8;
}

/* 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: #f5e4e7;
  -webkit-transition: all 0.2s ease;
  transition: all 0.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: #707070;
}

/*========= スクロール途中でヘッダーが表示するためのCSS ===============*/

#fix-nav {
  /*fixedで上部固定*/
  position: fixed;
  width: 100%;
  z-index: 999; /*最前面へ*/
  background: #f4aeb8;
  top: 0;
  left: 0;
  display: none;
}

.fix-nav-wrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.fix-nav-list:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menu__fix {
  border-right: 3px dotted #3b2c1b;
  padding-right: 30px;
  margin-right: 30px;
  position: relative;
}
.menu__fix a {
  padding: 15px 0;
}
.fix-reserve {
  padding: 6px 25px;
}
.reserve-wrap {
  padding: 10px 30px;
  text-align: center;
}
.fix-nav-left {
  width: 85%;
  margin-right: auto;
}
.fix-nav-right {
  width: 40%;
  display: flex;
  justify-content: center;
}
.fix-tel {
  width: 65%;
}
.fix-web {
  width: 35%;
}

/*==================================================
ニュース
===================================*/
#news {
  background: #e5dcee;
  padding: 30px 0;
}
.container {
  width: 80%;
  margin: 0 auto;
}
.f-30 {
  font-size: 30px;
  font-weight: 600;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.news-content {
  width: 95%;
  margin: 50px auto 0;
  max-height: 400px;
  overflow-y: auto;
}
.news-item {
  margin-top: 20px;
  padding-bottom: 7px;
  padding-right: 10px;
  border-bottom: 1px dotted #707070;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  display: flex;
  align-items: flex-start;
}
.news-date {
  display: block;
  margin-right: 50px;
  flex-shrink: 0;
}
.news-content-wrapper {
  flex: 1;
}
.news-title {
  font-weight: bold;
  margin-bottom: 5px;
}
.news-text {
  line-height: 1.6;
}

/* single */
.news-single {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 90%;
  margin: 0 auto;
}

.news-detail {
  display: flex;
  align-items: flex-start;
  margin: 30px 10px;
  gap: 50px;
}

.news-meta {
  flex-shrink: 0;
}

.news-single-date {
  font-size: 20px;
}

.news-content-detail {
  flex: 1;
  line-height: 1.8;
  font-size: 20px;
}

.news-navigation {
  margin-top: 50px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-prev,
.nav-next,
.nav-list {
  flex: 1;
}

.nav-prev {
  text-align: left;
}

.nav-list {
  text-align: center;
}

.nav-next {
  text-align: right;
}

.nav-link {
  display: inline-block;
  padding: 10px 20px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.nav-link:hover {
  background: #e0e0e0;
}

/* category-news */
.news-category {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 90%;
  margin: 0 auto;
}

.news-container {
  width: 90%;
  margin: 0 auto;
}

.main-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin: 50px 0;
}

.content-area {
  flex: 3;
}

.sidebar {
  flex: 0.5;
}

.category-list {
  margin-bottom: 30px;
}

.category-list h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.category-link {
  display: inline-block;
  padding: 10px 0 0 0;
  text-decoration: none;
}

.category-link:hover {
  color: #666;
}

.category-item:first-of-type .category-count {
  margin-left: 17px;
}

.category-count {
  padding-left: 10px;
}

.news-list-item {
  margin-bottom: 30px;
  padding: 25px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.news-list-meta {
  margin-bottom: 10px;
}

.news-list-date {
  color: #666;
  font-size: 14px;
}

.news-list-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.news-list-title a {
  color: #333;
  text-decoration: none;
}

.news-list-title a:hover {
  color: #666;
}

.news-list-content {
  line-height: 1.7;
  color: #555;
}

.news-list-content a {
  color: #555;
  text-decoration: none;
}

.news-list-content a:hover {
  color: #333;
}

.read-more {
  font-weight: 500;
  margin-left: 10px;
}

.read-more:hover {
  text-decoration: underline;
}

.pagination {
  text-align: center;
  margin-top: 50px;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 10px 20px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
  margin: 0 5px;
}

.pagination a:hover {
  background: #e0e0e0;
}

/*==================================================
インフォメーションとブログ
===================================*/
#info {
  display: flex;
  width: 100%;
}
#info .info-wrap,
#info .blog {
  width: 50%;
  padding: 50px 0;
}
.info-inner,
.blog-inner {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.info-inner::before {
  content: "";
  width: 80px;
  height: 200px;
  background-image: url("../img/top/Information.png");
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -8%;
  transform: translateX(-50%);
}
.blog-inner::before {
  content: "";
  width: 80px;
  height: 220px;
  background-image: url("../img/top/Staff Blog.png");
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -8%;
  transform: translateX(-50%);
}
p.address {
  margin-bottom: 35px;
}
.biz-hour {
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.biz-hour th {
  padding: 5px;
}
.biz-hour td {
  text-align: center;
}
.blog {
  background: #f5e4e7;
}
.blog-content {
  margin-top: 15px;
  border-top: 1px dotted #707070;
  padding: 30px 0;
}
.blog-item {
  display: flex;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #707070;
  align-items: center;
}
.blog-txt {
  width: 80%;
  padding-left: 10px;
}
.blog-link {
  width: 50%;
  margin: 30px auto 0;
}
a.blog-btn {
  text-align: center;
  display: block;
  background: #066c9d;
  color: #fff;
  padding: 20px 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  position: relative;
}
.blog-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-bottom: 25px solid #ffffff;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.blog-btn:hover {
  opacity: 0.7;
}

.blog-content {
  max-height: 200px;
  overflow-y: auto;
}

.blog-item a {
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.thumbnail {
  margin-right: 20px;
  flex-shrink: 0;
}

.blog-txt span {
  display: block;
  font-size: 18px;
  padding-right: 10px;
}

.blog-txt p {
  font-size: 18px;
  padding-right: 10px;
}

/* single */
.blog-single {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-detail {
  display: flex;
  gap: 5%;
  margin: 30px 10px;
  align-items: flex-start;
}

.blog-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.blog-single-date,
.blog-content-detail {
  font-size: 20px;
}

.blog-image {
  flex-shrink: 0;
}

.blog-image img {
  max-width: 300px;
  height: auto;
  display: block;
}

.blog-text .blog-meta {
  font-size: 14px;
  color: #666;
}

.blog-navigation {
  margin-top: 50px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
}

/* category-blog */
.blog-category {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-category {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 90%;
  margin: 0 auto;
}

.blog-container {
  width: 90%;
  margin: 0 auto;
}

/*==================================================
コロナウイルス対策
===================================*/
#covid19 {
  padding: 5rem 0;
  background-image: url("../img/top/covid_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.accordion-001 {
  max-width: 1300px;
  margin: 0 auto;
  border: 3px solid #066c9d;
}
.accordion-001 summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  background-color: #ffffff;
  margin: 0 auto;
  color: #707070;
  font-weight: 500;
  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 #f4aeb8;
  border-right: 3px solid #f4aeb8;
  content: "";
  transition: transform 0.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 0.5s, opacity 0.5s;
}

.accordion-open[open] {
  transform: none;
  opacity: 1;
}
.covid19-flex {
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
}
.covid19-list {
  width: 30%;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}
.covid19-list img {
  width: 70%;
  margin: 0 auto;
}
.covid19-list span {
  display: inline-block;
  text-align: center;
  padding: 5px 0;
}

/*==================================================
キャンセルポリシー
===================================*/
#cancel-policy {
  padding: 5rem 0;
}
.accordion-002 {
  max-width: 1500px;
  margin: 0 auto;
  border: 3px solid #b1a2c1;
}
.accordion-002 summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  background-color: #ffffff;
  margin: 0 auto;
  color: #707070;
  font-weight: 500;
  font-size: 30px;
  cursor: pointer;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.accordion-002 summary::-webkit-details-marker {
  display: none;
}

.accordion-002 summary::after {
  font-size: 60%;
  background: #066c9d;
  color: #fff;
  border-radius: calc(16 / 1920 * 100vw);
  width: calc(160 / 1920 * 100vw);
  height: calc(31 / 1920 * 100vw);
  display: inline-block;
  text-align: center;
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  content: "OPEN";
  letter-spacing: 0.2em;
  line-height: 1.65;
}

.accordion-002[open] summary::after {
  content: "CLOSE";
}

.accordion-open {
  transform: translateY(-10px);
  opacity: 1;
  margin: 0;
  padding: 1em 2em 2em 2em;
  background: #ffffff;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion-open[open] {
  transform: none;
  opacity: 1;
}
.reserve-policy-wrap {
  width: 95%;
  margin: 0 auto;
}
p.txt-top {
  margin-bottom: 20px;
  font-weight: 600;
}
.cancel-item {
  margin: 20px auto;
}
.cancel-ttl {
  width: 100%;
  margin: 10px auto;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #066c9d;
  border-bottom: 1px solid #066c9d;
  color: #066c9d;
}
.cancel-ttl ul {
  padding-bottom: 10px;
}

/*==================================================
特徴
===================================*/
.inner1000 {
  max-width: 1000px;
  margin: 0 auto;
}
.fea-ttl {
  margin-bottom: 80px;
}
.fea-ttl-img {
  width: 60%;
  margin: 0 auto;
}
.fea-ttl-img img {
  width: 100%;
}
.fea-ttl-txt {
  border-bottom: double #333333 4px;
  border-top: double #333333 4px;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.7;
  text-align: center;
  font-size: 25px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.fea-bg {
  background-image: url("../img/top/fea_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.fea-content {
  padding-top: 80px;
  position: relative;
  z-index: 1;
  padding-bottom: 90px;
}
.fea-inner {
  width: 48%;
  padding-left: calc(40 / 1920 * 100vw);
  position: relative;
  background: rgba(255, 255, 255, 0.6);
}
.fea-txtbox {
  padding-top: 60px;
  padding-bottom: 40px;
}
.mgn-l {
  margin-left: auto;
}
.fea-txtbox .ttl {
  text-align: center;
  padding-bottom: 60px;
}
.fea-txtbox .txt {
  width: 75%;
  margin: 0 auto;
}
.fea01::before {
  position: absolute;
  content: "";
  background: url("../img/top/fea01_01.jpg") no-repeat center / cover;
  width: 54.1%;
  height: calc(560 / 1920 * 100vw);
  right: 0;
  top: 0;
  margin: auto;
  z-index: 0;
}
.fea02::before {
  position: absolute;
  content: "";
  background: url("../img/top/fea02_01.jpg") no-repeat center / cover;
  width: 54.1%;
  height: calc(560 / 1920 * 100vw);
  left: 0;
  top: 0;
  margin: auto;
  z-index: 0;
}
.fea03::before {
  position: absolute;
  content: "";
  background: url("../img/top/fea03_01.jpg") no-repeat center / cover;
  width: 54.1%;
  height: calc(560 / 1920 * 100vw);
  right: 0;
  top: 0;
  margin: auto;
  z-index: 0;
}
.fea-inner::before {
  content: "";
  width: 135px;
  height: 120px;
  background-image: url("../img/top/fea01_num.png");
  background-size: 100%;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fea02-inner::before {
  background-image: url("../img/top/fea02_num.png");
}
.fea03-inner::before {
  background-image: url("../img/top/fea03_num.png");
}
.fea02-btm {
  padding: 75px 0;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bg-white {
  background: #ffffff;
}
.flex-3 {
  width: 30%;
}
.fea02-item {
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}
.fea02-item img {
  width: 100%;
}
.white.f-30.ttl {
  background: #f4aeb8;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 20px;
}
.center {
  text-align: center;
}
.fea04 {
  position: relative;
}
.fea04::after {
  content: "";
  width: 100%;
  height: 20%;
  background: #066c9d;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.fea04-inner {
  background: rgba(255, 255, 255, 0.6);
  position: relative;
}
.fea04-inner::before {
  content: "";
  width: 135px;
  height: 120px;
  background-image: url("../img/top/fea04_num.png");
  background-size: 100%;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fea04-img {
  padding: 70px 0;
  width: 80%;
}
.fea04-inner::after {
  width: 97%;
  height: 96%;
  display: block;
  border: 1px solid #066c9d;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
}
.fea05 {
  background-image: url("../img/top/fea05_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 80px;
}
.fea05-ttl {
  max-width: 140px;
  margin: 0 auto;
  padding-top: 55px;
}
.flex-1 {
  width: 100%;
  margin-top: 30px;
}
.flex-2 {
  width: 47%;
}
.fea05-flex {
  position: relative;
  z-index: 1;
}
.fea05-flex::after {
  content: "";
  width: 100%;
  height: 70%;
  background: rgba(244, 174, 184, 0.6);
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.fea05-item {
  width: 80%;
  margin: 0 auto;
}
.fea05-item img {
  margin: 0 auto;
  display: block;
}
.fea05-txtbox {
  padding: 20px 0 50px;
}
.fea05-txt {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #fff;
}

.clinic-link {
  margin: 90px auto;
  padding: 40px 0;
}
.bg-purple {
  background: #e5dcee;
}
.link-btn {
  width: 25%;
  margin: 0 auto;
  position: relative;
}
.btn {
  padding: 15px 0;
  background: #fff;
  text-align: center;
  position: relative;
  display: block;
}
.btn:hover {
  opacity: 0.7;
}
.br-blue {
  border: 1px solid #066c9d;
}
.br-blue::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-bottom: 25px solid #066c9d;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.btn span {
  font-size: 20px;
  display: block;
}

/*==================================================
ご挨拶
===================================*/
#greeting {
  position: relative;
  margin-bottom: 120px;
  z-index: 1;
  padding-top: 60px;
}
#greeting::before {
  content: "";
  width: 30%;
  height: 58%;
  background: #066c9d;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#greeting::after {
  content: "";
  width: 470px;
  height: 515px;
  background-image: url("../img/top/greeting_bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.f-25 {
  font-size: 25px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.top-ttl {
  font-size: 65px;
  font-weight: bold;
  font-family: "Copperplate Gothic Bold";
  padding-bottom: 20px;
}
.greeting-ttl {
  position: relative;
}
.greeting-ttl::after {
  content: "";
  width: 75%;
  height: 1px;
  background: #707070;
  position: absolute;
  bottom: 50%;
  right: 0;
  transform: translateY(50%);
}
.content-wrap.txt-ttl {
  margin-bottom: 45px;
}
.txt p {
  margin-bottom: 30px;
}
.greeting-img {
  position: relative;
  z-index: 0;
}
.doctors-name {
  position: relative;
}
.doctor {
  position: absolute;
  bottom: -30px;
  right: -20px;
  z-index: 1;
  background: rgba(6, 108, 157, 0.7);
  padding: 20px;
  width: 50%;
}
.doctor span {
  display: inline-block;
  padding-right: 10px;
}

/*==================================================
スライドショー
===================================*/
@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(200vw / 6);
}
.d-demo__item > img {
  width: 100%;
  margin: 0 auto;
}

/*==================================================
診療案内
===================================*/
#top-medical {
  margin-top: 120px;
}
.medical-list {
  width: 90%;
  margin: 55px auto;
}
.list {
  margin-top: 90px;
  justify-content: space-around;
}
.list-btn {
  position: relative;
  display: block;
}
.list-btn:hover {
  opacity: 0.7;
}
.list-btn img {
  width: 100%;
}
.list-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 0;
  background: rgba(255, 255, 255, 0.65);
  width: 100%;
}
ul.list-explain {
  padding-top: 30px;
}
.list-explain li {
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #707070;
  padding-left: 20px;
}
.list-explain li::before {
  content: "✓";
}

/*==================================================
診療案内_下の3つ
===================================*/
.medical-btm {
  padding-top: 100px;
}
.med-btm-inner {
  width: 60%;
  position: relative;
}
.med-img {
  width: 40%;
}
.f-40 {
  font-size: 40px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 700;
}
.med-ttl {
  position: relative;
  z-index: 1;
}
.med-ttl span {
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  z-index: -1;
  font-size: 40px;
}
.med-btm-inner .txtbox {
  width: 70%;
  margin: 0 auto;
  padding: 50px 0;
}
.med-point {
  position: absolute;
  bottom: 10px;
  right: 6%;
  width: 28%;
  transform: translateX(50%);
}
.med-link {
  width: 50%;
  margin: 0 auto;
}
.br-purple {
  border: 1px solid #b1a2c1;
}
.br-purple::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-bottom: 25px solid #b1a2c1;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.br-pink {
  border: 1px solid #f4aeb8;
}
.br-pink::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-bottom: 25px solid #f4aeb8;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.even {
  flex-direction: row-reverse;
}
.bg-blue {
  background: #d5e5ec;
}
.bg-pink {
  background: #f5e4e7;
}
.med-point.med07 {
  left: -22%;
}

/*==================================================
お問い合わせ
===================================*/
#contact {
  padding: 70px 0;
}
.contact-bg {
  background-image: url("../img/top/contact.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}
.contact-wrap {
  width: 80%;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.75);
  position: relative;
}
.contact-wrap::before {
  content: "";
  width: 97%;
  height: 90%;
  border: 1px solid #707070;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-inner {
  width: 80%;
  margin: 0 auto;
  padding: 70px 0;
}
.contact-link {
  width: 95%;
  margin: 55px auto 0;
}
.contact-link .tel,
.contact-link .web {
  width: 45%;
}

/*==================================================
採用情報
===================================*/
section#top-recruit {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.recruit-btn {
  width: 50%;
  margin: 30px auto;
}
#top-recruit::after {
  content: "";
  width: 100%;
  height: 330px;
  background-image: url("../img/top/recruit_bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

/*==================================================
フッター
===================================*/
.footer-top {
  padding: 80px 0;
}
.footer-left img {
  display: block;
  margin: 0 auto 30px;
  width: 40%;
}
.footer-web {
  width: 50%;
  margin: 10px auto;
}
.footer-web .web {
  display: block;
  width: 100%;
}
.white.biz-table {
  margin-bottom: 40px;
}
.flex.footer-bnr a {
  width: 45%;
  display: block;
}
.biz-table .biz-hour {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #fff;
}
.footer-btm {
  margin: 50px auto 0;
}
.copyright {
  font-size: 16px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  padding: 10px 0;
}

/*==================================================
下層ページ　メインビジュアル
===================================*/
#mv {
  position: relative;
}
.page-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}
.f-50 {
  font-size: 50px;
  font-weight: bold;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

/*==================================================
医院紹介ページ
===================================*/
#policy,
#safety,
#biz-hour,
#access {
  padding-top: 80px;
}
#access {
  padding-bottom: 100px;
}
.title {
  padding: 35px 0;
  border-top: 5px solid #707070;
  border-bottom: 5px solid #707070;
  position: relative;
}
.title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #707070;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.title::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #707070;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.content {
  padding-top: 75px;
}
.content-ttl {
  padding-bottom: 25px;
  border-bottom: 1px solid #707070;
  margin-bottom: 40px;
}
.content-ttl span {
  display: block;
}
.content-wrap {
  padding: 40px 0 30px;
}
.biz-hour-img img {
  margin: 0 auto;
  display: block;
}
.access-ttl {
  background: #f4aeb8;
  padding: 30px 0;
}
.access-wrap {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}
.access-wrap img {
  display: block;
  margin: 0 auto;
  padding-top: 10px;
}

/*==================================================
院長紹介ページ
===================================*/
#doctor {
  padding-top: 80px;
  padding-bottom: 100px;
}
.name {
  background: #b1a2c1;
  padding: 15px 0;
  width: 45%;
}
.name span {
  display: inline-block;
}
.doctor-img {
  position: relative;
  z-index: 1;
  display: block;
}
.doctor-img::before {
  content: "";
  width: 580px;
  height: 100%;
  background: #e5dcee;
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: -1;
}
.skill {
  margin: 50px auto;
}
.skill-wrap {
  padding: 50px 0;
}
.skill-item {
  border: 1px solid #b1a2c1;
  padding-top: 20px;
}
.skill-item .txtbox {
  width: 90%;
}
.txt dl {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.txt dt {
  width: 30%;
  display: block;
  padding-right: 15px;
}
.txt dd {
  width: 70%;
}

/*==================================================
採用情報ページ
===================================*/
.recruit-wrap {
  padding-top: 80px;
  width: 90%;
  margin: 0 auto;
}
.recruit-list {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 120px;
}
.recruit-list dl {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  border: 1px solid #ccc;
  border-bottom: none;
}
.recruit-list dt {
  background: #066c9d;
  padding: 10px 0;
  width: 250px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  color: #ffffff;
  text-align: center;
}
.recruit-list dd {
  background: #fff;
  padding: 10px 0 10px 10px;
  width: calc(100% - 250px);
  border-bottom: 1px solid #ccc;
}
#recruit .img {
  padding: 40px 0 0;
}
#recruit img {
  display: block;
  margin: 0 auto;
}

/*==================================================
診療案内ページ
===================================*/
#medical,
#general,
#kids {
  padding-top: 80px;
}
#kids {
  padding-bottom: 100px;
}
.payment {
  padding: 55px 0 65px;
  margin: 80px auto;
}
.payment-item {
  width: 24%;
  padding: 38px 0;
  border-radius: 50%;
  border: 3px solid #066c9d;
  margin: 20px auto;
}
.payment-img img {
  margin: 10px auto 0;
  display: block;
}
.shouni-kyousei {
  width: 65%;
  margin: 80px auto 0;
  padding: 40px 0 60px;
  text-align: center;
}
.shouni-kyousei-txt {
  margin: 50px auto;
}
.shouni-kyousei-link {
  width: 50%;
  margin: 0 auto;
}

/*==================================================
デンタルドックページ
===================================*/
#dental-dock,
.flow {
  padding-top: 80px;
}
.flow {
  padding-bottom: 80px;
}
.flow-flex {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid #707070;
}
.flow-num {
  color: #fff;
  background: #f4aeb8;
  border-radius: 50%;
  line-height: 80px;
  width: 80px;
  text-align: center;
  height: 80px;
}
.flow-txtbox {
  margin-left: 35px;
  width: calc(100% - 80px);
}

/*==================================================
セレックページ
===================================*/
.section {
  margin: 80px auto 100px;
}
.border-btm {
  padding-bottom: 20px;
  border-bottom: 1px solid #b1a2c1;
}
.wrap {
  width: 90%;
  margin: 0 auto;
}
.ttl2 {
  padding-bottom: 30px;
}
.ttl2 span {
  display: block;
}

/*==================================================
審美歯科ページ
===================================*/
.point {
  margin: 40px auto;
  width: 80%;
  padding: 50px 0;
  background: #d5e5ec;
}
.point span {
  display: block;
  text-align: center;
}
.points-3 {
  margin: 20px auto;
}
.points-3 li {
  width: 90%;
  margin: 0 auto 30px;
}
.points-3 .ttl {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 600;
  font-size: 25px;
}
.price {
  width: 85%;
  margin: 40px auto;
}
.price dl {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  border: 1px solid #ccc;
  border-bottom: none;
}
.price dt {
  background: #f4aeb8;
  padding: 20px 0;
  width: 400px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  color: #ffffff;
  text-align: center;
}
.price dd {
  background: #fff;
  padding: 20px 0 20px 10px;
  width: calc(100% - 400px);
  border-bottom: 1px solid #ccc;
}
.border-btm-pink {
  border-bottom: 1px solid #f4aeb8;
}

.home-merit {
  border: 5px solid #066c9d;
  padding: 30px 2%;
  margin: 50px auto;
  width: 80%;
}
.home-merit .ttl {
  display: inline-block;
  font-weight: 600;
  padding: 5px;
  margin: 20px auto;
  background: #f5e4e7;
}
.home-merit .merit {
  background: #d5e5ec;
}
.home-merit .merit::before {
  display: none;
}
.home-merit ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.home-merit ul li {
  width: 45%;
  padding-left: 40px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.home-merit ul li::before {
  content: "";
  background-image: url("../img/check.svg");
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.home-merit .check02 li::before {
  background-image: url("../img/check02.svg");
}

/*==================================================
矯正歯科ページ
===================================*/
.border-btm-blue {
  border-bottom: 1px solid #066c9d;
}
.inner {
  padding: 50px 0;
}
.check {
  width: 90%;
  margin: 0 auto;
  padding-top: 70px;
}
.check li {
  position: relative;
  margin-bottom: 13px;
}
.check li::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("../img/check.svg");
  background-size: 100%;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

/*==================================================
ホワイトニングページ
===================================*/
.price-blue {
  background: #066c9d !important;
}
.flow-num-blue {
  background: #066c9d !important;
}

/*==================================================
入れ歯ページ
===================================*/
.price-purple {
  background: #b1a2c1 !important;
}
.faq {
  background-color: #f0f5f9;
  width: 100%;
}

.faq:not([open]) {
  margin-bottom: 20px;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  border-radius: 5px;
  background-color: #b1a2c1;
  font-weight: 600;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
  transition: transform 0.3s;
}

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

.faq p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 2em 2em 2em;
  color: #707070;
  transition: transform 0.5s, opacity 0.5s;
}

.faq[open] p {
  transform: none;
  opacity: 1;
}

/*==================================================
インプラントページ
===================================*/
.check img {
  display: block;
  margin-bottom: 20px;
}
.merit,
.demerit {
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 0 20px;
  position: relative;
  z-index: 1;
}
.merit::before {
  content: "";
  width: 300px;
  height: 300px;
  background-image: url("../img/implant/implant06.png");
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.demerit::before {
  content: "";
  width: 300px;
  height: 300px;
  background-image: url("../img/implant/implant07.png");
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.merit-list,
.demerit-list {
  width: 90%;
  margin: 20px auto;
}
.demerit-list li,
.merit-list li {
  border-bottom: 1px dotted #707070;
  margin-bottom: 10px;
}
.merit-list li::before,
.demerit-list li::before {
  content: "✓";
  display: inline-block;
  margin-right: 10px;
}

#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: #b1a2c1;
  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;
}

/*==================================================
お問い合わせページ
===================================*/
.info-wrap {
  padding-top: 80px;
  width: 90%;
  margin: 0 auto;
}
.info-list {
  width: 90%;
  margin: 75px auto;
}
.info-item {
  margin-bottom: 50px;
}
.info-item-label {
  margin-bottom: 20px;
  padding: 10px 15px;
  border-left: solid 5px #b1a2c1;
  border-bottom: solid 1px #b1a2c1;
}
.info-item-select {
  display: inline-flex;
  align-items: center;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}
.info-item-select::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.info-item-select select {
  appearance: none;
  min-width: 230px;
  cursor: pointer;
  width: 100%;
  padding: 15px 20px;
}
.info-item-input {
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  padding: 10px 20px;
}
.info-btn {
  text-align: center;
}
.submit-btn {
  background: #f4aeb8;
  padding: 20px 50px;
  color: #ffffff;
  margin: 0 auto;
  border-radius: 6px;
}
.submit-btn:hover {
  opacity: 0.8;
}

.required {
  color: red;
  font-size: 14px;
  margin-left: 5px;
}
