@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
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;
  font-weight: normal;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

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

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

a {
  color: #aa2031;
  border: none;
  text-decoration: none;
}

a:hover {
  color: #ff4c4c;
  text-decoration: underline;
}

ol, ul {
  list-style: none;
}

img, video, iframe {
  max-width: 100%;
}

img {
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 500;
}

blockquote,
q {
  quotes: none;
}

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

hr {
  display: block;
  height: 0;
  margin: 0 0 1em;
  padding: 0;
  font-size: 1em;
  line-height: 0;
  border: 0;
  -webkit-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

a, area, button, [role="button"], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button {
  border: none;
  background: none;
}

button:hover, button:active, button:focus {
  outline: none;
}

button:active, button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
/* 共通見出し */
.main-heading {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: .75rem 0 1rem 45px;
  font-weight: 500;
  line-height: 1.3;
  font-size: 1.4em;
  border-bottom: 2px solid #aa2031;
}

@media screen and (min-width: 768px), print {
  .main-heading {
    margin-bottom: 2rem;
    padding: 1rem 0 1rem 60px;
    font-size: 1.7em;
  }
}

@media screen and (min-width: 1100px), print {
  .main-heading {
    margin-bottom: 2.5rem;
    font-size: 2.0em;
    border-bottom-width: 4px;
  }
}

.main-heading::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url(../img/base/flower_red.svg) center no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  .main-heading::before {
    width: 54px;
    height: 54px;
  }
}

.main-heading-secondary {
  margin-bottom: 1rem;
  padding: .75rem 0 .75rem 45px;
  font-size: 1.2em;
  color: #cc571f;
  border-bottom: 2px dotted #cc571f;
}

@media screen and (min-width: 768px), print {
  .main-heading-secondary {
    font-size: 1.4em;
  }
}

@media screen and (min-width: 1100px), print {
  .main-heading-secondary {
    padding-top: .5rem;
    font-size: 1.6em;
  }
}

.main-heading-secondary::before {
  width: 36px;
  height: 36px;
  background-image: url(../img/base/flower_org.svg);
}

@media screen and (min-width: 1100px), print {
  .main-heading-secondary::before {
    width: 40px;
    height: 40px;
  }
}

/* 共通見出し h3相当*/
.main-subheading {
  color: #cc571f;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  padding-left: .5em;
  border-left: 10px solid #cc571f;
  margin-bottom: .8em;
}

@media screen and (min-width: 640px), print {
  .main-subheading {
    font-size: 2.4rem;
    border-left: 16px solid #cc571f;
    margin-bottom: 1.5em;
  }
}

/* 共通リスト */
.main ul > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.5;
  list-style-type: none;
}

.main ul > li::before {
  content: "";
  display: block;
  position: absolute;
  top: .5em;
  left: .5em;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #ccc;
}

.main ul.list-style-none > li {
  padding-left: 0;
}

.main ul.list-style-none > li::before {
  display: none;
}

.main ul.list-style-note > li {
  padding-left: 1em;
}

.main ul.list-style-note > li::before {
  content: "※";
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

.main ul.list-style-gutter li:not(:last-child) {
  margin-bottom: .3em;
}

.main ul.list-style-secondary > li {
  color: #8c2300;
}

.main ul.list-style-secondary > li::before {
  background: #8c2300;
}

.main ol > li {
  margin-left: 1.5em;
  line-height: 1.5;
  list-style-type: decimal;
}

.main ol.list-style-none > li {
  margin-left: 0;
  list-style-type: none;
}

.main ol.list-style-gutter li:not(:last-child) {
  margin-bottom: .3em;
}

/* 注釈（※）用インデント */
.note {
  margin-left: 1em;
  text-indent: -1em;
}

/* 共通リンクボタン */
.more {
  margin-top: 1.5em;
  text-align: center;
}

.link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: .25em 1em .25em 2.5em;
  color: #fff;
  line-height: 1.5;
  font-size: .95em;
  text-align: left;
  border-radius: 10em;
  border: 1px solid #aa2031;
  background-color: #aa2031;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
}

.link-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: .75em;
  width: 1em;
  height: 1em;
  margin: auto;
  background: url(../img/base/more_wht.svg) center no-repeat;
  background-size: cover;
}

.link-button-secondary {
  position: relative;
  display: inline-block;
  max-width: 444px;
  width: 100%;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  background-color: #aa2031;
  border-radius: 10em;
  text-align: center;
  padding: .35em 1.45em .35em 2.3em;
  border: 2px solid #aa2031;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (max-width: 479.98px) {
  .link-button-secondary {
    font-size: 2rem;
    padding: .35em 1.4em .35em 2.5em;
  }
}

.link-button-secondary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 44px;
  height: 40px;
  background: url("../img/base/flower_wht.svg") no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 639.98px) {
  .link-button-secondary::before {
    width: 35px;
    height: 33px;
  }
}

.link-button-secondary:hover {
  text-decoration: none;
  color: #aa2031;
  background-color: #fff;
  border: 2px solid #aa2031;
}

.link-button-secondary:hover::before {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background: url("../img/base/flower_red.svg") no-repeat center;
  background-size: cover;
}

@media screen and (min-width: 640px), print {
  .link-button-secondary {
    font-size: 3.2rem;
  }
}

/* 共通リンクボタン（ホバー）*/
a.link-button:hover {
  color: #fff;
  border-color: #ff4c4c;
  background-color: #ff4c4c;
  text-decoration: none;
}

/* 電話発信用リンク */
a.tel-link-wht {
  color: #fff;
}

a.tel-link-wht:hover {
  color: #fff;
}

a.tel-link-blk {
  color: #151515;
}

a.tel-link-blk:hover {
  color: #151515;
}

/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.inner::after {
  content: "";
  display: table;
  clear: both;
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}

.anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -110px;
  margin-bottom: 111px;
  background: transparent;
  z-index: -100;
}

/* 共通テーブル */
.table-style {
  display: block;
}

.table-style tbody {
  display: block;
  line-height: 1.5;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

@media screen and (max-width: 639.98px) {
  .table-style tbody {
    border: none;
  }
}

.table-style tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 639.98px) {
  .table-style tr {
    display: block;
    border: 1px solid #ddd;
  }
  .table-style tr:not(:last-child) {
    margin-bottom: 5px;
  }
}

.table-style th {
  width: 15em;
  padding: .75em 1em;
  background-color: #ddd;
  border-right: 1px solid #ddd;
}

@media screen and (max-width: 639.98px) {
  .table-style th {
    display: block;
    width: auto;
    padding: .5em;
    font-size: 1.1em;
    border-right: none;
  }
}

.table-style td {
  padding: .75em 1em;
  border-right: 1px solid #ddd;
}

@media screen and (max-width: 639.98px) {
  .table-style td {
    display: block;
    padding: .5em .5em .5em .7em;
    font-size: .95em;
    border-right: none;
  }
}

.table-style .tel-link {
  color: #151515;
}

.table-style a.tel-link {
  color: #151515;
}

.table-style a.tel-link:hover {
  color: #ff4c4c;
}

/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 320px;
  color: #151515;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  background-color: #fff;
}

html.nav-open,
html.contact-open {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}

/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  padding-bottom: 60px;
  overflow: hidden;
}

@media screen and (min-width: 1100px), print {
  .wrapper {
    padding-bottom: 0;
    overflow: visible;
  }
}

/* --------------------------------

  header

-------------------------------- */
.header {
  padding-top: 60px;
}

@media screen and (min-width: 1100px), print {
  .header {
    padding-top: 140px;
  }
}

@media screen and (min-width: 1100px), print {
  #top .header {
    padding-top: 0;
  }
}

.header .inner {
  position: static;
  max-width: none;
  z-index: auto;
}

@media screen and (min-width: 1100px), print {
  .header .inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 0 1em;
    z-index: 1010;
  }
}

@media screen and (min-width: 1100px), print {
  #top .header .inner {
    top: 602px;
  }
}

.header-logo {
  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;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  font-size: 100%;
  background-color: #fff;
  z-index: 900;
}

@media screen and (max-width: 1099.98px) {
  .contact-open .header-logo {
    padding-left: 1em;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    z-index: 980;
  }
}

@media screen and (min-width: 1100px), print {
  .header-logo {
    display: block;
    position: relative;
    max-width: 1100px;
    height: auto;
    margin: auto;
    background: none;
    z-index: auto;
  }
}

.header-logo .site-description {
  display: none;
  font-size: 100%;
}

@media screen and (min-width: 1100px), print {
  .header-logo .site-description {
    display: block;
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    text-align: center;
  }
}

.header-logo .site-description span {
  display: block;
  font-size: .9em;
}

.header-logo .site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 134px;
  height: 100%;
  font-size: 100%;
}

@media screen and (min-width: 1100px), print {
  .header-logo .site-logo {
    display: block;
    position: absolute;
    top: 26px;
    left: 0;
    width: 244px;
    height: auto;
  }
}

.header-logo .site-logo a {
  position: relative;
  padding-bottom: .75em;
}

@media screen and (min-width: 1100px), print {
  .header-logo .site-logo a {
    padding-bottom: .85em;
  }
}

.header-logo .site-logo span {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-left: 30px;
  color: #aaa;
  font-size: .75em;
  text-align: center;
}

@media screen and (max-width: 1099.98px) {
  .header-logo .site-logo span {
    padding-left: 0;
    font-size: .6em;
  }
}

.header-logo a,
.header-logo img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1099.98px) {
  .header-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    z-index: 960;
  }
  .contact-open .header-content {
    height: 100%;
    padding: 60px 0;
    pointer-events: auto;
    opacity: 1;
  }
}

@media screen and (min-width: 1100px), print {
  .header-content {
    position: relative;
    max-width: 1100px;
    margin: auto;
  }
}

@media screen and (max-width: 1099.98px) {
  .header-content-inner {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    margin: auto;
    max-height: 8.5em;
    padding: 2em 0;
    background-color: #fff;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 767.98px) {
  .header-content-inner {
    max-height: 12em;
  }
}

@media screen and (min-width: 1100px), print {
  .header-contact {
    display: block;
    position: absolute;
    top: 25px;
    right: 0;
  }
}

/* スクロール時固定用 */
@media screen and (max-width: 1099.98px) {
  .header.fixed .header-logo {
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  }
  .header.fixed .header-logo.hide {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media screen and (min-width: 1100px) {
  .header.fixed .inner {
    position: fixed;
    top: -60px;
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
  }
  #top .header.fixed .inner {
    position: fixed;
    top: -60px;
  }
  .header.fixed .header-logo .site-logo,
  #top .header.fixed .header-logo .site-logo {
    top: 5px;
  }
  .header.fixed .header-logo .site-description,
  #top .header.fixed .header-logo .site-description {
    display: none;
  }
}

/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
  position: fixed;
  top: 0;
  left: -290px;
  width: 290px;
  height: 100%;
  z-index: 1000;
}

@media screen and (max-width: 1099.98px) {
  .nav {
    -webkit-transition-property: left;
    transition-property: left;
    -webkit-transition-duration: .3s;
            transition-duration: .3s;
  }
}

@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    top: -72px;
    left: auto;
    width: 100%;
    height: auto;
  }
  #top .nav {
    top: 530px;
  }
}

.nav-open .nav {
  left: 0;
}

@media screen and (min-width: 1100px), print {
  .nav-open .nav {
    left: auto;
  }
}

.contact-open .nav {
  z-index: 920;
}

.nav .inner {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  padding: 0 0 60px;
  background-color: #fff;
  z-index: 1;
}

@media screen and (min-width: 1100px), print {
  .nav .inner {
    padding: 0 1em;
  }
  .nav .inner::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background-color: #f4f1ec;
  }
  .nav .inner::after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    height: 38px;
    background: url(../img/base/border.png) repeat-x top;
  }
}

.nav .nav-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 1100px), print {
  .nav .nav-container {
    max-width: 1100px;
    margin: auto;
    padding: 72px 0 0 265px;
    overflow: visible;
  }
}

/* メインナビ */
.main-nav {
  padding: 70px 10px 30px;
}

@media screen and (max-width: 1099.98px) {
  .main-nav {
    opacity: 0;
  }
  .nav-open .main-nav {
    opacity: 1;
  }
}

@media screen and (min-width: 1100px), print {
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 0;
  }
  .main-nav::before, .main-nav::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5px;
    height: 70%;
    margin: auto;
    background-color: #f4f1ec;
  }
  .main-nav::before {
    left: 0;
  }
  .main-nav::after {
    right: 0;
  }
}

.main-nav .nav-item {
  position: relative;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

.main-nav .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 50px;
  padding: 0 0 0 50px;
  color: #151515;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link {
    height: 140px;
    padding: 10px 5px 0 0;
    text-align: center;
  }
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -5px;
    width: 5px;
    height: 70%;
    margin: auto;
    background-color: #f4f1ec;
  }
}

.main-nav .nav-link:hover {
  color: #ff4c4c;
  text-decoration: none;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link:hover {
    color: #fff;
    background-color: #aa2031;
    z-index: 20;
  }
}

.main-nav .nav-link:hover::before {
  height: 100%;
  background-color: #aa2031;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
    position: relative;
    width: 100%;
    height: 3em;
    margin-top: 45px;
  }
}

.main-nav .nav-title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-title::before {
    top: -45px;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 50px;
  }
}

.main-nav .nav-title span {
  font-weight: 500;
  font-size: 1.05em;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-title span {
    display: block;
    width: 100%;
    line-height: 1.0;
    font-size: .90em;
  }
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-home {
    display: none;
  }
}

.main-nav .nav-home .nav-title::before {
  background-size: auto 72%;
  background-image: url(../img/base/home_red.svg);
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-home .nav-link:hover .nav-title::before {
    background-image: url(../img/base/home_wht.svg);
  }
}

.main-nav .nav-news .nav-title::before {
  background-size: auto 74%;
  background-image: url(../img/base/balloon_red.svg);
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-news .nav-link {
    padding-left: 5px;
  }
  .main-nav .nav-news .nav-link::before {
    display: none;
  }
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-news .nav-link:hover .nav-title::before {
    background-image: url(../img/base/balloon_wht.svg);
  }
}

.main-nav .nav-greeting .nav-title::before {
  background-size: auto 80%;
  background-image: url(../img/base/flower_red.svg);
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-greeting .nav-link:hover .nav-title::before {
    background-image: url(../img/base/flower_wht.svg);
  }
}

.main-nav .nav-studio .nav-title::before {
  background-size: auto 84%;
  background-image: url(../img/base/hula_red.svg);
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-studio .nav-link:hover .nav-title::before {
    background-image: url(../img/base/hula_wht.svg);
  }
}

.main-nav .nav-circle .nav-title::before {
  background-size: auto 84%;
  background-image: url(../img/base/ukulele_red.svg);
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-circle .nav-link:hover .nav-title::before {
    background-image: url(../img/base/ukulele_wht.svg);
  }
  .main-nav .nav-circle .sub-nav-button:hover + .nav-link .nav-title::before {
    background-image: url(../img/base/ukulele_wht.svg);
  }
  .main-nav .nav-circle.sub-nav-active .sub-nav-button + .nav-link .nav-title::before {
    background-image: url(../img/base/ukulele_wht.svg);
  }
  .main-nav .nav-circle.sub-nav-active .sub-nav-button:hover + .nav-link .nav-title::before {
    background-image: url(../img/base/ukulele_wht.svg);
  }
}

.main-nav .nav-schedule .nav-title::before {
  background-size: auto 70%;
  background-image: url(../img/base/calendar_red.svg);
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-schedule .nav-link:hover .nav-title::before {
    background-image: url(../img/base/calendar_wht.svg);
  }
}

.main-nav .nav-offer .nav-title::before {
  background-size: auto 100%;
  background-image: url(../img/base/palm_red.svg);
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-offer .nav-link:hover .nav-title::before {
    background-image: url(../img/base/palm_wht.svg);
  }
}

.main-nav .nav-staff .nav-title::before {
  background-size: auto 100%;
  background-image: url(../img/base/user_red.svg);
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-staff .nav-link:hover .nav-title::before {
    background-image: url(../img/base/user_wht.svg);
  }
}

.main-nav .nav-access .nav-title::before {
  background-size: auto 80%;
  background-image: url(../img/base/pin_red.svg);
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-access .nav-link:hover .nav-title::before {
    background-image: url(../img/base/pin_wht.svg);
  }
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-contact {
    display: none;
  }
}

.main-nav .nav-contact .nav-title::before {
  background-size: auto 80%;
  background-image: url(../img/base/mail_red.svg);
}

/* ドロップダウンナビ */
.sub-nav {
  pointer-events: none;
  opacity: 0;
}

@media screen and (max-width: 1099.98px) {
  .sub-nav {
    height: 0;
    overflow: hidden;
  }
}

@media screen and (min-width: 1100px), print {
  .sub-nav {
    position: absolute;
    top: 50%;
    left: -80%;
    width: 260%;
    z-index: 10;
    -webkit-transition-property: top, opacity;
    transition-property: top, opacity;
    -webkit-transition-duration: .2s;
            transition-duration: .2s;
  }
}

.sub-nav-active .sub-nav {
  pointer-events: auto;
  opacity: 1;
}

@media screen and (max-width: 1099.98px) {
  .sub-nav-active .sub-nav {
    height: auto;
    overflow: visible;
  }
}

@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav {
    top: 100%;
  }
}

.sub-nav-inner {
  position: relative;
  margin-top: 5px;
  border: 2px solid #aa2031;
  background-color: #fff;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-inner {
    margin-top: 15px;
    padding: 0;
    border-width: 5px;
  }
}

.sub-nav-items li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.sub-nav-items a {
  display: block;
  position: relative;
  padding: .75em 0 .75em 2.5em;
  color: #151515;
  line-height: 1.2;
}

.sub-nav-items a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1em;
  width: 1em;
  height: 1em;
  margin: auto;
  background: url(../img/base/nav_red.svg) center no-repeat;
  background-size: cover;
}

.sub-nav-items a:hover {
  color: #ff4c4c;
  text-decoration: none;
}

.sub-nav-items a:hover::before {
  background-image: url(../img/base/nav_org.svg);
}

/* ドロップダウンナビボタン */
.sub-nav-button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-button {
    position: relative;
    width: 100%;
    height: 140px;
    margin-bottom: -140px;
    background: none;
    z-index: 30;
  }
}

.sub-nav-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  left: auto;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media screen and (min-width: 1100px), print {
  .sub-nav-button::after {
    top: auto;
    right: 3px;
    bottom: 8%;
    left: 0;
    border-color: #ece7df;
  }
}

@media screen and (min-width: 1100px), print {
  .sub-nav-button:hover:after {
    border-color: #fff;
  }
}

.sub-nav-active .sub-nav-button {
  width: 50px;
  background-color: #aa2031;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav-button {
    width: 100%;
    background: none;
  }
}

.sub-nav-active .sub-nav-button::after {
  bottom: -8px;
  border-color: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav-button::after {
    bottom: 5%;
  }
}

/* ドロップダウンナビボタン（ hover ）*/
@media screen and (max-width: 1099.98px) {
  .sub-nav-button:hover + .nav-link,
  .sub-nav-active .sub-nav-button:hover + .nav-link {
    color: #ff4c4c;
  }
}

@media screen and (min-width: 1100px), print {
  .sub-nav-button:hover + .nav-link,
  .sub-nav-active .sub-nav-button:hover + .nav-link {
    color: #fff;
    background-color: #aa2031;
    z-index: 10;
  }
  .sub-nav-button:hover + .nav-link::before,
  .sub-nav-active .sub-nav-button:hover + .nav-link::before {
    height: 100%;
    background-color: #aa2031;
  }
}

/* ドロップダウンナビボタン（ active ）*/
@media screen and (max-width: 1099.98px) {
  .sub-nav-active .sub-nav-button + .nav-link {
    color: #ff4c4c;
  }
}

@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav-button + .nav-link {
    color: #fff;
    background-color: #aa2031;
    z-index: 20;
  }
  .sub-nav-active .sub-nav-button + .nav-link::before {
    height: 100%;
    background-color: #aa2031;
  }
}

/* ナビゲーション開閉ボタン */
.nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  background-color: #fff;
  cursor: pointer;
  z-index: 910;
}

@media screen and (min-width: 1100px), print {
  .nav-button {
    display: none;
  }
}

.nav-button:hover {
  background-color: #fff;
}

.nav-open .nav-button {
  display: none;
}

.nav-button-icon {
  display: block;
  position: absolute;
  top: -14px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  margin: auto;
  background-color: #151515;
}

.nav-button-icon::before, .nav-button-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #151515;
}

.nav-button-icon::before {
  margin-top: -8px;
}

.nav-button-icon::after {
  margin-top: 8px;
}

.nav-button::after {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  color: #151515;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  background-color: #fff;
  cursor: pointer;
  z-index: 10;
}

@media screen and (min-width: 1100px), print {
  .nav-close-button {
    display: none;
  }
}

.nav-close-button:hover {
  background-color: #fff;
}

.nav-close-button .nav-button-icon {
  background: none;
}

.nav-close-button .nav-button-icon::before, .nav-close-button .nav-button-icon::after {
  margin-top: 0;
  background-color: #aa2031;
}

.nav-close-button .nav-button-icon::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-close-button .nav-button-icon::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav-close-button::after {
  content: "CLOSE";
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  color: #aa2031;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

/* ナビゲーション背景 */
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}

.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: auto;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
}

.nav-open .nav-screen-overlay {
  pointer-events: auto;
  opacity: .4;
  cursor: pointer;
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .nav.fixed {
    position: fixed;
    top: -60px;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
  }
  #top .nav.fixed {
    top: -60px;
  }
  .nav.fixed .inner::before, .nav.fixed .inner::after {
    display: none;
  }
  .nav.fixed .nav-container {
    padding-top: 0;
  }
  .nav.fixed .main-nav .nav-link {
    height: 100px;
    padding-top: 0;
  }
  .nav.fixed .main-nav .nav-title {
    margin-top: 35px;
    font-size: .9em;
  }
  .nav.fixed .main-nav .nav-title::before {
    top: -30px;
    height: 35px;
  }
  .nav.fixed .sub-nav-button {
    height: 100px;
    margin-bottom: -100px;
  }
}

/* --------------------------------

  main

-------------------------------- */
.main {
  display: block;
  position: relative;
  padding: 5em 1em 0;
  background: #fff;
  overflow: hidden;
  z-index: 100;
}

#top .main {
  padding: 0 1em;
}

@media screen and (min-width: 1100px), print {
  .main {
    padding: 5em 2em 0;
    overflow: visible;
  }
  #top .main {
    padding: 0 2em;
  }
}

.main > .inner {
  max-width: none;
}

/* --------------------------------

  footer

-------------------------------- */
.footer {
  display: block;
  position: relative;
  padding: 0 1em;
  background-color: #fff;
  overflow: hidden;
  z-index: 100;
}

@media screen and (min-width: 1100px), print {
  .footer {
    padding: 0 2em;
  }
}

.footer-container {
  padding: 1.5em 0;
}

@media screen and (min-width: 1100px), print {
  .footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer-main {
  margin-bottom: 1em;
}

@media screen and (min-width: 1100px), print {
  .footer-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .footer-side {
    width: 31.5em;
  }
}

@media screen and (min-width: 1280px), print {
  .footer-side {
    width: 33.5em;
  }
}

.footer-logo {
  margin-bottom: 1em;
}

@media screen and (min-width: 1100px), print {
  .footer-logo {
    margin-bottom: 0;
    padding-right: 1em;
  }
}

.footer-logo .site-logo {
  position: relative;
  padding: 0 0 .85em;
  text-align: center;
}

.footer-logo .site-logo span {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-left: 30px;
  color: #aaa;
  font-size: .75em;
  text-align: center;
}

.footer-info dl {
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .footer-info dl {
    text-align: left;
  }
}

.footer-info dt {
  margin-bottom: .35rem;
  font-weight: 700;
  font-size: 1.2em;
  color: #aa2031;
}

.footer-info dd {
  font-weight: 500;
  font-size: .9em;
}

.footer-info .tel-link {
  font-weight: 500;
  color: #151515;
}

.footer-info a.tel-link {
  color: #151515;
}

.footer-info a.tel-link:hover {
  color: #aa2031;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 576px), print {
  .footer-nav {
    display: block;
    position: relative;
    left: 2em;
    max-width: 480px;
    margin: auto;
  }
}

@media screen and (min-width: 1100px), print {
  .footer-nav {
    left: auto;
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

@media screen and (min-width: 576px), print {
  .footer-nav .nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 1100px), print {
  .footer-nav .nav-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 120px;
  }
}

@media screen and (min-width: 576px), print {
  .footer-nav .nav-item {
    width: 50%;
  }
}

@media screen and (min-width: 1100px), print {
  .footer-nav .nav-item {
    width: auto;
  }
}

.footer-nav .nav-link {
  display: block;
  position: relative;
  padding: .5em .5em .5em 24px;
  font-weight: 500;
  font-size: .95em;
  line-height: 1.3;
  color: #151515;
}

@media screen and (min-width: 1100px), print {
  .footer-nav .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 30px;
    padding: 0 0 0 24px;
    font-size: .9em;
  }
}

.footer-nav .nav-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  width: 14px;
  height: 14px;
  margin: auto;
  background: url(../img/base/nav_red.svg) center no-repeat;
  background-size: cover;
}

