@charset "UTF-8";
/*---------------------------------------------
 *
 *    CSS Reset & Base
 *
---------------------------------------------*/
/* Reset margin, padding, border
---------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Cinzel:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,700|Roboto:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,700|Roboto:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Dancing+Script&display=swap");
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Typography
---------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.4;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a,
a:visited {
  color: inherit;
  outline: none;
}

/* Layout
---------------------------------------------*/
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

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

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
}

img {
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

/*---------------------------------------------
 font
---------------------------------------------*/
@font-face {
  font-family: YuGothicM;
  src: local(Yu Gothic Medium), local(Yu Gothic);
  font-weight: 500;
}
/*----------------------------------
	common
----------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  padding-bottom: 75px;
  line-height: 1;
  color: #323232;
  font-family: "Times New Roman", "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
}
body .inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.pcOnly {
  display: none;
}

.spOnly {
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .pcOnly {
    display: block;
  }

  .spOnly {
    display: none;
  }

  /* PCで電話リンクをクリックできないように設定 */
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*----------------------------------
	header
----------------------------------*/
@media screen and (max-width: 767px) {
  header {
    position: relative;
    width: 100%;
    /* メニュー設定 */
    /* メニューアイコン設定 */
    /* メニューアイコン変形設定 */
  }
  header .inner {
    position: absolute;
    z-index: 1;
    padding-top: 10px;
    padding-bottom: 10px;
    left: 0;
    right: 0;
    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;
  }
  header .logo {
    width: 200px;
    height: auto;
  }
  header .base p {
    display: none;
  }
  header nav {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    z-index: 5;
    font-family: "Times New Roman", "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-size: 2rem;
  }
  header nav .inner {
    padding: 0 15px;
    margin-left: -20px;
    margin-right: -20px;
  }
  header nav span {
    display: none;
  }
  header nav ul {
    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;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  header nav li {
    position: relative;
  }
  header nav a, header nav a:visited {
    display: block;
    text-decoration: none;
    color: #fff;
    text-align: left;
    padding: 15px 20px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  header #nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
  header .menu-trigger,
header .menu-trigger span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }
  header .menu-trigger {
    position: relative;
    width: 40px;
    height: 23px;
  }
  header .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
  }
  header .menu-trigger:hover {
    cursor: pointer;
  }
  header .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  header .menu-trigger span:nth-of-type(2) {
    top: 10px;
    background-color: #fff;
  }
  header .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  header .menu-trigger::after {
    position: absolute;
    left: 0;
    bottom: -20px;
    content: "MENU";
    display: block;
    width: 100%;
    color: #000;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .menu-trigger.active::after {
    content: "CLOSE";
    color: #fff;
  }
  header .menu-trigger span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }
  header .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(9px) scale(0);
        -ms-transform: translateY(9px) scale(0);
            transform: translateY(9px) scale(0);
  }
  header .menu-trigger.active span:nth-of-type(3)::after {
    background-color: #fff;
  }
  header .menu-trigger.active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header .menu-trigger.active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    background-color: #fff;
  }
  header .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) scale(0);
        -ms-transform: translateY(-9px) scale(0);
            transform: translateY(-9px) scale(0);
  }
}
@media screen and (min-width: 768px) {
  header {
    position: relative;
    width: 100%;
    /* メニュー設定 */
  }
  header .inner {
    position: absolute;
    z-index: 1;
    padding-top: 15px;
    padding-bottom: 15px;
    left: 0;
    right: 0;
    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;
  }
  header .logo {
    width: 220px;
    height: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    /* ie11用 */
  }
  header .base {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .base p {
    white-space: nowrap;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-left: 30px;
  }
  header #nav-toggle {
    display: none;
  }
  header nav {
    font-family: "Times New Roman", "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    font-size: 1.6rem;
    background-color: transparent;
  }
  header nav .inner {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
  header nav span {
    display: block;
  }
  header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav li:not(:first-of-type) {
    margin-left: 20px;
  }
  header nav li a, header nav li a:visited {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #323232;
    text-align: center;
    padding: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  header nav li a::after {
    position: absolute;
    bottom: -6px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #333;
    -webkit-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
        -ms-transform-origin: center top;
            transform-origin: center top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  header nav li a:hover::after {
    -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 0.8;
  }
  header nav li:after {
    display: none;
  }
  header nav li:not(:last-of-type) {
    border-bottom: none;
  }
}
/*----------------------------------
	footer
----------------------------------*/
footer {
  background-color: #f2f2f2;
  color: #333;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, Verdana, Avenir, "游ゴシック Medium", "YuGothic M", "游ゴシック体", "YuGothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
footer .inner {
  padding-top: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
footer .overview {
  margin-bottom: 20px;
}
footer .logo {
  display: inline-block;
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}
footer .text {
  font-size: 1.2rem;
  line-height: 1.8;
}
footer .gmap {
  width: 100%;
}
footer .copyright {
  padding: 20px;
  text-align: center;
  background-color: #000;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  footer .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
  }
  footer .logo {
    width: 220px;
    margin-top: 15px;
  }
  footer .text {
    font-size: 1.4rem;
  }
  footer .gmap {
    width: 50%;
  }
  footer .copyright {
    font-size: 1.6rem;
  }
}
/*----------------------------------
	slide common setting
----------------------------------*/
.slick-slide li {
  margin: 0 5px;
}

.slick-next {
  right: 0px;
}
.slick-next:before {
  content: "";
  width: 12px;
  height: 12px;
  border: 0px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 6px);
  right: calc(50% - 3px);
}

.slick-prev {
  left: 0px;
}
.slick-prev:before {
  content: "";
  width: 12px;
  height: 12px;
  border: 0px;
  border-bottom: solid 1px #000;
  border-left: solid 1px #000;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 3px);
}

.slick-next, .slick-prev {
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
  width: 30px;
  height: 30px;
}
.slick-next:hover, .slick-prev:hover {
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0.7;
}

.slick, .slick-slide {
  outline: none;
}

@media screen and (min-width: 768px) {
  .slick-next:before {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    right: calc(50% - 5px);
  }

  .slick-prev:before {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: calc(50% - 5px);
  }

  .slick-next, .slick-prev {
    width: 50px;
    height: 50px;
  }
}
/*----------------------------------
	.footFix
----------------------------------*/
.footFix {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 10px 0px;
}
.footFix .inner {
  padding: 0 10px;
}
.footFix .box {
  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;
}
.footFix .box .text {
  font-size: 1.2rem;
}
.footFix .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}
.footFix .contact .freedial {
  width: 60%;
  margin-right: 3%;
}
.footFix .contact .freedial a {
  font-size: 2.4rem;
  white-space: nowrap;
}
.footFix .contact .freedial a:before {
  content: "";
  display: inline-block;
  width: 29px;
  height: 16px;
  background-image: url(../img/freedial_mark.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}
.footFix .contact .freedial p {
  margin-top: 5px;
  font-size: 1.2rem;
}
.footFix .contact .form a {
  display: block;
  font-size: 1.2rem;
  white-space: nowrap;
  position: relative;
  padding: 10px 10px;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#f4ac32), to(#c94e1a));
  background: -o-linear-gradient(left, #f4ac32, #c94e1a);
  background: linear-gradient(90deg, #f4ac32, #c94e1a);
  -webkit-box-shadow: 0 3px #7d3110;
          box-shadow: 0 3px #7d3110;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}

@media screen and (min-width: 768px) {
  .footFix {
    padding: 10px 0;
  }
  .footFix .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .footFix .box .text {
    font-size: 1.6rem;
    margin-right: 30px;
  }
  .footFix .contact .freedial {
    margin-right: 30px;
  }
  .footFix .contact .freedial a {
    font-size: 3.2rem;
  }
  .footFix .contact .freedial a:before {
    width: 45px;
    height: 25px;
    margin-right: 5px;
  }
  .footFix .contact .freedial p {
    margin-top: 5px;
    font-size: 1.4rem;
  }
  .footFix .contact .freedial p span {
    display: inline;
  }
  .footFix .contact .form a {
    font-size: 1.8rem;
    padding: 15px 30px;
    border-radius: 5px;
  }
  .footFix .contact .form a:hover {
    top: 2px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
/*----------------------------------
	.fixBanner
----------------------------------*/
.fixBanner {
  position: fixed;
  bottom: 12%;
  right: 3%;
}
.fixBanner img {
  width: 90px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .fixBanner {
    bottom: 10%;
    right: 5%;
  }
  .fixBanner img {
    width: 100%;
    height: auto;
  }
  .fixBanner a:hover {
    opacity: 0.8;
  }
}
/*----------------------------------
	中ページ
----------------------------------*/
/* 共通
----------------------------------*/
body:not(#home) header .inner {
  position: relative;
}

/*----------------------------------
	#topics
----------------------------------*/
/*---------------------------------------------
 #home
---------------------------------------------*/
/* 共通
---------------------------------------------*/
#home main .inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
#home main h2 {
  text-align: center;
  font-size: 2.6rem;
  letter-spacing: 0.2rem;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  #home main .inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  #home main h2 {
    text-align: center;
    font-size: 3.2rem;
    letter-spacing: 0.2rem;
    margin-bottom: 40px;
  }
}
/* #hero
---------------------------------------------*/
#home #hero {
  height: 60vh;
}

@media screen and (min-width: 768px) {
  #home #hero {
    height: 730px;
  }
}
/* .banner
---------------------------------------------*/
#home .banner {
  background-color: #f5f5f5;
}
#home .banner .inner {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #home .banner .inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #home .banner a:hover {
    opacity: 0.7;
  }
}
/* .gallery
---------------------------------------------*/
#home .gallery {
  text-align: center;
}
#home .gallery p.read {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
#home .gallery .type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
#home .gallery .type .box {
  margin: 0 5%;
}
#home .gallery .type .box img {
  width: 200px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
}
#home .gallery .type .box h3 {
  font-size: 2.1rem;
  margin-bottom: 15px;
}
#home .gallery .type .box p {
  font-size: 1.4rem;
  line-height: 1.6;
}
#home .gallery .slider {
  margin-bottom: 30px;
}
#home .gallery .btn {
  width: 80%;
  margin: 0 auto;
}
#home .gallery .btn a {
  display: block;
  text-align: center;
  padding: 10px 0;
  border: 1px solid #808080;
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}
#home .gallery .btn a:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
}

