@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

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

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

a img {
  border: none; }

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important; } }

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none; }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #3A322E;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

p {
  -webkit-text-size-adjust: none; }

ul {
  -webkit-text-size-adjust: none; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a {
  color: inherit;
  text-decoration: none; }

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

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

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1040px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 23px; } }

[data-trigger] {
  position: relative;
  transform: translateY(60px);
  -webkit-transition: -webkit-transform 1s, opacity 1s;
  -moz-transition: -moz-transform 1s, opacity 1s;
  -o-transition: -o-transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s;
  opacity: 0; }
  [data-trigger].visible {
    transform: translateY(0px);
    opacity: 1; }

main {
  padding-top: 124px; }
  @media only screen and (max-width: 1185px) {
    main {
      padding-top: 10.46413502vw; } }
  @media only screen and (max-width: 767px) {
    main {
      padding-top: 64px; } }

.footerTop {
  padding: 80px 0;
  background: #fff;
  position: relative;
  -webkit-text-size-adjust: 100%; }
  @media only screen and (max-width: 767px) {
    .footerTop {
      padding: 48px 0;
      overflow: hidden; } }
  .footerTop:before {
    content: "";
    width: 100%;
    height: 280px;
    display: block;
    background: #EEE8E2;
    position: absolute;
    left: 0;
    bottom: 0; }
    @media only screen and (max-width: 1112px) {
      .footerTop:before {
        height: 25.17985612vw; } }
    @media only screen and (max-width: 767px) {
      .footerTop:before {
        height: 280px; } }
  .footerTop .inner {
    max-width: 1112px;
    position: relative; }
    @media only screen and (max-width: 1112px) {
      .footerTop .inner {
        padding: 0 3.5971223vw; } }
    @media only screen and (max-width: 767px) {
      .footerTop .inner {
        padding: 0 23px; } }
  .footerTop .banner {
    display: block;
    width: 100%;
    max-width: 850px;
    margin: 0 auto 80px;
    filter: drop-shadow(0 4px 16px #ffe5e1);
    transition: opacity .3s; }
    .footerTop .banner:hover {
      opacity: 0.6; }
    @media only screen and (max-width: 767px) {
      .footerTop .banner {
        margin-bottom: 48px; } }
  .footerTop .welcome .spSlider {
    overflow: visible; }
  .footerTop .welcome__list {
    margin-top: 24px;
    display: flex;
    justify-content: space-between; }
    .footerTop .welcome__list__image {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
      .footerTop .welcome__list__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform .3s; }
    .footerTop .welcome__list__name {
      position: absolute;
      top: 24px;
      left: 24px;
      color: #fff;
      width: calc(100% - 48px); }
      @media only screen and (max-width: 1112px) {
        .footerTop .welcome__list__name {
          top: 2.15827338vw;
          left: 2.15827338vw;
          width: calc(100% - 4.31654676vw); } }
      @media only screen and (max-width: 767px) {
        .footerTop .welcome__list__name {
          top: 24px;
          left: 24px;
          width: calc(100% - 48px); } }
      .footerTop .welcome__list__name .jp {
        display: block;
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: 0.05em;
        line-height: 1.5;
        font-weight: 600;
        font-family: "Shippori Mincho", serif; }
        @media only screen and (max-width: 1112px) {
          .footerTop .welcome__list__name .jp {
            font-size: 1.61870504vw; } }
        @media only screen and (max-width: 767px) {
          .footerTop .welcome__list__name .jp {
            font-size: 18px;
            font-size: 1.8rem; } }
      .footerTop .welcome__list__name .en {
        display: block;
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: 0.05em;
        line-height: 1.5;
        font-weight: 500;
        font-family: "Lora", serif; }
        @media only screen and (max-width: 1112px) {
          .footerTop .welcome__list__name .en {
            font-size: 1.61870504vw; } }
        @media only screen and (max-width: 767px) {
          .footerTop .welcome__list__name .en {
            font-size: 18px;
            font-size: 1.8rem; } }
    .footerTop .welcome__list__bottom {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      padding: 24px 16px 40px;
      color: #fff;
      text-align: center; }
      @media only screen and (max-width: 1112px) {
        .footerTop .welcome__list__bottom {
          padding: 2.15827338vw 1.43884892vw 3.5971223vw; } }
      @media only screen and (max-width: 767px) {
        .footerTop .welcome__list__bottom {
          padding: 24px 16px 40px; } }
      .footerTop .welcome__list__bottom:before {
        content: "";
        width: 166.66666667%;
        height: 138.88888889%;
        border-radius: 50%;
        display: block;
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0%); }
      .footerTop .welcome__list__bottom.lt-blue:before {
        background: #77CCCC; }
      .footerTop .welcome__list__bottom.blue:before {
        background: #019FE8; }
      .footerTop .welcome__list__bottom.lt-green:before {
        background: #029850; }
      .footerTop .welcome__list__bottom.green:before {
        background: #00723C; }
      .footerTop .welcome__list__bottom p {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 500;
        margin-bottom: 8px;
        position: relative;
        white-space: nowrap; }
        @media only screen and (max-width: 1112px) {
          .footerTop .welcome__list__bottom p {
            font-size: 1.43884892vw;
            margin-bottom: 0.71942446vw; } }
        @media only screen and (max-width: 767px) {
          .footerTop .welcome__list__bottom p {
            font-size: 16px;
            font-size: 1.6rem;
            margin-bottom: 8px; } }
      .footerTop .welcome__list__bottom span {
        display: block;
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 0.05em;
        font-weight: 500;
        position: relative; }
        @media only screen and (max-width: 1112px) {
          .footerTop .welcome__list__bottom span {
            font-size: 1.43884892vw; } }
        @media only screen and (max-width: 767px) {
          .footerTop .welcome__list__bottom span {
            font-size: 16px;
            font-size: 1.6rem; } }
    .footerTop .welcome__list li {
      width: 23.25581395%;
      border-radius: 8px;
      overflow: hidden;
      filter: drop-shadow(0 4px 16px #ffe5e1); }
      @media only screen and (max-width: 767px) {
        .footerTop .welcome__list li {
          width: 240px; } }
      .footerTop .welcome__list li a {
        display: block;
        width: 100%;
        padding-top: 133.33333333%;
        position: relative; }
        .footerTop .welcome__list li a:hover .welcome__list__image img {
          transform: scale(1.1); }

.footer__top {
  background: #fff;
  padding: 80px 0 48px;
  -webkit-text-size-adjust: 100%; }
  @media only screen and (max-width: 767px) {
    .footer__top {
      padding: 0; } }
  .footer__top .inner {
    max-width: 1177px;
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .footer__top .inner {
        display: block;
        padding: 0; } }

.footer__left {
  width: 31.35824977%; }
  @media only screen and (max-width: 767px) {
    .footer__left {
      width: 100%;
      padding: 48px 23px; } }
  .footer__left address {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 48px; }
    @media only screen and (max-width: 767px) {
      .footer__left address {
        margin-bottom: 32px; } }
  .footer__left .access span {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    color: #D96E91;
    margin-bottom: 16px; }
    .footer__left .access span small {
      font-size: 14px;
      font-size: 1.4rem;
      font-family: "Lora", serif;
      display: inline-block;
      margin-left: 8px; }
  .footer__left .access .map {
    position: relative;
    padding-top: 69.76744186%; }
    .footer__left .access .map iframe {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }

.footer__logo {
  display: block;
  width: 280px;
  max-width: 100%;
  margin-bottom: 24px;
  transition: opacity .3s; }
  .footer__logo:hover {
    opacity: 0.6; }
  @media only screen and (max-width: 767px) {
    .footer__logo {
      margin-bottom: 16px; } }

.footer__right {
  width: 63%;
  max-width: 593px; }
  @media only screen and (max-width: 767px) {
    .footer__right {
      width: 100%;
      max-width: 100%;
      background: #FFE6E2;
      padding: 32px 23px; } }
  @media only screen and (max-width: 767px) {
    .footer__right__wrap {
      padding: 32px 4px;
      background: #fff;
      border-radius: 8px; } }
  .footer__right .attention {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      .footer__right .attention {
        text-align: center;
        margin-bottom: 24px; } }
  .footer__right .attention2 {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
    font-weight: 500;
    color: #D96E91; }
    @media only screen and (max-width: 767px) {
      .footer__right .attention2 {
        text-align: center;
        margin-top: 8px; } }
  .footer__right .tel-reserve {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      .footer__right .tel-reserve {
        flex-direction: column;
        margin-bottom: 0; } }
    .footer__right .tel-reserve .tel {
      display: flex;
      align-items: center;
      transition: opacity .3s; }
      .footer__right .tel-reserve .tel:hover {
        opacity: 0.6; }
      .footer__right .tel-reserve .tel i {
        display: inline-block;
        width: 48px;
        margin-right: 8px; }
        @media only screen and (max-width: 767px) {
          .footer__right .tel-reserve .tel i {
            width: 40px;
            margin-right: 4px; } }
      .footer__right .tel-reserve .tel span {
        font-family: "Lora", serif;
        letter-spacing: 0.1em;
        font-size: 30px;
        font-size: 3rem;
        white-space: nowrap; }
        @media only screen and (max-width: 767px) {
          .footer__right .tel-reserve .tel span {
            font-size: 36px;
            font-size: 3.6rem; } }
    .footer__right .tel-reserve hr {
      width: 1px;
      height: 64px;
      border: none;
      background: #D96E91;
      margin: 0 16px;
      display: block; }
      @media only screen and (max-width: 767px) {
        .footer__right .tel-reserve hr {
          width: 280px;
          height: 1px;
          margin: 16px auto; } }
    .footer__right .tel-reserve .reserve {
      width: 280px;
      height: 64px;
      border-radius: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #D96E91;
      color: #fff;
      border: 1px solid #D96E91;
      transition: color .3s, background-color .3s; }
      .footer__right .tel-reserve .reserve:hover {
        color: #D96E91;
        background: #fff; }
        .footer__right .tel-reserve .reserve:hover i svg path {
          stroke: #D96E91; }
      .footer__right .tel-reserve .reserve i {
        display: inline-block;
        width: 16px;
        margin-right: 12px; }
        .footer__right .tel-reserve .reserve i svg path {
          transition: stroke .3s; }
      .footer__right .tel-reserve .reserve span {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        font-weight: 600; }

.footer__list {
  display: flex;
  margin-bottom: 48px; }
  .footer__list ul {
    margin-right: 48px; }
    .footer__list ul:last-of-type {
      margin-right: 0; }
    .footer__list ul > li {
      margin-bottom: 24px; }
      .footer__list ul > li:last-of-type {
        margin-bottom: 0; }
      .footer__list ul > li a {
        transition: color .3s;
        white-space: nowrap; }
        .footer__list ul > li a:hover {
          color: #D96E91; }
      .footer__list ul > li a, .footer__list ul > li span {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1;
        font-weight: 500; }
      .footer__list ul > li ul {
        margin-top: 24px; }
        .footer__list ul > li ul li {
          margin-bottom: 20px;
          padding-left: 20px;
          position: relative; }
          .footer__list ul > li ul li:before {
            content: "";
            width: 6px;
            height: 10px;
            display: inline-block;
            background: url(../images/common/icon_arrow.svg) center center/cover no-repeat;
            position: absolute;
            top: 50%;
            left: 5px;
            transform: translate(0%, -50%); }
          .footer__list ul > li ul li:last-of-type {
            margin-bottom: 0; }
          .footer__list ul > li ul li a {
            font-size: 14px;
            font-size: 1.4rem;
            position: relative;
            transition: color .3s; }
            .footer__list ul > li ul li a:after {
              content: "";
              width: 100%;
              height: 5px;
              display: block;
              border-radius: 5px;
              background: #FFE6E2;
              position: absolute;
              left: 0;
              bottom: -2px;
              transition: opacity .3s;
              opacity: 0; }
            .footer__list ul > li ul li a:hover {
              color: #D96E91; }
              .footer__list ul > li ul li a:hover:after {
                opacity: 1; }

.footer__bottom {
  background: #D96E91;
  color: #fff;
  padding: 22px;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 500;
  text-align: center; }

.header {
  width: 100%;
  height: 124px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  z-index: 99;
  -webkit-text-size-adjust: 100%; }
  @media only screen and (max-width: 1185px) {
    .header {
      height: 10.46413502vw;
      padding: 0 3.37552743vw; } }
  @media only screen and (max-width: 767px) {
    .header {
      padding: 0;
      height: 64px; } }
  .header:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    filter: drop-shadow(0 4px 16px #ffe5e1);
    pointer-events: none; }
    @media only screen and (max-width: 767px) {
      .header:before {
        z-index: +1;
        filter: drop-shadow(0 2px 8px #ffe5e1); } }
  .header__left {
    padding: 16px 0;
    position: relative; }
    @media only screen and (max-width: 1185px) {
      .header__left {
        padding: 1.35021097vw 0; } }
    @media only screen and (max-width: 767px) {
      .header__left {
        padding: 16px 0;
        z-index: +2; } }
  .header__right {
    padding-top: 19px;
    position: relative; }
    @media only screen and (max-width: 1185px) {
      .header__right {
        padding-top: 1.60337553vw; } }
    @media only screen and (max-width: 767px) {
      .header__right {
        padding-top: 0;
        display: flex; } }
    .header__right .tel-reserve {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-bottom: 16px; }
      @media only screen and (max-width: 1185px) {
        .header__right .tel-reserve {
          margin-bottom: 1.35021097vw; } }
      @media only screen and (max-width: 767px) {
        .header__right .tel-reserve {
          margin-bottom: 0;
          position: relative;
          z-index: +1; } }
      .header__right .tel-reserve .telBox {
        margin-right: 20px;
        position: relative;
        top: 2px; }
        @media only screen and (max-width: 1185px) {
          .header__right .tel-reserve .telBox {
            margin-right: 1.68776371vw;
            top: 0.16877637vw; } }
        @media only screen and (max-width: 767px) {
          .header__right .tel-reserve .telBox {
            margin-right: 20px;
            top: 2px; } }
        .header__right .tel-reserve .telBox small {
          font-size: 12px;
          font-size: 1.2rem;
          font-weight: 500;
          display: block;
          text-align: center;
          margin-bottom: 3px; }
          @media only screen and (max-width: 1185px) {
            .header__right .tel-reserve .telBox small {
              font-size: 1.01265823vw;
              margin-bottom: 0.25316456vw; } }
          @media only screen and (max-width: 767px) {
            .header__right .tel-reserve .telBox small {
              font-size: 12px;
              font-size: 1.2rem;
              margin-bottom: 3px; } }
      .header__right .tel-reserve .tel {
        display: flex;
        align-items: center;
        transition: opacity .3s; }
        .header__right .tel-reserve .tel:hover {
          opacity: 0.6; }
        @media only screen and (max-width: 767px) {
          .header__right .tel-reserve .tel {
            width: 64px;
            height: 64px;
            justify-content: center;
            flex-direction: column; } }
        .header__right .tel-reserve .tel i {
          display: inline-block;
          width: 32px;
          margin-right: 8px; }
          @media only screen and (max-width: 1185px) {
            .header__right .tel-reserve .tel i {
              width: 2.70042194vw;
              margin-right: 0.67510549vw; } }
          @media only screen and (max-width: 767px) {
            .header__right .tel-reserve .tel i {
              width: 22px;
              margin: 0 auto 4px; } }
        .header__right .tel-reserve .tel span {
          font-family: "Lora", serif;
          letter-spacing: 0.1em;
          font-size: 24px;
          font-size: 2.4rem; }
          @media only screen and (max-width: 1185px) {
            .header__right .tel-reserve .tel span {
              font-size: 2.02531646vw; } }
          @media only screen and (max-width: 767px) {
            .header__right .tel-reserve .tel span {
              font-family: "Zen Kaku Gothic New", sans-serif;
              font-size: 10px;
              font-size: 1rem;
              letter-spacing: 0.2em;
              line-height: 1;
              font-weight: 500;
              color: #D96E91; } }
      .header__right .tel-reserve .reserve {
        width: 200px;
        height: 48px;
        border-radius: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #D96E91;
        color: #fff;
        border: 1px solid #D96E91;
        transition: color .3s, background-color .3s; }
        @media only screen and (max-width: 1185px) {
          .header__right .tel-reserve .reserve {
            width: 16.87763713vw;
            height: 4.05063291vw;
            border-radius: 2.70042194vw; } }
        @media only screen and (max-width: 767px) {
          .header__right .tel-reserve .reserve {
            width: 64px;
            height: 64px;
            flex-direction: column;
            border-radius: 0;
            padding-bottom: 2px; } }
        .header__right .tel-reserve .reserve:hover {
          color: #D96E91;
          background: #fff; }
          .header__right .tel-reserve .reserve:hover i svg path {
            stroke: #D96E91; }
        .header__right .tel-reserve .reserve i {
          display: inline-block;
          width: 16px;
          margin-right: 12px; }
          @media only screen and (max-width: 1185px) {
            .header__right .tel-reserve .reserve i {
              width: 1.35021097vw;
              margin-right: 1.01265823vw; } }
          @media only screen and (max-width: 767px) {
            .header__right .tel-reserve .reserve i {
              width: 20px;
              margin: 0 auto 6px; } }
          .header__right .tel-reserve .reserve i svg path {
            transition: stroke .3s; }
        .header__right .tel-reserve .reserve span {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.1em;
          font-weight: 600; }
          @media only screen and (max-width: 1185px) {
            .header__right .tel-reserve .reserve span {
              font-size: 1.35021097vw; } }
          @media only screen and (max-width: 767px) {
            .header__right .tel-reserve .reserve span {
              font-size: 10px;
              font-size: 1rem;
              font-weight: 500;
              letter-spacing: 0; } }
  .header__h1 {
    font-size: 10px;
    font-size: 1rem;
    margin-bottom: 8px;
    white-space: nowrap; }
    @media only screen and (max-width: 1185px) {
      .header__h1 {
        font-size: 0.84388186vw;
        margin-bottom: 0.67510549vw; } }
  .header__logo {
    display: block;
    width: 288px;
    transition: opacity .3s; }
    .header__logo:hover {
      opacity: 0.6; }
    @media only screen and (max-width: 1185px) {
      .header__logo {
        width: 24.30379747vw; } }
    @media only screen and (max-width: 767px) {
      .header__logo {
        width: 164px; } }
  @media only screen and (max-width: 767px) {
    .header .gnav {
      width: 100%;
      height: calc(100vh - 64px);
      position: fixed;
      top: 64px;
      left: 0;
      background: #fff;
      padding: 24px 23px 104px;
      overflow-y: scroll;
      transition: opacity .3s, visibility .3s;
      opacity: 0;
      visibility: hidden; }
      .header .gnav.is-active {
        opacity: 1;
        visibility: visible; } }
  .header .gnav__list {
    display: flex;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .header .gnav__list {
        display: block; } }
    .header .gnav__list > li {
      padding: 4px 16px 4px;
      position: relative;
      cursor: pointer; }
      @media only screen and (max-width: 1185px) {
        .header .gnav__list > li {
          padding: 0.33755274vw 1.35021097vw; } }
      @media only screen and (max-width: 767px) {
        .header .gnav__list > li {
          border-bottom: 1px solid #D96E91;
          padding: 0; } }
      .header .gnav__list > li:before {
        content: "";
        width: 100%;
        height: 2px;
        display: block;
        background: #D96E91;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: opacity .3s;
        opacity: 0; }
        @media only screen and (max-width: 1185px) {
          .header .gnav__list > li:before {
            height: 0.16877637vw; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list > li:before {
            content: none; } }
      .header .gnav__list > li:hover:before {
        opacity: 1; }
      .header .gnav__list > li:hover > a, .header .gnav__list > li:hover span {
        color: #D96E91; }
      .header .gnav__list > li:hover .childList {
        opacity: 1;
        visibility: visible; }
      .header .gnav__list > li:after {
        content: "";
        width: 1px;
        height: 24px;
        display: inline-block;
        background: #EFE8E2;
        position: absolute;
        top: 0;
        right: 0; }
        @media only screen and (max-width: 1185px) {
          .header .gnav__list > li:after {
            height: 2.02531646vw; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list > li:after {
            content: none; } }
      .header .gnav__list > li a, .header .gnav__list > li span {
        font-size: 16px;
        font-size: 1.6rem;
        font-family: "Shippori Mincho", serif;
        font-weight: 600;
        line-height: 1;
        display: block;
        padding-bottom: 17px;
        transition: color .3s;
        white-space: nowrap; }
        @media only screen and (max-width: 1185px) {
          .header .gnav__list > li a, .header .gnav__list > li span {
            font-size: 1.35021097vw;
            padding-bottom: 1.43459916vw; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list > li a, .header .gnav__list > li span {
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: 0.05em;
            font-weight: 500;
            padding: 20px 8px;
            font-family: "Zen Kaku Gothic New", sans-serif; } }
      @media only screen and (max-width: 767px) {
        .header .gnav__list > li .trigger {
          position: relative; }
          .header .gnav__list > li .trigger:before {
            content: "";
            width: 12px;
            height: 2px;
            display: block;
            background: #D96E91;
            position: absolute;
            right: 18px;
            top: 28px; }
          .header .gnav__list > li .trigger:after {
            content: "";
            width: 2px;
            height: 12px;
            display: block;
            background: #D96E91;
            position: absolute;
            right: 23px;
            top: 23px;
            transition: opacity .3s; } }
      @media only screen and (max-width: 767px) {
        .header .gnav__list > li .trigger.active:after {
          opacity: 0; } }
      .header .gnav__list > li .childList {
        background: #fff;
        padding: 16px;
        border-radius: 8px;
        position: absolute;
        left: 0;
        top: 50px;
        transition: opacity .3s, visibility .3s;
        opacity: 0;
        visibility: hidden; }
        @media only screen and (min-width: 768px) {
          .header .gnav__list > li .childList {
            filter: drop-shadow(0 4px 16px #ffe5e1); } }
        @media only screen and (max-width: 1185px) {
          .header .gnav__list > li .childList {
            padding: 1.35021097vw;
            border-radius: 0.67510549vw;
            top: 4.21940928vw; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list > li .childList {
            opacity: 1;
            visibility: visible;
            position: static;
            margin: 0;
            padding: 0 0px;
            display: none; } }
        .header .gnav__list > li .childList strong {
          font-size: 16px;
          font-size: 1.6rem;
          font-family: "Shippori Mincho", serif;
          font-weight: 600;
          line-height: 1;
          display: block;
          color: #D96E91;
          padding-bottom: 18px;
          border-bottom: 1px solid #EFE8E2;
          margin-bottom: 8px; }
          @media only screen and (max-width: 1185px) {
            .header .gnav__list > li .childList strong {
              padding-bottom: 1.51898734vw;
              font-size: 1.35021097vw;
              margin-bottom: 0.67510549vw; } }
          @media only screen and (max-width: 767px) {
            .header .gnav__list > li .childList strong {
              padding-bottom: 18px;
              font-size: 16px;
              font-size: 1.6rem;
              margin-bottom: 8px; } }
        .header .gnav__list > li .childList ul {
          margin-top: 18px; }
          @media only screen and (max-width: 1185px) {
            .header .gnav__list > li .childList ul {
              margin-top: 1.51898734vw; } }
          @media only screen and (max-width: 767px) {
            .header .gnav__list > li .childList ul {
              margin-top: 0; } }
          .header .gnav__list > li .childList ul li {
            padding-left: 20px;
            position: relative;
            margin-bottom: 20px; }
            @media only screen and (max-width: 1185px) {
              .header .gnav__list > li .childList ul li {
                padding-left: 1.68776371vw;
                margin-bottom: 1.68776371vw; } }
            @media only screen and (max-width: 767px) {
              .header .gnav__list > li .childList ul li {
                padding-left: 28px;
                margin-bottom: 20px; } }
            .header .gnav__list > li .childList ul li:last-of-type {
              margin-bottom: 10px; }
              @media only screen and (max-width: 1185px) {
                .header .gnav__list > li .childList ul li:last-of-type {
                  margin-bottom: 0.84388186vw; } }
              @media only screen and (max-width: 767px) {
                .header .gnav__list > li .childList ul li:last-of-type {
                  margin-bottom: 16px; } }
            .header .gnav__list > li .childList ul li:before {
              content: "";
              width: 7px;
              height: 10px;
              display: inline-block;
              background: url(../images/common/icon_arrow.svg) center center/cover no-repeat;
              margin-right: 11px;
              position: absolute;
              top: 50%;
              left: 5px;
              transform: translate(0, -50%); }
              @media only screen and (max-width: 1185px) {
                .header .gnav__list > li .childList ul li:before {
                  width: 0.5907173vw;
                  height: 0.84388186vw;
                  left: 0.42194093vw;
                  margin-right: 0.92827004vw; } }
              @media only screen and (max-width: 767px) {
                .header .gnav__list > li .childList ul li:before {
                  width: 7px;
                  height: 10px;
                  left: 11px;
                  margin-right: 11px; } }
            .header .gnav__list > li .childList ul li a {
              white-space: nowrap;
              font-family: "Zen Kaku Gothic New", sans-serif;
              font-weight: 500;
              font-size: 14px;
              font-size: 1.4rem;
              letter-spacing: 0.05em;
              padding-bottom: 0;
              transition: color .3s;
              position: relative;
              display: inline-block; }
              @media only screen and (max-width: 1185px) {
                .header .gnav__list > li .childList ul li a {
                  font-size: 1.1814346vw; } }
              @media only screen and (max-width: 767px) {
                .header .gnav__list > li .childList ul li a {
                  font-size: 14px;
                  font-size: 1.4rem;
                  padding: 0; } }
              .header .gnav__list > li .childList ul li a:after {
                content: "";
                width: 100%;
                height: 5px;
                display: block;
                border-radius: 5px;
                background: #FFE6E2;
                position: absolute;
                left: 0;
                bottom: -5px;
                transition: opacity .3s;
                opacity: 0; }
              .header .gnav__list > li .childList ul li a:hover {
                color: #D96E91; }
                .header .gnav__list > li .childList ul li a:hover:after {
                  opacity: 1; }

.hamburger {
  width: 64px;
  height: 64px;
  background: #FFE6E2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 8px;
  position: relative;
  z-index: +1; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
    transform: rotate(-135deg);
    top: 6px; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
    width: 0; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(3) {
    transform: rotate(135deg);
    bottom: 6px; }
  .hamburger__inner {
    width: 24px;
    height: 13px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; }
    .hamburger__inner span {
      display: block;
      width: 24px;
      height: 1px;
      background: #D96E91;
      position: absolute;
      left: 0;
      transition: transform .3s, width .3s, top .3s, bottom .3s; }
      .hamburger__inner span:nth-of-type(1) {
        top: 0; }
      .hamburger__inner span:nth-of-type(2) {
        top: 6px;
        left: auto;
        right: 0; }
      .hamburger__inner span:nth-of-type(3) {
        bottom: 0; }
  .hamburger small {
    display: block;
    text-align: center;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
    color: #D96E91;
    margin-top: 8px; }

.c-btn {
  width: 100%;
  max-width: 280px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-radius: 32px;
  transition: color .3s, background-color .3s, border-color .3s;
  color: #fff;
  background: #D96E91;
  border: 1px solid #D96E91;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 600; }
  @media only screen and (max-width: 767px) {
    .c-btn {
      font-size: 15px;
      font-size: 1.5rem; } }
  .c-btn:hover {
    background: #fff;
    color: #D96E91; }
    .c-btn:hover svg path {
      stroke: #D96E91; }
  .c-btn.white {
    background: #fff;
    color: #3A322E;
    border-color: #fff;
    filter: drop-shadow(0 4px 16px #ffe5e1);
    padding: 0 14px;
    justify-content: center;
    max-width: 344px;
    font-feature-settings: "palt"; }
    .c-btn.white svg {
      margin-right: 8px; }
    .c-btn.white:hover {
      border-color: #D96E91;
      color: #D96E91; }
  .c-btn.clear {
    background: none;
    color: #fff;
    border-color: #fff; }
    .c-btn.clear:hover {
      background: #fff;
      border-color: #D96E91;
      color: #D96E91; }
  .c-btn svg path {
    transition: stroke .3s; }

.c-title02 {
  color: #D96E91;
  text-align: center; }
  .c-title02 .jp {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 500;
    font-family: "Shippori Mincho", serif;
    margin-bottom: 8px; }
    @media only screen and (max-width: 767px) {
      .c-title02 .jp {
        line-height: 1.5; } }
  .c-title02 .en {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 500;
    font-family: "Lora", serif; }

.c-title03 {
  text-align: center;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 600;
  font-family: "Shippori Mincho", serif; }
  @media only screen and (max-width: 767px) {
    .c-title03 {
      font-size: 24px;
      font-size: 2.4rem; } }

.c-title04 {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 600;
  color: #D96E91; }
  .c-title04 small {
    font-size: 16px;
    font-size: 1.6rem; }

.c-sub-title {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  position: relative;
  z-index: +1; }
  @media only screen and (max-width: 767px) {
    .c-sub-title {
      font-size: 20px;
      font-size: 2rem; } }

.c-underline {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 2.1;
  font-weight: 600;
  font-family: "Shippori Mincho", serif; }
  @media only screen and (max-width: 767px) {
    .c-underline {
      font-size: 18px;
      font-size: 1.8rem; } }
  .c-underline span {
    background: linear-gradient(transparent 70%, #FFCFC8 70%);
    padding-bottom: 3px; }

.c-text01 {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 500; }

.c-col3 {
  display: flex;
  flex-wrap: wrap; }
  @media only screen and (max-width: 767px) {
    .c-col3 {
      display: block; } }
  .c-col3 li {
    width: 31.85185185%;
    margin-right: 2.22222222%;
    border-radius: 8px;
    overflow: hidden; }
    @media only screen and (max-width: 767px) {
      .c-col3 li {
        width: 100%;
        margin: 0 0 16px; } }
    .c-col3 li:nth-of-type(3n) {
      margin-right: 0; }
    @media only screen and (max-width: 767px) {
      .c-col3 li:last-of-type {
        margin-bottom: 0; } }
    .c-col3 li a {
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative; }
      .c-col3 li a:hover .image img {
        transform: scale(1.1); }
      .c-col3 li a:hover .c-btn {
        background: #fff;
        border-color: #D96E91;
        color: #D96E91; }
        .c-col3 li a:hover .c-btn svg path {
          stroke: #D96E91; }
    .c-col3 li .image {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0; }
      .c-col3 li .image:after {
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        background: rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0; }
      .c-col3 li .image img {
        transition: transform .3s; }
    .c-col3 li .title {
      font-size: 24px;
      font-size: 2.4rem;
      letter-spacing: 0.05em;
      line-height: 1.5;
      font-weight: 600;
      font-family: "Shippori Mincho", serif;
      color: #fff;
      display: block;
      margin-bottom: 148px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .c-col3 li .title {
          margin-bottom: 28px; } }
    .c-col3 li .text {
      position: relative; }
      .c-col3 li .text .c-text01 {
        color: #fff;
        margin-bottom: 24px; }

.c-check dl {
  position: relative;
  padding: 32px 48px;
  background: #fff;
  border-radius: 16px;
  filter: drop-shadow(0 4px 16px #ffe5e1);
  margin-bottom: 24px;
  display: flex;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .c-check dl {
      display: block;
      padding: 24px 16px; } }
  .c-check dl:last-of-type {
    margin-bottom: 0; }
  .c-check dl .check {
    font-size: 48px;
    font-size: 4.8rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
    font-family: "Allison", cursive;
    color: #D96E91;
    display: inline-block;
    transform: rotate(-15deg);
    position: absolute;
    top: -22px;
    left: -8px; }
    @media only screen and (max-width: 767px) {
      .c-check dl .check {
        top: -32px; } }
  .c-check dl dt {
    width: 264px; }
    @media only screen and (max-width: 767px) {
      .c-check dl dt {
        width: 100%;
        text-align: center;
        margin-bottom: 16px; } }
  .c-check dl dd {
    width: calc(100% - 264px); }
    @media only screen and (max-width: 767px) {
      .c-check dl dd {
        width: 100%; } }
    .c-check dl dd .c-list {
      margin-bottom: 16px; }

.c-list {
  padding: 24px;
  border: 1px solid #D96E91;
  border-radius: 8px;
  background: #fff; }
  @media only screen and (max-width: 767px) {
    .c-list {
      padding: 16px; } }
  .c-list li {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 600;
    padding-left: 1.25em;
    position: relative;
    margin-bottom: 8px; }
    @media only screen and (max-width: 767px) {
      .c-list li {
        padding-left: 1.2em; } }
    .c-list li:last-of-type {
      margin-bottom: 0; }
    .c-list li:before {
      content: "・";
      position: absolute;
      top: 0;
      left: 0; }

.c-list-num {
  padding: 24px;
  border: 1px solid #D96E91;
  border-radius: 8px;
  background: #fff;
  counter-reset: number 0; }
  @media only screen and (max-width: 767px) {
    .c-list-num {
      padding: 16px; } }
  .c-list-num li {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
    font-weight: 500;
    padding-left: 1.7em;
    position: relative;
    margin-bottom: 8px;
    color: #D96E91; }
    @media only screen and (max-width: 767px) {
      .c-list-num li {
        padding-left: 1.6em;
        margin-bottom: 14px; } }
    .c-list-num li:last-of-type {
      margin-bottom: 0; }
    .c-list-num li:before {
      counter-increment: number 1;
      content: counter(number) ".";
      position: absolute;
      top: 0;
      left: 0.3em; }

.c-profile figure {
  position: relative; }
  .c-profile figure figcaption {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 36px 0px;
    padding-bottom: 7px;
    width: 240px;
    height: 160px;
    position: relative;
    margin-left: auto;
    margin-top: -19%; }
    .c-profile figure figcaption:before {
      content: "";
      width: 94%;
      height: 92%;
      background: rgba(255, 230, 226, 0.7);
      border-radius: 50%;
      position: absolute;
      top: 49%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-20deg); }
    .c-profile figure figcaption p {
      position: relative;
      font-size: 16px;
      font-size: 1.6rem;
      font-size: 16px;
      white-space: nowrap; }

.c-step-text {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .c-step-text {
      display: block; } }
  .c-step-text .step {
    width: 120px;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .c-step-text .step {
        width: 100%; } }
    .c-step-text .step span {
      font-size: 24px;
      font-size: 2.4rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 500;
      font-family: "Shippori Mincho", serif;
      color: #D96E91;
      display: inline-block;
      padding-bottom: 10px;
      border-bottom: 1px solid #D96E91; }
      @media only screen and (max-width: 767px) {
        .c-step-text .step span {
          padding-bottom: 8px; } }
  .c-step-text .text {
    width: calc(100% - 144px); }
    @media only screen and (max-width: 767px) {
      .c-step-text .text {
        width: 100%;
        padding-top: 16px; } }
    .c-step-text .text .c-underline {
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        .c-step-text .text .c-underline {
          margin-bottom: 16px;
          text-align: center; } }
    .c-step-text .text .c-text01 {
      margin-bottom: 1em; }
      .c-step-text .text .c-text01:last-of-type {
        margin-bottom: 0; }
      .c-step-text .text .c-text01 a {
        color: #D96E91;
        text-decoration: underline; }
    .c-step-text .text .c-attention {
      margin-bottom: 8px; }
      .c-step-text .text .c-attention:last-of-type {
        margin-bottom: 0; }
    .c-step-text .text .line {
      padding: 24px 32px;
      border-radius: 8px;
      border: 1px solid #D96E91;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 24px; }
      @media only screen and (max-width: 767px) {
        .c-step-text .text .line {
          padding: 16px;
          margin-top: 16px;
          display: block; } }
      .c-step-text .text .line .c-text01 {
        width: calc(100% - 296px); }
        @media only screen and (max-width: 767px) {
          .c-step-text .text .line .c-text01 {
            width: 100%; } }
      .c-step-text .text .line .btn-line {
        width: 280px;
        height: 64px;
        border-radius: 48px;
        border: 1px solid #06C755;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color .3s, background-color .3s; }
        @media only screen and (max-width: 767px) {
          .c-step-text .text .line .btn-line {
            width: 100%;
            margin-top: 16px; } }
        .c-step-text .text .line .btn-line:hover {
          background: #06C755; }
          .c-step-text .text .line .btn-line:hover span {
            color: #fff; }
        .c-step-text .text .line .btn-line i {
          display: inline-block;
          width: 40px;
          margin-right: 20px; }
        .c-step-text .text .line .btn-line span {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.1em;
          font-weight: 600;
          color: #06C755;
          transition: color .3s; }

.c-point-text {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .c-point-text {
      display: block; } }
  .c-point-text .point {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #D96E91;
    color: #fff;
    font-family: "Lora", serif;
    font-weight: 600; }
    @media only screen and (max-width: 767px) {
      .c-point-text .point {
        margin: 0 auto 16px; } }
    .c-point-text .point small {
      display: block;
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.05em;
      line-height: 1.33333333; }
    .c-point-text .point span {
      display: block;
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0.05em;
      margin-top: 4px; }
  .c-point-text .text {
    width: calc(100% - 144px); }
    @media only screen and (max-width: 767px) {
      .c-point-text .text {
        width: 100%; } }
    .c-point-text .text .c-underline {
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        .c-point-text .text .c-underline {
          margin-bottom: 16px;
          text-align: center; } }

.c-image-text {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .c-image-text {
      display: block; } }
  .c-image-text .image {
    width: 32.59259259%; }
    @media only screen and (max-width: 767px) {
      .c-image-text .image {
        width: 100%; } }
  .c-image-text .text {
    width: 64.44444444%; }
    @media only screen and (max-width: 767px) {
      .c-image-text .text {
        width: 100%;
        margin-top: 32px; } }
    .c-image-text .text .c-text01 {
      margin-top: 16px; }
      .c-image-text .text .c-text01:first-of-type {
        margin-top: 0; }
    .c-image-text .text .c-attention {
      text-align: right;
      margin-top: 16px; }

.c-topicsList {
  border-top: 1px solid #D96E91; }
  .c-topicsList li {
    border-bottom: 1px solid #D96E91; }
    .c-topicsList li a {
      padding: 25px 8px 23px;
      display: block;
      transition: opacity .3s; }
      .c-topicsList li a:hover {
        opacity: 0.6; }
    .c-topicsList li .date {
      display: block;
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      font-weight: 600;
      color: #D96E91;
      margin-bottom: 8px; }
    .c-topicsList li .title {
      display: block;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 500; }

.c-table {
  width: 100%; }
  .c-table tr {
    border-bottom: 1px solid #D96E91; }
    .c-table tr th {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 500;
      padding: 16px 8px;
      width: 88px;
      vertical-align: top; }
      @media only screen and (max-width: 767px) {
        .c-table tr th {
          vertical-align: top;
          width: 64px;
          padding-left: 0; } }
    .c-table tr td {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 500;
      padding: 16px 8px 16px 0;
      width: calc(100% - 88px); }
      @media only screen and (max-width: 767px) {
        .c-table tr td {
          width: calc(100% - 64px);
          padding-right: 0; } }

.c-time {
  text-align: center;
  background: #fff;
  border-radius: 8px;
  filter: drop-shadow(0 4px 16px #ffe5e1);
  padding: 32px; }
  @media only screen and (max-width: 767px) {
    .c-time {
      padding: 24px 8px; } }
  .c-time__table {
    width: 100%;
    margin-top: 24px; }
    @media only screen and (max-width: 767px) {
      .c-time__table {
        margin-top: 16px; } }
    .c-time__table tr th {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 500;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .c-time__table tr th {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.3;
          letter-spacing: 0; } }
    .c-time__table tr td {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 500;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .c-time__table tr td {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.5;
          letter-spacing: 0; } }
    .c-time__table thead tr {
      border-bottom: 1px solid #D96E91; }
      .c-time__table thead tr th {
        height: 48px; }
        .c-time__table thead tr th:nth-of-type(1) {
          width: 120px; }
        .c-time__table thead tr th:nth-of-type(2) {
          width: 112px; }
      .c-time__table thead tr td {
        width: calc((100% - 120px - 112px) / 6);
        width: 110px;
        height: 48px; }
    .c-time__table tbody .wide {
      width: 100%; }
      .c-time__table tbody .wide td {
        width: 100%;
        height: auto;
        padding-top: 24px;
        text-align: center;
        color: #3A322E; }
        .c-time__table tbody .wide td p {
          font-family: "Lora", serif;
          font-size: 16px;
          font-size: 1.6rem;
          font-weight: 500; }
          .c-time__table tbody .wide td p small {
            font-size: 14px;
            font-size: 1.4rem;
            font-family: "Zen Kaku Gothic New", sans-serif;
            display: inline-block;
            margin-right: 8px; }
    .c-time__table tbody tr .border-none {
      border-bottom: none; }
    .c-time__table tbody tr th {
      border-bottom: 1px solid #D96E91; }
      .c-time__table tbody tr th:nth-of-type(1) {
        width: 120px; }
        @media only screen and (max-width: 767px) {
          .c-time__table tbody tr th:nth-of-type(1) {
            letter-spacing: 0.4em; } }
      .c-time__table tbody tr th:nth-of-type(2) {
        width: 112px; }
        @media only screen and (max-width: 767px) {
          .c-time__table tbody tr th:nth-of-type(2) {
            letter-spacing: 0.4em; } }
      .c-time__table tbody tr th span {
        font-family: "Lora", serif;
        letter-spacing: 0; }
    .c-time__table tbody tr td {
      color: #D96E91;
      width: calc((100% - 120px - 112px) / 6);
      width: 110px;
      height: 80px;
      border-bottom: 1px solid #D96E91; }
  .c-time__attention {
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
    font-weight: 500;
    color: #D96E91;
    margin-top: 24px; }
    @media only screen and (max-width: 767px) {
      .c-time__attention {
        text-align: left;
        margin-top: 16px; } }

.c-btnCol {
  display: flex;
  justify-content: center;
  margin: 32px 0; }
  @media only screen and (max-width: 767px) {
    .c-btnCol {
      display: block; } }
  .c-btnCol .c-btn {
    margin: 0 12px; }
    @media only screen and (max-width: 767px) {
      .c-btnCol .c-btn {
        margin: 0 auto 24px; } }

.c-attention {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 500;
  color: #D96E91; }

.c-box {
  padding: 32px 48px;
  background: #fff;
  border-radius: 8px;
  filter: drop-shadow(0 4px 16px #ffe5e1);
  position: relative;
  z-index: +1; }
  @media only screen and (max-width: 767px) {
    .c-box {
      padding: 16px; } }

.c-main-visual {
  height: 240px;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; }
  .c-main-visual:before {
    content: "";
    width: 260px;
    height: 262px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    right: calc(50vw + 446px);
    top: -56px; }
    @media only screen and (max-width: 767px) {
      .c-main-visual:before {
        width: 122px;
        height: 122px;
        right: auto;
        top: 58px;
        left: -23px; } }
  .c-main-visual:after {
    content: "";
    width: 220px;
    height: 220px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    left: calc(50vw + 480px);
    top: -16px; }
    @media only screen and (max-width: 767px) {
      .c-main-visual:after {
        width: 148px;
        height: 148px;
        left: auto;
        top: -31px;
        right: -39px; } }
  @media only screen and (max-width: 767px) {
    .c-main-visual {
      height: 200px; } }
  .c-main-visual .c-title02 {
    position: relative; }
  .c-main-visual .c-title {
    font-size: 20px;
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    font-family: "Shippori Mincho", serif;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 7px;
    text-decoration-color: #D96E91;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    margin-top: 32px;
    position: relative; }

.c-breadcrumb {
  padding: 32px 0 0; }
  @media only screen and (max-width: 767px) {
    .c-breadcrumb {
      padding-top: 24px; } }
  .c-breadcrumb .inner {
    max-width: 1280px; }
    .c-breadcrumb .inner ul {
      display: flex;
      flex-wrap: wrap; }
      .c-breadcrumb .inner ul li {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        font-weight: 500;
        display: flex;
        align-items: center; }
        @media only screen and (max-width: 767px) {
          .c-breadcrumb .inner ul li {
            margin-bottom: 10px; } }
        .c-breadcrumb .inner ul li:after {
          content: "";
          width: 5px;
          height: 10px;
          display: inline-block;
          background: url(../images/common/icon_arrow.svg) center center/cover no-repeat;
          margin: 0 11px 0 13px; }
        .c-breadcrumb .inner ul li:last-of-type:after {
          content: none; }

.lg-toolbar {
  display: none; }

.lg-backdrop {
  background: rgba(0, 0, 0, 0.5); }

.lg-object.lg-image {
  max-height: 90%;
  max-width: 80%; }

.lg-prev, .lg-next {
  padding: 0;
  width: 50px;
  height: 50px;
  background: none;
  margin-top: -25px; }

.pagination {
  margin-top: 48px; }
  .pagination .wp-pagenavi {
    display: flex;
    align-items: center;
    justify-content: center; }
    .pagination .wp-pagenavi span, .pagination .wp-pagenavi a {
      width: 48px;
      height: 48px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #D96E91;
      color: #D96E91;
      background: #fff;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.1em;
      font-weight: 600;
      margin: 0 4px;
      order: 3;
      transition: color .3s, background-color .3s; }
      @media only screen and (max-width: 767px) {
        .pagination .wp-pagenavi span, .pagination .wp-pagenavi a {
          font-size: 14px;
          font-size: 1.4rem;
          width: 36px;
          height: 36px;
          margin: 0 3px; } }
      .pagination .wp-pagenavi span:hover, .pagination .wp-pagenavi a:hover {
        background: #D96E91;
        color: #fff; }
    .pagination .wp-pagenavi .current {
      background: #D96E91;
      color: #fff; }
    .pagination .wp-pagenavi .extend {
      width: auto;
      height: auto;
      border: none;
      background: none; }
      .pagination .wp-pagenavi .extend:hover {
        background: none;
        color: #D96E91; }
    .pagination .wp-pagenavi .previouspostslink {
      order: 1;
      width: auto;
      height: auto;
      border: none;
      background: none; }
      .pagination .wp-pagenavi .previouspostslink:hover {
        background: none;
        color: #D96E91; }
      .pagination .wp-pagenavi .previouspostslink > div {
        display: flex;
        align-items: center; }
        .pagination .wp-pagenavi .previouspostslink > div:before {
          content: "";
          width: 6px;
          height: 10px;
          display: inline-block;
          background: url(../images/common/icon_arrow.svg) center center/cover no-repeat;
          transform: rotate(180deg);
          position: relative;
          top: 1px; }
        .pagination .wp-pagenavi .previouspostslink > div span {
          width: auto;
          height: auto;
          border: none;
          background: none;
          margin-left: 14px;
          margin-right: 16px; }
          @media only screen and (max-width: 767px) {
            .pagination .wp-pagenavi .previouspostslink > div span {
              margin-left: 7px;
              margin-right: 8px; } }
          .pagination .wp-pagenavi .previouspostslink > div span:hover {
            background: none;
            color: #D96E91; }
    .pagination .wp-pagenavi .nextpostslink {
      order: 5;
      width: auto;
      height: auto;
      border: none;
      background: none; }
      .pagination .wp-pagenavi .nextpostslink:hover {
        background: none;
        color: #D96E91; }
      .pagination .wp-pagenavi .nextpostslink > div {
        display: flex;
        align-items: center; }
        .pagination .wp-pagenavi .nextpostslink > div:after {
          content: "";
          width: 6px;
          height: 10px;
          display: inline-block;
          background: url(../images/common/icon_arrow.svg) center center/cover no-repeat;
          order: 2;
          position: relative;
          top: 1px; }
        .pagination .wp-pagenavi .nextpostslink > div span {
          width: auto;
          height: auto;
          border: none;
          background: none;
          order: 1;
          margin-right: 12px;
          margin-left: 16px; }
          @media only screen and (max-width: 767px) {
            .pagination .wp-pagenavi .nextpostslink > div span {
              margin-right: 6px;
              margin-left: 8px; } }
          .pagination .wp-pagenavi .nextpostslink > div span:hover {
            background: none;
            color: #D96E91; }
    .pagination .wp-pagenavi .first {
      order: 2; }
    .pagination .wp-pagenavi .last {
      order: 4; }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

body.access .cont {
  padding: 80px 0 48px;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden; }
  body.access .cont:before {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    top: 55px;
    right: calc(50vw + 411px); }
    @media only screen and (max-width: 767px) {
      body.access .cont:before {
        width: 138px;
        height: 138px;
        right: auto;
        top: 64px;
        left: -46px; } }
  body.access .cont:after {
    content: "";
    width: 264px;
    height: 264px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    top: 20px;
    left: calc(50vw + 417px); }
    @media only screen and (max-width: 767px) {
      body.access .cont:after {
        width: 110px;
        height: 110px;
        left: auto;
        top: 78px;
        right: -28px; } }
  @media only screen and (max-width: 767px) {
    body.access .cont {
      padding: 48px 0; } }
  body.access .cont .c-sub-title {
    margin-bottom: 32px; }
  body.access .cont .c-underline {
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      body.access .cont .c-underline {
        text-align: center; } }
    body.access .cont .c-underline.center {
      text-align: center; }
  body.access .cont .c-box {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.access .cont .c-box {
        margin-bottom: 16px; } }
    body.access .cont .c-box .text ul {
      counter-reset: number 0; }
      body.access .cont .c-box .text ul li {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.5;
        font-weight: 500;
        margin-bottom: 12px;
        padding-left: 1.2em;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.access .cont .c-box .text ul li {
            line-height: 1.7; } }
        body.access .cont .c-box .text ul li:before {
          counter-increment: number 1;
          content: counter(number) ".";
          position: absolute;
          top: 0;
          left: 0; }
        body.access .cont .c-box .text ul li:last-of-type {
          margin-bottom: 0; }
  body.access .cont .map-info {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.access .cont .map-info {
        flex-direction: column;
        margin-top: 32px; } }
    body.access .cont .map-info .left {
      width: 50%; }
      @media only screen and (max-width: 767px) {
        body.access .cont .map-info .left {
          width: 100%;
          order: 2; } }
      body.access .cont .map-info .left .map {
        position: relative;
        padding-top: 60%; }
        @media only screen and (max-width: 767px) {
          body.access .cont .map-info .left .map {
            padding-top: 76.92307692%; } }
        body.access .cont .map-info .left .map iframe {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0; }
      body.access .cont .map-info .left .c-attention {
        margin-top: 16px; }
        @media only screen and (max-width: 767px) {
          body.access .cont .map-info .left .c-attention {
            margin-bottom: 20px; } }
    body.access .cont .map-info .right {
      width: 40%; }
      @media only screen and (max-width: 767px) {
        body.access .cont .map-info .right {
          width: 100%;
          order: 1; } }
      body.access .cont .map-info .right .logo {
        display: block;
        width: 280px;
        margin-bottom: 24px; }
        @media only screen and (max-width: 767px) {
          body.access .cont .map-info .right .logo {
            margin-bottom: 20px; } }
      body.access .cont .map-info .right address {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 500;
        margin-bottom: 24px; }
        @media only screen and (max-width: 767px) {
          body.access .cont .map-info .right address {
            line-height: 2; } }
    body.access .cont .map-info .btn-map {
      width: 100%;
      height: 64px;
      border-radius: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #D96E91;
      background: #D96E91;
      color: #fff;
      transition: color .3s, background-color .3s;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.1em;
      font-weight: 600;
      position: relative; }
      body.access .cont .map-info .btn-map svg {
        position: absolute;
        top: 50%;
        right: 24px;
        transform: translate(0%, -50%); }
        body.access .cont .map-info .btn-map svg path {
          transition: fill .3s; }
      body.access .cont .map-info .btn-map:hover {
        background: #fff;
        color: #D96E91; }
        body.access .cont .map-info .btn-map:hover svg path {
          fill: #D96E91; }
  body.access .cont .bottom {
    margin-top: 48px; }
    body.access .cont .bottom .c-text01 {
      margin-bottom: 1em; }
      body.access .cont .bottom .c-text01:last-of-type {
        margin-bottom: 0; }

body.childbirth .cont {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden; }
  body.childbirth .cont:before {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    top: 55px;
    right: calc(50vw + 411px); }
    @media only screen and (max-width: 767px) {
      body.childbirth .cont:before {
        width: 138px;
        height: 138px;
        right: auto;
        top: 64px;
        left: -46px; } }
  body.childbirth .cont:after {
    content: "";
    width: 264px;
    height: 264px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    top: 20px;
    left: calc(50vw + 417px); }
    @media only screen and (max-width: 767px) {
      body.childbirth .cont:after {
        width: 110px;
        height: 110px;
        left: auto;
        top: 78px;
        right: -28px; } }
  @media only screen and (max-width: 767px) {
    body.childbirth .cont {
      padding: 48px 0; } }
  body.childbirth .cont .c-sub-title {
    margin-bottom: 32px; }
    @media only screen and (max-width: 767px) {
      body.childbirth .cont .c-sub-title {
        margin-left: -8px;
        margin-right: -8px; } }
  body.childbirth .cont .c-underline {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.childbirth .cont .c-underline {
        text-align: center;
        margin-bottom: 16px; } }
  body.childbirth .cont .c-image-text {
    margin-bottom: 48px; }
    @media only screen and (max-width: 767px) {
      body.childbirth .cont .c-image-text {
        margin-top: 16px; } }
    @media only screen and (max-width: 767px) {
      body.childbirth .cont .c-image-text .text {
        margin-top: 16px; } }
  body.childbirth .cont .c-box {
    margin-top: 24px; }
    body.childbirth .cont .c-box:first-of-type {
      margin-top: 0; }
    body.childbirth .cont .c-box.col {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        body.childbirth .cont .c-box.col {
          display: block; } }
      body.childbirth .cont .c-box.col .text {
        width: 60.18518519%; }
        @media only screen and (max-width: 767px) {
          body.childbirth .cont .c-box.col .text {
            width: 100%; } }
      body.childbirth .cont .c-box.col .image {
        width: 36.11111111%;
        border-radius: 8px;
        overflow: hidden; }
        @media only screen and (max-width: 767px) {
          body.childbirth .cont .c-box.col .image {
            width: 100%;
            margin-top: 24px; } }
    body.childbirth .cont .c-box .text .c-text01 {
      margin-bottom: 14px; }
      @media only screen and (max-width: 767px) {
        body.childbirth .cont .c-box .text .c-text01 {
          margin-bottom: 12px; } }
      body.childbirth .cont .c-box .text .c-text01:last-of-type {
        margin-bottom: 0; }
      body.childbirth .cont .c-box .text .c-text01.pink {
        color: #D96E91; }
    body.childbirth .cont .c-box .text .mt32 {
      margin-top: 32px; }
      @media only screen and (max-width: 767px) {
        body.childbirth .cont .c-box .text .mt32 {
          margin-top: 24px; } }
    body.childbirth .cont .c-box .text dl {
      margin-top: 24px; }
      @media only screen and (max-width: 767px) {
        body.childbirth .cont .c-box .text dl {
          margin-top: 16px; } }
      body.childbirth .cont .c-box .text dl dt {
        margin-bottom: 8px; }

body#access #wrap {
  padding-top: 124px; }
  @media only screen and (max-width: 767px) {
    body#access #wrap {
      padding-top: 64px; } }
  body#access #wrap .c-btn {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
    border: none;
    padding: 0;
    background: none; }
  body#access #wrap #visual {
    height: 240px;
    background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
    position: relative;
    overflow: hidden; }
    body#access #wrap #visual:before {
      content: "";
      width: 260px;
      height: 262px;
      display: block;
      background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
      position: absolute;
      right: calc(50vw + 446px);
      top: -56px; }
      @media only screen and (max-width: 767px) {
        body#access #wrap #visual:before {
          width: 122px;
          height: 122px;
          right: auto;
          top: 58px;
          left: -23px; } }
    body#access #wrap #visual:after {
      content: "";
      width: 220px;
      height: 220px;
      display: block;
      background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
      position: absolute;
      left: calc(50vw + 480px);
      top: -16px; }
      @media only screen and (max-width: 767px) {
        body#access #wrap #visual:after {
          width: 148px;
          height: 148px;
          left: auto;
          top: -31px;
          right: -39px; } }
    @media only screen and (max-width: 767px) {
      body#access #wrap #visual {
        height: 200px; } }
    body#access #wrap #visual .background {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
      body#access #wrap #visual .background .text-box {
        text-align: center;
        color: #D96E91; }
        body#access #wrap #visual .background .text-box h1 {
          font-size: 24px;
          font-size: 2.4rem;
          letter-spacing: 0.05em;
          line-height: 1;
          font-family: "Shippori Mincho", serif;
          font-weight: 500;
          margin-bottom: 8px; }
        body#access #wrap #visual .background .text-box p {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.05em;
          line-height: 1;
          font-weight: 500;
          font-family: "Lora", serif; }
  body#access #wrap main {
    padding: 72px 0 48px;
    background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1); }
    @media only screen and (max-width: 767px) {
      body#access #wrap main {
        padding-top: 36px; } }
  body#access #wrap #amh .heading04 {
    padding: 0;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
    font-weight: 500;
    font-family: "Shippori Mincho", serif;
    color: #3a322e;
    text-decoration: underline;
    text-underline-offset: 7px;
    text-decoration-color: #D96E91;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-skip-ink: none;
    text-align: center;
    padding: 0 40px;
    max-width: 1040px;
    margin: 0 auto;
    margin-bottom: 75px; }
    @media only screen and (max-width: 767px) {
      body#access #wrap #amh .heading04 {
        padding: 20px 20px 10px !important;
        margin-bottom: 48px; } }
  body#access #wrap #amh .amh-contents .inner-2 {
    max-width: 1040px;
    padding: 0 40px;
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      body#access #wrap #amh .amh-contents .inner-2 {
        padding: 0 23px; } }
    body#access #wrap #amh .amh-contents .inner-2 .l-container {
      padding: 0 0 0 !important; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container p {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 500; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container #breadcrumbs {
        text-align: left;
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        font-weight: 500;
        color: #D96E91;
        margin: 0 -120px;
        margin-bottom: 80px; }
        @media only screen and (max-width: 1280px) {
          body#access #wrap #amh .amh-contents .inner-2 .l-container #breadcrumbs {
            margin: 0 calc(-50vw + 480px + 40px) 80px; } }
        @media only screen and (max-width: 1040px) {
          body#access #wrap #amh .amh-contents .inner-2 .l-container #breadcrumbs {
            margin: 0 0 80px; } }
        @media only screen and (max-width: 767px) {
          body#access #wrap #amh .amh-contents .inner-2 .l-container #breadcrumbs {
            margin-bottom: 48px; } }
        body#access #wrap #amh .amh-contents .inner-2 .l-container #breadcrumbs span {
          color: #3a322e; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .c-btn-anchor {
        padding: 20px 48px;
        border-radius: 48px;
        background: #D96E91;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.5;
        letter-spacing: 0.1em;
        font-weight: 600;
        min-width: 280px;
        width: auto;
        border: 1px solid #D96E91;
        transition: color .3s, background-color .3s; }
        body#access #wrap #amh .amh-contents .inner-2 .l-container .c-btn-anchor:hover {
          background: #fff;
          color: #D96E91 !important;
          opacity: 1; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .c-head-mv {
        border-radius: 8px;
        margin-bottom: 32px;
        background-color: rgba(0, 0, 0, 0.3);
        position: relative; }
        body#access #wrap #amh .amh-contents .inner-2 .l-container .c-head-mv:before {
          content: "";
          width: 100%;
          height: 100%;
          display: block;
          background-color: rgba(0, 0, 0, 0.3);
          position: absolute;
          top: 0;
          left: 0;
          border-radius: 8px; }
        body#access #wrap #amh .amh-contents .inner-2 .l-container .c-head-mv h2 {
          background: none;
          font-size: 32px;
          font-size: 3.2rem;
          letter-spacing: 0.05em;
          line-height: 1.7;
          font-weight: 500;
          font-family: "Shippori Mincho", serif;
          text-align: center;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body#access #wrap #amh .amh-contents .inner-2 .l-container .c-head-mv h2 {
              font-size: 20px;
              font-size: 2rem; } }
      @media only screen and (min-width: 768px) {
        body#access #wrap #amh .amh-contents .inner-2 .l-container .c-block .img-right-s {
          margin: 24px 0 10px 32px; } }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .c-block .link-d {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 500; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .c-block p {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 500; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .c-block ul {
        width: 100%;
        background: #fff;
        border: 1px solid #D96E91;
        border-radius: 8px;
        padding: 24px !important;
        margin: 6px 0 32px; }
        body#access #wrap #amh .amh-contents .inner-2 .l-container .c-block ul li {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.05em;
          line-height: 1.5;
          font-weight: 600;
          color: #D96E91;
          margin: 0 0 10px 1em !important;
          list-style: disc !important; }
          body#access #wrap #amh .amh-contents .inner-2 .l-container .c-block ul li:last-of-type {
            margin-bottom: 0 !important; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .c-linkblock h3 {
        font-size: 24px;
        font-size: 2.4rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 600;
        font-family: "Shippori Mincho", serif;
        border: none;
        display: inline-block;
        margin-bottom: 24px;
        position: relative;
        text-decoration: underline;
        text-underline-offset: -4px;
        text-decoration-color: #FFCFC8;
        text-decoration-line: underline;
        text-decoration-thickness: 12px;
        text-decoration-skip-ink: none; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .c-pagelink {
        margin-bottom: 48px; }
        body#access #wrap #amh .amh-contents .inner-2 .l-container .c-pagelink li {
          margin: 0 0 20px 46px;
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.05em;
          line-height: 1.7;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            body#access #wrap #amh .amh-contents .inner-2 .l-container .c-pagelink li {
              margin-left: 23px; } }
          body#access #wrap #amh .amh-contents .inner-2 .l-container .c-pagelink li a {
            text-decoration: underline;
            text-underline-offset: 2px;
            text-decoration-color: #3A322E;
            text-decoration-line: underline;
            text-decoration-thickness: 1px;
            text-decoration-skip-ink: none;
            transition: opacity .3s; }
            body#access #wrap #amh .amh-contents .inner-2 .l-container .c-pagelink li a:hover {
              opacity: 0.6; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .page-nav {
        display: flex;
        align-items: center;
        justify-content: center; }
        body#access #wrap #amh .amh-contents .inner-2 .l-container .page-nav li {
          margin: 0 4px; }
          body#access #wrap #amh .amh-contents .inner-2 .l-container .page-nav li:first-of-type span, body#access #wrap #amh .amh-contents .inner-2 .l-container .page-nav li:first-of-type a {
            background: none;
            padding: 12px 8px;
            width: auto;
            border: none; }
          body#access #wrap #amh .amh-contents .inner-2 .l-container .page-nav li:last-of-type span, body#access #wrap #amh .amh-contents .inner-2 .l-container .page-nav li:last-of-type a {
            background: none;
            padding: 12px 8px;
            width: auto;
            border: none; }
          body#access #wrap #amh .amh-contents .inner-2 .l-container .page-nav li span, body#access #wrap #amh .amh-contents .inner-2 .l-container .page-nav li a {
            color: #D96E91;
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: 0.1em;
            font-weight: 600;
            border-radius: 8px;
            background: #fff;
            border: 1px solid #D96E91;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center; }
          body#access #wrap #amh .amh-contents .inner-2 .l-container .page-nav li .now {
            background: #D96E91;
            color: #fff; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .c-nap h3 {
        font-size: 20px;
        font-size: 2rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 600;
        font-family: "Shippori Mincho", serif;
        margin-bottom: 16px;
        padding: 0;
        border: none; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .l-tertiary {
        color: #D96E91;
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 600;
        margin: 24px 0 8px; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .l-quaternary {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 600;
        margin: 24px 0 8px; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .l-heading-secondary {
        font-size: 24px;
        font-size: 2.4rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 600;
        font-family: "Shippori Mincho", serif;
        margin-bottom: 16px;
        padding: 0;
        border: none;
        width: max-content;
        max-width: 100%;
        margin: 0 auto 32px;
        text-decoration: underline;
        text-underline-offset: -4px;
        text-decoration-color: #FFCFC8;
        text-decoration-line: underline;
        text-decoration-thickness: 12px;
        text-decoration-skip-ink: none; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .c-endblock {
        padding: 24px;
        background: #fff;
        border: 1px solid #D96E91;
        border-radius: 8px;
        color: #D96E91; }
        body#access #wrap #amh .amh-contents .inner-2 .l-container .c-endblock p {
          padding-bottom: 0 !important;
          font-size: 14px;
          font-size: 1.4rem; }
      body#access #wrap #amh .amh-contents .inner-2 .l-container .c-table {
        border: none; }
        body#access #wrap #amh .amh-contents .inner-2 .l-container .c-table tbody tr {
          border-bottom: 1px solid #D96E91; }
          body#access #wrap #amh .amh-contents .inner-2 .l-container .c-table tbody tr th {
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: 0.05em;
            line-height: 1.7;
            font-weight: 500;
            background: none;
            border: none;
            padding: 16px 8px !important;
            width: 78px;
            max-width: 78px; }
          body#access #wrap #amh .amh-contents .inner-2 .l-container .c-table tbody tr td {
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: 0.05em;
            line-height: 1.7;
            font-weight: 500;
            border: none;
            padding: 16px 8px !important;
            width: auto;
            max-width: calc(100% - 78px); }

body.deliverycost .cont {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden; }
  body.deliverycost .cont:before {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    top: 55px;
    right: calc(50vw + 411px); }
    @media only screen and (max-width: 767px) {
      body.deliverycost .cont:before {
        width: 138px;
        height: 138px;
        right: auto;
        top: 64px;
        left: -46px; } }
  body.deliverycost .cont:after {
    content: "";
    width: 264px;
    height: 264px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    top: 20px;
    left: calc(50vw + 417px); }
    @media only screen and (max-width: 767px) {
      body.deliverycost .cont:after {
        width: 110px;
        height: 110px;
        left: auto;
        top: 78px;
        right: -28px; } }
  @media only screen and (max-width: 767px) {
    body.deliverycost .cont {
      padding: 48px 0; } }
  body.deliverycost .cont .c-sub-title {
    margin-bottom: 32px; }
  body.deliverycost .cont .c-underline {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.deliverycost .cont .c-underline {
        text-align: center;
        margin-bottom: 16px; } }
  body.deliverycost .cont .c-image-text {
    margin-bottom: 48px; }
    @media only screen and (max-width: 767px) {
      body.deliverycost .cont .c-image-text {
        margin-top: 16px; } }
    @media only screen and (max-width: 767px) {
      body.deliverycost .cont .c-image-text .text {
        margin-top: 16px; } }
  body.deliverycost .cont .c-box {
    margin-top: 24px; }
    body.deliverycost .cont .c-box:first-of-type {
      margin-top: 0; }
    body.deliverycost .cont .c-box .text .c-text01 {
      margin-bottom: 14px; }
      @media only screen and (max-width: 767px) {
        body.deliverycost .cont .c-box .text .c-text01 {
          margin-bottom: 12px; } }
      body.deliverycost .cont .c-box .text .c-text01:last-of-type {
        margin-bottom: 0; }
      body.deliverycost .cont .c-box .text .c-text01.pink {
        color: #D96E91; }
    body.deliverycost .cont .c-box .text .c-attention {
      margin-top: 24px; }
      @media only screen and (max-width: 767px) {
        body.deliverycost .cont .c-box .text .c-attention {
          margin-top: 16px; } }

body.disclaimer .cont {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden; }
  body.disclaimer .cont:before {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    top: 55px;
    right: calc(50vw + 411px); }
    @media only screen and (max-width: 767px) {
      body.disclaimer .cont:before {
        width: 138px;
        height: 138px;
        right: auto;
        top: 64px;
        left: -46px; } }
  body.disclaimer .cont:after {
    content: "";
    width: 264px;
    height: 264px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    top: 20px;
    left: calc(50vw + 417px); }
    @media only screen and (max-width: 767px) {
      body.disclaimer .cont:after {
        width: 110px;
        height: 110px;
        left: auto;
        top: 78px;
        right: -28px; } }
  @media only screen and (max-width: 767px) {
    body.disclaimer .cont {
      padding: 48px 0; } }
  body.disclaimer .cont .c-sub-title {
    margin-bottom: 32px; }
  body.disclaimer .cont .c-underline {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.disclaimer .cont .c-underline {
        text-align: center;
        margin-bottom: 16px; } }
  body.disclaimer .cont .c-image-text {
    margin-bottom: 48px; }
    @media only screen and (max-width: 767px) {
      body.disclaimer .cont .c-image-text {
        margin-top: 16px; } }
    @media only screen and (max-width: 767px) {
      body.disclaimer .cont .c-image-text .text {
        margin-top: 16px; } }
  body.disclaimer .cont .c-box {
    margin-top: 24px; }
    body.disclaimer .cont .c-box:first-of-type {
      margin-top: 0; }
    body.disclaimer .cont .c-box.col {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        body.disclaimer .cont .c-box.col {
          display: block; } }
      body.disclaimer .cont .c-box.col .text {
        width: 60.18518519%; }
        @media only screen and (max-width: 767px) {
          body.disclaimer .cont .c-box.col .text {
            width: 100%; } }
      body.disclaimer .cont .c-box.col .image {
        width: 36.11111111%;
        border-radius: 8px;
        overflow: hidden; }
        @media only screen and (max-width: 767px) {
          body.disclaimer .cont .c-box.col .image {
            width: 100%;
            margin-top: 24px; } }
    body.disclaimer .cont .c-box .text .c-text01 {
      margin-bottom: 14px; }
      @media only screen and (max-width: 767px) {
        body.disclaimer .cont .c-box .text .c-text01 {
          margin-bottom: 12px; } }
      body.disclaimer .cont .c-box .text .c-text01:last-of-type {
        margin-bottom: 0; }
      body.disclaimer .cont .c-box .text .c-text01.pink {
        color: #D96E91; }
    body.disclaimer .cont .c-box .text .c-list-num {
      margin-top: 24px; }
      @media only screen and (max-width: 767px) {
        body.disclaimer .cont .c-box .text .c-list-num {
          margin-top: 16px; } }
    body.disclaimer .cont .c-box .text dl {
      margin-top: 24px; }
      @media only screen and (max-width: 767px) {
        body.disclaimer .cont .c-box .text dl {
          margin-top: 16px; } }
      body.disclaimer .cont .c-box .text dl dt {
        margin-bottom: 8px; }

body.facility .cont {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden; }
  body.facility .cont:before {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    top: 55px;
    right: calc(50vw + 411px); }
    @media only screen and (max-width: 767px) {
      body.facility .cont:before {
        width: 138px;
        height: 138px;
        right: auto;
        top: 64px;
        left: -46px; } }
  body.facility .cont:after {
    content: "";
    width: 264px;
    height: 264px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    top: 20px;
    left: calc(50vw + 417px); }
    @media only screen and (max-width: 767px) {
      body.facility .cont:after {
        width: 110px;
        height: 110px;
        left: auto;
        top: 78px;
        right: -28px; } }
  @media only screen and (max-width: 767px) {
    body.facility .cont {
      padding: 48px 0; } }
  body.facility .cont .inner {
    position: relative;
    z-index: +1; }
  body.facility .cont .c-sub-title {
    margin-bottom: 32px; }
  body.facility .cont .c-underline {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.facility .cont .c-underline {
        text-align: center;
        margin-bottom: 16px; } }
  body.facility .cont .c-facilityList {
    display: flex;
    flex-wrap: wrap; }
    @media only screen and (max-width: 767px) {
      body.facility .cont .c-facilityList {
        display: block; } }
    body.facility .cont .c-facilityList li {
      width: 31.85185185%;
      cursor: pointer;
      margin-right: 2.22222222%;
      margin-top: 4.44444444%; }
      @media only screen and (max-width: 767px) {
        body.facility .cont .c-facilityList li {
          width: 100%;
          margin: 0 0 24px; } }
      @media only screen and (max-width: 767px) {
        body.facility .cont .c-facilityList li:last-of-type {
          margin-bottom: 0; } }
      body.facility .cont .c-facilityList li:nth-of-type(-n + 3) {
        margin-top: 0; }
      @media only screen and (min-width: 768px) {
        body.facility .cont .c-facilityList li:nth-of-type(3n) {
          margin-right: 0; } }
      body.facility .cont .c-facilityList li .image {
        border-radius: 8px;
        overflow: hidden;
        filter: drop-shadow(0 4px 16px #ffe5e1); }
      body.facility .cont .c-facilityList li .text {
        position: relative;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.7;
        letter-spacing: 0.05em;
        font-weight: 500;
        margin-top: 8px; }

body.faq .cont {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden; }
  body.faq .cont:before {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    top: 55px;
    right: calc(50vw + 411px); }
    @media only screen and (max-width: 767px) {
      body.faq .cont:before {
        width: 138px;
        height: 138px;
        right: auto;
        top: 64px;
        left: -46px; } }
  body.faq .cont:after {
    content: "";
    width: 264px;
    height: 264px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    top: 20px;
    left: calc(50vw + 417px); }
    @media only screen and (max-width: 767px) {
      body.faq .cont:after {
        width: 110px;
        height: 110px;
        left: auto;
        top: 78px;
        right: -28px; } }
  @media only screen and (max-width: 767px) {
    body.faq .cont {
      padding: 48px 0; } }
  body.faq .cont .c-sub-title {
    margin-bottom: 32px; }
  body.faq .cont .c-underline {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.faq .cont .c-underline {
        text-align: center;
        margin-bottom: 16px; } }
  body.faq .cont .c-image-text {
    margin-bottom: 48px; }
    @media only screen and (max-width: 767px) {
      body.faq .cont .c-image-text {
        margin-top: 16px; } }
    @media only screen and (max-width: 767px) {
      body.faq .cont .c-image-text .text {
        margin-top: 16px; } }
  body.faq .cont .c-box {
    margin-top: 24px; }
    body.faq .cont .c-box:first-of-type {
      margin-top: 0; }
    body.faq .cont .c-box.col {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        body.faq .cont .c-box.col {
          display: block; } }
      body.faq .cont .c-box.col .text {
        width: 60.18518519%; }
        @media only screen and (max-width: 767px) {
          body.faq .cont .c-box.col .text {
            width: 100%; } }
      body.faq .cont .c-box.col .image {
        width: 36.11111111%;
        border-radius: 8px;
        overflow: hidden; }
        @media only screen and (max-width: 767px) {
          body.faq .cont .c-box.col .image {
            width: 100%;
            margin-top: 24px; } }
    body.faq .cont .c-box .text .c-text01 {
      margin-bottom: 14px; }
      @media only screen and (max-width: 767px) {
        body.faq .cont .c-box .text .c-text01 {
          margin-bottom: 12px; } }
      body.faq .cont .c-box .text .c-text01:last-of-type {
        margin-bottom: 0; }
      body.faq .cont .c-box .text .c-text01.pink {
        color: #D96E91; }
    body.faq .cont .c-box .text .c-list-num {
      margin-top: 24px; }
      @media only screen and (max-width: 767px) {
        body.faq .cont .c-box .text .c-list-num {
          margin-top: 16px; } }
    body.faq .cont .c-box .text dl dt {
      margin-bottom: 8px; }

body.flow .cont {
  padding: 80px 0 48px;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden; }
  body.flow .cont:before {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    top: 55px;
    right: calc(50vw + 411px); }
    @media only screen and (max-width: 767px) {
      body.flow .cont:before {
        width: 138px;
        height: 138px;
        right: auto;
        top: 64px;
        left: -46px; } }
  body.flow .cont:after {
    content: "";
    width: 264px;
    height: 264px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    top: 20px;
    left: calc(50vw + 417px); }
    @media only screen and (max-width: 767px) {
      body.flow .cont:after {
        width: 110px;
        height: 110px;
        left: auto;
        top: 78px;
        right: -28px; } }
  @media only screen and (max-width: 767px) {
    body.flow .cont {
      padding: 48px 0; } }
  body.flow .cont .c-sub-title {
    margin-bottom: 32px; }
  body.flow .cont .c-box {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.flow .cont .c-box {
        margin-bottom: 16px; } }
  @media only screen and (max-width: 767px) {
    body.flow .cont .c-step-text .text .c-underline {
      white-space: nowrap; } }
  body.flow .cont .supplement {
    margin-top: 48px;
    padding: 16px 48px;
    border-radius: 8px;
    border: 1px solid #D96E91;
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      body.flow .cont .supplement {
        padding: 16px;
        display: block; } }
    body.flow .cont .supplement dt {
      padding-right: 24px;
      position: relative;
      width: 23.14814815%;
      text-align: center;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        body.flow .cont .supplement dt {
          width: 100%;
          padding: 0; } }
      body.flow .cont .supplement dt:after {
        content: "";
        width: 1px;
        height: 72px;
        display: block;
        background: #D96E91;
        position: absolute;
        top: 50%;
        right: 0%;
        transform: translate(0%, -50%); }
        @media only screen and (max-width: 767px) {
          body.flow .cont .supplement dt:after {
            position: static;
            transform: translate(0, 0);
            width: 72px;
            height: 1px;
            margin: 12px auto 16px; } }
    body.flow .cont .supplement dd {
      padding-left: 24px;
      width: 76.85185185%; }
      @media only screen and (max-width: 767px) {
        body.flow .cont .supplement dd {
          padding: 0;
          width: 100%; } }
      body.flow .cont .supplement dd ol li {
        padding-left: 1.2em;
        position: relative;
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.5;
        font-weight: 600;
        margin-bottom: 8px; }
        @media only screen and (max-width: 767px) {
          body.flow .cont .supplement dd ol li {
            font-size: 16px;
            font-size: 1.6rem;
            font-weight: 500; } }
        body.flow .cont .supplement dd ol li:last-of-type {
          margin-bottom: 0; }
        body.flow .cont .supplement dd ol li:before {
          content: "・";
          position: absolute;
          top: 0;
          left: 0; }

body.greeting .cont {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden; }
  body.greeting .cont:before {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    top: 55px;
    right: calc(50vw + 411px); }
    @media only screen and (max-width: 767px) {
      body.greeting .cont:before {
        width: 138px;
        height: 138px;
        right: auto;
        top: 64px;
        left: -46px; } }
  body.greeting .cont:after {
    content: "";
    width: 264px;
    height: 264px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    top: 20px;
    left: calc(50vw + 417px); }
    @media only screen and (max-width: 767px) {
      body.greeting .cont:after {
        width: 110px;
        height: 110px;
        left: auto;
        top: 78px;
        right: -28px; } }
  @media only screen and (max-width: 767px) {
    body.greeting .cont {
      padding: 48px 0; } }
  body.greeting .cont .c-title05 {
    margin-top: 40px; }
    @media only screen and (max-width: 767px) {
      body.greeting .cont .c-title05 {
        margin-top: 32px; } }
  body.greeting .cont .c-sub-title {
    margin-bottom: 32px; }
  body.greeting .cont .c-underline {
    text-align: center; }
  body.greeting .cont .c-image-text {
    margin-bottom: 48px; }
    @media only screen and (max-width: 767px) {
      body.greeting .cont .c-image-text {
        margin-top: 16px; } }
    @media only screen and (max-width: 767px) {
      body.greeting .cont .c-image-text .text {
        margin-top: 16px; } }
  body.greeting .cont .c-table {
    margin-top: 16px;
    border-top: 1px solid #D96E91; }
    @media only screen and (max-width: 767px) {
      body.greeting .cont .c-table {
        margin-top: 16px; } }

body.greeting .c-title05 {
  padding-left: 8px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 600;
  color: #D96E91;
  margin-bottom: 16px; }

body.greeting .c-table {
  border-top: 1px solid #D96E91; }

body.greeting .check {
  border-radius: 8px;
  background: #FEF6EF;
  padding: 32px 48px;
  margin-top: 24px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.greeting .check {
      padding: 32px 16px 16px; } }
  body.greeting .check span {
    position: absolute;
    font-family: "Allison", cursive;
    font-size: 48px;
    font-size: 4.8rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
    color: #D96E91;
    position: absolute;
    top: -23px;
    left: -8px;
    transform: rotate(-15deg); }
    @media only screen and (max-width: 767px) {
      body.greeting .check span {
        top: -32px;
        left: -10px; } }
  body.greeting .check dl {
    margin-bottom: 16px; }
    body.greeting .check dl:last-of-type {
      margin-bottom: 0; }
    body.greeting .check dl dt {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 600;
      color: #D96E91; }
    body.greeting .check dl dd {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 500; }

body.greeting .c-table tbody tr th {
  width: 112px; }
  @media only screen and (max-width: 767px) {
    body.greeting .c-table tbody tr th {
      width: 96px; } }

body.greeting .c-table tbody tr td {
  width: calc(100% - 112px); }
  @media only screen and (max-width: 767px) {
    body.greeting .c-table tbody tr td {
      width: calc(100% - 96px); } }

body.greeting .profile {
  padding: 80px 0; }
  @media only screen and (max-width: 767px) {
    body.greeting .profile {
      padding: 48px 0; } }
  body.greeting .profile .c-underline {
    text-align: center;
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.greeting .profile .c-underline {
        margin-bottom: 16px; } }
  body.greeting .profile .c-image-text {
    margin-top: 80px; }
    @media only screen and (max-width: 767px) {
      body.greeting .profile .c-image-text {
        margin-top: 48px; } }
    body.greeting .profile .c-image-text:first-of-type {
      margin-top: 0; }
    @media only screen and (max-width: 767px) {
      body.greeting .profile .c-image-text .text {
        margin-top: 8px; } }

body.gynecological .cont {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden; }
  body.gynecological .cont:before {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    top: 55px;
    right: calc(50vw + 411px); }
    @media only screen and (max-width: 767px) {
      body.gynecological .cont:before {
        width: 138px;
        height: 138px;
        right: auto;
        top: 64px;
        left: -46px; } }
  body.gynecological .cont:after {
    content: "";
    width: 264px;
    height: 264px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    top: 20px;
    left: calc(50vw + 417px); }
    @media only screen and (max-width: 767px) {
      body.gynecological .cont:after {
        width: 110px;
        height: 110px;
        left: auto;
        top: 78px;
        right: -28px; } }
  @media only screen and (max-width: 767px) {
    body.gynecological .cont {
      padding: 48px 0; } }
  body.gynecological .cont .c-sub-title {
    margin-bottom: 32px; }
  body.gynecological .cont .c-underline {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.gynecological .cont .c-underline {
        text-align: center;
        margin-bottom: 16px; } }
  body.gynecological .cont .c-box {
    margin-top: 24px; }
    body.gynecological .cont .c-box:first-of-type {
      margin-top: 0; }
    body.gynecological .cont .c-box .text .c-text01 {
      margin-bottom: 14px; }
      @media only screen and (max-width: 767px) {
        body.gynecological .cont .c-box .text .c-text01 {
          margin-bottom: 12px; } }
      body.gynecological .cont .c-box .text .c-text01:last-of-type {
        margin-bottom: 0; }
      body.gynecological .cont .c-box .text .c-text01.pink {
        color: #D96E91; }
  body.gynecological .cont .c-attention {
    margin-top: 48px; }

body.medicaltime .cont {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden; }
  body.medicaltime .cont:before {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    top: 55px;
    right: calc(50vw + 411px); }
    @media only screen and (max-width: 767px) {
      body.medicaltime .cont:before {
        width: 138px;
        height: 138px;
        right: auto;
        top: 64px;
        left: -46px; } }
  body.medicaltime .cont:after {
    content: "";
    width: 264px;
    height: 264px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    top: 20px;
    left: calc(50vw + 417px); }
    @media only screen and (max-width: 767px) {
      body.medicaltime .cont:after {
        width: 110px;
        height: 110px;
        left: auto;
        top: 78px;
        right: -28px; } }
  @media only screen and (max-width: 767px) {
    body.medicaltime .cont {
      padding: 48px 0; } }
  body.medicaltime .cont .c-sub-title {
    margin-bottom: 32px; }
  body.medicaltime .cont .c-underline {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.medicaltime .cont .c-underline {
        text-align: center;
        margin-bottom: 16px; } }
  body.medicaltime .cont .inner {
    position: relative;
    z-index: +1; }
  body.medicaltime .cont .about .c-underline {
    text-align: center;
    display: block; }
  body.medicaltime .cont .about .c-text01 {
    text-align: center; }
    @media only screen and (max-width: 767px) {
      body.medicaltime .cont .about .c-text01 {
        text-align: left; } }
  body.medicaltime .cont .about .c-attention {
    text-align: center;
    margin: 16px 0 24px; }
    @media only screen and (max-width: 767px) {
      body.medicaltime .cont .about .c-attention {
        text-align: left;
        margin: 8px 0 16px; } }
  body.medicaltime .cont .about dl {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #D96E91;
    margin-top: 24px;
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      body.medicaltime .cont .about dl {
        margin-top: 16px;
        padding: 16px;
        display: block; } }
    body.medicaltime .cont .about dl dt {
      width: 116px;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 600;
      text-align: center;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.medicaltime .cont .about dl dt {
          width: 100%; } }
      body.medicaltime .cont .about dl dt:after {
        content: "";
        width: 1px;
        height: 72px;
        display: block;
        background: #D96E91;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0%, -50%); }
        @media only screen and (max-width: 767px) {
          body.medicaltime .cont .about dl dt:after {
            width: 72px;
            height: 1px;
            position: static;
            transform: translate(0, 0);
            margin: 16px auto; } }
    body.medicaltime .cont .about dl dd {
      width: calc(100% - 116px);
      padding-left: 16px; }
      @media only screen and (max-width: 767px) {
        body.medicaltime .cont .about dl dd {
          width: 100%;
          padding-left: 0; } }
      body.medicaltime .cont .about dl dd ul {
        counter-reset: number 0; }
        body.medicaltime .cont .about dl dd ul li {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.05em;
          line-height: 1.5;
          font-weight: 600;
          margin-bottom: 8px;
          padding-left: 1.2em;
          position: relative; }
          body.medicaltime .cont .about dl dd ul li:before {
            counter-increment: number 1;
            content: counter(number) ".";
            position: absolute;
            top: 0;
            left: 0; }
          body.medicaltime .cont .about dl dd ul li:last-of-type {
            margin-bottom: 0; }
  body.medicaltime .cont .about .tel-reserve {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #D96E91;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.medicaltime .cont .about .tel-reserve {
        padding: 32px 16px;
        margin-bottom: 16px; } }
    body.medicaltime .cont .about .tel-reserve .c-title04 {
      margin-bottom: 16px; }
      @media only screen and (max-width: 767px) {
        body.medicaltime .cont .about .tel-reserve .c-title04 {
          font-size: 17px;
          font-size: 1.7rem; } }
    body.medicaltime .cont .about .tel-reserve .c-attention {
      margin-top: 0;
      margin-bottom: 27px; }
      @media only screen and (max-width: 767px) {
        body.medicaltime .cont .about .tel-reserve .c-attention {
          margin-bottom: 24px; } }
    body.medicaltime .cont .about .tel-reserve .tel {
      display: flex;
      align-items: center;
      transition: opacity .3s;
      width: max-content;
      margin: 0 auto 8px; }
      body.medicaltime .cont .about .tel-reserve .tel:hover {
        opacity: 0.6; }
      body.medicaltime .cont .about .tel-reserve .tel i {
        display: inline-block;
        width: 48px;
        margin-right: 8px; }
        @media only screen and (max-width: 767px) {
          body.medicaltime .cont .about .tel-reserve .tel i {
            width: 40px;
            margin-right: 2px; } }
      body.medicaltime .cont .about .tel-reserve .tel span {
        font-family: "Lora", serif;
        letter-spacing: 0.1em;
        font-size: 30px;
        font-size: 3rem;
        white-space: nowrap; }
        @media only screen and (max-width: 767px) {
          body.medicaltime .cont .about .tel-reserve .tel span {
            font-size: 30px;
            font-size: 3rem; } }
    body.medicaltime .cont .about .tel-reserve .reserve {
      width: 280px;
      height: 64px;
      border-radius: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #D96E91;
      color: #fff;
      border: 1px solid #D96E91;
      transition: color .3s, background-color .3s;
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        body.medicaltime .cont .about .tel-reserve .reserve {
          width: 100%; } }
      body.medicaltime .cont .about .tel-reserve .reserve:hover {
        color: #D96E91;
        background: #fff; }
        body.medicaltime .cont .about .tel-reserve .reserve:hover i svg path {
          stroke: #D96E91; }
      body.medicaltime .cont .about .tel-reserve .reserve i {
        display: inline-block;
        width: 16px;
        margin-right: 12px; }
        body.medicaltime .cont .about .tel-reserve .reserve i svg path {
          transition: stroke .3s; }
      body.medicaltime .cont .about .tel-reserve .reserve span {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        font-weight: 600; }

body.sevenreasons .cont {
  padding: 80px 0 48px;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden; }
  body.sevenreasons .cont:before {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    top: 55px;
    right: calc(50vw + 411px); }
    @media only screen and (max-width: 767px) {
      body.sevenreasons .cont:before {
        width: 138px;
        height: 138px;
        right: auto;
        top: 64px;
        left: -46px; } }
  body.sevenreasons .cont:after {
    content: "";
    width: 264px;
    height: 264px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    top: 20px;
    left: calc(50vw + 417px); }
    @media only screen and (max-width: 767px) {
      body.sevenreasons .cont:after {
        width: 110px;
        height: 110px;
        left: auto;
        top: 78px;
        right: -28px; } }
  @media only screen and (max-width: 767px) {
    body.sevenreasons .cont {
      padding: 48px 0; } }
  body.sevenreasons .cont .c-sub-title {
    margin-bottom: 32px; }
    @media only screen and (max-width: 767px) {
      body.sevenreasons .cont .c-sub-title {
        margin-left: -8px;
        margin-right: -8px; } }
  body.sevenreasons .cont .c-box {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.sevenreasons .cont .c-box {
        margin-bottom: 16px; } }
  body.sevenreasons .cont .c-table {
    margin-top: 16px; }
    @media only screen and (max-width: 767px) {
      body.sevenreasons .cont .c-table {
        margin-top: 16px; } }
  body.sevenreasons .cont .c-list {
    margin-bottom: 24px; }
    body.sevenreasons .cont .c-list .c-attention {
      padding-left: 0.5em;
      margin-bottom: 0; }
  body.sevenreasons .cont .c-title04 {
    margin-top: 24px;
    margin-bottom: 8px; }
    @media only screen and (max-width: 767px) {
      body.sevenreasons .cont .c-title04 {
        margin-top: 16px; } }
  body.sevenreasons .cont .c-text01 {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.sevenreasons .cont .c-text01 {
        margin-bottom: 16px; } }
    body.sevenreasons .cont .c-text01:last-of-type {
      margin-bottom: 0; }
  body.sevenreasons .cont .c-attention {
    margin-bottom: 8px; }
    body.sevenreasons .cont .c-attention:last-of-type {
      margin-bottom: 0; }

body.sevenreasons .info {
  margin-top: 80px; }
  @media only screen and (max-width: 767px) {
    body.sevenreasons .info {
      margin-top: 48px; } }
  body.sevenreasons .info .c-underline {
    text-align: center;
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.sevenreasons .info .c-underline {
        margin-bottom: 16px; } }
  body.sevenreasons .info h4 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-family: "Shippori Mincho", serif;
    margin-bottom: 16px;
    margin-top: 48px; }
    @media only screen and (max-width: 767px) {
      body.sevenreasons .info h4 {
        font-size: 16px;
        font-size: 1.6rem; } }

body.top main {
  overflow: hidden; }

body.top .main-visual {
  position: relative;
  height: 880px; }
  @media only screen and (max-width: 1360px) {
    body.top .main-visual {
      height: 64.70588235vw; } }
  @media only screen and (max-width: 767px) {
    body.top .main-visual {
      height: 186.66666667vw; } }
  body.top .main-visual__image {
    width: 1757px;
    position: absolute;
    top: -152px;
    left: calc(50% - 78px);
    transform: translate(-50%, 0%); }
    @media only screen and (max-width: 1360px) {
      body.top .main-visual__image {
        width: 129.19117647vw;
        top: -11.17647059vw;
        left: calc(50% - 5.73529412vw); } }
    @media only screen and (max-width: 767px) {
      body.top .main-visual__image {
        width: 168.71794872vw;
        height: 225.12820513vw;
        top: -23.33333333vw;
        left: calc(50% - 12.30769231vw); } }
  body.top .main-visual__text {
    line-height: 2.1;
    letter-spacing: 0.2em;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 500;
    font-family: "Shippori Mincho", serif;
    position: absolute;
    top: 85px;
    left: calc(50vw + 328px); }
    @media only screen and (min-width: 768px) {
      body.top .main-visual__text {
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl; } }
    @media only screen and (max-width: 1360px) {
      body.top .main-visual__text {
        font-size: 1.76470588vw;
        top: 6.25vw;
        left: calc(50vw + 24.11764706vw); } }
    @media only screen and (max-width: 767px) {
      body.top .main-visual__text {
        top: auto;
        left: 32px;
        bottom: 80px;
        font-size: 5.12820513vw;
        letter-spacing: 0.05em;
        line-height: 2; } }
    body.top .main-visual__text strong {
      display: block; }

body.top .information {
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  padding: 0 0 64px; }
  @media only screen and (max-width: 767px) {
    body.top .information {
      padding: 0 0 48px;
      margin-top: -10px; } }
  body.top .information .inner {
    max-width: 1160px; }
  body.top .information .c-title03 {
    margin: 24px 0 32px; }
  body.top .information .c-col3 {
    margin-bottom: 64px; }
    @media only screen and (max-width: 767px) {
      body.top .information .c-col3 {
        margin-bottom: 32px; } }

body.top .greeting {
  padding: 80px 0; }
  @media only screen and (max-width: 767px) {
    body.top .greeting {
      padding: 48px 0; } }
  body.top .greeting .inner {
    max-width: 1160px; }
  body.top .greeting .c-title03 {
    margin: 24px 0 32px; }
  body.top .greeting .c-btn {
    margin: 0 auto 0; }
    @media only screen and (max-width: 767px) {
      body.top .greeting .c-btn {
        margin-top: 32px; } }

body.top .contact {
  background: #FFE6E2;
  padding: 80px 0; }
  @media only screen and (max-width: 767px) {
    body.top .contact {
      padding: 48px 0; } }
  body.top .contact .contactArea {
    text-align: center;
    padding: 32px;
    background: #fff;
    border-radius: 8px;
    filter: drop-shadow(0 4px 16px #ffe5e1); }
    @media only screen and (max-width: 767px) {
      body.top .contact .contactArea {
        padding: 24px 8px; } }
    body.top .contact .contactArea .tel-reserve {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 24px 0; }
      @media only screen and (max-width: 767px) {
        body.top .contact .contactArea .tel-reserve {
          flex-direction: column;
          margin-bottom: 0; } }
      body.top .contact .contactArea .tel-reserve .tel {
        display: flex;
        align-items: center;
        transition: opacity .3s; }
        body.top .contact .contactArea .tel-reserve .tel:hover {
          opacity: 0.6; }
        body.top .contact .contactArea .tel-reserve .tel i {
          display: inline-block;
          width: 48px;
          margin-right: 8px; }
          @media only screen and (max-width: 767px) {
            body.top .contact .contactArea .tel-reserve .tel i {
              width: 40px;
              margin-right: 4px; } }
        body.top .contact .contactArea .tel-reserve .tel span {
          font-family: "Lora", serif;
          letter-spacing: 0.1em;
          font-size: 30px;
          font-size: 3rem;
          white-space: nowrap; }
          @media only screen and (max-width: 767px) {
            body.top .contact .contactArea .tel-reserve .tel span {
              font-size: 32px;
              font-size: 3.2rem; } }
      body.top .contact .contactArea .tel-reserve hr {
        width: 1px;
        height: 64px;
        border: none;
        background: #D96E91;
        margin: 0 16px;
        display: block; }
        @media only screen and (max-width: 767px) {
          body.top .contact .contactArea .tel-reserve hr {
            width: 280px;
            height: 1px;
            margin: 16px auto; } }
      body.top .contact .contactArea .tel-reserve .reserve {
        width: 280px;
        height: 64px;
        border-radius: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #D96E91;
        color: #fff;
        border: 1px solid #D96E91;
        transition: color .3s, background-color .3s; }
        body.top .contact .contactArea .tel-reserve .reserve:hover {
          color: #D96E91;
          background: #fff; }
          body.top .contact .contactArea .tel-reserve .reserve:hover i svg path {
            stroke: #D96E91; }
        body.top .contact .contactArea .tel-reserve .reserve i {
          display: inline-block;
          width: 16px;
          margin-right: 12px; }
          body.top .contact .contactArea .tel-reserve .reserve i svg path {
            transition: stroke .3s; }
        body.top .contact .contactArea .tel-reserve .reserve span {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.1em;
          font-weight: 600; }
    body.top .contact .contactArea__attention {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 500;
      color: #D96E91; }
      @media only screen and (max-width: 767px) {
        body.top .contact .contactArea__attention {
          margin-top: 8px; } }

body.top .topics {
  padding: 80px 0; }
  @media only screen and (max-width: 767px) {
    body.top .topics {
      padding: 34px 0; } }
  body.top .topics .inner {
    max-width: 1160px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.top .topics .inner {
        display: block; } }
  body.top .topics__head {
    width: 344px; }
    @media only screen and (max-width: 767px) {
      body.top .topics__head {
        width: 100%; } }
    body.top .topics__head .c-title02 {
      text-align: left;
      margin-bottom: 64px; }
      @media only screen and (max-width: 767px) {
        body.top .topics__head .c-title02 {
          text-align: center;
          margin-bottom: 24px; } }
  body.top .topics .c-topicsList {
    width: calc(100% - 344px); }
    @media only screen and (max-width: 767px) {
      body.top .topics .c-topicsList {
        width: 100%; } }
  @media only screen and (max-width: 767px) {
    body.top .topics .c-btn {
      margin: 24px auto 0; } }

body.top .appeal {
  background: #FFE6E2;
  padding: 80px 0; }
  @media only screen and (max-width: 767px) {
    body.top .appeal {
      padding: 48px 0; } }
  body.top .appeal .c-underline {
    text-align: center;
    margin-bottom: 24px; }
  body.top .appeal .column {
    display: flex;
    align-items: center;
    padding: 16px 48px;
    border: 1px solid #D96E91;
    border-radius: 8px;
    margin-top: 32px;
    margin-bottom: 48px; }
    @media only screen and (max-width: 767px) {
      body.top .appeal .column {
        margin-top: 24px;
        flex-direction: column;
        padding: 16px; } }
    body.top .appeal .column dt {
      font-size: 18px;
      font-size: 1.8rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 600;
      color: #D96E91;
      text-align: center;
      width: 189px; }
    body.top .appeal .column hr {
      width: 1px;
      height: 72px;
      display: block;
      background: #D96E91;
      margin: 0 24px;
      border: none; }
      @media only screen and (max-width: 767px) {
        body.top .appeal .column hr {
          width: 72px;
          height: 1px;
          margin: 16px auto; } }
    body.top .appeal .column dd {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 500;
      width: calc(100% - 238px); }
      @media only screen and (max-width: 767px) {
        body.top .appeal .column dd {
          width: 100%; } }
      body.top .appeal .column dd a {
        text-decoration: underline;
        transition: opacity .3s; }
        body.top .appeal .column dd a:hover {
          opacity: 0.6; }
  body.top .appeal .text-image {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px; }
    @media only screen and (max-width: 767px) {
      body.top .appeal .text-image {
        display: block; } }
    body.top .appeal .text-image .text {
      width: 60.83333333%; }
      @media only screen and (max-width: 767px) {
        body.top .appeal .text-image .text {
          width: 100%; } }
      body.top .appeal .text-image .text h3 {
        font-size: 20px;
        font-size: 2rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 600;
        font-family: "Shippori Mincho", serif;
        margin-bottom: 16px; }
        @media only screen and (max-width: 767px) {
          body.top .appeal .text-image .text h3 {
            font-size: 16px;
            font-size: 1.6rem; } }
    body.top .appeal .text-image .image {
      width: 35.83333333%;
      border-radius: 8px;
      overflow: hidden; }
      @media only screen and (max-width: 767px) {
        body.top .appeal .text-image .image {
          width: 100%;
          margin-bottom: 16px; } }
  body.top .appeal .c-btn {
    margin: 32px auto 0; }
    @media only screen and (max-width: 767px) {
      body.top .appeal .c-btn {
        margin-top: 24px; } }

body.topics .cont {
  padding: 80px 0 48px;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden; }
  body.topics .cont:before {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    top: 55px;
    right: calc(50vw + 411px); }
    @media only screen and (max-width: 767px) {
      body.topics .cont:before {
        width: 138px;
        height: 138px;
        right: auto;
        top: 64px;
        left: -46px; } }
  body.topics .cont:after {
    content: "";
    width: 264px;
    height: 264px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    top: 20px;
    left: calc(50vw + 417px); }
    @media only screen and (max-width: 767px) {
      body.topics .cont:after {
        width: 110px;
        height: 110px;
        left: auto;
        top: 78px;
        right: -28px; } }
  @media only screen and (max-width: 767px) {
    body.topics .cont {
      padding: 48px 0; } }
  body.topics .cont .c-sub-title {
    margin-bottom: 32px; }
  body.topics .cont .c-underline {
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      body.topics .cont .c-underline {
        text-align: center; } }
    body.topics .cont .c-underline.center {
      text-align: center; }
  body.topics .cont .c-box {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.topics .cont .c-box {
        margin-bottom: 16px; } }
    body.topics .cont .c-box .titleBox {
      padding-bottom: 24px;
      border-bottom: 1px solid #D96E91;
      margin-bottom: 24px;
      padding-left: 8px; }
      body.topics .cont .c-box .titleBox .date-cate {
        display: flex;
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        color: #D96E91;
        margin-bottom: 8px; }
        @media only screen and (max-width: 767px) {
          body.topics .cont .c-box .titleBox .date-cate {
            margin-bottom: 10px; } }
      body.topics .cont .c-box .titleBox h1 {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.33333333;
        font-weight: 500;
        font-family: "Shippori Mincho", serif; }
        @media only screen and (max-width: 767px) {
          body.topics .cont .c-box .titleBox h1 {
            font-size: 20px;
            font-size: 2rem;
            line-height: 1.6; } }
    body.topics .cont .c-box .post {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 500; }
      body.topics .cont .c-box .post h1 {
        font-size: 20px;
        font-size: 2rem;
        font-weight: 600;
        padding-bottom: 5px;
        border-bottom: 1px solid #333;
        margin-bottom: 18px; }
        @media only screen and (max-width: 767px) {
          body.topics .cont .c-box .post h1 {
            font-size: 18px;
            font-size: 1.8rem; } }
      body.topics .cont .c-box .post h2 {
        font-size: 24px;
        font-size: 2.4rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 600;
        font-family: "Shippori Mincho", serif;
        color: #D96E91;
        margin-bottom: 8px; }
        @media only screen and (max-width: 767px) {
          body.topics .cont .c-box .post h2 {
            font-size: 18px;
            font-size: 1.8rem; } }
      body.topics .cont .c-box .post p {
        margin-bottom: 24px; }
        body.topics .cont .c-box .post p:last-of-type {
          margin-bottom: 0; }
      body.topics .cont .c-box .post table {
        width: 100%;
        border-top: 1px solid #dddddd;
        border-left: 1px solid #dddddd;
        margin-top: 20px;
        margin-bottom: 20px;
        background: #fff; }
        body.topics .cont .c-box .post table td:nth-child(1) {
          width: 35%; }
        body.topics .cont .c-box .post table th, body.topics .cont .c-box .post table td {
          padding: 15px;
          border-bottom: 1px solid #dddddd;
          border-right: 1px solid #dddddd;
          font-size: 14px !important;
          line-height: 2 !important;
          font-family: "Zen Kaku Gothic New", sans-serif !important; }
          @media only screen and (max-width: 767px) {
            body.topics .cont .c-box .post table th, body.topics .cont .c-box .post table td {
              padding: 5px; } }
          body.topics .cont .c-box .post table th span, body.topics .cont .c-box .post table td span {
            font-size: 14px !important;
            font-family: "Zen Kaku Gothic New", sans-serif !important; }
          body.topics .cont .c-box .post table th p, body.topics .cont .c-box .post table td p {
            margin: 0; }
      body.topics .cont .c-box .post ul {
        padding: 24px;
        border-radius: 8px;
        border: 1px solid #D96E91;
        margin-top: 24px; }
        @media only screen and (max-width: 767px) {
          body.topics .cont .c-box .post ul {
            padding: 16px; } }
        body.topics .cont .c-box .post ul > li {
          padding-left: 1.2em;
          position: relative;
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.05em;
          line-height: 2;
          margin-bottom: 18px; }
          @media only screen and (max-width: 767px) {
            body.topics .cont .c-box .post ul > li {
              line-height: 1.7; } }
          body.topics .cont .c-box .post ul > li:last-of-type {
            margin-bottom: 0; }
          body.topics .cont .c-box .post ul > li:before {
            content: "・";
            position: absolute;
            top: 0;
            left: 0;
            color: #D96E91; }
          body.topics .cont .c-box .post ul > li > ul {
            padding: 0;
            border: none;
            margin-top: 0; }
            body.topics .cont .c-box .post ul > li > ul li {
              padding-left: 1em;
              position: relative;
              margin-bottom: 0; }
              body.topics .cont .c-box .post ul > li > ul li:before {
                content: "・";
                position: absolute;
                top: 0;
                left: 0;
                color: #3A322E; }
    body.topics .cont .c-box .c-topicsList li a {
      display: flex;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        body.topics .cont .c-box .c-topicsList li a {
          display: block; } }
    body.topics .cont .c-box .c-topicsList li .date {
      margin: 0;
      width: 114px; }
      @media only screen and (max-width: 767px) {
        body.topics .cont .c-box .c-topicsList li .date {
          margin-bottom: 8px; } }
    body.topics .cont .c-box .c-topicsList li .title {
      width: calc(100% - 114px); }
      @media only screen and (max-width: 767px) {
        body.topics .cont .c-box .c-topicsList li .title {
          width: 100%; } }
  body.topics .cont .prev-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 546px;
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      body.topics .cont .prev-next {
        max-width: 280px;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 60px; } }
    body.topics .cont .prev-next .all {
      width: 280px;
      height: 48px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #D96E91;
      color: #fff;
      border: 1px solid #D96E91;
      transition: color .3s, background-color .3s;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.1em;
      font-weight: 600; }
      @media only screen and (max-width: 767px) {
        body.topics .cont .prev-next .all {
          margin-top: 28px; } }
      body.topics .cont .prev-next .all:hover {
        background: #fff;
        color: #D96E91; }
    body.topics .cont .prev-next .prev, body.topics .cont .prev-next .next {
      display: flex;
      align-items: center;
      width: max-content;
      position: absolute;
      top: 50%;
      transform: translate(0%, -50%);
      transition: opacity .3s; }
      @media only screen and (max-width: 767px) {
        body.topics .cont .prev-next .prev, body.topics .cont .prev-next .next {
          position: static;
          transform: translate(0, 0);
          margin: 0 2px; } }
      body.topics .cont .prev-next .prev:hover, body.topics .cont .prev-next .next:hover {
        opacity: 0.6; }
      body.topics .cont .prev-next .prev svg, body.topics .cont .prev-next .next svg {
        display: inline-block;
        margin: 0 8px;
        position: relative;
        top: 1px; }
      body.topics .cont .prev-next .prev span, body.topics .cont .prev-next .next span {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        font-weight: 600;
        color: #D96E91; }
    body.topics .cont .prev-next .prev {
      left: 0; }
    body.topics .cont .prev-next .next {
      right: 0; }

body.voice .cont {
  padding: 80px 0 48px;
  background: linear-gradient(to bottom, #ffffff, #ffffff 22%, #FFE5E1);
  position: relative;
  overflow: hidden; }
  body.voice .cont:before {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    background: url(../images/common/mv_deco_02.png) center center/cover no-repeat;
    position: absolute;
    top: 55px;
    right: calc(50vw + 411px); }
    @media only screen and (max-width: 767px) {
      body.voice .cont:before {
        width: 138px;
        height: 138px;
        right: auto;
        top: 64px;
        left: -46px; } }
  body.voice .cont:after {
    content: "";
    width: 264px;
    height: 264px;
    display: block;
    background: url(../images/common/mv_deco_01.png) center center/cover no-repeat;
    position: absolute;
    top: 20px;
    left: calc(50vw + 417px); }
    @media only screen and (max-width: 767px) {
      body.voice .cont:after {
        width: 110px;
        height: 110px;
        left: auto;
        top: 78px;
        right: -28px; } }
  @media only screen and (max-width: 767px) {
    body.voice .cont {
      padding: 48px 0; } }
  body.voice .cont .inner {
    max-width: 960px; }
  body.voice .cont .c-sub-title {
    margin-bottom: 32px; }
  body.voice .cont .c-underline {
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      body.voice .cont .c-underline {
        text-align: center; } }
    body.voice .cont .c-underline.center {
      text-align: center; }
  body.voice .cont .c-box {
    padding: 20px 40px 40px; }
    @media only screen and (max-width: 767px) {
      body.voice .cont .c-box {
        padding: 24px 12px 40px; } }
  body.voice .cont .thanks {
    padding-top: 20px; }
    body.voice .cont .thanks .c-text01 {
      margin-bottom: 28px;
      text-align: center; }
    body.voice .cont .thanks .c-btn {
      max-width: 360px;
      height: 64px;
      margin: 20px auto 0;
      justify-content: center;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.voice .cont .thanks .c-btn {
          margin-top: 16px;
          max-width: 296px;
          height: 56px; } }
      body.voice .cont .thanks .c-btn:hover svg path {
        fill: #D96E91; }
      body.voice .cont .thanks .c-btn svg {
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translate(0%, -50%); }
        @media only screen and (max-width: 767px) {
          body.voice .cont .thanks .c-btn svg {
            right: 26px; } }
        body.voice .cont .thanks .c-btn svg path {
          transition: fill .3s; }
  body.voice .cont .formArea table {
    width: 100%; }
    @media only screen and (max-width: 767px) {
      body.voice .cont .formArea table {
        display: block; } }
    @media only screen and (max-width: 767px) {
      body.voice .cont .formArea table tbody {
        display: block; } }
    @media only screen and (max-width: 767px) {
      body.voice .cont .formArea table tr {
        display: block;
        padding: 16px 0; } }
    body.voice .cont .formArea table tr th {
      width: 200px;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 500;
      padding-right: 20px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.voice .cont .formArea table tr th {
          display: block;
          width: 100%;
          padding: 0;
          margin-bottom: 20px; } }
      body.voice .cont .formArea table tr th > div {
        display: flex;
        justify-content: space-between;
        align-items: center; }
        body.voice .cont .formArea table tr th > div small {
          width: 47px;
          height: 26px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 4px;
          background: #D96E91;
          color: #fff;
          font-size: 10px;
          font-size: 1rem;
          letter-spacing: 0.04em;
          font-weight: 600;
          margin-left: 10px; }
      @media only screen and (min-width: 768px) {
        body.voice .cont .formArea table tr th.top {
          padding-bottom: 32px; } }
    body.voice .cont .formArea table tr td {
      width: calc(100% - 200px);
      padding: 20px 0;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.voice .cont .formArea table tr td {
          display: block;
          width: 100%;
          padding: 0; } }
      body.voice .cont .formArea table tr td input[type="text"] {
        width: 100%;
        height: 48px;
        background: #fff;
        border: 1px solid #B3B3B3;
        border-radius: 4px;
        padding: 10px 24px;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 500; }
        body.voice .cont .formArea table tr td input[type="text"]::placeholder {
          color: #B3B3B3; }
      body.voice .cont .formArea table tr td textarea {
        width: 100%;
        height: 240px;
        background: #fff;
        border: 1px solid #B3B3B3;
        border-radius: 4px;
        padding: 24px 24px;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 500;
        resize: none; }
        body.voice .cont .formArea table tr td textarea::placeholder {
          color: #B3B3B3; }
        @media only screen and (max-width: 767px) {
          body.voice .cont .formArea table tr td textarea {
            padding: 8px 24px; } }
      body.voice .cont .formArea table tr td .checkList {
        display: flex;
        padding-right: 12px;
        justify-content: flex-end; }
        @media only screen and (max-width: 767px) {
          body.voice .cont .formArea table tr td .checkList {
            padding: 0;
            justify-content: center; } }
        body.voice .cont .formArea table tr td .checkList li {
          margin: 0 32px;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.voice .cont .formArea table tr td .checkList li {
              margin: 0 12px; } }
          body.voice .cont .formArea table tr td .checkList li input[type="radio"] {
            width: 1px;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0; }
            body.voice .cont .formArea table tr td .checkList li input[type="radio"]:checked + label > i:before {
              opacity: 1; }
          body.voice .cont .formArea table tr td .checkList li label {
            text-align: center; }
            body.voice .cont .formArea table tr td .checkList li label i {
              width: 16px;
              height: 16px;
              border-radius: 50%;
              border: 2px solid #B3B3B3;
              display: block;
              position: relative;
              margin: 0 auto; }
              body.voice .cont .formArea table tr td .checkList li label i:before {
                content: "";
                width: 8px;
                height: 8px;
                border-radius: 50%;
                display: block;
                background: #D96E91;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                transition: opacity .3s;
                opacity: 0; }
            body.voice .cont .formArea table tr td .checkList li label span {
              display: block;
              font-size: 16px;
              font-size: 1.6rem;
              letter-spacing: 0.05em;
              line-height: 1.7;
              font-weight: 500;
              margin-top: 16px; }
      body.voice .cont .formArea table tr td .c-attention {
        display: block;
        margin-top: 8px; }
        @media only screen and (max-width: 767px) {
          body.voice .cont .formArea table tr td .c-attention {
            margin-top: 16px; } }
      body.voice .cont .formArea table tr td .text {
        padding: 10px 24px;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 500; }
  body.voice .cont .formArea .c-btn {
    max-width: 360px;
    height: 64px;
    margin: 20px auto 0;
    justify-content: center;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.voice .cont .formArea .c-btn {
        margin-top: 16px;
        max-width: 296px;
        height: 56px; } }
    body.voice .cont .formArea .c-btn:hover svg path {
      fill: #D96E91; }
    body.voice .cont .formArea .c-btn svg {
      position: absolute;
      top: 50%;
      right: 16px;
      transform: translate(0%, -50%); }
      @media only screen and (max-width: 767px) {
        body.voice .cont .formArea .c-btn svg {
          right: 26px; } }
      body.voice .cont .formArea .c-btn svg path {
        transition: fill .3s; }
  body.voice .cont .formArea .modify {
    display: block;
    width: max-content;
    text-decoration: underline;
    margin: 32px auto 0; }
    @media only screen and (max-width: 767px) {
      body.voice .cont .formArea .modify {
        margin-top: 24px; } }

.formError .formErrorContent {
  white-space: nowrap; }
