@charset "UTF-8";
/*
 * cmn_layout.css
 */
/* ==========================================================
!HTML5 elements
========================================================== */
header,
footer,
nav,
main,
section,
aside,
article {
  display: block;
}
figure,
figcaption {
  margin: 0;
  padding: 0;
}
/* ==========================================================
!Reseting
========================================================== */
/* 全ての要素のbox-sizingをデフォルトでborder-boxにする */
:root {
  box-sizing: border-box;
}
*,
::before,
::after {
  border-width: 0;
  border-style: solid;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
}
body {
  color: #333333;
  font-family: "ヒラギノ角ゴシック", "YuGothic", "游ゴシック体", "Yu Gothic",
    "游ゴシック", "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro",
    "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1.6em;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-size-adjust: none;
  background: #ffffff none;
  overflow-scrolling: touch;
}

/* Hack for Safari 7.1-8.0 */
_::-webkit-full-page-media,
_:future,
:root body {
  font-feature-settings: "pkna";
}

/* 768px以上（タブレット） */
@media only screen and (min-width: 768px), print {
  body {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/* 960px以上（大きめタブレット 横位置とか） */
@media only screen and (min-width: 960px), print {
  body {
    font-size: 20px;
    font-size: 2rem;
  }
}
body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td {
  margin: 0;
  padding: 0;
}
input,
textarea {
  margin: 0;
  font-size: 100%;
}
label {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}
fieldset,
img {
  border: 0;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-weight: normal;
  font-style: normal;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q:after,
q:before {
  content: "";
}
a,
input {
  /* outline: none; */
}
abbr,
acronym {
  border: 0;
}
/* ==========================================================
!Clearfix
========================================================== */
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}
/* ==========================================================
!Layout
========================================================== */
html {
  overflow-y: scroll;
}
body {
  text-align: center;
}

@media print {
  html,
  html body {
    *zoom: 0.65;
  }
}
/* ==========================================================
!Wrapper
========================================================== */
#wrapper {
  margin: 0 auto 0;
  text-align: center;
  padding: 120px 0 0 0;
}

@media only screen and (max-width: 960px) {
  #wrapper {
    padding: 12vw 0 0 0;
  }
}

@media only screen and (max-width: 640px) {
  #wrapper {
    padding: 10vw 0 0 0;
  }
}

/* added20200325 */
@media only screen and (max-width: 767px) {
  #wrapper {
    padding: 56px 0 0 0;
  }
}

/* ==========================================================
!Header_Fixed
========================================================== */
#header {
  position: fixed;
  z-index: 100;
  width: 100%;
  background: #0f2a4b;
}
#header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2%;
}
#header .inner #hd_logo {
  height: 100%;
}
#header .inner #hd_btn {
}

@media only screen and (max-width: 640px) {
  #header .inner #hd_logo {
    width: 40%;
  }
  #header .inner #hd_btn {
    width: 50%;
    text-align: right;
  }
}

/* ==========================================================
!Display
========================================================== */

/*表示するかしないか
--------------------------*/
.only_sp {
  display: none;
}
.only_pc {
  display: block;
}

@media only screen and (max-width: 640px) {
  .only_sp {
    display: block;
  }
  .only_pc {
    display: none;
  }
}
/*改行するかしないか
--------------------------*/
.only_sp_br {
  display: inline;
}
.only_pc_br {
  display: block;
}

@media only screen and (max-width: 640px) {
  .only_sp_br {
    display: block;
  }
  .only_pc_br {
    display: inline;
  }
}
/* ==========================================================
!Contents
========================================================== */
#contents {
  margin: 0 auto;
  text-align: center;
}
/* ==========================================================
!Section Common
========================================================== */
.outer {
  margin: 0 auto;
  text-align: center;
}
/* Android */
.outer p,
.outer li,
.outer dt,
.outer dd,
.outer figcaption {
  background: url(../img/img_android01.png);
  text-align: left;
}
.inner {
  padding: 0 5% 0 5%;
  text-align: left;
}

