@charset "UTF-8";
/* Foundation
 * 変数、関数、mixinを定義
 * サイト全体のデフォルトスタイルを管理
======================================*/
/****** 変数定義 ******/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap");
/*--------------------------------
* CSSカスタムプロパティ（JSで動的に変更する場合はこちらを利用）
--------------------------------*/
:root {
  --root-em: 100%;
  --color_main: #5ECCD5;
  --color_text: #666666;
  --color_link: #4169e1;
  --color_bg: #fff;
  --color_border: #ddd;
  --font_family: Noto Sans JP 游ゴシック体, Yu Gothic, YuGothic, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
  --font_weight: 400;
  --container_size: 1000px;
  --article_size: 900px;
  --pad_container: 20px;
}

/****** mixin定義 ******/
/****** 関数定義 ******/
/****** ベースとなるスタイル ******/
html {
  font-size: var(--root-em);
}

.c-plainBtn {
  -webkit-appearance: none;
  -o-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

*, .c-plainBtn {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

:after, :before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
}

b, strong {
  font-weight: 700;
}

sub, sup {
  font-size: smaller;
}

ruby > rt {
  font-size: 50%;
}

main {
  display: block;
}

:where(ol:not([type])), :where(ul:not([type])) {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

td, th {
  word-break: break-all;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
}

video {
  outline: none;
}

code, pre {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}

svg:not([fill]) {
  fill: currentcolor;
}

[hidden] {
  display: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
  cursor: pointer;
  display: inline-block;
}

[role=button] {
  cursor: pointer;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

button, input, select, textarea {
  background-color: #f7f7f7;
  border: 1px solid hsla(0, 0%, 78%, 0.5);
  border-radius: 0;
  color: #333;
  padding: 0.25em 0.5em;
}

[type=color] {
  padding: 0;
}

[type=range] {
  vertical-align: middle;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

body {
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  background-color: var(--color_bg);
  color: var(--color_text);
  font-family: var(--font_family);
  font-size: 1rem;
  font-weight: var(--font_weight);
  line-height: 2;
  max-width: 100%;
  min-width: 100%;
  overflow-wrap: break-word;
  overflow-x: clip;
  position: relative;
}

#body_wrap {
  max-width: 100%;
  overflow-x: clip;
  position: relative;
  z-index: 1;
}

#body_wrap.-bg-fix {
  z-index: 1;
}

#body_wrap.-bg-fix:before {
  content: "";
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}

/* Layout
 * 接頭辞：l-
 * 各ページを構成する大枠のエリアに対するレイアウトを定義
======================================*/
/****** ヘッダー ******/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 960px) {
  .l-header {
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
    border-bottom-width: 0;
  }
}

.l-header .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header .c-btn-menu {
  margin-left: auto;
}

/****** フッター ******/
.l-footer__eyeCatching,
.l-footer__eyeCatching img {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer {
  padding-top: 60px;
  padding-bottom: 40px;
  background-image: url("../img/texture/tx_01.svg");
  background-repeat: repeat-x;
  background-color: #89D9DF;
  background-size: 300px auto;
  background-position-x: center;
  background-position-y: -280px;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .l-footer {
    padding-top: 30px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 599px) {
  .l-footer {
    background-size: 150px auto;
    background-position-y: -100px;
  }
}

.l-footer .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 960px) {
  .l-footer .l-container {
    display: block;
  }
}

.l-footer__col.--left {
  -ms-flex-preferred-size: fit-content;
      flex-basis: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media screen and (max-width: 960px) {
  .l-footer__col.--left {
    margin-bottom: 20px;
  }
}
.l-footer__col.--center {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  flex-grow: 1;
}
@media screen and (max-width: 960px) {
  .l-footer__col.--center {
    margin-bottom: 30px;
  }
}
.l-footer__col.--right {
  -ms-flex-preferred-size: fit-content;
      flex-basis: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

@media screen and (max-width: 960px) {
  .l-footer__col .c-siteLogo {
    margin-left: auto;
    margin-right: auto;
  }
  .l-footer__col .c-siteLogo > img {
    width: 110px;
  }
}

.l-footer__profile {
  font-size: 14px;
  line-height: 1.78;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .l-footer__profile {
    text-align: center;
  }
}

.l-footer__profile small {
  margin-top: 0.5em;
  display: block;
  font-size: 12px;
  line-height: 1.5;
}

.l-footer__copyright {
  font-size: 12px;
  line-height: 1;
  display: block;
}
@media screen and (max-width: 960px) {
  .l-footer__copyright {
    text-align: center;
  }
}

.l-footer__col .c-btn-sns__unit {
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  .l-footer__col .c-btn-sns__unit {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/****** コンテンツエリア ******/
.l-content {
  margin: 0 auto;
  padding-top: 2em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .l-content {
    padding-top: 4em;
  }
}

.top #content {
  padding-top: 0;
}

.l-mainContent {
  position: static !important;
  width: 100%;
}

#body_wrap {
  padding-top: var(--headerH, 0px);
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  #body_wrap {
    padding-top: 0;
  }
}

/*--------------------------------
 *  コンテンツエリア
--------------------------------*/
.l-container {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--container_size, 0px) + var(--pad_container, 0px) * 2);
  padding-left: var(--pad_container, 0);
  padding-right: var(--pad_container, 0);
}

/*--------------------------------
 *  記事エリア
--------------------------------*/
.l-article {
  max-width: var(--article_size);
  padding-left: 0;
  padding-right: 0;
}

