@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");
@import url("https://fonts.googleapis.com/css2?family=Fredericka+the+Great&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: 20px;
    padding-bottom: 20px;
    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;
    background-color: rgba(255, 255, 255, 0.5);
  }
  header .logo {
    width: 160px;
    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: 25px;
    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 .bg {
    position: absolute;
    width: 100%;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 2;
  }
  header .inner {
    position: absolute;
    z-index: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    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: 180px;
    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: 30px;
  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: 160px;
  height: auto;
  margin-bottom: 20px;
}
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: 180px;
    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 {
  white-space: nowrap;
  margin-top: 5px;
  font-size: 1.1rem;
}
.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;
}

/*----------------------------------
  .helper
----------------------------------*/
.hp_bg_grey {
  background-color: #f7f7f7;
}

/*----------------------------------
  .el_pageTitle_box
----------------------------------*/
.el_pageTitle_box {
  padding: 50px 10px;
  background-color: #f7f7f7;
  text-align: center;
}

.el_pageTitle {
  font-family: "Fredericka the Great", cursive;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 5.6vw;
  letter-spacing: 0.3rem;
}
.el_pageTitle span {
  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: block;
  margin-top: 10px;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .el_pageTitle_box {
    padding: 100px 10px;
  }

  .el_pageTitle {
    font-size: 4rem;
  }
  .el_pageTitle span {
    margin-top: 10px;
    font-size: 2.1rem;
  }
}
.el_pageLink_btn a {
  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: 1.4rem;
  display: block;
  width: 70%;
  max-width: 400px;
  padding: 10px 20px;
  margin: 0 auto;
  border: 1px solid rgba(51, 51, 51, 0.6);
  text-align: center;
  background-color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .el_pageLink_btn a {
    font-size: 1.6rem;
  }
  .el_pageLink_btn a:hover {
    background-color: #333;
    color: #fff;
  }
}
/* .download
----------------------------------*/
.el_download_btn a {
  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;
  display: block;
  width: 70%;
  max-width: 450px;
  padding: 20px 0;
  margin: 0 auto;
  margin-top: 30px;
  border: 1px solid rgba(51, 51, 51, 0.6);
  text-align: center;
  background-color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.el_download_btn a span {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
}
.el_download_btn a:hover {
  background-color: #333;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .el_download_btn a {
    font-size: 2.4rem;
    padding: 30px 0;
  }
  .el_download_btn a span {
    font-size: 1.4rem;
  }
}
.el_section_read {
  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: 1.4rem;
  line-height: 1.8;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .el_section_read {
    font-size: 1.8rem;
  }
}
/*---------------------------------------------
 #home
---------------------------------------------*/
/* 共通
---------------------------------------------*/
#home main .inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
#home main h2 {
  font-family: "Fredericka the Great", cursive;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 6.4vw;
  line-height: 1.4;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.3rem;
  margin-bottom: 30px;
}
#home main h2 span {
  display: block;
  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: 1.4rem;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  #home main .inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  #home main h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 40px;
  }
  #home main h2 span {
    font-size: 1.8rem;
    margin-top: 15px;
  }
}
/* #hero
---------------------------------------------*/
#home #hero {
  height: 60vh;
}
#home #hero .note {
  position: absolute;
  bottom: 2%;
  right: 50%;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
  font-size: 1.2rem;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  #home #hero {
    height: 730px;
  }
  #home #hero .note {
    right: 1.5%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    font-size: 1.4rem;
  }
}
/* .info
---------------------------------------------*/
#home .info {
  background-color: #f7f7f7;
}
#home .info .news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}
#home .info .news article {
  width: 100%;
}
#home .info .news article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 15px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
#home .info .news article a .pict {
  width: 120px;
  height: auto;
  margin-right: 15px;
}
#home .info .news article a .text {
  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";
  width: calc(100% - 135px);
  font-size: 1.4rem;
  line-height: 1.6;
}
#home .info .btn {
  width: 80%;
  margin: 0 auto;
}
#home .info .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 .info .btn a:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.9);
}