@media screen and (min-width: 768px) {
  #home .gallery p.read {
    line-height: 1.6;
    margin-bottom: 50px;
  }
  #home .gallery .type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 50px;
  }
  #home .gallery .type .box {
    margin-bottom: 0px;
  }
  #home .gallery .type .box img {
    width: 200px;
    height: auto;
    border-radius: 50%;
  }
  #home .gallery .type .box h3 {
    margin-bottom: 20px;
  }
  #home .gallery .btn {
    width: 350px;
    margin: 0 auto;
  }
}
/* .instagram
---------------------------------------------*/
#home .instagram {
  background-color: #f9f7ea;
}

.sbi_type_carousel .fa-clone {
  z-index: 0;
}

/* .clinic
---------------------------------------------*/
#home .clinic .photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#home .clinic .photo .upper {
  margin-bottom: 20px;
  min-height: 0%;
  /* ie11用 */
}
#home .clinic .photo .upper img {
  width: 100%;
  /* ie11用 */
  border-radius: 10px;
}
#home .clinic .photo .lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 0%;
  /* ie11用 */
}
#home .clinic .photo .lower figure:first-of-type {
  margin-right: 1.5%;
}
#home .clinic .photo .lower figure:last-of-type {
  margin-left: 1.5%;
}
#home .clinic .photo .lower img {
  width: 100%;
  /* ie11用 */
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  #home .clinic .photo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #home .clinic .photo .upper {
    margin-bottom: 0;
  }
  #home .clinic .photo .upper figure {
    margin-right: 2%;
  }
  #home .clinic .photo .lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #home .clinic .photo .lower figure:first-of-type {
    margin-right: 1%;
  }
  #home .clinic .photo .lower figure:last-of-type {
    margin-left: 1%;
  }
}
/*---------------------------------------------
 #artmake
---------------------------------------------*/
/* .title
---------------------------------------------*/
#artmake .title {
  height: 180px;
  background-color: #f5f5f5;
  background-position: 50% 80%;
  background-size: cover;
}
#artmake .title .whiteBg {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#artmake .title .inner {
  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;
}
#artmake .title h1 {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  text-align: center;
}
#artmake .title h1:before {
  content: "Artmake";
  display: block;
  font-size: 3.6rem;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  #artmake .title {
    height: 260px;
    background-position: 50% 80%;
  }
  #artmake .title h1 {
    font-size: 2rem;
  }
  #artmake .title h1:before {
    font-size: 5rem;
    margin-bottom: 10px;
  }
}
/* .contetns
---------------------------------------------*/
#artmake .contents {
  text-align: center;
}
#artmake .contents .inner {
  padding: 50px 20px;
}
#artmake .contents h2 {
  font-family: "Times New Roman", "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: normal;
  font-size: 5vw;
  text-align: center;
  margin-bottom: 2.4vw;
}
#artmake .contents .english {
  font-family: "Dancing Script", cursive;
  color: #ae9545;
  font-size: 4vw;
  text-align: center;
  margin-bottom: 35px;
}