@media only screen and (min-width: 960px), print {
  .outer {
    max-width: calc(1000px);
    margin: 0 auto;
    text-align: left;
  }
  .inner {
    padding: 0 2% 0 2%;
    text-align: left;
  }
}
/* ==========================================================
!Pagetop
========================================================== */
/* fixed
------------------------------------ */
.pagetop_fixed {
  display: none;
  position: relative;
}
.pagetop_fixed p {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 8.928%;
  cursor: pointer;
}
/* ==========================================================
!Footer
========================================================== */
#footer {
  background: #0f2a4b;
  padding: 30px 0;
  text-align: center;
  color: #b9a245;
}
#footer #ft_copyright small {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
}
/* ==========================================================
!H(n)eading
========================================================== */

/* basic01
------------------*/
.h2_basic01 h2 {
  margin: 12% auto 9% auto;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: #111;
}
.h2_basic01 h2:after {
  content: "";
  display: block;
  width: 130px;
  height: 5px;
  margin: 3% auto;
  background: #00a0e9;
}
.h2_basic01 h2 .h2_small {
  display: block;
  font-size: 60%;
}

@media only screen and (max-width: 960px) {
  .h2_basic01 h2 {
    font-size: calc(4rem - 1vw);
  }
  .h2_basic01 h2:after {
    width: 130px;
    height: 3px;
  }
}

@media only screen and (max-width: 640px) {
  .h2_basic01 h2 {
    font-size: 7vw;
    margin: 14% auto 9% auto;
  }
  .h2_basic01 h2:after {
    width: 120px;
  }
}
/* basic02
------------------*/
.h2_basic02 h2 {
  position: relative;
  padding: 1% 0;
  margin: 10% auto 5% auto;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background: #00a0e9;
}
.h2_basic02 h2:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #00a0e9 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

@media only screen and (max-width: 960px) {
  .h2_basic02 h2 {
    font-size: calc(4rem - 1vw);
    padding: 2% 0;
  }
}

@media only screen and (max-width: 640px) {
  .h2_basic02 h2 {
    font-size: 7vw;
    padding: 3% 0;
  }
  .h2_basic02 h2:after {
    bottom: -10px;
    border-width: 10px 10px 0 10px;
  }
}
/* ==========================================================
!Table
========================================================== */
table.table_price {
  width: 100%;
}
table.table_price th,
table.table_price td {
  padding: 17px 10px;
  border-bottom: solid 1px #dddddd;
}
table.table_price td.icl {
  background: #fff4dc;
  font-weight: bold;
  border-bottom: solid 1px #dbd1bb;
}
table.table_price th.icl {
  background: #ff8000;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 2.5rem;
  border-bottom: solid 1px #f97c00;
  border-radius: 5px 5px 0 0;
}
table.table_price th.lasic {
  background: #dcdcdc;
  color: #111111;
  text-align: center;
  font-weight: bold;
  border-top: solid 30px #ffffff;
}
table.table_price th.list {
  white-space: nowrap;
  padding-left: 5px;
  font-weight: bold;
  font-size: 85%;
}
table.table_price .icon_circle,
table.table_price .icon_triangle,
table.table_price .icon_ng {
  display: block;
  padding-left: 40px;
}
table.table_price .icon_circle {
  background: url("../img/icon_circle.png") left center no-repeat;
}
table.table_price .icon_triangle {
  background: url("../img/icon_triangle.png") left top no-repeat;
}
table.table_price .icon_ng {
  background: url("../img/icon_ng.png") left top no-repeat;
}

