@charset "UTF-8";
/*
Theme Name:ICONIC child
Theme URI:
Description:WordPressテーマ「ICONIC」の自作子テーマです。
Template:iconic_tcd062
Author:Takashi Yamada
Author URI:https://tcd-theme.com/
Version:1.7.2
*/
/* mixin */
/* variable */
:root {
  --color-primary: #f0f0f0;
  --color-grey-light-1: #faf9f9;
  --color-grey-light-2: #f4f2f2;
  --color-grey-light-3: #f0eeee;
  --color-grey-light-4: #ccc;
  --color-grey-dark-1: #595757;
  --color-grey-dark-2: #6F8197;
  --color-grey-dark-3: #777;
  --color-grey-dark-4: #999;
  --color-black: #000;
  --color-white: #fff;
  --default-font-size: 1.3rem; }
  @media only screen and (min-width: 37.5em) {
    :root {
      --default-font-size: 1.8rem; } }
  @media only screen and (min-width: 56.25em) {
    :root {
      --default-font-size: 1.5rem; } }
  @media only screen and (min-width: 75em) {
    :root {
      --default-font-size: 1.7rem; } }
  @media only screen and (min-width: 112.5em) {
    :root {
      --default-font-size: 2rem; } }

* {
  margin: 0;
  padding: 0; }

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

html, .wpcf7 {
  box-sizing: border-box;
  font-size: 56.25%; }
  @media only screen and (min-width: 37.5em) {
    html, .wpcf7 {
      font-size: 50%; } }
  @media only screen and (min-width: 56.25em) {
    html, .wpcf7 {
      font-size: 58%; } }
  @media only screen and (min-width: 75em) {
    html, .wpcf7 {
      font-size: 60%; } }
  @media only screen and (min-width: 112.5em) {
    html, .wpcf7 {
      font-size: 62.5%; } }

body {
  background-color: var(--color-primary); }

a {
  text-decoration: none;
  color: var(--color-black);
  outline: none; }

img {
  width: 100%;
  height: 100%; }

ul {
  list-style-type: none; }

/* タイポグラフィー */
body {
  font-family: YuGothic, 'Yu Gothic', sans-serif;
  font-weight: 400;
  /* font-size: 16px; */
  line-height: 1.6;
  color: var(--color-black); }

.heading-primary {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 2rem; }
  @media only screen and (min-width: 37.5em) {
    .heading-primary {
      font-size: 2.3rem;
      margin-bottom: 2.4rem; } }

.heading-secondary, .wpcf7 .pg-contact__ttl, .original-page__ttl {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .2rem;
  transition: all .2s;
  color: var(--color-white);
  margin-bottom: 1rem;
  white-space: nowrap; }
  @media only screen and (min-width: 37.5em) {
    .heading-secondary, .wpcf7 .pg-contact__ttl, .original-page__ttl {
      font-size: 3rem;
      margin-bottom: 1.5rem; } }
  @media only screen and (min-width: 56.25em) {
    .heading-secondary, .wpcf7 .pg-contact__ttl, .original-page__ttl {
      font-size: 2.8rem;
      margin-bottom: 2rem; } }
  @media only screen and (min-width: 75em) {
    .heading-secondary, .wpcf7 .pg-contact__ttl, .original-page__ttl {
      font-size: 3.1rem; } }
  @media only screen and (min-width: 112.5em) {
    .heading-secondary, .wpcf7 .pg-contact__ttl, .original-page__ttl {
      font-size: 3.5rem; } }

.heading-tertiary, .wpcf7 .pg-contact__label, .original-page h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-grey-dark-2);
  margin-bottom: .8rem;
  white-space: nowrap; }
  @media only screen and (min-width: 37.5em) {
    .heading-tertiary, .wpcf7 .pg-contact__label, .original-page h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem; } }
  @media only screen and (min-width: 56.25em) {
    .heading-tertiary, .wpcf7 .pg-contact__label, .original-page h2 {
      font-size: 2.2rem; } }
  @media only screen and (min-width: 75em) {
    .heading-tertiary, .wpcf7 .pg-contact__label, .original-page h2 {
      font-size: 2.6rem;
      margin-bottom: 1.2rem; } }
  @media only screen and (min-width: 112.5em) {
    .heading-tertiary, .wpcf7 .pg-contact__label, .original-page h2 {
      font-size: 3rem;
      margin-bottom: 1.5rem; } }

.paragraph, .wpcf7 p {
  font-size: var(--default-font-size); }
  .paragraph:not(:last-child), .wpcf7 p:not(:last-child) {
    margin-bottom: calc(var(--default-font-size) * .8); }

.brport {
  display: block; }
  @media only screen and (min-width: 37.5em) {
    .brport {
      display: none; } }

.brland {
  display: block; }
  @media only screen and (min-width: 56.25em) {
    .brland {
      display: none; } }

.brpc {
  display: block; }
  @media only screen and (min-width: 75em) {
    .brpc {
      display: none; } }
  .brpc-slash {
    display: none; }
    @media only screen and (min-width: 75em) {
      .brpc-slash {
        display: inline-block; } }

/* utilities */
.u-center-text {
  text-align: center !important; }

.u-left-text {
  text-align: left !important; }

.u-right-text {
  text-align: right !important; }

.u-textColor-white {
  color: var(--color-white) !important; }

.u-textColor-black {
  color: var(--color-black) !important; }

.u-textColor-grey-dark-1 {
  color: var(--color-grey-dark-1) !important; }

.u-textColor-grey-dark-2 {
  color: var(--color-grey-dark-2) !important; }