@media screen and (min-width: 768px) {
  #artmake .contents .inner {
    padding: 80px 20px;
  }
  #artmake .contents h2 {
    font-size: 3.6rem;
    margin-bottom: 2.4rem;
  }
  #artmake .contents .english {
    font-size: 3.2rem;
    margin-bottom: 35px;
  }
}
/* .about
---------------------------------------------*/
#artmake .about {
  text-align: center;
}
#artmake .about .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#artmake .about .wrapper .info {
  min-height: 0%;
}
#artmake .about .wrapper .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}
#artmake .about .wrapper .text h4 {
  color: #ae9545;
  font-family: "Times New Roman", "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 4vw;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}
#artmake .about .wrapper .text p {
  line-height: 1.8;
  color: #333;
}
#artmake .about .wrapper .text p span {
  color: #009bc9;
  font-weight: bold;
}
#artmake .about .wrapper .text .treatment {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  min-height: 0%;
}
#artmake .about .wrapper .text .treatment img {
  width: 500px;
  max-width: 100%;
}
#artmake .about .wrapper .image {
  min-height: 0%;
}

@media screen and (min-width: 768px) {
  #artmake .about .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #artmake .about .wrapper .info {
    width: 55%;
  }
  #artmake .about .wrapper .text {
    text-align: left;
  }
  #artmake .about .wrapper .text h4 {
    font-size: 2.4rem;
    text-align: left;
  }
  #artmake .about .wrapper .text .treatment {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
    min-height: 0%;
  }
  #artmake .about .wrapper .image {
    margin-left: 70px;
    min-height: 0%;
  }
  #artmake .about .wrapper .image img {
    width: 480px;
    height: auto;
  }
}
/* .reason
---------------------------------------------*/
#artmake .reason {
  background-color: #edf8fa;
}
#artmake .reason h2 {
  line-height: 1.3;
}
#artmake .reason .wrapper {
  margin: 0 10px;
  padding: 10px 0px;
  border: 1px solid #009bc9;
  border-top: none;
}
#artmake .reason .wrapper h3 {
  position: relative;
  font-size: 4.375vw;
  font-weight: normal;
  font-family: "Times New Roman", "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  top: -3.8vw;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#artmake .reason .wrapper h3:before,