@media only screen and (max-width: 960px) {
  table.table_price td {
    padding: 10px 4px;
    vertical-align: top;
    text-align: center;
  }
  table.table_price th {
    padding: 10px 4px;
  }
  table.table_price .icon_circle,
  table.table_price .icon_triangle,
  table.table_price .icon_ng {
    display: block;
    padding-top: 40px;
    padding-left: 4px;
  }
  table.table_price .icon_circle {
    background: url("../img/icon_circle.png") top center no-repeat;
  }
  table.table_price .icon_triangle {
    background: url("../img/icon_triangle.png") top center no-repeat;
  }
  table.table_price .icon_ng {
    background: url("../img/icon_ng.png") top center no-repeat;
  }
}
/* ==========================================================
!Buttons
========================================================== */
/* buttons
-------------------------------- */
a.buttonGhostGold:link,
a.buttonGhostGold:visited {
  margin: 0;
  padding: 20px 30px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  background: none;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  color: #b9a245;
  border: 1px solid #b9a245;
  -webkit-transition: border-color 0.4s, color 0.4s;
  transition: border-color 0.4s, color 0.4s;
  text-decoration: none;
}
a.buttonGhostGold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #b9a245;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale3d(0.7, 1, 1);
  transform: scale3d(0.7, 1, 1);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
a.buttonGhostGold,
a.buttonGhostGold::before {
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
a.buttonGhostGold:hover,
a.buttonGhostGold:active {
  color: #ffffff;
  border-color: #b9a245;
  text-decoration: none;
}
a.buttonGhostGold:hover::before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@media (min-width: 768px) {
  /* ボタン本体：中身のはみ出しを隠す（スケール演出用） */
  a.buttonGhostGold.appointment_btn {
    position: relative;
    overflow: hidden;
    z-index: 0; /* 文字を前面、擬似要素は背面に描画 */
  }

  /* テキスト＆枠：初期は白文字＋金ボーダー */
  a.buttonGhostGold.appointment_btn:link,
  a.buttonGhostGold.appointment_btn:visited {
    color: #ffffff !important;
    border-color: #b9a245;
    text-decoration: none;
  }

  /* 金のベース（常時表示） */
  a.buttonGhostGold.appointment_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #b9a245; /* ゴールド */
    opacity: 1;
    transform: none;
    z-index: -2; /* 一番下 */
  }

  /* 紺のオーバーレイ（最初は小さく＆透明） */
  

  /* ホバー時：紺が中央→外へ広がって塗り替わる／文字＆ボーダーは金 */
  a.buttonGhostGold.appointment_btn:hover,
  a.buttonGhostGold.appointment_btn:active,
  a.buttonGhostGold.appointment_btn:focus {
    color: #0f2a4b !important; /* 文字をゴールド */
    text-decoration: none;
  }

  a.buttonGhostGold.appointment_btn:hover::after,
  a.buttonGhostGold.appointment_btn:active::after,
  a.buttonGhostGold.appointment_btn:focus::after {
    opacity: 1; /* フェードイン */
    transform: scaleX(1); /* 等倍まで拡大＝中央から外へ */
  }
}
@media only screen and (max-width: 640px) {
  a.buttonGhostGold:link,
  a.buttonGhostGold:visited {
    font-size: 4vw;
    padding: 4% 5%;
  }
  a.buttonGhostGold:hover,
  a.buttonGhostGold:active {
    padding: 4% 5%;
  }
}