@media screen and (min-width: 768px) {
  #home .info .news {
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 50px;
  }
  #home .info .news article {
    width: 33%;
  }
  #home .info .news article a {
    padding: 10px;
    margin-bottom: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  #home .info .news article a:hover {
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0.8;
  }
  #home .info .btn {
    width: 350px;
  }
}
/* .banner
---------------------------------------------*/
/*
#home .banner {
  background-color: $common-bg-color;
  .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;
    }
    a:hover {
      opacity: 0.7;
    }
  }
}
*/
/* .gallery
---------------------------------------------*/
/*
#home .gallery {
  text-align: center;
  p.read {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .type {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 30px;
    .box {
      margin: 0 5%;
      img {
        width: 200px;
        height: auto;
        border-radius: 50%;
        margin-bottom: 15px;
      }
      h3 {
        font-size: 2.1rem;
        margin-bottom: 15px;
      }
      p {
        font-size: 1.4rem;
        line-height: 1.6;
      }
    }
  }
  .slider {
    margin-bottom: 30px;
  }
  .btn {
    width: 80%;
    margin: 0 auto;
    a {
      display: block;
      text-align: center;
      padding: 10px 0;
      border: 1px solid $btn-border-color;
      transition: .8s;
    }
    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;
    }
    .type {
      display: flex;
      flex-direction: row;
      justify-content: center;
      margin-bottom: 50px;
      .box {
        margin-bottom: 0px;
        img {
          width: 200px;
          height: auto;
          border-radius: 50%;
        }
        h3 {
          margin-bottom: 20px;
        }
        p {
        }
      }
    }
    .slider {
    }
    .btn {
      width: 350px;
      margin: 0 auto;
      a {
      }
      a:hover {
      }
    }
  }
}
*/
/* .instagram
---------------------------------------------*/
#home .instagram {
  background-color: #f7f7f7;
}

.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%;
  }
}
/* .flow
---------------------------------------------*/
#home .flow {
  background-color: #f7f7f7;
}

/* .bl_flow
----------------------------------*/
.bl_flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-top: 30px;
}

.bl_flow_pict {
  width: 100%;
  padding: 7px;
  border: 1px solid #ccc;
  -webkit-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  min-height: 0%;
}

.bl_flow_txt {
  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";
  width: 100%;
}

.bl_flow_step {
  font-family: "Fredericka the Great", cursive;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 7px 10px;
  margin-bottom: 10px;
}

.bl_flow_ttl {
  font-size: 2.1rem;
  padding: 0 5px;
  margin-bottom: 10px;
}

.bl_flow_explain {
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 0 5px;
  margin-bottom: 10px;
}

.bl_flow_arrow {
  padding: 10px 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .bl_flow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 50px;
  }

  .bl_flow_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .bl_flow_pict {
    width: 48%;
    padding: 10px;
    margin-bottom: 0;
  }

  .bl_flow_txt {
    width: 48%;
  }

  .bl_flow_step {
    display: inline-block;
    width: auto;
    padding: 7px 40px;
    font-size: 2.4rem;
    margin-bottom: 15px;
  }

  .bl_flow_ttl {
    font-size: 3.4rem;
    margin-bottom: 15px;
  }

  .bl_flow_explain {
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 0;
  }

  .bl_flow_arrow {
    padding: 20px 0;
    text-align: center;
  }
}
/* .faq
---------------------------------------------*/
/* .bl_faq
----------------------------------*/
.bl_faq dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 1px dotted #000;
  padding: 10px 10px 7px;
}
.bl_faq dt span {
  content: "Q";
  font-family: "Fredericka the Great", cursive;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 3rem;
  margin-right: 10px;
  margin-top: -10px;
}
.bl_faq dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 0 15px;
  margin-bottom: 10px;
}
.bl_faq dd span {
  content: "A";
  font-family: "Fredericka the Great", cursive;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 3rem;
  margin-right: 10px;
}
.bl_faq dd p {
  padding-top: 10px;
}