.u-textColor-grey-dark-4 {
  color: var(--color-grey-dark-4) !important; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-margin-bottom-medium {
  margin-bottom: 3rem !important; }
  @media only screen and (min-width: 56.25em) {
    .u-margin-bottom-medium {
      margin-bottom: 4rem !important; } }

.u-margin-bottom-big, .wpcf7 p:not(:last-child) {
  margin-bottom: 5rem !important; }
  @media only screen and (min-width: 56.25em) {
    .u-margin-bottom-big, .wpcf7 p:not(:last-child) {
      margin-bottom: 8rem !important; } }

.u-margin-top-small {
  margin-top: 2.5rem !important; }

.u-margin-top-big {
  margin-top: 8rem !important; }

.u-margin-top-huge {
  margin-top: 10rem !important; }

/* 親テーマ・プラグイン独自のスタイル打ち消し
*/
.wpcf7 {
  background: var(--color-primary);
  border: none;
  margin: 0 0 2.5em !important;
  padding: 0;
  width: 100%; }

.wpcf7 .wpcf7-submit {
  background-color: var(--color-grey-dark-2);
  padding: 0.7rem 0;
  height: auto;
  line-height: inherit;
  font-size: calc(var(--default-font-size) * 1.2); }
  .wpcf7 .wpcf7-submit:hover {
    background-color: var(--color-grey-light-4); }

.wpcf7 form {
  margin: 0; }

a.btn-round:hover, a.btn-round-corner:hover {
  color: var(--color-white);
  opacity: 0.8; }

/* ヘッダー */
.header {
  height: 10rem;
  background-color: var(--color-primary);
  display: flex;
  align-items: center; }
  @media only screen and (min-width: 37.5em) {
    .header {
      height: 10rem; } }
  .header__inner {
    width: 80%;
    max-width: 1070px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .header__pc-nav {
    display: none; }
    @media only screen and (min-width: 56.25em) {
      .header__pc-nav {
        display: block; } }
  .header__logoBox {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media only screen and (min-width: 56.25em) {
      .header__logoBox {
        flex-direction: row;
        align-items: center; } }
    .header__logoBox-logo {
      width: auto;
      height: 5rem;
      object-fit: contain; }
    .header__logoBox-ttl {
      margin-top: -.5rem;
      white-space: nowrap; }
  .header__cart {
    height: 4rem;
    width: 4rem; }
    @media only screen and (min-width: 56.25em) {
      .header__cart {
        display: none; } }

/* movile-navigation */
@media only screen and (min-width: 56.25em) {
  .navigation {
    display: none; } }

.navigation__checkbox {
  display: none; }

.navigation__button {
  height: 7rem;
  width: 7rem;
  position: relative;
  z-index: 2000;
  text-align: center; }

.navigation__background {
  height: 6rem;
  width: 0;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  left: -6.5rem;
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.66, 0, 0.07, 1); }

.navigation__nav {
  height: 30rem;
  position: fixed;
  top: 150px;
  left: 0;
  z-index: 1500;
  background-color: var(--color-grey-dark-2);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  opacity: 0;
  pointer-events: none;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.8s ease; }

.navigation__list {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: left;
  list-style: none; }

.navigation__item {
  margin: 1rem; }

.navigation__link:link, .navigation__link:visited {
  font-family: 'Tsukushi B Round Gothic';
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 300;
  padding: .5rem 2rem;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap; }

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: .85;
  pointer-events: auto;
  width: 20rem; }

.navigation__icon {
  position: relative;
  margin-top: 2rem; }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3rem;
    height: 1px;
    background-color: var(--color-black);
    display: inline-block; }
  .navigation__icon::before, .navigation__icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all .2s; }
  .navigation__icon::before {
    top: -.9rem; }
  .navigation__icon::after {
    top: .9rem; }

.navigation__close-button {
  position: absolute;
  top: 3rem;
  right: 2rem;
  height: 4rem;
  width: 4rem; }

.navigation__close-icon {
  position: relative; }
  .navigation__close-icon::before, .navigation__close-icon::after {
    width: 3rem;
    height: 1px;
    background-color: var(--color-white);
    display: inline-block; }
  .navigation__close-icon::before, .navigation__close-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%; }
  .navigation__close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg); }
  .navigation__close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg); }

.navigation__button:hover .navigation__icon::before {
  top: -1rem; }

.navigation__button:hover .navigation__icon::after {
  top: 1rem; }

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  transform: rotate(-135deg);
  top: 0; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  transform: rotate(135deg);
  top: 0; }

.pc-nav__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; }
  .pc-nav__list > *:not(:last-child) {
    margin-right: calc(var(--default-font-size) * 2.2); }
    .pc-nav__list > *:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 50%;
      right: calc(var(--default-font-size) * -.9);
      width: 1px;
      height: var(--default-font-size);
      transform: rotate(25deg) translateY(-50%);
      transform-origin: center 0;
      background-color: var(--color-black); }

.pc-nav__item {
  position: relative; }

.pc-nav__link {
  font-family: 'Tsukushi B Round Gothic';
  font-size: var(--default-font-size);
  flex-wrap: nowrap; }