/* ==========================================================
!Text Link
========================================================== */
.txtlink_basic01 li a span {
  /* WCAG 2.0 C7 */
  overflow: hidden;
  position: absolute;
  top: -10px;
  width: 1px;
  height: 1px;
}
/* ==========================================================
!CV Area
========================================================== */
.reserve {
  background: url("../img/bg_reserve.jpg");
  background-size: cover;
}
.reserve h2 {
  padding: 2% 0;
  font-weight: bold;
  font-size: 3.2rem;
  color: #ffffff;
  position: relative;
  text-shadow: 1px 1px 1px rgba(0, 105, 166, 0.8);
}
.reserve h2:before {
  content: "＼";
  padding-right: 10px;
}
.reserve h2:after {
  content: "／";
  padding-left: 10px;
}
.reserve h2 .free {
  display: inline-block;
  box-shadow: 1px 1px 1px 1px rgba(0, 105, 166, 0.8);
  margin: 0 10px 0 0;
  font-weight: bold;
  letter-spacing: -1px;
  text-align: center;
  font-size: 70%;
  padding: 3px 8px;
  border-radius: 2px;
  background: #ffffff;
  color: #0588c4;
  vertical-align: 3px;
  text-shadow: none;
}
.reserve .outer {
  padding: 0 1% 2% 1%;
}
.reserve .inner {
  position: relative;
  padding: 2% 2% 2% 16%;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 6px 3px rgba(0, 105, 166, 0.5);
}
.reserve .inner:after {
  content: "";
  display: block;
  background: url("../img/img_reserve_girl.png") bottom left no-repeat;
  background-size: contain;
  width: 13%;
  height: 120%;
  position: absolute;
  bottom: 0;
  left: 1%;
  line-height: 0;
}
.reserve .tel {
  float: left;
  width: 50%;
}
.reserve .form.google {
  margin: 0 auto;
  width: 90%;
}
.reserve .form.yahoo img {
  margin: 10px 0 0 20px;
}
.reserve .form.tiktok img {
  margin: 10px 0 0 20px;
}

@media only screen and (max-width: 767px) {
  .reserve h2 {
    font-size: 7vw;
    line-height: 1.2;
    padding: 3% 0 0 0;
  }
  .reserve h2 .br_sp {
    display: block;
  }
  .reserve h2:before {
    position: absolute;
    left: 10%;
    top: 45%;
    padding-right: 0;
  }
  .reserve h2:after {
    position: absolute;
    right: 10%;
    top: 45%;
    padding-left: 0;
  }
  .reserve .outer {
    padding: 2%;
  }
  .reserve .inner {
    position: relative;
    padding: 2%;
    background: #ffffff;
    border-radius: 5px;
  }
  .reserve .inner:after {
    content: none;
  }
  .reserve h2 .free {
    margin: 0 5px 0 0;
    font-size: 60%;
    padding: 3px 5px;
    vertical-align: 4px;
  }
  .reserve .tel,
  .reserve .form.google {
    float: none;
    width: 90%;
    margin: 5% auto;
  }
  .reserve .tel img,
  .reserve .form.google img {
    width: 100%;
  }
  .reserve .form.yahoo img {
    margin: 0;
  }
  .reserve .form.tiktok img {
    margin: 0;
  }
}
/* ==========================================================
!about
========================================================== */
#about {
  background: #d1f2fd url("../img/img_eye.png") top right no-repeat;
  background-size: contain;
}
#about .h2_basic01 h2 {
  margin: 2% 0;
}
#about .h2_basic01 h2:after {
  content: none;
}
#about p {
  font-size: 1.8rem;
  line-height: 2;
}
#about .bold {
  display: inline-block;
}

@media only screen and (max-width: 640px) {
  #about {
    background-image: none;
  }
}
/* 480px以上（大きめSP） */
/* 640px以上（ファブレット） */
/* 768px以上（タブレット） */
/* 960px以上（大きめタブレット 横位置とか） */
/* 1024px以上（基本のPC） */
/* 1200px以上（大きめPC） */

/* ==========================================================
!feature
========================================================== */
#feature .feature_txt {
  float: left;
  width: 55%;
}
#feature .feature_img {
  float: right;
  width: 40%;
}

@media only screen and (max-width: 640px) {
  #feature .feature_txt,
  #feature .feature_img {
    float: none;
    width: 100%;
  }
  #feature .feature_img img {
    width: 100%;
    margin: 2% 0 0 0;
  }
}
/* ==========================================================
!Price
========================================================== */
#price .price_list {
  margin: 0 auto;
}
#price .price_list li {
  float: left;
  width: 50%;
}
#price .price_list li:first-child {
  border-right: solid 1px #cccccc;
  padding: 5px 5% 5px 0;
  margin-bottom: 9%;
  text-align: right;
}
#price .price_list li:last-child {
  padding: 5px 0 5px 5%;
  margin-bottom: 9%;
}
#price .price_list img {
  width: 100%;
}