@media screen and (min-width: 768px) {
  .bl_faq dt {
    font-size: 2.4rem;
    padding: 10px;
  }
  .bl_faq dt span {
    font-size: 3.2rem;
    margin-right: 15px;
  }
  .bl_faq dd {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .bl_faq dd span {
    font-size: 3.2rem;
    margin-right: 15px;
  }
  .bl_faq dd p {
    padding-top: 15px;
  }
}
/* .caution
---------------------------------------------*/
/* .bl_caution
----------------------------------*/
.bl_caution > dt {
  position: relative;
  font-size: 1.8rem;
  padding: 10px 15px;
  border: 1px solid #333;
  background-color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.bl_caution > dt:after {
  content: "";
  position: absolute;
  top: 7px;
  right: 20px;
  width: 15px;
  height: 15px;
  border: 2px solid;
  border-color: transparent transparent #565656 #565656;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.bl_caution > dt:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.bl_caution > dd {
  display: none;
}

.bl_caution.open > dt {
  background-color: rgba(0, 0, 0, 0.03);
}

.bl_caution.open > dt:after {
  top: 17px;
  border-color: #565656 #565656 transparent transparent;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.bl_caution_cont {
  padding: 10px 5px;
  margin-bottom: -20px;
}
.bl_caution_cont > dt {
  font-size: 1.8rem;
  padding: 10px;
  margin-bottom: 5px;
  border-bottom: 1px solid #000;
}
.bl_caution_cont > dd {
  padding: 10px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 1.8;
}
.bl_caution_cont ul {
  list-style: disc;
  padding-left: 2rem;
}

@media screen and (min-width: 768px) {
  .bl_caution > dt {
    font-size: 2.4rem;
    padding: 15px 30px;
  }
  .bl_caution > dt:after {
    top: 6px;
    right: 30px;
    width: 24px;
    height: 24px;
  }
  .bl_caution.open > dt:after {
    top: 24px;
  }

  .bl_caution_cont {
    padding: 15px 30px;
  }
  .bl_caution_cont > dt {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
/*---------------------------------------------
 #info
---------------------------------------------*/
/* .title
---------------------------------------------*/
#info .title {
  height: 180px;
  background-color: #f5f5f5;
  background-position: 50% 80%;
  background-size: cover;
}
#info .title .whiteBg {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#info .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;
}

@media screen and (min-width: 768px) {
  #info .title {
    height: 260px;
    background-position: 50% 80%;
  }
}
/* .contetns
---------------------------------------------*/
#info .contents {
  text-align: center;
}
#info .contents .inner {
  padding: 40px 20px;
}
#info .contents .news {
  margin-bottom: 25px;
}
#info .contents .news h2 {
  font-size: 2rem;
  border-bottom: 1px dotted #ccc;
  padding: 10px;
  margin-bottom: 10px;
  line-height: 1.4;
  text-align: left;
}
#info .contents .news p {
  line-height: 1.8;
  text-align: left;
  padding: 10px;
}
#info .contents .news strong {
  font-weight: bold;
}
#info .contents .news ul {
  line-height: 1.8;
  text-align: left;
  padding: 10px;
}
#info .contents .news .tar {
  text-align: right;
}
#info .contents .btn {
  width: 80%;
  margin: 0 auto;
}
#info .contents .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;
}
#info .contents .btn a:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.9);
}