/* フッター */
.footer {
  font-family: 'Tsukushi B Round Gothic';
  background-color: #f2f0ec;
  padding: 10rem 0 3rem;
  position: relative; }
  .footer::before {
    content: '';
    position: absolute;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    margin: 0 auto;
    height: 1px;
    background-color: var(--color-grey-dark-2); }
    @media only screen and (min-width: 56.25em) {
      .footer::before {
        content: none; } }
  @media only screen and (min-width: 56.25em) {
    .footer {
      padding: 11rem 0 5rem; } }
  .footer__inner {
    width: 80%;
    margin: 0 auto;
    position: relative;
    text-align: center; }
    @media only screen and (min-width: 37.5em) {
      .footer__inner {
        width: 60%; } }
    @media only screen and (min-width: 56.25em) {
      .footer__inner {
        width: 90%;
        max-width: 1550px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center; }
        .footer__inner > *:nth-child(-n+4) {
          flex: 1 1 30%;
          margin-bottom: 4rem; }
        .footer__inner > *:nth-child(3) {
          flex: 0 0 0;
          margin: 0 3% 4rem; }
        .footer__inner > *:nth-child(n+5) {
          flex: 100%; } }
    .footer__inner > * {
      margin-bottom: 2rem; }
    @media only screen and (min-width: 56.25em) {
      .footer__inner::before, .footer__inner::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: var(--color-grey-dark-2); } }
    .footer__inner::before {
      top: -5rem; }
    .footer__inner::after {
      top: 18.5rem; }
      @media only screen and (min-width: 75em) {
        .footer__inner::after {
          top: 21rem; } }
      @media only screen and (min-width: 112.5em) {
        .footer__inner::after {
          top: 24rem; } }
  .footer__ttl {
    white-space: nowrap; }
    @media only screen and (min-width: 37.5em) {
      .footer__ttl {
        font-size: 4rem; } }
    @media only screen and (min-width: 56.25em) {
      .footer__ttl {
        font-size: 2.1rem;
        position: relative;
        text-align: right; } }
    .footer__ttl-sub {
      display: none; }
      @media only screen and (min-width: 56.25em) {
        .footer__ttl-sub {
          font-size: 1.7rem;
          display: block;
          position: absolute;
          right: 8.5rem; } }
  .footer__img-box {
    width: 70%;
    margin: 2rem auto; }
    @media only screen and (min-width: 56.25em) {
      .footer__img-box {
        display: none; } }
  @media only screen and (min-width: 56.25em) {
    .footer__txt {
      text-align: left; } }
  .footer__logoBox-pc {
    display: none; }
    @media only screen and (min-width: 56.25em) {
      .footer__logoBox-pc {
        display: block; } }
  .footer__logoBox-sp {
    display: block;
    margin-top: 2.5rem; }
    @media only screen and (min-width: 56.25em) {
      .footer__logoBox-sp {
        display: none; } }
  .footer__logoBox img {
    width: auto;
    height: 8rem;
    object-fit: contain; }
    @media only screen and (min-width: 56.25em) {
      .footer__logoBox img {
        height: 9rem; } }
    @media only screen and (min-width: 75em) {
      .footer__logoBox img {
        height: 12rem; } }
    @media only screen and (min-width: 112.5em) {
      .footer__logoBox img {
        height: 15rem; } }
  @media only screen and (min-width: 56.25em) {
    .footer__insta {
      margin-bottom: 5rem; } }
  .footer__mylet {
    display: block; }
    @media only screen and (min-width: 56.25em) {
      .footer__mylet {
        display: none; } }
  .footer__copyright {
    display: block; }
    @media only screen and (min-width: 56.25em) {
      .footer__copyright {
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%); } }
  .footer__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
    .footer__list > *:nth-child(2n-1) {
      text-align: right;
      margin-right: 2rem; }
      @media only screen and (min-width: 56.25em) {
        .footer__list > *:nth-child(2n-1) {
          text-align: left; } }
      .footer__list > *:nth-child(2n-1)::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -1rem;
        width: 1px;
        height: var(--default-font-size);
        transform: rotate(25deg) translateY(-50%);
        transform-origin: center 0;
        background-color: var(--color-black); }
        @media only screen and (min-width: 56.25em) {
          .footer__list > *:nth-child(2n-1)::after {
            content: none; } }
    @media only screen and (min-width: 56.25em) {
      .footer__list {
        flex-wrap: nowrap; }
        .footer__list > *:not(:last-child) {
          margin-right: 3rem; }
          .footer__list > *:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 50%;
            right: -1rem;
            width: 1px;
            height: var(--default-font-size);
            transform: rotate(25deg) translateY(-50%);
            transform-origin: center center;
            background-color: var(--color-black); } }
  .footer__item {
    position: relative;
    flex: 40%;
    text-align: left;
    margin-bottom: 1rem;
    white-space: nowrap; }
    @media only screen and (min-width: 56.25em) {
      .footer__item {
        flex: 0; } }
  .footer__link {
    text-decoration: none;
    color: var(--color-black);
    font-size: var(--default-font-size); }

/* grid */
.row {
  display: flex;
  flex-direction: column; }
  @media only screen and (min-width: 56.25em) {
    .row {
      flex-direction: row; }
      .row.row-reverse {
        flex-direction: row-reverse; } }
  .row .col-1-of-2 {
    width: 100%; }
    @media only screen and (min-width: 56.25em) {
      .row .col-1-of-2 {
        width: 50%; } }

.logoBox__logo {
  height: 5rem;
  object-fit: contain; }

.logoBox__ttl {
  font-family: 'Tsukushi B Round Gothic'; }

.jumbotron {
  height: 0;
  padding-top: 100%;
  background-position: center center;
  background-size: cover;
  position: relative; }
  @media only screen and (min-width: 56.25em) {
    .jumbotron {
      height: 100%;
      padding-top: 0; } }
  .jumbotron__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

.media {
  display: flex;
  align-items: center; }
  .media:not(:last-child) {
    margin-bottom: 1.5rem; }
    @media only screen and (min-width: 37.5em) {
      .media:not(:last-child) {
        margin-bottom: 2rem; } }
  .media__imgWrapper {
    flex: 0 1 34%;
    margin-right: 2rem; }
  .media__img {
    width: 100%; }
  .media__body {
    flex: 1; }

/* ボタン */
.btn-text {
  display: inline-block; }

.btn-round, .btn-round-corner {
  text-decoration: none;
  padding: 1rem 0;
  border-radius: 30px;
  font-size: calc(var(--default-font-size) * 1.2);
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-grey-dark-2);
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  width: 100%; }

.btn-round-corner {
  border: none;
  border-radius: 5px; }

/* カード */
.card__imgWrapper {
  position: relative;
  padding-top: 113%;
  overflow: hidden; }

.card__img {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  object-fit: contain; }

.card__body {
  text-align: center; }

.card__ttl {
  margin-top: 1rem;
  font-weight: 100;
  white-space: nowrap; }

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }
  @media only screen and (min-width: 56.25em) {
    .cards {
      flex-wrap: nowrap; } }

