@charset "UTF-8";
/*
Theme Name: 三宅先生WPテーマ
*/
/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/
/* reset margin
-----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  zoom: 1;
  /* hasLayout in IE */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
}

/* reset font style
-----------------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: sans-serif;
}

html * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1px;
  background: transparent;
  color: #000;
}
@media (max-width: 999px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 2;
  }
}
body.fixed {
  position: fixed;
  width: 100%;
}

ul, ol {
  list-style-type: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

em, strong {
  font-style: normal;
  font-weight: inherit;
}

/* reset table
-----------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table, th, td {
  table-layout: fixed;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
textarea {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type=reset],
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

button,
input[type=reset]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button,
input[type=reset]:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

textarea {
  resize: none;
  overflow: auto;
}

*:focus {
  outline: none;
}

/* reset img
-----------------------------------------------------------------*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

/******************************************************************
 * ヘッダー
******************************************************************/
header {
  background: #FFF;
}

/* ハンバーガーボタン + ハンバーガーメニュー基本
-----------------------------------------------------------------*/
.navToggle {
  top: 0;
  right: 0;
  z-index: 999;
  background: #F8E0E8;
  cursor: pointer;
  text-align: center;
}
.navToggle::after {
  position: absolute;
  content: "MENU";
  width: 100%;
  font: 12px "Cormorant Garamond", serif;
  color: #735C63;
}
.navToggle span {
  display: block;
  position: absolute;
  width: 16px;
  cursor: pointer;
  border-bottom: solid 2px #735C63;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.navToggle.active {
  z-index: 999;
}
.navToggle.active span {
  border-bottom: solid 2px #735C63;
}
.navToggle.active span:nth-child(1) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navToggle.active span:nth-child(2) {
  opacity: 0;
}
.navToggle.active span:nth-child(3) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.globalMenuSp {
  position: fixed;
  color: #000;
  opacity: 0;
  background: #fff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  z-index: 1000;
}
.globalMenuSp.active {
  opacity: 1;
  pointer-events: all;
}
.globalMenuSp .tel {
  background: -webkit-gradient(linear, left top, right top, from(#F2C2D2), to(#F2E6C2));
  background: linear-gradient(to right, #F2C2D2, #F2E6C2);
  padding: 5px;
  margin-top: 16px;
}
.globalMenuSp .tel .tel-white {
  background: #FFF;
  padding: 8px;
}
.globalMenuSp .tel .tel-white .title {
  position: relative;
  text-align: center;
  line-height: 1.5;
}
.globalMenuSp .tel .tel-white .title::before {
  content: " ";
  position: absolute;
  bottom: 11px;
  left: 0;
  border-bottom: 1px dotted #A68590;
  width: 100%;
  z-index: 0;
}
.globalMenuSp .tel .tel-white .title p {
  position: relative;
  display: inline;
  background: #FFF;
  font: 14px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 2px;
  padding: 0 5px;
  z-index: 1;
}
.globalMenuSp .tel .tel-white .title p span {
  color: #A68590;
}
.globalMenuSp .tel .tel-white .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 32px "Cinzel", serif;
  color: #A68590;
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.globalMenuSp .tel .tel-white .num span {
  width: 40px;
  background: #D9ADBC;
  font: 16px "Cormorant Garamond", serif;
  color: #FFF;
  text-align: center;
  letter-spacing: 1px;
  margin-right: 10px;
}
.globalMenuSp .tel .tel-white .datetime {
  font: 12px "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: center;
}
.globalMenuSp .nav-tel {
  display: block;
  text-align: center;
  margin-top: 16px;
}

/* PC
-----------------------------------------------------------------*/
.header-nav-pc {
  display: none;
  width: 100%;
}
.header-nav-pc.clone-nav {
  position: fixed;
  top: -10px;
  left: 0;
  display: block;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background: rgba(255, 255, 255, 0.5);
  padding: 20px 0 32px;
  z-index: 2;
}
.header-nav-pc.clone-nav .navToggle.active {
  top: 108px;
}
@media (max-width: 767px) {
  .header-nav-pc.clone-nav {
    display: none;
  }
}
.header-nav-pc.clone-nav .globalMenuSp.active {
  top: 108px;
}
.header-nav-pc.clone-nav .globalMenuSp.active .menu-inner {
  top: 108px;
}
.header-nav-pc.clone-nav.is-show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header-nav-pc.clone-nav.is-show .navToggle.active {
  top: 0;
}
.header-nav-pc.clone-nav.is-show .globalMenuSp.active {
  top: 10px;
}
.header-nav-pc.clone-nav.is-show .globalMenuSp.active .menu-inner {
  top: 10px;
}
.header-nav-pc .inner {
  max-width: 100%;
  position: relative;
  padding: 0 50px;
}
@media (max-width: 1099px) {
  .header-nav-pc .inner {
    padding: 0;
  }
}
.header-nav-pc h1 {
  width: 343px;
  padding-top: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .header-nav-pc h1 {
    width: 250px;
  }
}
.header-nav-pc h1:hover {
  opacity: 0.7;
}
.header-nav-pc .navToggle {
  position: absolute;
  width: 70px;
  height: 70px;
  right: 50px;
}
@media (max-width: 1099px) {
  .header-nav-pc .navToggle {
    right: 0;
  }
}
.header-nav-pc .navToggle::after {
  bottom: 16px;
  right: 0;
}
.header-nav-pc .navToggle span:nth-child(1) {
  top: 24px;
}
.header-nav-pc .navToggle span:nth-child(2) {
  top: 29px;
}
.header-nav-pc .navToggle span:nth-child(3) {
  top: 34px;
}
.header-nav-pc .navToggle span:nth-child(4) {
  border: none;
  color: #eee;
  font-size: 9px;
  font-weight: bold;
  top: 34px;
}
.header-nav-pc .navToggle.active span:nth-child(1) {
  top: 28px;
  left: 2px;
}
.header-nav-pc .navToggle.active span:nth-child(3) {
  top: 28px;
  left: 2px;
}
.header-nav-pc .globalMenuSp {
  position: fixed;
  top: 10px;
  left: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.4);
  width: 100vw;
  height: 100vh;
}
.header-nav-pc .globalMenuSp .menu-inner {
  position: fixed;
  top: 10px;
  right: 0;
  width: 46vw;
  height: 100vh;
  background: #FFF;
}
@media (max-width: 999px) {
  .header-nav-pc .globalMenuSp .menu-inner {
    width: 60vw;
  }
}
.header-nav-pc .globalMenuSp h1 {
  width: 100%;
  padding: 0 50px;
  margin: 30px 0 50px;
}
@media (max-width: 1275px) {
  .header-nav-pc .globalMenuSp h1 {
    padding: 0 30px;
  }
}
.header-nav-pc .globalMenuSp h1 img {
  width: 343px;
}
@media (max-width: 1199px) {
  .header-nav-pc .globalMenuSp h1 img {
    width: 200px;
  }
}
.header-nav-pc .globalMenuSp ul {
  width: 60%;
  margin: 0 auto 40px;
}
@media (max-width: 1275px) {
  .header-nav-pc .globalMenuSp ul {
    width: 74%;
  }
}
.header-nav-pc .globalMenuSp ul li {
  position: relative;
  margin-bottom: 10px;
}
.header-nav-pc .globalMenuSp ul li::after {
  position: absolute;
  content: " ";
  top: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #A68590;
  margin: auto;
}
.header-nav-pc .globalMenuSp ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 16px "游明朝体", "Yu Mincho", YuMincho, serif;
  padding: 20px 0;
  z-index: 1;
}
.header-nav-pc .globalMenuSp ul li a p {
  position: relative;
  background: #FFF;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header-nav-pc .globalMenuSp ul li a p.jp {
  padding-right: 12px;
}
.header-nav-pc .globalMenuSp ul li a p.jp::before {
  content: "●";
  font-size: 10px;
  color: #F2C2D2;
  margin-right: 10px;
}
.header-nav-pc .globalMenuSp ul li a p.en {
  font: 18px "Cormorant Garamond", serif;
  color: #A68590;
  padding-left: 10px;
}
.header-nav-pc .globalMenuSp ul li a:hover p.jp {
  color: #A68590;
}
.header-nav-pc .globalMenuSp .tel {
  width: 54%;
  background: -webkit-gradient(linear, left top, right top, from(#F2C2D2), to(#F2E6C2));
  background: linear-gradient(to right, #F2C2D2, #F2E6C2);
  padding: 5px;
  margin: 16px auto 0;
}
@media (max-width: 1275px) {
  .header-nav-pc .globalMenuSp .tel {
    width: 70%;
  }
}
.header-nav-pc .globalMenuSp .tel .tel-white {
  background: #FFF;
  padding: 8px;
}
.header-nav-pc .globalMenuSp .tel .tel-white .title {
  position: relative;
  text-align: center;
  line-height: 1.5;
}
.header-nav-pc .globalMenuSp .tel .tel-white .title::before {
  content: " ";
  position: absolute;
  bottom: 11px;
  left: 0;
  border-bottom: 1px dotted #A68590;
  width: 100%;
  z-index: 0;
}
.header-nav-pc .globalMenuSp .tel .tel-white .title p {
  position: relative;
  display: inline;
  background: #FFF;
  font: 14px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 2px;
  padding: 0 5px;
  z-index: 1;
}
.header-nav-pc .globalMenuSp .tel .tel-white .title p span {
  color: #A68590;
}
.header-nav-pc .globalMenuSp .tel .tel-white .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 32px "Cinzel", serif;
  color: #A68590;
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.header-nav-pc .globalMenuSp .tel .tel-white .num span {
  width: 40px;
  background: #D9ADBC;
  font: 16px "Cormorant Garamond", serif;
  color: #FFF;
  text-align: center;
  letter-spacing: 1px;
  margin-right: 10px;
}
.header-nav-pc .globalMenuSp .tel .tel-white .datetime {
  font: 12px "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: center;
}
.header-nav-pc .globalMenuSp .nav-tel {
  display: block;
  text-align: center;
  margin-top: 16px;
}

/* PC固定
-----------------------------------------------------------------*/
.nav-fixed {
  background: #FFF;
  padding: 20px 0 32px;
}
@media (max-width: 767px) {
  .nav-fixed {
    display: none;
  }
}
.nav-fixed .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.nav-fixed h1 {
  width: 340px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-fixed h1:hover {
  opacity: 0.7;
}
.nav-fixed .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-fixed .tel .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 24px "Cinzel", serif;
  color: #A68590;
  letter-spacing: 3px;
  margin: 0 12px 2px 0;
}
.nav-fixed .tel .num span {
  display: inline-block;
  width: 40px;
  background: #D9ADBC;
  font: 16px "Cormorant Garamond", serif;
  color: #FFF;
  text-align: center;
  letter-spacing: 2px;
  margin-right: 12px;
}
.nav-fixed .tel .datetime {
  font: 12px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 0.5px;
}

.top-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-nav li {
  border-right: 1px solid #999;
  line-height: 1;
}
.top-nav li a {
  font: 16px "游明朝体", "Yu Mincho", YuMincho, serif;
  padding: 0 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1099px) {
  .top-nav li a {
    font-size: 14px;
    padding: 0 30px;
  }
}
@media (max-width: 869px) {
  .top-nav li a {
    padding: 0 20px;
  }
}
.top-nav li a:hover {
  color: #A68590;
}
.top-nav li:last-child {
  border-right: none;
}

/* SP
-----------------------------------------------------------------*/
.header-nav-sp {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  background: #FFF;
  z-index: 1000;
}
@media (min-width: 768px) {
  .header-nav-sp {
    display: none;
  }
}
.header-nav-sp .logo {
  width: 200px;
}
.header-nav-sp .navToggle {
  position: fixed;
  width: 50px;
  height: 50px;
}
.header-nav-sp .navToggle::after {
  bottom: 4px;
  right: 0;
}
.header-nav-sp .navToggle span:nth-child(1) {
  top: 12px;
}
.header-nav-sp .navToggle span:nth-child(2) {
  top: 18px;
}
.header-nav-sp .navToggle span:nth-child(3) {
  top: 24px;
}
.header-nav-sp .navToggle span:nth-child(4) {
  border: none;
  color: #eee;
  font-size: 9px;
  font-weight: bold;
  top: 34px;
}
.header-nav-sp .navToggle.active {
  z-index: 999;
}
.header-nav-sp .navToggle.active span {
  border-bottom: solid 2px #735C63;
}
.header-nav-sp .navToggle.active span:nth-child(1) {
  top: 18px;
  left: 2px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-nav-sp .navToggle.active span:nth-child(2) {
  opacity: 0;
}
.header-nav-sp .navToggle.active span:nth-child(3) {
  top: 18px;
  left: 2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-nav-sp .globalMenuSp {
  top: 50px;
  left: 0;
  width: 100vw;
  width: 100%;
  border-top: 1px solid #A68590;
  padding-bottom: 10px;
}
.header-nav-sp .globalMenuSp h1 {
  position: absolute;
  top: 16px;
  width: 100%;
  text-align: center;
}
.header-nav-sp .globalMenuSp h1 img {
  width: 200px;
}
.header-nav-sp .globalMenuSp ul li {
  text-align: center;
  border-bottom: 1px dotted #A68590;
  margin: 0 auto;
}
.header-nav-sp .globalMenuSp ul li a {
  display: block;
  font: 16px "游明朝体", "Yu Mincho", YuMincho, serif;
  padding: 20px 0;
}
.header-nav-sp .globalMenuSp .nav-tel {
  display: block;
  text-align: center;
  margin-top: 16px;
}

/******************************************************************
 * フッター 
******************************************************************/
footer {
  background: #FAFAFA;
  /* footer-top
  -----------------------------------------------------------------*/
  /* footer-cont-sp
  -----------------------------------------------------------------*/
}
footer .tel-bnr.sp {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
}
footer .tel-bnr.sp img {
  width: 100%;
}
footer .inner.sp {
  padding-bottom: 40px;
}
footer .footer-top, footer .footer-cont-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 60px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  footer .footer-top, footer .footer-cont-sp {
    display: block;
  }
}
@media (max-width: 767px) {
  footer .footer-top .left, footer .footer-top .info, footer .footer-cont-sp .left, footer .footer-cont-sp .info {
    text-align: center;
    margin-bottom: 12px;
  }
}
footer .footer-top .left .logo, footer .footer-top .info .logo, footer .footer-cont-sp .left .logo, footer .footer-cont-sp .info .logo {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  footer .footer-top .left .logo, footer .footer-top .info .logo, footer .footer-cont-sp .left .logo, footer .footer-cont-sp .info .logo {
    width: 200px;
    margin: 20px auto;
  }
}
footer .footer-top .left h2, footer .footer-top .info h2, footer .footer-cont-sp .left h2, footer .footer-cont-sp .info h2 {
  font: 24px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
@media (max-width: 1099px) {
  footer .footer-top .left h2, footer .footer-top .info h2, footer .footer-cont-sp .left h2, footer .footer-cont-sp .info h2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  footer .footer-top .left h2, footer .footer-top .info h2, footer .footer-cont-sp .left h2, footer .footer-cont-sp .info h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1099px) {
  footer .footer-top .left .address, footer .footer-top .info .address, footer .footer-cont-sp .left .address, footer .footer-cont-sp .info .address {
    font-size: 14px;
  }
}
footer .footer-top .right, footer .footer-top .sitemap, footer .footer-cont-sp .right, footer .footer-cont-sp .sitemap {
  width: 54%;
}
@media (max-width: 767px) {
  footer .footer-top .right, footer .footer-top .sitemap, footer .footer-cont-sp .right, footer .footer-cont-sp .sitemap {
    width: 100%;
  }
}
footer .footer-top .right h3, footer .footer-top .sitemap h3, footer .footer-cont-sp .right h3, footer .footer-cont-sp .sitemap h3 {
  position: relative;
  font: 24px "Cormorant Garamond", serif;
  color: #A68590;
  letter-spacing: 0;
  margin-bottom: 14px;
  z-index: 0;
}
@media (max-width: 1099px) {
  footer .footer-top .right h3, footer .footer-top .sitemap h3, footer .footer-cont-sp .right h3, footer .footer-cont-sp .sitemap h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  footer .footer-top .right h3, footer .footer-top .sitemap h3, footer .footer-cont-sp .right h3, footer .footer-cont-sp .sitemap h3 {
    font-size: 20px;
    border-bottom: 1px dotted #A68590;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
}
footer .footer-top .right h3::after, footer .footer-top .sitemap h3::after, footer .footer-cont-sp .right h3::after, footer .footer-cont-sp .sitemap h3::after {
  content: " ";
  bottom: 6px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ccc;
  z-index: -1;
}
@media (max-width: 767px) {
  footer .footer-top .right h3::after, footer .footer-top .sitemap h3::after, footer .footer-cont-sp .right h3::after, footer .footer-cont-sp .sitemap h3::after {
    content: none;
  }
}
footer .footer-top .right .list, footer .footer-top .sitemap .list, footer .footer-cont-sp .right .list, footer .footer-cont-sp .sitemap .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  footer .footer-top .right .list, footer .footer-top .sitemap .list, footer .footer-cont-sp .right .list, footer .footer-cont-sp .sitemap .list {
    display: block;
  }
}
footer .footer-top .right .list ul.margin, footer .footer-top .sitemap .list ul.margin, footer .footer-cont-sp .right .list ul.margin, footer .footer-cont-sp .sitemap .list ul.margin {
  margin-top: 30px;
}
@media (max-width: 1099px) {
  footer .footer-top .right .list ul.margin, footer .footer-top .sitemap .list ul.margin, footer .footer-cont-sp .right .list ul.margin, footer .footer-cont-sp .sitemap .list ul.margin {
    margin-top: 26px;
  }
}
@media (max-width: 899px) {
  footer .footer-top .right .list ul.margin, footer .footer-top .sitemap .list ul.margin, footer .footer-cont-sp .right .list ul.margin, footer .footer-cont-sp .sitemap .list ul.margin {
    margin-top: 22px;
  }
}
footer .footer-top .right .list ul li, footer .footer-top .sitemap .list ul li, footer .footer-cont-sp .right .list ul li, footer .footer-cont-sp .sitemap .list ul li {
  position: relative;
  background: url("img/common/common_arrow.png") center left no-repeat;
  background-size: 6px;
  font-size: 16px;
  line-height: 1.9;
  padding-left: 20px;
}
@media (max-width: 1099px) {
  footer .footer-top .right .list ul li, footer .footer-top .sitemap .list ul li, footer .footer-cont-sp .right .list ul li, footer .footer-cont-sp .sitemap .list ul li {
    font-size: 14px;
  }
}
@media (max-width: 899px) {
  footer .footer-top .right .list ul li, footer .footer-top .sitemap .list ul li, footer .footer-cont-sp .right .list ul li, footer .footer-cont-sp .sitemap .list ul li {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  footer .footer-top .right .list ul li, footer .footer-top .sitemap .list ul li, footer .footer-cont-sp .right .list ul li, footer .footer-cont-sp .sitemap .list ul li {
    background: url("img/common/common_arrow.png") center right 1rem no-repeat;
    background-size: 6px;
    font-size: 14px;
    border-bottom: 1px dotted #A68590;
    padding: 14px 0 14px 1rem;
  }
}
footer .footer-top .right .list ul li a, footer .footer-top .sitemap .list ul li a, footer .footer-cont-sp .right .list ul li a, footer .footer-cont-sp .sitemap .list ul li a {
  position: relative;
  display: inline;
}
@media (max-width: 767px) {
  footer .footer-top .right .list ul li a, footer .footer-top .sitemap .list ul li a, footer .footer-cont-sp .right .list ul li a, footer .footer-cont-sp .sitemap .list ul li a {
    padding-left: 1rem;
  }
}
footer .footer-top .right .list ul li a::before, footer .footer-top .sitemap .list ul li a::before, footer .footer-cont-sp .right .list ul li a::before, footer .footer-cont-sp .sitemap .list ul li a::before {
  position: absolute;
  content: " ";
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer-top .right .list ul li a:hover::before, footer .footer-top .sitemap .list ul li a:hover::before, footer .footer-cont-sp .right .list ul li a:hover::before, footer .footer-cont-sp .sitemap .list ul li a:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
footer .footer-top .right .list ul li.child, footer .footer-top .sitemap .list ul li.child, footer .footer-cont-sp .right .list ul li.child, footer .footer-cont-sp .sitemap .list ul li.child {
  background: url("img/common/common_arrow.png") center left 1rem no-repeat;
  background-size: 6px;
  text-indent: 1rem;
}
@media (max-width: 767px) {
  footer .footer-top .right .list ul li.child, footer .footer-top .sitemap .list ul li.child, footer .footer-cont-sp .right .list ul li.child, footer .footer-cont-sp .sitemap .list ul li.child {
    background: url("img/common/common_arrow.png") center right 1rem no-repeat;
    background-size: 6px;
  }
}
@media (max-width: 767px) {
  footer .footer-top .right .list ul li.child::before, footer .footer-top .sitemap .list ul li.child::before, footer .footer-cont-sp .right .list ul li.child::before, footer .footer-cont-sp .sitemap .list ul li.child::before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 1rem;
    width: 15px;
    height: 1px;
    background: #F2C2D2;
  }
}
footer .footer-top .right .list ul li.grandchild, footer .footer-top .sitemap .list ul li.grandchild, footer .footer-cont-sp .right .list ul li.grandchild, footer .footer-cont-sp .sitemap .list ul li.grandchild {
  background: url("img/common/common_arrow.png") center left 2rem no-repeat;
  background-size: 6px;
  text-indent: 2rem;
}
@media (max-width: 767px) {
  footer .footer-top .right .list ul li.grandchild, footer .footer-top .sitemap .list ul li.grandchild, footer .footer-cont-sp .right .list ul li.grandchild, footer .footer-cont-sp .sitemap .list ul li.grandchild {
    background: url("img/common/common_arrow.png") center right 1rem no-repeat;
    background-size: 6px;
  }
}
@media (max-width: 767px) {
  footer .footer-top .right .list ul li.grandchild::before, footer .footer-top .sitemap .list ul li.grandchild::before, footer .footer-cont-sp .right .list ul li.grandchild::before, footer .footer-cont-sp .sitemap .list ul li.grandchild::before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 1rem;
    width: 30px;
    height: 1px;
    background: #F2C2D2;
  }
}
footer .footer-top .right .list ul li.child-sp, footer .footer-top .sitemap .list ul li.child-sp, footer .footer-cont-sp .right .list ul li.child-sp, footer .footer-cont-sp .sitemap .list ul li.child-sp {
  text-indent: 1rem;
}
@media (max-width: 767px) {
  footer .footer-top .right .list ul li.child-sp::before, footer .footer-top .sitemap .list ul li.child-sp::before, footer .footer-cont-sp .right .list ul li.child-sp::before, footer .footer-cont-sp .sitemap .list ul li.child-sp::before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 1rem;
    width: 15px;
    height: 1px;
    background: #F2C2D2;
  }
}
footer .footer-top .right .list ul li.grandchild-sp, footer .footer-top .sitemap .list ul li.grandchild-sp, footer .footer-cont-sp .right .list ul li.grandchild-sp, footer .footer-cont-sp .sitemap .list ul li.grandchild-sp {
  text-indent: 2rem;
}
@media (max-width: 767px) {
  footer .footer-top .right .list ul li.grandchild-sp::before, footer .footer-top .sitemap .list ul li.grandchild-sp::before, footer .footer-cont-sp .right .list ul li.grandchild-sp::before, footer .footer-cont-sp .sitemap .list ul li.grandchild-sp::before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 1rem;
    width: 30px;
    height: 1px;
    background: #F2C2D2;
  }
}
footer .footer-bottom, footer .footer-cont-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  footer .footer-bottom, footer .footer-cont-sp {
    display: block;
  }
}
footer .footer-bottom .map, footer .footer-cont-sp .map {
  width: 440px;
  height: 320px;
}
@media (max-width: 1099px) {
  footer .footer-bottom .map, footer .footer-cont-sp .map {
    width: 42%;
  }
}
@media (max-width: 767px) {
  footer .footer-bottom .map, footer .footer-cont-sp .map {
    width: 100%;
    height: 250px;
  }
}
footer .footer-bottom .cont-time, footer .footer-cont-sp .cont-time {
  width: 54%;
}
@media (max-width: 767px) {
  footer .footer-bottom .cont-time, footer .footer-cont-sp .cont-time {
    width: 100%;
  }
}
footer .footer-bottom .cont-time .title, footer .footer-cont-sp .cont-time .title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
  z-index: 0;
}
footer .footer-bottom .cont-time .title h3, footer .footer-cont-sp .cont-time .title h3 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FAFAFA;
  font: 20px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 5px;
  padding-right: 10px;
}
@media (max-width: 1099px) {
  footer .footer-bottom .cont-time .title h3, footer .footer-cont-sp .cont-time .title h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  footer .footer-bottom .cont-time .title h3, footer .footer-cont-sp .cont-time .title h3 {
    font-size: 16px;
    padding-right: 6px;
  }
}
footer .footer-bottom .cont-time .title h3::before, footer .footer-cont-sp .cont-time .title h3::before {
  content: "●";
  font-size: 10px;
  color: #F2C2D2;
  margin-right: 10px;
}
@media (max-width: 767px) {
  footer .footer-bottom .cont-time .title h3::before, footer .footer-cont-sp .cont-time .title h3::before {
    margin-right: 6px;
  }
}
footer .footer-bottom .cont-time .title p, footer .footer-cont-sp .cont-time .title p {
  position: absolute;
  right: 0;
  font: 18px "Cormorant Garamond", serif;
  background: #FAFAFA;
  color: #A68590;
  text-align: right;
  letter-spacing: 0;
  padding-left: 10px;
}
@media (max-width: 1099px) {
  footer .footer-bottom .cont-time .title p, footer .footer-cont-sp .cont-time .title p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  footer .footer-bottom .cont-time .title p, footer .footer-cont-sp .cont-time .title p {
    font-size: 14px;
  }
}
footer .footer-bottom .cont-time .title::after, footer .footer-cont-sp .cont-time .title::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #A68590;
  z-index: -1;
}
footer .footer-bottom .cont-time .schedule, footer .footer-cont-sp .cont-time .schedule {
  margin-bottom: 20px;
}
footer .footer-bottom .cont-time .schedule img, footer .footer-cont-sp .cont-time .schedule img {
  width: 100%;
}
@media (max-width: 767px) {
  footer .footer-bottom .cont-time .note, footer .footer-cont-sp .cont-time .note {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
}
footer .footer-bottom .cont-time .tel, footer .footer-cont-sp .cont-time .tel {
  background: #FFF;
  border: 1px solid #A68590;
  padding: 2px;
}
footer .footer-bottom .cont-time .tel .inner-border, footer .footer-cont-sp .cont-time .tel .inner-border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #A68590;
  padding: 18px;
}
@media (max-width: 1099px) {
  footer .footer-bottom .cont-time .tel .inner-border, footer .footer-cont-sp .cont-time .tel .inner-border {
    padding: 10px;
  }
}
@media (max-width: 863px) {
  footer .footer-bottom .cont-time .tel .inner-border, footer .footer-cont-sp .cont-time .tel .inner-border {
    padding: 8px;
  }
}
footer .footer-bottom .cont-time .tel .inner-border .left, footer .footer-cont-sp .cont-time .tel .inner-border .left {
  position: relative;
  font: 12px "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: center;
  padding-right: 14px;
  margin-right: 14px;
}
@media (max-width: 1099px) {
  footer .footer-bottom .cont-time .tel .inner-border .left, footer .footer-cont-sp .cont-time .tel .inner-border .left {
    width: 20%;
    letter-spacing: 0;
    padding-right: 8px;
    margin-right: 8px;
  }
}
@media (max-width: 1030px) {
  footer .footer-bottom .cont-time .tel .inner-border .left, footer .footer-cont-sp .cont-time .tel .inner-border .left {
    font-size: 10px;
  }
}
@media (max-width: 863px) {
  footer .footer-bottom .cont-time .tel .inner-border .left, footer .footer-cont-sp .cont-time .tel .inner-border .left {
    width: 22%;
  }
}
@media (max-width: 799px) {
  footer .footer-bottom .cont-time .tel .inner-border .left, footer .footer-cont-sp .cont-time .tel .inner-border .left {
    width: 24%;
  }
}
footer .footer-bottom .cont-time .tel .inner-border .left::after, footer .footer-cont-sp .cont-time .tel .inner-border .left::after {
  content: " ";
  position: absolute;
  top: -8px;
  right: 0;
  width: 1px;
  height: 54px;
  background: #A68590;
}
@media (max-width: 1099px) {
  footer .footer-bottom .cont-time .tel .inner-border .left::after, footer .footer-cont-sp .cont-time .tel .inner-border .left::after {
    top: -2px;
    height: 40px;
  }
}
@media (max-width: 1030px) {
  footer .footer-bottom .cont-time .tel .inner-border .left::after, footer .footer-cont-sp .cont-time .tel .inner-border .left::after {
    top: -5px;
  }
}
@media (max-width: 863px) {
  footer .footer-bottom .cont-time .tel .inner-border .left::after, footer .footer-cont-sp .cont-time .tel .inner-border .left::after {
    top: -1px;
    height: 34px;
  }
}
footer .footer-bottom .cont-time .tel .inner-border .right, footer .footer-cont-sp .cont-time .tel .inner-border .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1099px) {
  footer .footer-bottom .cont-time .tel .inner-border .right, footer .footer-cont-sp .cont-time .tel .inner-border .right {
    width: 78%;
  }
}
@media (max-width: 1030px) {
  footer .footer-bottom .cont-time .tel .inner-border .right, footer .footer-cont-sp .cont-time .tel .inner-border .right {
    width: 81%;
  }
}
footer .footer-bottom .cont-time .tel .inner-border .right h4, footer .footer-cont-sp .cont-time .tel .inner-border .right h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 30px "Cinzel", serif;
  color: #A68590;
  letter-spacing: 4px;
  margin-right: 13px;
}
@media (max-width: 1099px) {
  footer .footer-bottom .cont-time .tel .inner-border .right h4, footer .footer-cont-sp .cont-time .tel .inner-border .right h4 {
    font-size: 24px;
    letter-spacing: 2px;
  }
}
@media (max-width: 931px) {
  footer .footer-bottom .cont-time .tel .inner-border .right h4, footer .footer-cont-sp .cont-time .tel .inner-border .right h4 {
    font-size: 20px;
    margin-right: 0;
  }
}
@media (max-width: 863px) {
  footer .footer-bottom .cont-time .tel .inner-border .right h4, footer .footer-cont-sp .cont-time .tel .inner-border .right h4 {
    font-size: 17px;
    letter-spacing: 1px;
  }
}
footer .footer-bottom .cont-time .tel .inner-border .right h4 span, footer .footer-cont-sp .cont-time .tel .inner-border .right h4 span {
  display: inline-block;
  width: 40px;
  background: #D9ADBC;
  font: 16px "Cormorant Garamond", serif;
  color: #FFF;
  text-align: center;
  letter-spacing: 2px;
  margin-right: 12px;
}
@media (max-width: 1099px) {
  footer .footer-bottom .cont-time .tel .inner-border .right h4 span, footer .footer-cont-sp .cont-time .tel .inner-border .right h4 span {
    font-size: 14px;
    margin-right: 8px;
  }
}
@media (max-width: 931px) {
  footer .footer-bottom .cont-time .tel .inner-border .right h4 span, footer .footer-cont-sp .cont-time .tel .inner-border .right h4 span {
    width: 30px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}
footer .footer-bottom .cont-time .tel .inner-border .right .datetime, footer .footer-cont-sp .cont-time .tel .inner-border .right .datetime {
  position: relative;
  font: 12px "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 1030px) {
  footer .footer-bottom .cont-time .tel .inner-border .right .datetime, footer .footer-cont-sp .cont-time .tel .inner-border .right .datetime {
    font-size: 10px;
  }
}
footer .footer-bottom .cont-time .tel .inner-border .right .datetime::after, footer .footer-cont-sp .cont-time .tel .inner-border .right .datetime::after {
  content: " ";
  position: absolute;
  bottom: 8px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #ccc;
}
footer .footer-bottom .cont-time .tel .inner-border .right .datetime span, footer .footer-cont-sp .cont-time .tel .inner-border .right .datetime span {
  position: relative;
  background: #FFF;
  padding: 0 6px;
  z-index: 1;
}
footer .footer-copy {
  background: #D9ADBC;
  font: 16px "Cormorant Garamond", serif;
  color: #FFF;
  text-align: center;
  padding: 10px 0;
}
@media (max-width: 767px) {
  footer .footer-copy {
    font-size: 12px;
    letter-spacing: 0;
    padding: 10px 0 80px;
  }
}
footer .footer-cont-sp {
  padding: 10px 0;
  margin-bottom: 0;
}
footer .footer-cont-sp .cont-time .schedule {
  margin-bottom: 10px;
}
footer .footer-cont-sp iframe {
  width: 100%;
  height: 250px;
  margin-bottom: 30px;
}
footer .footer-cont-sp:first-child {
  padding: 34px 0 20px;
}
footer .footer-cont-sp .sitemap .list ul li {
  padding: 0;
}
footer .footer-cont-sp .sitemap .list ul li a {
  padding: 14px 0 14px 1rem;
  display: block;
  width: 100%;
}
footer .footer-cont-sp .sitemap .list ul li a::before {
  content: none;
}
footer .footer-cont-sp .sitemap .list ul li a span {
  margin-left: 1rem;
  position: relative;
}
footer .footer-cont-sp .sitemap .list ul li a span::before {
  position: absolute;
  content: " ";
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer-cont-sp .sitemap .list ul li a:hover span::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/******************************************************************
 * 共通部分
******************************************************************/
/* 最小値を375pxに */
body {
  min-width: 375px;
}

/* breakpoint, pc/sp
-----------------------------------------------------------------*/
.inner {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1099px) {
  .inner {
    width: 92%;
  }
}

@media (max-width: 767px) {
  main {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

/* parts
-----------------------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 30px;
}
.section-title h2 {
  font: 28px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 10px;
  margin-bottom: 10px;
}
@media (max-width: 999px) {
  .section-title h2 {
    font-size: 24px;
    letter-spacing: 8px;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 20px;
  }
}
.section-title h2 span {
  color: #A68590;
}
.section-title p {
  font: 18px "Cormorant Garamond", serif;
  color: #A68590;
}
@media (max-width: 999px) {
  .section-title p {
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .section-title p {
    font-size: 14px;
  }
}

.section-text {
  line-height: 2;
}
@media (max-width: 999px) {
  .section-text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .section-text {
    font-size: 14px;
  }
}

.half-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #A68590;
  border-bottom: 1px dotted #A68590;
  padding: 10px 0 10px 1rem;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .half-title {
    padding: 18px 0 18px;
  }
}
.half-title h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 22px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 8px;
}
@media (max-width: 999px) {
  .half-title h3 {
    font-size: 18px;
    letter-spacing: 6px;
  }
}
@media (max-width: 767px) {
  .half-title h3 {
    font-size: 16px;
  }
}
.half-title h3::before {
  content: "●";
  font-size: 10px;
  color: #F2C2D2;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .half-title h3::before {
    margin-right: 6px;
  }
}
.half-title p {
  font: 18px "Cormorant Garamond", serif;
  color: #A68590;
}
@media (max-width: 999px) {
  .half-title p {
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .half-title p {
    font-size: 14px;
  }
}

.btn {
  position: relative;
  width: 320px;
  background: -webkit-gradient(linear, left top, right top, from(#F2C2D2), to(#F2E6C2));
  background: linear-gradient(to right, #F2C2D2, #F2E6C2);
  text-align: center;
  margin: 0 auto;
  z-index: 0;
}
@media (max-width: 767px) {
  .btn {
    width: 215px;
  }
}
.btn::before {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn a, .btn b {
  position: relative;
  display: block;
  font: 18px "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #59474D;
  letter-spacing: 6px;
  padding: 10px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 2;
}
@media (max-width: 767px) {
  .btn a, .btn b {
    font-size: 16px;
    letter-spacing: 2px;
    padding-right: 20px;
  }
}
.btn a::before, .btn b::before {
  position: absolute;
  content: " ";
  top: -4px;
  bottom: 0;
  right: calc(1rem - 0.5px);
  width: 6px;
  height: 1px;
  background: #59474D;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn a::after, .btn b::after {
  position: absolute;
  content: " ";
  top: 0;
  bottom: 0;
  right: 1rem;
  width: 30px;
  height: 1px;
  background: #59474D;
  margin: auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn:hover::before {
  opacity: 1;
}
.btn:hover a::before {
  top: -4px;
  right: calc(1rem - 4.5px);
  width: 6px;
  background: #59474D;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn:hover a::after {
  top: 0;
  right: calc(1rem - 4px);
  width: 34px;
  background: #59474D;
  margin: auto;
}

.page-link h3 {
  position: relative;
  font: 28px "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .page-link h3 {
    font-size: 18px;
  }
}
.page-link h3::after {
  content: " ";
  position: absolute;
  bottom: -60px;
  right: 0;
  left: 0;
  width: 1px;
  height: 40px;
  background: #000;
  margin: 0 auto;
  z-index: 4;
}
@media (max-width: 767px) {
  .page-link h3::after {
    bottom: -40px;
    height: 30px;
  }
}
.page-link .link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 900px;
  margin: 0 auto;
}
@media (max-width: 999px) {
  .page-link .link {
    width: 92%;
  }
}
.page-link .link::before {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.page-link .link .textbox {
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 30px;
}
.page-link .link .btn {
  width: 490px;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-link .link .btn {
    width: 295px;
  }
}
.page-link .link .btn a, .page-link .link .btn b {
  letter-spacing: 1px;
  padding: 8px 20px 8px 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .page-link .link .btn a, .page-link .link .btn b {
    padding-right: 40px;
  }
}
.page-link .link:hover::before {
  opacity: 1;
}
.page-link .link:hover .btn::before {
  opacity: 1;
}

.treatment-cont {
  width: 1100px;
  background: #FAFAFA;
  margin: 0 auto 60px;
}
@media (max-width: 1099px) {
  .treatment-cont {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .treatment-cont {
    width: 100%;
    margin-bottom: 40px;
  }
}
.treatment-cont h3 {
  background: #FFF;
  font: 22px "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #59474D;
  letter-spacing: 8px;
  text-align: center;
  border-top: 1px solid #A68590;
  border-bottom: 1px dotted #A68590;
  padding: 15px 0;
}
@media (max-width: 767px) {
  .treatment-cont h3 {
    font-size: 16px;
    letter-spacing: 6px;
    padding: 16px 0;
  }
}
.treatment-cont .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 20px 20px 0 40px;
  margin: 0 -20px 50px;
}
@media (max-width: 767px) {
  .treatment-cont .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px 12px 6px;
    margin: 0 0 20px;
  }
}
.treatment-cont .wrap a {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: calc(25% - 20px);
  background: #FFF;
  text-align: center;
  border: 1px solid #A68590;
  padding: 2px;
  margin: 0 20px 20px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .treatment-cont .wrap a {
    max-width: 44%;
    margin-bottom: 16px;
    margin: 0 8px 16px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44%;
            flex: 0 0 44%;
  }
}
.treatment-cont .wrap a .item {
  text-align: center;
  background: url("img/common/common_arrow.png") center right 10px no-repeat #FFF;
  background-size: 6px;
  font-size: 16px;
  line-height: 1.3;
  border: 1px solid #A68590;
  padding: 12px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 1099px) {
  .treatment-cont .wrap a .item {
    font-size: 16px;
  }
}
@media (max-width: 999px) {
  .treatment-cont .wrap a .item {
    background: url("img/common/common_arrow.png") center right 10px no-repeat #FFF;
    background-size: 4px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .treatment-cont .wrap a .item {
    background: none;
    font-size: 13px;
    line-height: 1.5;
    padding: 14px 0;
  }
}
.treatment-cont .wrap a .item span {
  font: 18px "Cormorant Garamond", serif;
  color: #A68590;
}
@media (max-width: 1099px) {
  .treatment-cont .wrap a .item span {
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media (max-width: 999px) {
  .treatment-cont .wrap a .item span {
    font-size: 14px;
  }
}
.treatment-cont .wrap a.insurance {
  background: #FBEEF2;
}
.treatment-cont .wrap a.insurance .item {
  background: url("img/common/common_arrow.png") center right 10px no-repeat #FBEEF2;
  background-size: 6px;
}
@media (max-width: 999px) {
  .treatment-cont .wrap a.insurance .item {
    background: url("img/common/common_arrow.png") center right 10px no-repeat #FBEEF2;
    background-size: 4px;
  }
}
.treatment-cont .wrap a.self {
  border: 1px solid #663D29;
  background: #FBFAEE;
}
.treatment-cont .wrap a.self .item {
  border: 1px solid #663D29;
  background: url("img/common/common_arrow.png") center right 10px no-repeat #FBFAEE;
  background-size: 6px;
}
.treatment-cont .wrap a.self .item span {
  color: #663D29;
}
@media (max-width: 999px) {
  .treatment-cont .wrap a.self .item {
    background: url("img/common/common_arrow.png") center right 10px no-repeat #FBEEF2;
    background-size: 4px;
  }
}
.treatment-cont .wrap a:hover {
  border: 1px solid #F2C2D2;
  background: #F2C2D2;
}
.treatment-cont .wrap a:hover .item {
  background: url("img/common/common_arrow.png") center right 7px no-repeat #FFF;
  background-size: 6px;
  border: 1px solid #F2C2D2;
}
@media (max-width: 999px) {
  .treatment-cont .wrap a:hover .item {
    background: url("img/common/common_arrow.png") center right 7px no-repeat #FFF;
    background-size: 4px;
    font-size: 14px;
  }
}
.treatment-cont .wrap a:hover.self {
  border: 1px solid #ddc89f;
  background: #ddc89f;
}
.treatment-cont .wrap a:hover.self .item {
  border: 1px solid #ddc89f;
}
.treatment-cont .wrap a.self-pickup {
  border: 1px solid #663D29;
}
.treatment-cont .wrap a.self-pickup .item {
  border: 1px solid #663D29;
}
.treatment-cont .wrap a.self-pickup .item span {
  color: #663D29;
}
.treatment-cont .wrap a.self-pickup:hover {
  border: 1px solid #ddc89f;
  background: #ddc89f;
}
.treatment-cont .wrap a.self-pickup:hover .item {
  border: 1px solid #ddc89f;
}
.treatment-cont .wrap a.no-click {
  opacity: 0.5;
}
.treatment-cont .wrap a.no-click:hover {
  border: 1px solid #A68590;
  background: #fff;
}
.treatment-cont .wrap a.no-click:hover .item {
  background: url("img/common/common_arrow.png") center right 10px no-repeat #FFF;
  background-size: 6px;
  border: 1px solid #A68590;
}
@media (max-width: 999px) {
  .treatment-cont .wrap a.no-click:hover .item {
    background: url("img/common/common_arrow.png") center right 10px no-repeat #FFF;
    background-size: 4px;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .treatment-cont .wrap a.no-click:hover .item {
    background: none;
  }
}
.treatment-cont .wrap a.no-click:hover.self {
  border: 1px solid #A68590;
  background: #fff;
}
.treatment-cont .wrap a.no-click:hover.self .item {
  border: 1px solid #A68590;
}
@media (max-width: 767px) {
  .treatment-cont .btn {
    width: 255px;
  }
  .treatment-cont .btn a {
    padding-right: 40px;
  }
}

/* common-time
-----------------------------------------------------------------*/
.common-time {
  width: 100%;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .common-time {
    margin-bottom: 10px;
    display: none;
  }
}
.common-time thead tr {
  background: -webkit-gradient(linear, left top, right top, from(#F2C2D2), to(#F2E6C2));
  background: linear-gradient(to right, #F2C2D2, #F2E6C2);
}
.common-time thead tr th {
  width: 24%;
}
.common-time thead tr td {
  font: 16px "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #59474D;
  text-align: center;
  border-left: 1px solid #FFF;
  padding: 4px 0;
}
@media (max-width: 1099px) {
  .common-time thead tr td {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .common-time thead tr td {
    font-size: 12px;
    padding: 6px 0;
  }
}
.common-time thead tr td:last-child {
  border-right: 1px solid #F2E6C2;
}
.common-time tbody tr {
  background: #FFF;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.common-time tbody tr th, .common-time tbody tr td {
  border-bottom: 1px solid #ccc;
  padding: 12px 0;
}
.common-time tbody tr th {
  text-align: center;
  font-size: 14px;
  border-right: 1px dashed #ccc;
}
@media (max-width: 1099px) {
  .common-time tbody tr th {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .common-time tbody tr th {
    font-size: 1px;
    letter-spacing: 0;
  }
}
.common-time tbody tr th span {
  font: 16px "Cormorant Garamond", serif;
  color: #A68590;
  border: 2px solid #F2C2D2;
  border-radius: 16px;
  padding: 0 14px;
}
@media (max-width: 1099px) {
  .common-time tbody tr th span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .common-time tbody tr th span {
    font-size: 12px;
  }
}
.common-time tbody tr td {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #D9ADBC;
  text-align: center;
  vertical-align: middle;
  border-right: 1px dashed #ccc;
}
@media (max-width: 1099px) {
  .common-time tbody tr td {
    font-size: 20px;
  }
}
.common-time tbody tr td span {
  position: absolute;
  left: 0;
  width: 100%;
  font: 12px "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #000;
  letter-spacing: 0;
}
@media (max-width: 1099px) {
  .common-time tbody tr td span {
    font-size: 10px;
  }
}

/* common-calendar
-----------------------------------------------------------------*/
.common-calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .common-calendar {
    display: block;
  }
}
.common-calendar .item {
  width: 48%;
}
@media (max-width: 767px) {
  .common-calendar .item {
    width: 100%;
    margin-bottom: 40px;
  }
  .common-calendar .item:last-child {
    margin-bottom: 0;
  }
}
.common-calendar .item .time, .common-calendar .item .calendar {
  margin-bottom: 10px;
}
.common-calendar .item .time img {
  width: 100%;
}
.common-calendar .item .calendar .widget_bizcalendar h2 {
  display: none;
}
.common-calendar .item .calendar .widget_bizcalendar #biz_calendar {
  max-width: 100%;
}
.common-calendar .item .calendar .widget_bizcalendar #biz_calendar table {
  font-size: 14px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.common-calendar .item .calendar .widget_bizcalendar #biz_calendar table tbody th {
  background: #674B38;
  color: #FFF;
}
.common-calendar .item .calendar .widget_bizcalendar #biz_calendar table tbody td:nth-child(7) {
  background: #C2E5F2;
}
.common-calendar .item .calendar .widget_bizcalendar #biz_calendar table tbody td.holiday {
  background: #F2C2D2 !important;
  color: #000;
}
.common-calendar .item .calendar .widget_bizcalendar #biz_calendar p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}
@media (max-width: 999px) {
  .common-calendar .item .calendar .widget_bizcalendar #biz_calendar p {
    font-size: 12px;
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .common-calendar .item .calendar .widget_bizcalendar #biz_calendar p {
    font-size: 12px;
  }
}
.common-calendar .item .calendar .widget_bizcalendar #biz_calendar p .boxholiday {
  display: block;
  width: 50px;
  height: 20px;
  background: #F2C2D2;
  border: 1px solid #ccc;
  margin-right: 10px;
}
.common-calendar .item .note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}
@media (max-width: 999px) {
  .common-calendar .item .note {
    font-size: 12px;
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .common-calendar .item .note {
    font-size: 12px;
  }
}

/* common-contact
-----------------------------------------------------------------*/
.common-contact .link {
  width: 100%;
  height: 400px;
  background: url("img/first/first_flow_pagelink.jpg") no-repeat;
  background-size: 100% 400px;
}
.common-contact .link::before {
  content: none;
}
.common-contact .link .textbox {
  padding: 40px;
}
@media (max-width: 767px) {
  .common-contact .link .textbox {
    width: 92%;
    padding: 20px;
  }
}
.common-contact .link .textbox .section-text {
  margin-bottom: 20px;
}

/* common-link
-----------------------------------------------------------------*/
.common-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px auto 80px;
}
@media (max-width: 767px) {
  .common-link {
    display: block;
    margin-bottom: 40px;
  }
}
.common-link a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 49%;
  padding: 28px 0;
}
@media (max-width: 767px) {
  .common-link a {
    width: 100%;
    padding: 16px 0;
    margin-bottom: 14px;
  }
}
.common-link a::before {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.common-link a .text {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 26px 50px;
  z-index: 2;
}
@media (max-width: 767px) {
  .common-link a .text {
    width: 200px;
    padding: 20px 0;
  }
}
.common-link a .text h3 {
  font: 28px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 8px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .common-link a .text h3 {
    font-size: 22px;
    letter-spacing: 6px;
  }
}
.common-link a .text p {
  font: 18px "Cormorant Garamond", serif;
  color: #A68590;
}
@media (max-width: 767px) {
  .common-link a .text p {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.common-link a.first {
  background: url("img/common/common_link_first.jpg") top center no-repeat;
  background-size: 100% 100%;
}
.common-link a.access {
  background: url("img/common/common_link_access.jpg") top center no-repeat;
  background-size: 100% 100%;
}
.common-link a.medical {
  background: url("img/common/common_link_medical.jpg") top center no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .common-link a.medical {
    margin-bottom: 0;
  }
}
.common-link a:hover::before {
  opacity: 1;
}

/* common-counselling
-----------------------------------------------------------------*/
.common-counselling {
  background: url("img/medical/counselling_bg.jpg") no-repeat;
  background-size: cover;
  padding: 80px 0;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .common-counselling {
    background: url("img/medical/counselling_bg.jpg") center no-repeat;
    background-size: cover;
    padding: 40px 0;
    margin-bottom: 60px;
  }
}
.common-counselling .cont {
  width: 56%;
}
@media (max-width: 767px) {
  .common-counselling .cont {
    width: 100%;
  }
}
.common-counselling .cont .section-title {
  position: relative;
  text-align: left;
  margin-bottom: 44px;
}
.common-counselling .cont .section-title::after {
  position: absolute;
  content: " ";
  bottom: -26px;
  left: 0;
  width: 40px;
  height: 1px;
  background: #000;
}
@media (max-width: 767px) {
  .common-counselling .cont .section-title h2 {
    letter-spacing: 2px;
  }
}

/* scroll-link
-----------------------------------------------------------------*/
.scroll-link {
  padding-top: 166px;
  margin-top: -166px;
}
@media (max-width: 767px) {
  .scroll-link {
    padding-top: 50px;
    margin-top: -50px;
  }
}

/******************************************************************
 * トップページ
******************************************************************/
/* MV
-----------------------------------------------------------------*/
.mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 600px;
  background: url("img/top/top_mv.jpg") center no-repeat;
  background-size: cover;
}
@media (max-width: 1099px) {
  .mv {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .mv {
    background: url("img/top/top_mv_sp.jpg") center no-repeat;
    background-size: cover;
    height: 325px;
  }
}
.mv .mv-catch {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 120px 40px 40px;
}
@media (max-width: 767px) {
  .mv .mv-catch {
    padding: 60px 8px 26px;
  }
}
.mv .mv-catch .logo {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .mv .mv-catch .logo {
    width: 160px;
    top: -20px;
  }
}
.mv .mv-catch .title {
  font: 32px "游明朝体", "Yu Mincho", YuMincho, serif;
  line-height: 2.3;
  letter-spacing: 8px;
  margin-bottom: 12px;
}
@media (max-width: 1099px) {
  .mv .mv-catch .title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .mv .mv-catch .title {
    font-size: 20px;
    letter-spacing: 3px;
  }
}
.mv .mv-catch .title span {
  position: relative;
}
.mv .mv-catch .title span::before {
  content: " ";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #F2C2D2;
}
@media (max-width: 1099px) {
  .mv .mv-catch .title span::before {
    bottom: -8px;
  }
}
.mv .mv-catch .subtitle {
  font: 20px "Cormorant Garamond", serif;
  color: #A68590;
}
@media (max-width: 1099px) {
  .mv .mv-catch .subtitle {
    font-size: 18px;
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .mv .mv-catch .subtitle {
    font-size: 12px;
  }
}
.mv .mv-btn {
  position: absolute;
  bottom: -55px;
  right: -220px;
}
.mv .mv-btn a {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#F2C2D2), to(#F2E6C2));
  background: linear-gradient(to right, #F2C2D2, #F2E6C2);
  display: table-cell;
  width: 180px;
  height: 180px;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  font: 18px "游明朝体", "Yu Mincho", YuMincho, serif;
}
.mv .mv-btn a::after {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 8px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
  left: 0;
  right: 0;
  margin: auto;
  bottom: 40px;
}
.mv .mv-btn a:hover {
  opacity: 0.8;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 1300px) {
  .mv .mv-btn {
    right: -15%;
  }
}
@media (max-width: 1000px) {
  .mv .mv-btn {
    right: -10%;
  }
  .mv .mv-btn a {
    font-size: 16px;
    height: 160px;
    width: 160px;
  }
}
@media (max-width: 860px) {
  .mv .mv-btn {
    right: -6%;
  }
}
@media (max-width: 767px) {
  .mv .mv-btn {
    display: none;
  }
}

/* top-news
-----------------------------------------------------------------*/
.top-news {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .top-news {
    padding: 30px 0;
  }
}
.top-news .news-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1100px;
  margin: 0 auto 110px;
}
@media (max-width: 1099px) {
  .top-news .news-article {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .top-news .news-article {
    display: block;
    margin-bottom: 50px;
  }
}
.top-news .news-article .left {
  width: 300px;
  background: rgba(242, 194, 210, 0.2);
  padding: 27px 10px;
}
@media (max-width: 1099px) {
  .top-news .news-article .left {
    width: 250px;
  }
}
@media (max-width: 999px) {
  .top-news .news-article .left {
    width: 230px;
  }
}
@media (max-width: 850px) {
  .top-news .news-article .left {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .top-news .news-article .left {
    width: 100%;
    background: none;
    padding: 0;
  }
}
.top-news .news-article .right {
  width: 64%;
}
@media (max-width: 1099px) {
  .top-news .news-article .right {
    width: 69%;
  }
}
@media (max-width: 767px) {
  .top-news .news-article .right.inner {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .top-news .news-article .right {
    width: 100%;
    border-top: 1px dotted #A68590;
    border-bottom: 1px dotted #A68590;
    padding-top: 16px;
    margin-bottom: 20px;
  }
}
.top-news .news-article .right .article-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px dotted #A68590;
  padding: 0 0 20px 20px;
  margin-bottom: 30px;
}
@media (max-width: 1099px) {
  .top-news .news-article .right .article-item {
    padding: 0 0 14px 10px;
  }
}
@media (max-width: 767px) {
  .top-news .news-article .right .article-item {
    display: block;
    padding: 0 0 16px;
    margin-bottom: 16px;
  }
}
.top-news .news-article .right .article-item .dc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  margin-right: 26px;
}
@media (max-width: 1099px) {
  .top-news .news-article .right .article-item .dc {
    font-size: 13px;
  }
}
@media (max-width: 999px) {
  .top-news .news-article .right .article-item .dc {
    font-size: 12px;
    letter-spacing: 0;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .top-news .news-article .right .article-item .dc {
    margin: 0 0 10px;
  }
}
.top-news .news-article .right .article-item .dc .date {
  color: #555;
  margin-right: 10px;
}
@media (max-width: 999px) {
  .top-news .news-article .right .article-item .dc .date {
    margin-right: 6px;
  }
}
@media (max-width: 767px) {
  .top-news .news-article .right .article-item .dc .date {
    font-size: 12px;
  }
}
.top-news .news-article .right .article-item .dc .cat {
  width: 100px;
  background: #D9ADBC;
  font-weight: bold;
  text-align: center;
  color: #FFF;
}
@media (max-width: 999px) {
  .top-news .news-article .right .article-item .dc .cat {
    width: 80px;
  }
}
@media (max-width: 767px) {
  .top-news .news-article .right .article-item .dc .cat {
    width: auto;
    padding: 0 0.5em;
  }
}
.top-news .news-article .right .article-item h3 {
  width: 68%;
  text-decoration: underline;
}
@media (max-width: 1099px) {
  .top-news .news-article .right .article-item h3 {
    width: 66%;
    font-size: 16px;
  }
}
@media (max-width: 999px) {
  .top-news .news-article .right .article-item h3 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .top-news .news-article .right .article-item h3 {
    width: 100%;
    margin-right: 8px;
  }
}
.top-news .news-article .right .article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .top-news .news-article .right .article-item:last-child {
    padding-bottom: 16px;
  }
}
.top-news .news-article .right .article-item.count {
  border-bottom: 1px dotted #A68590;
  padding: 0 0 20px 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .top-news .news-article .right .article-item.count {
    border-bottom: none;
    padding-bottom: 16px;
    margin-bottom: 0;
  }
}
.top-news .news-article .tel-bnr {
  margin-bottom: 16px;
}
.top-news .news-article .news-btn {
  width: 160px;
  background: #FFF;
  text-align: center;
  border: 1px solid #A68590;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-news .news-article .news-btn a {
  display: block;
  background: url("img/common/common_arrow.png") center right 10px no-repeat;
  background-size: 6px;
  font: 16px "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #735C63;
  letter-spacing: 6px;
  padding: 8px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .top-news .news-article .news-btn a {
    background: url("img/common/common_arrow.png") center right 10px no-repeat;
    background-size: 5px;
    letter-spacing: 4px;
    padding-right: 12px;
  }
}
.top-news .news-article .news-btn:hover {
  border: 1px solid #F2C2D2;
  background: #F2C2D2;
}
.top-news .news-article .news-btn:hover a {
  color: #FFF;
  background: url("img/common/common_arrow_w.png") center right 7px no-repeat;
  background-size: 6px;
}
@media (max-width: 767px) {
  .top-news .common-calendar .item .common-time {
    display: none;
  }
}

/* top-intro
-----------------------------------------------------------------*/
.top-intro {
  background: #FAFAFA;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .top-intro {
    padding: 40px 0;
  }
}
.top-intro .intro-head .section-title {
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .top-intro .intro-head .section-title {
    margin-bottom: 30px;
  }
}
.top-intro .intro-head .section-title::after {
  content: " ";
  position: absolute;
  bottom: -80px;
  right: 0;
  left: 0;
  width: 1px;
  height: 40px;
  background: #000;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .top-intro .intro-head .section-title::after {
    bottom: -46px;
    height: 30px;
  }
}
.top-intro .intro-head .cont {
  width: 1100px;
  background: url("img/top/top_intro_bg01.jpg") top center no-repeat;
  background-size: 100% 300px;
  padding-top: 200px;
  margin: 0 auto 50px;
}
@media (max-width: 999px) {
  .top-intro .intro-head .cont {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .top-intro .intro-head .cont {
    background: url("img/top/top_intro_bg01.jpg") top center no-repeat;
    background-size: 100% 200px;
    padding-top: 110px;
  }
}
@media (max-width: 519px) {
  .top-intro .intro-head .cont {
    background: url("img/top/top_intro_bg01.jpg") top center no-repeat;
    background-size: 100% 150px;
  }
}
@media (max-width: 375px) {
  .top-intro .intro-head .cont {
    background: url("img/top/top_intro_bg01.jpg") top center no-repeat;
    background-size: 100% 130px;
    padding-top: 90px;
  }
}
.top-intro .intro-head .cont .box {
  width: 900px;
  background: #FFF;
  padding: 30px 50px 50px;
  margin: 0 auto;
}
@media (max-width: 999px) {
  .top-intro .intro-head .cont .box {
    width: 92%;
    padding: 20px 28px 40px;
  }
}
@media (max-width: 767px) {
  .top-intro .intro-head .cont .box {
    padding: 18px 20px 30px;
  }
}
.top-intro .intro-head .cont .box .section-text {
  line-height: 2;
  margin-bottom: 30px;
}
.top-intro .page-link .link {
  height: 180px;
  background: url("img/top/top_intro_pagelink.jpg") top center no-repeat;
  background-size: 100% 180px;
}
@media (max-width: 767px) {
  .top-intro .page-link .link {
    height: 110px;
  }
}

/* top-checkin
-----------------------------------------------------------------*/
.top-checkin {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .top-checkin {
    padding: 40px 0;
  }
}
.top-checkin .section-text {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .top-checkin .section-text {
    margin-bottom: 40px;
  }
}

/* top-treatment
-----------------------------------------------------------------*/
.top-treatment {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .top-treatment {
    padding: 40px 0 0;
  }
}
.top-treatment .section-text {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .top-treatment .section-text {
    text-align: left;
    margin-bottom: 40px;
  }
}
.top-treatment .treatment-cont {
  background: none;
}
.top-treatment .treatment-cont.insurance .wrap {
  background: rgba(242, 194, 210, 0.15);
}
.top-treatment .treatment-cont.self .wrap {
  background: rgba(242, 230, 194, 0.15);
}

/* top-faq
-----------------------------------------------------------------*/
.top-faq {
  background: #FAFAFA;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .top-faq {
    padding: 30px 0;
  }
}
.top-faq h3 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .top-faq h3 {
    font-size: 18px;
    letter-spacing: 2px;
  }
}
.top-faq .link {
  height: 180px;
  background: url("img/top/top_faq_pagelink.jpg") top center no-repeat;
  background-size: 100% 180px;
}
@media (max-width: 767px) {
  .top-faq .link {
    height: 110px;
    background: url("img/top/top_faq_pagelink.jpg") top center no-repeat;
    background-size: 100% 110px;
  }
}
@media (max-width: 767px) {
  .top-faq .link .btn {
    width: 315px;
  }
}

/* top-doctor
-----------------------------------------------------------------*/
.top-doctor {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .top-doctor {
    padding: 0 0 10px;
  }
}
.top-doctor .inner {
  background: url("img/common/common_frame_left.png") center left no-repeat, url("img/common/common_frame_right.png") center right no-repeat;
  background-size: auto 100%;
  padding: 40px 0 60px;
}
@media (max-width: 999px) {
  .top-doctor .inner {
    width: 97%;
  }
}
@media (max-width: 767px) {
  .top-doctor .inner {
    width: 92%;
    background: none;
    padding: 40px 0;
  }
}
.top-doctor .inner .section-title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .top-doctor .inner .section-title {
    margin-bottom: 30px;
  }
}
.top-doctor .inner .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 900px;
  margin: 0 auto;
}
@media (max-width: 1099px) {
  .top-doctor .inner .wrap {
    width: 86%;
  }
}
@media (max-width: 767px) {
  .top-doctor .inner .wrap {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .top-doctor .inner .wrap.pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .top-doctor .inner .wrap.sp {
    display: none;
  }
}
.top-doctor .inner .wrap .left, .top-doctor .inner .wrap .top {
  width: 64%;
}
@media (max-width: 1099px) {
  .top-doctor .inner .wrap .left, .top-doctor .inner .wrap .top {
    width: 68%;
  }
}
@media (max-width: 767px) {
  .top-doctor .inner .wrap .left, .top-doctor .inner .wrap .top {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
    background: #FAFAFA;
    padding: 16px;
    margin-bottom: 20px;
  }
  .top-doctor .inner .wrap .left::after, .top-doctor .inner .wrap .top::after {
    position: absolute;
    content: "Atsushi Miyake";
    top: 18px;
    right: 14px;
    font: 18px "Cormorant Garamond", serif;
    letter-spacing: 3px;
    color: #A68590;
  }
}
@media (max-width: 767px) {
  .top-doctor .inner .wrap .left .img, .top-doctor .inner .wrap .top .img {
    width: 48%;
    -webkit-box-shadow: 5px 5px #E5E5E5;
            box-shadow: 5px 5px #E5E5E5;
  }
}
.top-doctor .inner .wrap .left .img img, .top-doctor .inner .wrap .top .img img {
  width: 100%;
}
.top-doctor .inner .wrap .left .name, .top-doctor .inner .wrap .top .name {
  width: 242px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .top-doctor .inner .wrap .left .name, .top-doctor .inner .wrap .top .name {
    width: 48%;
    margin-bottom: 0;
  }
}
.top-doctor .inner .wrap .left .name p, .top-doctor .inner .wrap .top .name p {
  font: 17px "游明朝体", "Yu Mincho", YuMincho, serif;
  margin-bottom: 20px;
}
@media (max-width: 999px) {
  .top-doctor .inner .wrap .left .name p, .top-doctor .inner .wrap .top .name p {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .top-doctor .inner .wrap .left .name p, .top-doctor .inner .wrap .top .name p {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.top-doctor .inner .wrap .left .name h3, .top-doctor .inner .wrap .top .name h3 {
  position: relative;
  font: 26px "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: right;
}
@media (max-width: 999px) {
  .top-doctor .inner .wrap .left .name h3, .top-doctor .inner .wrap .top .name h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .top-doctor .inner .wrap .left .name h3, .top-doctor .inner .wrap .top .name h3 {
    font-size: 18px;
  }
}
.top-doctor .inner .wrap .left .name h3::before, .top-doctor .inner .wrap .top .name h3::before {
  position: absolute;
  content: " ";
  top: 18px;
  left: 20px;
  width: 100px;
  height: 1px;
  background: #A68590;
}
@media (max-width: 767px) {
  .top-doctor .inner .wrap .left .name h3::before, .top-doctor .inner .wrap .top .name h3::before {
    top: 14px;
    left: 4px;
    width: 70px;
  }
}
.top-doctor .inner .wrap .left .links a, .top-doctor .inner .wrap .top .links a {
  display: block;
  border: 1px solid #A68590;
  padding: 2px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top-doctor .inner .wrap .left .links a .bnr, .top-doctor .inner .wrap .top .links a .bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("img/common/btn_arrow.svg") center right 1rem no-repeat #FFF;
  border: 1px solid #A68590;
  padding: 14px 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1099px) {
  .top-doctor .inner .wrap .left .links a .bnr, .top-doctor .inner .wrap .top .links a .bnr {
    background: url("img/common/btn_arrow.svg") center right 1rem no-repeat #FFF;
    background-size: 24px;
    padding: 14px 0;
  }
}
@media (max-width: 799px) {
  .top-doctor .inner .wrap .left .links a .bnr, .top-doctor .inner .wrap .top .links a .bnr {
    background: url("img/common/btn_arrow.svg") center right 4px no-repeat #FFF;
    background-size: 24px;
  }
}
.top-doctor .inner .wrap .left .links a .bnr .bnr-left, .top-doctor .inner .wrap .top .links a .bnr .bnr-left {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28%;
  font: 17px "游明朝体", "Yu Mincho", YuMincho, serif;
  margin-right: 16px;
}
@media (max-width: 1099px) {
  .top-doctor .inner .wrap .left .links a .bnr .bnr-left, .top-doctor .inner .wrap .top .links a .bnr .bnr-left {
    width: 22%;
    font-size: 14px;
    letter-spacing: 0;
  }
}
@media (max-width: 999px) {
  .top-doctor .inner .wrap .left .links a .bnr .bnr-left, .top-doctor .inner .wrap .top .links a .bnr .bnr-left {
    width: 19%;
    font-size: 12px;
  }
}
@media (max-width: 799px) {
  .top-doctor .inner .wrap .left .links a .bnr .bnr-left, .top-doctor .inner .wrap .top .links a .bnr .bnr-left {
    width: 22%;
    margin-right: 8px;
  }
}
.top-doctor .inner .wrap .left .links a .bnr .bnr-left span, .top-doctor .inner .wrap .top .links a .bnr .bnr-left span {
  display: block;
  font: 14px "Cormorant Garamond", serif;
  color: #A68590;
  margin-top: 6px;
}
@media (max-width: 999px) {
  .top-doctor .inner .wrap .left .links a .bnr .bnr-left span, .top-doctor .inner .wrap .top .links a .bnr .bnr-left span {
    font-size: 12px;
  }
}
.top-doctor .inner .wrap .left .links a .bnr .bnr-left::after, .top-doctor .inner .wrap .top .links a .bnr .bnr-left::after {
  position: absolute;
  content: " ";
  top: -4px;
  right: 0;
  width: 1px;
  height: 58px;
  background: #A68590;
}
@media (max-width: 999px) {
  .top-doctor .inner .wrap .left .links a .bnr .bnr-left::after, .top-doctor .inner .wrap .top .links a .bnr .bnr-left::after {
    top: -5px;
    height: 50px;
  }
}
.top-doctor .inner .wrap .left .links a .bnr .bnr-right, .top-doctor .inner .wrap .top .links a .bnr .bnr-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: unset;
  font-size: 14px;
  color: #A68590;
}
@media (max-width: 999px) {
  .top-doctor .inner .wrap .left .links a .bnr .bnr-right, .top-doctor .inner .wrap .top .links a .bnr .bnr-right {
    font-size: 13px;
  }
}
@media (max-width: 799px) {
  .top-doctor .inner .wrap .left .links a .bnr .bnr-right, .top-doctor .inner .wrap .top .links a .bnr .bnr-right {
    font-size: 12px;
  }
}
.top-doctor .inner .wrap .left .links a:last-child, .top-doctor .inner .wrap .top .links a:last-child {
  margin-bottom: 0;
}
.top-doctor .inner .wrap .left .links a:hover, .top-doctor .inner .wrap .top .links a:hover {
  border: 1px solid #F2C2D2;
  background: #F2C2D2;
}
.top-doctor .inner .wrap .left .links a:hover .bnr, .top-doctor .inner .wrap .top .links a:hover .bnr {
  background: url("img/common/btn_arrow.svg") center right 0.7rem no-repeat #FFF;
  border: 1px solid #F2C2D2;
}
@media (max-width: 1099px) {
  .top-doctor .inner .wrap .left .links a:hover .bnr, .top-doctor .inner .wrap .top .links a:hover .bnr {
    background: url("img/common/btn_arrow.svg") center right 0.7rem no-repeat #FFF;
    background-size: 24px;
  }
}
@media (max-width: 799px) {
  .top-doctor .inner .wrap .left .links a:hover .bnr, .top-doctor .inner .wrap .top .links a:hover .bnr {
    background: url("img/common/btn_arrow.svg") center right 1px no-repeat #FFF;
    background-size: 24px;
  }
}
.top-doctor .inner .wrap .right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32%;
  -webkit-box-shadow: 10px 10px #E5E5E5;
          box-shadow: 10px 10px #E5E5E5;
}
@media (max-width: 1099px) {
  .top-doctor .inner .wrap .right {
    width: 28%;
  }
}
@media (max-width: 999px) {
  .top-doctor .inner .wrap .right {
    -webkit-box-shadow: 6px 6px #E5E5E5;
            box-shadow: 6px 6px #E5E5E5;
  }
}
.top-doctor .inner .wrap .right::after {
  position: absolute;
  content: "Atsushi Miyake";
  top: 74px;
  right: -124px;
  font: 28px "Cormorant Garamond", serif;
  color: #A68590;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 1099px) {
  .top-doctor .inner .wrap .right::after {
    right: -100px;
  }
}
@media (max-width: 1099px) {
  .top-doctor .inner .wrap .right::after {
    font-size: 22px;
  }
}
.top-doctor .inner .wrap.sp .bottom a {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
.top-doctor .inner .wrap.sp .bottom a .title {
  font: 18px "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: center;
  letter-spacing: 6px;
  border: 1px solid #A68590;
  padding: 14px 0;
  margin-bottom: 10px;
}
.top-doctor .inner .wrap.sp .bottom a .title span {
  font: 14px "Cormorant Garamond", serif;
  color: #A68590;
  letter-spacing: 0;
}
.top-doctor .inner .wrap.sp .bottom a .text {
  background: url("img/common/btn_arrow.svg") center right no-repeat;
  background-size: 30px;
  font-size: 14px;
  color: #A68590;
  letter-spacing: 0;
}
.top-doctor .inner .wrap.sp .bottom a:last-child {
  margin-bottom: 0;
}

/* top-access
-----------------------------------------------------------------*/
.top-access {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .top-access {
    padding: 0 0 40px;
  }
}
.top-access h3 {
  position: relative;
  font: 24px "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: center;
  letter-spacing: 10px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .top-access h3 {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 50px;
  }
}
.top-access h3 span {
  color: #A68590;
}
.top-access h3 span.kakko {
  color: #000;
}
.top-access h3 span.kakko:first-child {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .top-access h3 span.kakko:first-child {
    margin-right: 20px;
  }
}
.top-access h3 span.kakko:last-child {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .top-access h3 span.kakko:last-child {
    margin-left: 20px;
  }
}
.top-access h3::after {
  position: absolute;
  content: " ";
  bottom: -30px;
  left: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: #000;
  margin: 0 auto;
}
.top-access .section-text {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .top-access .section-text {
    text-align: left;
    margin-bottom: 40px;
  }
}
.top-access .iframe-inner {
  width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1099px) {
  .top-access .iframe-inner {
    width: 100%;
  }
}
.top-access .iframe-inner iframe {
  width: 100%;
  height: 400px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .top-access .iframe-inner iframe {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .top-access .iframe-inner iframe {
    height: 200px;
    margin-bottom: 24px;
  }
}

/******************************************************************
 * 下層共通要素
******************************************************************/
/* 下層MV
-----------------------------------------------------------------*/
.mv-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 283px;
  /* --- background --- */
}
@media (max-width: 767px) {
  .mv-sub {
    height: 150px;
  }
}
.mv-sub .mv-catch {
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 46px 50px;
}
@media (max-width: 767px) {
  .mv-sub .mv-catch {
    padding: 20px 30px;
  }
}
.mv-sub .mv-catch .title {
  font: 32px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 10px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .mv-sub .mv-catch .title {
    font-size: 22px;
    letter-spacing: 6px;
    margin-bottom: 0;
  }
}
.mv-sub .mv-catch .subtitle {
  font: 20px "Cormorant Garamond", serif;
  color: #A68590;
}
@media (max-width: 767px) {
  .mv-sub .mv-catch .subtitle {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.mv-sub.first {
  background: url("img/first/first_mv.jpg") center no-repeat;
  background-size: cover;
}
.mv-sub.about {
  background: url("img/about/about_mv.jpg") center no-repeat;
  background-size: cover;
}
.mv-sub.medical {
  background: url("img/medical/medical_mv.jpg") center no-repeat;
  background-size: cover;
}
.mv-sub.medical-archive {
  background: url("img/medical/medical_archive_mv.jpg") center no-repeat;
  background-size: cover;
}
.mv-sub.medical-single {
  background: url("img/medical/medical_single_mv.jpg") center no-repeat;
  background-size: cover;
}
.mv-sub.insurance {
  background: url("img/medical/medical_insurance_mv.jpg") center no-repeat;
  background-size: cover;
}
.mv-sub.self {
  background: url("img/medical/medical_self_bg.jpg") center no-repeat;
  background-size: cover;
}
.mv-sub.access {
  background: url("img/access/access_mv.jpg") center no-repeat;
  background-size: cover;
}
.mv-sub.faq {
  background: url("img/faq/faq_mv.jpg") center no-repeat;
  background-size: cover;
}

/* breadcrumb
-----------------------------------------------------------------*/
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}
.breadcrumb li {
  position: relative;
  font-size: 14px;
  line-height: 1;
  margin-right: 40px;
}
.breadcrumb li a {
  text-decoration: underline;
}
.breadcrumb li:after {
  position: absolute;
  content: " ";
  top: 4px;
  right: -22px;
  width: 5px;
  height: 8px;
  background: url("img/common/common_arrow.png") no-repeat;
  background-size: 5px;
}
.breadcrumb li:last-child {
  margin-right: 0;
}
.breadcrumb li:last-child:after {
  content: none;
}
.breadcrumb li.list-item__long {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47%;
          flex: 0 1 47%;
  margin-right: 0;
}

/* 注意事項
-----------------------------------------------------------------*/
.warning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .warning {
    display: block;
  }
}
.warning p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 260px;
  background: #FAFAFA;
}
@media (max-width: 1099px) {
  .warning p {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .warning p {
    width: 100%;
    padding: 10px 0;
  }
}
.warning p span {
  position: relative;
  display: block;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .warning p span {
    line-height: 1.6;
    padding-top: 24px;
  }
}
.warning p span::before {
  position: absolute;
  content: " ";
  top: 0;
  right: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("img/common/warning_icon.png") no-repeat;
  background-size: 20px;
  margin: 0 auto;
}
.warning ul {
  width: 72%;
  border-top: 1px dotted #A68590;
  border-bottom: 1px dotted #A68590;
  padding: 40px 20px;
}
@media (max-width: 1099px) {
  .warning ul {
    width: 75%;
  }
}
@media (max-width: 999px) {
  .warning ul {
    width: 72%;
  }
}
@media (max-width: 767px) {
  .warning ul {
    width: 100%;
    padding: 20px 6px;
  }
}
.warning ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
}
@media (max-width: 923px) {
  .warning ul li {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
@media (max-width: 767px) {
  .warning ul li {
    font-size: 13px;
  }
}
.warning ul li::before {
  content: "●";
  font-size: 10px;
  color: #F2C2D2;
  margin-right: 10px;
}
.warning ul li:last-child {
  margin-bottom: 0;
}

/* tab-menu
-----------------------------------------------------------------*/
.tab-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .tab-menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.tab-menu li {
  width: 25%;
  font: 22px "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: center;
  letter-spacing: 4px;
  color: #59474D;
  border-right: 1px solid #A68590;
  border-bottom: 1px solid #A68590;
  padding: 10px 0;
  cursor: pointer;
}
@media (max-width: 767px) {
  .tab-menu li {
    width: 49%;
    font-size: 15px;
    letter-spacing: 0;
    border: 1px solid #A68590;
    margin-bottom: 8px;
  }
}
.tab-menu li.is-active {
  background: -webkit-gradient(linear, left top, right top, from(#F2C2D2), to(#F2E6C2));
  background: linear-gradient(to right, #F2C2D2, #F2E6C2);
  border-bottom: 0;
}
@media (max-width: 767px) {
  .tab-menu li.is-active {
    border: none;
  }
}
.tab-menu li:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .tab-menu li:last-child {
    border-right: 1px solid #A68590;
  }
}
@media (max-width: 767px) {
  .tab-menu li:last-child.is-active {
    border: none;
  }
}

/* 404 page
-----------------------------------------------------------------*/
.error-content {
  text-align: center;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .error-content {
    padding: 60px 0;
  }
}
.error-content .section-title {
  margin-bottom: 40px;
}
.error-content h3 {
  font: 22px "游明朝体", "Yu Mincho", YuMincho, serif;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .error-content h3 {
    font-size: 18px;
    line-height: 1.8;
  }
}
.error-content .error-list {
  width: 60%;
  background: #eee;
  font-size: 16px;
  border-radius: 10px;
  padding: 20px 40px;
  margin: 20px auto;
}
@media (max-width: 767px) {
  .error-content .error-list {
    width: 100%;
    font-size: 14px;
    padding: 20px 30px;
  }
}
.error-content .error-txt {
  font-size: 16px;
}
@media (max-width: 767px) {
  .error-content .error-txt {
    font-size: 14px;
  }
}
.error-content .btn {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .error-content .btn {
    margin-top: 40px;
  }
}

/******************************************************************
 * 初診の方へ
******************************************************************/
/* first-intro
-----------------------------------------------------------------*/
.first-intro {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .first-intro {
    padding: 30px 0;
  }
}
.first-intro .intro-desc {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .first-intro .intro-desc {
    margin-bottom: 60px;
  }
}
.first-intro .intro-desc .section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .first-intro .intro-desc .section-title {
    margin-bottom: 30px;
  }
}
.first-intro .intro-desc .section-text {
  text-align: center;
}
@media (max-width: 767px) {
  .first-intro .intro-desc .section-text {
    text-align: left;
  }
}

/* first-belonging
-----------------------------------------------------------------*/
.first-belonging {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .first-belonging {
    padding: 30px 0;
  }
}
.first-belonging .section-title {
  position: relative;
  margin-bottom: 40px;
}
.first-belonging .section-title::after {
  position: absolute;
  content: " ";
  bottom: -60px;
  right: 0;
  left: 0;
  width: 1px;
  height: 40px;
  background: #000;
  margin: 0 auto;
}
.first-belonging .belonging-list {
  background: rgba(242, 194, 210, 0.15);
  padding: 40px 30px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .first-belonging .belonging-list {
    padding: 10px;
  }
}
.first-belonging .belonging-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #FFF;
  padding: 30px 40px 10px;
}
@media (max-width: 767px) {
  .first-belonging .belonging-list ul {
    display: block;
    padding-bottom: 10px;
  }
}
.first-belonging .belonging-list ul li {
  width: 48%;
  background: url("img/common/checkbox.png") top 6px left no-repeat;
  background-size: 20px;
  padding-left: 40px;
  margin-bottom: 20px;
}
@media (max-width: 1099px) {
  .first-belonging .belonging-list ul li {
    background: url("img/common/checkbox.png") top 4px left no-repeat;
    background-size: 18px;
    font-size: 15px;
  }
}
@media (max-width: 999px) {
  .first-belonging .belonging-list ul li {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .first-belonging .belonging-list ul li {
    width: 100%;
    font-size: 13px;
  }
}
.first-belonging .warning {
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .first-belonging .warning {
    margin-bottom: 40px;
  }
}
.first-belonging .page-link .link {
  width: 1100px;
  height: 280px;
  background: url("img/first/first_belonging_pagelink.jpg") top center no-repeat;
  background-size: 100% 280px;
}
@media (max-width: 1099px) {
  .first-belonging .page-link .link {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .first-belonging .page-link .link {
    width: 100%;
    height: 200px;
  }
}
@media (max-width: 767px) {
  .first-belonging .page-link .link .textbox {
    padding: 16px;
  }
}
.first-belonging .page-link .link .textbox .section-text {
  margin-bottom: 20px;
}
.first-belonging .page-link .link .textbox .btn {
  position: relative;
  width: 280px;
}
@media (max-width: 767px) {
  .first-belonging .page-link .link .textbox .btn {
    width: 250px;
  }
}
.first-belonging .page-link .link .textbox .btn::after {
  position: absolute;
  content: " ";
  top: 7px;
  left: 20px;
  background: url("img/common/pdf_icon.png") center left no-repeat;
  background-size: 22px;
  width: 22px;
  height: 30px;
  z-index: 2;
}
.first-belonging .page-link .link .textbox .btn a {
  padding-right: 0;
}

/* first-flow
-----------------------------------------------------------------*/
.first-flow {
  padding: 60px 0 120px;
}
@media (max-width: 767px) {
  .first-flow {
    padding: 40px 0 60px;
  }
}
.first-flow .flow-chart {
  position: relative;
}
.first-flow .flow-chart::before {
  position: absolute;
  content: " ";
  left: 50px;
  width: 1px;
  height: 90%;
  border-left: 1px solid #A68590;
  z-index: -1;
}
@media (max-width: 999px) {
  .first-flow .flow-chart::before {
    left: 40px;
  }
}
@media (max-width: 767px) {
  .first-flow .flow-chart::before {
    content: none;
  }
}
.first-flow .flow-chart .chart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .first-flow .flow-chart .chart-item {
    position: relative;
    display: block;
    margin-bottom: 70px;
  }
}
.first-flow .flow-chart .chart-item .num {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 100px;
  background: #FFF;
  font: 18px "Cormorant Garamond", serif;
  color: #A68590;
  line-height: 0.8;
  border: 1px solid #A68590;
  z-index: 1;
}
@media (max-width: 999px) {
  .first-flow .flow-chart .chart-item .num {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .first-flow .flow-chart .chart-item .num {
    position: absolute;
    top: -14px;
    left: 10%;
    font-size: 14px;
    line-height: 0.7;
    letter-spacing: 0;
    margin: 0 auto 10px;
  }
}
@media (max-width: 375px) {
  .first-flow .flow-chart .chart-item .num {
    position: absolute;
    top: -14px;
    left: 16px;
    margin: 0 auto 10px;
  }
}
.first-flow .flow-chart .chart-item .num span {
  font-size: 50px;
  font-style: italic;
}
@media (max-width: 999px) {
  .first-flow .flow-chart .chart-item .num span {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .first-flow .flow-chart .chart-item .num span {
    font-size: 40px;
  }
}
.first-flow .flow-chart .chart-item:last-child .cont {
  margin-bottom: 0;
}
.first-flow .flow-chart .chart-item:last-child .num::after {
  position: absolute;
  content: " ";
  bottom: -161px;
  background: #FFF;
  width: 1px;
  height: 160px;
  z-index: 0;
}
@media (max-width: 767px) {
  .first-flow .flow-chart .chart-item:last-child .num::after {
    content: none;
  }
}
.first-flow .flow-chart .chart-item .cont {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 86%;
  margin-bottom: 60px;
}
@media (max-width: 1099px) {
  .first-flow .flow-chart .chart-item .cont {
    margin-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .first-flow .flow-chart .chart-item .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
  }
}
.first-flow .flow-chart .chart-item .cont .text h3 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .first-flow .flow-chart .chart-item .cont .text h3 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.first-flow .flow-chart .chart-item .cont .text h3::before {
  content: "●";
  font-size: 10px;
  color: #F2C2D2;
  background: #FFF;
}
@media (max-width: 767px) {
  .first-flow .flow-chart .chart-item .cont .text h3::before {
    content: none;
  }
}
.first-flow .flow-chart .chart-item .cont .text h3::after {
  position: absolute;
  content: " ";
  top: 18px;
  width: 100%;
  height: 1px;
  background: #A68590;
  z-index: -1;
}
.first-flow .flow-chart .chart-item .cont .text h3 span {
  font: 24px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 8px;
  background: #FFF;
  padding: 0 6px 0 14px;
}
@media (max-width: 1099px) {
  .first-flow .flow-chart .chart-item .cont .text h3 span {
    font-size: 22px;
    letter-spacing: 6px;
  }
}
@media (max-width: 767px) {
  .first-flow .flow-chart .chart-item .cont .text h3 span {
    font-size: 20px;
  }
}
.first-flow .flow-chart .chart-item .cont .text .section-text {
  width: 72%;
}
@media (max-width: 1099px) {
  .first-flow .flow-chart .chart-item .cont .text .section-text {
    width: 68%;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .first-flow .flow-chart .chart-item .cont .text .section-text {
    width: 100%;
  }
}
.first-flow .flow-chart .chart-item .cont .text .flow-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  border: 1px solid #A68590;
  margin-top: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .first-flow .flow-chart .chart-item .cont .text .flow-btn {
    width: 100%;
  }
}
.first-flow .flow-chart .chart-item .cont .text .flow-btn a {
  display: block;
  background: url("img/common/common_arrow.png") center right 1rem no-repeat;
  background-size: 6px;
  font: 16px "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #A68590;
  letter-spacing: 4px;
  padding: 8px 40px;
}
.first-flow .flow-chart .chart-item .cont .text .flow-btn.pdf::after {
  position: absolute;
  content: " ";
  top: 10px;
  left: 1rem;
  width: 14px;
  height: 20px;
  background: url("img/common/pdf_icon.png") no-repeat;
  background-size: 14px;
}
.first-flow .flow-chart .chart-item .cont .text .flow-btn.pdf a {
  padding: 8px 50px;
}
.first-flow .flow-chart .chart-item .cont .text .flow-btn.pdf:hover::after {
  background: url("img/common/pdf_icon_w.png") no-repeat;
  background-size: 14px;
}
.first-flow .flow-chart .chart-item .cont .text .flow-btn:hover {
  border: 1px solid #D9ADBC;
  background: #D9ADBC;
}
.first-flow .flow-chart .chart-item .cont .text .flow-btn:hover a {
  color: #FFF;
  background: url("img/common/common_arrow_w.png") center right 1rem no-repeat;
  background-size: 6px;
}
.first-flow .flow-chart .chart-item .cont .text .flow-btn:hover.pdf::before {
  background: url("img/common/pdf_icon_w.png") no-repeat;
  background-size: 14px;
}
.first-flow .flow-chart .chart-item .cont .img {
  position: absolute;
  top: -20px;
  right: 0;
}
@media (max-width: 999px) {
  .first-flow .flow-chart .chart-item .cont .img {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .first-flow .flow-chart .chart-item .cont .img {
    position: unset;
    width: 100%;
    text-align: center;
    margin: 0 0 26px auto;
  }
}
.first-flow .flow-chart .chart-item .cont .img img {
  text-align: center;
  -webkit-box-shadow: 10px 10px #E5E5E5;
          box-shadow: 10px 10px #E5E5E5;
}
@media (max-width: 999px) {
  .first-flow .flow-chart .chart-item .cont .img img {
    -webkit-box-shadow: 5px 5px #E5E5E5;
            box-shadow: 5px 5px #E5E5E5;
  }
}
@media (max-width: 767px) {
  .first-flow .flow-chart .chart-item .cont .img img {
    width: 70%;
  }
}

/* first-contact
-----------------------------------------------------------------*/
.first-contact .link {
  height: 320px;
  background: url("img/first/first_flow_pagelink.jpg") no-repeat;
  background-size: 100% 400px;
}
@media (max-width: 767px) {
  .first-contact .link {
    height: auto;
    background: url("img/first/first_flow_pagelink.jpg") no-repeat;
    background-size: cover;
    padding: 20px 0;
  }
}

/******************************************************************
 * 当院について
******************************************************************/
/* about-intro
-----------------------------------------------------------------*/
.about-intro {
  padding: 55px 0 70px;
}
@media (max-width: 767px) {
  .about-intro {
    padding: 30px 0;
  }
}
.about-intro .section-title p {
  padding-bottom: 20px;
}
.about-intro .section-text {
  text-align: center;
}
@media (max-width: 767px) {
  .about-intro .section-text {
    text-align: left;
  }
}

/* about-greeting
-----------------------------------------------------------------*/
.about-greeting {
  padding: 70px 0 47px;
}
@media (max-width: 767px) {
  .about-greeting {
    padding: 30px 0;
  }
}
.about-greeting .section-title {
  margin-bottom: 40px;
}
.about-greeting .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .about-greeting .profile {
    display: block;
  }
}
.about-greeting .profile .left {
  width: 68%;
}
@media (max-width: 767px) {
  .about-greeting .profile .left {
    width: 100%;
  }
}
.about-greeting .profile .left h3 {
  position: relative;
  font: 24px "游明朝体", "Yu Mincho", YuMincho, serif;
  border-left: 5px solid #F2C2D2;
  padding-left: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .about-greeting .profile .left h3 {
    font-size: 18px;
    padding-left: 20px;
  }
}
.about-greeting .profile .left h3 span {
  color: #A68590;
}
.about-greeting .profile .left .section-text {
  margin-bottom: 30px;
}
.about-greeting .profile .left .name {
  width: 220px;
}
@media (max-width: 767px) {
  .about-greeting .profile .left .name {
    width: auto;
  }
}
.about-greeting .profile .left .name p {
  font: 16px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 0;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .about-greeting .profile .left .name p {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.about-greeting .profile .left .name h4 {
  position: relative;
  font: 24px "游明朝体", "Yu Mincho", YuMincho, serif;
  padding-left: 60px;
}
@media (max-width: 767px) {
  .about-greeting .profile .left .name h4 {
    font-size: 18px;
  }
}
.about-greeting .profile .left .name h4::before {
  position: absolute;
  content: " ";
  top: 18px;
  left: 0;
  width: 40px;
  height: 1px;
  background: #A68590;
}
.about-greeting .profile .left .top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  background: #FAFAFA;
  padding: 16px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about-greeting .profile .left .top {
    display: none;
  }
}
.about-greeting .profile .left .top .img {
  width: 48%;
}
.about-greeting .profile .left .top .img img {
  -webkit-box-shadow: 5px 5px #E5E5E5;
          box-shadow: 5px 5px #E5E5E5;
}
.about-greeting .profile .left .top::after {
  position: absolute;
  content: "Atsushi Miyake";
  top: 18px;
  right: 14px;
  font: 18px "Cormorant Garamond", serif;
  letter-spacing: 3px;
  color: #A68590;
}
.about-greeting .profile .right {
  position: relative;
  width: 300px;
}
.about-greeting .profile .right img {
  -webkit-box-shadow: 10px 10px #E5E5E5;
          box-shadow: 10px 10px #E5E5E5;
}
.about-greeting .profile .right::after {
  position: absolute;
  content: "Atsushi Miyake";
  top: 74px;
  right: -124px;
  font: 28px "Cormorant Garamond", serif;
  color: #A68590;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.about-greeting .career {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .about-greeting .career {
    display: block;
  }
}
.about-greeting .career .item {
  width: 48%;
}
@media (max-width: 767px) {
  .about-greeting .career .item {
    width: 100%;
    margin-bottom: 40px;
  }
}
.about-greeting .career .item .half-title {
  margin-bottom: 0;
}
.about-greeting .career .item ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  border-bottom: 1px dotted #A68590;
  padding: 20px 0 20px 1rem;
}
@media (max-width: 767px) {
  .about-greeting .career .item ul li {
    font-size: 13px;
    padding: 14px 0;
  }
}
.about-greeting .career .item ul li:last-child {
  border-bottom: 0;
}
.about-greeting .career .item.item-career ul li .date {
  width: 150px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .about-greeting .career .item.item-career ul li .date {
    display: block;
    width: 90px;
    margin-right: 10px;
  }
}
.about-greeting .career .item.item-career ul li .cont {
  width: 90%;
}
.about-greeting .career .item.item-career ul li::before {
  position: absolute;
  content: " ";
  bottom: -1px;
  left: 0;
  width: 120px;
  height: 1px;
  background: #A68590;
}
.about-greeting .career .item.item-career ul li:last-child::before {
  content: none;
}
.about-greeting .career .item.item-qual ul li {
  padding-left: 2.4rem;
}
@media (max-width: 767px) {
  .about-greeting .career .item.item-qual ul li {
    padding-left: 1rem;
  }
}
.about-greeting .career .item.item-qual ul li::before {
  position: absolute;
  content: " ";
  top: 0;
  bottom: 0;
  left: 1rem;
  width: 6px;
  height: 8px;
  background: url("img/common/common_triangle.png") no-repeat;
  background-size: 5px;
  margin: auto;
}
@media (max-width: 767px) {
  .about-greeting .career .item.item-qual ul li::before {
    top: 22px;
    bottom: unset;
    left: 0;
  }
}
@media (max-width: 767px) {
  .about-greeting .career .item:last-child {
    margin-bottom: 0;
  }
}

/* about-facility
-----------------------------------------------------------------*/
.about-facility {
  padding: 70px 0 0;
  /* ------ スライダー ------ */
}
@media (max-width: 767px) {
  .about-facility {
    padding: 30px 0 0;
  }
}
.about-facility .section-title {
  margin-bottom: 57px;
}
.about-facility .section-text {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .about-facility .section-text {
    text-align: left;
    margin-bottom: 30px;
  }
}
.about-facility .fac-slider {
  /* slide-dots, slick-prev/next
  -----------------------------------------------------------------*/
}
.about-facility .fac-slider .slide-item {
  position: relative;
}
.about-facility .fac-slider .slide-item .title {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.8);
  font: 20px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 4px;
  z-index: 1;
}
@media (max-width: 999px) {
  .about-facility .fac-slider .slide-item .title {
    width: 80px;
    height: 80px;
    font-size: 16px;
    letter-spacing: 1px;
  }
}
@media (max-width: 767px) {
  .about-facility .fac-slider .slide-item .title {
    width: 60px;
    height: 60px;
    font-size: 15px;
    letter-spacing: 0;
  }
}
.about-facility .fac-slider .slide-item .img {
  height: 490px;
  text-align: center;
}
@media (max-width: 1099px) {
  .about-facility .fac-slider .slide-item .img {
    max-height: 380px;
  }
}
@media (max-width: 899px) {
  .about-facility .fac-slider .slide-item .img {
    max-height: 350px;
  }
}
@media (max-width: 768px) {
  .about-facility .fac-slider .slide-item .img {
    max-height: 300px;
  }
}
@media (max-width: 375px) {
  .about-facility .fac-slider .slide-item .img {
    max-height: 200px;
  }
}
.about-facility .fac-slider .slide-item .img img {
  width: 98.6%;
  height: 100%;
}
.about-facility .fac-slider .slick-slide {
  max-height: 490px;
}
@media (max-width: 1099px) {
  .about-facility .fac-slider .slick-slide {
    max-height: 380px;
  }
}
@media (max-width: 899px) {
  .about-facility .fac-slider .slick-slide {
    max-height: 350px;
  }
}
@media (max-width: 768px) {
  .about-facility .fac-slider .slick-slide {
    max-height: 300px;
  }
}
@media (max-width: 375px) {
  .about-facility .fac-slider .slick-slide {
    max-height: 200px;
  }
}
.about-facility .fac-slider .slick-slide div {
  height: 490px;
}
@media (max-width: 1099px) {
  .about-facility .fac-slider .slick-slide div {
    max-height: 380px;
  }
}
@media (max-width: 899px) {
  .about-facility .fac-slider .slick-slide div {
    max-height: 350px;
  }
}
@media (max-width: 768px) {
  .about-facility .fac-slider .slick-slide div {
    max-height: 300px;
  }
}
@media (max-width: 375px) {
  .about-facility .fac-slider .slick-slide div {
    max-height: 200px;
  }
}
.about-facility .fac-slider .slick-slide:not(.slick-current) {
  opacity: 0.6;
}
.about-facility .fac-slider .slide-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 22px 0 0;
}
.about-facility .fac-slider .slide-dots li {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #F2E6C2;
  margin: 0 8px;
}
.about-facility .fac-slider .slide-dots li.slick-active {
  background: #F2C2D2;
}
.about-facility .fac-slider .slick-prev, .about-facility .fac-slider .slick-next {
  top: unset;
  bottom: calc(50% - 23px);
  width: 46px;
  height: 46px;
  z-index: 10;
}
@media (max-width: 766px) {
  .about-facility .fac-slider .slick-prev, .about-facility .fac-slider .slick-next {
    bottom: calc(50% - 15px);
    width: 30px;
    height: 30px;
  }
}
.about-facility .fac-slider .slick-prev::before, .about-facility .fac-slider .slick-next::before {
  position: absolute;
  content: " ";
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 46px;
  height: 46px;
  opacity: 1;
}
@media (max-width: 766px) {
  .about-facility .fac-slider .slick-prev::before, .about-facility .fac-slider .slick-next::before {
    width: 30px;
    height: 30px;
  }
}
.about-facility .fac-slider .slick-prev {
  margin-left: 20%;
}
@media (max-width: 766px) {
  .about-facility .fac-slider .slick-prev {
    margin-left: 11%;
  }
}
@media (max-width: 499px) {
  .about-facility .fac-slider .slick-prev {
    left: 6.5%;
    right: unset;
    margin-left: 0;
  }
}
.about-facility .fac-slider .slick-prev::before {
  background: url("img/about/about_slider_prev.png") no-repeat;
  background-size: 46px;
}
@media (max-width: 766px) {
  .about-facility .fac-slider .slick-prev::before {
    background: url("img/about/about_slider_prev.png") no-repeat;
    background-size: 30px;
  }
}
.about-facility .fac-slider .slick-next {
  right: 19%;
}
@media (max-width: 1099px) {
  .about-facility .fac-slider .slick-next {
    right: 18%;
  }
}
@media (max-width: 766px) {
  .about-facility .fac-slider .slick-next {
    right: 8.5%;
  }
}
@media (max-width: 499px) {
  .about-facility .fac-slider .slick-next {
    right: 7.5%;
    left: unset;
    margin-left: 0;
  }
}
.about-facility .fac-slider .slick-next::before {
  background: url("img/about/about_slider_next.png") no-repeat;
  background-size: 46px;
}
@media (max-width: 766px) {
  .about-facility .fac-slider .slick-next::before {
    background: url("img/about/about_slider_next.png") no-repeat;
    background-size: 30px;
  }
}

/* about-overview
-----------------------------------------------------------------*/
.about-overview {
  padding: 87px 0;
}
@media (max-width: 767px) {
  .about-overview {
    padding: 60px 0;
  }
}
.about-overview .section-title {
  margin-bottom: 40px;
}
.about-overview table {
  width: 900px;
  margin: 0 auto 28px;
}
@media (max-width: 767px) {
  .about-overview table {
    width: 100%;
    margin-bottom: 0;
  }
}
.about-overview table tr th, .about-overview table tr td {
  padding: 20px 0;
}
@media (max-width: 767px) {
  .about-overview table tr th, .about-overview table tr td {
    font-size: 13px;
    padding: 16px 0;
  }
}
.about-overview table tr th {
  width: 20%;
  text-align: center;
  border-bottom: 1px solid #A68590;
}
.about-overview table tr td {
  border-bottom: 1px dotted #A68590;
  padding-left: 2rem;
}
.about-overview table tr:first-child th {
  border-top: 1px solid #A68590;
}
.about-overview table tr:first-child td {
  border-top: 1px dotted #A68590;
}

/******************************************************************
 * 診療内容
******************************************************************/
/* 共通パーツ
-----------------------------------------------------------------*/
.category-link {
  width: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 70px 0 30px;
}
@media (max-width: 999px) {
  .category-link {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .category-link {
    display: block;
  }
}
.category-link .cat-link-btn {
  display: block;
  width: 48%;
  border: 1px solid #A68590;
  padding: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .category-link .cat-link-btn {
    width: 100%;
    margin-bottom: 20px;
  }
  .category-link .cat-link-btn:last-child {
    margin-bottom: 0;
  }
}
.category-link .cat-link-btn h3 {
  position: relative;
  background: #FFF;
  font: 28px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 8px;
  text-align: center;
  line-height: 1.2;
  border: 1px solid #A68590;
  padding: 24px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .category-link .cat-link-btn h3 {
    font-size: 20px;
    letter-spacing: 4px;
    padding: 14px 0;
  }
}
.category-link .cat-link-btn h3 span {
  font: 18px "Cormorant Garamond", serif;
  color: #A68590;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .category-link .cat-link-btn h3 span {
    font-size: 14px;
  }
}
.category-link .cat-link-btn h3::before {
  position: absolute;
  content: " ";
  top: 0;
  bottom: 0;
  left: 1rem;
  width: 36px;
  height: 34px;
  margin: auto;
}
.category-link .cat-link-btn h3::after {
  position: absolute;
  content: " ";
  top: 0;
  bottom: 0;
  right: 1rem;
  width: 7px;
  height: 12px;
  background: url("img/common/common_arrow.png") no-repeat;
  background-size: 7px;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category-link .cat-link-btn.insurance {
  background: #FBEEF2;
}
.category-link .cat-link-btn.insurance h3 {
  background: #FBEEF2;
}
.category-link .cat-link-btn.insurance h3::before {
  background: url("img/medical/medical_insurance_icon.png") no-repeat;
  background-size: 36px;
}
.category-link .cat-link-btn.self {
  background: #FBFAEE;
  border: 1px solid #99857A;
}
.category-link .cat-link-btn.self h3 {
  background: #FBFAEE;
  border: 1px solid #99857A;
}
.category-link .cat-link-btn.self h3 span {
  color: #663D29;
}
.category-link .cat-link-btn.self h3::before {
  background: url("img/medical/medical_self_icon.png") no-repeat;
  background-size: 36px;
}
.category-link .cat-link-btn:hover {
  border: 1px solid #F2C2D2;
  background: #F2C2D2;
}
.category-link .cat-link-btn:hover h3 {
  background: #FFF;
  background-size: 6px;
  border: 1px solid #F2C2D2;
}
@media (max-width: 999px) {
  .category-link .cat-link-btn:hover h3 {
    background: #FFF;
    background-size: 4px;
    font-size: 14px;
  }
}
.category-link .cat-link-btn:hover.self {
  border: 1px solid #ddc89f;
  background: #ddc89f;
}
.category-link .cat-link-btn:hover.self h3 {
  border: 1px solid #ddc89f;
}
.category-link .cat-link-btn.white {
  background: #FFF;
}
.category-link .cat-link-btn.white h3 {
  background: #FFF;
}
.category-link .cat-link-btn.white.self h3::before {
  background: url("img/medical/medical_self_icon_pink.png") no-repeat;
  background-size: 36px;
}
.category-link .cat-link-btn:hover.white {
  border: 1px solid #F2C2D2;
  background: #F2C2D2;
}
.category-link .cat-link-btn:hover.white h3 {
  border: 1px solid #F2C2D2;
}
.category-link .cat-link-btn:hover.white h3::after {
  right: 0.7rem;
}

.single-link {
  padding: 40px 0 80px;
}
.single-link .category-link {
  padding: 50px 0 30px;
}

/* medical-list
-----------------------------------------------------------------*/
.medical-list {
  width: 1100px;
  padding: 60px 0;
}
@media (max-width: 1099px) {
  .medical-list {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .medical-list {
    width: 100%;
    padding: 40px 0;
  }
}
.medical-list .section-title {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .medical-list .section-title {
    margin-bottom: 40px;
  }
}

/******************************************************************
 * 診療内容　アーカイブページ
******************************************************************/
/* tax-about
-----------------------------------------------------------------*/
.tax-about {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .tax-about {
    padding: 40px 0 20px;
  }
}
.tax-about .section-title {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .tax-about .section-title {
    margin-bottom: 20px;
  }
}
.tax-about .section-text {
  width: 900px;
  margin: 0 auto 80px;
}
@media (max-width: 999px) {
  .tax-about .section-text {
    width: 92%;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .tax-about .section-text {
    width: 100%;
    margin-bottom: 40px;
  }
}
.tax-about .tax-about-item {
  width: 1100px;
  margin: 0 auto 80px;
}
@media (max-width: 1099px) {
  .tax-about .tax-about-item {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .tax-about .tax-about-item {
    width: 100%;
  }
}
.tax-about .tax-about-item .title {
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .tax-about .tax-about-item .title {
    width: 92%;
    margin: 0 auto 10px;
  }
}
.tax-about .tax-about-item .title p {
  position: absolute;
  top: -42px;
  right: 0;
  left: 0;
  font: 18px "Cormorant Garamond", serif;
  color: #A68590;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .tax-about .tax-about-item .title p {
    top: -30px;
    font-size: 16px;
  }
}
.tax-about .tax-about-item .title p span {
  font-size: 50px;
  font-style: italic;
  margin-left: 6px;
}
@media (max-width: 767px) {
  .tax-about .tax-about-item .title p span {
    font-size: 38px;
  }
}
.tax-about .tax-about-item .title h3 {
  background: -webkit-gradient(linear, left top, right top, from(rgba(242, 194, 210, 0.5)), to(rgba(242, 230, 194, 0.5)));
  background: linear-gradient(to right, rgba(242, 194, 210, 0.5), rgba(242, 230, 194, 0.5));
  font: 22px "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #59474D;
  letter-spacing: 6px;
  text-align: center;
  padding: 14px 0;
}
@media (max-width: 767px) {
  .tax-about .tax-about-item .title h3 {
    font-size: 18px;
    letter-spacing: 0;
    padding: 10px 0;
  }
}
.tax-about .tax-about-item .desc {
  text-align: center;
  line-height: 2;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .tax-about .tax-about-item .desc {
    width: 92%;
    margin: 0 auto 20px;
  }
}
.tax-about .tax-about-item:last-child {
  margin-bottom: 0;
}

/* tax-list
-----------------------------------------------------------------*/
.tax-list {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .tax-list {
    padding: 0 0 40px;
  }
}
.tax-list .section-title {
  margin-bottom: 60px;
}

/******************************************************************
 * 診療内容　詳細ページ
******************************************************************/
/* treatment-link
-----------------------------------------------------------------*/
.treatment-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .treatment-link {
    padding: 30px 0;
  }
}
.treatment-link a {
  display: block;
  width: 30%;
  text-align: center;
  border: 1px solid #A68590;
  padding: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .treatment-link a {
    width: 32%;
  }
}
.treatment-link a h2 {
  position: relative;
  background: #FFF;
  border: 1px solid #A68590;
  padding: 12px 0 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .treatment-link a h2 {
    padding: 6px 0 20px;
  }
}
.treatment-link a h2::after {
  position: absolute;
  content: " ";
  bottom: 8px;
  right: 0;
  left: 0;
  width: 10px;
  height: 14px;
  background: url("img/common/common_arrow_down.png") no-repeat;
  background-size: 10px;
  margin: 0 auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .treatment-link a h2::after {
    bottom: 2px;
  }
}
.treatment-link a:hover {
  border: 1px solid #F2C2D2;
  background: #F2C2D2;
}
.treatment-link a:hover h2 {
  border: 1px solid #F2C2D2;
}
.treatment-link a:hover h2::after {
  bottom: 5px;
}

/* treatment-symptoms
-----------------------------------------------------------------*/
.treatment-symptoms {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .treatment-symptoms {
    padding: 30px 0;
  }
}
.treatment-symptoms h2 {
  font: 28px "游明朝体", "Yu Mincho", YuMincho, serif;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .treatment-symptoms h2 {
    font-size: 18px;
    margin-bottom: 26px;
  }
}
.treatment-symptoms .bg {
  position: relative;
  width: 1100px;
  background: url("img/medical/medical_symptom_bg.jpg") no-repeat;
  background-size: cover;
  padding: 50px 80px;
  margin: 0 auto 60px;
}
@media (max-width: 1099px) {
  .treatment-symptoms .bg {
    width: 100%;
    padding: 40px 50px;
  }
}
@media (max-width: 767px) {
  .treatment-symptoms .bg {
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
  }
}
.treatment-symptoms .bg::before {
  content: " ";
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  width: 1px;
  height: 40px;
  background: #000;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 767px) {
  .treatment-symptoms .bg::before {
    top: -14px;
    height: 30px;
  }
}
.treatment-symptoms .bg::after {
  content: " ";
  position: absolute;
  bottom: -20px;
  right: 0;
  left: 0;
  width: 1px;
  height: 40px;
  background: #000;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .treatment-symptoms .bg::after {
    bottom: -14px;
    height: 30px;
  }
}
.treatment-symptoms .bg .list {
  background: #FFF;
  padding: 50px 100px;
}
@media (max-width: 1099px) {
  .treatment-symptoms .bg .list {
    padding: 30px 40px;
  }
}
@media (max-width: 767px) {
  .treatment-symptoms .bg .list {
    padding: 30px;
  }
}
.treatment-symptoms .bg .list li {
  background: url("img/common/checkbox.png") top left no-repeat;
  background-size: 30px;
  font-size: 20px;
  padding-left: 50px;
  margin-bottom: 20px;
}
@media (max-width: 1099px) {
  .treatment-symptoms .bg .list li {
    background: url("img/common/checkbox.png") top 6px left no-repeat;
    background-size: 18px;
    font-size: 18px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .treatment-symptoms .bg .list li {
    background: url("img/common/checkbox.png") top 2px left no-repeat;
    background-size: 18px;
    font-size: 13px;
    padding-left: 24px;
    margin-bottom: 10px;
  }
}
.treatment-symptoms .bg .list li:last-child {
  margin-bottom: 0;
}
.treatment-symptoms .desc {
  width: 900px;
  line-height: 2;
}
@media (max-width: 999px) {
  .treatment-symptoms .desc {
    width: 92%;
  }
}

/* treatment-about
-----------------------------------------------------------------*/
.treatment-about {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .treatment-about {
    padding: 30px 0;
  }
}
.treatment-about .section-title {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .treatment-about .section-title {
    margin-bottom: 30px;
  }
}
.treatment-about .section-title::after {
  position: absolute;
  content: " ";
  bottom: -60px;
  right: 0;
  left: 0;
  width: 1px;
  height: 40px;
  background: #000;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .treatment-about .section-title::after {
    bottom: -45px;
    height: 30px;
  }
}
.treatment-about .about-wrap {
  background: rgba(242, 194, 210, 0.15);
  padding: 40px 30px 50px;
}
@media (max-width: 767px) {
  .treatment-about .about-wrap {
    padding: 10px;
  }
}
.treatment-about .about-wrap .box {
  background: #FFF;
  padding: 30px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .treatment-about .about-wrap .box {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.treatment-about .about-wrap .box h3 {
  position: relative;
  font: 26px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 10px;
  text-align: center;
  border-bottom: 1px solid #A68590;
  padding-bottom: 20px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .treatment-about .about-wrap .box h3 {
    font-size: 20px;
    letter-spacing: 2px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
.treatment-about .about-wrap .box h3::after {
  position: absolute;
  content: " ";
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #A68590;
}
.treatment-about .about-wrap .box h3 span {
  color: #A68590;
}
.treatment-about .about-wrap .box .section-text.margin {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .treatment-about .about-wrap .box .section-text.margin {
    margin-bottom: 40px;
  }
}
.treatment-about .about-wrap .box .content-check {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .treatment-about .about-wrap .box .content-check {
    margin-bottom: 30px;
  }
}
.treatment-about .about-wrap .box .content-check h4 {
  background: url("img/common/checkbox.png") top 12px left no-repeat;
  background-size: 30px;
  font-size: 20px;
  border-top: 1px dotted #A68590;
  border-bottom: 1px dotted #A68590;
  padding: 10px 0 10px 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .treatment-about .about-wrap .box .content-check h4 {
    background: url("img/common/checkbox.png") top 16px left no-repeat;
    background-size: 16px;
    font-size: 15px;
    padding-left: 24px;
  }
}
.treatment-about .about-wrap .box .content-check:last-child {
  margin-bottom: 30px;
}
.treatment-about .about-wrap .box .content-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .treatment-about .about-wrap .box .content-img {
    display: block;
    margin-bottom: 20px;
  }
}
.treatment-about .about-wrap .box .content-img .img {
  width: 140px;
  height: 140px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .treatment-about .about-wrap .box .content-img .img {
    margin: 0 auto 16px;
  }
}
.treatment-about .about-wrap .box .content-img .img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid #FAFAFA;
}
.treatment-about .about-wrap .box .content-img .text {
  width: 80%;
}
@media (max-width: 767px) {
  .treatment-about .about-wrap .box .content-img .text {
    width: 100%;
  }
}
.treatment-about .about-wrap .box .content-img .text h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 22px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 8px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .treatment-about .about-wrap .box .content-img .text h4 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 10px;
  }
}
.treatment-about .about-wrap .box .content-img .text h4::before {
  content: "●";
  color: #F2C2D2;
  font-size: 10px;
  margin-right: 10px;
}
.treatment-about .about-wrap .box:last-child {
  margin-bottom: 0;
}

/* treatment-detail
-----------------------------------------------------------------*/
.treatment-detail {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .treatment-detail {
    padding: 20px 0;
  }
}
.treatment-detail .section-title {
  margin-bottom: 40px;
}
.treatment-detail .section-text {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .treatment-detail .section-text {
    text-align: left;
    margin-bottom: 30px;
  }
}
.treatment-detail .content-price {
  background: url("img/common/common_frame_left.png") top left no-repeat, url("img/common/common_frame_right.png") top right no-repeat;
  background-size: auto 100%;
  padding: 60px 0;
  margin-bottom: 40px;
}
@media (max-width: 899px) {
  .treatment-detail .content-price {
    background: none;
    padding: 20px 0;
    margin-bottom: 30px;
  }
}
.treatment-detail .content-price .price-inner {
  width: 900px;
  margin: 0 auto;
}
@media (max-width: 999px) {
  .treatment-detail .content-price .price-inner {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .treatment-detail .content-price .price-inner {
    width: 100%;
  }
}
.treatment-detail .content-price .price-inner .top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #A68590;
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .treatment-detail .content-price .price-inner .top {
    display: block;
    margin-bottom: 40px;
  }
}
.treatment-detail .content-price .price-inner .top h3 {
  width: 72%;
  font: 22px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 4px;
  line-height: 43px;
  border-right: 1px solid #A68590;
}
@media (max-width: 999px) {
  .treatment-detail .content-price .price-inner .top h3 {
    font-size: 20px;
    letter-spacing: 2px;
  }
}
@media (max-width: 767px) {
  .treatment-detail .content-price .price-inner .top h3 {
    width: 100%;
    font-size: 18px;
    line-height: 1.8;
    border-right: none;
    padding-bottom: 8px;
  }
}
.treatment-detail .content-price .price-inner .top h3::before {
  content: "●";
  color: #F2C2D2;
  font-size: 10px;
  margin-right: 10px;
}
.treatment-detail .content-price .price-inner .top p {
  font: 22px "Cinzel", serif;
  color: #A68590;
  padding-bottom: 6px;
}
@media (max-width: 999px) {
  .treatment-detail .content-price .price-inner .top p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .treatment-detail .content-price .price-inner .top p {
    position: absolute;
    right: 0;
    font-size: 16px;
  }
}
.treatment-detail .content-price .price-inner .top p .price {
  font-size: 28px;
}
@media (max-width: 999px) {
  .treatment-detail .content-price .price-inner .top p .price {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .treatment-detail .content-price .price-inner .top p .price {
    font-size: 20px;
  }
}
.treatment-detail .content-price .price-inner .top p .tax {
  font: 18px "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #000;
}
@media (max-width: 999px) {
  .treatment-detail .content-price .price-inner .top p .tax {
    font-size: 14px;
  }
}
.treatment-detail .content-price .price-inner .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .treatment-detail .content-price .price-inner .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 30px;
  }
}
.treatment-detail .content-price .price-inner .bottom .desc {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 767px) {
  .treatment-detail .content-price .price-inner .bottom .desc {
    font-size: 14px;
  }
}
.treatment-detail .content-price .price-inner .bottom .desc.half {
  width: 68%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 767px) {
  .treatment-detail .content-price .price-inner .bottom .desc.half {
    width: 100%;
  }
}
.treatment-detail .content-price .price-inner .bottom .img {
  width: 240px;
  height: 240px;
  margin-left: 30px;
}
@media (max-width: 899px) {
  .treatment-detail .content-price .price-inner .bottom .img {
    width: 28%;
  }
}
@media (max-width: 767px) {
  .treatment-detail .content-price .price-inner .bottom .img {
    width: 100%;
    text-align: center;
    margin: 0 auto 16px;
  }
}
.treatment-detail .content-price .price-inner .warning p {
  width: 220px;
}
@media (max-width: 999px) {
  .treatment-detail .content-price .price-inner .warning p {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .treatment-detail .content-price .price-inner .warning p {
    width: 100%;
  }
}

/* treatment-prevention
-----------------------------------------------------------------*/
.treatment-prevention {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .treatment-prevention {
    padding: 20px 0;
  }
}
.treatment-prevention .section-text {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .treatment-prevention .section-text {
    text-align: left;
    margin-bottom: 30px;
  }
}
.treatment-prevention .content-prevention {
  margin-bottom: 60px;
}
.treatment-prevention .content-prevention h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 22px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 4px;
  border-bottom: 1px solid #A68590;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .treatment-prevention .content-prevention h3 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
}
.treatment-prevention .content-prevention h3::before {
  content: "●";
  color: #F2C2D2;
  font-size: 10px;
  margin-right: 10px;
}
.treatment-prevention .content-prevention .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .treatment-prevention .content-prevention .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.treatment-prevention .content-prevention .wrap .text {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 767px) {
  .treatment-prevention .content-prevention .wrap .text {
    font-size: 14px;
  }
}
.treatment-prevention .content-prevention .wrap .text.half {
  width: 60%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 767px) {
  .treatment-prevention .content-prevention .wrap .text.half {
    width: 100%;
  }
}
.treatment-prevention .content-prevention .wrap .img {
  width: 400px;
  margin-left: 30px;
}
@media (max-width: 999px) {
  .treatment-prevention .content-prevention .wrap .img {
    width: 36%;
  }
}
@media (max-width: 767px) {
  .treatment-prevention .content-prevention .wrap .img {
    width: 100%;
    margin: 0 0 12px;
  }
}
.treatment-prevention .content-prevention:last-child {
  margin-bottom: 30px;
}

/******************************************************************
 * アクセス
******************************************************************/
/* 当院の所在地
-----------------------------------------------------------------*/
.access-location {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .access-location {
    padding: 40px 0 0;
  }
}
.access-location .section-title {
  position: relative;
  margin-bottom: 50px;
}
.access-location .location-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .access-location .location-address {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
}
.access-location .location-address h3 {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .access-location .location-address h3 {
    margin: 0 0 10px;
  }
}
.access-location .location-map {
  background: url("img/common/common_frame_left.png") top left no-repeat, url("img/common/common_frame_right.png") top right no-repeat;
  background-size: auto 100%;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .access-location .location-map {
    background: none;
    padding: 20px 0;
  }
}
.access-location .location-map .map-wrap {
  width: 900px;
  margin: 0 auto;
}
@media (max-width: 999px) {
  .access-location .location-map .map-wrap {
    width: 86%;
  }
}
@media (max-width: 899px) {
  .access-location .location-map .map-wrap {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .access-location .location-map .map-wrap {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .access-location .location-map .map-wrap .tab-menu {
    margin-bottom: 10px;
  }
}
.access-location .location-map .map-wrap .tab-menu li {
  width: 50%;
}
@media (max-width: 999px) {
  .access-location .location-map .map-wrap .tab-menu li {
    font-size: 18px;
    letter-spacing: 2px;
  }
}
@media (max-width: 767px) {
  .access-location .location-map .map-wrap .tab-menu li {
    width: 49%;
    margin-bottom: 0;
  }
}
.access-location .location-map .map-wrap .tabContent iframe {
  width: 100%;
  height: 400px;
}
@media (max-width: 767px) {
  .access-location .location-map .map-wrap .tabContent iframe {
    height: 244px;
  }
}
@media (max-width: 520px) {
  .access-location .location-map .map-wrap .tabContent img.map-wide {
    display: none;
  }
}
@media (min-width: 521px) {
  .access-location .location-map .map-wrap .tabContent img.map-small {
    display: none;
  }
}

/* アクセス方法
-----------------------------------------------------------------*/
.access-how {
  padding: 60px 0 140px;
}
@media (max-width: 767px) {
  .access-how {
    padding: 40px 0;
  }
}
.access-how .section-title {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .access-how .section-title {
    margin-bottom: 30px;
  }
}
.access-how .section-title::after {
  position: absolute;
  content: " ";
  bottom: -60px;
  right: 0;
  left: 0;
  width: 1px;
  height: 40px;
  background: #000;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .access-how .section-title::after {
    bottom: -45px;
    height: 30px;
  }
}
.access-how .how-wrap {
  background: rgba(242, 194, 210, 0.15);
  padding: 40px 30px;
}
@media (max-width: 767px) {
  .access-how .how-wrap {
    padding: 30px 12px 30px;
  }
}
.access-how .how-wrap .box {
  background: #FFF;
  padding: 30px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .access-how .how-wrap .box {
    padding: 20px 14px;
  }
  .access-how .how-wrap .box:last-child {
    margin-bottom: 0;
  }
}
.access-how .how-wrap .box .title {
  border-bottom: 1px solid #A68590;
  padding-bottom: 2px;
  margin-bottom: 30px;
}
.access-how .how-wrap .box .title h3 {
  font: 26px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 8px;
  text-align: center;
  border-bottom: 1px solid #A68590;
  padding-bottom: 20px;
}
@media (max-width: 999px) {
  .access-how .how-wrap .box .title h3 {
    font-size: 22px;
    padding-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .access-how .how-wrap .box .title h3 {
    font-size: 20px;
    letter-spacing: 4px;
    padding-bottom: 10px;
  }
}
.access-how .how-wrap .box .title h3 span {
  color: #A68590;
}
.access-how .how-wrap .box .chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .access-how .how-wrap .box .chart {
    display: block;
  }
}
.access-how .how-wrap .box .chart .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  margin: 0 24px;
}
@media (max-width: 767px) {
  .access-how .how-wrap .box .chart .item {
    width: 100%;
    margin: 0 0 40px;
  }
  .access-how .how-wrap .box .chart .item:last-child {
    margin-bottom: 0;
  }
}
.access-how .how-wrap .box .chart .item .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  background: #FFF;
  font: 14px "Cormorant Garamond", serif;
  color: #A68590;
  line-height: 0.6;
  border: 1px solid #A68590;
  margin-right: 16px;
  z-index: 2;
}
@media (max-width: 999px) {
  .access-how .how-wrap .box .chart .item .num {
    width: 52px;
    height: 52px;
  }
}
@media (max-width: 767px) {
  .access-how .how-wrap .box .chart .item .num {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 52px;
            flex: 0 1 52px;
  }
}
.access-how .how-wrap .box .chart .item .num span {
  font-size: 41px;
  font-style: italic;
}
@media (max-width: 999px) {
  .access-how .how-wrap .box .chart .item .num span {
    font-size: 32px;
  }
}
.access-how .how-wrap .box .chart .item .img {
  position: relative;
  margin-bottom: 14px;
}
.access-how .how-wrap .box .chart .item .img::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -11%;
  content: " ";
  width: 14px;
  height: 24px;
  background: url("img/access/access_flow_arrow.png") no-repeat;
  background-size: 14px;
  margin: auto;
}
@media (max-width: 768px) {
  .access-how .how-wrap .box .chart .item .img::after {
    right: -12%;
    width: 10px;
    background: url("img/access/access_flow_arrow.png") no-repeat;
    background-size: 10px;
  }
}
@media (max-width: 767px) {
  .access-how .how-wrap .box .chart .item .img::after {
    content: none;
  }
}
@media (max-width: 767px) {
  .access-how .how-wrap .box .chart .item .img img {
    width: 100%;
  }
}
.access-how .how-wrap .box .chart .item .text {
  font-size: 16px;
}
@media (max-width: 999px) {
  .access-how .how-wrap .box .chart .item .text {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .access-how .how-wrap .box .chart .item .text {
    font-size: 14px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 70%;
            flex: 0 1 70%;
  }
}
.access-how .how-wrap .box .chart .item:last-child .img::after {
  content: none;
}
.access-how .how-wrap .box .column {
  margin: 60px 0 30px;
}
@media (max-width: 767px) {
  .access-how .how-wrap .box .column {
    margin: 40px 0 20px;
  }
}
.access-how .how-wrap .box .column h4 {
  font-size: 20px;
  text-align: center;
  border-top: 1px dotted #A68590;
  border-bottom: 1px dotted #A68590;
  padding: 10px 0;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .access-how .how-wrap .box .column h4 {
    font-size: 16px;
    padding: 6px 0;
  }
}
.access-how .how-wrap .box .column .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .access-how .how-wrap .box .column .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.access-how .how-wrap .box .column .wrap .text {
  width: 72%;
}
@media (max-width: 767px) {
  .access-how .how-wrap .box .column .wrap .text {
    width: 100%;
  }
}
.access-how .how-wrap .box .column .wrap .img {
  width: 26%;
}
@media (max-width: 767px) {
  .access-how .how-wrap .box .column .wrap .img {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .access-how .how-wrap .box .column .wrap .img img {
    width: 100%;
  }
}

/******************************************************************
 * よくあるご質問
******************************************************************/
/* faq-temp
-----------------------------------------------------------------*/
.faq-temp {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .faq-temp {
    padding: 40px 0;
  }
}
.faq-temp p {
  text-align: center;
}

/* faq-tabs
-----------------------------------------------------------------*/
.faq-tabs {
  padding: 110px 0 70px;
}
@media (max-width: 767px) {
  .faq-tabs {
    padding: 40px 0;
  }
}
.faq-tabs .tabContent {
  display: none;
  width: 100%;
  background: rgba(242, 194, 210, 0.15);
  padding: 40px 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .faq-tabs .tabContent {
    padding: 12px;
  }
}
.faq-tabs .tabContent ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #FFF;
  padding: 20px;
}
@media (max-width: 767px) {
  .faq-tabs .tabContent ul {
    display: block;
    padding: 12px;
  }
}
.faq-tabs .tabContent ul li {
  width: 49%;
  background: url("img/common/common_triangle.png") center left no-repeat;
  background-size: 6px;
  padding-left: 20px;
  margin-bottom: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .faq-tabs .tabContent ul li {
    background: url("img/common/common_triangle.png") top 10px left no-repeat;
    width: 100%;
    margin-bottom: 12px;
  }
}
.faq-tabs .tabContent ul li:hover {
  color: #A68590;
}
.faq-tabs .tabContent.is-active {
  display: block;
}

/* faq-cont
-----------------------------------------------------------------*/
.faq-cont {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .faq-cont {
    padding: 20px 0;
  }
}
.faq-cont .section-title {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .faq-cont .section-title {
    margin-bottom: 30px;
  }
}
.faq-cont .section-title::after {
  position: absolute;
  content: " ";
  bottom: -60px;
  right: 0;
  left: 0;
  width: 1px;
  height: 40px;
  background: #000;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .faq-cont .section-title::after {
    bottom: -45px;
    height: 30px;
  }
}
.faq-cont .wrap {
  background: rgba(242, 194, 210, 0.15);
  padding: 40px 30px;
}
@media (max-width: 767px) {
  .faq-cont .wrap {
    padding: 12px;
  }
}
.faq-cont .wrap .item {
  background: #FFF;
  padding: 30px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .faq-cont .wrap .item {
    padding: 40px 14px 18px;
    margin-bottom: 20px;
  }
}
.faq-cont .wrap .item .ques {
  position: relative;
  font: 24px "游明朝体", "Yu Mincho", YuMincho, serif;
  border-bottom: 1px solid #A68590;
  padding: 0 0 20px 70px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .faq-cont .wrap .item .ques {
    font-size: 17px;
    padding: 36px 0 10px;
    margin-bottom: 16px;
  }
}
.faq-cont .wrap .item .ques::before {
  position: absolute;
  content: "Q";
  top: -10px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  font: 35px "Cormorant Garamond", serif;
  color: #A68590;
  font-style: italic;
  border: 1px solid #A68590;
}
@media (max-width: 767px) {
  .faq-cont .wrap .item .ques::before {
    left: 0;
    right: 0;
    width: 30px;
    height: 30px;
    font-size: 24px;
    margin: 0 auto;
  }
}
.faq-cont .wrap .item .ans h4 {
  font: 22px "游明 朝体", "Yu Mincho", YuMincho, serif;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .faq-cont .wrap .item .ans h4 {
    font-size: 16px;
  }
}
.faq-cont .wrap .item .ans p {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 767px) {
  .faq-cont .wrap .item .ans p {
    font-size: 13px;
  }
}

#payment {
  margin-bottom: 60px;
}

/******************************************************************
 * 新着情報
******************************************************************/
/* info-wrap
-----------------------------------------------------------------*/
.info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 0;
  /* サイドバー
  -----------------------------------------------------------------*/
}
@media (max-width: 767px) {
  .info-wrap {
    display: block;
    padding: 40px 0;
  }
}
.info-wrap .info-posts {
  width: 760px;
  /*  共通パーツ
  -----------------------------------------------------------------*/
  /* 投稿一覧
  -----------------------------------------------------------------*/
  /* 投稿詳細
  -----------------------------------------------------------------*/
}
@media (max-width: 767px) {
  .info-wrap .info-posts {
    width: 100%;
  }
  .info-wrap .info-posts .no-item {
    margin: 0 0 40px 0;
  }
}
.info-wrap .info-posts .no-item__text {
  font-size: 16px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .no-item__text {
    font-size: 14px;
  }
}
.info-wrap .info-posts .post-dc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 14px;
}
.info-wrap .info-posts .post-dc .date {
  font-size: 16px;
  color: #555;
  margin-right: 16px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-dc .date {
    font-size: 14px;
    margin-right: 10px;
  }
}
.info-wrap .info-posts .post-dc .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #D9ADBC;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  color: #FFF;
  padding: 2px 6px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-dc .cat {
    font-size: 13px;
  }
}
.info-wrap .info-posts .post-title {
  font: 28px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.info-wrap .info-posts .post-cont-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-cont-wrap {
    display: block;
  }
}
.info-wrap .info-posts .post-cont-wrap .thumb {
  width: 305px;
  height: 203px;
}
.info-wrap .info-posts .post-cont-wrap .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-cont-wrap .thumb {
    width: 100%;
    height: 65vw;
    margin-bottom: 14px;
  }
}
.info-wrap .info-posts .post-cont-wrap .text {
  width: 55%;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-cont-wrap .text {
    width: 100%;
  }
}
.info-wrap .info-posts .post-cont-wrap .text .text-cont {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-cont-wrap .text .text-cont {
    font-size: 14px;
  }
}
.info-wrap .info-posts .post-cont-wrap .text .readmore {
  text-align: right;
}
.info-wrap .info-posts .single-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 14px;
}
.info-wrap .info-posts .single-title::before {
  position: absolute;
  content: " ";
  top: 0;
  bottom: 0;
  left: 0;
  border-top: 1px dotted #A68590;
  width: 100%;
  height: 1px;
  margin: auto;
}
.info-wrap .info-posts .single-title .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFF;
  font: 20px "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 6px;
  border-bottom: none;
  padding: 0 16px 0 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .single-title .title {
    font-size: 16px;
    letter-spacing: 0;
    padding-right: 10px;
  }
}
.info-wrap .info-posts .single-title .title::before {
  content: "●";
  font-size: 10px;
  color: #F2C2D2;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .single-title .title::before {
    margin-right: 4px;
  }
}
.info-wrap .info-posts .single-title .title::after {
  content: none;
}
.info-wrap .info-posts .single-title .en {
  position: absolute;
  right: 0;
  background: #FFF;
  font: 18px "Cormorant Garamond", serif;
  letter-spacing: 0;
  color: #A68590;
  padding: 0 20px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .single-title .en {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 0;
  }
}
.info-wrap .info-posts .post-archive {
  position: relative;
  border-bottom: 1px dotted #A68590;
  padding: 24px 20px 40px;
  margin-bottom: 18px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-archive {
    padding: 0 0 20px;
  }
}
.info-wrap .info-posts .post-archive:hover {
  -webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 7px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-archive:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.info-wrap .info-posts .post-archive .link {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.info-wrap .info-posts .post-archive .cont-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-archive .cont-wrap {
    display: block;
  }
}
.info-wrap .info-posts .post-archive .cont-wrap .thumb {
  width: 40%;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-archive .cont-wrap .thumb {
    width: 100%;
    margin-bottom: 10px;
  }
}
.info-wrap .info-posts .post-archive .cont-wrap .thumb img {
  width: 100%;
}
.info-wrap .info-posts .post-archive .cont-wrap .text {
  width: 59%;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-archive .cont-wrap .text {
    width: 100%;
  }
}
.info-wrap .info-posts .post-archive .cont-wrap .text .text-cont {
  font-size: 16px;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-archive .cont-wrap .text .text-cont {
    font-size: 14px;
    line-height: 2;
  }
}
.info-wrap .info-posts .post-archive .cont-wrap .text .readmore {
  text-align: right;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-archive .cont-wrap .text .readmore img {
    width: 140px;
  }
}
.info-wrap .info-posts .post-single {
  font-size: 16px;
  padding: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single {
    font-size: 13px;
    padding: 14px;
  }
}
.info-wrap .info-posts .post-single .eyecatch {
  margin-bottom: 30px;
}
.info-wrap .info-posts .post-single .eyecatch img {
  width: 100%;
}
.info-wrap .info-posts .post-single h2, .info-wrap .info-posts .post-single h3, .info-wrap .info-posts .post-single h4, .info-wrap .info-posts .post-single h5 {
  clear: both;
}
.info-wrap .info-posts .post-single h2 {
  position: relative;
  background: rgba(242, 194, 210, 0.2);
  font: 24px "游明朝体", "Yu Mincho", YuMincho, serif;
  padding: 17px 0 17px 40px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single h2 {
    font-size: 18px;
    padding: 12px 0 12px 24px;
    margin-bottom: 20px;
  }
}
.info-wrap .info-posts .post-single h2::before {
  position: absolute;
  content: " ";
  top: 9px;
  left: 14px;
  width: 5px;
  height: 50px;
  background: #FFF;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single h2::before {
    left: 10px;
    height: 72%;
  }
}
.info-wrap .info-posts .post-single h3 {
  position: relative;
  font: 24px "游明朝体", "Yu Mincho", YuMincho, serif;
  border-bottom: 1px solid #A68590;
  padding-bottom: 6px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single h3 {
    font-size: 18px;
  }
}
.info-wrap .info-posts .post-single h3::after {
  position: absolute;
  content: " ";
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #A68590;
}
.info-wrap .info-posts .post-single h4 {
  font: 22px "游明朝体", "Yu Mincho", YuMincho, serif;
  border-left: 5px solid #F2C2D2;
  padding: 8px 0 8px 24px;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single h4 {
    font-size: 16px;
    line-height: 1.4;
    padding: 4px 0 4px 18px;
  }
}
.info-wrap .info-posts .post-single h5 {
  font: 22px "游明朝体", "Yu Mincho", YuMincho, serif;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single h5 {
    font-size: 16px;
  }
}
.info-wrap .info-posts .post-single p {
  line-height: 2;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single p {
    margin-bottom: 20px;
  }
}
.info-wrap .info-posts .post-single p img.alignleft {
  display: block;
  width: 305px;
  margin: 0 20px 20px 0;
  float: left;
  height: 203px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single p img.alignleft {
    margin: 0 auto 20px;
    float: none;
  }
}
.info-wrap .info-posts .post-single p img.alignright {
  display: block;
  width: 305px;
  margin: 0 0 20px 20px;
  float: right;
  height: 203px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single p img.alignright {
    margin: 0 auto 20px;
    float: none;
  }
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single p img {
    width: 100%;
  }
}
.info-wrap .info-posts .post-single p em {
  font-style: italic;
}
.info-wrap .info-posts .post-single p strong {
  font-weight: bold;
}
.info-wrap .info-posts .post-single p > a {
  color: #D9ADBC;
  border-bottom: 1px solid #D9ADBC;
}
.info-wrap .info-posts .post-single p > a:hover {
  opacity: 0.8;
}
.info-wrap .info-posts .post-single ul {
  margin: 0 0 20px 1rem;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single ul {
    margin-left: 0.5rem;
    margin-bottom: 10px;
  }
}
.info-wrap .info-posts .post-single ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.1;
}
.info-wrap .info-posts .post-single ul li::before {
  content: "・";
  font-size: 32px;
  color: #F2C2D2;
}
.info-wrap .info-posts .post-single ol {
  counter-reset: item;
  margin: 0 0 20px 2rem;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single ol {
    margin-left: 1rem;
  }
}
.info-wrap .info-posts .post-single ol li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 34px;
  margin-bottom: 8px;
}
.info-wrap .info-posts .post-single ol li::before {
  position: absolute;
  left: 0;
  counter-increment: item;
  content: "0" counter(item);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25px;
  height: 25px;
  background: #D9ADBC;
  font-size: 14px;
  font-weight: bold;
  color: #FFF;
  line-height: 1;
  text-align: center;
  border-radius: 20px;
}
.info-wrap .info-posts .post-single blockquote {
  position: relative;
  background: rgba(217, 173, 188, 0.2);
  padding: 26px 60px;
  margin: 40px 0;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single blockquote {
    padding: 20px;
  }
}
.info-wrap .info-posts .post-single blockquote::before {
  position: absolute;
  content: " ";
  top: -22px;
  left: 10px;
  width: 33px;
  height: 22px;
  background: url("img/posts/info_blockquote_01.png") no-repeat;
  background-size: 33px;
}
.info-wrap .info-posts .post-single blockquote::after {
  position: absolute;
  content: " ";
  bottom: 0;
  right: 10px;
  width: 33px;
  height: 22px;
  background: url("img/posts/info_blockquote_02.png") no-repeat;
  background-size: 33px;
}
.info-wrap .info-posts .post-single blockquote p {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}
.info-wrap .info-posts .post-single table {
  border: 1px solid #F8EFF2;
  margin-bottom: 20px;
}
.info-wrap .info-posts .post-single table th, .info-wrap .info-posts .post-single table td {
  border-right: 1px solid #F8EFF2;
  padding: 8px 0;
}
.info-wrap .info-posts .post-single table th {
  background: rgba(242, 230, 194, 0.4);
}
.info-wrap .info-posts .post-single table td {
  border-bottom: 1px solid #F8EFF2;
}
.info-wrap .info-posts .post-single .share .share-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 10px 1.6rem;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single .share .share-btn {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: 0;
  }
}
.info-wrap .info-posts .post-single .share .share-btn li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 120px;
  color: #FFF;
  margin-right: 20px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single .share .share-btn li {
    margin-right: 8px;
  }
}
.info-wrap .info-posts .post-single .share .share-btn li a {
  display: block;
  padding: 6px 0;
}
.info-wrap .info-posts .post-single .share .share-btn li::before {
  content: none;
}
.info-wrap .info-posts .post-single .share .share-btn li.twitter {
  background: #4DAAE7;
}
.info-wrap .info-posts .post-single .share .share-btn li.facebook {
  background: #346AB3;
}
.info-wrap .info-posts .post-single .share .share-btn li.line {
  background: #56AC33;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-single .share .share-btn li.line {
    margin-right: 0;
  }
}
.info-wrap .info-posts .post-author {
  padding: 20px;
  margin-bottom: 30px;
}
.info-wrap .info-posts .post-author .single-title {
  margin-bottom: 25px;
}
.info-wrap .info-posts .post-author .single-title h3, .info-wrap .info-posts .post-author .single-title p {
  background: #FFF;
  z-index: 1;
}
.info-wrap .info-posts .post-author .author-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-author .author-wrap {
    display: block;
  }
}
.info-wrap .info-posts .post-author .author-wrap .img {
  width: 155px;
  height: 155px;
  margin-right: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 155px;
          flex: 0 0 155px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-author .author-wrap .img {
    width: 230px;
    height: 230px;
    text-align: center;
    margin: 0 auto 20px;
  }
}
.info-wrap .info-posts .post-author .author-wrap .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.info-wrap .info-posts .post-author .author-wrap .info {
  width: 75%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-author .author-wrap .info {
    width: 100%;
  }
}
.info-wrap .info-posts .post-author .author-wrap .info h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-author .author-wrap .info h4 {
    font-size: 16px;
    text-align: center;
  }
}
.info-wrap .info-posts .post-author .author-wrap .info p {
  font-size: 16px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-author .author-wrap .info p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.info-wrap .info-posts .post-author .author-wrap .info .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-author .author-wrap .info .sns {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.info-wrap .info-posts .post-author .author-wrap .info .sns li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 15px "游明朝体", "Yu Mincho", YuMincho, serif;
  color: rgba(0, 0, 0, 0.6);
  margin-right: 26px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .post-author .author-wrap .info .sns li {
    width: 33%;
    margin: 0 10px 10px;
  }
}
.info-wrap .info-posts .post-author .author-wrap .info .sns li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info-wrap .info-posts .post-author .author-wrap .info .sns li a i {
  font-size: 20px;
  color: #D9ADBC;
  margin-right: 4px;
}
.info-wrap .info-posts .pager {
  margin-bottom: 60px;
}
.info-wrap .info-posts .pager ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .pager ul {
    display: block;
  }
}
.info-wrap .info-posts .pager ul li {
  width: 36%;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .pager ul li {
    width: 100%;
    margin-bottom: 14px;
  }
}
.info-wrap .info-posts .pager ul li a {
  position: relative;
  display: block;
  font-size: 15px;
  color: #59474D;
  text-decoration: underline;
}
.info-wrap .info-posts .pager ul li.list {
  width: 146px;
  font-size: 16px;
  color: #A68590;
  text-align: center;
  border: 1px solid #A68590;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .pager ul li.list {
    width: 100%;
  }
}
.info-wrap .info-posts .pager ul li.list a {
  text-decoration: none;
  color: #A68590;
  padding: 11px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.info-wrap .info-posts .pager ul li.list:hover {
  background: #A68590;
}
.info-wrap .info-posts .pager ul li.list:hover a {
  color: #FFF;
}
.info-wrap .info-posts .pager ul li:first-child a {
  padding-left: 90px;
}
.info-wrap .info-posts .pager ul li:first-child a::before {
  position: absolute;
  content: "  ";
  top: 0;
  bottom: 0;
  left: 0;
  width: 75px;
  height: 24px;
  background: url("img/posts/pager_prev.png") no-repeat;
  background-size: 75px;
  margin: auto;
}
.info-wrap .info-posts .pager ul li:last-child a {
  padding-right: 90px;
}
.info-wrap .info-posts .pager ul li:last-child a::before {
  position: absolute;
  content: "  ";
  top: 0;
  bottom: 0;
  right: 0;
  width: 75px;
  height: 24px;
  background: url("img/posts/pager_next.png") no-repeat;
  background-size: 75px;
  margin: auto;
}
.info-wrap .info-posts .related-posts h3 {
  border-top: dotted 1px #A68590;
  border-bottom: dotted 1px #A68590;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  padding: 18px 0;
  margin-bottom: 22px;
}
.info-wrap .info-posts .related-posts .post-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 0 36px;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .related-posts .post-wrap {
    display: block;
  }
}
.info-wrap .info-posts .related-posts .post-wrap .relation-post-archive {
  position: relative;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .related-posts .post-wrap .relation-post-archive {
    margin-bottom: 30px;
  }
}
.info-wrap .info-posts .related-posts .post-wrap .relation-post-archive .link {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.info-wrap .info-posts .related-posts .post-wrap .relation-post-archive .relation-post-thumb {
  display: block;
  width: 100%;
  height: 152.88px;
}
@media (max-width: 1099px) {
  .info-wrap .info-posts .related-posts .post-wrap .relation-post-archive .relation-post-thumb {
    height: 13vw;
  }
}
@media (max-width: 767px) {
  .info-wrap .info-posts .related-posts .post-wrap .relation-post-archive .relation-post-thumb {
    height: 65vw;
  }
}
.info-wrap .info-posts .related-posts .post-wrap .relation-post-archive .relation-post-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.info-wrap .info-posts .related-posts .post-wrap .relation-post-archive .relation-post-dc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 15px 0;
}
@media (max-width: 767px) {
  .info-wrap .info-posts .related-posts .post-wrap .relation-post-archive .relation-post-dc {
    margin: 7.5px 0;
  }
}
.info-wrap .info-posts .related-posts .post-wrap .relation-post-archive .relation-post-dc .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  background: #D9ADBC;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 0 8px;
  margin-right: 12px;
}
.info-wrap .info-posts .related-posts .post-wrap .relation-post-archive .relation-post-dc .date {
  color: #555;
  font-size: 14px;
}
.info-wrap .info-posts .related-posts .post-wrap .relation-post-archive .relation-post-title {
  text-decoration: underline;
  font-size: 15px;
}
.info-wrap .info-sidebar {
  width: 300px;
}
@media (max-width: 767px) {
  .info-wrap .info-sidebar {
    width: 100%;
  }
}
.info-wrap .info-sidebar .searchform {
  position: relative;
  height: 50px;
  background: #FAFAFA;
  margin-bottom: 36px;
}
.info-wrap .info-sidebar .searchform input[type=text] {
  display: block;
  width: 100%;
  height: 50px;
  font-size: 14px;
  padding: 0 10px;
}
.info-wrap .info-sidebar .searchform #searchsubmit {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.6rem;
  background: transparent;
  padding: 16px;
  margin: auto 0;
  z-index: 100;
}
.info-wrap .info-sidebar .searchform::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  content: "\f002";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: bold;
  color: #A68590;
  line-height: 1;
  margin: auto 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.info-wrap .info-sidebar .menu {
  margin-bottom: 50px;
}
.info-wrap .info-sidebar .menu .half-title {
  margin-bottom: 0;
}
.info-wrap .info-sidebar .menu .posts {
  margin-bottom: 50px;
}
.info-wrap .info-sidebar .menu .posts .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px dotted #A68590;
  padding: 18px 0;
}
.info-wrap .info-sidebar .menu .posts .item .thumb {
  width: 135px;
  height: 90px;
}
.info-wrap .info-sidebar .menu .posts .item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .info-wrap .info-sidebar .menu .posts .item .thumb {
    width: 48%;
    height: 30vw;
  }
}
.info-wrap .info-sidebar .menu .posts .item .text {
  width: 150px;
}
@media (max-width: 767px) {
  .info-wrap .info-sidebar .menu .posts .item .text {
    width: 48%;
  }
}
.info-wrap .info-sidebar .menu .posts .item .text .title {
  font-size: 15px;
  letter-spacing: 0;
  text-decoration: underline;
  margin-bottom: 8px;
}
.info-wrap .info-sidebar .menu .posts .item .text .date {
  font-size: 14px;
  color: #555;
  text-align: right;
}
.info-wrap .info-sidebar .menu .cat li {
  border-bottom: 1px dotted #A68590;
}
.info-wrap .info-sidebar .menu .cat li a {
  display: block;
  background: url("img/common/common_arrow.png") center right 1rem no-repeat;
  background-size: 6px;
  font: 16px "游明朝体", "Yu Mincho", YuMincho, serif;
  color: #735C63;
  letter-spacing: 4px;
  padding: 16px 0 16px 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.info-wrap .info-sidebar .menu .cat li a:hover {
  background: url("img/common/common_arrow.png") center right 0.7rem no-repeat;
  background-size: 6px;
}

/* エディタスタイル
-----------------------------------------------------------------*/
.post-type-information {
  font-size: 16px;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  padding: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .post-type-information {
    font-size: 13px;
    padding: 14px;
  }
}
.post-type-information .eyecatch {
  margin-bottom: 30px;
}
.post-type-information .eyecatch img {
  width: 100%;
}
.post-type-information h2, .post-type-information h3, .post-type-information h4, .post-type-information h5 {
  clear: both;
}
.post-type-information h2 {
  position: relative;
  background: rgba(242, 194, 210, 0.2);
  font: 24px "游明朝体", "Yu Mincho", YuMincho, serif;
  padding: 17px 0 17px 40px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .post-type-information h2 {
    font-size: 18px;
    padding: 12px 0 12px 24px;
    margin-bottom: 20px;
  }
}
.post-type-information h2::before {
  position: absolute;
  content: " ";
  top: 9px;
  left: 14px;
  width: 5px;
  height: 50px;
  background: #FFF;
}
@media (max-width: 767px) {
  .post-type-information h2::before {
    left: 10px;
    height: 72%;
  }
}
.post-type-information h3 {
  position: relative;
  font: 24px "游明朝体", "Yu Mincho", YuMincho, serif;
  border-bottom: 1px solid #A68590;
  padding-bottom: 6px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .post-type-information h3 {
    font-size: 18px;
  }
}
.post-type-information h3::after {
  position: absolute;
  content: " ";
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #A68590;
}
.post-type-information h4 {
  font: 22px "游明朝体", "Yu Mincho", YuMincho, serif;
  border-left: 5px solid #F2C2D2;
  padding: 8px 0 8px 24px;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .post-type-information h4 {
    font-size: 16px;
    line-height: 1.4;
    padding: 4px 0 4px 18px;
  }
}
.post-type-information h5 {
  font: 22px "游明朝体", "Yu Mincho", YuMincho, serif;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .post-type-information h5 {
    font-size: 16px;
  }
}
.post-type-information p {
  line-height: 2;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .post-type-information p {
    margin-bottom: 20px;
  }
}
.post-type-information p img.alignleft {
  display: block;
  width: 50%;
  margin: 0 20px 20px 0;
}
.post-type-information p img.alignright {
  display: block;
  width: 50%;
  margin: 0 0 20px 20px;
}
@media (max-width: 767px) {
  .post-type-information p img {
    width: 100%;
  }
}
.post-type-information p em {
  font-style: italic;
}
.post-type-information p strong {
  font-weight: bold;
}
.post-type-information p > a {
  color: #D9ADBC;
  border-bottom: 1px solid #D9ADBC;
}
.post-type-information ul {
  margin: 0 0 20px 1rem;
}
@media (max-width: 767px) {
  .post-type-information ul {
    margin-left: 0.5rem;
    margin-bottom: 10px;
  }
}
.post-type-information ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.1;
}
.post-type-information ul li::before {
  content: "・";
  font-size: 32px;
  color: #F2C2D2;
}
.post-type-information ol {
  counter-reset: item;
  margin: 0 0 20px 2rem;
}
@media (max-width: 767px) {
  .post-type-information ol {
    margin-left: 1rem;
  }
}
.post-type-information ol li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 34px;
  margin-bottom: 8px;
}
.post-type-information ol li::before {
  position: absolute;
  left: 0;
  counter-increment: item;
  content: "0" counter(item);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25px;
  height: 25px;
  background: #D9ADBC;
  font-size: 14px;
  font-weight: bold;
  color: #FFF;
  line-height: 1;
  text-align: center;
  border-radius: 20px;
}
.post-type-information blockquote {
  position: relative;
  background: rgba(255, 173, 188, 0.2);
  padding: 26px 60px;
  margin: 40px 0;
}
@media (max-width: 767px) {
  .post-type-information blockquote {
    padding: 20px;
  }
}
.post-type-information blockquote::before {
  position: absolute;
  content: " ";
  top: -22px;
  left: 10px;
  width: 33px;
  height: 22px;
  background: url("img/posts/info_blockquote_01.png") no-repeat;
  background-size: 33px;
}
.post-type-information blockquote::after {
  position: absolute;
  content: " ";
  bottom: 0;
  right: 10px;
  width: 33px;
  height: 22px;
  background: url("img/posts/info_blockquote_02.png") no-repeat;
  background-size: 33px;
}
.post-type-information blockquote p {
  margin-bottom: 0;
}
.post-type-information table {
  border: 1px solid #F8EFF2;
  margin-bottom: 20px;
}
.post-type-information table th, .post-type-information table td {
  border-right: 1px solid #F8EFF2;
  padding: 8px 0;
}
.post-type-information table th {
  background: rgba(242, 230, 194, 0.4);
}
.post-type-information table td {
  border-bottom: 1px solid #F8EFF2;
}
.post-type-information .share .share-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 10px 1.6rem;
}
@media (max-width: 767px) {
  .post-type-information .share .share-btn {
    margin-left: 0;
  }
}
.post-type-information .share .share-btn li {
  margin-right: 14px;
}
@media (max-width: 767px) {
  .post-type-information .share .share-btn li {
    margin-right: 8px;
  }
}
.post-type-information .share .share-btn li::before {
  content: none;
}

/* ページネーション
-----------------------------------------------------------------*/
.navigation h2 {
  display: none;
}
.navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
}
.navigation .nav-links .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 46px;
  height: 46px;
  font: 30px "Cormorant Garamond", serif;
  color: #A68590;
  font-style: italic;
  line-height: 1;
  border: 1px solid #A68590;
  margin: 0 10px;
}
@media (max-width: 767px) {
  .navigation .nav-links .page-numbers {
    width: 36px;
    height: 36px;
    font-size: 24px;
    margin: 0 6px;
  }
}
.navigation .nav-links .page-numbers.prev, .navigation .nav-links .page-numbers.next {
  position: relative;
  width: 75px;
  border: none;
  color: transparent;
}
@media (max-width: 767px) {
  .navigation .nav-links .page-numbers.prev, .navigation .nav-links .page-numbers.next {
    width: 65px;
  }
}
.navigation .nav-links .page-numbers.prev::before {
  position: absolute;
  content: " ";
  top: 0;
  bottom: 0;
  left: 0;
  width: 75px;
  height: 24px;
  background: url("img/posts/pager_prev.png") no-repeat;
  background-size: 75px;
  margin: auto;
}
@media (max-width: 767px) {
  .navigation .nav-links .page-numbers.prev::before {
    width: 65px;
    background: url("img/posts/pager_prev.png") no-repeat;
    background-size: 65px;
  }
}
.navigation .nav-links .page-numbers.next::before {
  position: absolute;
  content: " ";
  top: 0;
  bottom: 0;
  right: 0;
  width: 75px;
  height: 24px;
  background: url("img/posts/pager_next.png") no-repeat;
  background-size: 75px;
  margin: auto;
}
@media (max-width: 767px) {
  .navigation .nav-links .page-numbers.next::before {
    width: 65px;
    background: url("img/posts/pager_next.png") no-repeat;
    background-size: 65px;
  }
}
.navigation .nav-links .page-numbers.current {
  background: #F2C2D2;
  color: #FFF;
  border: 1px solid #F2C2D2;
}/*# sourceMappingURL=style.css.map */