@media screen and (min-width: 768px) {
  #info .contents .inner {
    padding: 80px 20px;
  }
  #info .contents .news {
    margin-bottom: 40px;
  }
  #info .contents .news h2 {
    font-size: 3rem;
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-align: center;
  }
  #info .contents .news .detail {
    width: 70%;
    margin: 0 auto;
  }
  #info .contents .news p {
    font-size: 1.8rem;
  }
  #info .contents .news ul {
    font-size: 1.8rem;
  }
  #info .contents .btn {
    width: 350px;
  }
}
/* お知らせ一覧 Information List
---------------------------------------------*/
/* .contetns
---------------------------------------------*/
#info .contents {
  text-align: center;
}
#info .contents .inner {
  padding: 40px 20px;
}
#info .contents .infoList h2 {
  font-size: 2rem;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 15px;
  line-height: 1.4;
}
#info .contents .infoList .news article {
  width: 100%;
}
#info .contents .infoList .news article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px dotted #ccc;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 15px 10px;
}
#info .contents .infoList .news article a .pict {
  width: 100px;
  height: auto;
  margin-right: 15px;
}
#info .contents .infoList .news article a .text {
  width: calc( 100% - 115px );
  text-align: left;
  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";
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  #info .contents .inner {
    padding: 80px 20px;
  }
  #info .contents .infoList h2 {
    font-size: 3rem;
    text-align: center;
  }
  #info .contents .infoList .news {
    margin-bottom: 50px;
  }
  #info .contents .infoList .news article a {
    padding: 20px;
    margin-bottom: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  #info .contents .infoList .news article a .pict {
    width: 120px;
  }
  #info .contents .infoList .news article a .text {
    width: calc( 100% - 135px );
  }
  #info .contents .infoList .news article a:hover {
    background-color: #f5f5f5;
    opacity: 0.8;
  }
}
/*---------------------------------------------
 #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 p {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  #artmake .reason h2 {
    line-height: 1;
  }
  #artmake .reason p {
    font-size: 1.8rem;
  }
}
/*
#artmake .reason {
  background-color: #edf8fa;
  h2 {
    line-height: 1.3;
  }
  .wrapper {
    margin: 0 10px;
    padding: 10px 0px;
    border: 1px solid $accent-color;
    border-top: none;
    h3 {
      position: relative;
      font-size: 4.375vw;
      font-weight: normal;
      @include ffSerif;
      top:-3.8vw;
      text-align: center;
      margin: 0 auto;
      padding: 0;
      display: flex;
      align-items: center;
    }
    h3:before,
    h3:after {
      border-top: 1px solid $accent-color;
      content: "";
      flex-grow: 1;
    }
    h3:before {
      margin-right: 1rem;
    }
    h3:after {
      margin-left: 1rem;
    }
    .boxset {
      width: 90%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      .box {
        width: 100%;
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 0%;//ie11
        .image {
          width: 40%;
        }
        .text {
          width: 55%;
          display: flex;
          flex-direction: column;
          h4 {
            font-size: 4.2vw;
            font-weight: normal;
            @include ffSerif;
            text-align: center;
            span {
              display: inline-block;
              position: relative;
              color: $arrmake-color;
              margin-top: 8px;
              font-size: 4.6vw;
              margin-bottom: 20px;
              padding-bottom: 5px;
            }
            span:before {
            	position: absolute;
            	content: '';
            	left: 0;
            	bottom: -5px;
            	width: 100%;
            	height: 4px;
            	border-top: 1px solid $arrmake-color;
            	border-bottom: 1px solid $arrmake-color;
            }
          }
        }
        p {
          font-size: 1.4rem;
          color: #333;
          line-height: 1.6;
          text-align: justify;
          text-justify: inter-ideograph;
        }
      }
      .box:not(:last-of-type) {
        border-bottom: 1px solid #b2b2b2;
      }
    }
  }
}

@media screen and (min-width: 768px) {
  #artmake .reason {
    h2 {
      line-height: 1;
    }
    .wrapper {
      margin-top: 45px;
      padding: 40px 0px;
      border: 1px solid $accent-color;
      border-top: none;
      h3 {
        position: relative;
        font-size: 3rem;
        font-weight: normal;
        @include ffSerif;
        top:-54px;
        text-align: center;
        margin: 0 auto;
        padding: 0;
        display: flex;
        align-items: center;
      }
      h3:before,
      h3:after {
        border-top: 1px solid $accent-color;
        content: "";
        flex-grow: 1;
      }
      h3:before {
        margin-right: 1rem;
      }
      h3:after {
        margin-left: 1rem;
      }
      .boxset {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        .box {
          width: 33%;
          padding: 10px 20px;
          display: flex;
          justify-content: flex-start;
          flex-direction: column;
          .image {
            width: 80%;
            min-height: 0%;//ie11
            margin-bottom: 20px;
          }
          .text {
            width: 85%;
            text-align: center;
            h4 {
              font-size: 2.8rem;
              font-weight: normal;
              @include ffSerif;
              span {
                display: inline-block;
                position: relative;
                color: $arrmake-color;
                margin-top: 15px;
                font-size: 2.8rem;
                margin-bottom: 30px;
                padding-bottom: 5px;
              }
              span:before {
              	position: absolute;
              	content: '';
              	left: 0;
              	bottom: -5px;
              	width: 100%;
              	height: 4px;
              	border-top: 1px solid $arrmake-color;
              	border-bottom: 1px solid $arrmake-color;
              }
            }
          }
          p {
            color: #333;
            line-height: 1.6;
            text-align: left;
          }
        }
        .box:not(:last-of-type) {
          border-bottom: none;
          border-right: 1px solid $arrmake-color;
        }
      }
    }
  }
}
*/
/* .parts
---------------------------------------------*/
#artmake .parts p {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  #artmake .parts p {
    font-size: 1.8rem;
  }
}
/* .bl_designUnit
----------------------------------*/
.bl_designUnit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
}

