@charset "UTF-8";
/* ==========================================================================
   Variables - プロジェクト全体で使う変数を管理
   ========================================================================== */
/* 基本のカラーパレット（色ベース） */
/* グラデーション */
/* 透過バージョン（rgba を使う） */
/* 基本フォント */
/* フォントウェイト */
/* フォントサイズ */
/* 行間 */
/* スペーシング */
/* コンテナの最大幅 */
/* ボーダー */
/* transition */
/* ゼロを統一するためのユーティリティ */
/* =====================================================================
   mixins.scss – 共通ユーティリティ（PC / SP を 1 回で出力）
   ===================================================================== */
/* ---------------------------------------------------------------------
    ユーティリティ – 単位変換ヘルパ
   ------------------------------------------------------------------ */
/* ---------------------------------------------------------------------
    基本関数 – px → vw 変換
   ------------------------------------------------------------------ */
/* ---------------------------------------------------------------------
    汎用レスポンシブ mixin
   ------------------------------------------------------------------ */
/* =====================================================================
   ショートカット mixin
   ===================================================================== */
/* 幅・高さ ----------------------------------------------------------- */
/* マージン ----------------------------------------------------------- */
/* パディング --------------------------------------------------------- */
/* フォントサイズ & 角丸 --------------------------------------------- */
/* 位置調整 ----------------------------------------------------------- */
/* translate --------------------------------------------------------- */
/* ボックスシャドウ --------------------------------------------------- */
/* =====================================================================
   メディアクエリ
   ===================================================================== */
/* ==========================================================================
   Perfect Reset CSS - Combination of Eric Meyer Reset, Normalize.css, 
   and additional modern best practices.
   ========================================================================== */
/* 基本リセット (Eric Meyer Reset) */
html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: sans-serif;
  line-height: 1.8;
  color: #494949;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-family: "NotoSansJP", sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Box-sizing を標準化 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* HTML5 の要素を display: block に設定 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* リンクの標準化 */
a {
  text-decoration: none;
  background-color: transparent;
  color: inherit;
  transition: 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 769px) {
  a:hover,
  a:focus {
    outline: none;
    opacity: 0.7;
  }
}

/* 画像のリセット */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

/* フォーム要素の標準化 */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  border: none;
  background: none;
  padding: 0;
  appearance: none;
}