/****** セクション ******/
/*--------------------------------
 *  ホーム
--------------------------------*/
/*------ キービジュアル -------*/
.l-sect-kv {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 112px;
  padding-bottom: 112px;
  background-color: #5ECCD5;
  background-image: url("../img/texture/tx_01.svg"), url("../img/texture/tx_01.svg");
  background-repeat: repeat-x, repeat-x;
  background-size: 300px auto, 300px auto;
  background-position-x: center, center;
  background-position-y: -260px, calc(100% + 240px);
}
@media screen and (max-width: 599px) {
  .l-sect-kv {
    padding-top: 80px;
    padding-bottom: 52px;
    background-size: 150px auto, 150px auto;
    background-position-y: -60px, calc(100% + 68px);
  }
}

.l-sect-kv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 599px) {
  .l-sect-kv__inner {
    display: block;
  }
}

.l-sect-kv__col.--left {
  -ms-flex-preferred-size: 42.5%;
      flex-basis: 42.5%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.l-sect-kv__col.--right {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media screen and (max-width: 599px) {
  .l-sect-kv__col.--right {
    margin-top: 40px;
  }
}

.l-sect-kv__open,
.l-sect-kv__open img,
.l-sect-kv__logo,
.l-sect-kv__logo img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 599px) {
  .l-sect-kv__open,
  .l-sect-kv__logo {
    width: 213px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.l-sect-kv__open {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .l-sect-kv__open {
    margin-bottom: 20px;
  }
}

.l-sect-kv__desc {
  font-size: 28px;
  line-height: 1;
  margin-top: 30px;
  color: #fff;
  font-weight: 700;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media screen and (max-width: 960px) {
  .l-sect-kv__desc {
    font-size: 20px;
    -moz-text-align-last: center;
         text-align-last: center;
  }
}
@media screen and (max-width: 599px) {
  .l-sect-kv__desc {
    letter-spacing: 0.28em;
  }
}

.l-sect-kv__img {
  width: 100%;
  display: block;
  height: auto;
}
@media screen and (max-width: 599px) {
  .l-sect-kv__img {
    width: 220px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.l-sect-kv__img img {
  display: block;
  width: 100%;
  height: auto;
}

/*------ 選ばれる理由 -------*/
.l-sect-reason {
  padding-top: 60px;
  padding-bottom: 160px;
}
@media screen and (max-width: 599px) {
  .l-sect-reason {
    padding-top: 40px;
    padding-bottom: 140px;
  }
}

/*------ こんなお悩みありませんか？ -------*/
.l-sect-worry {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../img/texture/tx_01.svg");
  background-repeat: repeat-x;
  background-color: #89D9DF;
  background-size: 300px auto;
  background-position-x: center;
  background-position-y: calc(100% + 280px);
}
@media screen and (max-width: 599px) {
  .l-sect-worry {
    padding-top: 54px;
    padding-bottom: 60px;
    background-size: 150px auto, 150px auto;
    background-position-y: calc(100% + 100px);
  }
}

/*------ 特徴 -------*/
.l-sect-feature {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 80px;
  padding-bottom: 100px;
  background-color: #E2F1F8;
}
@media screen and (max-width: 599px) {
  .l-sect-feature {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

/*------ 料金体系 -------*/
.l-sect-price {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 80px;
  padding-bottom: 100px;
  background-image: url("../img/texture/tx_01.svg"), url("../img/texture/tx_01.svg");
  background-repeat: repeat-x, repeat-x;
  background-size: 300px auto;
  background-position-x: center, center;
  background-position-y: -280px, calc(100% + 280px);
  background-color: #89D9DF;
}
@media screen and (max-width: 599px) {
  .l-sect-price {
    padding-top: 40px;
    padding-bottom: 60px;
    background-size: 150px auto, 150px auto;
    background-position-y: -100px, calc(100% + 68px);
  }
}

.l-sect-price .c-heading-sub {
  margin-top: 40px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .l-sect-price .c-heading-sub {
    margin-top: 20px;
  }
}

/*------ ご利用の流れ -------*/
.l-sect-flow {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 80px;
  padding-bottom: 220px;
  background-color: #E2F1F8;
}
@media screen and (max-width: 599px) {
  .l-sect-flow {
    padding-top: 40px;
    padding-bottom: 146px;
  }
}

/*------ 店舗概要 -------*/
.l-sect-about {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 599px) {
  .l-sect-about {
    padding-top: 54px;
    padding-bottom: 60px;
  }
}

.l-sect-about iframe {
  margin-top: 60px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .l-sect-about iframe {
    margin-top: 30px;
    height: 200px !important;
  }
}

/*------ よくある質問 -------*/
.l-sect-faq {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 80px;
  padding-bottom: 100px;
  background-image: url("../img/texture/tx_01.svg"), url("../img/texture/tx_01.svg");
  background-repeat: repeat-x, repeat-x;
  background-size: 300px auto;
  background-position-x: center, center;
  background-position-y: -280px, calc(100% + 280px);
  background-color: #89D9DF;
}
@media screen and (max-width: 599px) {
  .l-sect-faq {
    padding-top: 40px;
    padding-bottom: 60px;
    background-size: 150px auto, 150px auto;
    background-position-y: -100px, calc(100% + 68px);
  }
}

/* Object > Component
 * 接頭辞：c-
 * 再利用できるパターンとして最小単位のモジュールを定義
======================================*/
/****** 見出し ******/
/*--------------------------------
 *  セクション大見出し
--------------------------------*/
.c-heading-sect {
  margin-bottom: 60px;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #5ECCD5;
}
@media screen and (max-width: 960px) {
  .c-heading-sect {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 1.8;
  }
}

.c-heading-sect.--w {
  color: #fff;
}

/*--------------------------------
 *  セクション込みだし
--------------------------------*/
.c-heading-sub {
  margin-bottom: 30px;
  color: #5ECCD5;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .c-heading-sub {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.8;
  }
}

/****** ラベル ******/
/****** ボタン ******/
/*--------------------------------
 *  ハンバーガーメニュー
--------------------------------*/
.c-btn-menu {
  top: 0;
  left: 0;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 65px;
  height: 65px;
  border-bottom-left-radius: 10px;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-btn-menu__inner {
  width: 25px;
  height: 14px;
  position: relative;
}
.c-btn-menu__inner > span {
  width: 100%;
  height: 2px;
  display: inline-block;
  position: absolute;
  left: 0;
  border-radius: 9999px;
  background-color: var(--color_main);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-btn-menu__inner > span:nth-of-type(1) {
  top: 0;
}
.c-btn-menu__inner > span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-btn-menu__inner > span:nth-of-type(3) {
  bottom: 0;
}

/*------ 展開状態 -------*/
.c-btn-menu.is-active {
  background-color: #89D9DF;
}

.c-btn-menu.is-active .c-btn-menu__inner > span {
  background-color: #fff;
}
.c-btn-menu.is-active .c-btn-menu__inner > span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-315deg);
          transform: translateY(-50%) rotate(-315deg);
}
.c-btn-menu.is-active .c-btn-menu__inner > span:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) scaleX(0);
          transform: translate(-50%, -50%) scaleX(0);
}
.c-btn-menu.is-active .c-btn-menu__inner > span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(315deg);
          transform: translateY(-50%) rotate(315deg);
}

/*--------------------------------
 *  フローティング
--------------------------------*/
.c-btn-float__wrapper {
  position: fixed;
  z-index: 99;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  .c-btn-float__wrapper {
    top: unset;
    bottom: 0;
    left: 10px;
    -webkit-transform: unset;
            transform: unset;
    width: calc(100% - 20px);
  }
}

.c-btn-float {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 10px 20px 10px;
  border-radius: 10px 0px 0px 10px;
  border-top: 3px solid #FFF;
  border-bottom: 3px solid #FFF;
  border-left: 3px solid #FFF;
  background: -webkit-gradient(linear, right top, left top, from(#00C24C), to(#1FD767));
  background: linear-gradient(270deg, #00C24C 0%, #1FD767 100%);
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .c-btn-float {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 15px;
    border-radius: 10px 10px 0px 0px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    border-left: 3px solid #FFF;
    border-bottom-width: 0;
  }
  .c-btn-float:active {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
}
@media screen and (min-width: 600px) {
  .c-btn-float:hover {
    opacity: 0.6;
  }
}

.c-btn-float::before {
  content: "";
  background-image: url("../img/icon/ic_02.svg");
  width: 35px;
  height: 35px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.c-btn-float span {
  text-align: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 599px) {
  .c-btn-float span {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 22px;
    letter-spacing: 0em;
  }
}

/*--------------------------------
 *  SNS
--------------------------------*/
.c-btn-sns__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.c-btn-sns {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-sns:hover {
  opacity: 0.6;
}

.c-btn-sns.--instagram {
  background-image: linear-gradient(135deg, #427eff 0%, #f13f79 70%);
}

.c-btn-sns.--instagram::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}

.c-btn-sns.--instagram::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon/ic_05.svg");
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/****** サイトロゴ ******/
.c-siteLogo {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-siteLogo:hover {
  opacity: 0.6;
}

.c-siteLogo > img {
  display: block;
  width: 160px;
  max-width: 100%;
  height: auto;
}

/* Object > Project
 * 接頭辞：p-
 * 再利用できるパターンとしてComponentの集合体を定義
 * もしくはComponentとするには大きすぎるObject（4階層構造以上を目安）を定義
======================================*/
/****** ナビゲーション ******/
.p-nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 10px;
  color: #666666;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-nav-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
}

.p-nav-header .menu-item {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  white-space: nowrap;
}

.p-nav-header .menu-item a {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 961px) {
  .p-nav-header .menu-item a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 960px) {
  .p-nav-header .menu-item a:active {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

/****** カード ******/
/*--------------------------------
 *  こんなお悩みありませんか？
--------------------------------*/
.p-card-worry__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .p-card-worry__unit {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 10px;
  }
}

.p-card-worry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 30px;
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 4px 4px 10px 0px #5ECCD5;
          box-shadow: 4px 4px 10px 0px #5ECCD5;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 599px) {
  .p-card-worry {
    padding: 20px;
  }
}

.p-card-worry::before {
  content: "\f119";
  color: #89D9DF;
  font-family: "Font Awesome 6 Free";
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .p-card-worry::before {
    font-size: 28px;
  }
}

.p-card-worry__title {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .p-card-worry__title {
    font-size: 18px;
    line-height: 1.77;
  }
}

.p-card-worry__title strong {
  color: #5ECCD5;
  font-weight: 700;
}

/*--------------------------------
 *  特徴
--------------------------------*/
.p-card-feature__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8% 1fr 8% 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 8%;
     -moz-column-gap: 8%;
          column-gap: 8%;
  row-gap: 40px;
}
@media screen and (max-width: 599px) {
  .p-card-feature__unit {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}

.p-card-feature__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
  background-image: url("../img/texture/tx_03.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 40px;
}
@media screen and (max-width: 599px) {
  .p-card-feature__head {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-card-feature__head::before {
  content: attr(data-num);
  display: block;
  font-size: 60px;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #5ECCD5;
}

.p-card-feature__img,
.p-card-feature__img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-card-feature__txt {
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .p-card-feature__txt {
    margin-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-card-feature__title {
  display: block;
  margin-bottom: 20px;
  color: #5ECCD5;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .p-card-feature__title {
    margin-bottom: 10px;
  }
}

.p-card-feature__desc {
  color: #666;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

/*--------------------------------
 *  料金体系 > 初回お試し料金
--------------------------------*/
.p-card-price__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (max-width: 599px) {
  .p-card-price__unit {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    row-gap: 10px;
  }
}

.p-card-price {
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 4px 4px 10px 0px #5ECCD5;
          box-shadow: 4px 4px 10px 0px #5ECCD5;
  padding: 30px;
}
@media screen and (max-width: 599px) {
  .p-card-price {
    padding: 20px;
  }
}

.p-card-price__title {
  display: block;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
  background: #F0F8FB;
}

.p-card-price__price {
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
  font-family: "din-2014", sans-serif;
  color: #5ECCD5;
  text-align: center;
}

.p-card-price__price::after {
  content: "円(税込)";
  font-size: 20px;
  line-height: 1;
  font-family: "Noto Sans JP" "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin-left: 5px;
  padding-bottom: 6px;
}

.p-card-price__desc {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .p-card-price__desc {
    margin-top: 10px;
  }
}

/*------ 初回お試し料金 -------*/
.p-card-price.--trial {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  position: relative;
  padding-top: 80px;
  padding-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .p-card-price.--trial {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    row-gap: 20px;
    padding-bottom: 30px;
  }
}

.p-card-price.--trial::before {
  content: "初回お試し料金";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 20px 60px;
  border-radius: 0px 0px 130px 130px;
  background: #FFF06E;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .p-card-price.--trial::before {
    padding: 20px 67px;
    font-size: 18px;
  }
}

.p-card-price.--trial::after {
  content: "";
  width: 60px;
  height: 60px;
  background-image: url("../img/icon/ic_04.svg");
  display: block;
  position: absolute;
  top: -24px;
  left: calc(50% + 78px);
}

/*--------------------------------
 *  ご利用の流れ
--------------------------------*/
.p-card-flow__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  row-gap: 10px;
}

.p-card-flow {
  position: relative;
  padding-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .p-card-flow {
    padding-bottom: 20px;
  }
}

.p-card-flow::before {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><g><path fill="none" d="M0 0h12v12H0Z"/><path fill="%23fff" d="M6 3a3 3 0 1 1-3 3 3 3 0 0 1 3-3Z"/></g></svg>');
  background-size: 6px;
  background-repeat: repeat-y;
  display: block;
  height: calc(100% - 82px);
  width: 6px;
  position: absolute;
  bottom: 0;
  left: 27px;
}
@media screen and (max-width: 599px) {
  .p-card-flow::before {
    height: calc(100% - 68px);
    left: 22px;
  }
}

.p-card-flow:last-child {
  padding-bottom: 0;
}
.p-card-flow:last-child::before {
  content: none;
}

.p-card-flow__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  position: relative;
  z-index: 1;
  color: #666;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .p-card-flow__title {
    font-size: 18px;
    line-height: 1.77;
  }
}

.p-card-flow__desc {
  padding-left: 80px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .p-card-flow__desc {
    padding-left: 70px;
    font-size: 15px;
  }
}

/*--------------------------------
 *  よくある質問
--------------------------------*/
.p-card-faq__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  row-gap: 40px;
  padding: 40px;
  padding-bottom: 60px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 10px 0px #5ECCD5;
          box-shadow: 4px 4px 10px 0px #5ECCD5;
}
@media screen and (max-width: 599px) {
  .p-card-faq__unit {
    padding: 30px 20px;
  }
}

.p-card-faq__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  color: #5ECCD5;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .p-card-faq__title {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    font-size: 16px;
  }
}

.p-card-faq__title::before {
  display: block;
  content: attr(data-num);
  width: 40px;
  font-size: 32px;
  line-height: 1;
  font-weight: 1;
  font-family: "din-2014", sans-serif;
}
@media screen and (max-width: 599px) {
  .p-card-faq__title::before {
    font-size: 26px;
  }
}

.p-card-faq__title > span {
  padding-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  position: relative;
}
@media screen and (max-width: 599px) {
  .p-card-faq__title > span {
    padding-bottom: 15px;
  }
}

.p-card-faq__title > span::before {
  background: radial-gradient(circle farthest-side, #ddd, #ddd 40%, transparent 40%, transparent);
  background-size: 10px;
  content: "";
  display: block;
  height: 10px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-card-faq__desc {
  margin-top: 20px;
  padding-left: 55px;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .p-card-faq__desc {
    margin-top: 10px;
    padding-left: 45px;
    font-size: 14px;
  }
}

/****** メディアとテキスト ******/
/*--------------------------------
 *  選ばれる理由
--------------------------------*/
.p-media-reason__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  row-gap: 50px;
}
@media screen and (max-width: 599px) {
  .p-media-reason__unit {
    row-gap: 40px;
  }
}

.p-media-reason {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .p-media-reason {
    display: block;
    padding-bottom: 0;
  }
}

.p-media-reason__col {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-media-reason__col.--img {
  position: relative;
}
@media screen and (max-width: 599px) {
  .p-media-reason__col.--img {
    margin-bottom: 20px;
  }
}
.p-media-reason__col.--txt {
  padding-left: 80px;
}
@media screen and (max-width: 599px) {
  .p-media-reason__col.--txt {
    padding-left: 0;
  }
}

.p-media-reason__img,
.p-media-reason__img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-media-reason__img {
  border-radius: 10px;
  overflow: hidden;
}

.p-media-reason__texture {
  display: block;
  position: absolute;
  bottom: -60px;
  left: -100px;
  height: calc(100% + 20px);
  width: auto;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .p-media-reason__texture {
    bottom: -42px;
    left: -70px;
  }
}

.p-media-reason__title {
  display: block;
  position: relative;
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 1.8;
  font-weight: 700;
  color: #5ECCD5;
}
@media screen and (max-width: 599px) {
  .p-media-reason__title {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
  }
}

.p-media-reason__title.icon::before {
  position: absolute;
  top: -20px;
  right: calc(100% + 20px);
}
@media screen and (max-width: 599px) {
  .p-media-reason__title.icon::before {
    position: static;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
}

.p-media-reason__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

/*------ 左右反転 -------*/
.p-media-reason.--r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-media-reason.--r .p-media-reason__texture {
  left: unset !important;
  right: -100px;
}
@media screen and (max-width: 599px) {
  .p-media-reason.--r .p-media-reason__texture {
    right: -70px;
  }
}

/*--------------------------------
 *  店舗概要
--------------------------------*/
.p-media-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .p-media-about {
    display: block;
  }
}

.p-media-about__col {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 599px) {
  .p-media-about__col.--txt {
    margin-top: 20px;
  }
}

.p-media-about__img,
.p-media-about__img img {
  display: block;
  width: 100%;
  height: auto;
}

/****** 表組 ******/
.p-table-about {
  width: 100%;
}

.p-table-about th,
.p-table-about td {
  border-bottom: 1px solid #ddd;
  line-height: 1.25;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: baseline;
}

.p-table-about th {
  text-align: left;
  width: 80px;
}

.p-table-about td small {
  font-size: 12px;
}

/****** スマホ開閉メニュー ******/
.p-drawer__wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 98;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  visibility: hidden;
}

.p-drawer {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  height: auto;
  background-color: #fff;
  border-radius: 10px;
  pointer-events: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: hidden;
  -webkit-box-shadow: 0 0 0 1px #ddd inset;
          box-shadow: 0 0 0 1px #ddd inset;
}

.p-drawer__inner {
  padding: 60px;
  height: 100%;
}

.p-drawer__wrapper.is-open {
  -webkit-transform: scale(1);
          transform: scale(1);
  visibility: visible;
}

/* Utility
 * 接頭辞：u-
 * スポットで状態変化させたいmarginなどの補助クラスを定義
======================================*/
/****** マージン ******/
.u-mt0 {
  margin-top: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mt0e {
  margin-top: 0em !important;
}

.u-mb0e {
  margin-bottom: 0em !important;
}

.u-mt0_25e {
  margin-top: 0.25em !important;
}

.u-mb0_25e {
  margin-bottom: 0.25em !important;
}

.u-mt0_5e {
  margin-top: 0.5em !important;
}

.u-mb0_5e {
  margin-bottom: 0.5em !important;
}

.u-mt0_75e {
  margin-top: 0.75em !important;
}

.u-mb0_75e {
  margin-bottom: 0.75em !important;
}

.u-mt1e {
  margin-top: 1em !important;
}

.u-mb1e {
  margin-bottom: 1em !important;
}

.u-mt1_25e {
  margin-top: 1.25em !important;
}

.u-mb1_25e {
  margin-bottom: 1.25em !important;
}

.u-mt1_5e {
  margin-top: 1.5em !important;
}

.u-mb1_5e {
  margin-bottom: 1.5em !important;
}

.u-mt1_75e {
  margin-top: 1.75em !important;
}

.u-mb1_75e {
  margin-bottom: 1.75em !important;
}

.u-mt2e {
  margin-top: 2em !important;
}

.u-mb2e {
  margin-bottom: 2em !important;
}

.u-mt2_25e {
  margin-top: 2.25em !important;
}

.u-mb2_25e {
  margin-bottom: 2.25em !important;
}

.u-mt2_5e {
  margin-top: 2.5em !important;
}

.u-mb2_5e {
  margin-bottom: 2.5em !important;
}

@media screen and (min-width: 961px) {
  .l-mt0 {
    margin-top: 0px !important;
  }
  .l-mb0 {
    margin-bottom: 0px !important;
  }
  .l-mt5 {
    margin-top: 5px !important;
  }
  .l-mb5 {
    margin-bottom: 5px !important;
  }
  .l-mt10 {
    margin-top: 10px !important;
  }
  .l-mb10 {
    margin-bottom: 10px !important;
  }
  .l-mt15 {
    margin-top: 15px !important;
  }
  .l-mb15 {
    margin-bottom: 15px !important;
  }
  .l-mt20 {
    margin-top: 20px !important;
  }
  .l-mb20 {
    margin-bottom: 20px !important;
  }
  .l-mt25 {
    margin-top: 25px !important;
  }
  .l-mb25 {
    margin-bottom: 25px !important;
  }
  .l-mt30 {
    margin-top: 30px !important;
  }
  .l-mb30 {
    margin-bottom: 30px !important;
  }
  .l-mt35 {
    margin-top: 35px !important;
  }
  .l-mb35 {
    margin-bottom: 35px !important;
  }
  .l-mt40 {
    margin-top: 40px !important;
  }
  .l-mb40 {
    margin-bottom: 40px !important;
  }
  .l-mt45 {
    margin-top: 45px !important;
  }
  .l-mb45 {
    margin-bottom: 45px !important;
  }
  .l-mt50 {
    margin-top: 50px !important;
  }
  .l-mb50 {
    margin-bottom: 50px !important;
  }
  .l-mt0e {
    margin-top: 0em !important;
  }
  .l-mb0e {
    margin-bottom: 0em !important;
  }
  .l-mt0_25e {
    margin-top: 0.25em !important;
  }
  .l-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .l-mt0_5e {
    margin-top: 0.5em !important;
  }
  .l-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .l-mt0_75e {
    margin-top: 0.75em !important;
  }
  .l-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .l-mt1e {
    margin-top: 1em !important;
  }
  .l-mb1e {
    margin-bottom: 1em !important;
  }
  .l-mt1_25e {
    margin-top: 1.25em !important;
  }
  .l-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .l-mt1_5e {
    margin-top: 1.5em !important;
  }
  .l-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .l-mt1_75e {
    margin-top: 1.75em !important;
  }
  .l-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .l-mt2e {
    margin-top: 2em !important;
  }
  .l-mb2e {
    margin-bottom: 2em !important;
  }
  .l-mt2_25e {
    margin-top: 2.25em !important;
  }
  .l-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .l-mt2_5e {
    margin-top: 2.5em !important;
  }
  .l-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .l-mt0 {
    margin-top: 0px !important;
  }
  .l-mb0 {
    margin-bottom: 0px !important;
  }
  .l-mt5 {
    margin-top: 5px !important;
  }
  .l-mb5 {
    margin-bottom: 5px !important;
  }
  .l-mt10 {
    margin-top: 10px !important;
  }
  .l-mb10 {
    margin-bottom: 10px !important;
  }
  .l-mt15 {
    margin-top: 15px !important;
  }
  .l-mb15 {
    margin-bottom: 15px !important;
  }
  .l-mt20 {
    margin-top: 20px !important;
  }
  .l-mb20 {
    margin-bottom: 20px !important;
  }
  .l-mt25 {
    margin-top: 25px !important;
  }
  .l-mb25 {
    margin-bottom: 25px !important;
  }
  .l-mt30 {
    margin-top: 30px !important;
  }
  .l-mb30 {
    margin-bottom: 30px !important;
  }
  .l-mt35 {
    margin-top: 35px !important;
  }
  .l-mb35 {
    margin-bottom: 35px !important;
  }
  .l-mt40 {
    margin-top: 40px !important;
  }
  .l-mb40 {
    margin-bottom: 40px !important;
  }
  .l-mt45 {
    margin-top: 45px !important;
  }
  .l-mb45 {
    margin-bottom: 45px !important;
  }
  .l-mt50 {
    margin-top: 50px !important;
  }
  .l-mb50 {
    margin-bottom: 50px !important;
  }
  .m-mt0e {
    margin-top: 0em !important;
  }
  .m-mb0e {
    margin-bottom: 0em !important;
  }
  .m-mt0_25e {
    margin-top: 0.25em !important;
  }
  .m-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .m-mt0_5e {
    margin-top: 0.5em !important;
  }
  .m-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .m-mt0_75e {
    margin-top: 0.75em !important;
  }
  .m-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .m-mt1e {
    margin-top: 1em !important;
  }
  .m-mb1e {
    margin-bottom: 1em !important;
  }
  .m-mt1_25e {
    margin-top: 1.25em !important;
  }
  .m-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .m-mt1_5e {
    margin-top: 1.5em !important;
  }
  .m-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .m-mt1_75e {
    margin-top: 1.75em !important;
  }
  .m-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .m-mt2e {
    margin-top: 2em !important;
  }
  .m-mb2e {
    margin-bottom: 2em !important;
  }
  .m-mt2_25e {
    margin-top: 2.25em !important;
  }
  .m-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .m-mt2_5e {
    margin-top: 2.5em !important;
  }
  .m-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (max-width: 599px) {
  .s-mt0 {
    margin-top: 0px !important;
  }
  .s-mb0 {
    margin-bottom: 0px !important;
  }
  .s-mt5 {
    margin-top: 5px !important;
  }
  .s-mb5 {
    margin-bottom: 5px !important;
  }
  .s-mt10 {
    margin-top: 10px !important;
  }
  .s-mb10 {
    margin-bottom: 10px !important;
  }
  .s-mt15 {
    margin-top: 15px !important;
  }
  .s-mb15 {
    margin-bottom: 15px !important;
  }
  .s-mt20 {
    margin-top: 20px !important;
  }
  .s-mb20 {
    margin-bottom: 20px !important;
  }
  .s-mt25 {
    margin-top: 25px !important;
  }
  .s-mb25 {
    margin-bottom: 25px !important;
  }
  .s-mt30 {
    margin-top: 30px !important;
  }
  .s-mb30 {
    margin-bottom: 30px !important;
  }
  .s-mt35 {
    margin-top: 35px !important;
  }
  .s-mb35 {
    margin-bottom: 35px !important;
  }
  .s-mt40 {
    margin-top: 40px !important;
  }
  .s-mb40 {
    margin-bottom: 40px !important;
  }
  .s-mt45 {
    margin-top: 45px !important;
  }
  .s-mb45 {
    margin-bottom: 45px !important;
  }
  .s-mt50 {
    margin-top: 50px !important;
  }
  .s-mb50 {
    margin-bottom: 50px !important;
  }
  .s-mt0e {
    margin-top: 0em !important;
  }
  .s-mb0e {
    margin-bottom: 0em !important;
  }
  .s-mt0_25e {
    margin-top: 0.25em !important;
  }
  .s-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .s-mt0_5e {
    margin-top: 0.5em !important;
  }
  .s-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .s-mt0_75e {
    margin-top: 0.75em !important;
  }
  .s-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .s-mt1e {
    margin-top: 1em !important;
  }
  .s-mb1e {
    margin-bottom: 1em !important;
  }
  .s-mt1_25e {
    margin-top: 1.25em !important;
  }
  .s-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .s-mt1_5e {
    margin-top: 1.5em !important;
  }
  .s-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .s-mt1_75e {
    margin-top: 1.75em !important;
  }
  .s-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .s-mt2e {
    margin-top: 2em !important;
  }
  .s-mb2e {
    margin-bottom: 2em !important;
  }
  .s-mt2_25e {
    margin-top: 2.25em !important;
  }
  .s-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .s-mt2_5e {
    margin-top: 2.5em !important;
  }
  .s-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
/****** パディング ******/
.u-pt0 {
  padding-top: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pt0e {
  margin-top: 0em !important;
}

.u-pb0e {
  margin-bottom: 0em !important;
}

.u-pt0_25e {
  margin-top: 0.25em !important;
}

.u-pb0_25e {
  margin-bottom: 0.25em !important;
}

.u-pt0_5e {
  margin-top: 0.5em !important;
}

.u-pb0_5e {
  margin-bottom: 0.5em !important;
}

.u-pt0_75e {
  margin-top: 0.75em !important;
}

.u-pb0_75e {
  margin-bottom: 0.75em !important;
}

.u-pt1e {
  margin-top: 1em !important;
}

.u-pb1e {
  margin-bottom: 1em !important;
}

.u-pt1_25e {
  margin-top: 1.25em !important;
}

.u-pb1_25e {
  margin-bottom: 1.25em !important;
}

.u-pt1_5e {
  margin-top: 1.5em !important;
}

.u-pb1_5e {
  margin-bottom: 1.5em !important;
}

.u-pt1_75e {
  margin-top: 1.75em !important;
}

.u-pb1_75e {
  margin-bottom: 1.75em !important;
}

.u-pt2e {
  margin-top: 2em !important;
}

.u-pb2e {
  margin-bottom: 2em !important;
}

.u-pt2_25e {
  margin-top: 2.25em !important;
}

.u-pb2_25e {
  margin-bottom: 2.25em !important;
}

.u-pt2_5e {
  margin-top: 2.5em !important;
}

.u-pb2_5e {
  margin-bottom: 2.5em !important;
}

@media screen and (min-width: 961px) {
  .l-pt0 {
    padding-top: 0px !important;
  }
  .l-pb0 {
    padding-bottom: 0px !important;
  }
  .l-pt5 {
    padding-top: 5px !important;
  }
  .l-pb5 {
    padding-bottom: 5px !important;
  }
  .l-pt10 {
    padding-top: 10px !important;
  }
  .l-pb10 {
    padding-bottom: 10px !important;
  }
  .l-pt15 {
    padding-top: 15px !important;
  }
  .l-pb15 {
    padding-bottom: 15px !important;
  }
  .l-pt20 {
    padding-top: 20px !important;
  }
  .l-pb20 {
    padding-bottom: 20px !important;
  }
  .l-pt25 {
    padding-top: 25px !important;
  }
  .l-pb25 {
    padding-bottom: 25px !important;
  }
  .l-pt30 {
    padding-top: 30px !important;
  }
  .l-pb30 {
    padding-bottom: 30px !important;
  }
  .l-pt35 {
    padding-top: 35px !important;
  }
  .l-pb35 {
    padding-bottom: 35px !important;
  }
  .l-pt40 {
    padding-top: 40px !important;
  }
  .l-pb40 {
    padding-bottom: 40px !important;
  }
  .l-pt45 {
    padding-top: 45px !important;
  }
  .l-pb45 {
    padding-bottom: 45px !important;
  }
  .l-pt50 {
    padding-top: 50px !important;
  }
  .l-pb50 {
    padding-bottom: 50px !important;
  }
  .l-pt0e {
    margin-top: 0em !important;
  }
  .l-pb0e {
    margin-bottom: 0em !important;
  }
  .l-pt0_25e {
    margin-top: 0.25em !important;
  }
  .l-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .l-pt0_5e {
    margin-top: 0.5em !important;
  }
  .l-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .l-pt0_75e {
    margin-top: 0.75em !important;
  }
  .l-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .l-pt1e {
    margin-top: 1em !important;
  }
  .l-pb1e {
    margin-bottom: 1em !important;
  }
  .l-pt1_25e {
    margin-top: 1.25em !important;
  }
  .l-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .l-pt1_5e {
    margin-top: 1.5em !important;
  }
  .l-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .l-pt1_75e {
    margin-top: 1.75em !important;
  }
  .l-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .l-pt2e {
    margin-top: 2em !important;
  }
  .l-pb2e {
    margin-bottom: 2em !important;
  }
  .l-pt2_25e {
    margin-top: 2.25em !important;
  }
  .l-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .l-pt2_5e {
    margin-top: 2.5em !important;
  }
  .l-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .m-pt0 {
    padding-top: 0px !important;
  }
  .m-pb0 {
    padding-bottom: 0px !important;
  }
  .m-pt5 {
    padding-top: 5px !important;
  }
  .m-pb5 {
    padding-bottom: 5px !important;
  }
  .m-pt10 {
    padding-top: 10px !important;
  }
  .m-pb10 {
    padding-bottom: 10px !important;
  }
  .m-pt15 {
    padding-top: 15px !important;
  }
  .m-pb15 {
    padding-bottom: 15px !important;
  }
  .m-pt20 {
    padding-top: 20px !important;
  }
  .m-pb20 {
    padding-bottom: 20px !important;
  }
  .m-pt25 {
    padding-top: 25px !important;
  }
  .m-pb25 {
    padding-bottom: 25px !important;
  }
  .m-pt30 {
    padding-top: 30px !important;
  }
  .m-pb30 {
    padding-bottom: 30px !important;
  }
  .m-pt35 {
    padding-top: 35px !important;
  }
  .m-pb35 {
    padding-bottom: 35px !important;
  }
  .m-pt40 {
    padding-top: 40px !important;
  }
  .m-pb40 {
    padding-bottom: 40px !important;
  }
  .m-pt45 {
    padding-top: 45px !important;
  }
  .m-pb45 {
    padding-bottom: 45px !important;
  }
  .m-pt50 {
    padding-top: 50px !important;
  }
  .m-pb50 {
    padding-bottom: 50px !important;
  }
  .m-pt0e {
    margin-top: 0em !important;
  }
  .m-pb0e {
    margin-bottom: 0em !important;
  }
  .m-pt0_25e {
    margin-top: 0.25em !important;
  }
  .m-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .m-pt0_5e {
    margin-top: 0.5em !important;
  }
  .m-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .m-pt0_75e {
    margin-top: 0.75em !important;
  }
  .m-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .m-pt1e {
    margin-top: 1em !important;
  }
  .m-pb1e {
    margin-bottom: 1em !important;
  }
  .m-pt1_25e {
    margin-top: 1.25em !important;
  }
  .m-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .m-pt1_5e {
    margin-top: 1.5em !important;
  }
  .m-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .m-pt1_75e {
    margin-top: 1.75em !important;
  }
  .m-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .m-pt2e {
    margin-top: 2em !important;
  }
  .m-pb2e {
    margin-bottom: 2em !important;
  }
  .m-pt2_25e {
    margin-top: 2.25em !important;
  }
  .m-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .m-pt2_5e {
    margin-top: 2.5em !important;
  }
  .m-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (max-width: 599px) {
  .s-pt0 {
    padding-top: 0px !important;
  }
  .s-pb0 {
    padding-bottom: 0px !important;
  }
  .s-pt5 {
    padding-top: 5px !important;
  }
  .s-pb5 {
    padding-bottom: 5px !important;
  }
  .s-pt10 {
    padding-top: 10px !important;
  }
  .s-pb10 {
    padding-bottom: 10px !important;
  }
  .s-pt15 {
    padding-top: 15px !important;
  }
  .s-pb15 {
    padding-bottom: 15px !important;
  }
  .s-pt20 {
    padding-top: 20px !important;
  }
  .s-pb20 {
    padding-bottom: 20px !important;
  }
  .s-pt25 {
    padding-top: 25px !important;
  }
  .s-pb25 {
    padding-bottom: 25px !important;
  }
  .s-pt30 {
    padding-top: 30px !important;
  }
  .s-pb30 {
    padding-bottom: 30px !important;
  }
  .s-pt35 {
    padding-top: 35px !important;
  }
  .s-pb35 {
    padding-bottom: 35px !important;
  }
  .s-pt40 {
    padding-top: 40px !important;
  }
  .s-pb40 {
    padding-bottom: 40px !important;
  }
  .s-pt45 {
    padding-top: 45px !important;
  }
  .s-pb45 {
    padding-bottom: 45px !important;
  }
  .s-pt50 {
    padding-top: 50px !important;
  }
  .s-pb50 {
    padding-bottom: 50px !important;
  }
  .s-pt0e {
    margin-top: 0em !important;
  }
  .s-pb0e {
    margin-bottom: 0em !important;
  }
  .s-pt0_25e {
    margin-top: 0.25em !important;
  }
  .s-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .s-pt0_5e {
    margin-top: 0.5em !important;
  }
  .s-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .s-pt0_75e {
    margin-top: 0.75em !important;
  }
  .s-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .s-pt1e {
    margin-top: 1em !important;
  }
  .s-pb1e {
    margin-bottom: 1em !important;
  }
  .s-pt1_25e {
    margin-top: 1.25em !important;
  }
  .s-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .s-pt1_5e {
    margin-top: 1.5em !important;
  }
  .s-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .s-pt1_75e {
    margin-top: 1.75em !important;
  }
  .s-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .s-pt2e {
    margin-top: 2em !important;
  }
  .s-pb2e {
    margin-bottom: 2em !important;
  }
  .s-pt2_25e {
    margin-top: 2.25em !important;
  }
  .s-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .s-pt2_5e {
    margin-top: 2.5em !important;
  }
  .s-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
/****** その他 ******/
@media screen and (min-width: 961px) {
  .md {
    display: none !important;
  }
  .sm {
    display: none !important;
  }
  .smmd {
    display: none !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .lg {
    display: none !important;
  }
  .sm {
    display: none !important;
  }
}
@media screen and (max-width: 599px) {
  .lg {
    display: none !important;
  }
  .md {
    display: none !important;
  }
  .mdlg {
    display: none !important;
  }
}
.clearfix::after {
  display: block;
  content: "";
  clear: both;
}

/*--------------------------------
 *  その他
--------------------------------*/
.ta-c {
  text-align: center !important;
}

@media screen and (max-width: 599px) {
  .sm-ta-l {
    text-align: left !important;
  }
}
.mascot {
  position: relative;
  z-index: 1;
}
.mascot::after {
  content: "";
  display: block;
  width: 200px;
  height: 140px;
  position: absolute;
  bottom: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  background-image: url("../img/illust/il_02.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 599px) {
  .mascot::after {
    width: 143px;
    height: 100px;
    bottom: calc(100% - 14px);
  }
}

.icon::before {
  content: attr(data-num);
  width: 60px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 34px;
  background-image: url("../img/icon/ic_01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 12px;
}
@media screen and (max-width: 599px) {
  .icon::before {
    width: 50px;
    height: 58px;
    font-size: 30px;
    padding-bottom: 8px;
  }
}
/*# sourceMappingURL=style.css.map */