.cards__item {
  width: 31.707%;
  margin-right: 2.43902%;
  margin-bottom: 1rem; }
  .cards__item:nth-child(3n) {
    margin-right: 0; }
  @media only screen and (min-width: 56.25em) {
    .cards__item:not(:last-child) {
      margin-right: 2.5%; } }

/* round */
.round {
  position: relative;
  width: calc(var(--default-font-size) * 5.5);
  height: calc(var(--default-font-size) * 5.5);
  border-radius: 50%;
  background-color: var(--color-grey-dark-2);
  text-align: center; }
  .round__txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--default-font-size);
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap; }
    .round__txt-big {
      font-size: calc(var(--default-font-size) * 1.5); }

/* square-list */
.square-list {
  list-style: none; }
  .square-list__item, .pg-low__table tr {
    position: relative;
    padding-left: var(--default-font-size);
    font-size: var(--default-font-size); }
    .square-list__item::before, .pg-low__table tr::before {
      content: '';
      position: absolute;
      top: calc(var(--default-font-size) / 2.5);
      left: 0;
      display: block;
      width: calc(var(--default-font-size) * 0.8);
      height: calc(var(--default-font-size) * 0.8);
      background-color: var(--color-black); }

.child-square-list {
  list-style: none; }
  .child-square-list__item {
    position: relative;
    padding-left: 0; }
    .child-square-list__item::before {
      content: '';
      position: absolute;
      top: calc(var(--default-font-size) / 2.5);
      left: calc(var(--default-font-size) * -1);
      display: block;
      width: calc(var(--default-font-size) * 0.8);
      height: calc(var(--default-font-size) * 0.8);
      background-color: var(--color-white);
      border: 1px solid var(--color-black); }

/* フォーム */
.wpcf7 .wpcf7-form-control-wrap {
  display: block; }

.wpcf7 .wpcf7-form-control.wpcf7-radio {
  display: flex;
  justify-content: center;
  text-align: center;
  white-space: nowrap; }
  @media only screen and (min-width: 56.25em) {
    .wpcf7 .wpcf7-form-control.wpcf7-radio {
      justify-content: flex-start; } }
  .wpcf7 .wpcf7-form-control.wpcf7-radio > *:not(:last-child) {
    margin-right: calc(var(--default-font-size) * 1.6); }

.wpcf7 span.wpcf7-list-item {
  position: relative;
  flex-basis: 50%;
  width: 100%;
  flex: 0 0;
  display: inline-block; }

.wpcf7 .wpcf7-list-item-label {
  font-size: calc(var(--default-font-size) * 1.3);
  cursor: pointer;
  padding-left: calc(var(--default-font-size) * 1.3); }

.wpcf7 input[type="radio"] {
  position: absolute;
  opacity: 0; }

.wpcf7 .wpcf7-list-item-label::before {
  content: '';
  background: #fff;
  border: 1px solid var(--color-grey-dark-2);
  display: inline-block;
  width: var(--default-font-size);
  height: var(--default-font-size);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  vertical-align: middle;
  cursor: pointer;
  transition: all 250ms ease; }

.wpcf7 input[type="radio"]:checked + .wpcf7-list-item-label:before {
  background-color: var(--color-grey-dark-2);
  box-shadow: inset 0 0 0 2px #fff; }

.wpcf7 .wpcf7-form-control-wrap {
  display: block; }

.wpcf7 .wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  padding-top: .5rem; }
  @media only screen and (min-width: 56.25em) {
    .wpcf7 .wpcf7-form-control.wpcf7-checkbox {
      justify-content: flex-start; } }
  .wpcf7 .wpcf7-form-control.wpcf7-checkbox > *:not(:last-child) {
    margin-right: calc(var(--default-font-size) * 1.6); }

.wpcf7 span.wpcf7-list-item {
  position: relative;
  flex-basis: 50%;
  width: 100%;
  flex: 0 0;
  display: inline-block; }

.wpcf7 .wpcf7-list-item-label {
  font-size: calc(var(--default-font-size) * 1.3);
  cursor: pointer;
  padding-left: calc(var(--default-font-size) * 1.3); }

.wpcf7 input[type="checkbox"] {
  position: absolute;
  opacity: 0; }

.wpcf7 .wpcf7-list-item-label::before {
  content: '';
  background: #fff;
  border: 1px solid var(--color-grey-dark-2);
  display: inline-block;
  width: var(--default-font-size);
  height: var(--default-font-size);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  vertical-align: middle;
  cursor: pointer;
  transition: all 250ms ease; }

.wpcf7 input[type="checkbox"]:checked + .wpcf7-list-item-label:before {
  background-color: var(--color-grey-dark-2);
  box-shadow: inset 0 0 0 2px #fff; }

.rselect-box {
  width: 100%;
  position: relative;
  border: none;
  border-radius: 5px;
  background-color: var(--color-grey-light-4); }
  .rselect-box::before {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-grey-dark-1);
    pointer-events: none; }
  .rselect-box__select {
    width: 100%;
    padding: 0.7rem 2rem;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    appearance: none;
    color: var(--color-grey-dark-1);
    font-size: calc(var(--default-font-size) * 1.2); }
    @media only screen and (min-width: 56.25em) {
      .rselect-box__select {
        padding: 1rem 2rem; } }
    .rselect-box__select::-ms-expand {
      display: none; }

.wpcf7 .select-box {
  width: 100%;
  position: relative;
  border: none;
  border-radius: 5px;
  background-color: var(--color-grey-light-4); }
  .wpcf7 .select-box::before {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-grey-dark-1);
    pointer-events: none; }
  .wpcf7 .select-box .wpcf7-select {
    width: 100%;
    padding: 0.7rem 2rem;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    appearance: none;
    color: var(--color-grey-dark-1);
    font-size: calc(var(--default-font-size) * 1.2); }
    @media only screen and (min-width: 56.25em) {
      .wpcf7 .select-box .wpcf7-select {
        padding: 1rem 2rem; } }
    .wpcf7 .select-box .wpcf7-select::-ms-expand {
      display: none; }