/* ボタンのデフォルトスタイル */
button {
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

/* リストの標準化 */
ul,
ol {
  list-style: none;
}

/* テキストのリセット */
strong,
b {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

/* テーブルの標準化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* フォーム要素のリセット */
input,
button,
textarea,
select {
  outline: none;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #999;
  opacity: 1;
}

/* フォーカス時のスタイルを強調（アクセシビリティ） */
:focus {
  outline: none;
}

/*
  ¥hidden 属性を適切に処理 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Fonts - Web フォントの定義 (NotoSansJP)
   ========================================================================== */
@font-face {
  font-family: "NotoSansJP";
  src: url("/assets/fonts/NotoSansJP-Regular.woff2") format("woff2"), url("/assets/fonts/NotoSansJP-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("/assets/fonts/NotoSansJP-Medium.woff2") format("woff2"), url("/assets/fonts/NotoSansJP-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("/assets/fonts/NotoSansJP-Bold.woff2") format("woff2"), url("/assets/fonts/NotoSansJP-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.inner-block {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.inner-block {
  padding-left: 0;
}
@media (max-width: 768px) {
  .inner-block {
    padding-left: 5.3333333333vw;
  }
}
.inner-block {
  padding-right: 0;
}
@media (max-width: 768px) {
  .inner-block {
    padding-right: 5.3333333333vw;
  }
}
@media (min-width: 769px) {
  .inner-block--sm {
    max-width: 55.5555555556vw;
  }
}
@media (min-width: 769px) {
  .inner-block--md {
    max-width: 69.4444444444vw;
  }
}
@media (min-width: 769px) {
  .inner-block--lg {
    max-width: 83.3333333333vw;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.header {
  height: 4.8611111111vw;
}
@media (max-width: 768px) {
  .header {
    height: 13.3333333333vw;
  }
}
.header {
  padding-left: 2.7777777778vw;
}
@media (max-width: 768px) {
  .header {
    padding-left: 0;
  }
}
.header {
  padding-right: 2.7777777778vw;
}
@media (max-width: 768px) {
  .header {
    padding-right: 0;
  }
}

.header-logo {
  padding-left: 0;
}
@media (max-width: 768px) {
  .header-logo {
    padding-left: 4vw;
  }
}
.header-logo a {
  display: block;
}
.header-logo a {
  width: 11.4583333333vw;
}
@media (max-width: 768px) {
  .header-logo a {
    width: 34.6666666667vw;
  }
}

@media (max-width: 768px) {
  .header-nav-wrap {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    width: 100%;
  }
  .header-nav-wrap {
    top: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header-nav-wrap {
    top: 13.3333333333vw;
  }
}
@media (max-width: 768px) {
  .header-nav-wrap.is-active {
    opacity: 1;
    pointer-events: all;
  }
}
@media (max-width: 768px) {
  .header-nav-wrap.is-active .header-nav {
    opacity: 1;
  }
}

.header-nav {
  display: flex;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .header-nav {
    background: rgba(255, 255, 255, 0.5);
    display: block;
    z-index: 2;
    height: 100vh;
    opacity: 0;
  }
  .header-nav {
    padding-top: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header-nav {
    padding-top: 2.6666666667vw;
  }
}
@media (max-width: 768px) {
  .header-nav {
    padding-right: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header-nav {
    padding-right: 5.3333333333vw;
  }
}
@media (max-width: 768px) {
  .header-nav {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header-nav {
    padding-bottom: 5.3333333333vw;
  }
}
@media (max-width: 768px) {
  .header-nav {
    padding-left: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header-nav {
    padding-left: 5.3333333333vw;
  }
}
.header-nav__item a {
  color: #494949;
  font-weight: 500;
  text-shadow: 0px 1px 3px rgba(255, 255, 255, 0.6);
  display: inline-block;
}
.header-nav__item a {
  font-size: 0.9027777778vw;
}
@media (max-width: 768px) {
  .header-nav__item a {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 768px) {
  .header-nav__item a {
    position: relative;
    display: block;
  }
  .header-nav__item a {
    padding-top: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header-nav__item a {
    padding-top: 2.6666666667vw;
  }
}
@media (max-width: 768px) {
  .header-nav__item a {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header-nav__item a {
    padding-bottom: 2.6666666667vw;
  }
}
@media (max-width: 768px) {
  .header-nav__item a::after {
    content: "";
    display: block;
    background: url(../../../assets/images/icon-arrow-right.svg) no-repeat center/100% 100%;
    position: absolute;
    right: 0;
  }
  .header-nav__item a::after {
    top: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header-nav__item a::after {
    top: 3.2vw;
  }
}
@media (max-width: 768px) {
  .header-nav__item a::after {
    width: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header-nav__item a::after {
    width: 7.4666666667vw;
  }
}
@media (max-width: 768px) {
  .header-nav__item a::after {
    height: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header-nav__item a::after {
    height: 7.4666666667vw;
  }
}
.header-nav__item + .header-nav__item {
  margin-left: 2.0833333333vw;
}
@media (max-width: 768px) {
  .header-nav__item + .header-nav__item {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .header-menu-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .header-menu-inner {
    width: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header-menu-inner {
    width: 13.3333333333vw;
  }
}
@media (max-width: 768px) {
  .header-menu-inner {
    height: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header-menu-inner {
    height: 13.3333333333vw;
  }
}
@media (max-width: 768px) {
  .header-menu-inner > div {
    transition: all 0.3s ease-in-out;
    position: absolute;
    width: 50%;
    background-color: #494949;
  }
  .header-menu-inner > div {
    height: 0.0694444444vw;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header-menu-inner > div {
    height: 0.2666666667vw;
  }
}
@media (max-width: 768px) {
  .header-menu-inner > div:nth-child(1) {
    top: 45%;
  }
}
@media (max-width: 768px) {
  .header-menu-inner > div:nth-child(2) {
    top: 55%;
  }
}
@media (max-width: 768px) {
  .header-menu-inner.is-active > div:nth-child(1) {
    top: 48%;
    transform: rotate(15deg);
  }
}
@media (max-width: 768px) {
  .header-menu-inner.is-active > div:nth-child(2) {
    top: 48%;
    transform: rotate(-15deg);
  }
}

.mv-section {
  background: url(../../../assets/images/mv-bg.jpg) no-repeat center/cover;
  position: relative;
}
@media (max-width: 768px) {
  .mv-section {
    background-image: url(../../../assets/images/sp-mv-bg.jpg);
  }
}
.mv-section .inner-block {
  height: 41.6666666667vw;
}
@media (max-width: 768px) {
  .mv-section .inner-block {
    height: 160vw;
  }
}

.mv-title-wrap {
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  line-height: 1.3;
}
.mv-title-wrap {
  bottom: 2.7777777778vw;
}
@media (max-width: 768px) {
  .mv-title-wrap {
    bottom: 5.3333333333vw;
  }
}
@media (max-width: 768px) {
  .mv-title-wrap {
    left: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .mv-title-wrap {
    left: 5.3333333333vw;
  }
}

.mv-title {
  font-size: 3.1944444444vw;
}
@media (max-width: 768px) {
  .mv-title {
    font-size: 8.5333333333vw;
  }
}
.mv-title {
  margin-bottom: 0.6944444444vw;
}
@media (max-width: 768px) {
  .mv-title {
    margin-bottom: 2.6666666667vw;
  }
}
.mv-title span {
  font-size: 2.9166666667vw;
}
@media (max-width: 768px) {
  .mv-title span {
    font-size: 6.4vw;
  }
}

.mv-sub-title__text-01 {
  display: inline-block;
  position: relative;
}
.mv-sub-title__text-01 {
  font-size: 1.9444444444vw;
}
@media (max-width: 768px) {
  .mv-sub-title__text-01 {
    font-size: 5.3333333333vw;
  }
}
.mv-sub-title__text-01 {
  margin-bottom: 0.6944444444vw;
}
@media (max-width: 768px) {
  .mv-sub-title__text-01 {
    margin-bottom: 2.6666666667vw;
  }
}
.mv-sub-title__text-01::after {
  content: "";
  display: block;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  width: 100%;
  position: absolute;
}
.mv-sub-title__text-01::after {
  bottom: -0.2083333333vw;
}
@media (max-width: 768px) {
  .mv-sub-title__text-01::after {
    bottom: -0.8vw;
  }
}
.mv-sub-title__text-01::after {
  height: 0.1041666667vw;
}
@media (max-width: 768px) {
  .mv-sub-title__text-01::after {
    height: 0.4vw;
  }
}
.mv-sub-title__text-02 {
  display: inline-block;
  position: relative;
}
.mv-sub-title__text-02 {
  font-size: 2.5vw;
}
@media (max-width: 768px) {
  .mv-sub-title__text-02 {
    font-size: 7.4666666667vw;
  }
}
.mv-sub-title__text-02::after {
  content: "";
  display: block;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  width: 100%;
  position: absolute;
}
.mv-sub-title__text-02::after {
  bottom: -0.2083333333vw;
}
@media (max-width: 768px) {
  .mv-sub-title__text-02::after {
    bottom: -0.8vw;
  }
}
.mv-sub-title__text-02::after {
  height: 0.1041666667vw;
}
@media (max-width: 768px) {
  .mv-sub-title__text-02::after {
    height: 0.4vw;
  }
}
.mv-sub-title__text-02 span {
  position: relative;
}
.mv-sub-title__text-02 span::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.mv-sub-title__text-02 span::after {
  top: 0.3472222222vw;
}
@media (max-width: 768px) {
  .mv-sub-title__text-02 span::after {
    top: 0.8vw;
  }
}
.mv-sub-title__text-02 span::after {
  left: 1.0416666667vw;
}
@media (max-width: 768px) {
  .mv-sub-title__text-02 span::after {
    left: 2.6666666667vw;
  }
}
.mv-sub-title__text-02 span::after {
  border-radius: 0.6944444444vw;
}
@media (max-width: 768px) {
  .mv-sub-title__text-02 span::after {
    border-radius: 2.6666666667vw;
  }
}
.mv-sub-title__text-02 span::after {
  width: 0.2777777778vw;
}
@media (max-width: 768px) {
  .mv-sub-title__text-02 span::after {
    width: 1.0666666667vw;
  }
}
.mv-sub-title__text-02 span::after {
  height: 0.2777777778vw;
}
@media (max-width: 768px) {
  .mv-sub-title__text-02 span::after {
    height: 1.0666666667vw;
  }
}

.floating-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-menu-list {
  display: flex;
  justify-content: flex-end;
}

.floating-menu-item {
  pointer-events: all;
}
.floating-menu-item {
  width: 12.0833333333vw;
}
@media (max-width: 768px) {
  .floating-menu-item {
    width: 26.6666666667vw;
  }
}
.floating-menu-item + .floating-menu-item {
  margin-left: -1.7361111111vw;
}
@media (max-width: 768px) {
  .floating-menu-item + .floating-menu-item {
    margin-left: -2.6666666667vw;
  }
}

.outline-section {
  background: url(../../../assets/images/bg-pattern-01.png) repeat center;
}
.outline-section .inner-block {
  padding-top: 5.5555555556vw;
}
@media (max-width: 768px) {
  .outline-section .inner-block {
    padding-top: 10.6666666667vw;
  }
}
.outline-section .inner-block {
  padding-bottom: 5.5555555556vw;
}
@media (max-width: 768px) {
  .outline-section .inner-block {
    padding-bottom: 10.6666666667vw;
  }
}

.c-title-wrap {
  display: flex;
  justify-content: center;
}
.c-title-wrap {
  margin-bottom: 2.0833333333vw;
}
@media (max-width: 768px) {
  .c-title-wrap {
    margin-bottom: 5.3333333333vw;
  }
}

.c-title {
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  position: relative;
  display: inline-block;
}
.c-title {
  font-size: 2.3611111111vw;
}
@media (max-width: 768px) {
  .c-title {
    font-size: 6.4vw;
  }
}
.c-title {
  padding-bottom: 0.6944444444vw;
}
@media (max-width: 768px) {
  .c-title {
    padding-bottom: 1.3333333333vw;
  }
}
.c-title::after {
  content: "";
  display: block;
  background-color: #494949;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.c-title::after {
  height: 0.0694444444vw;
}
@media (max-width: 768px) {
  .c-title::after {
    height: 0.2666666667vw;
  }
}
.c-title__main-row {
  display: block;
}
.c-title__main-row {
  font-size: 2.3611111111vw;
}
@media (max-width: 768px) {
  .c-title__main-row {
    font-size: 5.3333333333vw;
  }
}
.c-title__main-row .spacing {
  font-size: 1.9444444444vw;
}
@media (max-width: 768px) {
  .c-title__main-row .spacing {
    font-size: 4.8vw;
  }
}
.c-title__main-row .spacing {
  margin-top: 0;
}
@media (max-width: 768px) {
  .c-title__main-row .spacing {
    margin-top: 0;
  }
}
.c-title__main-row .spacing {
  margin-right: -0.6944444444vw;
}
@media (max-width: 768px) {
  .c-title__main-row .spacing {
    margin-right: -2.6666666667vw;
  }
}
.c-title__main-row .spacing {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .c-title__main-row .spacing {
    margin-bottom: 0;
  }
}
.c-title__main-row .spacing {
  margin-left: -0.6944444444vw;
}
@media (max-width: 768px) {
  .c-title__main-row .spacing {
    margin-left: -2.6666666667vw;
  }
}
.c-title__main-row .spacing-spcial {
  margin-top: 0;
}
@media (max-width: 768px) {
  .c-title__main-row .spacing-spcial {
    margin-top: 0;
  }
}
.c-title__main-row .spacing-spcial {
  margin-right: 0;
}
@media (max-width: 768px) {
  .c-title__main-row .spacing-spcial {
    margin-right: 0;
  }
}
.c-title__main-row .spacing-spcial {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .c-title__main-row .spacing-spcial {
    margin-bottom: 0;
  }
}
.c-title__main-row .spacing-spcial {
  margin-left: -0.6944444444vw;
}
@media (max-width: 768px) {
  .c-title__main-row .spacing-spcial {
    margin-left: -2.6666666667vw;
  }
}
.c-title__main-row .spacing-spcial {
  font-size: 1.9444444444vw;
}
@media (max-width: 768px) {
  .c-title__main-row .spacing-spcial {
    font-size: 4.8vw;
  }
}
.c-title__main-row .dot {
  position: relative;
}
.c-title__main-row .dot::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #494949;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.c-title__main-row .dot::after {
  top: 0;
}
@media (max-width: 768px) {
  .c-title__main-row .dot::after {
    top: 0;
  }
}
.c-title__main-row .dot::after {
  left: 1.0416666667vw;
}
@media (max-width: 768px) {
  .c-title__main-row .dot::after {
    left: 2.6666666667vw;
  }
}
.c-title__main-row .dot::after {
  border-radius: 0.6944444444vw;
}
@media (max-width: 768px) {
  .c-title__main-row .dot::after {
    border-radius: 2.6666666667vw;
  }
}
.c-title__main-row .dot::after {
  width: 0.4166666667vw;
}
@media (max-width: 768px) {
  .c-title__main-row .dot::after {
    width: 1.0666666667vw;
  }
}
.c-title__main-row .dot::after {
  height: 0.4166666667vw;
}
@media (max-width: 768px) {
  .c-title__main-row .dot::after {
    height: 1.0666666667vw;
  }
}
.c-title__sub-row {
  display: block;
}
.c-title__sub-row {
  font-size: 1.8055555556vw;
}
@media (max-width: 768px) {
  .c-title__sub-row {
    font-size: 3.7333333333vw;
  }
}

.outline-section-image {
  display: flex;
  justify-content: center;
}
.outline-section-image {
  margin-top: 2.7777777778vw;
}
@media (max-width: 768px) {
  .outline-section-image {
    margin-top: 5.3333333333vw;
  }
}
.outline-section-image img {
  width: 52.9166666667vw;
}
@media (max-width: 768px) {
  .outline-section-image img {
    width: 85.3333333333vw;
  }
}

.salon-section {
  background: url(../../../assets/images/salon-bg.jpg) no-repeat center/cover;
}
.salon-section .inner-block {
  padding-top: 5.5555555556vw;
}
@media (max-width: 768px) {
  .salon-section .inner-block {
    padding-top: 10.6666666667vw;
  }
}
.salon-section .inner-block {
  padding-bottom: 5.5555555556vw;
}
@media (max-width: 768px) {
  .salon-section .inner-block {
    padding-bottom: 10.6666666667vw;
  }
}

.c-description {
  text-align: center;
  line-height: 2.2;
}
.c-description {
  font-size: 1.1111111111vw;
}
@media (max-width: 768px) {
  .c-description {
    font-size: 3.2vw;
  }
}
.c-description {
  margin-bottom: 2.7777777778vw;
}
@media (max-width: 768px) {
  .c-description {
    margin-bottom: 5.3333333333vw;
  }
}
.c-description span {
  font-weight: 700;
}

.c-list-01 {
  display: flex;
  justify-content: space-between;
}
.c-list-01 {
  margin-bottom: 3.4722222222vw;
}
@media (max-width: 768px) {
  .c-list-01 {
    margin-bottom: 5.3333333333vw;
  }
}
@media (max-width: 768px) {
  .c-list-01 {
    flex-wrap: wrap;
  }
  .c-list-01 {
    padding-left: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list-01 {
    padding-left: 2.6666666667vw;
  }
}
@media (max-width: 768px) {
  .c-list-01 {
    padding-right: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list-01 {
    padding-right: 2.6666666667vw;
  }
}
.c-list-01__item {
  overflow: hidden;
  border: 1px solid rgba(73, 73, 73, 0.75);
}
.c-list-01__item {
  width: 26.7361111111vw;
}
@media (max-width: 768px) {
  .c-list-01__item {
    width: 102.6666666667vw;
  }
}
.c-list-01__item {
  border-radius: 0.5555555556vw;
}
@media (max-width: 768px) {
  .c-list-01__item {
    border-radius: 2.1333333333vw;
  }
}
@media (max-width: 768px) {
  .c-list-01__item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .c-list-01__item + .c-list-01__item {
    margin-top: 0.8333333333vw;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list-01__item + .c-list-01__item {
    margin-top: 3.2vw;
  }
}
.c-list-01__title {
  text-align: center;
  background-color: #FDF3E8;
  border-bottom: 1px solid #494949;
  font-weight: 500;
  line-height: 1.2;
}
.c-list-01__title {
  font-size: 1.0416666667vw;
}
@media (max-width: 768px) {
  .c-list-01__title {
    font-size: 3.2vw;
  }
}
.c-list-01__title {
  padding-top: 0.5555555556vw;
}
@media (max-width: 768px) {
  .c-list-01__title {
    padding-top: 2.1333333333vw;
  }
}
.c-list-01__title {
  padding-right: 0.3472222222vw;
}
@media (max-width: 768px) {
  .c-list-01__title {
    padding-right: 1.3333333333vw;
  }
}
.c-list-01__title {
  padding-bottom: 0.5555555556vw;
}
@media (max-width: 768px) {
  .c-list-01__title {
    padding-bottom: 1.3333333333vw;
  }
}
.c-list-01__title {
  padding-left: 0.3472222222vw;
}
@media (max-width: 768px) {
  .c-list-01__title {
    padding-left: 1.3333333333vw;
  }
}
.c-sub-title-wrap {
  display: flex;
  justify-content: center;
}
.c-sub-title-wrap {
  margin-bottom: 1.3888888889vw;
}
@media (max-width: 768px) {
  .c-sub-title-wrap {
    margin-bottom: 2.6666666667vw;
  }
}

.c-sub-title {
  font-weight: 700;
  position: relative;
}
.c-sub-title {
  font-size: 1.8055555556vw;
}
@media (max-width: 768px) {
  .c-sub-title {
    font-size: 4.8vw;
  }
}
.c-sub-title span {
  font-size: 2.5vw;
}
@media (max-width: 768px) {
  .c-sub-title span {
    font-size: 7.4666666667vw;
  }
}
.c-sub-title::before, .c-sub-title::after {
  content: "";
  display: block;
  background-color: #494949;
  margin: auto;
  position: absolute;
}
.c-sub-title::before, .c-sub-title::after {
  top: 2.7777777778vw;
}
@media (max-width: 768px) {
  .c-sub-title::before, .c-sub-title::after {
    top: 8vw;
  }
}
.c-sub-title::before, .c-sub-title::after {
  height: 0.0694444444vw;
}
@media (max-width: 768px) {
  .c-sub-title::before, .c-sub-title::after {
    height: 0.2666666667vw;
  }
}
.c-sub-title::before, .c-sub-title::after {
  width: 3.6111111111vw;
}
@media (max-width: 768px) {
  .c-sub-title::before, .c-sub-title::after {
    width: 8vw;
  }
}
.c-sub-title::before {
  left: -4.1666666667vw;
}
@media (max-width: 768px) {
  .c-sub-title::before {
    left: -10.6666666667vw;
  }
}
.c-sub-title::after {
  right: -4.1666666667vw;
}
@media (max-width: 768px) {
  .c-sub-title::after {
    right: -10.6666666667vw;
  }
}
.c-sub-title--adjust-01::before, .c-sub-title--adjust-01::after {
  top: 1.7361111111vw;
}
@media (max-width: 768px) {
  .c-sub-title--adjust-01::before, .c-sub-title--adjust-01::after {
    top: 6.6666666667vw;
  }
}

.c-list-02 {
  display: flex;
  justify-content: space-between;
}
.c-list-02 {
  margin-bottom: 2.7777777778vw;
}
@media (max-width: 768px) {
  .c-list-02 {
    margin-bottom: 5.3333333333vw;
  }
}
@media (max-width: 768px) {
  .c-list-02 {
    flex-wrap: wrap;
  }
  .c-list-02 {
    padding-left: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list-02 {
    padding-left: 2.6666666667vw;
  }
}
@media (max-width: 768px) {
  .c-list-02 {
    padding-right: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list-02 {
    padding-right: 2.6666666667vw;
  }
}
.c-list-02__item {
  overflow: hidden;
  border: 1px solid rgba(73, 73, 73, 0.75);
  background-color: #fff;
}
.c-list-02__item {
  width: 19.4444444444vw;
}
@media (max-width: 768px) {
  .c-list-02__item {
    width: 43.2vw;
  }
}
.c-list-02__item {
  border-radius: 0.5555555556vw;
}
@media (max-width: 768px) {
  .c-list-02__item {
    border-radius: 2.1333333333vw;
  }
}
.c-list-02__item {
  padding-bottom: 1.3888888889vw;
}
@media (max-width: 768px) {
  .c-list-02__item {
    padding-bottom: 4vw;
  }
}
@media (max-width: 768px) {
  .c-list-02__item {
    width: 100%;
  }
}
.c-list-02__item + .c-list-02__item {
  margin-top: 0;
}
@media (max-width: 768px) {
  .c-list-02__item + .c-list-02__item {
    margin-top: 3.2vw;
  }
}
.c-list-02__title {
  text-align: center;
  background-color: #FDF3E8;
  border-bottom: 1px solid #494949;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.c-list-02__title {
  font-size: 0.9722222222vw;
}
@media (max-width: 768px) {
  .c-list-02__title {
    font-size: 3.2vw;
  }
}
.c-list-02__title {
  padding-top: 0.3472222222vw;
}
@media (max-width: 768px) {
  .c-list-02__title {
    padding-top: 1.0666666667vw;
  }
}
.c-list-02__title {
  padding-right: 0.3472222222vw;
}
@media (max-width: 768px) {
  .c-list-02__title {
    padding-right: 1.0666666667vw;
  }
}
.c-list-02__title {
  padding-bottom: 0.3472222222vw;
}
@media (max-width: 768px) {
  .c-list-02__title {
    padding-bottom: 1.0666666667vw;
  }
}
.c-list-02__title {
  padding-left: 0.3472222222vw;
}
@media (max-width: 768px) {
  .c-list-02__title {
    padding-left: 1.0666666667vw;
  }
}
@media (max-width: 768px) {
  .c-list-02__image {
    display: flex;
    justify-content: center;
  }
  .c-list-02__image {
    margin-top: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list-02__image {
    margin-top: 0.8vw;
  }
}
@media (max-width: 768px) {
  .c-list-02__image img {
    width: 50%;
  }
}
.c-list-02__text {
  text-align: center;
  line-height: 2;
}
.c-list-02__text {
  font-size: 0.8333333333vw;
}
@media (max-width: 768px) {
  .c-list-02__text {
    font-size: 2.9333333333vw;
  }
}
.c-list-02__text span {
  font-weight: 700;
}
@media (max-width: 768px) {
  .c-list-02__text {
    text-align: left;
  }
  .c-list-02__text {
    padding-left: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list-02__text {
    padding-left: 5.3333333333vw;
  }
}
@media (max-width: 768px) {
  .c-list-02__text {
    padding-right: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list-02__text {
    padding-right: 5.3333333333vw;
  }
}

.c-button-wrap {
  display: flex;
  justify-content: center;
}

.c-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: 1px solid rgba(73, 73, 73, 0.75);
  background: url(../../../assets/images/button-bg.jpg) no-repeat center/cover;
}
.c-button {
  font-size: 1.25vw;
}
@media (max-width: 768px) {
  .c-button {
    font-size: 3.7333333333vw;
  }
}
.c-button {
  width: 30.2083333333vw;
}
.c-button {
  height: 4.8611111111vw;
}
@media (max-width: 768px) {
  .c-button {
    height: 13.3333333333vw;
  }
}
.c-button {
  border-radius: 6.9444444444vw;
}
@media (max-width: 768px) {
  .c-button {
    border-radius: 26.6666666667vw;
  }
}
@media (max-width: 768px) {
  .c-button {
    width: 100%;
  }
}
.c-button::after {
  content: "";
  display: block;
  background: url(../../../assets/images/icon-arrow-right.svg) no-repeat center/100% 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-button::after {
  right: 1.3888888889vw;
}
@media (max-width: 768px) {
  .c-button::after {
    right: 5.3333333333vw;
  }
}
.c-button::after {
  width: 2.0833333333vw;
}
@media (max-width: 768px) {
  .c-button::after {
    width: 8vw;
  }
}
.c-button::after {
  height: 2.0833333333vw;
}
@media (max-width: 768px) {
  .c-button::after {
    height: 8vw;
  }
}

.price-section {
  background: url(../../../assets/images/bg-pattern-01.png) repeat center;
}
.price-section .inner-block {
  padding-top: 5.5555555556vw;
}
@media (max-width: 768px) {
  .price-section .inner-block {
    padding-top: 10.6666666667vw;
  }
}
.price-section .inner-block {
  padding-bottom: 5.5555555556vw;
}
@media (max-width: 768px) {
  .price-section .inner-block {
    padding-bottom: 10.6666666667vw;
  }
}

.store-section {
  background: url(../../../assets/images/store-bg.jpg) no-repeat center/cover;
}
.store-section .inner-block {
  padding-top: 5.5555555556vw;
}
@media (max-width: 768px) {
  .store-section .inner-block {
    padding-top: 10.6666666667vw;
  }
}
.store-section .inner-block {
  padding-bottom: 5.5555555556vw;
}
@media (max-width: 768px) {
  .store-section .inner-block {
    padding-bottom: 10.6666666667vw;
  }
}

#products-handled{
  scroll-margin-top: 100px;
}
@media (max-width: 768px) {
  #products-handled{
    scroll-margin-top: 3%;
  }
}
.c-list-03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-list-03__item {
  background-color: #FDF3E8;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(73, 73, 73, 0.75);
  font-weight: 500;
}
.c-list-03__item {
  font-size: 0.9722222222vw;
}
@media (max-width: 768px) {
  .c-list-03__item {
    font-size: 3.2vw;
  }
}
.c-list-03__item {
  width: 19.7222222222vw;
}
@media (max-width: 768px) {
  .c-list-03__item {
    width: 43.7333333333vw;
  }
}
.c-list-03__item {
  height: 2.7777777778vw;
}
@media (max-width: 768px) {
  .c-list-03__item {
    height: 8vw;
  }
}
.c-list-03__item {
  border-radius: 0.5555555556vw;
}
@media (max-width: 768px) {
  .c-list-03__item {
    border-radius: 2.1333333333vw;
  }
}
@media (max-width: 768px) {
  .c-list-03__item:nth-child(n+3) {
    margin-top: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .c-list-03__item:nth-child(n+3) {
    margin-top: 2.1333333333vw;
  }
}
@media (min-width: 769px) {
  .c-list-03__item:nth-child(n+5) {
    margin-top: 0.8333333333vw;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  .c-list-03__item:nth-child(n+5) {
    margin-top: 3.2vw;
  }
}
.c-list-03__note {
  text-align: right;
}
.c-list-03__note {
  font-size: 0.9722222222vw;
}
@media (max-width: 768px) {
  .c-list-03__note {
    font-size: 3.2vw;
  }
}
.c-list-03__note {
  margin-bottom: 1.3888888889vw;
}
@media (max-width: 768px) {
  .c-list-03__note {
    margin-bottom: 5.3333333333vw;
  }
}
@media (max-width: 768px) {
  .c-list-03__note {
    margin-bottom: 5.3333333333vw;
  }
}
.c-bnr-wrap {
  display: flex;
  justify-content: center;
}
.c-bnr-wrap {
  margin-top: 1.7361111111vw;
}
@media (max-width: 768px) {
  .c-bnr-wrap {
    margin-top: 4vw;
  }
}

.c-bnr {
  display: inline-block;
  border: 1px solid rgba(73, 73, 73, 0.75);
  overflow: hidden;
}
.c-bnr {
  width: 55.5555555556vw;
}
.c-bnr {
  border-radius: 0.6944444444vw;
}
@media (max-width: 768px) {
  .c-bnr {
    border-radius: 1.6vw;
  }
}
@media (max-width: 768px) {
  .c-bnr {
    width: 100%;
  }
}

.form-section select,
.form-section input,
.form-section textarea{
  border: solid 1px #333;
}
.form-section button{
  background: #41392F;
  color: #fff;
  padding: 0.3rem 1rem;
  margin-top: 1rem;
}
@media (min-width: 769px) {
  .form-section{
    margin: 4rem 0;
  }
  .form-section select,
  .form-section input{
    display: block;
    width: 330px;
    margin-bottom: 18px;
  }
  .form-section textarea{
    display: block;
    width: 100%;
  }
  .form-section form{
    width: 750px;
    margin: 0 auto;
    border: solid 1px #333;
    padding: 30px 40px;
  }
}
@media (max-width: 768px) {
  .form-section{
    margin: 3% 0;
  }
  .form-section select,
  .form-section input{
    display: block;
    width: 80%;
    margin-bottom: 3%;
  }
  .form-section textarea{
    display: block;
    width: 100%;
  }
  .form-section form{
    border: solid 1px #333;
    padding: 3% 4% 5%;
  }
  .form-section label{
    font-size: 3.3vw;
  }
}
@media (min-width: 769px) {
  .thanks-section{
    width: 1100px;
    margin: 150px auto 50px;
    text-align: center;
  }
  .thanks-section-inner{
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .thanks-section{
    width: 97%;
    padding-left: 2%;
    margin: 22% 0 5%;
  }
  .thanks-section-inner{
    font-size: 3.3vw;
    margin-bottom: 4%;
  }
  .thanks-section-link{
    font-size: 3.3vw;
  }
}


.access-section {
  background: url(../../../assets/images/bg-pattern-01.png) repeat center;
}
.access-section .inner-block {
  padding-top: 5.5555555556vw;
}
@media (max-width: 768px) {
  .access-section .inner-block {
    padding-top: 10.6666666667vw;
  }
}
.access-section .inner-block {
  padding-bottom: 5.5555555556vw;
}
@media (max-width: 768px) {
  .access-section .inner-block {
    padding-bottom: 10.6666666667vw;
  }
}

.access-map-and-text {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .access-map-and-text {
    display: block;
  }
}

.access-map {
  border: 1px solid rgba(73, 73, 73, 0.75);
  overflow: hidden;
}
.access-map {
  border-radius: 0.5555555556vw;
}
@media (max-width: 768px) {
  .access-map {
    border-radius: 2.1333333333vw;
  }
}
.access-map {
  height: 22.2222222222vw;
}
@media (max-width: 768px) {
  .access-map {
    height: 42.6666666667vw;
  }
}
.access-map {
  width: 38.6111111111vw;
}
@media (max-width: 768px) {
  .access-map {
    width: 100%;
  }
}
.access-map iframe {
  width: 100%;
  height: 100%;
}

.access-texts {
  font-size: 1.1111111111vw;
}
@media (max-width: 768px) {
  .access-texts {
    font-size: 3.2vw;
  }
}
.access-texts {
  margin-top: 2.7777777778vw;
}
@media (max-width: 768px) {
  .access-texts {
    margin-top: 4vw;
  }
}
.access-texts__row {
  display: flex;
}
.access-texts__row + .access-texts__row {
  margin-top: 1.1111111111vw;
}
@media (max-width: 768px) {
  .access-texts__row + .access-texts__row {
    margin-top: 2.6666666667vw;
  }
}
.access-texts__th {
  font-weight: 700;
}
.access-texts__th span {
  font-weight: 400;
}

.footer {
  background: url("../../../assets/images/bg-pattern-02.png") center repeat #41392F;
  text-align: center;
}
.footer {
  padding-top: 1.0416666667vw;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 4vw;
  }
}
.footer {
  padding-bottom: 1.0416666667vw;
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 4vw;
  }
}

.footer-logo {
  margin-bottom: 0.3472222222vw;
}
@media (max-width: 768px) {
  .footer-logo {
    margin-bottom: 1.3333333333vw;
  }
}

.footer-text {
  color: #fff;
}
.footer-text {
  font-size: 0.7638888889vw;
}
@media (max-width: 768px) {
  .footer-text {
    font-size: 2.6666666667vw;
  }
}

.u-sp-only {
  display: none;
}
@media (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
}

.u-sp-only-ib {
  display: none;
}
@media (max-width: 768px) {
  .u-sp-only-ib {
    display: inline-block;
  }
}

.u-pc-only {
  display: none;
}
@media (min-width: 769px) {
  .u-pc-only {
    display: block;
  }
}

.u-pc-only-ib {
  display: none;
}
@media (min-width: 769px) {
  .u-pc-only-ib {
    display: inline-block;
  }
}

.u-center-margin {
  margin-left: auto;
  margin-right: auto;
}

.u-center-flex {
  display: flex;
  justify-content: center;
}

.u-fadeIn {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s;
}
.u-fadeIn.is-show {
  opacity: 1;
}

.u-fadeOut {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s;
}
.u-fadeOut.is-hide {
  opacity: 0;
}

.u-fadeGroup > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.u-fadeGroup.is-show > * {
  opacity: 1;
  transform: translateY(0);
}

.zaoral-landing .u-fadeGroup.is-show > *:nth-child(1) {
  transition-delay: 0s;
}

.zaoral-landing .u-fadeGroup.is-show > *:nth-child(2) {
  transition-delay: 0.2s;
}

.zaoral-landing .u-fadeGroup.is-show > *:nth-child(3) {
  transition-delay: 0.4s;
}

.zaoral-landing .u-fadeGroup.is-show > *:nth-child(4) {
  transition-delay: 0.6s;
}

.zaoral-landing .u-fadeGroup.is-show > *:nth-child(5) {
  transition-delay: 0.8s;
}

.zaoral-landing .u-fadeGroup.is-show > *:nth-child(6) {
  transition-delay: 1s;
}

.zaoral-landing .u-fadeGroup.is-show > *:nth-child(7) {
  transition-delay: 1.2s;
}

.zaoral-landing .u-fadeGroup.is-show > *:nth-child(8) {
  transition-delay: 1.4s;
}

.zaoral-landing .u-fadeGroup.is-show > *:nth-child(9) {
  transition-delay: 1.6s;
}

.zaoral-landing .u-fadeGroup.is-show > *:nth-child(10) {
  transition-delay: 1.8s;
}