.footer-nav .nav-link:hover {
  color: #ff4c4c;
  text-decoration: none;
}

.footer-nav .nav-link:hover::before {
  background-image: url(../img/base/nav_org.svg);
}

.footer .pagetop {
  display: block;
  position: fixed;
  right: 5px;
  bottom: 65px;
  width: 45px;
  height: 45px;
  text-align: center;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

@media screen and (min-width: 768px), print {
  .footer .pagetop {
    right: 10px;
    bottom: 70px;
    width: 50px;
    height: 50px;
  }
}

@media screen and (min-width: 1100px), print {
  .footer .pagetop {
    right: 10px;
    bottom: 10px;
  }
}

.footer .pagetop.fixed {
  opacity: 1;
  pointer-events: auto;
}

.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  border-radius: .5rem;
  background-color: #aa2031;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
}

.footer .pagetop a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #ff4c4c;
}

.footer .pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: .5em;
  right: 0;
  bottom: 0;
  left: 0;
  width: .8em;
  height: .8em;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.footer .copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 55px;
  margin: 38px -1em 0;
  padding: 0 1em;
  background-color: #fff;
}

@media screen and (min-width: 768px), print {
  .footer .copy {
    height: 70px;
  }
}

@media screen and (min-width: 1100px), print {
  .footer .copy {
    margin: 38px -2em 0;
    padding: 0 2em;
  }
}

.footer .copy::before {
  content: "";
  display: block;
  position: absolute;
  top: -38px;
  left: 0;
  width: 100%;
  height: 38px;
  background: url(../img/base/border.png) repeat-x top;
}

.footer .copy small {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: .9em;
  text-align: center;
  letter-spacing: .1em;
}

.footer .copy span {
  display: none;
}

/* --------------------------------

  メインビジュアル

-------------------------------- */
.mainvisual {
  overflow: hidden;
}

@media screen and (min-width: 1100px), print {
  .mainvisual {
    margin-bottom: 212px;
  }
}

.mainvisual .inner {
  width: 100%;
  height: 100%;
  max-width: none;
}

.mainvisual-bg {
  display: block;
  position: relative;
  left: 50%;
  width: 130%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 1100px), print {
  .mainvisual-bg {
    width: 1600px;
  }
}

.mainvisual-bg img {
  width: 100%;
}

.mainvisual-catch {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 8%;
  width: 75%;
  margin: auto;
  z-index: 10;
}

@media screen and (min-width: 1100px), print {
  .mainvisual-catch {
    left: 116px;
    width: 956px;
  }
}

.mainvisual-catch img {
  width: 100%;
}

/* --------------------------------

  上部固定ボタン（お問い合わせ）

-------------------------------- */
/* お問い合わせ（電話）*/
.tel-button {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  color: #fff;
  text-align: center;
  border: none;
  background: #aa2031;
  cursor: pointer;
  z-index: 990;
}

@media screen and (min-width: 1100px), print {
  .tel-button {
    display: none;
  }
}

.tel-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: auto;
  background: url(../img/base/tel_wht.svg) center no-repeat;
  background-size: cover;
}

.tel-button::after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* お問い合わせ（メール）*/
.contact-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  z-index: 900;
}

@media screen and (min-width: 1100px), print {
  .contact-button {
    display: block;
    top: 110px;
    right: 10px;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    overflow: visible;
    z-index: 1010;
  }
}

.nav-open .contact-button {
  z-index: 1010;
}

.contact-button .item {
  width: 100%;
}

@media screen and (min-width: 1100px), print {
  .contact-button .item {
    width: auto;
  }
}

.contact-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  height: 60px;
  color: #fff;
  text-align: center;
  background-color: #aa2031;
}

@media screen and (min-width: 1100px), print {
  .contact-button a {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
    width: 92px;
    height: 92px;
    border-radius: 100%;
    border: 3px solid #fff;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
  }
}

.contact-button a:hover {
  text-decoration: none;
  background-color: #ff4c4c;
}

.contact-button a::before {
  content: "";
  display: block;
  width: 30px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}

@media screen and (min-width: 1100px), print {
  .contact-button a::before {
    width: 100%;
    margin-right: 0;
  }
}

.contact-button span {
  display: block;
  line-height: 1.3;
  font-weight: 500;
  font-size: .95em;
  text-align: left;
}

@media screen and (min-width: 1100px), print {
  .contact-button span {
    width: 100%;
    font-weight: 700;
    font-size: .75em;
    text-align: center;
  }
}

.contact-button span::after {
  content: attr(data-subtitle);
  display: block;
  margin-left: .2rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

@media screen and (min-width: 1100px), print {
  .contact-button span::after {
    margin-left: 0;
  }
}

.contact-button .item-contact {
  border-right: 1px solid #fff;
}

@media screen and (min-width: 1100px), print {
  .contact-button .item-contact {
    margin-bottom: 10px;
    border-right: none;
  }
}

.contact-button .item-contact a::before {
  height: 30px;
  background-image: url(../img/base/mail_wht.svg);
}

@media screen and (min-width: 1100px), print {
  .contact-button .item-contact a::before {
    margin-bottom: 2px;
  }
}

.contact-button .item-reserve a::before {
  height: 28px;
  background-image: url(../img/base/calendar_wht.svg);
}

@media screen and (min-width: 1100px), print {
  .contact-button .item-reserve a::before {
    margin-bottom: 6px;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.page-title {
  display: block;
  position: relative;
  padding: 0 1em;
  border-top: 7px solid #aa2031;
  background-color: #f4f1ec;
  overflow: hidden;
}

@media screen and (min-width: 768px), print {
  .page-title {
    border-bottom: 15px solid #f4f1ec;
  }
}

@media screen and (min-width: 1100px), print {
  .page-title {
    padding: 0 2em;
  }
}

.page-title::before {
  content: "";
  display: block;
  margin: 0 -1em;
  padding-top: 30%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

@media screen and (min-width: 1100px), print {
  .page-title::before {
    margin: 0 -2em;
    padding-top: 300px;
    background-position: center;
  }
}

.topics-page .page-title::before {
  background-image: url(../img/pages/topics/title.jpg);
}

.greeting-page .page-title::before {
  background-image: url(../img/pages/greeting/title.jpg);
}

.studio-page .page-title::before {
  background-image: url(../img/pages/studio/title.jpg);
}

.circle-page .page-title::before {
  background-image: url(../img/pages/circle/title.jpg);
}

.schedule-page .page-title::before {
  background-image: url(../img/pages/schedule/title.jpg);
}

.offer-page .page-title::before {
  background-image: url(../img/pages/offer/title.jpg);
}

.staff-page .page-title::before {
  background-image: url(../img/pages/staff/title.jpg);
}

.contact-page .page-title::before {
  background-image: url(../img/pages/contact/title.jpg);
}

.page-title-inner {
  padding: 1.25em 0;
}

@media screen and (min-width: 768px), print {
  .page-title-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 10;
  }
}

.page-title-name {
  display: block;
  font-size: 100%;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .page-title-name {
    min-width: 480px;
    color: #fff;
  }
}

.page-title-name .title {
  display: block;
  font-weight: 700;
  font-size: 1.5em;
}

@media screen and (min-width: 768px), print {
  .page-title-name .title {
    font-size: 2.2em;
  }
}

@media screen and (min-width: 1100px), print {
  .page-title-name .title {
    font-size: 2.6em;
  }
}

.page-title-name .title::after {
  content: attr(data-subtitle);
  display: block;
  margin-top: .75rem;
  padding-top: .75rem;
  font-size: 1.2rem;
  letter-spacing: .15rem;
  border-top: 1px solid #151515;
}

@media screen and (min-width: 768px), print {
  .page-title-name .title::after {
    font-size: 1.7rem;
    border-top: 2px solid #fff;
  }
}

.page-title-name .subtitle {
  display: block;
  font-weight: 700;
  font-size: .5em;
}

@media screen and (min-width: 768px), print {
  .page-title-name .subtitle {
    font-size: .45em;
  }
}

/* --------------------------------

  フォーム部品

-------------------------------- */
/* フォーム用テーブル */
.form-table {
  display: block;
  line-height: 1.5;
}

.form-table tbody {
  display: block;
}

.form-table tr {
  display: table;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  padding: .2em 0;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 767.98px) {
  .form-table tr {
    display: block;
    padding: 0;
    border-bottom: none;
  }
  .form-table tr:not(:last-child) {
    margin-bottom: 2em;
  }
}

.form-table th {
  position: relative;
  vertical-align: top;
  width: 16.5em;
  padding: 1em 0 1em 1em;
  font-size: 1.8rem;
}

@media screen and (max-width: 767.98px) {
  .form-table th {
    display: block;
    width: auto;
    margin-bottom: 1em;
    padding: 0 0 .5em .5em;
    border-bottom: 1px solid #ddd;
  }
}

.form-table td {
  vertical-align: top;
  padding: 1em 1em 1em 0;
}

@media screen and (max-width: 1099.98px) {
  .form-table td {
    padding-right: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .form-table td {
    display: block;
    padding: 0 .5em;
  }
}

.form-table .form-area-free th {
  vertical-align: middle;
}

/* レイアウト用 */
@media screen and (min-width: 768px), print {
  .form-wrap {
    margin-top: -.5em;
    margin-bottom: -.5em;
  }
}

@media screen and (min-width: 768px), print {
  .form-row {
    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;
    margin-right: -1.5em;
  }
  .form-row .form-label {
    max-width: 100%;
    min-width: 6em;
  }
  .form-row .form-group {
    display: block;
    padding-right: 1.5em;
  }
  .form-row .form-group-fluid {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .form-row .form-check {
    width: 14em;
  }
}

.form-row + .form-row {
  margin-top: .5em;
}

/* 画像添付 */
.form-area-picture .form-caution {
  margin-top: .5em;
  margin-bottom: .5em;
}

.form-area-picture .form-caution strong {
  display: block;
  position: relative;
  padding-left: 30px;
}

.form-area-picture .form-caution strong::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 2px;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url(../img/base/exclamation.svg) center no-repeat;
  background-size: cover;
}

.form-area-picture .form-note-list {
  font-size: .85em;
}

.form-area-picture .form-note-list span {
  color: #cc571f;
  font-weight: bold;
}

/* テキスト用 */
.form-text {
  display: inline-block;
  vertical-align: middle;
}

.form-text-top {
  margin-top: .5em;
}

.form-text-right {
  margin-left: .5em;
}

.form-text-bottom {
  margin-bottom: .5em;
}

.form-text-left {
  margin-right: .5em;
}

.form-text-both {
  margin-right: .5em;
  margin-left: .5em;
}

.form-text-small {
  font-size: .9em;
}

.form-text-large {
  font-size: 1.05em;
}

/* 文中注釈用 */
@media screen and (max-width: 767.98px) {
  .form-note {
    margin-top: .5em;
    margin-left: 0;
    font-size: .9em;
  }
}

/* ラジオ */
.radio-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1em;
}

@media screen and (max-width: 991.98px) {
  .radio-area {
    padding-left: 0;
  }
}

@media screen and (max-width: 479.98px) {
  .radio-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.radio-area label span {
  font-size: 1.8rem;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

@media screen and (max-width: 479.98px) {
  .radio-area label span {
    font-size: 1.6rem;
  }
}

.radio-area label:not(:last-child) {
  margin-right: 3em;
}

@media screen and (max-width: 991.98px) {
  .radio-area label:not(:last-child) {
    margin-right: 1em;
  }
}

@media screen and (max-width: 479.98px) {
  .radio-area label:not(:last-child) {
    margin-right: 0;
    margin-bottom: .5em;
  }
}

/* フォーム部品：ラジオボタン */
input[type='radio'] {
  display: none;
}

.form-box-radio + span {
  cursor: pointer;
  display: inline-block;
  padding-left: 1em;
  position: relative;
}

.form-box-radio + span::before {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #ddd;
  border-radius: 100%;
  background-color: #fff;
}

.form-box-radio + span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  padding: 2px;
  background-color: #aa2031;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  opacity: 0;
}

.form-box-radio:checked + span::after {
  opacity: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

/* フォーム部品：入力欄 */
.form-control {
  width: 100%;
  height: 2.5em;
  margin-top: -.5em;
  margin-bottom: -.5em;
  padding: 0 .5em;
  color: #151515;
  font-family: inherit;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 0;
  border: 1px solid #ddd;
  background-color: #fff;
}

.form-control:focus {
  border-color: #ddd;
  background-color: #fff;
}

@media screen and (max-width: 767.98px) {
  .form-control {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.form-short {
  max-width: 120px;
  text-align: center;
}

.form-middle {
  max-width: 34.4em;
}

@media screen and (max-width: 1099.98px) {
  .form-middle {
    max-width: 100%;
  }
}

.form-low {
  height: 1.6em;
}

@media screen and (max-width: 767.98px) {
  .form-low {
    height: 2.0em;
  }
}

.form-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 0;
  margin-bottom: 0;
}

.form-inline-right {
  margin-left: .5em;
}

.form-inline-left {
  margin-right: .5em;
}

.form-inline-both {
  margin-right: .5em;
  margin-left: .5em;
}

/* フォーム部品：テキストエリア */
.form-textarea {
  resize: vertical;
  vertical-align: top;
  height: 15em;
  min-height: 2.5em;
  max-height: 18em;
  padding: .5em .5em 0;
}

.form-textarea-low {
  height: 2.5em;
}

.form-textarea-high {
  height: 10em;
}

/* フォーム部品：入力必須マーク */
.form-title {
  display: inline-block;
  vertical-align: middle;
  margin-left: .75em;
  font-weight: 500;
  line-height: 1.2;
}

.form-title span {
  display: block;
}

@media screen and (max-width: 767.98px) {
  .form-title span {
    display: inline-block;
    vertical-align: middle;
    margin-right: -1em;
    font-size: .8em;
  }
}

.form-icon {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.form-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 58px;
  margin: auto;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 1.8em;
  text-align: center;
  border-radius: 0;
}

@media screen and (max-width: 767.98px) {
  .form-icon::before {
    font-size: .75em;
    line-height: 2.2em;
  }
}

.form-icon .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .form-icon .br {
    display: block;
  }
}

.form-icon-required {
  padding-left: 4.3em;
}

.form-icon-required::before {
  content: "必須";
  color: #fff;
  background-color: #c00;
}

.form-icon-free::before {
  content: "任意";
  color: #fff;
  background-color: #fff;
}

@media screen and (max-width: 767.98px) {
  .form-icon-free::before {
    color: #fff;
    background-color: #ccc;
  }
}

/* フォーム部品：セレクト */
.select-wrap {
  position: relative;
  color: #151515;
  background-color: #fff;
}

.select-wrap select {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 1.5em;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select-wrap select::-ms-expand {
  display: none;
}

.select-wrap .select-icon {
  display: block;
  position: absolute;
  top: 3px;
  right: 15px;
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  pointer-events: none;
  background: url(../img/base/select.svg) center no-repeat;
  background-size: cover;
  z-index: 1;
}

/* フォーム部品：ラジオボタン、チェックボックス共通 */
.form-box {
  position: absolute;
  opacity: 0;
}

.form-box + label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
  padding-left: 26px;
  font-size: 1.8rem;
  cursor: pointer;
}

@media screen and (max-width: 479.98px) {
  .form-box + label {
    font-size: 1.5rem;
  }
}

.form-box + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  border: 1px solid #ccc;
  background: #fff;
}

.form-box + label::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
}

.form-box:checked + label {
  color: #ff4c4c;
}

.form-box:checked + label::before {
  border-color: #ff4c4c;
}

/* フォーム部品：ラジオボタン */
.form-box-radio + label::before {
  border-radius: 100%;
}

.form-box-radio + label::after {
  top: 0;
  bottom: 0;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
  opacity: 1;
}

.form-box-radio:checked + label::after {
  background-color: #ff4c4c;
  opacity: 1;
}

/* フォーム部品：チェックボックス */
.form-box-check + label::before {
  border-radius: 0;
}

.form-box-check + label::after {
  top: -10px;
  bottom: 0;
  left: 3px;
  width: 20px;
  height: 10px;
  border-left: 3px solid #ff4c4c;
  border-bottom: 3px solid #ff4c4c;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.form-box-check:checked + label::after {
  opacity: 1;
}

/* フォーム部品：エラーメッセージ */
input.validate-error,
select.validate-error,
textarea.validate-error {
  border-color: #c00;
}

span.validate-error {
  display: block;
  font-size: .85em;
  color: #c00;
}

.error-message {
  margin-top: .5em;
  margin-bottom: -.7em;
}

@media screen and (min-width: 768px), print {
  .error-message {
    margin-top: 1.2em;
  }
}

.error-message:empty {
  margin-top: 0;
  margin-bottom: 0;
}

.error-message-check {
  margin-top: .5em;
}

.error-message-check span.validate-error:not(:first-child) {
  display: none !important;
}

/* フォーム部品：送信ボタン */
.form-buttons {
  padding-top: 2em;
  text-align: center;
}

.form-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 100px;
  border: 0;
  border-radius: 0;
  background: none;
  font-weight: 700;
  font-size: 100%;
  font-size: 2.8rem;
  font-family: inherit;
  max-width: 274px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-align: center;
  margin: .5em;
  padding: .38em 1em .38em 1em;
  color: #fff;
  line-height: 1.1;
  border-radius: .35em;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (max-width: 639.98px) {
  .form-button {
    font-size: 2.2rem;
  }
}

.form-button-send {
  border-color: #aa2031;
  background: #aa2031;
}

.form-button-send:hover {
  border-color: #ff4c4c;
  background: #ff4c4c;
}

.form-button-back {
  border-color: #999;
  background: #999;
}

.form-button-back:hover {
  border-color: #ccc;
  background: #ccc;
}

.form-button-inline {
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  padding: .7em 1em;
  font-size: .9em;
}

.form-button-inline::after {
  display: none;
}

.form-button-search {
  border-color: #aa2031;
  background: #aa2031;
}

.form-button-search:hover {
  border-color: #ff4c4c;
  background: #ff4c4c;
}

.form-button-upload {
  margin: 0;
  padding: .8em 1em;
  font-size: 1.1em;
  color: #fff;
  background: #e21664;
}

.form-button-upload:hover {
  color: #fff;
  text-decoration: none;
  background: #e94709;
}

.form-button-upload::after {
  display: none;
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html,
  body {
    width: 1100px;
    background: none;
  }
}

/* --------------------------------

  id01　トップページ

-------------------------------- */
/* ページ内共通 */
.section {
  margin-right: -1em;
  margin-left: -1em;
}

@media screen and (min-width: 1100px), print {
  .section {
    margin-right: -2em;
    margin-left: -2em;
  }
}

.section-secondary {
  padding-right: 1em;
  padding-left: 1em;
}

@media screen and (min-width: 1100px), print {
  .section-secondary {
    padding-right: 2em;
    padding-left: 2em;
  }
}

.section-secondary:not(:last-child) {
  margin-bottom: 5em;
}

.section-secondary .inner {
  line-height: 1.5;
}

@media screen and (min-width: 768px), print {
  .section-secondary .inner {
    line-height: 1.8;
  }
}

@media screen and (min-width: 1100px), print {
  .section-secondary .inner {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.section-dummy {
  padding-right: 1em;
  padding-left: 1em;
}

@media screen and (min-width: 1100px), print {
  .section-dummy {
    padding-right: 2em;
    padding-left: 2em;
  }
}

.section-dummy:not(:last-child) {
  margin-bottom: 5em;
}

.section-dummy .inner {
  max-width: none;
  text-align: center;
}

.section-dummy_wide {
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
}

.section-dummy_wide .inner {
  margin-right: -23%;
  margin-left: -23%;
}

@media screen and (min-width: 1100px), print {
  .section-dummy_wide .inner {
    margin-right: -250px;
    margin-left: -250px;
  }
}

.section-header {
  position: relative;
  margin-bottom: 3em;
  padding: 3em 0;
  line-height: 1.1;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.section-header::before {
  content: attr(data-subtitle);
  display: block;
  font-size: 3.5rem;
}

.section-heading {
  font-size: 100%;
  font-size: 1.1em;
}

/* 導入部 */
.nanilehua-intro-section {
  padding: 3em 1em;
  background-color: #f4f1ec;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-intro-section {
    padding: 3em 2em;
  }
}

.nanilehua-intro-container {
  position: relative;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-intro-container {
    padding: 0 90px;
  }
}

.nanilehua-intro-container::before, .nanilehua-intro-container::after {
  content: "";
  display: block;
  position: absolute;
  top: -2em;
  width: 90.76923px;
  height: 62.30769px;
  background: url(../img/top/leaf.png) center no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  .nanilehua-intro-container::before, .nanilehua-intro-container::after {
    width: 118px;
    height: 81px;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-intro-container::before, .nanilehua-intro-container::after {
    top: 40px;
    width: 236px;
    height: 162px;
  }
}

.nanilehua-intro-container::before {
  left: 0;
}

.nanilehua-intro-container::after {
  right: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.nanilehua-intro-main {
  margin-bottom: 1em;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-intro-main {
    margin-bottom: 2em;
  }
}

.nanilehua-intro-head {
  margin-bottom: 1em;
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-intro-head {
    margin-bottom: 2em;
  }
}

.nanilehua-intro-head::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto .75em;
  background: url(../img/base/flower_red.svg) center no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  .nanilehua-intro-head::before {
    width: 80px;
    height: 80px;
  }
}

.nanilehua-intro-heading {
  line-height: 1.3;
  font-weight: 500;
  font-size: 1.2em;
  color: #aa2031;
}

@media screen and (min-width: 768px), print {
  .nanilehua-intro-heading {
    font-size: 1.5em;
  }
}

.nanilehua-intro-heading .br {
  display: block;
}

.nanilehua-intro-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px -5px 0;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-intro-img {
    margin: 0 -10px -10px 0;
  }
}

.nanilehua-intro-img .img-item {
  width: 100%;
  padding: 0 5px 5px 0;
}

@media screen and (min-width: 480px), print {
  .nanilehua-intro-img .img-item {
    width: 33.33333%;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-intro-img .img-item {
    padding: 0 10px 10px 0;
  }
}

.nanilehua-intro-img img {
  width: 100%;
}

.nanilehua-intro-description {
  line-height: 1.6;
  font-size: .95em;
}

@media screen and (min-width: 768px), print {
  .nanilehua-intro-description {
    line-height: 1.8;
    font-size: 1.0em;
  }
}

/* お知らせ */
.nanilehua-news {
  height: 100%;
  border-bottom: 2px solid #5d172f;
}

.nanilehua-news-head {
  position: relative;
  padding-bottom: 2em;
  text-align: center;
  border-bottom: 2px solid #5d172f;
}

@media screen and (min-width: 480px), print {
  .nanilehua-news-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    padding: 0 0 1.5em 90px;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-news-head {
    padding: 1.5em 0 1.5em 90px;
  }
}

.nanilehua-news-head::before {
  content: "";
  display: block;
  width: 74px;
  height: 74px;
  margin: auto;
  background: url(../img/base/flower_red.svg) center no-repeat;
  background-size: cover;
}

@media screen and (min-width: 480px), print {
  .nanilehua-news-head::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}

.nanilehua-news-heading {
  line-height: 1.0;
  font-weight: 500;
  font-size: 1.2em;
}

.nanilehua-news-heading::before {
  content: attr(data-subtitle);
  display: block;
  font-size: 4.2rem;
}

.nanilehua-news-more {
  margin-top: 1em;
}

@media screen and (min-width: 480px), print {
  .nanilehua-news-more {
    margin-top: 0;
    margin-left: auto;
  }
}

.nanilehua-news .news-topics:nth-of-type(6) .news-link {
  border-bottom: none;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-news .news-title {
    overflow: hidden;
    font-variant: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* NEWS・FB */
.nanilehua-info-section {
  padding: 2em 1em;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-info-section {
    padding: 5em 2em;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-info-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nanilehua-info-main {
  margin-bottom: 2em;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-info-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    margin-bottom: 0;
    padding-right: 2em;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-info-side {
    width: 500px;
  }
}

/* バナー */
.nanilehua-menu-section {
  padding: 2em 1em;
  overflow: hidden;
  background-color: #f4f1ec;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-menu-section {
    padding: 2.5em 2em;
  }
}

.nanilehua-menu-section .inner {
  max-width: none;
}

.nanilehua-menu-container {
  margin: 0 -1em -1em 0;
  text-align: center;
}

.nanilehua-menu-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 1em 1em 0;
}

.nanilehua-menu-more a {
  display: block;
  text-align: center;
  border-radius: .75rem;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}

.nanilehua-menu-trial .nanilehua-menu-more a {
  background-color: #ff4c4c;
}

.nanilehua-menu-trial .nanilehua-menu-more a:hover {
  background-color: #ff0000;
}

.nanilehua-menu-blog .nanilehua-menu-more a {
  background-color: #aa2031;
}

.nanilehua-menu-blog .nanilehua-menu-more a:hover {
  background-color: #dd1c33;
}

.nanilehua-menu-offer .nanilehua-menu-more a {
  background-color: #1f8d44;
}

.nanilehua-menu-offer .nanilehua-menu-more a:hover {
  background-color: #18bd4f;
}

/* コンテンツ一覧 */
.nanilehua-service-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  margin: 0 -1em -2em 0;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-service-items {
    margin: 0 -3em -3em 0;
  }
}

.nanilehua-service-item {
  width: 100%;
  padding: 0 1em 2em 0;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-service-item {
    width: 33.33333%;
    padding: 0 3em 3em 0;
  }
}

.nanilehua-service-inner {
  display: block;
  position: relative;
  margin: 0 -1em;
  height: 100%;
}

@media screen and (min-width: 640px), print {
  .nanilehua-service-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 540px;
    margin: auto;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-service-inner {
    display: block;
  }
}

@media screen and (min-width: 640px), print {
  .nanilehua-service-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-service-main {
    display: block;
  }
}

.nanilehua-service-side {
  margin-bottom: 1em;
}

@media screen and (min-width: 640px), print {
  .nanilehua-service-side {
    width: 40%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-service-side {
    width: 100%;
    margin-bottom: 1em;
  }
}

.nanilehua-service-head {
  margin-bottom: .5em;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-service-body {
    padding-bottom: 2.5em;
  }
}

.nanilehua-service-heading {
  font-size: .85em;
  color: #fff;
  text-align: center;
}

.nanilehua-service-heading span {
  display: block;
  margin-top: .35rem;
  font-weight: 700;
  font-size: 1.8em;
  color: #ffe599;
}

.nanilehua-service-img {
  display: block;
  position: relative;
  width: 80%;
  max-width: 280px;
  margin: auto;
  padding: 25px;
  border-radius: 100%;
  border: 5px solid #f4f1ec;
  background: #f4f1ec;
  background: repeating-linear-gradient(90deg, #f4f1ec, #f4f1ec 10px, #ece7df 0, #ece7df 20px);
  overflow: hidden;
}

@media screen and (min-width: 640px), print {
  .nanilehua-service-img {
    width: auto;
    margin: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-service-img {
    margin: auto;
    padding: 30px;
    border-width: 10px;
  }
}

.nanilehua-service-img img {
  display: block;
  width: 100%;
  border-radius: 100%;
  border: 5px solid #fff;
  background-color: #fff;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-service-img img {
    border-width: 10px;
  }
}

.nanilehua-service-more {
  margin-top: .5em;
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-service-more {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-top: 0;
  }
}

/* 札幌で学べる、本格派フラスタジオ */
.nanilehua-guide-section {
  position: relative;
  padding: 3em 1em;
  background: url(../img/top/bg.jpg) no-repeat center fixed;
  background-size: cover;
  overflow: hidden;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-guide-section {
    padding: 5em 2em;
  }
}

.nanilehua-guide-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(140, 35, 0, 0.65);
}

.nanilehua-guide-main {
  margin-bottom: 2em;
}

.nanilehua-guide-head {
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  text-align: center;
  border-bottom: 5px solid #fff;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-guide-head {
    border-bottom-width: 10px;
  }
}

.nanilehua-guide-heading {
  font-size: 1.6em;
  color: #fff;
}

@media screen and (min-width: 768px), print {
  .nanilehua-guide-heading {
    font-size: 1.8em;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-guide-heading {
    font-size: 2.7em;
  }
}

.nanilehua-guide-heading span {
  display: block;
  font-weight: 700;
}

@media screen and (min-width: 768px), print {
  .nanilehua-guide-heading span {
    display: inline;
  }
}

.nanilehua-guide-description {
  line-height: 1.6;
  font-size: 1.05em;
  color: #fff;
}

@media screen and (min-width: 768px), print {
  .nanilehua-guide-description {
    text-align: center;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-guide-description {
    font-size: 1.2em;
  }
}

.nanilehua-guide-description p {
  font-weight: 700;
}

/* オンラインレッスン */
.nanilehua-online-section {
  padding: 3em 1em;
  border-bottom: 2px solid #aa2031;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-online-section {
    padding: 3em 2em;
  }
}

@media screen and (min-width: 768px), print {
  .nanilehua-online-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px), print {
  .nanilehua-online-body {
    position: relative;
    padding-left: 2em;
  }
}

.nanilehua-online-heading {
  margin-bottom: 1em;
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-online-heading {
    margin-bottom: 0;
    text-align: left;
  }
}

.nanilehua-online-heading img {
  width: 150px;
}

@media screen and (min-width: 1100px), print {
  .nanilehua-online-heading img {
    width: 220px;
  }
}

.nanilehua-online-description {
  font-size: 1.2em;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .nanilehua-online-description {
    text-align: left;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-online-description {
    line-height: 1.3;
    font-size: 1.6em;
  }
}

.nanilehua-online-description p {
  font-weight: 500;
}

.nanilehua-online-description .lessonfee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2em;
}

@media screen and (min-width: 768px), print {
  .nanilehua-online-description .lessonfee {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.nanilehua-online-description .lessonfee dt::after {
  content: "…";
  margin: 0 .35em;
}

.nanilehua-online-description .lessonfee dd {
  font-weight: 700;
  font-size: 1.3em;
  color: #aa2031;
}

.nanilehua-online-more {
  margin-top: 1em;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .nanilehua-online-more {
    position: absolute;
    right: 0;
    bottom: .25em;
    margin-top: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-online-more {
    bottom: .7em;
  }
}

/* --------------------------------

  idxx　お知らせ

-------------------------------- */
.news-area {
  position: relative;
}

.news-area .inner {
  padding: 0;
  line-height: 1.5;
}

.news-area .news-heading {
  margin-bottom: .55rem;
}

.news-area .news-list {
  padding-bottom: 2em;
}

.news-detail .inner {
  line-height: 1.5;
}

.news-heading {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: .75rem 0 1rem 45px;
  font-weight: 500;
  line-height: 1.3;
  font-size: 1.4em;
  border-bottom: 2px solid #aa2031;
}

@media screen and (min-width: 768px), print {
  .news-heading {
    margin-bottom: 2rem;
    padding: 1rem 0 1rem 60px;
    font-size: 1.7em;
  }
}

@media screen and (min-width: 1100px), print {
  .news-heading {
    margin-bottom: 2.5rem;
    font-size: 2.0em;
    border-bottom-width: 3px;
  }
}

.news-heading::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url(../img/base/flower_red.svg) center no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  .news-heading::before {
    width: 54px;
    height: 54px;
  }
}

.news-body {
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
}

.news-text {
  margin-top: 1rem;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}

.news-text p,
.news-text div {
  word-break: break-all;
  word-wrap: break-word;
}

.news-back {
  clear: both;
  max-width: 1100px;
  margin: 2em auto 0;
  padding: 2em 0 0;
  text-align: center;
  border-top: 1px dotted #ddd;
}

/* お知らせ一覧 */
.news-list .news-link {
  display: block;
  position: relative;
  padding: .8em 1em;
  line-height: 1.5;
  border-bottom: 1px dotted #ddd;
}

@media screen and (min-width: 640px), print {
  .news-list .news-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.2em 2rem;
  }
}

.news-list .news-link:hover {
  text-decoration: none;
}

.news-list .news-link:hover .news-date {
  color: #ff4c4c;
}

.news-list .news-link:hover .news-title {
  text-decoration: none;
}

.news-list .news-date {
  font-size: .9em;
  color: #151515;
}

@media screen and (min-width: 640px), print {
  .news-list .news-date {
    width: 7em;
    font-size: 1em;
  }
}

.news-list .news-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  word-break: break-all;
  word-wrap: break-word;
  text-decoration: underline;
}

.news-list .news-img {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 60px;
  margin: auto;
  background: #fff url(../img/base/logo.png) center no-repeat;
  background-size: 60% auto;
  overflow: hidden;
}

.news-list .news-img span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.news-list .news-img span:empty {
  display: none;
}

.news-list .news-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 100px;
  max-height: 100px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* --------------------------------

  id02　ご挨拶

-------------------------------- */
/* 代表からのメッセージ */
.greeting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767.98px) {
  .greeting {
    -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;
  }
}

.greeting-section .inner {
  padding-left: 0;
  padding-right: 0;
}

.greeting-mes p {
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  text-align: justify;
}

.greeting-mes p:not(:last-child) {
  margin-bottom: 1.5em;
}

@media screen and (max-width: 991.98px) {
  .greeting-mes p:not(:last-child) {
    margin-bottom: 1em;
  }
}

.greeting-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-left: 2.5em;
}

@media screen and (max-width: 991.98px) {
  .greeting-main {
    margin-left: 1.5em;
  }
}

@media screen and (max-width: 767.98px) {
  .greeting-main {
    margin-left: 0;
    margin-top: 1.5em;
  }
}

.greeting-side .greeting-name {
  padding-top: .3em;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 639.98px) {
  .greeting-side .greeting-name {
    font-size: 2rem;
  }
}

.greeting-side .greeting-name span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

@media screen and (max-width: 639.98px) {
  .greeting-side .greeting-name span {
    font-size: 1.6rem;
  }
}

.greeting .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .greeting .br {
    display: block;
  }
}

/* --------------------------------

  id03　スタジオレッスン

-------------------------------- */
.studio-page .section-secondary:not(:last-child) {
  margin-bottom: 8em;
}

@media screen and (max-width: 639.98px) {
  .studio-page .section-secondary:not(:last-child) {
    margin-bottom: 4em;
  }
}

/* スタジオについて */
.studio-section .inner {
  padding-right: 0;
  padding-left: 0;
}

.studio-section .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .studio-section .br {
    display: block;
  }
}

.studio-about .main-subheading {
  margin-bottom: .7em;
}

.studio-about p {
  line-height: 1.6;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

.studio-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1em;
  margin-top: 2em;
}

@media screen and (max-width: 639.98px) {
  .studio-images {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1em;
    padding: 0;
  }
}

.studio-images .image-item {
  max-width: 320px;
}

@media screen and (max-width: 639.98px) {
  .studio-images .image-item {
    width: calc(50% - 8px);
    max-width: none;
  }
}

@media screen and (max-width: 479.98px) {
  .studio-images .image-item {
    width: 100%;
  }
}

.studio-images .image-item:not(:last-child) {
  margin-right: 40px;
}

@media screen and (max-width: 639.98px) {
  .studio-images .image-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1em;
  }
}

@media screen and (max-width: 639.98px) {
  .studio-images .image-item:first-child {
    margin-right: 1em;
  }
}

@media screen and (max-width: 479.98px) {
  .studio-images .image-item:first-child {
    margin-right: 0;
  }
}

.studio-access {
  margin-top: 4em;
}

@media screen and (max-width: 639.98px) {
  .studio-access {
    margin-top: 2em;
  }
}

.studio-access .main-subheading {
  padding-top: .4em;
  padding-bottom: .4em;
}

.studio-access .access-map {
  margin-top: 2em;
}

@media screen and (max-width: 639.98px) {
  .studio-access .access-map {
    margin-top: 1em;
  }
}

.studio-access .access-map .access-more a {
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: .3em;
}

.studio-access .access-intro {
  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;
  padding: 0 .5em;
}

@media screen and (max-width: 767.98px) {
  .studio-access .access-intro {
    padding: 0;
  }
}

@media screen and (max-width: 479.98px) {
  .studio-access .access-intro {
    -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;
  }
}

.studio-access .access-intro .main-logo .site-logo {
  position: relative;
  padding: 0 0 1.2em;
  text-align: center;
}

@media screen and (max-width: 639.98px) {
  .studio-access .access-intro .main-logo .site-logo img {
    max-width: 161px;
  }
}

@media screen and (max-width: 479.98px) {
  .studio-access .access-intro .main-logo .site-logo img {
    max-width: none;
  }
}

.studio-access .access-intro .main-logo .site-logo span {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-left: 30px;
  color: #aaa;
  font-size: .75em;
  text-align: center;
}

.studio-access .access-intro .access-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-right: .5em;
}

@media screen and (max-width: 479.98px) {
  .studio-access .access-intro .access-info {
    margin-right: 0;
    margin-bottom: 1em;
  }
}

.studio-access .access-intro .access-info dt {
  font-size: 1.8rem;
  font-weight: 700;
  color: #aa2031;
  line-height: 1.2;
  padding-bottom: .3em;
}

@media screen and (max-width: 767.98px) {
  .studio-access .access-intro .access-info dt {
    font-size: 1.6rem;
  }
}

.studio-access .access-intro .access-info dd {
  font-size: 1.8rem;
  line-height: 1.6;
}

@media screen and (max-width: 767.98px) {
  .studio-access .access-intro .access-info dd {
    font-size: 1.6rem;
  }
}

.studio-access .access-intro .access-info dd span {
  font-weight: 700;
}

/* 体験レッスンについて */
.studio-trial .trial-more {
  text-align: center;
  margin-top: 2em;
}

@media screen and (min-width: 640px), print {
  .studio-trial .trial-more {
    margin-top: 4em;
  }
}

.studio-trial .trial-txt {
  line-height: 1.6;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  text-align: justify;
}

.studio-trial .studio-images {
  margin-top: 1em;
}

@media screen and (min-width: 640px), print {
  .studio-trial .studio-images {
    margin-top: 2.5em;
  }
}

.studio-trial-section .inner {
  padding-right: 0;
  padding-left: 0;
}

.studio-trial-section .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .studio-trial-section .br {
    display: block;
  }
}

.studio-online .online-more {
  text-align: center;
  margin-top: 2em;
}

@media screen and (min-width: 640px), print {
  .studio-online .online-more {
    margin-top: 5em;
  }
}

.studio-online .online-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 639.98px) {
  .studio-online .online-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 479.98px) {
  .studio-online .online-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.studio-online .online-wrap .online-side {
  padding-right: 1.5em;
}

@media screen and (max-width: 639.98px) {
  .studio-online .online-wrap .online-side {
    padding-right: 0;
  }
  .studio-online .online-wrap .online-side img {
    max-width: 170px;
  }
}

@media screen and (max-width: 639.98px) and (max-width: 479.98px) {
  .studio-online .online-wrap .online-side img {
    max-width: none;
  }
}

.studio-online .online-wrap .online-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-right: 1em;
}

@media screen and (max-width: 479.98px) {
  .studio-online .online-wrap .online-main {
    margin-right: 0;
    margin-bottom: 2em;
  }
}

.studio-online .online-wrap .online-main p {
  line-height: 1.6;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

.studio-online .online-wrap .online-main .online-fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1em;
}

@media screen and (max-width: 479.98px) {
  .studio-online .online-wrap .online-main .online-fee {
    margin-top: .5em;
  }
}

.studio-online .online-wrap .online-main .online-fee dt, .studio-online .online-wrap .online-main .online-fee dd {
  font-size: 2rem;
  font-weight: 700;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  color: #000;
}

@media screen and (max-width: 479.98px) {
  .studio-online .online-wrap .online-main .online-fee dt, .studio-online .online-wrap .online-main .online-fee dd {
    font-size: 1.8rem;
  }
}

.studio-online .online-wrap .online-main .online-fee dd {
  padding-left: 1em;
}

.studio-online .online-wrap .online-main .online-fee dd span {
  color: #aa2031;
  font-weight: 700;
}

.studio-online-section .inner {
  padding-right: 0;
  padding-left: 0;
}

.studio-online-section .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .studio-online-section .br {
    display: block;
  }
}

/* スタジオ・コース紹介 */
.studio-course:not(:last-child) {
  margin-bottom: 5em;
}

@media screen and (max-width: 639.98px) {
  .studio-course:not(:last-child) {
    margin-bottom: 2.5em;
  }
}

.studio-course .main-header {
  margin-bottom: 1.5em;
}

@media screen and (max-width: 639.98px) {
  .studio-course .main-header {
    margin-bottom: 1em;
  }
}

.studio-course .main-header .main-subheading {
  padding-top: .4em;
  padding-bottom: .4em;
  margin-bottom: .8em;
}

.studio-course .main-header p {
  font-size: 1.6rem;
  line-height: 1.2;
}

@media screen and (min-width: 640px), print {
  .studio-course .main-header p {
    font-size: 1.8rem;
  }
}

.studio-course-section .inner {
  padding-right: 0;
  padding-left: 0;
}

.studio-course-section .adult-course .adult-table tr {
  border-bottom: 1px solid #cc571f;
}

.studio-course-section .adult-course .adult-table tr th {
  border-left: 8px solid #cc571f;
}

.studio-course-section .adult-course .adult-table tr td .course-list li::before {
  background-color: #cc571f;
}

.studio-course-section .children-course .main-subheading {
  color: #E10F78;
  border-left-color: #E10F78;
}

.studio-course-section .children-course .children-table tr {
  border-bottom: 1px solid #E10F78;
}

.studio-course-section .children-course .children-table tr th {
  border-left: 8px solid #E10F78;
}

.studio-course-section .children-course .children-table tr td .course-list li::before {
  background-color: #E10F78;
}

.studio-course-section .other-course .main-subheading {
  color: #008C46;
  border-left-color: #008C46;
}

.studio-course-section .other-course .other-table tr {
  border-bottom: 1px solid #008C46;
}

.studio-course-section .other-course .other-table tr th {
  border-left: 8px solid #008C46;
}

.studio-course-section .other-course .other-table tr td .course-list li::before {
  background-color: #008C46;
}

.studio-course .course-table {
  display: table;
  width: 100%;
  border-collapse: separate;
}

.studio-course .course-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: .7em 0;
}

@media screen and (max-width: 991.98px) {
  .studio-course .course-table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: .5em 0;
  }
}

.studio-course .course-table tr th, .studio-course .course-table tr td {
  vertical-align: middle;
}

.studio-course .course-table tr th {
  font-size: 2.8rem;
  font-weight: 700;
  padding: .15em .4em;
  width: 12em;
  line-height: 1.2;
}

@media screen and (max-width: 1099.98px) {
  .studio-course .course-table tr th {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 639.98px) {
  .studio-course .course-table tr th {
    font-size: 2rem;
  }
}

.studio-course .course-table tr td {
  font-size: 1.8rem;
  line-height: 1.6;
}

@media screen and (max-width: 991.98px) {
  .studio-course .course-table tr td {
    padding: .3em 0;
    padding-left: 1em;
    width: 100%;
  }
}

.studio-course .course-table tr td span {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 1099.98px) {
  .studio-course .course-table tr td span {
    font-size: 2rem;
  }
}

.studio-course .course-table tr td .course-list {
  margin: -.35em;
}

.studio-course .course-table tr td .course-list li {
  padding-left: 1.3em;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

.studio-course .course-table tr td .course-list li::before {
  width: 8px;
  height: 8px;
}

.studio-course .course-table tr td:first-of-type {
  width: 9em;
  padding-right: 1em;
}

@media screen and (max-width: 1099.98px) {
  .studio-course .course-table tr td:first-of-type {
    width: 6.5em;
  }
}

@media screen and (max-width: 991.98px) {
  .studio-course .course-table tr td:first-of-type {
    padding-right: 0;
    width: 100%;
  }
}

.studio-course .course-table tr td:not(:first-of-type) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.studio-course .course-table tr td:last-of-type {
  text-align: center;
  padding-left: 1.5em;
}

@media screen and (max-width: 1099.98px) {
  .studio-course .course-table tr td:last-of-type {
    padding-left: .5em;
  }
}

@media screen and (max-width: 991.98px) {
  .studio-course .course-table tr td:last-of-type {
    padding-left: 1em;
    width: 100%;
    text-align: left;
  }
}

/* --------------------------------

  id04　スタッフ

-------------------------------- */
/* 共通 */
.staff-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.staff-wrap:not(:last-child) {
  margin-bottom: 5em;
}

@media screen and (max-width: 639.98px) {
  .staff-wrap:not(:last-child) {
    margin-bottom: 2.5em;
  }
}

@media screen and (max-width: 767.98px) {
  .staff-wrap {
    -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;
  }
}

.staff-wrap .staff-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-left: 2.5em;
}

@media screen and (max-width: 991.98px) {
  .staff-wrap .staff-main {
    margin-left: 1.5em;
  }
}

@media screen and (max-width: 767.98px) {
  .staff-wrap .staff-main {
    margin-left: 0;
    margin-top: 1.5em;
  }
}

.staff-wrap .staff-main .staff-history {
  background-color: #FDF5F2;
  padding: .5em .2em;
}

.staff-wrap .staff-main .staff-history .info-list {
  margin-left: 2em;
}

@media screen and (max-width: 991.98px) {
  .staff-wrap .staff-main .staff-history .info-list {
    margin-left: 0;
  }
}

.staff-wrap .staff-main .staff-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 991.98px) {
  .staff-wrap .staff-main .staff-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.staff-wrap .staff-main .staff-info:not(:last-child) {
  margin-bottom: 2em;
}

.staff-wrap .staff-main .staff-info .staff-heading {
  display: table;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #cc571f;
  border-left: 8px solid #cc571f;
  padding: .2em 0;
  padding-left: .3em;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

@media screen and (max-width: 991.98px) {
  .staff-wrap .staff-main .staff-info .staff-heading {
    margin-bottom: .3em;
  }
}

@media screen and (max-width: 639.98px) {
  .staff-wrap .staff-main .staff-info .staff-heading {
    font-size: 2rem;
    padding: .1em 0;
    padding-left: .3em;
  }
}

.staff-wrap .staff-main .staff-info .info-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-top: .3em;
}

.staff-wrap .staff-main .staff-info .info-list li {
  line-height: 1.6;
  font-size: 1.6rem;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

.staff-wrap .staff-main .staff-info .info-list li:not(:last-child) {
  margin-bottom: .5em;
}

@media screen and (max-width: 639.98px) {
  .staff-wrap .staff-main .staff-info .info-list li:not(:last-child) {
    margin-bottom: .3em;
  }
}

.staff-wrap .staff-main .staff-info .info-list li::before {
  background-color: #cc571f;
  width: 8px;
  height: 8px;
}

.staff-wrap .staff-main .staff-info .info-list li span {
  padding-right: 1em;
}

@media screen and (max-width: 639.98px) {
  .staff-wrap .staff-main .staff-info .info-list li span {
    padding-right: .5em;
  }
}

.staff-wrap .staff-main .staff-mes {
  line-height: 1.6;
  font-size: 1.6rem;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  margin-bottom: 2em;
}

@media screen and (max-width: 639.98px) {
  .staff-wrap .staff-main .staff-mes {
    margin-bottom: 1em;
  }
}

.staff-wrap .staff-main .staff-mes .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .staff-wrap .staff-main .staff-mes .br {
    display: block;
  }
}

.staff-wrap .staff-main .main-subheading {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: .7em;
}

@media screen and (max-width: 639.98px) {
  .staff-wrap .staff-main .main-subheading {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 479.98px) {
  .staff-wrap .staff-main .main-subheading {
    font-size: 2rem;
  }
}

.staff-wrap .staff-main .main-subheading span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
}

/* Alakai */
@media screen and (max-width: 767.98px) {
  .staff-alakai .staff-wrap:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.staff-alakai .staff-wrap:nth-child(2n) .staff-main {
  margin-right: 2.5em;
  margin-left: 0;
}

@media screen and (max-width: 991.98px) {
  .staff-alakai .staff-wrap:nth-child(2n) .staff-main {
    margin-left: 0;
    margin-right: 1.5em;
  }
}

@media screen and (max-width: 767.98px) {
  .staff-alakai .staff-wrap:nth-child(2n) .staff-main {
    margin-right: 0;
    margin-top: 1.5em;
  }
}

.staff-alakai-section .inner {
  padding-right: 0;
  padding-left: 0;
}

/* インストラクター */
.staff-instructor .staff-wrap:not(:last-child) {
  margin-bottom: 2.5em;
}

.staff-instructor-section .inner {
  padding-left: 0;
  padding-right: 0;
}

/* 事務スタッフ */
.staff-officework-section .inner {
  padding-right: 0;
  padding-left: 0;
}

/* --------------------------------

  id05　サークル教室

-------------------------------- */
/* サークル教室 共通 */
.circle-table {
  display: table;
  width: 100%;
  border-collapse: separate;
}

.circle-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #cc571f;
  padding: .6em .3em;
}

@media screen and (max-width: 991.98px) {
  .circle-table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: .4em .2em;
  }
}

@media screen and (max-width: 639.98px) {
  .circle-table tr {
    padding: .4em 0;
  }
}

.circle-table tr th {
  font-size: 2.2rem;
  font-weight: 700;
  padding-left: .6em;
  width: 14em;
  line-height: 1.4;
  border-left: 8px solid #cc571f;
}

@media screen and (max-width: 1099.98px) {
  .circle-table tr th {
    font-size: 2rem;
    width: 13em;
  }
}

@media screen and (max-width: 991.98px) {
  .circle-table tr th {
    width: 100%;
  }
}

.circle-table tr th span {
  display: block;
  font-size: 1.4rem;
}

.circle-table tr td {
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

.circle-table tr td:first-of-type {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  min-width: 0;
}

@media screen and (max-width: 1099.98px) {
  .circle-table tr td {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 991.98px) {
  .circle-table tr td {
    width: 100%;
    padding-left: 1em;
    padding-top: .5em;
    text-align: left;
  }
}

@media screen and (max-width: 639.98px) {
  .circle-table tr td {
    font-size: 1.8rem;
    padding-left: .5em;
  }
}

.circle-table tr td p {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 991.98px) {
  .circle-table tr td p {
    text-align: left;
  }
}

.circle-table tr td .circle-list li {
  text-align: left;
  font-size: 1.8rem;
}

.circle-table tr td .circle-list li::before {
  background-color: #cc571f;
  width: 8px;
  height: 8px;
}

.circle-txt {
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  text-align: justify;
  margin-bottom: 2em;
}

.circle-txt .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .circle-txt .br {
    display: block;
  }
}

/* ハワイアンキルトサークル */
.hawaiian-quilt .circle-wrap {
  margin-top: 3em;
}

.hawaiian-quilt .circle-wrap .main-subheading {
  padding-top: .4em;
  padding-bottom: .4em;
}

.hawaiian-quilt .circle-wrap .circle-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2em;
}

@media screen and (max-width: 639.98px) {
  .hawaiian-quilt .circle-wrap .circle-images {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1em;
  }
}

.hawaiian-quilt .circle-wrap .circle-images .image-item {
  max-width: 341px;
}

@media screen and (max-width: 639.98px) {
  .hawaiian-quilt .circle-wrap .circle-images .image-item {
    width: calc(50% - 8px);
    max-width: none;
  }
}

@media screen and (max-width: 479.98px) {
  .hawaiian-quilt .circle-wrap .circle-images .image-item {
    width: 100%;
  }
}

.hawaiian-quilt .circle-wrap .circle-images .image-item:not(:last-child) {
  margin-right: 40px;
}

@media screen and (max-width: 639.98px) {
  .hawaiian-quilt .circle-wrap .circle-images .image-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1em;
  }
}

@media screen and (max-width: 639.98px) {
  .hawaiian-quilt .circle-wrap .circle-images .image-item:first-child {
    margin-right: 1em;
  }
}

@media screen and (max-width: 479.98px) {
  .hawaiian-quilt .circle-wrap .circle-images .image-item:first-child {
    margin-right: 0;
  }
}

.hawaiian-quilt-section .inner {
  padding-left: 0;
  padding-right: 0;
}

/* ウクレレ教室 */
.ukulele .ukulele-table tr th {
  width: 15em;
}

@media screen and (max-width: 991.98px) {
  .ukulele .ukulele-table tr th {
    width: 100%;
  }
}

.ukulele .ukulele-table tr td:last-of-type {
  padding-right: 3em;
}

@media screen and (max-width: 991.98px) {
  .ukulele .ukulele-table tr td:last-of-type {
    padding-right: 0;
  }
}

.ukulele-section .inner {
  padding-right: 0;
  padding-left: 0;
}

/* その他フラサークル */
.other-hulacircle .circle-more {
  text-align: center;
  margin-top: 5em;
}

@media screen and (max-width: 639.98px) {
  .other-hulacircle .circle-more {
    margin-top: 2em;
  }
}

.other-hulacircle-section .inner {
  padding-right: 0;
  padding-left: 0;
}

.other-hulacircle-section .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .other-hulacircle-section .br {
    display: block;
  }
}

.other-hulacircle .other-table {
  display: table;
  width: 100%;
  border-collapse: separate;
}

.other-hulacircle .other-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: .7em 0;
  border-bottom: 1px solid #cc571f;
}

@media screen and (max-width: 991.98px) {
  .other-hulacircle .other-table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: .5em 0;
  }
}

.other-hulacircle .other-table tr th, .other-hulacircle .other-table tr td {
  vertical-align: middle;
}

.other-hulacircle .other-table tr th {
  font-size: 2.4rem;
  font-weight: 700;
  padding: .15em .4em;
  border-left: 8px solid #cc571f;
  width: 16.5em;
  line-height: 1.2;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

@media screen and (max-width: 1099.98px) {
  .other-hulacircle .other-table tr th {
    font-size: 2rem;
  }
}

@media screen and (max-width: 639.98px) {
  .other-hulacircle .other-table tr th {
    width: 100%;
  }
}

.other-hulacircle .other-table tr td {
  font-size: 1.8rem;
  line-height: 1.6;
}

@media screen and (max-width: 991.98px) {
  .other-hulacircle .other-table tr td {
    padding: .3em 0;
    padding-left: 1em;
    width: 100%;
  }
}

@media screen and (max-width: 639.98px) {
  .other-hulacircle .other-table tr td {
    padding-left: .5em;
  }
}

.other-hulacircle .other-table tr td span {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 1099.98px) {
  .other-hulacircle .other-table tr td span {
    font-size: 2rem;
  }
}

.other-hulacircle .other-table tr td .other-list {
  margin: -.35em;
}

.other-hulacircle .other-table tr td .other-list li {
  padding-left: 1.3em;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

.other-hulacircle .other-table tr td .other-list li::before {
  width: 8px;
  height: 8px;
  background-color: #cc571f;
}

.other-hulacircle .other-table tr td:first-of-type {
  width: 9em;
  padding-right: 1em;
}

@media screen and (max-width: 1099.98px) {
  .other-hulacircle .other-table tr td:first-of-type {
    width: 6.5em;
  }
}

@media screen and (max-width: 991.98px) {
  .other-hulacircle .other-table tr td:first-of-type {
    padding-right: 0;
    width: 100%;
  }
}

.other-hulacircle .other-table tr td:not(:first-of-type) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.other-hulacircle .other-table tr td:last-of-type {
  text-align: left;
  padding-left: .5em;
}

@media screen and (max-width: 991.98px) {
  .other-hulacircle .other-table tr td:last-of-type {
    width: 100%;
    text-align: left;
  }
}

/* --------------------------------

  id06　出演のご依頼

-------------------------------- */
/* 様々なイベントにフラを検討してみませんか？ */
.offer-intro {
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

.offer-more {
  text-align: center;
  margin-top: 2.5em;
}

@media screen and (max-width: 639.98px) {
  .offer-more {
    margin-top: 2em;
  }
}

.offer-images {
  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;
  margin-top: 2em;
}

@media screen and (max-width: 767.98px) {
  .offer-images {
    padding: 0;
  }
}

@media screen and (max-width: 479.98px) {
  .offer-images {
    -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;
  }
}

.offer-images .image-item {
  width: calc(25% - 12px);
  text-align: center;
}

.offer-images .image-item:nth-child(3) .offer-ttl {
  letter-spacing: -.05em;
}

@media screen and (max-width: 767.98px) {
  .offer-images .image-item {
    width: 50%;
    padding: .5em;
  }
}

@media screen and (max-width: 479.98px) {
  .offer-images .image-item {
    width: 100%;
  }
}

.offer-images .image-item:not(:last-child) {
  margin-right: 1em;
}

@media screen and (max-width: 767.98px) {
  .offer-images .image-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1em;
  }
}

@media screen and (max-width: 479.98px) {
  .offer-images .image-item:not(:last-child) {
    margin-bottom: 1em;
    padding: 0;
  }
}

.offer-images .image-item .offer-ttl {
  font-size: 1.6rem;
  padding-top: .8em;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

.offer-section .inner {
  padding-right: 0;
  padding-left: 0;
}

/* イベント情報　news-heading */
.offer-news .news-list .news-link {
  border-bottom-style: solid;
}

.offer-news .news-back {
  border-top-style: solid;
}

.offer-news .news-heading {
  color: #cc571f;
  border-bottom: 2px dotted #cc571f;
  font-size: 2.4rem;
  padding: 1rem 0 1rem 50px;
}

@media screen and (max-width: 639.98px) {
  .offer-news .news-heading {
    font-size: 2rem;
    padding: .7rem 0 .7rem 40px;
  }
}

.offer-news .news-heading::before {
  content: "";
  background: url("../img/base/flower_org.svg") no-repeat center;
  background-size: cover;
  width: 44px;
  height: 40px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 639.98px) {
  .offer-news .news-heading::before {
    width: 35px;
    height: 35px;
  }
}

/* --------------------------------

  id07　レッスンスケジュール

-------------------------------- */
/* レッスンスケジュール */
.schedule {
  text-align: center;
}

.schedule-section .inner {
  padding-right: 0;
  padding-left: 0;
}

/* --------------------------------

  id08　お問い合わせ

-------------------------------- */
/* お問い合わせ・体験レッスン受付中！ */
.contact-trial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767.98px) {
  .contact-trial {
    -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;
  }
}

.contact-trial .trial-side {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  text-align: center;
}

.contact-trial .trial-main {
  width: 50%;
  margin-right: 2em;
}

@media screen and (max-width: 767.98px) {
  .contact-trial .trial-main {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2em;
  }
}

@media screen and (max-width: 639.98px) {
  .contact-trial .trial-main {
    margin-bottom: 1em;
  }
}

.contact-trial .trial-main .trial-more {
  text-align: center;
  margin-top: 2.5em;
}

@media screen and (max-width: 639.98px) {
  .contact-trial .trial-main .trial-more {
    margin-top: 1em;
  }
}

.contact-trial .trial-main .trial-txt {
  font-size: 1.8rem;
  line-height: 1.6;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

@media screen and (max-width: 639.98px) {
  .contact-trial .trial-main .trial-txt {
    font-size: 1.6rem;
  }
}

.contact-trial .trial-main .trial-txt .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .contact-trial .trial-main .trial-txt .br {
    display: block;
  }
}

.contact-trial .trial-main .trial-txt p {
  font-weight: 500;
}

.contact-trial .trial-main .trial-txt .accent {
  color: #cc571f;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.2;
  margin-top: .3em;
}

@media screen and (max-width: 639.98px) {
  .contact-trial .trial-main .trial-txt .accent {
    font-size: 1.8rem;
  }
}

.contact-trial-section .inner {
  padding-left: 0;
  padding-right: 0;
}

.contact-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 767.98px) {
  .contact-tel {
    -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;
  }
}

.contact-tel .mobile-more {
  padding-left: 2.5em;
  font-size: 1.8rem;
}

@media screen and (max-width: 767.98px) {
  .contact-tel .mobile-more {
    padding-left: 0;
    margin-top: 1em;
  }
}

@media screen and (max-width: 639.98px) {
  .contact-tel .mobile-more {
    font-size: 1.6rem;
  }
}

.contact-tel .mobile-more .tel-link {
  font-weight: 700;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

.contact-tel .tel-more {
  position: relative;
  font-size: 3.8rem;
  line-height: 1.2;
  color: #cc571f;
  padding-left: 1.6em;
}

@media screen and (max-width: 639.98px) {
  .contact-tel .tel-more {
    font-size: 2.6rem;
    padding-left: 1.4em;
  }
}

.contact-tel .tel-more .tel-num {
  font-weight: 700;
}

.contact-tel .tel-more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  background: url("../img/base/tel_org.svg") no-repeat center;
  background-size: cover;
  width: 48px;
  height: 48px;
}

@media screen and (max-width: 639.98px) {
  .contact-tel .tel-more::before {
    width: 30px;
    height: 30px;
  }
}

.contact-tel-section .inner {
  padding-right: 0;
  padding-left: 0;
}

/* 個人情報及び特定個人情報保護方針 */
.contact-privacy {
  height: 25em;
  padding: 1em;
  font-size: .9em;
  border: 1px solid #ddd;
  background-color: #fff;
  overflow-y: scroll;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  margin-bottom: .5em;
}

@media screen and (min-width: 640px), print {
  .contact-privacy {
    height: 15em;
  }
}

@media screen and (min-width: 768px), print {
  .contact-privacy {
    font-size: 1em;
  }
}

.contact-privacy-section .inner {
  line-height: 1.5;
}

.contact-privacy h3 {
  margin: 1em 0 .3em;
  line-height: 1.3;
  font-size: 1.8rem;
  font-weight: 500;
}

.contact-privacy ul li::before {
  background-color: #151515;
}

.contact-privacy ol {
  margin-bottom: .85em;
}

.contact-privacy ol > ol {
  margin-top: .5em;
}

.contact-privacy dl {
  float: right;
  padding-top: 1.2em;
}

.contact-privacy .tel-link {
  color: #151515;
}

.contact-privacy a.tel-link {
  color: #151515;
}

.contact-privacy a.tel-link:hover {
  color: #ff4c4c;
}

/* --------------------------------

  修正・追加用

-------------------------------- */
.item.item-reserve {
    display: none;
}


/* メールフォームASP用 */
.myhp-form__items {
  position: relative;
}
@media screen and (min-width: 768px), print {
  .myhp-form__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 2rem 0;
  }
}
@media screen and (max-width: 767.98px) {
  .myhp-form__items:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.myhp-form__title {
  position: relative;
  display: block;
  padding: 1rem 0 1.5rem 0;
}
@media screen and (min-width: 768px), print {
  .myhp-form__title {
    width: 16em;
    padding: 1.8rem 1em 1.8rem 7.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .myhp-form__title {
    border-bottom: 1px solid #aa2031;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.myhp-form__required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 5rem;
  height: 2.5rem;
  border-radius: 10em;
  font-weight: 400;
  font-size: 1.4rem;
  color: #fff;
  background-color: #aa2031;
  border: 1px solid #fff;
  margin: 0 1rem 0 0;
  padding: 0.2rem;
}
@media screen and (min-width: 768px), print {
  .myhp-form__required {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 6.2rem;
    height: 3rem;
    font-size: 1.6rem;
    margin: 0 1.5rem 0 0;
  }
}
.myhp-form__label {
  display: block;
  line-height: 1.2;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .myhp-form__label {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .myhp-form__label {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}
.myhp-form__content {
  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;
}
@media screen and (min-width: 768px), print {
  .myhp-form__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}
.myhp-form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1.8rem 0 0;
  padding: 0.3em 0;
}
@media screen and (min-width: 768px), print {
  .myhp-form__radio {
    margin: 0 -2rem 0 0;
  }
}
.myhp-form__radio-col {
  padding: 0 1.8rem 0 0;
}
@media screen and (min-width: 768px), print {
  .myhp-form__radio-col {
    padding: 0 2rem 0 0;
  }
}
.myhp-form__radio-input {
  display: none;
}
.myhp-form__radio-input:checked + .myhp-form__radio-button::after {
  opacity: 1;
}
.myhp-form__radio-button {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 0.7em 0 0.7em 2.8em;
}
@media screen and (min-width: 768px), print {
  .myhp-form__radio-button {
    font-size: 1.8rem;
    padding: 0.7em 0 0.7em 2.8em;
  }
}
.myhp-form__radio-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  border: 1px solid #ccc;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  .myhp-form__radio-button::before {
    width: 4rem;
    height: 4rem;
  }
}
.myhp-form__radio-button::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 100%;
  background-color: #aa2031;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px), print {
  .myhp-form__radio-button::after {
    width: 2.4rem;
    height: 2.4rem;
    left: 0.8rem;
  }
}
.myhp-form__select {
  position: relative;
  max-width: 300px;
}
.myhp-form__select::before {
  content: "";
  position: absolute;
  right: 2.3rem;
  top: 2.3rem;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  z-index: 1;
  pointer-events: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px), print {
  .myhp-form__select {
    max-width: 300px;
  }
}
.myhp-form__select-input {
  display: block;
  width: 100%;
  height: 60px;
  font-size: 1.6rem;
  padding: 1rem 5rem 1rem 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 1rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (min-width: 768px), print {
  .myhp-form__select-input {
    padding: 1.75rem 5rem 1.75rem 1.5rem;
  }
}
.myhp-form__select-input:hover, .myhp-form__select-input:active, .myhp-form__select-input:focus {
  outline: none;
  text-decoration: none;
}
.myhp-form__select-input:active, .myhp-form__select-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #aa2031;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  .myhp-form__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.myhp-form__name-col:first-child {
  margin: 0 0 1.5rem 0;
}
@media screen and (min-width: 768px), print {
  .myhp-form__name-col:first-child {
    margin: 0 2rem 0 0;
  }
}
.myhp-form__textfield {
  display: block;
  width: 100%;
  height: 60px;
  padding: 1.75rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 1rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.myhp-form__textfield:hover, .myhp-form__textfield:active, .myhp-form__textfield:focus {
  outline: none;
  text-decoration: none;
}
.myhp-form__textfield:active, .myhp-form__textfield:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #aa2031;
  background-color: #fff;
}
.myhp-form__mail-row:first-child {
  margin: 0 0 1.5rem 0;
}
@media screen and (min-width: 768px), print {
  .myhp-form__mail-row:first-child {
    margin: 0 0 1.5rem 0;
  }
}
.myhp-form__mail-title {
  display: block;
  line-height: 1.2;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .myhp-form__mail-title {
    font-size: 1.4rem;
  }
}
.myhp-form__textarea {
  height: 18em;
  max-height: 18em;
  min-height: 4em;
  padding: 1.75rem 1.5rem 0;
  display: block;
  width: 100%;
  padding: 1.75rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 1rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.myhp-form__textarea:hover, .myhp-form__textarea:active, .myhp-form__textarea:focus {
  outline: none;
  text-decoration: none;
}
.myhp-form__textarea:active, .myhp-form__textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #aa2031;
  background-color: #fff;
}
.myhp-form__privacypolicy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0 0 0;
}
@media screen and (min-width: 768px), print {
  .myhp-form__privacypolicy {
    margin: 40px 0 0 0;
  }
}
.myhp-form__privacypolicy-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.myhp-form__privacypolicy-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.myhp-form__privacypolicy-input:checked + .myhp-form__privacypolicy-button:before {
  background: url(../img/base/aikon-check.svg) no-repeat center #aa2031;
  background-size: cover;
  border-color: #aa2031;
}
.myhp-form__privacypolicy-button {
  cursor: pointer;
}
.myhp-form__privacypolicy-button:before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 1rem 0 0;
  background: #f5f5fb;
  border-radius: 0;
  border: 1px solid #e1e2eb;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px), print {
  .myhp-form__privacypolicy-button:before {
    width: 3rem;
    height: 3rem;
    margin-right: 1.5rem;
  }
}
.myhp-form__privacypolicy-text {
  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;
}
@media screen and (max-width: 767.98px) {
  .myhp-form__privacypolicy-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.myhp-form__privacypolicy-link {
  color: #aa2031;
}
.myhp-form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767.98px) {
  .myhp-form__button {
    -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;
    margin-top: 3.5rem;
  }
}
.myhp-form__button-back {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  line-height: 1.2;
  display: inline-block;
  border-radius: 10em;
  color: #fff;
  background-color: #aa2031;
  padding: 1rem 3rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
@media screen and (min-width: 768px), print {
  .myhp-form__button-back {
    font-size: 1.6rem;
  }
}
.myhp-form__button-back:hover {
  text-decoration: none;
  opacity: 0.8;
}
.myhp-form__button-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  line-height: 1.2;
  display: inline-block;
  border-radius: 10em;
  color: #fff;
  background-color: #aa2031;
  padding: 1rem 3rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
@media screen and (min-width: 768px), print {
  .myhp-form__button-submit {
    font-size: 1.6rem;
  }
}
.myhp-form__button-submit:hover {
  text-decoration: none;
  opacity: 0.8;
}
.myhp-form__button-item:first-child {
  margin: 0 1.6rem 0 0;
}
@media screen and (max-width: 767.98px) {
  .myhp-form__button-item:first-child {
    margin: 0 0 1.5rem 0;
  }
}
.myhp-form__button-confirm {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  line-height: 1.2;
  display: inline-block;
  border-radius: 10em;
  color: #fff;
  background-color: #aa2031;
  padding: 1rem 3rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
@media screen and (min-width: 768px), print {
  .myhp-form__button-confirm {
    font-size: 1.6rem;
  }
}
.myhp-form__button-confirm:hover {
  text-decoration: none;
}
.myhp-form__button-confirm:not(:disabled):hover {
  color: #fff;
  background-color: #ff4c4c;
}
.myhp-form__confirm .g-recaptcha {
  margin-top: 3rem !important;
}
.myhp-form__confirm .myhp-form__title {
  padding: 0 2rem;
  width: 13em;
}
@media screen and (max-width: 767.98px) {
  .myhp-form__confirm .myhp-form__title {
    padding: 1rem 0 1.5rem 0;
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .myhp-form__confirm .myhp-form__label {
    font-weight: 500;
  }
}
@media screen and (max-width: 767.98px) {
  .myhp-form__confirm .myhp-form__content {
    padding: 0 0 0 0.5rem;
  }
}
.myhp-form__confirm .myhp-form__label, .myhp-form__confirm .myhp-form__content {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .myhp-form__confirm .myhp-form__label, .myhp-form__confirm .myhp-form__content {
    font-size: 1.6rem;
  }
}
.myhp-form__note {
  line-height: 2;
  display: block;
  width: 100%;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .myhp-form__note {
    font-size: 1.4rem;
    padding: 0 0 0 18.4em;
  }
}
.myhp-form__error {
  line-height: 2;
  display: block;
  width: 100%;
  color: #c00;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .myhp-form__error {
    font-size: 1.4rem;
    padding: 0 0 0 18.4em;
  }
}


/* Cookieポリシー */
.privacys {
	background-color: #FFF;
	margin: 50px 0 0;
	padding: 20px;
  height: 260px;
  overflow-y: scroll;
	box-sizing: border-box;
	border: 1px solid #D6D6D6;
}
.privacys h2{
	font-size: 1.5em;
	line-height: 1.5;
	font-weight: 500;
	text-align: center;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
.privacys h3{
	font-size: 1.5em;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 5px;
	padding-top: 15px;
}
.privacys p{
	font-size: 1em;
	line-height: 1.5;
	font-weight: normal;
	margin-bottom: 10px;
}
.privacys h4{
	font-size: 1.25em;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 5px;
	padding-top: 10px;
}
.privacys a { color: #000;text-decoration:underline !important;}
.privacys a:hover { color: #333 !important; text-decoration:none !important;}

ul.point-dot {
	list-style-type: none;
	padding-left: 5px;
	overflow: hidden;
}
ul.point-dot li{padding-left: 1em;}  
ul.point-dot li:before {
	content: "●";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1em;
	line-height: 1.5;
	color: #000;
	background: none;
}
.point-dot li {
	position: relative;
	font-size: 1em;
	line-height: 22px;
	text-align: left;
}
.protable {padding-top: 20px;padding-bottom: 10px;}
.protable-table {
	box-sizing: border-box;
	font-size: 11pt;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	line-height: 21px;
	border-spacing: 0;
	border-color: #C9C9C9;
	border-style: solid;
	border-width: 1px 0 0 1px;
}

.protable-table div {}
.protable-table th {
	width: 10em;
	font-size: 1em;
	line-height: 1.5;
	font-weight: 500;
	box-sizing: border-box;
	padding: 10px 0;
	text-align: center;
	background-color: #f0f0f0;
	border-color: #C9C9C9;
	border-style: solid;
	border-width: 0 1px 1px 0;
	vertical-align: middle;
}
.protable-table tr {
	margin-bottom: 5px;
}
.protable-table td {
	background-color: #FFF;
	font-size: 1em;
	line-height: 1.5;
	font-weight: normal;
	box-sizing: border-box;
	padding: 10px;
	border-color: #C9C9C9;
	border-style: solid;
	border-width: 0 1px 1px 0;
	vertical-align: middle;
}
ol.point-maru {
	counter-reset: my-counter;
	/*padding-left: 10px;*/
	list-style: none;
	margin-right: auto;
	margin-left: auto;
}
ol.point-maru li{
	margin-left: 0;
	padding-left: 27px;
	position: relative;
	list-style-type: none;
}
ol.point-maru li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	background-color: #000;
	color: #FFF;
	display: inline-block;
	line-height: 22px;
	margin-left: -27px;
	text-align: center;
	height: 22px;
	width: 22px;
	border-radius: 50%;
	font-size: 9pt;
	margin-right: 5px;
	vertical-align: 5%;
}
ol.point-maru li {
	position: relative;
	font-size: 11pt;
	line-height: 22px;
	padding-top: 2px;
	padding-bottom: 2px;
	text-align: left;
}
ol.point-maru2 {
	counter-reset: my-counter;
	/*padding-left: 10px;*/
	list-style: none;
	margin-right: auto;
	margin-left: auto;
}
ol.point-maru2 li{
	/*padding-left: 20px;*/
	position: relative;
	list-style-type: none;
}
ol.point-maru2 li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	color: #000;
	display: inline-block;
	line-height: 22px;
	margin-left: -27px;
	text-align: center;
	/*height: 22px;*/
	width: 22px;
	/*border-radius: 50%;*/
	font-size: 11pt;
	margin-right: 5px;
	vertical-align: -2%;
}
ol.point-maru2 li {
	position: relative;
	font-size: 11pt;
	line-height: 22px;
	padding-top: 2px;
	padding-bottom: 2px;
	text-align: left;
}

/* 260901 追記 */
.nanilehua-intro-img {
  margin: 0 -15px -15px 0;
}

.nanilehua-intro-img .img-item {
  padding: 0 15px 15px 0;
} 

@media screen and (min-width: 480px), print {
  .nanilehua-intro-img .img-item {
    width: 50%;
  }
}

@media screen and (min-width: 1100px), print {
  .nanilehua-intro-img {
    margin: 0 -30px -30px 0;
  }
  .nanilehua-intro-img .img-item {
    padding: 0 30px 30px 0;
  }
}