#artmake .reason .wrapper h3:after {
  border-top: 1px solid #009bc9;
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#artmake .reason .wrapper h3:before {
  margin-right: 1rem;
}
#artmake .reason .wrapper h3:after {
  margin-left: 1rem;
}
#artmake .reason .wrapper .boxset {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#artmake .reason .wrapper .boxset .box {
  width: 100%;
  padding: 20px 0;
  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;
  min-height: 0%;
}
#artmake .reason .wrapper .boxset .box .image {
  width: 40%;
}
#artmake .reason .wrapper .boxset .box .text {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#artmake .reason .wrapper .boxset .box .text h4 {
  font-size: 4.2vw;
  font-weight: normal;
  font-family: "Times New Roman", "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
#artmake .reason .wrapper .boxset .box .text h4 span {
  display: inline-block;
  position: relative;
  color: #ae9545;
  margin-top: 8px;
  font-size: 4.6vw;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
#artmake .reason .wrapper .boxset .box .text h4 span:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 4px;
  border-top: 1px solid #ae9545;
  border-bottom: 1px solid #ae9545;
}
#artmake .reason .wrapper .boxset .box p {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph;
}
#artmake .reason .wrapper .boxset .box:not(:last-of-type) {
  border-bottom: 1px solid #b2b2b2;
}