/* ===========================================================================
 トップページ 
 ================================================================= */
.section-hero {
  font-family: 'Tsukushi B Round Gothic';
  width: 100%;
  position: relative;
  padding: 4rem 4rem;
  background-image: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-primary) 32rem, #e5e9e8 38rem, var(--color-grey-light-3) 39rem, #f5f6f6 46rem); }
  @media only screen and (min-width: 37.5em) {
    .section-hero {
      background-image: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-primary) 70%, #e5e9e8 80%, var(--color-grey-light-3) 81%, #f5f6f6 85%); } }
  @media only screen and (min-width: 56.25em) {
    .section-hero {
      height: calc(100vh - 10rem);
      display: flex;
      align-items: center; } }
  .section-hero::before, .section-hero::after {
    content: ''; }
  .section-hero__inner {
    width: 100%;
    position: relative;
    max-width: 900px;
    margin: 0 auto; }
    @media only screen and (min-width: 37.5em) {
      .section-hero__inner {
        display: flex;
        justify-content: center;
        align-items: center; } }
  .section-hero__contents-box {
    text-align: center; }
    .section-hero__contents-box .logoBox {
      display: none; }
      @media only screen and (min-width: 37.5em) {
        .section-hero__contents-box .logoBox {
          display: block;
          margin-bottom: 1.5rem; } }
      .section-hero__contents-box .logoBox__logo {
        height: 5rem;
        object-fit: contain; }
      .section-hero__contents-box .logoBox__ttl {
        font-size: 0.6rem;
        margin-top: -.8rem; }
    @media only screen and (min-width: 37.5em) {
      .section-hero__contents-box {
        flex: 1 0 25%; } }
  .section-hero__ttl {
    margin-bottom: 31rem; }
    @media only screen and (min-width: 37.5em) {
      .section-hero__ttl {
        margin-bottom: 2rem; } }
  .section-hero__img-box {
    position: absolute;
    top: 11rem;
    left: 50%;
    transform: translateX(-50%);
    width: 25rem; }
    .section-hero__img-box img {
      width: 100%; }
    @media only screen and (min-width: 37.5em) {
      .section-hero__img-box {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        flex: 0 1 55%; } }

.section-features .swiper-container {
  width: 100%; }

.section-features .swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }

.section-features .swiper-pagination-bullet-active {
  background-color: var(--color-grey-dark-1); }

.features-item {
  position: relative;
  height: 0;
  padding-top: 150%; }
  @media only screen and (min-width: 56.25em) {
    .features-item {
      padding-top: 50%; } }
  .features-item__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right; }
  .features-item__body {
    padding: 22% 15%; }
  .features-item__ttl {
    margin-bottom: 10%; }
    @media only screen and (min-width: 37.5em) {
      .features-item__ttl {
        font-size: 5rem; } }
    @media only screen and (min-width: 56.25em) {
      .features-item__ttl {
        font-size: 2rem; } }
    @media only screen and (min-width: 75em) {
      .features-item__ttl {
        font-size: 3rem; } }
    @media only screen and (min-width: 112.5em) {
      .features-item__ttl {
        font-size: 3.7rem; } }
  .features-item__txt {
    color: var(--color-white); }
    @media only screen and (min-width: 37.5em) {
      .features-item__txt {
        font-size: 3rem; } }
    @media only screen and (min-width: 56.25em) {
      .features-item__txt {
        font-size: 1.3rem; } }
    @media only screen and (min-width: 75em) {
      .features-item__txt {
        font-size: 1.7rem; } }
    @media only screen and (min-width: 112.5em) {
      .features-item__txt {
        font-size: 2rem; } }
  .features-item__scroll::before, .features-item__scroll::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 3rem;
    width: 4rem;
    height: 1px;
    background-color: var(--color-white);
    transform-origin: center right; }
    @media only screen and (min-width: 56.25em) {
      .features-item__scroll::before, .features-item__scroll::after {
        content: none; } }
  .features-item__scroll::before {
    transform: translateY(-50%) rotate(45deg); }
  .features-item__scroll::after {
    transform: translateY(-50%) rotate(-45deg); }
  .features-item__pagination {
    display: block; }
    @media only screen and (min-width: 56.25em) {
      .features-item__pagination {
        display: none; } }

.section-art__type {
  background-color: #e4e3e1;
  padding: 5rem 3.5rem; }
  @media only screen and (min-width: 37.5em) {
    .section-art__type {
      padding: 6rem 3.5rem; } }

.section-art__inner {
  max-width: 600px;
  margin: 0 auto; }

.section-living {
  height: 0;
  padding-top: 129%;
  background-position: center center;
  background-size: cover;
  position: relative; }
  @media only screen and (min-width: 56.25em) {
    .section-living {
      background-image: url("img/living-pc.jpg") !important;
      padding-top: 47.3%; } }
  .section-living__inner {
    position: absolute;
    top: 24%;
    left: 16%; }
    @media only screen and (min-width: 37.5em) {
      .section-living__inner {
        left: 25%; } }
    @media only screen and (min-width: 56.25em) {
      .section-living__inner {
        top: 22%;
        left: 20%; } }
    @media only screen and (min-width: 75em) {
      .section-living__inner {
        left: 27%; } }
    @media only screen and (min-width: 112.5em) {
      .section-living__inner {
        left: 30%; } }

.section-contents__body {
  padding: 6rem 3rem;
  height: 100%; }
  @media only screen and (min-width: 37.5em) {
    .section-contents__body {
      padding: 10rem 10rem; } }
  @media only screen and (min-width: 56.25em) {
    .section-contents__body {
      padding: 6rem 5rem; } }
  @media only screen and (min-width: 75em) {
    .section-contents__body {
      padding: 8rem 10rem; } }
  .section-contents__body-top {
    background-color: #f2f0ec; }
  .section-contents__body-bottom {
    background-color: var(--color-white); }

.section-contents .paragraph, .section-contents .wpcf7 p, .wpcf7 .section-contents p {
  margin-bottom: 0; }

.section-contents__last-card {
  display: flex;
  align-items: center; }
  .section-contents__last-card * {
    flex: 1 0 30%;
    display: flex;
    align-items: center;
    margin: 0;
    margin-right: 1rem; }
  @media only screen and (min-width: 56.25em) {
    .section-contents__last-card {
      display: block; }
      .section-contents__last-card * {
        display: block;
        margin: 0; }
      .section-contents__last-card .card__ttl {
        margin-top: 1rem; } }

.section-safe__body-top {
  height: 0;
  padding-top: 100%; }
  @media only screen and (min-width: 56.25em) {
    .section-safe__body-top {
      height: 100%;
      padding-top: 0; } }

.section-safe__body-bottom {
  background-color: #f5f6f6;
  padding: 5rem 5rem; }
  @media only screen and (min-width: 37.5em) {
    .section-safe__body-bottom {
      padding: 5rem 20%; } }
  @media only screen and (min-width: 56.25em) {
    .section-safe__body-bottom {
      padding: 5rem 5rem; } }
  @media only screen and (min-width: 75em) {
    .section-safe__body-bottom {
      padding: 10rem 10rem; } }
  .section-safe__body-bottom > * {
    margin-bottom: 1.5rem !important; }
    @media only screen and (min-width: 56.25em) {
      .section-safe__body-bottom > * {
        margin-bottom: 2rem !important; } }

.section-safe__eng-ttl {
  display: block; }
  @media only screen and (min-width: 56.25em) {
    .section-safe__eng-ttl {
      display: none; } }

.section-artWalet {
  position: relative;
  background-image: linear-gradient(to bottom, var(--color-white) 0%, var(--color-white) 35%, var(--color-grey-light-2) 35%); }
  .section-artWalet::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    width: 90%;
    max-width: 1550px;
    border-bottom: 1px dotted var(--color-grey-light-4);
    left: 50%;
    transform: translateX(-50%); }
  @media only screen and (min-width: 56.25em) {
    .section-artWalet {
      background-image: linear-gradient(to bottom, var(--color-white) 0%, var(--color-white) 70%, #e3e0df 70%); } }
  .section-artWalet__body-top {
    padding: 14%; }
    @media only screen and (min-width: 56.25em) {
      .section-artWalet__body-top {
        padding-right: 1rem; } }
    @media only screen and (min-width: 75em) {
      .section-artWalet__body-top {
        padding: 15rem 14% 12rem; } }
  .section-artWalet__body-bottom {
    padding: 0 14% 6rem; }
    @media only screen and (min-width: 56.25em) {
      .section-artWalet__body-bottom {
        padding: 14%; } }
    @media only screen and (min-width: 75em) {
      .section-artWalet__body-bottom {
        padding: 17rem 14% 0; } }
  .section-artWalet__inner {
    position: relative; }
  .section-artWalet__logoBox {
    width: 16rem; }
    @media only screen and (min-width: 56.25em) {
      .section-artWalet__logoBox {
        width: 21rem; } }
    @media only screen and (min-width: 75em) {
      .section-artWalet__logoBox {
        width: 29rem; } }
    .section-artWalet__logoBox img {
      height: 7rem;
      margin-bottom: 1rem; }
      @media only screen and (min-width: 56.25em) {
        .section-artWalet__logoBox img {
          height: 10rem; } }
      @media only screen and (min-width: 75em) {
        .section-artWalet__logoBox img {
          height: 13rem; } }
  .section-artWalet__rounds {
    position: absolute;
    top: 4rem;
    left: 19rem; }
    @media only screen and (min-width: 37.5em) {
      .section-artWalet__rounds {
        top: 3.5rem;
        left: 22rem; } }
    @media only screen and (min-width: 56.25em) {
      .section-artWalet__rounds {
        top: 14.5rem;
        left: 20rem;
        white-space: nowrap; } }
    @media only screen and (min-width: 75em) {
      .section-artWalet__rounds {
        top: 18rem;
        left: 26rem; } }
    .section-artWalet__rounds > * {
      display: block; }
      @media only screen and (min-width: 56.25em) {
        .section-artWalet__rounds > * {
          position: relative;
          display: inline-block; } }
      .section-artWalet__rounds > *:last-child {
        margin-top: -.5rem; }
        @media only screen and (min-width: 56.25em) {
          .section-artWalet__rounds > *:last-child {
            margin-left: -1rem; } }
  .section-artWalet__list > *:first-child {
    margin-bottom: 2rem; }
    @media only screen and (min-width: 56.25em) {
      .section-artWalet__list > *:first-child {
        margin-bottom: 0; } }
    .section-artWalet__list > *:first-child::after {
      content: '';
      position: absolute;
      top: 2.7rem;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: var(--color-black); }
      @media only screen and (min-width: 56.25em) {
        .section-artWalet__list > *:first-child::after {
          content: none; } }
  .section-artWalet .heading-secondary, .section-artWalet .wpcf7 .pg-contact__ttl, .wpcf7 .section-artWalet .pg-contact__ttl, .section-artWalet .original-page__ttl {
    margin-top: -2rem; }

.section-series {
  background-color: var(--color-grey-light-2);
  overflow: scroll; }
  @media only screen and (min-width: 56.25em) {
    .section-series {
      background-color: #e3e0df;
      overflow: hidden; } }
  .section-series__body {
    width: 240vw;
    display: flex; }
    @media only screen and (min-width: 56.25em) {
      .section-series__body {
        width: 88vw;
        max-width: 1230px;
        margin: 0 auto; } }
    .section-series__body-left {
      position: relative;
      width: 100vw;
      padding: 7vw 9vw; }
      @media only screen and (min-width: 56.25em) {
        .section-series__body-left {
          width: 35%;
          padding: 4vw 0 7vw;
          margin-right: 8%; } }
      .section-series__body-left > * {
        margin-bottom: 1.5rem; }
      .section-series__body-left::before, .section-series__body-left::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 2rem;
        width: 40px;
        height: 1px;
        transform-origin: right;
        background-color: var(--color-grey-dark-2); }
      .section-series__body-left::before {
        transform: translateY(-50%) rotate(60deg); }
      .section-series__body-left::after {
        transform: translateY(-50%) rotate(-60deg); }
    .section-series__body-right {
      position: relative;
      width: 140vw;
      padding: 7vw 9vw; }
      @media only screen and (min-width: 56.25em) {
        .section-series__body-right {
          width: 57%;
          padding: 4vw 0 7vw; } }
      .section-series__body-right > * {
        margin-bottom: 1.5rem; }
  .section-series__rounds {
    position: absolute; }
    .section-series__rounds > * {
      display: inline-block;
      margin-right: -.4rem; }
      @media only screen and (min-width: 56.25em) {
        .section-series__rounds > * {
          display: block;
          margin-right: 0; } }
    .section-series__rounds-left {
      top: 100vw;
      left: 50%;
      transform: translateX(-50%); }
      @media only screen and (min-width: 56.25em) {
        .section-series__rounds-left {
          top: 25%;
          left: 0; } }
    .section-series__rounds-right {
      top: 90vw;
      left: 75vw; }
      @media only screen and (min-width: 56.25em) {
        .section-series__rounds-right {
          top: 20%;
          left: -1.5rem; } }
  .section-series__back-img {
    width: 47vw;
    margin-left: 15vw; }
    @media only screen and (min-width: 56.25em) {
      .section-series__back-img {
        position: absolute;
        width: 35%;
        margin-left: 15vw;
        top: 60%;
        right: 2vw; } }
  .section-series__description {
    white-space: nowrap; }
    .section-series__description-left {
      margin-top: 5rem; }
      @media only screen and (min-width: 56.25em) {
        .section-series__description-left {
          margin-top: -3rem; } }
    .section-series__description-right {
      position: absolute;
      bottom: 7vw;
      left: 50%;
      transform: translateX(-50%); }
      @media only screen and (min-width: 56.25em) {
        .section-series__description-right {
          left: 2vw;
          transform: none; } }
  .section-series__cartButton .skubutton {
    border: none;
    background-color: var(--color-grey-dark-2);
    padding: 1rem 7rem;
    border-radius: 20px;
    color: var(--color-white);
    font-weight: 600;
    display: block;
    margin: 3rem auto 0; }
    .section-series__cartButton .skubutton:hover {
      background-color: var(--color-grey-dark-4); }

.section-lineup {
  background-color: var(--color-white);
  padding: 5rem 0; }
  .section-lineup .swiper-container {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 1rem; }
  .section-lineup .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
  .section-lineup .swiper-pagination {
    bottom: 0; }
  .section-lineup .swiper-pagination-bullet-active {
    background-color: var(--color-grey-dark-1); }

.lineup-item {
  display: flex;
  flex-direction: column; }
  .lineup-item > *:not(:last-child) {
    margin-bottom: 1rem; }
  .lineup-item__pickup-icon {
    position: relative;
    width: 100%; }
    .lineup-item__pickup-icon img {
      position: absolute;
      bottom: -4rem;
      right: 1rem;
      width: 3rem;
      height: 3rem; }
  .lineup-item__ttl {
    font-size: calc(var(--default-font-size) * 1.5);
    font-weight: 600;
    text-align: center; }
  .lineup-item__description {
    font-size: var(--default-font-size);
    text-align: left; }
  .lineup-item__price {
    font-size: var(--default-font-size);
    font-weight: 600;
    text-align: center; }
  .lineup-item__button .skubutton {
    background-color: var(--color-grey-dark-2);
    border-radius: 28px;
    font-weight: 600;
    margin: 0 auto 6rem;
    display: block; }
    .lineup-item__button .skubutton:hover {
      background-color: var(--color-grey-dark-4); }

.lineup-pc {
  width: 90%;
  max-width: 900px;
  margin: 0 auto; }
  @media only screen and (min-width: 56.25em) {
    .lineup-pc {
      display: block; } }
  .lineup-pc__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
  .lineup-pc__item {
    margin-bottom: 5rem; }
    .lineup-pc__item:nth-child(-n+3) {
      flex: 1 0 28%; }
      .lineup-pc__item:nth-child(-n+3):not(:nth-child(3n)) {
        margin-right: 8%; }
    .lineup-pc__item:nth-child(n+4) {
      flex: 0 0 22%; }
      .lineup-pc__item:nth-child(n+4):not(:nth-child(4n+3)) {
        margin-right: 4%; }

.lum-lightbox {
  background-color: rgba(111, 129, 151, 0.85); }

.lum-next-button,
.lum-previous-button {
  display: none; }

.lum-img {
  object-fit: contain; }

.lum-lightbox .lum-close-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .85;
  width: 70vw;
  height: 110vw; }
  @media only screen and (min-width: 56.25em) {
    .lum-lightbox .lum-close-button {
      width: 70vh;
      height: 90vh; } }

.lum-close-button:after, .lum-close-button:before {
  top: 0;
  right: 0;
  left: initial; }

.swiper-container {
  z-index: 0; }

/* ===========================================================================
 お問い合わせページ
 ================================================================= */
.wpcf7 .pg-contact {
  margin-top: 5rem; }
  .wpcf7 .pg-contact__ttl {
    color: var(--color-grey-dark-1);
    text-align: center; }
  .wpcf7 .pg-contact__inner {
    width: 90%;
    max-width: 1550px;
    margin: 0 auto; }
  .wpcf7 .pg-contact__lead {
    font-size: var(--default-font-size);
    margin-bottom: 5rem;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto; }
  .wpcf7 .pg-contact__form-inner {
    position: relative; }
    .wpcf7 .pg-contact__form-inner::after {
      content: '';
      position: absolute;
      bottom: -1rem;
      right: 0;
      left: 0;
      border-bottom: 1px dotted var(--color-grey-dark-2); }
    @media only screen and (min-width: 56.25em) {
      .wpcf7 .pg-contact__form-inner::before {
        content: '';
        position: absolute;
        top: -3rem;
        right: 0;
        left: 0;
        border-bottom: 1px dotted var(--color-grey-dark-2); } }
  @media only screen and (min-width: 56.25em) {
    .wpcf7 .pg-contact__input-box {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: space-between;
      width: 93%;
      max-width: 1000px;
      margin: 0 auto; } }
  .wpcf7 .pg-contact__label {
    display: none; }
    @media only screen and (min-width: 56.25em) {
      .wpcf7 .pg-contact__label {
        display: block;
        flex: 1;
        text-align: right !important;
        margin-right: 2rem; } }
  .wpcf7 .pg-contact__input {
    position: relative; }
    @media only screen and (min-width: 56.25em) {
      .wpcf7 .pg-contact__input {
        flex: 0 0 60%; } }
    .wpcf7 .pg-contact__input-dropdown {
      width: 90%;
      margin: 0 auto; }
    .wpcf7 .pg-contact__input-txt, .wpcf7 .pg-contact__input-txtarea {
      font-size: var(--default-font-size);
      font-family: sans-serif;
      background-color: var(--color-white);
      border: none;
      width: 100%;
      padding: 1rem;
      margin-bottom: var(--default-font-size);
      box-shadow: 1px 1px 2px -2px rgba(0, 0, 0, 0.4);
      outline: none; }
      .wpcf7 .pg-contact__input-txt::placeholder, .wpcf7 .pg-contact__input-txtarea::placeholder {
        opacity: .5; }
        @media only screen and (min-width: 56.25em) {
          .wpcf7 .pg-contact__input-txt::placeholder, .wpcf7 .pg-contact__input-txtarea::placeholder {
            opacity: 0; } }
  .wpcf7 .pg-contact__submit {
    width: 80%;
    margin: 4rem auto;
    max-width: 400px; }
  .wpcf7 .pg-contact__confirm-order, .wpcf7 .pg-contact__type {
    position: relative;
    margin-bottom: 4rem; }
    .wpcf7 .pg-contact__confirm-order .pg-contact__label, .wpcf7 .pg-contact__type .pg-contact__label {
      display: block;
      text-align: center; }
    .wpcf7 .pg-contact__confirm-order::after, .wpcf7 .pg-contact__type::after {
      content: "";
      position: absolute;
      bottom: -1.7rem;
      left: 0;
      right: 0;
      border-bottom: 1px dotted var(--color-grey-dark-2); }
      @media only screen and (min-width: 56.25em) {
        .wpcf7 .pg-contact__confirm-order::after, .wpcf7 .pg-contact__type::after {
          content: none; } }
  .wpcf7 .pg-contact .wpcf7-not-valid-tip {
    position: absolute;
    font-size: 1rem;
    top: -1.5rem; }

/* ===========================================================================
 固定ページ
 ================================================================= */
.original-page {
  margin-top: 5rem; }
  .original-page__ttl {
    color: var(--color-grey-dark-1);
    text-align: center; }
  .original-page__body {
    width: 85%;
    max-width: 1070px;
    margin: 0 auto; }
  .original-page__lead {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto; }
  .original-page p {
    font-size: var(--default-font-size); }
  .original-page h2 {
    color: var(--color-black);
    text-align: center; }

/* ===========================================================================
 プライバシーポリシー
 ================================================================= */
@media only screen and (min-width: 56.25em) {
  .pg-privacy__group-parent > * {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
    .pg-privacy__group-parent > * > *:not(:last-child) {
      flex: 49%; } }

.pg-privacy__group-child {
  position: relative;
  padding: 4rem 0; }
  @media only screen and (min-width: 56.25em) {
    .pg-privacy__group-child {
      flex: 100%; }
      .pg-privacy__group-child > * {
        width: 80%;
        margin: 0 auto; } }
  @media only screen and (min-width: 37.5em) {
    .pg-privacy__group-child-last > * {
      padding: 0 12%; } }
  @media only screen and (min-width: 56.25em) {
    .pg-privacy__group-child-last > * {
      width: 90%;
      padding: 0;
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-between;
      align-items: center; }
      .pg-privacy__group-child-last > * p {
        margin-left: 2rem;
        flex: 0 1 60%; } }
  .pg-privacy__group-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top: 1px dotted var(--color-grey-dark-2); }

/* ===========================================================================
 特定商取引法
 ================================================================= */
.pg-low__table tr {
  display: block; }
  .pg-low__table tr::before {
    top: calc(var(--default-font-size) / 2); }
  .pg-low__table tr > * {
    display: inline-block;
    vertical-align: top; }
  .pg-low__table tr > *:first-child {
    position: relative;
    margin-right: calc(var(--default-font-size) * 1.2); }
    .pg-low__table tr > *:first-child::after {
      content: "";
      position: absolute;
      top: 50%;
      right: calc(var(--default-font-size) * -.6);
      width: .06rem;
      height: calc(var(--default-font-size) * 1.25);
      transform: rotate(45deg) translateY(-50%);
      transform-origin: center 0;
      background-color: var(--color-black); }
  @media only screen and (min-width: 37.5em) {
    .pg-low__table tr {
      display: table-row;
      background: linear-gradient(var(--color-grey-dark-2) 0.5px, transparent 0.5px) transparent; }
      .pg-low__table tr::before {
        content: none; }
      .pg-low__table tr > * {
        display: table-cell;
        line-height: calc(var(--default-font-size) * 2.2); }
      .pg-low__table tr > *:first-child {
        width: 30%; }
        .pg-low__table tr > *:first-child::after {
          content: none; }
      .pg-low__table tr > *:last-child {
        background-image: linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 98%, #646464 100%);
        background-size: 100% calc(var(--default-font-size) * 2.2); } }

@media only screen and (min-width: 37.5em) {
  .pg-low__table table {
    table-layout: fixed; } }

.pg-low__table table tbody > *:first-child {
  background: none; }