@media (max-width: 640px) {
  #price .price_list li:first-child,
  #price .price_list li:last-child {
    float: none;
    border: none;
    width: 80%;
    margin: 0 auto;
    padding: 5% 0;
  }
}
/* ==========================================================
!Flow
========================================================== */
#flow .swiperContainer {
  position: relative;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 90px;
  padding-bottom: 32px;
  width: 596px;
  overflow: hidden;
}
#flow .swiperContainer .swiper-slide img {
  width: 64%;
  /* margin-bottom: 80px; */
  margin-bottom: 9vh;
}
#flow .swiper-pagination-bullet-active {
  background-color: #4781ca;
}
#flow .step {
  font-size: 20px;
}
#flow .step > span {
  font-size: 16px;
}
#flow .step span span {
  font-size: 20px;
}
#flow .swiper-slide p {
  max-width: 520px;
  text-align: left;
}
#flow .swiper-button-next,
#flow .swiper-button-prev {
  top: 160px;
}
#flow .swiper-pagination {
  top: 310px;
}

@media (max-width: 640px) {
  #flow .swiperContainer {
    width: 100%;
    margin-bottom: 40px;
    padding-bottom: 32px;
    overflow: hidden;
  }
  #flow .swiper-pagination {
    /* top: 45vw; */
    top: 30vh;
  }
  #flow .swiper-button-next,
  #flow .swiper-button-prev {
    top: 22%;
  }
}
#flow .step {
  color: #4781ca;
  font-weight: 500;
}
#flow .step > span {
  display: inline-block;
  margin-right: 12px;
  padding: 2px 12px;
  border: 2px solid #4781ca;
  border-radius: 25% 25% 25% 25% / 50% 50% 50% 50%;
}
#flow .swiper-pagination-bullet {
  width: 40px;
  height: 5px;
  border-radius: 0;
}
#flow .swiper-slide img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-bottom: 64px;
}
#flow .swiper-button-prev {
  background-image: url(../img/arrow_prev.svg);
}
#flow .swiper-button-next {
  background-image: url(../img/arrow_next.svg);
}
#flow .swiper-slide p {
  padding: 0 20px;
  text-align: left;
}
/* ==========================================================
!Suitable
========================================================== */
#suitable {
  background: #fcf4e5;
}
#suitable .h2_basic01 h2 {
  margin: 2% 0;
}
#suitable .h2_basic01 h2:after {
  content: none;
}
#suitable .suitable_list {
  background: #ffffff;
  box-shadow: 0px 0px 2px 3px rgba(0, 10, 10, 0.05);
  padding: 5%;
}
#suitable .suitable_list li {
  font-weight: bold;
  font-size: 3rem;
  margin: 1em 0;
  padding: 0 0 0 45px;
  text-align: left;
  background: url("../img/icon_check.png") left 5px no-repeat;
}

@media (max-width: 640px) {
  #suitable .suitable_list li {
    font-size: 5vw;
    background-size: 9%;
    padding-left: 10.5%;
  }
}
/* ==========================================================
!QA
========================================================== */
.qa_wrapper {
  background: url("../img/bg_bubble.jpg") no-repeat;
  background-size: cover;
}
#qa .h2_basic01 h2 {
  margin: 2% 0;
}
#qa .h2_basic01 h2:after {
  content: none;
}
#qa .qa_list {
  background: #ffffff;
  box-shadow: 0px 0px 2px 3px rgba(0, 10, 10, 0.05);
  padding: 5%;
}
#qa .qa_list dt {
  font-weight: bold;
  font-size: 3rem;
  margin: 1em 0;
  padding: 0 0 0 45px;
  background: url("../img/icon_Q.png") left 5px no-repeat;
}
#qa .qa_list dd {
  font-size: 2rem;
  margin: 1em 0;
  padding: 0 0 0 45px;
  background: url("../img/icon_A.png") left 5px no-repeat;
}

@media (max-width: 640px) {
  #qa .qa_list dt {
    font-size: 5vw;
    background-size: 6%;
    padding-left: 8%;
  }
  #qa .qa_list dd {
    font-size: 4vw;
    background-size: 6%;
    padding-left: 8%;
  }
}
/* ==========================================================
!Reason
========================================================== */
#reason {
  margin: 80px 0;
}
#reason .h2_basic01 h2 {
  margin: 2% 0;
}
#reason .h2_basic01 h2:after {
  content: none;
}
#reason .reason_list {
  background: #ffffff;
  box-shadow: 0px 0px 2px 3px rgba(0, 10, 10, 0.05);
  padding: 5%;
}
#reason .reason_list dt {
  font-weight: bold;
  font-size: 3rem;
  margin: 1em 0 0.5em 0;
  padding: 0 0 0 45px;
  background: url("../img/icon_check.png") left 5px no-repeat;
}
#reason .reason_list dd {
  font-size: 2rem;
  margin: 0 0 1em 0;
  padding: 0 0 0 45px;
}

@media (max-width: 640px) {
  #reason {
    margin: 8% 0;
  }
  #reason .reason_list dt {
    font-size: 5vw;
    background: url("../img/icon_check.png") left top no-repeat;
    background-size: 9%;
    padding-left: 10.5%;
  }
  #reason .reason_list dd {
    font-size: 4vw;
    background-size: 9%;
    padding-left: 10.5%;
  }
}
/* ==========================================================
!Doctor
========================================================== */
#doctor .doctor_img {
  float: right;
  width: 50%;
}
#doctor .doctor_txt {
  float: left;
  width: 50%;
  font-size: 1.6rem;
}
#doctor .doctor_tit {
  font-weight: bold;
  color: #44a6d3;
}
#doctor .doctor_txt li {
  text-indent: -1em;
  margin-left: 1em;
  text-align: left;
}
#doctor .doctor2 {
  font-size: 1.6rem;
  float: left;
  width: 49%;
}
#doctor .doctor2 dt {
  width: 6em;
  float: left;
  text-align: left;
}
#doctor .doctor2 dd {
  padding-left: 6em;
  text-align: left;
}
#doctor .doctor3 {
  font-size: 1.6rem;
  float: right;
  width: 49%;
}
#doctor .doctor3 dt {
  width: 7em;
  float: left;
  text-align: left;
}
#doctor .doctor3 dd {
  padding-left: 7em;
  text-align: left;
}

@media (max-width: 640px) {
  #doctor .doctor_img,
  #doctor .doctor_txt {
    float: none;
    width: 100%;
    font-size: 4vw;
  }
  #doctor .doctor_txt li {
    text-indent: -1em;
    margin-left: 1em;
  }
  #doctor .doctor2,
  #doctor .doctor3 {
    float: none;
    width: 100%;
    font-size: 4vw;
  }
}
/* ==========================================================
!Schedule
========================================================== */
.schedule table {
  width: 100%;
  text-align: center;
}
.schedule table th {
  color: #4a79b3;
  font-weight: bold;
}
.schedule .holiday {
  color: #b9a245;
}
.schedule .ope {
  color: #4a79b3;
}

@media (min-width: 640px) {
  .schedule {
    margin-bottom: 150px;
  }
  .schedule article {
    padding: 50px 0;
    width: 1200px;
  }
  .schedule article > div {
    padding: 30px 24px;
    width: 900px;
  }
  .schedule table th {
    width: calc(100% / 8);
  }
  .schedule table th,
  .schedule table td {
    padding: 20px 0;
    border: 1px solid #acb8c6;
  }
  .schedule table thead th {
    border-top: none;
    text-align: center;
  }
  .schedule table tr:last-of-type th,
  .schedule table tr:last-of-type td {
    border-bottom: none;
  }
  .schedule table th:first-of-type {
    border-left: none;
  }
  .schedule table th:last-of-type,
  .schedule table td:last-of-type {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .schedule {
    margin-bottom: 60px;
  }
  .schedule article {
    padding: 20px;
    font-size: 4vw;
  }
  .schedule article > div {
    padding: 10px;
  }
  .schedule table {
    font-size: 4vw;
    font-weight: bold;
  }
  .schedule th,
  .schedule td {
    display: block;
  }
  .schedule thead {
    display: flex;
    float: left;
    width: calc(100% / 3);
  }
  .schedule thead tr {
    width: 100%;
  }
  .schedule th,
  .schedule td {
    height: 14vw;
    padding: 8px 0;
    border-bottom: 1px solid #acb8c6;
    vertical-align: middle;
  }
  .schedule thead th:last-of-type,
  .schedule tbody td:last-of-type {
    border-bottom: none;
  }
  .schedule tbody tr {
    width: calc(100% / 3);
  }
  .schedule tbody tr,
  .schedule tbody tr th,
  .schedule tbody tr td {
    width: 100%;
  }
  .schedule thead th:first-child:before {
    content: " ";
    padding: 1em;
  }
  .schedule tbody {
    display: flex;
    width: auto;
  }
  .schedule tbody tr {
    display: flex;
    flex-direction: column;
  }
  .schedule table thead th,
  .schedule table .single {
    line-height: 2.6;
    text-align: center;
  }
}
/* ==========================================================
!Info
========================================================== */
#info {
  font-size: 1.6rem;
}
#info h3 {
  font-size: 2rem;
}

#info .info_l {
  float: left;
  width: 49%;
}
#info .info_r {
  float: right;
  width: 49%;
}
#info dt {
  width: 5em;
  float: left;
  margin-bottom: 0.5em;
  font-weight: bold;
}
#info dd {
  margin-bottom: 0.5em;
}

@media (max-width: 640px) {
  #info {
    font-size: 4vw;
  }
  #info h3 {
    font-size: 5vw;
    text-align: center;
  }
  #info .info_l,
  #info .info_r {
    float: none;
    width: 100%;
    margin-bottom: 3em;
  }
}
/* ==========================================================
!Access
========================================================== */
#access {
  font-size: 1.6rem;
}
#access dt {
  font-size: 2rem;
  margin-bottom: 0.5em;
  font-weight: bold;
}
#access dd {
  margin-bottom: 1.5em;
}

@media (max-width: 640px) {
  #access {
    font-size: 4vw;
  }
  #access dt {
    font-size: 5vw;
    text-align: center;
  }
}

/* ==========================================================
!20190424 追記分
========================================================== */

.history_year {
  float: left;
}

.history_detail {
  width: 83%;
  text-align: left;
  float: right;
}

@media (max-width: 640px) {
  .history_detail {
    width: 78%;
    text-align: left;
    float: right;
  }

  #doctor .doctor_txt li {
    width: 100%;
    text-indent: 0;
    margin-left: 0;
    text-align: left;
  }
}

/* 20200114 add */
.first_reservation_link,
.first_reservation_link:hover {
  text-decoration: none !important;
}

/* 20200217 add */
.fzSS li {
  text-align: center !important;
}
#doctor .doctor_tit {
  text-align: left;
}
#contents .reserve h2 {
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  #wrapper h2 {
    margin-bottom: 40px !important;
  }
}

@media (max-width: 767px) {
  .reserve {
    padding-top: 0;
  }
  .feature_txt img {
    margin-bottom: 10px;
  }
  #flow .step,
  #flow .step > span {
    font-size: 4vw;
  }
  #flow .step span span {
    font-size: 5vw;
  }
  .qa_list h2,
  .reason_list h2 {
    margin-bottom: 0 !important;
  }
  #suitable h2 {
    margin: 3vh 0 0 !important;
  }
  .qa_list section,
  .reason_list section {
    padding-top: 0 !important;
  }
}