@media screen and (min-width: 768px) {
  #artmake .reason h2 {
    line-height: 1;
  }
  #artmake .reason .wrapper {
    margin-top: 45px;
    padding: 40px 0px;
    border: 1px solid #009bc9;
    border-top: none;
  }
  #artmake .reason .wrapper h3 {
    position: relative;
    font-size: 3rem;
    font-weight: normal;
    font-family: "Times New Roman", "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    top: -54px;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #artmake .reason .wrapper h3:before,
#artmake .reason .wrapper h3:after {
    border-top: 1px solid #009bc9;
    content: "";
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  #artmake .reason .wrapper h3:before {
    margin-right: 1rem;
  }
  #artmake .reason .wrapper h3:after {
    margin-left: 1rem;
  }
  #artmake .reason .wrapper .boxset {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #artmake .reason .wrapper .boxset .box {
    width: 25%;
    padding: 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #artmake .reason .wrapper .boxset .box .image {
    width: 100%;
    min-height: 0%;
    margin-bottom: 20px;
  }
  #artmake .reason .wrapper .boxset .box .text {
    width: 100%;
    text-align: center;
  }
  #artmake .reason .wrapper .boxset .box .text h4 {
    font-size: 2.8rem;
    font-weight: normal;
    font-family: "Times New Roman", "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  #artmake .reason .wrapper .boxset .box .text h4 span {
    display: inline-block;
    position: relative;
    color: #ae9545;
    margin-top: 15px;
    font-size: 2.8rem;
    margin-bottom: 30px;
    padding-bottom: 5px;
  }
  #artmake .reason .wrapper .boxset .box .text h4 span:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 4px;
    border-top: 1px solid #ae9545;
    border-bottom: 1px solid #ae9545;
  }
  #artmake .reason .wrapper .boxset .box p {
    color: #333;
    line-height: 1.6;
    text-align: left;
  }
  #artmake .reason .wrapper .boxset .box:not(:last-of-type) {
    border-bottom: none;
    border-right: 1px solid #ae9545;
  }
}
/* .parts
---------------------------------------------*/
#artmake .parts .wrapper .partsDetail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  margin-bottom: 30px;
  /* ie11用 */
}
#artmake .parts .wrapper .partsDetail h3 {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
}
#artmake .parts .wrapper .partsDetail h3 span {
  font-size: 2.4rem;
  margin-right: 10px;
  font-weight: bold;
}
#artmake .parts .wrapper .partsDetail p {
  line-height: 1.6;
  text-align: left;
}
#artmake .parts .wrapper .partsDetail figure {
  margin-right: 15px;
}
#artmake .parts .wrapper .partsDetail _:-ms-lang(x)::-ms-backdrop, #artmake .parts .wrapper .partsDetail img {
  width: 120px;
  height: auto;
}

@media screen and (min-width: 768px) {
  #artmake .parts .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #artmake .parts .wrapper .partsDetail {
    width: 30%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }
  #artmake .parts .wrapper .partsDetail h3 {
    -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;
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.1;
  }
  #artmake .parts .wrapper .partsDetail h3 span {
    font-size: 3.2rem;
    margin-right: 0;
  }
  #artmake .parts .wrapper .partsDetail figure {
    margin-right: 0;
    margin-bottom: 40px;
  }
  #artmake .parts .wrapper .partsDetail img {
    width: 150px;
  }
}
/* .price
---------------------------------------------*/
#artmake .price {
  background-color: #faf6eb;
}
#artmake .price .menuBox {
  padding: 0px 20px;
}
#artmake .price .menuBox .detail {
  width: 100%;
  margin: 0 auto;
  padding: 15px;
  border-top: 1px dotted #ccc;
}
#artmake .price .menuBox .detail .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 2rem;
  line-height: 1.3;
}
#artmake .price .menuBox .detail .head .price span {
  font-size: 1.4rem;
}
#artmake .price .menuBox .detail:last-of-type {
  border-bottom: 1px dotted #ccc;
}