.bl_design {
  width: 95%;
  margin: 0 auto;
  padding: 20px 30px 30px;
  border-radius: 10px;
  border: 1px solid #b2b2b2;
  -webkit-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.bl_design_ttl {
  font-family: "Fredericka the Great", cursive;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 6.4vw;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  text-align: center;
  padding: 10px 0 30px;
}
.bl_design_ttl span {
  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: block;
  font-size: 1.6rem;
  margin-top: 5px;
}

.bl_design_pict {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.bl_design_catch {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.bl_design_txt {
  font-size: 1.4rem;
  line-height: 2;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .bl_designUnit {
    -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-top: 50px;
    margin-bottom: 50px;
  }

  .bl_design {
    width: 370px;
    padding: 30px 30px 40px;
    margin: 0;
  }

  .bl_design:first-child {
    margin-right: 5%;
  }

  .bl_design_ttl {
    font-size: 2.8rem;
    letter-spacing: 0.3rem;
  }
  .bl_design_ttl span {
    font-size: 1.6rem;
    margin-top: 10px;
  }

  .bl_design_catch {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .bl_design_txt {
    font-size: 1.4rem;
  }
}
/* .parts
---------------------------------------------*/
/*
#artmake .parts {
  .wrapper {
    .partsDetail {
      display: flex;
      text-align: left;
      margin-bottom: 30px;
      h3 {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        font-size: 1.2rem;
        span {
          font-size: 2.4rem;
          margin-right: 10px;
          font-weight: bold;
        }
      }
      p {
        line-height: 1.6;
        text-align: left;
      }
      figure {
        margin-right: 15px;
      }
      _:-ms-lang(x)::-ms-backdrop, img {
        width: 120px;
        height: auto;
      }
    }
  }
}

@media screen and (min-width: 768px) {
  #artmake .parts {
    .wrapper {
      display: flex;
      justify-content: space-between;
      .partsDetail {
        width: 30%;
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
        h3 {
          flex-direction: column;
          justify-content: center;
          font-size: 1.6rem;
          margin-bottom: 15px;
          line-height: 1.1;
          span {
            font-size: 3.2rem;
            margin-right: 0;
          }
        }
        figure {
          margin-right: 0;
          margin-bottom: 40px;
        }
        img {
          width: 150px;
        }
      }
    }
  }
}
*/
/* .price
---------------------------------------------*/
/*
#artmake .price {
  background-color: $common-bg-color-accent;

  .priceBtn {
    text-align: center;
    margin-bottom: 30px;
    a {
      position: relative;
      display: inline-block;
      background-color: $accent-bg-color;
      @include ffSerif;
      color: #fff;
      width: 80%;
      padding: 15px;
      border-radius: 30px;
      font-size: 2rem;
      text-decoration: none;
    }
    a:before {
    	display: block;
    	content: "";
    	position: absolute;
    	top: 50%;
    	right: 5%;
    	width: 0;
    	height: 0;
    	margin-top: -10px;
    	border: 10px solid transparent;
    	border-left: 10px solid #fff;
    }
    a:hover {
    }
  }
  .menuBox {
    padding: 0px 20px;
  }
  .menuBox .detail {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    border-top: 1px dotted #ccc;
    .head {
      display: flex;
      flex-direction: column;
      font-size: 2rem;
      line-height: 1.3;
      .price {
        span {
          font-size: 1.4rem;
        }
      }
    }
  }
  .menuBox .detail:last-of-type {
    border-bottom: 1px dotted #ccc;
  }
}


@media screen and (min-width: 768px) {
  #artmake .price {
    .priceBtn {
      margin-bottom: 50px;
      a {
        max-width: 600px;
        padding: 20px;
        border-radius: 40px;
        font-size: 2.6rem;
        transition: .3s;
      }
      a:before {
      	margin-top: -12px;
      	border: 12px solid transparent;
      	border-left: 12px solid #fff;
      }
      a:hover {
        opacity: 0.7;
      }
    }
    .menuBox .detail {
      margin: 0 auto;
      padding: 25px;
      .head {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        font-size: 2.4rem;
        line-height: 1.3;
        .price {
          text-align: right;
          span {
            font-size: 1.8rem;
          }
        }
      }
    }
  }
}
*/
/* .flow
---------------------------------------------*/
/*
#artmake .flow {
  .wrapper {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    .box {
      width: 70%;
      margin: 0 auto;
      min-height: 0%;//ie11
      &:not(:first-of-type) {
      }
      &:not(:last-of-type) {
      }
    }
    .arrow {
      text-align: center;
      margin: 25px 0;
    }
    .image {
      margin-bottom: 20px;
    }
    .flowTitle {
      color: #c94e1a;
      font-weight: bold;
      font-size: 5vw;
      text-align: center;
      margin-bottom: 10px;
    }
    p {
      font-size: 1.6rem;
      color: #333;
      line-height: 1.6;
      text-align: left;
    }
  }
}


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


@media screen and (min-width: 768px) {
  #artmake .faq {
    .wrapper {
      text-align: left;
      dl {
        dt {
          font-size: 2.1rem;
          span {
            font-size: 4rem;
            margin-right: 15px;
          }
        }
        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;
  }
}
#gallery h2 {
  font-family: "Fredericka the Great", cursive;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 6.4vw;
  line-height: 1.4;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.3rem;
  margin-bottom: 30px;
}
#gallery h2 span {
  display: block;
  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: 1.4rem;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  #gallery h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 40px;
  }
  #gallery h2 span {
    font-size: 1.8rem;
    margin-top: 15px;
  }
}
/* .contetns
---------------------------------------------*/
#gallery .contents {
  text-align: center;
}
#gallery .contents .inner {
  padding: 40px 20px 40px;
}
#gallery .instagram {
  width: 85%;
  height: auto;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  #gallery .contents .inner {
    padding: 80px 20px 80px;
  }
  #gallery .instagram {
    width: 500px;
  }
  #gallery .instagram a {
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
  }
  #gallery .instagram a:hover {
    opacity: 0.6;
  }
}
/* .bl_galleryUnit
----------------------------------*/
.bl_galleryUnit {
  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;
  margin-top: 30px;
  margin-bottom: 30px;
}

.bl_gallery {
  width: 48%;
  margin-bottom: 30px;
}

.bl_gallery_ttl {
  background-color: #000;
  font-size: 1.8rem;
  font-family: "Fredericka the Great", cursive;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  padding: 5px 10px;
  margin-bottom: 7px;
  font-weight: bold;
  text-align: left;
}

.bl_gallery_pict {
  margin-bottom: 10px;
}

.bl_gallery_voice {
  margin-bottom: 15px;
}

.bl_gallery_voice__ttl {
  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: 1.2rem;
  text-align: right;
  margin-bottom: 7px;
}

.bl_gallery_voice dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.2rem;
  line-height: 1.6;
}

.bl_gallery_voice dt {
  width: 20px;
  margin-right: 10px;
}

.bl_gallery_voice dd {
  position: relative;
  display: inline-block;
  width: calc(100% - 35px);
  background-color: #f7f7f7;
  padding: 7px 10px;
  border-radius: 5px;
  text-align: left;
}

.bl_gallery_voice dd::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f7f7f7 transparent transparent;
}

.bl_gallery_comment {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.bl_gallery_comment__ttl {
  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";
  margin-bottom: 7px;
  text-align: left;
}

.bl_gallery_comment dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  line-height: 1.6;
}

.bl_gallery_comment dt {
  width: 20px;
  margin-left: 10px;
}

.bl_gallery_comment dd {
  position: relative;
  display: inline-block;
  width: calc(100% - 35px);
  background-color: #f7f7f7;
  padding: 7px 10px;
  border-radius: 5px;
  text-align: left;
}

.bl_gallery_comment dd::before {
  content: "";
  position: absolute;
  top: 10px;
  right: -10px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f7f7f7;
}

.bl_gallery_price {
  border: 1px solid rgba(51, 51, 51, 0.3);
  padding: 7px 10px 10px;
  text-align: center;
  margin-bottom: 15px;
}

.bl_gallery_price__ttl {
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}
.bl_gallery_price__ttl span {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}

.bl_gallery_price_ex {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.bl_gallery_price_tax {
  font-size: 1.4rem;
}

.bl_gallery_price_note {
  padding-top: 6px;
  font-size: 1.4rem;
}

.bl_gallery_risk {
  background-color: #f7f7f7;
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 10px;
  margin-bottom: 15px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .bl_galleryUnit {
    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;
    margin-top: 50px;
  }

  .bl_gallery {
    width: 31%;
  }

  .bl_galleryUnit::after {
    content: "";
    display: block;
    width: 31%;
  }

  .bl_gallery_ttl {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }

  .bl_gallery_pict {
    margin-bottom: 15px;
  }

  .bl_gallery_voice {
    margin-bottom: 15px;
  }

  .bl_gallery_voice__ttl {
    font-size: 1.4rem;
  }

  .bl_gallery_voice dl {
    font-size: 1.4rem;
  }

  .bl_gallery_voice dt {
    width: 30px;
  }

  .bl_gallery_voice dd {
    width: calc(100% - 45px);
    padding: 10px 15px;
  }

  .bl_gallery_comment {
    font-size: 1.4rem;
  }

  .bl_gallery_comment dt {
    width: 30px;
  }

  .bl_gallery_comment dd {
    width: calc(100% - 45px);
    padding: 10px 15px;
  }

  .bl_gallery_price {
    padding: 10px 15px;
    margin-bottom: 15px;
  }

  .bl_gallery_price__ttl {
    font-size: 1.8rem;
  }
  .bl_gallery_price__ttl span {
    font-size: 1.6rem;
  }

  .bl_gallery_price_ex {
    font-size: 1.8rem;
    margin-bottom: 6px;
  }

  .bl_gallery_price_tax {
    font-size: 1.4rem;
  }

  .bl_gallery_price_note {
    padding-top: 6px;
    font-size: 1.6rem;
  }

  .bl_gallery_risk {
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 15px;
    margin-bottom: 15px;
  }
}
/*----------------------------------
  bl_typeSelect
----------------------------------*/
.bl_typeSelect {
  text-align: center;
}

.bl_typeSelect_txt {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.bl_typeSelect_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
.bl_typeSelect_button button {
  font-size: 1.4rem;
  width: 24%;
  padding: 10px 5px;
  border: 1px solid #999;
  background-color: #fff;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 5px;
}
.bl_typeSelect_button button.active {
  background-color: #000;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .bl_typeSelect_txt {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .bl_typeSelect_button button {
    font-size: 1.6rem;
    max-width: 150px;
    padding: 10px 10px;
    margin: 0 10px;
  }
}
/* .faq
---------------------------------------------*/
.faq .inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .faq .inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/* .caution
---------------------------------------------*/
.caution .inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .caution .inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/* .contetns
---------------------------------------------*/
/*
#gallery {
  .contents {
    text-align: center;
    .inner {
      padding: 70px 20px 40px;
    }

    h2 {
      display: inline-block;
      background-color: #fff;
      padding: 0 30px;
      font-size: 3rem;
      margin-bottom: 20px;
      font-weight: bold;
      span {
        display: block;
        margin-top: 5px;
        font-size: 1.2rem;
      }
    }

    .listBox {
      padding: 50px 20px 0px;
      border: 2px solid #ccc;
      position: relative;
      margin-bottom: 70px;
      .catch {
        position: absolute;
        display: inline-block;
        left: 0;
        right: 0;
        margin: auto;
        transform: translateY(-110%) ;
      }
      .list {
        margin-bottom: 0;
      }
    }

    .list ul {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      li {
        width: 49%;
        &::after {
          content: '';
          display: block;
          margin-bottom: 10px;//edge
        }
        img {
          border-radius: 10px;
        }
      }
      figcaption {
        margin-top: 10px;
      }
    }
    .mbMiddle {
      margin-bottom: 50px;
    }
  }
  .instagram {
    width: 85%;
    height: auto;
    margin: 0 auto;
  }
}
@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: 120px 20px 80px;
      }
      h2 {
        font-size: 4rem;
        span {
          font-size: 1.4rem;
        }
      }
      .listBox {
        padding: 70px 10% 0px;
        border: 2px solid #ccc;
        position: relative;
        margin-bottom: 120px;
        .catch {
          transform: translateY(-120%) ;
        }
      }
      .list {
        max-width: 1000px;
        margin: 0 auto;
      }
      .list ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 30px;
        li {
          width: 32%;
          &::after {
            margin-bottom: 20px;//edge
          }
        }
        li:not(:nth-of-type(3n)) {
          margin-right: calc((100% - 32% * 3) / 2);
        }
        li:last-of-type {
          margin-right: 0;
        }
      }
      .list.col4 {
        li {
          width: 24%;
          margin-bottom: 20px;//edge
        }
        li:not(:nth-of-type(4n)) {
          margin-right: calc((100% - 24% * 4) / 3);
        }
        li:nth-of-type(4n) {
          margin-right: 0;
        }
      }
      .mbMiddle {
        margin-bottom: 100px;
      }
    }
    .instagram {
      width: 500px;
      a {
        transition: .8s;
      }
      a:hover {
        opacity: 0.6;
      }
    }
  }
}
*/
/* PhotoSwipe
---------------------------------------------*/
/*
#gallery {
  .pswp__bg {
    background-color: #fff;
    //background-color: #f2f2f2;
  }
  .pswp__caption__center {
    text-align: center;
    font-size: 1.6rem;
  }
}
*/
/*---------------------------------------------
 #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;
}

@media screen and (min-width: 768px) {
  #price .title {
    height: 260px;
    background-position: 50% 80%;
  }
}
/* .contetns
---------------------------------------------*/
#price .contents {
  text-align: center;
}
#price .contents .inner {
  padding: 40px 20px 40px;
}
#price .contents .inner section:not(:last-of-type) {
  margin-bottom: 20%;
}
#price .contents ul.pageLink {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#price .contents ul.pageLink li {
  font-size: 1.6rem;
  padding: 0 1rem;
  margin-bottom: 1rem;
}
#price .contents ul.pageLink li + li {
  border-left: 1px solid #999;
}
#price .contents ul.pageLink a:hover {
  opacity: 0.7;
}
#price .contents .attention {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 50px;
}
#price .contents .anchor {
  padding-top: 40px;
  margin-top: -40px;
}
#price .contents .menuBox {
  padding: 50px 20px 20px;
  border: 2px solid #ccc;
  position: relative;
}
#price .contents .menuBox .catch {
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-110%);
      -ms-transform: translateY(-110%);
          transform: translateY(-110%);
}
#price .contents .menuBox.care {
  margin-top: -30px;
  padding: 40px 20px 30px;
  margin-bottom: 0px;
}
#price .contents h2 {
  display: inline-block;
  background-color: #fff;
  padding: 0 30px;
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
}
#price .contents h2 span {
  display: block;
  margin-top: 5px;
  font-size: 1.2rem;
}
#price .contents table {
  margin-bottom: 20px;
  width: 100%;
}
#price .contents table thead {
  color: #fff;
}
#price .contents table thead th {
  font-weight: normal;
  padding: 8px 0;
  font-size: 1.6rem;
}
#price .contents table tbody tr {
  border-bottom: 1px solid #b2b2b2;
}
#price .contents table tbody th, #price .contents table tbody td {
  width: 50%;
  padding: 10px 0;
  font-size: 1.6rem;
}
#price .contents table tbody th {
  font-weight: normal;
  font-size: 1.4rem;
  background-color: #f5f5f5;
}
#price .contents table tbody td {
  font-size: 1.8rem;
}
#price .contents table tbody td span {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.2rem;
}
#price .contents table tbody td span.el_inline {
  display: inline;
}
#price .contents table tbody td.option {
  font-size: 1.4rem;
  line-height: 1.3;
}
#price .contents table tbody td.option span {
  font-size: 1rem;
}
#price .contents table.eyebrow thead,
#price .contents table.common thead {
  background-color: #999;
}
#price .contents table.eyeline thead {
  background-color: #ccbc91;
}
#price .contents table.lip thead {
  background-color: #d9aacd;
}
#price .contents table:not(:first-of-type) {
  margin-top: 30px;
}
#price .contents p.note {
  font-size: 1.4rem;
  line-height: 1.6;
}
#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: 80px 20px 80px;
  }
  #price .contents .inner section:not(:last-of-type) {
    margin-bottom: 150px;
  }
  #price .contents ul.pageLink {
    margin-bottom: 20px;
  }
  #price .contents ul.pageLink li {
    padding: 0 1.5rem;
    font-size: 2.4rem;
  }
  #price .contents ul.pageLink + ul {
    margin-bottom: 10px;
  }
  #price .contents .attention {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 70px;
  }
  #price .contents .anchor {
    display: block;
    padding-top: 60px;
    margin-top: -60px;
  }
  #price .contents .menuBox {
    padding: 70px 10% 30px;
    border: 2px solid #ccc;
    position: relative;
  }
  #price .contents .menuBox .catch {
    -webkit-transform: translateY(-120%);
        -ms-transform: translateY(-120%);
            transform: translateY(-120%);
  }
  #price .contents .menuBox.care {
    margin-top: -50px;
    padding: 60px 10% 40px;
  }
  #price .contents h2 {
    font-size: 4rem;
  }
  #price .contents h2 span {
    font-size: 1.4rem;
  }
  #price .contents table thead th {
    padding: 12px 0;
    font-size: 2.4rem;
  }
  #price .contents table tbody th, #price .contents table tbody td {
    width: 50%;
    padding: 15px 0;
  }
  #price .contents table tbody th {
    font-size: 2rem;
  }
  #price .contents table tbody td {
    font-size: 3rem;
  }
  #price .contents table tbody td span {
    font-size: 1.6rem;
  }
  #price .contents table tbody td.option {
    font-size: 2rem;
  }
  #price .contents table tbody td.option span {
    margin-left: 0;
    font-size: 1.4rem;
  }
  #price .contents table:not(:first-of-type) {
    margin-top: 50px;
  }
  #price .contents p.note {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  #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%;
  }
}
/*---------------------------------------------
 #privacy
---------------------------------------------*/
/* .title
---------------------------------------------*/
#privacy .title {
  height: 180px;
  background-color: #f5f5f5;
  background-position: 50% 80%;
  background-size: cover;
}
#privacy .title .whiteBg {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#privacy .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;
}

@media screen and (min-width: 768px) {
  #privacy .title {
    height: 260px;
    background-position: 50% 80%;
  }
}
/* .contetns
---------------------------------------------*/
#privacy .contents .inner {
  padding: 40px 20px;
}
#privacy .contents h2 {
  font-size: 2.4rem;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 15px;
  margin-bottom: 2rem;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#privacy .contents p {
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 10px 1rem;
  margin-bottom: 2rem;
}
#privacy .contents dl {
  padding: 0 1rem;
  font-size: 1.4rem;
}
#privacy .contents dl dt {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
}
#privacy .contents dl dd {
  margin-bottom: 3rem;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  #privacy .contents .inner {
    padding: 80px 20px;
  }
  #privacy .contents h2 {
    font-size: 3rem;
  }
  #privacy .contents p {
    font-size: 1.6rem;
    padding: 10px 3rem;
  }
  #privacy .contents dl {
    padding: 0 3rem;
    font-size: 1.6rem;
  }
  #privacy .contents dl dt {
    font-size: 1.8rem;
  }
}
/*# sourceMappingURL=style.css.map */