@charset "UTF-8";
a,
abbr,
acronym,
address,
applet,
big,
blockquote,
body,
caption,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
font,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
iframe,
img,
ins,
kbd,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
tt,
ul,
var {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

a,
a:active,
a:hover,
a:link,
a:visited {
  text-decoration: none;
}

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

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

iframe,
img {
  border: none;
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-size: 100%;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  margin: inherit;
}

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

hr {
  margin: 0;
  padding: 0;
  border: 0;
  color: #000;
  background-color: #000;
  height: 1px;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

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

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

ul li a img {
  margin: 0;
  padding: 0;
}

li img {
  vertical-align: bottom;
}

a:focus {
  overflow: hidden;
  outline: none;
}

ol,
ul {
  list-style: none outside none;
}

ol.link,
ul.link {
  list-style: outside none none;
}

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

main {
  display: block;
}

i {
  font-style: normal;
}

/*
* 色、フォント、基本スタイルの一括設定
*/
:root {
  /*基本文字カラー*/
  --color-base: #fff;
  /*メインカラー*/
  --color-main: #817624;
  /*メインカラーと白を混ぜた明るい色（透明度をつけた場合）*/
  /*メインカラーRGB値*/
  --color-main-rgb: 129, 118, 36;
  /*メインカラーと白を混ぜた明るい色（透明度をつけた場合）*/
  --color-main-light: rgba(var(--color-main-rgb), 0.8);
  /*メインカラーと白を混ぜたさらに明るい色*/
  --color-main-light02: color-mix(in srgb, var(--color-main) 8%, #fff);
  /*グラデーション*/
  --color-main-gradient: linear-gradient(
    -35deg,
    var(--color-main) 0%,
    var(--color-main-light) 100%
  );
  /*背景色*/
  --color-bg: #101b6a;
  /*
  フォントでWebフォントを使う場合は、template-parts/sns-url.phpで設定する-------
   */
  /*英語フォント*/
  --en-font: "Times", "Times New Roman", serif;
  /*見出し日本語フォント*/
  --font-midashi: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN",
    "Noto Serif JP", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝",
    serif;
  /*本文日本語フォント*/
  --font-honbun: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
    "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  word-break: normal;
  font-size: 62.5%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-base);
  font-family: var(--font-midashi);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.73;
  letter-spacing: 0.02em;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-base);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

a:hover {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
}

.c-overlay {
  display: block;
  width: 100%;
  height: 100lvh;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  background-color: #000;
}
.c-overlay.is-active {
  opacity: 1;
  z-index: 998;
  visibility: visible;
}

/*
function,breakpoint,英文などの特殊フォントの関数
*/
/*英語フォント*/
.p-flow-item__step, .p-plan-sec__price, .p-faq-qa__question-main:before, .p-faq-qa__answer:before, .p-media-card__price, .l-footer__logo a span.main, .l-humnav__tel a, .l-header__logo a span.main, .l-header__tel a, .c-link-map a, .c-title-en-num-jp .en, .c-title-en-num-jp .num, .c-title .en {
  font-family: var(--en-font);
  font-weight: normal;
  font-style: normal;
  font-display: optional;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

/*
mixinの設定
フォントサイズや、レスポンシブデザインの設定を行う
*/
/*------------------------------------------------------
  コンテナ要素
-------------------------------------------------------*/
.c-inner {
  width: calc(100% - 13.3333333333vw);
  margin: auto;
  max-width: 1000px;
}

.c-inner-wide {
  width: calc(100% - 13.3333333333vw);
  margin: auto;
  max-width: 1000px;
  max-width: 1136px;
}

/*------------------------------------------------------
  セクションのタイトル
  （英語と日本語）
-------------------------------------------------------*/
.c-title {
  margin-bottom: 14.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .c-title {
    margin-bottom: 80px;
  }
}
.c-title .en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--color-main);
  margin-bottom: 0.8em;
  font-size: min(4.5333333333vw, 2.04rem);
  line-height: 1;
  letter-spacing: 0.07em;
}
@media print, screen and (min-width:768px) {
  .c-title .en {
    margin-bottom: 0.5em;
    font-size: 1.6rem;
  }
}
.c-title .en svg {
  width: auto;
  height: 100%;
  overflow: visible;
  margin-right: 0.25em;
}
.c-title .en svg * {
  fill: var(--color-main);
}
.c-title .jp {
  display: block;
  font-size: min(6.1333333333vw, 2.76rem);
  font-weight: 300;
  line-height: 1.4347826087;
  letter-spacing: 0.16em;
}
@media print, screen and (min-width:768px) {
  .c-title .jp {
    margin-top: 0.5em;
    font-size: min(27px, 2.7vw);
    line-height: 1.7037037037;
    letter-spacing: 0.2em;
  }
}

/*------------------------------------------------------
  英語・数字・日本語のタイトル
  （プランとフローなどで使用）
-------------------------------------------------------*/
.c-title-en-num-jp .en {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-main);
  margin-right: 0.5em;
  font-size: min(3.4666666667vw, 1.56rem);
  line-height: 1;
  letter-spacing: 0.1em;
}
@media print, screen and (min-width:768px) {
  .c-title-en-num-jp .en {
    font-size: min(15px, 1.5vw);
  }
}
.c-title-en-num-jp .num {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-main-light);
  font-size: min(6.6666666667vw, 3rem);
  line-height: 1;
}
@media print, screen and (min-width:768px) {
  .c-title-en-num-jp .num {
    font-size: min(29px, 2.9vw);
  }
}
.c-title-en-num-jp .jp {
  margin: 0.75em 0 0;
  display: block;
  font-size: min(5.0666666667vw, 2.28rem);
  font-weight: 300;
  line-height: 1.6315789474;
  letter-spacing: 0.15em;
}
@media print, screen and (min-width:768px) {
  .c-title-en-num-jp .jp {
    font-size: min(23px, 2.2vw);
    white-space: nowrap;
    line-height: 1.9130434783;
    letter-spacing: 0.1em;
  }
}

@media print, screen and (min-width:768px) {
  .c-button-icon-text-arrow {
    max-width: 382px;
  }
}
.c-button-icon-text-arrow > a, .c-button-icon-text-arrow > span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--color-main);
  padding: 1em 1.5em;
  color: var(---color-base);
  background-color: var(--color-main);
  font-size: min(4.2666666667vw, 1.92rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.07em;
  text-align: center;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 7.7333333333vw;
}
@media print, screen and (min-width:768px) {
  .c-button-icon-text-arrow > a, .c-button-icon-text-arrow > span {
    font-size: min(21px, 2.1vw);
    letter-spacing: 0.1em;
    padding: 0.9em 1em 0.9em 0.7em;
    border-radius: 33px;
  }
}
.c-button-icon-text-arrow > a .icon, .c-button-icon-text-arrow > span .icon {
  height: 1.1em;
  aspect-ratio: 24/16;
  margin-right: 0.5em;
}
@media print, screen and (min-width:768px) {
  .c-button-icon-text-arrow > a .icon, .c-button-icon-text-arrow > span .icon {
    margin-right: 1em;
  }
}
.c-button-icon-text-arrow > a .icon svg, .c-button-icon-text-arrow > span .icon svg {
  width: auto;
  height: 100%;
  overflow: visible;
}
.c-button-icon-text-arrow > a .icon svg *, .c-button-icon-text-arrow > span .icon svg * {
  fill: var(--color-base);
  -webkit-transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.c-button-icon-text-arrow > a::after, .c-button-icon-text-arrow > span::after {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.1em;
  width: 0.45em;
  height: 0.45em;
  border-right: 1px solid var(--color-base);
  border-top: 1px solid var(--color-base);
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
  -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media print, screen and (min-width:768px) {
  .c-button-icon-text-arrow > a:hover, .c-button-icon-text-arrow > span:hover {
    opacity: 1;
    color: var(--color-main);
    background-color: var(--color-base);
  }
  .c-button-icon-text-arrow > a:hover .icon svg *, .c-button-icon-text-arrow > span:hover .icon svg * {
    fill: var(--color-main);
  }
  .c-button-icon-text-arrow > a:hover::after, .c-button-icon-text-arrow > span:hover::after {
    border-color: var(--color-main);
  }
}
@media print, screen and (min-width:768px) {
  .c-button-icon-text-arrow--gold {
    max-width: 382px;
  }
}
.c-button-icon-text-arrow--gold > a, .c-button-icon-text-arrow--gold > span {
  color: #fff;
  background-color: var(--color-main);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width:767px) {
  .c-button-icon-text-arrow--gold > a, .c-button-icon-text-arrow--gold > span {
    letter-spacing: 0.2em;
    padding: 0.8em 2.1em 0.8em 0.8em;
  }
}
@media print, screen and (min-width:768px) {
  .c-button-icon-text-arrow--gold > a, .c-button-icon-text-arrow--gold > span {
    padding: 0.9em 2em 0.9em 0.7em;
  }
}
.c-button-icon-text-arrow--gold > a .icon svg *, .c-button-icon-text-arrow--gold > span .icon svg * {
  fill: #fff;
}
.c-button-icon-text-arrow--gold > a::after, .c-button-icon-text-arrow--gold > span::after {
  border-color: #fff;
}
@media only screen and (max-width:767px) {
  .c-button-icon-text-arrow--gold > a::after, .c-button-icon-text-arrow--gold > span::after {
    right: 12%;
  }
}
@media print, screen and (min-width:768px) {
  .c-button-icon-text-arrow--gold > a:hover, .c-button-icon-text-arrow--gold > span:hover {
    opacity: 1;
    color: var(--color-main);
    background-color: #fff;
  }
  .c-button-icon-text-arrow--gold > a:hover .icon svg *, .c-button-icon-text-arrow--gold > span:hover .icon svg * {
    fill: var(--color-main);
  }
  .c-button-icon-text-arrow--gold > a:hover::after, .c-button-icon-text-arrow--gold > span:hover::after {
    border-color: var(--color-main);
  }
}

/*------------------------------------------------------
  GoogleMapのアイコンを文字先頭に表示する
-------------------------------------------------------*/
.c-link-map {
  margin-top: 0.5em;
}
.c-link-map a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: min(4.2666666667vw, 1.92rem);
  line-height: 1.1875;
  letter-spacing: 0.05em;
  color: var(--color-main);
}
@media print, screen and (min-width:768px) {
  .c-link-map a {
    font-size: min(18px, 1.8vw);
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
}
.c-link-map a svg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 1.4em;
  overflow: visible;
  display: inline-block;
  margin-right: 0.5em;
}
@media print, screen and (min-width:768px) {
  .c-link-map a svg {
    margin-right: 0.35em;
  }
}
.c-link-map a svg .color-main {
  fill: var(--color-main);
}
.c-link-map a .text {
  padding-bottom: 0.1em;
  display: inline-block;
  border-bottom: 1px solid var(--color-main);
}

/*------------------------------------------------------
  アクセントカラーをつける
-------------------------------------------------------*/
.c-main-color {
  color: var(--color-main);
  font-weight: inherit;
}

/*------------------------------------------------------
  パララックス要素の共通スタイル
-------------------------------------------------------*/
.c-parallax__inner {
  height: 41.0666666667vw;
  overflow: hidden;
}
@media print, screen and (min-width:768px) {
  .c-parallax__inner {
    height: min(429px, 33.515625vw);
  }
}
.c-parallax__inner img {
  width: 100%;
}

/*------------------------------------------------------
  ページトップに戻るボタン
-------------------------------------------------------*/
.c-page-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 990;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.c-page-top a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: -9999px;
  border-radius: 100%;
  border: 1px solid var(--color-main);
  background-color: #fff;
}
@media print, screen and (min-width:768px) {
  .c-page-top a {
    width: 26px;
    height: 26px;
  }
}
.c-page-top a::before {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  inset: 0;
  width: 8px;
  height: 8px;
  border-left: 1px solid var(--color-main);
  border-top: 1px solid var(--color-main);
  -webkit-transform: translateY(25%) rotate(45deg);
          transform: translateY(25%) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media print, screen and (min-width:768px) {
  .c-page-top a::before {
    width: 5px;
    height: 5px;
  }
}
.c-page-top.is-scroll {
  opacity: 1;
}

/*------------------------------------------------------
  画像のトリミング用クラス
-------------------------------------------------------*/
.u-fitcover {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
}
.u-fitcover img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  -o-object-position: top center;
     object-position: top center;
}

.u-no-link {
  cursor: default;
  pointer-events: none;
}

/*PCのみ表示*/
@media only screen and (max-width:767px) {
  .u-only-pc {
    display: none !important;
  }
}

/*スマホのみ表示*/
@media print, screen and (min-width:768px) {
  .u-only-sp {
    display: none !important;
  }
}

/*英語を大文字にする*/
.u-upper {
  text-transform: uppercase;
}

/*------------------------------------------------------
 余白ユーティリティ
-------------------------------------------------------*/
.u-m-xs {
  margin: min(8px, 2.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-xs {
    margin: min(8px, 0.8vw) !important;
  }
}

.u-mt-xs {
  margin-top: min(8px, 2.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-xs {
    margin-top: min(8px, 0.8vw) !important;
  }
}

.u-mb-xs {
  margin-bottom: min(8px, 2.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-xs {
    margin-bottom: min(8px, 0.8vw) !important;
  }
}

.u-mx-xs {
  margin-left: min(8px, 2.1333333333vw) !important;
  margin-right: min(8px, 2.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-xs {
    margin-left: min(8px, 0.8vw) !important;
    margin-right: min(8px, 0.8vw) !important;
  }
}

.u-ml-xs {
  margin-left: min(8px, 2.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-xs {
    margin-left: min(8px, 0.8vw) !important;
  }
}

.u-mr-xs {
  margin-right: min(8px, 2.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-xs {
    margin-right: min(8px, 0.8vw) !important;
  }
}

.u-p-xs {
  padding: min(8px, 2.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-xs {
    padding: min(8px, 0.8vw) !important;
  }
}

.u-pt-xs {
  padding-top: min(8px, 2.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-xs {
    padding-top: min(8px, 0.8vw) !important;
  }
}

.u-pb-xs {
  padding-bottom: min(8px, 2.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-xs {
    padding-bottom: min(8px, 0.8vw) !important;
  }
}

.u-px-xs {
  padding-left: min(8px, 2.1333333333vw) !important;
  padding-right: min(8px, 2.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-xs {
    padding-left: min(8px, 0.8vw) !important;
    padding-right: min(8px, 0.8vw) !important;
  }
}

.u-pl-xs {
  padding-left: min(8px, 2.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-xs {
    padding-left: min(8px, 0.8vw) !important;
  }
}

.u-pr-xs {
  padding-right: min(8px, 2.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-xs {
    padding-right: min(8px, 0.8vw) !important;
  }
}

.u-m-sm {
  margin: min(16px, 4.2666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-sm {
    margin: min(16px, 1.6vw) !important;
  }
}

.u-mt-sm {
  margin-top: min(16px, 4.2666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-sm {
    margin-top: min(16px, 1.6vw) !important;
  }
}

.u-mb-sm {
  margin-bottom: min(16px, 4.2666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-sm {
    margin-bottom: min(16px, 1.6vw) !important;
  }
}

.u-mx-sm {
  margin-left: min(16px, 4.2666666667vw) !important;
  margin-right: min(16px, 4.2666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-sm {
    margin-left: min(16px, 1.6vw) !important;
    margin-right: min(16px, 1.6vw) !important;
  }
}

.u-ml-sm {
  margin-left: min(16px, 4.2666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-sm {
    margin-left: min(16px, 1.6vw) !important;
  }
}

.u-mr-sm {
  margin-right: min(16px, 4.2666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-sm {
    margin-right: min(16px, 1.6vw) !important;
  }
}

.u-p-sm {
  padding: min(16px, 4.2666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-sm {
    padding: min(16px, 1.6vw) !important;
  }
}

.u-pt-sm {
  padding-top: min(16px, 4.2666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-sm {
    padding-top: min(16px, 1.6vw) !important;
  }
}

.u-pb-sm {
  padding-bottom: min(16px, 4.2666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-sm {
    padding-bottom: min(16px, 1.6vw) !important;
  }
}

.u-px-sm {
  padding-left: min(16px, 4.2666666667vw) !important;
  padding-right: min(16px, 4.2666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-sm {
    padding-left: min(16px, 1.6vw) !important;
    padding-right: min(16px, 1.6vw) !important;
  }
}

.u-pl-sm {
  padding-left: min(16px, 4.2666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-sm {
    padding-left: min(16px, 1.6vw) !important;
  }
}

.u-pr-sm {
  padding-right: min(16px, 4.2666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-sm {
    padding-right: min(16px, 1.6vw) !important;
  }
}

.u-m-md {
  margin: min(24px, 6.4vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-md {
    margin: min(24px, 2.4vw) !important;
  }
}

.u-mt-md {
  margin-top: min(24px, 6.4vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-md {
    margin-top: min(24px, 2.4vw) !important;
  }
}

.u-mb-md {
  margin-bottom: min(24px, 6.4vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-md {
    margin-bottom: min(24px, 2.4vw) !important;
  }
}

.u-mx-md {
  margin-left: min(24px, 6.4vw) !important;
  margin-right: min(24px, 6.4vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-md {
    margin-left: min(24px, 2.4vw) !important;
    margin-right: min(24px, 2.4vw) !important;
  }
}

.u-ml-md {
  margin-left: min(24px, 6.4vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-md {
    margin-left: min(24px, 2.4vw) !important;
  }
}

.u-mr-md {
  margin-right: min(24px, 6.4vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-md {
    margin-right: min(24px, 2.4vw) !important;
  }
}

.u-p-md {
  padding: min(24px, 6.4vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-md {
    padding: min(24px, 2.4vw) !important;
  }
}

.u-pt-md {
  padding-top: min(24px, 6.4vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-md {
    padding-top: min(24px, 2.4vw) !important;
  }
}

.u-pb-md {
  padding-bottom: min(24px, 6.4vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-md {
    padding-bottom: min(24px, 2.4vw) !important;
  }
}

.u-px-md {
  padding-left: min(24px, 6.4vw) !important;
  padding-right: min(24px, 6.4vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-md {
    padding-left: min(24px, 2.4vw) !important;
    padding-right: min(24px, 2.4vw) !important;
  }
}

.u-pl-md {
  padding-left: min(24px, 6.4vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-md {
    padding-left: min(24px, 2.4vw) !important;
  }
}

.u-pr-md {
  padding-right: min(24px, 6.4vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-md {
    padding-right: min(24px, 2.4vw) !important;
  }
}

.u-m-lg {
  margin: min(32px, 8.5333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-lg {
    margin: min(32px, 3.2vw) !important;
  }
}

.u-mt-lg {
  margin-top: min(32px, 8.5333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-lg {
    margin-top: min(32px, 3.2vw) !important;
  }
}

.u-mb-lg {
  margin-bottom: min(32px, 8.5333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-lg {
    margin-bottom: min(32px, 3.2vw) !important;
  }
}

.u-mx-lg {
  margin-left: min(32px, 8.5333333333vw) !important;
  margin-right: min(32px, 8.5333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-lg {
    margin-left: min(32px, 3.2vw) !important;
    margin-right: min(32px, 3.2vw) !important;
  }
}

.u-ml-lg {
  margin-left: min(32px, 8.5333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-lg {
    margin-left: min(32px, 3.2vw) !important;
  }
}

.u-mr-lg {
  margin-right: min(32px, 8.5333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-lg {
    margin-right: min(32px, 3.2vw) !important;
  }
}

.u-p-lg {
  padding: min(32px, 8.5333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-lg {
    padding: min(32px, 3.2vw) !important;
  }
}

.u-pt-lg {
  padding-top: min(32px, 8.5333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-lg {
    padding-top: min(32px, 3.2vw) !important;
  }
}

.u-pb-lg {
  padding-bottom: min(32px, 8.5333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-lg {
    padding-bottom: min(32px, 3.2vw) !important;
  }
}

.u-px-lg {
  padding-left: min(32px, 8.5333333333vw) !important;
  padding-right: min(32px, 8.5333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-lg {
    padding-left: min(32px, 3.2vw) !important;
    padding-right: min(32px, 3.2vw) !important;
  }
}

.u-pl-lg {
  padding-left: min(32px, 8.5333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-lg {
    padding-left: min(32px, 3.2vw) !important;
  }
}

.u-pr-lg {
  padding-right: min(32px, 8.5333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-lg {
    padding-right: min(32px, 3.2vw) !important;
  }
}

.u-m-xl {
  margin: min(48px, 12.8vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-xl {
    margin: min(48px, 4.8vw) !important;
  }
}

.u-mt-xl {
  margin-top: min(48px, 12.8vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-xl {
    margin-top: min(48px, 4.8vw) !important;
  }
}

.u-mb-xl {
  margin-bottom: min(48px, 12.8vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-xl {
    margin-bottom: min(48px, 4.8vw) !important;
  }
}

.u-mx-xl {
  margin-left: min(48px, 12.8vw) !important;
  margin-right: min(48px, 12.8vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-xl {
    margin-left: min(48px, 4.8vw) !important;
    margin-right: min(48px, 4.8vw) !important;
  }
}

.u-ml-xl {
  margin-left: min(48px, 12.8vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-xl {
    margin-left: min(48px, 4.8vw) !important;
  }
}

.u-mr-xl {
  margin-right: min(48px, 12.8vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-xl {
    margin-right: min(48px, 4.8vw) !important;
  }
}

.u-p-xl {
  padding: min(48px, 12.8vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-xl {
    padding: min(48px, 4.8vw) !important;
  }
}

.u-pt-xl {
  padding-top: min(48px, 12.8vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-xl {
    padding-top: min(48px, 4.8vw) !important;
  }
}

.u-pb-xl {
  padding-bottom: min(48px, 12.8vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-xl {
    padding-bottom: min(48px, 4.8vw) !important;
  }
}

.u-px-xl {
  padding-left: min(48px, 12.8vw) !important;
  padding-right: min(48px, 12.8vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-xl {
    padding-left: min(48px, 4.8vw) !important;
    padding-right: min(48px, 4.8vw) !important;
  }
}

.u-pl-xl {
  padding-left: min(48px, 12.8vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-xl {
    padding-left: min(48px, 4.8vw) !important;
  }
}

.u-pr-xl {
  padding-right: min(48px, 12.8vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-xl {
    padding-right: min(48px, 4.8vw) !important;
  }
}

.u-m-xxl {
  margin: min(64px, 17.0666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-xxl {
    margin: min(64px, 6.4vw) !important;
  }
}

.u-mt-xxl {
  margin-top: min(64px, 17.0666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-xxl {
    margin-top: min(64px, 6.4vw) !important;
  }
}

.u-mb-xxl {
  margin-bottom: min(64px, 17.0666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-xxl {
    margin-bottom: min(64px, 6.4vw) !important;
  }
}

.u-mx-xxl {
  margin-left: min(64px, 17.0666666667vw) !important;
  margin-right: min(64px, 17.0666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-xxl {
    margin-left: min(64px, 6.4vw) !important;
    margin-right: min(64px, 6.4vw) !important;
  }
}

.u-ml-xxl {
  margin-left: min(64px, 17.0666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-xxl {
    margin-left: min(64px, 6.4vw) !important;
  }
}

.u-mr-xxl {
  margin-right: min(64px, 17.0666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-xxl {
    margin-right: min(64px, 6.4vw) !important;
  }
}

.u-p-xxl {
  padding: min(64px, 17.0666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-xxl {
    padding: min(64px, 6.4vw) !important;
  }
}

.u-pt-xxl {
  padding-top: min(64px, 17.0666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-xxl {
    padding-top: min(64px, 6.4vw) !important;
  }
}

.u-pb-xxl {
  padding-bottom: min(64px, 17.0666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-xxl {
    padding-bottom: min(64px, 6.4vw) !important;
  }
}

.u-px-xxl {
  padding-left: min(64px, 17.0666666667vw) !important;
  padding-right: min(64px, 17.0666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-xxl {
    padding-left: min(64px, 6.4vw) !important;
    padding-right: min(64px, 6.4vw) !important;
  }
}

.u-pl-xxl {
  padding-left: min(64px, 17.0666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-xxl {
    padding-left: min(64px, 6.4vw) !important;
  }
}

.u-pr-xxl {
  padding-right: min(64px, 17.0666666667vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-xxl {
    padding-right: min(64px, 6.4vw) !important;
  }
}

.u-m-3xl {
  margin: min(80px, 21.3333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-3xl {
    margin: min(80px, 8vw) !important;
  }
}

.u-mt-3xl {
  margin-top: min(80px, 21.3333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-3xl {
    margin-top: min(80px, 8vw) !important;
  }
}

.u-mb-3xl {
  margin-bottom: min(80px, 21.3333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-3xl {
    margin-bottom: min(80px, 8vw) !important;
  }
}

.u-mx-3xl {
  margin-left: min(80px, 21.3333333333vw) !important;
  margin-right: min(80px, 21.3333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-3xl {
    margin-left: min(80px, 8vw) !important;
    margin-right: min(80px, 8vw) !important;
  }
}

.u-ml-3xl {
  margin-left: min(80px, 21.3333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-3xl {
    margin-left: min(80px, 8vw) !important;
  }
}

.u-mr-3xl {
  margin-right: min(80px, 21.3333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-3xl {
    margin-right: min(80px, 8vw) !important;
  }
}

.u-p-3xl {
  padding: min(80px, 21.3333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-3xl {
    padding: min(80px, 8vw) !important;
  }
}

.u-pt-3xl {
  padding-top: min(80px, 21.3333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-3xl {
    padding-top: min(80px, 8vw) !important;
  }
}

.u-pb-3xl {
  padding-bottom: min(80px, 21.3333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-3xl {
    padding-bottom: min(80px, 8vw) !important;
  }
}

.u-px-3xl {
  padding-left: min(80px, 21.3333333333vw) !important;
  padding-right: min(80px, 21.3333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-3xl {
    padding-left: min(80px, 8vw) !important;
    padding-right: min(80px, 8vw) !important;
  }
}

.u-pl-3xl {
  padding-left: min(80px, 21.3333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-3xl {
    padding-left: min(80px, 8vw) !important;
  }
}

.u-pr-3xl {
  padding-right: min(80px, 21.3333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-3xl {
    padding-right: min(80px, 8vw) !important;
  }
}

.u-m-4xl {
  margin: min(96px, 25.6vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-4xl {
    margin: min(96px, 9.6vw) !important;
  }
}

.u-mt-4xl {
  margin-top: min(96px, 25.6vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-4xl {
    margin-top: min(96px, 9.6vw) !important;
  }
}

.u-mb-4xl {
  margin-bottom: min(96px, 25.6vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-4xl {
    margin-bottom: min(96px, 9.6vw) !important;
  }
}

.u-mx-4xl {
  margin-left: min(96px, 25.6vw) !important;
  margin-right: min(96px, 25.6vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-4xl {
    margin-left: min(96px, 9.6vw) !important;
    margin-right: min(96px, 9.6vw) !important;
  }
}

.u-ml-4xl {
  margin-left: min(96px, 25.6vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-4xl {
    margin-left: min(96px, 9.6vw) !important;
  }
}

.u-mr-4xl {
  margin-right: min(96px, 25.6vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-4xl {
    margin-right: min(96px, 9.6vw) !important;
  }
}

.u-p-4xl {
  padding: min(96px, 25.6vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-4xl {
    padding: min(96px, 9.6vw) !important;
  }
}

.u-pt-4xl {
  padding-top: min(96px, 25.6vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-4xl {
    padding-top: min(96px, 9.6vw) !important;
  }
}

.u-pb-4xl {
  padding-bottom: min(96px, 25.6vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-4xl {
    padding-bottom: min(96px, 9.6vw) !important;
  }
}

.u-px-4xl {
  padding-left: min(96px, 25.6vw) !important;
  padding-right: min(96px, 25.6vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-4xl {
    padding-left: min(96px, 9.6vw) !important;
    padding-right: min(96px, 9.6vw) !important;
  }
}

.u-pl-4xl {
  padding-left: min(96px, 25.6vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-4xl {
    padding-left: min(96px, 9.6vw) !important;
  }
}

.u-pr-4xl {
  padding-right: min(96px, 25.6vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-4xl {
    padding-right: min(96px, 9.6vw) !important;
  }
}

.u-m-5xl {
  margin: min(128px, 34.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-m-5xl {
    margin: min(128px, 12.8vw) !important;
  }
}

.u-mt-5xl {
  margin-top: min(128px, 34.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mt-5xl {
    margin-top: min(128px, 12.8vw) !important;
  }
}

.u-mb-5xl {
  margin-bottom: min(128px, 34.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mb-5xl {
    margin-bottom: min(128px, 12.8vw) !important;
  }
}

.u-mx-5xl {
  margin-left: min(128px, 34.1333333333vw) !important;
  margin-right: min(128px, 34.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mx-5xl {
    margin-left: min(128px, 12.8vw) !important;
    margin-right: min(128px, 12.8vw) !important;
  }
}

.u-ml-5xl {
  margin-left: min(128px, 34.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-ml-5xl {
    margin-left: min(128px, 12.8vw) !important;
  }
}

.u-mr-5xl {
  margin-right: min(128px, 34.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-mr-5xl {
    margin-right: min(128px, 12.8vw) !important;
  }
}

.u-p-5xl {
  padding: min(128px, 34.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-p-5xl {
    padding: min(128px, 12.8vw) !important;
  }
}

.u-pt-5xl {
  padding-top: min(128px, 34.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pt-5xl {
    padding-top: min(128px, 12.8vw) !important;
  }
}

.u-pb-5xl {
  padding-bottom: min(128px, 34.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pb-5xl {
    padding-bottom: min(128px, 12.8vw) !important;
  }
}

.u-px-5xl {
  padding-left: min(128px, 34.1333333333vw) !important;
  padding-right: min(128px, 34.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-px-5xl {
    padding-left: min(128px, 12.8vw) !important;
    padding-right: min(128px, 12.8vw) !important;
  }
}

.u-pl-5xl {
  padding-left: min(128px, 34.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pl-5xl {
    padding-left: min(128px, 12.8vw) !important;
  }
}

.u-pr-5xl {
  padding-right: min(128px, 34.1333333333vw) !important;
}
@media print, screen and (min-width:768px) {
  .u-pr-5xl {
    padding-right: min(128px, 12.8vw) !important;
  }
}

.u-m-0 {
  margin: 0 !important;
}

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

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

.u-ml-0 {
  margin-left: 0 !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.u-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/*------------------------------------------------------
  フェードイン・ぼかし
  ※JavaScriptの設定が必要
-------------------------------------------------------*/
.js-fadein {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 800ms;
          transition-duration: 800ms;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.js-fadein.is-show {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

/*------------------------------------------------------
  シーケンシャルフェードイン・ぼかし
  隣接要素が自動的にディレイ付きでフェードイン
-------------------------------------------------------*/
.js-fadein-sequence {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 800ms;
          transition-duration: 800ms;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.js-fadein-sequence + .js-fadein-sequence {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}
.js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
.js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence {
  -webkit-transition-delay: 450ms;
          transition-delay: 450ms;
}
.js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
.js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence + .js-fadein-sequence {
  -webkit-transition-delay: 750ms;
          transition-delay: 750ms;
}
.js-fadein-sequence.is-show {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.l-header {
  position: sticky;
  left: 0;
  top: 0;
  height: 65px;
  background-color: var(--color-bg);
  border-bottom: 1px solid #c3c3c3;
  width: 100%;
  z-index: 1000;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}
@media print, screen and (min-width:768px) {
  .l-header {
    height: 75px;
  }
}
.l-header__inner {
  padding-right: min(45px, 11.3333333333vw);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 999;
}
@media print, screen and (min-width:768px) {
  .l-header__inner {
    padding-right: 30px;
    width: 93.90625%;
    max-width: unset;
  }
}
.l-header__logo {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 1000;
}
.l-header__logo a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media print, screen and (min-width:768px) {
  .l-header__logo a {
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-header__logo a img {
  margin-top: 0.5em;
  width: 30.6666666667vw;
  max-width: 144px;
}
@media print, screen and (min-width:768px) {
  .l-header__logo a img {
    margin-top: 0;
    width: 138px;
    max-width: unset;
  }
}
.l-header__logo a span {
  display: block;
  text-align: left;
}
.l-header__logo a span.main {
  font-size: min(4.2666666667vw, 1.92rem);
  line-height: 1;
  white-space: nowrap;
}
@media print, screen and (min-width:768px) {
  .l-header__logo a span.main {
    font-size: min(31px, 2.9vw);
  }
}
.l-header__logo a span.sub {
  font-family: var(--font-midashi);
  margin-top: 0.5em;
  font-size: min(2.8533333333vw, 1.284rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
@media print, screen and (min-width:768px) {
  .l-header__logo a span.sub {
    margin-top: 0;
    margin-left: 1.5em;
    line-height: 1;
    font-size: min(15px, 1.3vw);
  }
}
.l-header__tel {
  margin-left: auto;
  z-index: 1000;
}
.l-header__tel a {
  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;
  font-size: min(24.8px, 2.4vw);
}
.l-header__tel a .icon {
  height: 1.1em;
  aspect-ratio: 26/29;
  margin-right: 0.2em;
}
.l-header__tel a .icon svg {
  width: auto;
  height: 100%;
  overflow: visible;
}
.l-header__tel a .icon svg * {
  stroke: var(--color-base);
  -webkit-transition: stroke 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: stroke 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.l-header__link {
  margin: 0;
  width: 44%;
  max-width: 210px;
  z-index: 1000;
}
@media print, screen and (min-width:768px) {
  .l-header__link {
    width: 178px;
    margin-left: 2em;
  }
}
.l-header__link > a {
  min-height: 36px;
}
@media only screen and (max-width:767px) {
  .l-header__link > a {
    font-size: min(3.4666666667vw, 1.56rem);
    letter-spacing: 0em;
    padding: 0.4em 0.4em 0.4em 0.4em;
  }
}
@media print, screen and (min-width:768px) {
  .l-header__link > a {
    font-size: 1.5rem;
    padding: 0.5em 1.5em 0.5em 0em;
  }
}
.l-header__link > a .icon {
  margin-right: 0.4em;
}
@media only screen and (max-width:767px) {
  .l-header__link > a::after {
    display: none;
  }
}

.l-hum {
  display: block;
  z-index: 1000;
  position: absolute;
  top: 0;
  right: 0;
  width: 69px;
  height: 65px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 0.05s;
  transition: all 0.05s;
  cursor: pointer;
  background-color: transparent;
}
@media print, screen and (min-width:768px) {
  .l-hum {
    /*PCのみ*/
    height: 75px;
  }
}
.l-hum .line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 39.1304347826%;
  height: 1px;
  background-color: var(--color-base);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.l-hum .line:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) translateY(5px);
          transform: translate(-50%, -50%) translateY(5px);
}
.l-hum .line:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) translateY(-5px);
          transform: translate(-50%, -50%) translateY(-5px);
}
.l-hum .close-text {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateY(8px);
          transform: translate(-50%, -50%) translateY(8px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: san-erif;
  font-size: 10px;
}
.l-hum.is-active .line:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) translateY(-5px);
          transform: translate(-50%, -50%) translateY(-5px);
}
.l-hum.is-active .close-text {
  display: inline;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*ハンバーガーメニュー ボタン*/
.l-humnav {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 72px;
  z-index: 999;
  width: 100%;
  height: 100svh;
  position: fixed;
  top: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
@media print, screen and (min-width:768px) {
  .l-humnav {
    /*PCのみ*/
    padding-top: calc(68px + 5vh);
  }
}
.l-humnav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 0 2em 2em;
  opacity: 0;
}
@media print, screen and (min-width:768px) {
  .l-humnav__inner {
    /*PCのみ*/
    padding: 0 5% 5%;
  }
}
.l-humnav__inner-contents {
  margin: auto 0;
}
.l-humnav.is-active {
  display: block;
}
.l-humnav.is-active .l-humnav__inner {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.l-humnav__link {
  margin: 0 auto;
  width: 67.7611940299%;
  max-width: 296px;
}
@media print, screen and (min-width:768px) {
  .l-humnav__link {
    margin-top: 3em;
  }
}
.l-humnav__link > a {
  font-size: min(3.7333333333vw, 1.68rem);
  letter-spacing: 0.14em;
}
@media print, screen and (min-width:768px) {
  .l-humnav__link > a {
    font-size: 1.7rem;
  }
}
.l-humnav__link > a .icon {
  margin-right: 0.7em;
}
.l-humnav__tel {
  margin-top: 3em;
}
.l-humnav__tel a {
  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;
  color: var(--color-base);
  font-size: min(7.7333333333vw, 3.48rem);
  line-height: 1;
  letter-spacing: 0.08em;
}
@media print, screen and (min-width:768px) {
  .l-humnav__tel a {
    font-size: 3.3rem;
  }
}
.l-humnav__tel a .icon {
  height: 1.1em;
  aspect-ratio: 26/29;
  margin-right: 0.3em;
}
.l-humnav__tel a .icon svg {
  width: auto;
  height: 100%;
  overflow: visible;
}
.l-humnav__tel a .icon svg * {
  stroke: var(--color-base);
  -webkit-transition: stroke 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: stroke 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.l-humnav__info {
  margin-top: 1.2em;
  font-family: var(--font-honbun);
  font-size: min(3.4666666667vw, 1.56rem);
  line-height: 1.1538461538;
  letter-spacing: 0.05em;
  color: var(--color-base);
}
@media print, screen and (min-width:768px) {
  .l-humnav__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.3rem;
  }
}
.l-humnav__info-title {
  padding: 0 1.5em;
  margin-bottom: 0.5em;
  display: inline-block;
  border-left: 1px solid var(--color-base);
  border-right: 1px solid var(--color-base);
}
@media print, screen and (min-width:768px) {
  .l-humnav__info-title {
    margin-bottom: 0;
    margin-right: 1.5em;
  }
}
.l-humnav__under-box {
  position: relative;
  margin-top: auto;
}
.l-humnav__privacy a {
  font-family: var(--font-honbun);
  font-size: 1.15rem;
  color: var(--color-base);
}
@media print, screen and (min-width:768px) {
  .l-humnav__privacy {
    display: inline-block;
  }
}
.l-humnav__copyright {
  margin-top: 0.5em;
  font-size: 1rem;
  font-family: var(--font-honbun);
  color: var(--color-base);
}
@media print, screen and (min-width:768px) {
  .l-humnav__copyright {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
  }
}

.l-humnav-main__list > a {
  color: var(--color-base);
}

.l-humnav-main__list {
  margin-bottom: 2.2em;
}
.l-humnav-main__list > a {
  display: block;
}
.l-humnav-main__list > a .en {
  display: block;
  font-size: min(2.9333333333vw, 1.32rem);
  line-height: 1.8181818182;
  letter-spacing: 0.12em;
}
@media print, screen and (min-width:768px) {
  .l-humnav-main__list > a .en {
    font-size: min(11px, 1.2vw);
  }
}
.l-humnav-main__list > a .jp {
  display: block;
  font-family: var(--font-midashi);
  font-size: min(4.8vw, 2.16rem);
  line-height: 1.7222222222;
  letter-spacing: 0.18em;
}
@media print, screen and (min-width:768px) {
  .l-humnav-main__list > a .jp {
    font-size: min(21px, 2.2vw);
    letter-spacing: 0.22em;
    line-height: 2;
  }
}

.l-humnav-sub {
  margin-top: 3em;
}
.l-humnav-sub__list {
  margin-top: 1.5em;
}
.l-humnav-sub__list > a {
  font-family: var(--font-honbun);
  font-size: 1.15rem;
  color: var(--color-base);
  display: block;
}
@media print, screen and (min-width:768px) {
  .l-humnav-sub__list > a {
    font-size: min(14px, 1.5vw);
  }
}

/*
 * # 	SNS
 */
.l-sns {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.l-sns__list {
  padding: 1.5em 1em;
}
.l-sns--humnav {
  margin-right: -8px;
}
@media print, screen and (min-width:768px) {
  .l-sns--footer .twitter {
    /*PCのみ*/
    width: 29px;
  }
}
@media print, screen and (min-width:768px) {
  .l-sns--footer .facebook {
    /*PCのみ*/
    width: 15px;
  }
}
.l-sns--footer .instagram {
  width: 24px;
}

.l-fix-instagram {
  padding: 25px;
  display: block;
  z-index: 900;
  position: fixed;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.05s;
  transition: all 0.05s;
}

.l-main {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.l-footer {
  position: relative;
  padding: 13.3333333333vw 0 8vw;
  color: #fff;
  background-color: #000;
}
@media print, screen and (min-width:768px) {
  .l-footer {
    padding: 55px 0 54px;
  }
}
.l-footer a {
  color: inherit;
}
@media print, screen and (min-width:768px) {
  .l-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.l-footer__logo {
  margin-bottom: 8vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media print, screen and (min-width:768px) {
  .l-footer__logo {
    margin-bottom: 2em;
  }
}
.l-footer__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-footer__logo a img {
  width: 41.0666666667vw;
}
@media print, screen and (min-width:768px) {
  .l-footer__logo a img {
    width: min(195px, 19.5vw);
  }
}
.l-footer__logo a span.main {
  font-size: 9.3333333333vw;
  line-height: 1;
  white-space: nowrap;
  line-height: 1.3;
  margin-right: 1.5rem;
}
@media print, screen and (min-width:768px) {
  .l-footer__logo a span.main {
    font-size: 3.3rem;
  }
}
.l-footer__logo a span.sub {
  font-family: var(--font-midashi);
  font-size: 3.7333333333vw;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  line-height: 1.3;
  white-space: nowrap;
}
@media print, screen and (min-width:768px) {
  .l-footer__logo a span.sub {
    font-size: 1.7rem;
    letter-spacing: 0.1em;
  }
}
@media print, screen and (min-width: 1300px) {
  .l-footer-nav-area {
    margin-top: 0.5em;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media print, screen and (min-width:768px) {
  .l-footer-nav {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.l-footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(3.4666666667vw, 1.56rem);
  line-height: 2.1538461538;
  font-family: var(--font-honbun);
}
@media print, screen and (min-width:768px) {
  .l-footer-nav__list {
    font-size: min(14px, 1.5vw);
    line-height: 1.9285714286;
  }
}
.l-footer-nav__list::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 1em;
  background: #fff;
  margin: 0 1.5em;
}
@media print, screen and (min-width:768px) {
  .l-footer-nav__list::after {
    height: 0.8rem;
    margin: 0 1.5rem;
  }
}
.l-footer-nav__list:last-child::after {
  display: none;
}
.l-footer-nav__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer-nav--sub .l-footer-nav__list:not(:last-child) {
  margin-right: 1.2em;
}
.l-footer-nav--sub .l-footer-nav__list::after {
  display: none;
}
.l-footer__copyright {
  margin-top: 16vw;
  text-align: left;
  font-size: 1.15rem;
  width: 100%;
  font-family: var(--font-honbun);
}
@media print, screen and (min-width:768px) {
  .l-footer__copyright {
    margin-top: 30px;
  }
}
@media print, screen and (min-width:1100px) {
  .l-footer__copyright {
    text-align: right;
  }
}

.l-page-wrap {
  margin-top: 14.6666666667vw;
  margin-bottom: 34.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .l-page-wrap {
    margin-top: 130px;
    margin-bottom: 115px;
  }
}

/*--------------------------------------------------------------
  横スクロールエリア（汎用コンポーネント）
--------------------------------------------------------------*/
.l-scroll-area {
  position: relative;
  overflow-x: auto;
}
@media only screen and (max-width:767px) {
  .l-scroll-area {
    padding: 0 6.6666666667vw;
    width: 100%;
  }
}
.l-scroll-area__content {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-main-light) transparent;
}
@media only screen and (max-width:767px) {
  .l-scroll-area__content {
    padding: 0 0 20px;
    margin-right: -6.6666666667vw;
  }
}
.l-scroll-area__content::-webkit-scrollbar {
  height: 8px;
}
.l-scroll-area__content::-webkit-scrollbar-track {
  background: transparent;
}
.l-scroll-area__content::-webkit-scrollbar-thumb {
  background-color: var(--color-main-light);
  border-radius: 4px;
}
.l-scroll-area__table-wrapper {
  width: 100%;
}
@media only screen and (max-width:767px) {
  .l-scroll-area__table-wrapper {
    padding-right: 6.6666666667vw;
    min-width: 160vw;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
}
.l-scroll-area__table-wrapper table {
  width: 100%;
}

/*------------------------------------------------------
 2カラムボックス（左：文字、右：写真）
-------------------------------------------------------*/
.p-media-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border: 1px solid var(--color-main);
  background-color: #ffffff;
  /*奇数の要素*/
}
@media only screen and (max-width:767px) {
  .p-media-card {
    display: block;
  }
}
.p-media-card + .p-media-card {
  margin-top: 16vw;
}
@media print, screen and (min-width:768px) {
  .p-media-card + .p-media-card {
    margin-top: min(88px, 8.8vw);
  }
}
@media print, screen and (min-width:768px) {
  .p-media-card:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media print, screen and (min-width:768px) {
  .p-media-card__img {
    width: 50%;
    height: min(414px, 41.4vw);
  }
}
.p-media-card__img img {
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .p-media-card__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.p-media-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .p-media-card__content {
    padding: 7.2vw 6.6666666667vw 9.3333333333vw;
  }
}
@media print, screen and (min-width:768px) {
  .p-media-card__content {
    padding: 0 min(65px, 3.5vw);
  }
}
.p-media-card__header {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width:767px) {
  .p-media-card__header {
    height: auto;
  }
}
.p-media-card__title {
  color: #000000;
}
@media print, screen and (min-width:768px) {
  .p-media-card__title {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.p-media-card__title .jp {
  color: inherit;
}
@media only screen and (max-width:767px) {
  .p-media-card__title .jp {
    margin-top: 0.3em;
  }
}
@media print, screen and (min-width:768px) {
  .p-media-card__title .jp {
    margin-top: 0.3em;
    font-size: min(25px, 2.5vw);
    line-height: 1.36;
  }
}
.p-media-card__note {
  margin-top: 1em;
  color: #3e3e3e;
  font-family: var(--font-honbun);
  font-size: min(3.2vw, 1.44rem);
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width:768px) {
  .p-media-card__note {
    font-size: min(15px, 1.5vw);
  }
}
.p-media-card__price {
  margin-top: 0.5em;
  font-size: min(7.4666666667vw, 3.36rem);
  line-height: 1;
  letter-spacing: 0.07em;
  color: var(--color-main);
}
@media print, screen and (min-width:768px) {
  .p-media-card__price {
    margin-top: 0.3em;
    font-size: min(33px, 3.3vw);
  }
}
.p-media-card__price .yen {
  margin-left: 0.2em;
  display: inline-block;
  vertical-align: middle;
  font-size: 64.2857142857%;
}
.p-media-card__item {
  margin-top: 5.3333333333vw;
  padding-top: 2.6666666667vw;
  border-top: 1px solid #707070;
  font-family: var(--font-honbun);
}
@media print, screen and (min-width:768px) {
  .p-media-card__item {
    margin-top: 20px;
    padding-top: 10px;
  }
}
.p-media-card__item-title {
  color: #000000;
  font-size: min(4vw, 1.8rem);
  font-weight: 300;
  line-height: 2.3333333333;
  letter-spacing: 0.07em;
}
@media print, screen and (min-width:768px) {
  .p-media-card__item-title {
    font-size: min(16px, 1.6vw);
  }
}
.p-media-card__item-text {
  color: #3e3e3e;
  font-size: min(3.7333333333vw, 1.68rem);
  font-weight: 300;
  line-height: 1.5714285714;
  letter-spacing: 0.07em;
}
@media print, screen and (min-width:768px) {
  .p-media-card__item-text {
    font-size: min(15px, 1.5vw);
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}
.p-media-card__link {
  width: 100%;
  margin-top: 26.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-media-card__link {
    margin-top: min(100px, 10vw);
  }
}

/*------------------------------------------------------
 よくある質問
-------------------------------------------------------*/
.p-faq__inner {
  max-width: 780px;
}

.p-faq-qa {
  text-align: left;
  padding-bottom: min(25px, 6.6666666667vw);
  margin-top: min(25px, 6.6666666667vw);
  margin-bottom: min(25px, 6.6666666667vw);
  border-bottom: 1px solid #707070;
}
@media print, screen and (min-width:768px) {
  .p-faq-qa {
    padding-bottom: min(30px, 8vw);
    margin-top: min(30px, 8vw);
    margin-bottom: min(30px, 8vw);
  }
}
.p-faq-qa:first-child {
  margin-top: 0;
}
.p-faq-qa__question {
  padding-right: calc(1em + 10px);
  position: relative;
  cursor: pointer;
  font-size: min(5.0666666667vw, 2.28rem);
  font-weight: 300;
  line-height: 1.2631578947;
  letter-spacing: 0.06em;
}
@media print, screen and (min-width:768px) {
  .p-faq-qa__question {
    padding-right: calc(4em + 10px);
    font-size: min(21px, 2.1vw);
    letter-spacing: 0.14em;
  }
}
.p-faq-qa__question-main {
  position: relative;
  padding-left: calc(min(25px, 6.6666666667vw) + 1.2rem);
  min-height: min(25px, 6.6666666667vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width:768px) {
  .p-faq-qa__question-main {
    min-height: min(50px, 5vw);
    padding-left: calc(min(50px, 5vw) + 1.2rem);
  }
}
.p-faq-qa__question-main:before {
  content: "Q";
  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;
  height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: 0;
  top: -0.05em;
  color: var(--color-main-light);
  font-size: min(25px, 6.6666666667vw);
  line-height: 1;
}
@media print, screen and (min-width:768px) {
  .p-faq-qa__question-main:before {
    width: min(50px, 5vw);
    font-size: min(30px, 3vw);
  }
}
.p-faq-qa__question-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 16px;
  height: 100%;
}
.p-faq-qa__question-toggle::before, .p-faq-qa__question-toggle::after {
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  background-color: var(--color-main);
  opacity: 0.8;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-faq-qa__question-toggle::before {
  width: 0.8em;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-faq-qa__question-toggle::after {
  width: 2px;
  height: 0.8em;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-faq-qa__answer {
  position: relative;
  display: none;
  -webkit-transition: height 300ms ease;
  transition: height 300ms ease;
  overflow: hidden;
  margin-top: 2em;
  padding-left: calc(min(25px, 6.6666666667vw) + 1.2rem);
}
@media print, screen and (min-width:768px) {
  .p-faq-qa__answer {
    margin-top: 1.2em;
    margin-bottom: 1em;
    padding-left: calc(min(50px, 5vw) + 1.2rem);
  }
}
.p-faq-qa__answer:before {
  content: "A";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-base);
  opacity: 0.8;
  font-size: min(25px, 6.6666666667vw);
  line-height: 1;
}
@media print, screen and (min-width:768px) {
  .p-faq-qa__answer:before {
    top: 0.1em;
    width: min(50px, 5vw);
    font-size: min(30px, 3vw);
  }
}
.p-faq-qa__answer-text {
  font-size: min(3.7333333333vw, 1.68rem);
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width:768px) {
  .p-faq-qa__answer-text {
    font-size: min(18px, 1.8vw);
    line-height: 2.1875;
    letter-spacing: 0.03em;
  }
}
.p-faq-qa.is-active .p-faq-qa__question-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.p-faq-qa.is-active .p-faq-qa__question-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.p-faq-qa.is-active .p-faq-qa__answer {
  height: auto;
  display: block;
}

/*--------------------------------------------------------------
  Table
--------------------------------------------------------------*/
/*テーブル（1種類目）*/
.p-table {
  width: 100%;
  border-collapse: collapse;
  /* シンプルテーブル------------ */
  /* 1行目の色を変えるテーブル------------ */
  /* ラインが横だけのテーブル------------ */
}
@media print, screen and (min-width:768px) {
  .p-table {
    table-layout: fixed;
  }
}
.p-table th,
.p-table td {
  /*文字スタイル*/
  text-align: center;
  font-family: var(--font-honbun);
  font-size: min(4vw, 1.8rem);
  line-height: 1.7333333333;
  letter-spacing: 0.03em;
  /*余白などレイアウト*/
  padding: 1.6em 1.5em;
  vertical-align: middle;
}
@media print, screen and (min-width:768px) {
  .p-table th,
  .p-table td {
    /*PCのみ*/
    font-size: min(16px, 1.6vw);
    padding: 1.75em 1em 1.45em;
  }
}
.p-table--01 th,
.p-table--01 td {
  /*カラー*/
  border: 1px solid var(--color-main-light);
}
.p-table--01 thead {
  /*最初の行*/
}
.p-table--01 thead th {
  /*最初のマス*/
}
.p-table--01 thead th:first-child {
  background-color: transparent;
  border-top: none;
  border-left: none;
}
.p-table--01 th {
  /*文字スタイル*/
  background-color: var(--color-main);
  color: #fff;
}
.p-table--02 th,
.p-table--02 td {
  /*カラー*/
  border: 1px solid var(--color-main-light);
}
.p-table--02 thead {
  /*最初の行*/
}
.p-table--02 thead th {
  background-color: var(--color-main);
  color: #fff;
}
.p-table--03 th,
.p-table--03 td {
  /*カラー*/
  border-top: 1px solid var(--color-main-light);
  border-bottom: 1px solid var(--color-main-light);
}
.p-table--03 thead {
  /*最初の行*/
}
.p-table--03 thead th {
  border-top: none;
  background-color: var(--color-main-light02);
  /*最初のマス*/
  /*1番目・2番目のマス以外*/
}
.p-table--03 thead th:first-child {
  background-color: transparent;
  border-top: none;
  border-left: none;
}
.p-table--03 thead th:not(:first-child):not(:nth-child(2)) {
  position: relative;
}
.p-table--03 thead th:not(:first-child):not(:nth-child(2))::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 auto 0; /* top right bottom left */
  width: 6px;
  height: calc(100% - 1px);
  background: var(--color-bg);
}

/*バッジ--------*/
.p-badge {
  margin-top: 9.6vw;
  position: relative;
  text-align: center;
  max-width: 726px;
}
@media print, screen and (min-width:768px) {
  .p-badge {
    margin-top: 3rem;
  }
}
.p-badge__badge {
  position: absolute;
  top: -6.7vw;
  left: -3.2vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 21.8666666667vw;
  height: 21.8666666667vw;
  border-radius: 50%;
  background: var(--color-main-gradient);
  color: #fff;
  font-size: 3.2vw;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1;
  z-index: 5;
}
@media print, screen and (min-width:768px) {
  .p-badge__badge {
    font-size: min(21px, 2.1vw);
    letter-spacing: 0.03em;
    width: min(144px, 14.4vw);
    height: min(144px, 14.4vw);
    top: max(-44px, -4.4vw);
    left: max(-41px, -4.1vw);
  }
}
.p-badge__badge::before {
  content: "";
  position: absolute;
  top: 4%;
  left: 4%;
  width: 92%;
  height: 92%;
  border-radius: 50%;
  border: 1px solid var(--color-main-light02);
}
.p-badge__text-area {
  padding: 12vw 10% 13%;
  background: #fff;
  border: 1px solid var(--color-main);
}
@media print, screen and (min-width:768px) {
  .p-badge__text-area {
    padding: 6.8% 1em 7%;
  }
}
.p-badge__title {
  margin: 0 auto 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid var(--color-main);
  font-size: min(4.8vw, 2.16rem);
  letter-spacing: 0.07em;
  color: var(--color-main);
}
@media print, screen and (min-width:768px) {
  .p-badge__title {
    margin-bottom: 1.5em;
    font-size: min(21px, 2.1vw);
    letter-spacing: 0.1em;
  }
}
.p-badge__text {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  font-size: min(4vw, 1.8rem);
  line-height: 2.2666666667;
  letter-spacing: 0.01em;
}
@media print, screen and (min-width:768px) {
  .p-badge__text {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: min(15px, 1.5vw);
  }
}
.p-badge__text + .p-badge__text {
  margin-top: 0.4em;
}

/*
お食事プラン

2カラム、3カラムのセクションを作成するためのスタイル
*/
.p-plan {
  margin-top: 21.3333333333vw;
  margin-bottom: 21.3333333333vw;
}
@media print, screen and (min-width:768px) {
  .p-plan {
    margin-top: 160px;
    margin-bottom: 160px;
  }
}
.p-plan__title {
  margin-bottom: 14.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-plan__title {
    margin-bottom: 80px;
  }
}
.p-plan__inner {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: minmax(auto, -webkit-max-content);
  grid-auto-rows: minmax(auto, max-content);
  grid-gap: 16vw 0;
}
@media print, screen and (min-width:768px) {
  .p-plan__inner {
    max-width: 938px;
    -ms-grid-columns: 1fr min(53px, 5.6503198294%) 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 64px min(53px, 5.6503198294%);
  }
}
.p-plan__link {
  margin-top: 10.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-plan__link {
    margin-top: 80px;
  }
}

/*共通*/
.p-plan-sec-wrap {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: minmax(auto, -webkit-max-content);
  grid-auto-rows: minmax(auto, max-content);
  grid-gap: 16vw 0;
}
@media print, screen and (min-width:768px) {
  .p-plan-sec-wrap {
    max-width: 938px;
  }
}
.p-plan-sec-wrap + .p-plan-sec-wrap {
  margin-top: 21.3333333333vw;
}
@media print, screen and (min-width:768px) {
  .p-plan-sec-wrap + .p-plan-sec-wrap {
    margin-top: 80px;
  }
}

/*2カラム*/
@media print, screen and (min-width:768px) {
  .p-plan-sec-wrap--2column {
    -ms-grid-columns: 1fr min(53px, 5.6503198294%) 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 64px min(53px, 5.6503198294%);
  }
}

/*3カラム*/
@media print, screen and (min-width:768px) {
  .p-plan-sec-wrap--3column {
    -ms-grid-columns: minmax(0, 1fr) min(30px, 3.1982942431%) minmax(0, 1fr) min(30px, 3.1982942431%) minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 64px min(30px, 3.1982942431%);
  }
}

.p-plan-sec {
  position: relative;
  margin: 0;
  width: 100%;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media print, screen and (min-width:768px) {
  .p-plan-sec {
    margin: 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-width: 0;
    width: 100%;
  }
}
.p-plan-sec__img {
  margin-bottom: 6.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-plan-sec__img {
    margin-bottom: 30px;
  }
}
.p-plan-sec__img img {
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .p-plan-sec__title {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media only screen and (max-width:767px) {
  .p-plan-sec__title .jp {
    margin-top: 0.3em;
  }
}
@media print, screen and (min-width:768px) {
  .p-plan-sec__title .jp {
    margin-top: 0.3em;
    font-size: min(25px, 2.5vw);
    line-height: 1.36;
  }
}
.p-plan-sec__price {
  margin-top: 0.5em;
  font-size: min(7.4666666667vw, 3.36rem);
  line-height: 1;
  letter-spacing: 0.07em;
  color: var(--color-main);
}
@media print, screen and (min-width:768px) {
  .p-plan-sec__price {
    margin-top: 0.3em;
    font-size: min(33px, 3.3vw);
  }
}
.p-plan-sec__price .yen {
  margin-left: 0.2em;
  display: inline-block;
  vertical-align: middle;
  font-size: 64.2857142857%;
}
.p-plan-sec__item {
  margin-top: 5.3333333333vw;
  padding-top: 2.6666666667vw;
  border-top: 1px solid #707070;
  font-family: var(--font-honbun);
  color: var(--color-base);
}
@media print, screen and (min-width:768px) {
  .p-plan-sec__item {
    margin-top: 20px;
    padding-top: 10px;
  }
}
.p-plan-sec__item-title {
  font-size: min(4vw, 1.8rem);
  font-weight: 300;
  line-height: 2.3333333333;
  letter-spacing: 0.07em;
}
@media print, screen and (min-width:768px) {
  .p-plan-sec__item-title {
    font-size: min(16px, 1.6vw);
  }
}
.p-plan-sec__item-text {
  font-size: min(3.7333333333vw, 1.68rem);
  font-weight: 300;
  line-height: 1.5714285714;
  letter-spacing: 0.07em;
}
@media print, screen and (min-width:768px) {
  .p-plan-sec__item-text {
    font-size: min(15px, 1.5vw);
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}

/* 当店を選ぶ3つの理由 */
.p-reason__title {
  margin-bottom: 14.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-reason__title {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width:767px) {
  .p-reason__title .jp {
    font-size: min(6.1333333333vw, 2.76rem);
    font-weight: 300;
    line-height: 1.4347826087;
    letter-spacing: 0.14em;
  }
}

.p-reason-sec {
  position: relative;
  margin-bottom: 16vw;
}
@media print, screen and (min-width:768px) {
  .p-reason-sec {
    margin-bottom: 150px;
  }
}
.p-reason-sec__img {
  margin-bottom: 10.6666666667vw;
}
@media print, screen and (min-width:768px) {
  .p-reason-sec__img {
    /*PCのみ*/
    margin-bottom: 0;
    position: absolute;
    top: 0;
    height: 31.171875vw;
    max-height: 762px;
  }
}
@media only screen and (max-width:767px) {
  .p-reason-sec__img img {
    width: 100%;
  }
}
@media print, screen and (min-width:768px) {
  .p-reason-sec__img img {
    /*PCのみ*/
    height: 100%;
    width: auto;
  }
}
@media print, screen and (min-width:768px) {
  .p-reason-sec__inner {
    /*PCのみ*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 31.171875vw;
    max-height: 762px;
  }
}
.p-reason-sec__textarea {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media print, screen and (min-width:768px) {
  .p-reason-sec__textarea {
    /*PCのみ*/
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 310px;
    width: 38.4%;
    padding: 0;
  }
}
.p-reason-sec__text {
  margin-top: 1.2em;
  font-family: var(--font-honbun);
  font-size: min(3.7333333333vw, 1.68rem);
  line-height: 1.9285714286;
  letter-spacing: 0.1em;
}
@media print, screen and (min-width:768px) {
  .p-reason-sec__text {
    margin-top: 1.65em;
    font-size: min(15px, 1.5vw);
    line-height: 2.1;
  }
}
@media only screen and (max-width:767px) {
  .p-reason-sec:nth-of-type(odd) .p-reason-sec__img {
    margin-left: 6.65vw;
  }
}
@media print, screen and (min-width:768px) {
  .p-reason-sec:nth-of-type(odd) .p-reason-sec__img {
    right: 0;
  }
}
@media print, screen and (min-width:768px) {
  .p-reason-sec:nth-of-type(odd) .p-reason-sec__textarea {
    /*タブレット・PCのみ*/
    margin-right: auto;
  }
}
@media only screen and (max-width:767px) {
  .p-reason-sec:nth-of-type(even) .p-reason-sec__img {
    margin-right: 6.65vw;
  }
}
@media print, screen and (min-width:768px) {
  .p-reason-sec:nth-of-type(even) .p-reason-sec__img {
    left: 0;
  }
}
@media print, screen and (min-width:768px) {
  .p-reason-sec:nth-of-type(even) .p-reason-sec__textarea {
    /*タブレット・PCのみ*/
    margin-left: auto;
  }
}

/*
--------------------------------------------------------------
  フロー（流れ）
--------------------------------------------------------------
*/
.p-flow-list {
  max-width: 760px;
}
@media only screen and (max-width:767px) {
  .p-flow-list {
    padding-left: 4.8vw;
    padding-right: 4.8vw;
  }
}
@media print, screen and (min-width:768px) {
  .p-flow-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-flow-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1.6vw;
  padding-bottom: 13.3333333333vw;
  margin-left: 5px;
  padding-left: 12.2666666667vw;
  text-align: left;
  /*最初だけ*/
  /*最後だけ*/
}
@media only screen and (max-width:767px) {
  .p-flow-item {
    margin-bottom: 10.6666666667vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media print, screen and (min-width:768px) {
  .p-flow-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: min(36px, 3.6vw);
    padding-bottom: 3.5rem;
    margin-left: min(36px, 3.6vw);
  }
}
.p-flow-item::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 16vw);
  top: 16vw;
  left: -1px;
  z-index: 0;
  background-color: #707070;
}
@media print, screen and (min-width:768px) {
  .p-flow-item::after {
    height: calc(100% - min(49px, 4.9vw) * 2);
    top: calc(50% + min(32px, 3.2vw));
  }
}
.p-flow-item:last-child {
  padding-bottom: 0;
}
.p-flow-item:last-child::after {
  display: none;
}
.p-flow-item__step {
  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;
  position: absolute;
  top: 0;
  left: -5.55%;
  margin-top: -0.2em;
  margin-bottom: 1em;
  color: var(--color-main);
  font-size: 3.4666666667vw;
  line-height: 1;
}
@media print, screen and (min-width:768px) {
  .p-flow-item__step {
    top: calc(50% - 1.75rem);
    left: -4.85%;
    font-size: min(15px, 1.5vw);
    letter-spacing: 0.1em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media only screen and (max-width:767px) {
  .p-flow-item__step .num {
    display: block;
    font-size: 6.6666666667vw;
  }
}
@media print, screen and (min-width:768px) {
  .p-flow-item__step .num {
    margin-left: 0.25em;
    display: inline-block;
    font-size: min(29px, 2.9vw);
    letter-spacing: normal;
  }
}
@media only screen and (max-width:767px) {
  .p-flow-item__photo {
    width: 100%;
    margin-top: 4vw;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media print, screen and (min-width:768px) {
  .p-flow-item__photo {
    margin-left: min(43px, 4.3vw);
    width: min(164px, 16.4vw);
  }
}
.p-flow-item__photo img {
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .p-flow-item__textarea {
    margin-left: min(60px, 6vw);
  }
}
.p-flow-item__title {
  margin-bottom: 0.5em;
  font-size: 5.0666666667vw;
  letter-spacing: 0.06em;
}
@media print, screen and (min-width:768px) {
  .p-flow-item__title {
    margin-bottom: 0.4em;
    font-size: min(23px, 2.3vw);
    letter-spacing: 0.14em;
  }
}
.p-flow-item__text {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  font-family: var(--font-honbun);
  font-size: 3.7333333333vw;
  line-height: 1.9285714286;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width:768px) {
  .p-flow-item__text {
    font-size: min(15px, 1.5vw);
    line-height: 2.2666666667;
    letter-spacing: 0.05em;
  }
}

/*
--------------------------------------------------------------
  お客様の声スライド
--------------------------------------------------------------
*/
.p-voice-slide {
  position: relative;
  /*ナビゲーションボタン -----------*/
  /*写真なし ver-------------*/
}
@media print, screen and (min-width:768px) {
  .p-voice-slide {
    padding-top: min(28.5px, 2.85vw);
    padding-left: 12px;
    padding-right: 12px;
    margin-left: -12px;
    margin-right: -12px;
    overflow: hidden;
  }
}
.p-voice-slide__wrap {
  position: relative;
  z-index: 1;
}
.p-voice-slide__wrapper {
  position: relative;
  background: #ffffff;
  border: 1px solid #dedede;
  padding: 7.3333333333vw 6% 5%;
}
@media print, screen and (min-width:768px) {
  .p-voice-slide__wrapper {
    padding-top: min(28.5px, 2.85vw);
  }
}
.p-voice-slide__icon {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  outline: 1px solid var(--color-main);
  border-radius: 50%;
  aspect-ratio: 1;
  width: 14.6666666667vw;
  height: auto;
}
@media print, screen and (min-width:768px) {
  .p-voice-slide__icon {
    width: min(55px, 5.5vw);
    height: auto;
  }
}
.p-voice-slide__icon img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.p-voice-slide__name {
  margin-top: 0.8em;
  margin-bottom: 0.3em;
  color: #707070;
  font-size: 3.4666666667vw;
  line-height: 1.0769230769;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width:768px) {
  .p-voice-slide__name {
    margin-top: 1em;
    font-size: min(13px, 1.3vw);
  }
}
.p-voice-slide__info {
  margin-top: 0.8em;
  font-family: var(--font-honbun);
  color: #707070;
  font-size: 3.4666666667vw;
  line-height: 1.0769230769;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width:768px) {
  .p-voice-slide__info {
    font-size: min(13px, 1.3vw);
  }
}
.p-voice-slide__title {
  margin-top: 0.7em;
  margin-bottom: 0.8em;
  color: var(--color-main);
  font-size: 5.8666666667vw;
  line-height: 1.4090909091;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width:768px) {
  .p-voice-slide__title {
    margin-bottom: 2em;
    font-size: min(21px, 2.1vw);
    line-height: 1.4285714286;
    letter-spacing: 0.05em;
  }
}
.p-voice-slide__text {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  font-family: var(--font-honbun);
  font-size: 3.7333333333vw;
  line-height: 1.9285714286;
  letter-spacing: 0.05em;
  color: #000;
}
@media print, screen and (min-width:768px) {
  .p-voice-slide__text {
    font-size: min(13.5px, 1.35vw);
    line-height: 1.7777777778;
    letter-spacing: 0.05em;
  }
}
.p-voice-slide .swiper-button-prev,
.p-voice-slide .swiper-button-next {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  text-indent: -9999px;
  background: var(--color-main);
}
@media print, screen and (min-width:768px) {
  .p-voice-slide .swiper-button-prev,
  .p-voice-slide .swiper-button-next {
    top: calc(min(28.5px, 2.85vw) + 50%);
  }
}
.p-voice-slide .swiper-button-prev {
  left: -12px;
}
@media print, screen and (min-width:768px) {
  .p-voice-slide .swiper-button-prev {
    left: 0;
  }
}
.p-voice-slide .swiper-button-prev::before {
  content: "";
  display: block;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateX(25%) rotate(45deg);
          transform: translateX(25%) rotate(45deg);
}
.p-voice-slide .swiper-button-next {
  right: -12px;
}
@media print, screen and (min-width:768px) {
  .p-voice-slide .swiper-button-next {
    right: 0;
  }
}
.p-voice-slide .swiper-button-next::before {
  content: "";
  display: block;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
.p-voice-slide--no-photo {
  padding-top: 0;
}
.p-voice-slide--no-photo .p-voice-slide__wrapper {
  padding-top: 8%;
}
@media print, screen and (min-width:768px) {
  .p-voice-slide--no-photo .p-voice-slide__wrapper {
    padding-top: 5.5%;
  }
}
.p-voice-slide--no-photo .p-voice-slide__icon {
  display: none;
}
.p-voice-slide--no-photo .p-voice-slide__name,
.p-voice-slide--no-photo .p-voice-slide__info {
  margin-top: 0;
  display: inline-block;
}
.p-voice-slide--no-photo .p-voice-slide__name + .p-voice-slide__info {
  margin-left: 0.5em;
}
.p-voice-slide--no-photo .p-voice-slide__title {
  margin-top: 0.15em;
}
.p-voice-slide--no-photo .swiper-button-prev,
.p-voice-slide--no-photo .swiper-button-next {
  top: 50%;
}
.p-voice-slide__link {
  margin-top: 16vw;
}
@media print, screen and (min-width:768px) {
  .p-voice-slide__link {
    margin-top: min(80px, 8vw);
  }
}

/*
--------------------------------------------------------------
  お客様の声スライド（スライドなしver）
--------------------------------------------------------------
*/
.p-voice-no-slide-box .p-voice-slide:not(:first-child) {
  margin-top: 16vw;
}
@media print, screen and (min-width:768px) {
  .p-voice-no-slide-box .p-voice-slide:not(:first-child) {
    margin-top: min(33px, 3.3vw);
  }
}

/*
Googleカレンダー埋め込み
*/
.p-calendar iframe {
  width: 100%;
}

/*
Googleカレンダー（APIで出力したもの）
*/
#calendar {
  font-size: 1.15rem;
  font-family: var(--font-honbun);
}
#calendar .fc-h-event {
  background-color: var(--color-main);
  border-color: var(--color-main);
  font-weight: 600;
}
#calendar .fc-daygrid-event-dot {
  border-color: var(--color-main);
}
#calendar .fc-button-primary {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
#calendar .fc-daygrid-day.fc-day-today {
  background-color: var(--color-main-light02);
}
#calendar .fc-daygrid-dot-event {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#calendar .fc-event-title {
  white-space: normal;
}
@media only screen and (max-width:767px) {
  #calendar .fc-event-title {
    line-height: 1.2;
  }
}