@media screen and (min-width: 768px) {
  #artmake .price .menuBox .detail {
    margin: 0 auto;
    padding: 25px;
  }
  #artmake .price .menuBox .detail .head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2.4rem;
    line-height: 1.3;
  }
  #artmake .price .menuBox .detail .head .price {
    text-align: right;
  }
  #artmake .price .menuBox .detail .head .price span {
    font-size: 1.8rem;
  }
}
/* .flow
---------------------------------------------*/
#artmake .flow .wrapper {
  margin-top: 50px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#artmake .flow .wrapper .box {
  width: 70%;
  margin: 0 auto;
  min-height: 0%;
}
#artmake .flow .wrapper .arrow {
  text-align: center;
  margin: 25px 0;
}
#artmake .flow .wrapper .image {
  margin-bottom: 20px;
}
#artmake .flow .wrapper .flowTitle {
  color: #c94e1a;
  font-weight: bold;
  font-size: 5vw;
  text-align: center;
  margin-bottom: 10px;
}
#artmake .flow .wrapper p {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.6;
  text-align: left;
}

@media screen and (min-width: 768px) {
  #artmake .flow .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #artmake .flow .wrapper .box {
    width: 18%;
  }
  #artmake .flow .wrapper .box:not(:first-of-type) {
    margin-left: 10px;
  }
  #artmake .flow .wrapper .box:not(:last-of-type) {
    margin-right: 10px;
  }
  #artmake .flow .wrapper .arrow {
    width: 2.5%;
    margin-top: 110px;
    text-align: center;
  }
  #artmake .flow .wrapper .image {
    margin-bottom: 20px;
  }
  #artmake .flow .wrapper .flowTitle {
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
  #artmake .flow .wrapper p {
    font-size: 1.4rem;
    color: #333;
    line-height: 1.6;
  }
}
/* .faq
---------------------------------------------*/
#artmake .faq {
  background-color: #faf6eb;
}
#artmake .faq .wrapper {
  text-align: left;
}
#artmake .faq .wrapper dl dt {
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px dotted #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
}
#artmake .faq .wrapper dl dt span {
  color: #ae9545;
  font-size: 3rem;
  margin-right: 15px;
  margin-top: -5px;
}
#artmake .faq .wrapper dl dd {
  font-size: 1.4rem;
  margin-bottom: 25px;
  padding: 0 0.5rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  #artmake .faq {
    background-color: #faf6eb;
  }
  #artmake .faq .wrapper {
    text-align: left;
  }
  #artmake .faq .wrapper dl dt {
    font-size: 2.1rem;
  }
  #artmake .faq .wrapper dl dt span {
    font-size: 4rem;
    margin-right: 15px;
  }
  #artmake .faq .wrapper dl dd {
    font-size: 1.6rem;
    margin-bottom: 50px;
    padding-left: 5rem;
  }
}
/*---------------------------------------------
 #gallery
---------------------------------------------*/
/* .title
---------------------------------------------*/
#gallery .title {
  height: 180px;
  background-color: #f5f5f5;
  background-position: 50% 80%;
  background-size: cover;
}
#gallery .title .whiteBg {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#gallery .title .inner {
  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;
}
#gallery .title h1 {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  text-align: center;
}
#gallery .title h1:before {
  content: "Photo Gallery";
  display: block;
  font-size: 3.6rem;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  #gallery .title {
    height: 260px;
    background-position: 50% 80%;
  }
  #gallery .title h1 {
    font-size: 2rem;
  }
  #gallery .title h1:before {
    font-size: 5rem;
    margin-bottom: 10px;
  }
}
/* .contetns
---------------------------------------------*/
#gallery .contents {
  text-align: center;
}
#gallery .contents .inner {
  padding: 40px 20px;
}
#gallery .contents h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}
#gallery .contents .list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#gallery .contents .list ul li {
  width: 49%;
  margin-bottom: 10px;
}
#gallery .contents .mbMiddle {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  #gallery .contents .list ul li:not(:nth-of-type(2n)) {
    margin-right: calc((100% - 49% * 2) / 1);
  }
}
@media screen and (min-width: 768px) {
  #gallery .contents .inner {
    padding: 80px 20px;
  }
  #gallery .contents h2 {
    font-size: 4rem;
  }
  #gallery .contents .list ul {
    margin-bottom: 30px;
  }
  #gallery .contents .list ul li {
    width: 24%;
    margin-bottom: 15px;
  }
  #gallery .contents .list ul li:not(:nth-of-type(4n)) {
    margin-right: calc((100% - 24% * 4) / 3);
  }
  #gallery .contents .mbMiddle {
    margin-bottom: 100px;
  }
}
/*---------------------------------------------
 #price
---------------------------------------------*/
/* .title
---------------------------------------------*/
#price .title {
  height: 180px;
  background-color: #f5f5f5;
  background-position: 50% 80%;
  background-size: cover;
}
#price .title .whiteBg {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#price .title .inner {
  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;
}
#price .title h1 {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  text-align: center;
}
#price .title h1:before {
  content: "Price";
  display: block;
  font-size: 3.6rem;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  #price .title {
    height: 260px;
    background-position: 50% 80%;
  }
  #price .title h1 {
    font-size: 2rem;
  }
  #price .title h1:before {
    font-size: 5rem;
    margin-bottom: 10px;
  }
}
/* .contetns
---------------------------------------------*/
#price .contents {
  text-align: center;
}
#price .contents .inner {
  padding: 110px 20px 40px;
}
#price .contents .menuBox {
  padding: 80px 20px 30px;
  margin-bottom: 120px;
  border: 2px solid #ccc;
  position: relative;
}
#price .contents .menuBox .catch {
  position: absolute;
  width: 120px;
  height: auto;
  left: calc(50% - 60px);
  top: -60px;
}
#price .contents .menuBox:last-of-type {
  margin-bottom: 0;
}
#price .contents .menuBox.care {
  margin-top: -30px;
  padding: 40px 20px 30px;
  margin-bottom: 0px;
}
#price .contents h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: bold;
}
#price .contents h2.separate {
  margin-top: 40px;
}
#price .contents .detail {
  width: 100%;
  margin: 0 auto;
  padding: 15px;
  border-top: 1px dotted #ccc;
}
#price .contents .detail .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 2rem;
  line-height: 1.3;
}
#price .contents .detail .head .price span {
  font-size: 1.4rem;
}
#price .contents .detail:last-of-type {
  border-bottom: 1px dotted #ccc;
}
#price .contents .booking {
  margin-top: 30px;
  padding: 20px;
  background-color: #f5f5f5;
  font-size: 1.4rem;
}
#price .contents .booking .special {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  #price .contents .inner {
    padding: 170px 20px 80px;
  }
  #price .contents .menuBox {
    padding: 130px 10% 40px;
    margin-bottom: 180px;
    border: 2px solid #ccc;
    position: relative;
  }
  #price .contents .menuBox .catch {
    position: absolute;
    width: 180px;
    height: auto;
    left: calc(50% - 90px);
    top: -90px;
  }
  #price .contents .menuBox.care {
    margin-top: -50px;
    padding: 60px 10% 40px;
  }
  #price .contents h2 {
    font-size: 4rem;
  }
  #price .contents h2.separate {
    margin-top: 60px;
  }
  #price .contents .detail {
    margin: 0 auto;
    padding: 25px;
  }
  #price .contents .detail .head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2.4rem;
    line-height: 1.3;
  }
  #price .contents .detail .head .price {
    text-align: right;
  }
  #price .contents .detail .head .price span {
    font-size: 1.8rem;
  }
  #price .contents .booking {
    text-align: left;
    font-size: 1.6rem;
  }
  #price .contents .booking .special {
    font-size: 1.8rem;
  }
}
/*---------------------------------------------
 #access
---------------------------------------------*/
/* .title
---------------------------------------------*/
#access .title {
  height: 180px;
  background-color: #f5f5f5;
  background-position: 50% 80%;
  background-size: cover;
}
#access .title .whiteBg {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#access .title .inner {
  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;
}
#access .title h1 {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  text-align: center;
}
#access .title h1:before {
  content: "Access";
  display: block;
  font-size: 3.6rem;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  #access .title {
    height: 260px;
    background-position: 50% 80%;
  }
  #access .title h1 {
    font-size: 2rem;
  }
  #access .title h1:before {
    font-size: 5rem;
    margin-bottom: 10px;
  }
}
/* .contetns
---------------------------------------------*/
#access .contents {
  text-align: center;
}
#access .contents .inner {
  padding: 40px 20px;
}
#access .contents .info h2 {
  font-size: 2.4rem;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 15px;
  margin-bottom: 5px;
}
#access .contents p {
  line-height: 2;
  font-size: 1.2rem;
  padding: 10px 0;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  #access .contents .inner {
    padding: 80px 20px;
  }
  #access .contents .info h2 {
    font-size: 3rem;
  }
  #access .contents p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  #access .contents .gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 75%;
    position: relative;
  }
  #access .contents .gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */