@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #1A1A1A;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

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

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F3;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F3;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F3;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@-webkit-keyframes decoSway {

  0% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }

  100% {
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
}
@keyframes decoSway {

  0% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }

  100% {
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 16px;
}

button {
  color: #1A1A1A;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #1A1A1A;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/

/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: auto;
}

form button[type=submit]:hover, form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

form button[type=submit] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover, textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: .625em;
  height: .625em;
  content: '';
}

input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.875em;
  line-height: 1.5;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: .25em solid #0C4A6E;
  border-bottom: .25em solid #0C4A6E;
  width: .8125em;
  height: 1.625em;
  content: '';
}

input[type=checkbox]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus-visible + span::before {
  outline: none;
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  padding: .4em 2.4em .4em .8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

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

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

/************************************************************************
* overwrite mfp
************************************************************************/
.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  background-color: #AFA688;
}

.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/************************************************************************
* overwrite mfp end
************************************************************************/

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0C4A6E;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: .5em;
  color: #0C4A6E;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #1A1A1A;
}

#toc_container .toc_list li::before {
  display: none;
  color: #0C4A6E;
}

#toc_container .toc_list li + li {
  margin-top: .5em;
}

#toc_container .toc_list a {
  color: #1A1A1A;
}

.l-body {
  overflow-x: hidden;
}

.l-canvas {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-header {
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-left: 40px;
  padding-left: 2.5rem;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: prop;
  transition-property: prop;
  margin: 0;
  -webkit-box-shadow: 0 .1875rem .375rem rgba(0, 0, 0, .1);
  box-shadow: 0 .1875rem .375rem rgba(0, 0, 0, .1);
  border: 1px solid transparent;
  background-color: #0C4A6E;
  background-image: none;
  padding: .9em 2em;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.c-btn:hover, .c-btn:focus-visible {
  outline: none;
  border-color: currentColor;
  background-color: #fff;
  color: #0C4A6E;
}

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {

  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: '';
}

.c-btn.c-btn--shine:hover, .c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #0C4A6E;
  background-color: #0C4A6E;
  color: #fff;
}

.c-btn.c-btn--shine:hover::before, .c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine .7s;
  animation: shine .7s;
}

@-webkit-keyframes shine {

  100% {
    left: 125%;
  }
}

@keyframes shine {

  100% {
    left: 125%;
  }
}

.c-btn--arrowRight {
  position: relative;

  /* 横線（シャフト） */

  /* 矢印先端：1本の斜め線（シャフトの右端から右上へ） */
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .9em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: currentColor;
  width: 1.05em;
  height: 1px;
  content: '';
}

.c-btn--arrowRight::before {
  position: absolute;
  top: 50%;
  right: .9em;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  background-color: currentColor;
  width: .4em;
  height: 1px;
  content: '';
}

.c-btn--yellow {
  background-color: yellow;
  color: #222;
}

.c-btn--yellow:hover, .c-btn--yellow:focus {
  border-color: yellow;
  color: #222;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(6.9836065574, 43.0655737705, 64.0163934426);
  background-color: #0C4A6E;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #0C4A6E;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid currentColor;
  padding: .2em .3em;
  color: #0C4A6E;
  text-decoration: none;
}

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #0C4A6E;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  background-color: #B7DCD9;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-totop.is-active {
  visibility: visible;
  opacity: .7;
}

.c-totop.is-active:hover, .c-totop.is-active:focus {
  opacity: 1;
}

.p-article__date + .p-article__date {
  margin-left: 20px;
}

.p-article__label {
  margin-left: 20px;
}

.p-article__title {
  margin-top: 31px;
  font-size: 20px;
  line-height: 1.5;
}

.p-article__eyecatch {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  text-align: center;
}

.p-article__body {
  margin-top: 16px;
  border-top: 1px solid #e7e0db;
  border-bottom: 1px solid #e7e0db;
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 15px;
  line-height: 2;
}

.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.5;
}

.p-article__body h1 {
  font-size: 32px;
  font-size: 2rem;
}

.p-article__body h2 {
  background-color: #1A1A1A;
  padding: .3em .4em;
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  border-left: 5px solid #1A1A1A;
  padding-left: .5em;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-article__body h4 {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-article__body h5 {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-article__body .c-beforeBar {
  position: relative;
  padding-left: 1.5em;
}

.p-article__body .c-beforeBar::before {
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #1A1A1A;
  content: 'ー';
}

.p-article__body ul {
  list-style: none;
}

.p-article__body ul li {
  position: relative;
  padding-left: 1em;
}

.p-article__body ul li::before {
  position: absolute;
  left: 0;
  content: '・';
}

.p-article__body table {
  border: none;
  width: 100%;
}

.p-article__body table th,
.p-article__body table td {
  vertical-align: middle;
  border: none;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body table th {
  border-right: 1px solid #1A1A1A;
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.p-article__body * + * {
  margin-top: 25px;
}

.p-article__body *:first-child {
  margin-top: 0;
}

.p-article__body .wp-block-spacer, .p-article__body .wp-block-spacer + * {
  margin-top: 0;
}

.p-article__body p {
  font-weight: 400;
}

.p-article__body ul,
.p-article__body ol {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  margin-left: 10px;
  margin-left: .625rem;
}

.p-article__body ul ul,
.p-article__body ul ol,
.p-article__body ol ul,
.p-article__body ol ol {
  margin-top: 15px;
  margin-top: .9375rem;
  margin-left: 0;
}

.p-article__body ul li,
.p-article__body ol li {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
}

.p-article__body ol {
  padding-left: 1.25em;
}

.p-article__body ol > li:not([class]) {
  list-style: decimal;
}

.p-article__body ol > li:not([class])::marker {
  color: #0C4A6E;
  font-weight: 700;
}

.p-article__body li:not([class]) + li {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-article__body a:not([class]) {
  color: #0C4A6E;
  text-decoration: underline;
}

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #1A1A1A;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-article__body strong,
.p-article__body b {
  font-weight: 700;
}

.p-article__body blockquote,
.p-article__body q {
  position: relative;
  background-color: #F8F8F3;
  padding: 1em 4em;
}

.p-article__body blockquote::before, .p-article__body blockquote::after,
.p-article__body q::before,
.p-article__body q::after {
  position: absolute;
  color: #b2b2b2;
  font: var(--fa-font-solid);
  font-size: 2em;
  font-weight: 900;
}

.p-article__body blockquote::before,
.p-article__body q::before {
  top: 0;
  left: .5em;
  content: '\f10d';
}

.p-article__body blockquote::after,
.p-article__body q::after {
  right: .5em;
  bottom: 0;
  content: '\f10e';
}

.p-article__body q {
  display: inline-block;
}

.p-article__body dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-article__body dt,
.p-article__body dd {
  border-top: 1px solid #e7e0db;
  padding: 20px 10px;
  padding: 1.25rem .625rem;
}

.p-article__body dt:last-of-type,
.p-article__body dd:last-of-type {
  border-bottom: 1px solid #e7e0db;
}

.p-article__body dt {
  width: 33%;
  font-weight: 700;
}

.p-article__body dd {
  width: 67%;
}

.p-article__body pre {
  overflow: auto;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  white-space: pre;
}

.p-article__body .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-article__body .alignleft {
  float: left;
  margin-right: 1em;
}

.p-article__body .alignright {
  float: right;
  margin-left: 1em;
}

.p-article__body .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-article__body .gallery-columns-4 {
  gap: 20px;
}

.p-article__body .gallery-columns-4 > .gallery-item {
  width: calc((100% - 60px) / 4);
}

.p-article__body .gallery-item {
  margin-top: 0;
}

.p-article__body .gallery-icon {
  text-align: center;
}

.p-article__links {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #0C4A6E;
  width: 2em;
  height: 2em;
  color: #0C4A6E;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
}

.p-article__links .post-page-numbers {
  text-decoration: none;
}

.post-page-numbers + .post-page-numbers {
  margin-left: 10px;
}

.post-page-numbers.current {
  background-color: #0C4A6E;
  color: #fff;
}

.post-page-numbers.dots {
  border: none;
}

/************************************************************************
* p-commitment
************************************************************************/
.p-commitment {
  background-color: #F8F8F3;
  background-image: linear-gradient(135deg, rgba(183, 220, 217, .35) 0%, transparent 50%), linear-gradient(315deg, rgba(183, 220, 217, .35) 0%, transparent 50%);
  padding: 60px 0 80px;
  padding: 3.75rem 0 5rem;
}

.p-commitment .l-canvas {
  position: relative;
}

.p-commitment__lead {
  position: absolute;
  top: 36px;
  top: 2.25rem;
  right: 25px;
  right: 1.5625rem;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  opacity: 0;
  margin: 0;
  color: #8E1F0B;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.8;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.p-commitment__lead-num {
  unicode-bidi: -webkit-isolate;
  unicode-bidi: -moz-isolate;
  unicode-bidi: isolate;
  text-orientation: upright;
}

.p-commitment__title {
  -webkit-transform: translateX(-24px);
  transform: translateX(-24px);
  opacity: 0;
  color: #1A1A1A;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: right;
}

.p-commitment__title span {
  position: relative;
}

.p-commitment__title span::before {
  display: inline-block;
  position: absolute;
  bottom: 6px;
  bottom: .375rem;
  left: -50px;
  left: -3.125rem;
  background-color: #8E1F0B;
  width: 38px;
  width: 2.375rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.p-commitment__list {
  gap: 48px;
  gap: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
  margin-top: 2.5rem;
}

/* 1ブロック共通: スマホは画像上・テキスト下、PCは body→img を [img][body] に */
.p-commitment__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;

  /* 2番目: テキスト左・画像右 */
}

.p-commitment__img {
  position: relative;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 570px;
  max-width: 35.625rem;
}

.p-commitment__img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-commitment__body {
  gap: 21px;
  gap: 1.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  padding: 50px 20px 24px;
  padding: 3.125rem 1.25rem 1.5rem;
  width: 100%;
  max-width: 570px;
  max-width: 35.625rem;
}

.p-commitment__body::before, .p-commitment__body::after {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  content: '';
}

.p-commitment__heading {
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  opacity: 0;
  margin: 0;
  color: #1A1A1A;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.8;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.p-commitment__num {
  gap: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  top: -40px;
  top: -2.5rem;
  left: 50%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-transform: translateX(-30%);
  transform: translateX(-30%);
  color: #8E1F0B;
  line-height: 1;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  white-space: nowrap;
}

.p-commitment__num__digit {
  display: inline;
}

.p-commitment__num__dot {
  display: inline;
}

/* 25度：FV・conceptと同じ並び（25の下に度） */
.p-commitment__text-num {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  unicode-bidi: -webkit-isolate;
  unicode-bidi: -moz-isolate;
  unicode-bidi: isolate;
  text-orientation: mixed;
  white-space: nowrap;
}

.p-commitment__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  opacity: 0;
  padding-top: 12px;
  padding-top: .75rem;
  color: #1A1A1A;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 2.1;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.p-commitment__item:nth-of-type(2) .p-commitment__text {
  padding-top: 0;
}

.p-commitment__kerning--01 {
  letter-spacing: -.4em;
}

/************************************************************************
* p-concept
************************************************************************/
.p-concept {
  background-color: #F8F8F3;
  background-image: linear-gradient(160deg, transparent 70%, rgba(183, 220, 217, .49) 100%);
  padding: 60px 0 80px;
  padding: 3.75rem 0 5rem;
}

.p-concept__inner-wrap {
  position: relative;
}

.p-concept__inner-wrap::before {
  aspect-ratio: 573/307;
  position: absolute;
  right: 0;
  bottom: 20%;
  background-image: url('../img/bg-point.webp?v=20260307');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  height: auto;
  pointer-events: none;
  content: '';
}

.p-concept__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: auto;
  max-width: 1320px;
  max-width: 82.5rem;
}

.p-concept__img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: auto;
  margin-left: auto;
  width: 85%;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-concept__img img {
  aspect-ratio: 750/750;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-concept__body {
  position: relative;
  padding: 80px 0;
  padding: 5rem 0;
  width: 100%;
}

.p-concept__content {
  gap: 25px;
  gap: 1.5625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}

.p-concept__heading {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  opacity: 0;
  color: #1A1A1A;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .05em;
  line-height: 1.7;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;

  /* テキストを1つのflexアイテムにまとめ、brでの改行を有効にする */
}

.p-concept__heading .p-concept__heading-text {
  display: block;
}

.p-concept__heading .p-concept__q {
  display: inline-block;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  margin-top: 6px;
  margin-top: .375rem;
}

.p-concept__heading::before {
  position: absolute;
  top: -15px;
  top: -.9375rem;
  right: 25%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  margin-top: 4px;
  margin-top: .25rem;
  background-color: #8E1F0B;
  width: 1px;
  width: .0625rem;
  height: 1em;
  content: '';
}

.p-concept__text-num {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  unicode-bidi: -webkit-isolate;
  unicode-bidi: -moz-isolate;
  unicode-bidi: isolate;
  text-orientation: mixed;
  white-space: nowrap;
}

.p-concept__text {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; /* 縦書きの読む順（右→左）に合わせて1つ目のブロックを右に */
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.p-concept__text-block {
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  opacity: 0;
  color: #1A1A1A;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .05em;
  line-height: 2.15;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.p-concept__text-first-line {
  display: inline-block;
  margin-top: -10px;
  margin-top: -.625rem;
}

.p-concept__btn-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-concept__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #8E1F0B;
  background-color: #fff;
  padding-right: 2.9em;
  padding-left: 2.18em;
  color: #8E1F0B;
}

.p-concept__btn:hover, .p-concept__btn:focus-visible {
  border-color: #8E1F0B;
  background-color: #8E1F0B;
  color: #fff;
}

.p-concept__deco {
  position: absolute;
  right: 20px;
  right: 1.25rem;
  bottom: 24px;
  bottom: 1.5rem;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  z-index: 0;
  -webkit-animation: decosway 2.5s steps(2, end) infinite;
  animation: decoSway 2.5s steps(2, end) infinite;
  width: 89px;
  width: 5.5625rem;
  height: auto;
}

.p-concept__deco img {
  aspect-ratio: 127/176;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-concept__kerning--01 {
  display: inline-block;
  margin-bottom: -.6em;
}

.p-concept__kerning--02 {
  display: inline-block;
  margin-bottom: -.5em;
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  padding: 19px 17.5px;
  padding: 1.1875rem 1.09375rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: none;
  margin-top: 4px;
  min-width: 5em;
  color: #1A1A1A;
  font-size: 8px;
  font-size: .5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: 'MENU';
}

.p-drawer__icon.is-opened::after {
  content: 'CLOSE';
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 25px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 5px;
  background: #1A1A1A;
  width: 100%;
  height: 3px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .25);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  background: #fff;
  padding-top: var(--header-height, 60px);
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  color: #1A1A1A;
  text-align: center;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: .5em;
}

.p-drawer__navLink {
  display: block;
  padding-top: .5em;
  padding-bottom: .5em;
}

.p-footer {
  background-color: #F8F8F3;
  padding: 40px 0;
  padding: 2.5rem 0;
}

.p-footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-footer__left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 40px;
  margin-top: 2.5rem;
  min-width: 0;
  text-align: center;
}

.p-footer__disclaimer {
  margin: 0;
  color: #1A1A1A;
  font-size: 11px;
  font-size: .6875rem;
  line-height: 1.5;
}

.p-footer__disclaimer + .p-footer__disclaimer {
  margin-top: 2px;
  margin-top: .125rem;
}

.p-footer__legal {
  gap: 8px 30px;
  gap: .5rem 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-footer__privacy {
  color: #1A1A1A;
  font-size: 15px;
  font-size: .9375rem;
  text-decoration: underline;
}

.p-footer__privacy:hover, .p-footer__privacy:focus-visible {
  opacity: .8;
}

.p-footer__copy {
  color: #1A1A1A;
  font-size: 12px;
  font-size: .75rem;
}

.p-footer__right {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
}

.p-footer__btn {
  border-color: #8E1F0B;
  background-color: #8E1F0B;
  padding-top: 28px;
  padding-top: 1.75rem;
  padding-right: 2.9em;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
  padding-left: 1.75em;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
}

.p-footer__btn:hover, .p-footer__btn:focus-visible {
  border-color: #8E1F0B;
  background-color: #fff;
  color: #8E1F0B;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 80px 20px 40px;
  padding: 5rem 1.25rem 2.5rem;
  width: 100%;
  height: auto;
  min-height: 100vh;
  overflow: hidden;
}

.p-fv__movie {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.p-fv__movie::after {
  inset: 0;
  position: absolute;
  opacity: .7;
  background-image: url('../img/fv-bg.webp?v=20260307');
  background-position: center;
  background-size: cover;
  pointer-events: none;
  content: '';
}

.p-fv__video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__inner {
  --fv-inner-max: 1029px;
  --fv-inner-max: 64.3125rem;
  --fv-img-width: 414px;
  --fv-img-width: 25.875rem;
  display: grid;
  position: relative;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  z-index: 1;
  width: 100%;
  max-width: var(--fv-inner-max);
}

@-webkit-keyframes fvAppear {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fvAppear {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.p-fv__text--left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  align-self: end;
  opacity: 0;
  -webkit-animation: fvappear .65s ease-out forwards;
  animation: fvAppear .65s ease-out forwards;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  margin: 0;
  margin-left: -10px;
  margin-left: -.625rem;
  padding-left: 0;
  min-width: 0;
  max-height: 100%;
  overflow: hidden;
}

.p-fv__text--right {
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
  opacity: 0;
  -webkit-animation: fvappear .65s ease-out forwards;
  animation: fvAppear .65s ease-out forwards;
  -webkit-animation-delay: .85s;
  animation-delay: .85s;
  padding-right: 37px;
  padding-right: 2.3125rem;
  min-width: 0;
  max-height: 100%;
  overflow: visible;
}

.p-fv__img {
  position: relative;
  opacity: 0;
  z-index: 1;
  -webkit-animation: fvappear .7s ease-out forwards;
  animation: fvAppear .7s ease-out forwards;
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
  width: 40.2332361516%;
  max-width: var(--fv-img-width);
  height: auto;
}

.p-fv__img img {
  aspect-ratio: 414/624;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__text {
  margin-top: -9px;
  margin-top: -.5625rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.p-fv__text--small {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .05em;
  line-height: 2;
}

.p-fv__text--middle {
  font-size: 16px;
  font-size: 1rem;
}

.p-fv__text--large {
  font-size: 25px;
  font-size: 1.5625rem;
}

.p-fv__text-num {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  margin-top: .9375rem;
  line-height: 1.2;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  unicode-bidi: -webkit-isolate;
  unicode-bidi: -moz-isolate;
  unicode-bidi: isolate;
  text-orientation: mixed;
  white-space: nowrap;
}

.p-fv__kerning--01 {
  display: inline-block;
  margin-bottom: 1.12px;
  margin-bottom: .07rem;
}

.p-fv__kerning--02 {
  display: inline-block;
  margin-bottom: 0.64px;
  margin-bottom: .04rem;
}

.p-fv__kerning--03 {
  display: inline-block;
  margin-bottom: -9.44px;
  margin-bottom: -.59rem;
}

.p-fv__kerning--04 {
  display: inline-block;
  margin-bottom: 1.12px;
  margin-bottom: .07rem;
}

.p-fv__kerning--05 {
  display: inline-block;
  margin-bottom: 0.64px;
  margin-bottom: .04rem;
}

.p-fv__kerning--06 {
  display: inline-block;
  margin-bottom: -1.6px;
  margin-bottom: -.1rem;
}

.p-fv__kerning--07 {
  display: inline-block;
  margin-bottom: 0.8px;
  margin-bottom: .05rem;
}

.p-fv__kerning--08 {
  display: inline-block;
  margin-bottom: -1.6px;
  margin-bottom: -.1rem;
}

.p-fv__kerning--09 {
  display: inline-block;
  margin-bottom: 1.44px;
  margin-bottom: .09rem;
}

.p-fv__kerning--10 {
  display: inline-block;
  margin-bottom: -1.76px;
  margin-bottom: -.11rem;
}

.p-fv__kerning--11 {
  display: inline-block;
  margin-bottom: -0.16px;
  margin-bottom: -.01rem;
}

.p-fv__kerning--12 {
  display: inline-block;
  margin-bottom: -1.6px;
  margin-bottom: -.1rem;
}

.p-fv__kerning--13 {
  display: inline-block;
  margin-bottom: 7.84px;
  margin-bottom: .49rem;
}

.p-fv__kerning--14 {
  display: inline-block;
  margin-bottom: -0.16px;
  margin-bottom: -.01rem;
}

.p-fv__kerning--15 {
  display: inline-block;
  margin-bottom: -3.2px;
  margin-bottom: -.2rem;
}

.p-fv__kerning--16 {
  display: inline-block;
  margin-bottom: -0.16px;
  margin-bottom: -.01rem;
}

.p-fv__kerning--17 {
  display: inline-block;
  margin-bottom: -0.16px;
  margin-bottom: -.01rem;
}

.p-fv__kerning--18 {
  display: inline-block;
  margin-bottom: 0.16px;
  margin-bottom: .01rem;
}

.p-fv__kerning--19 {
  display: inline-block;
  margin-bottom: -1.76px;
  margin-bottom: -.11rem;
}

/************************************************************************
* p-header
************************************************************************/
.p-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  background-color: transparent;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  width: 100%;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-header__logo {
  line-height: 1;
}

.p-header__logo-link {
  display: block;
  width: 124px;
  width: 7.75rem;
  height: auto;
}

.p-header__logo-img {
  aspect-ratio: 124/88;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #0C4A6E;
  width: 2em;
  height: 2em;
  color: #0C4A6E;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2;
}

.page-numbers + .page-numbers {
  margin-left: 10px;
  margin-left: .625rem;
}

.page-numbers.current {
  background-color: #0C4A6E;
  color: #fff;
}

.page-numbers.dots {
  border: none;
}

/************************************************************************
* p-product
************************************************************************/
.p-product {
  background-color: #F8F8F3;
  background-image: linear-gradient(160deg, rgb(183, 220, 217) 0%, transparent 50%);
  padding: 60px 0 80px;
  padding: 3.75rem 0 5rem;
}

.p-product__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 1257px;
  max-width: 78.5625rem; /* 1232 + padding25 */
}

.p-product__inner-wrap {
  position: relative;
}

.p-product__inner-wrap::before {
  aspect-ratio: 573/307;
  position: absolute;
  right: 0;
  bottom: 10%;
  background-image: url('../img/bg-point.webp?v=20260307');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  height: auto;
  pointer-events: none;
  content: '';
}

.p-product__img {
  margin-right: auto;
  margin-left: auto;
  background-color: #e7e0db;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  line-height: 0;
}

.p-product__img img {
  aspect-ratio: 750/750;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-product__body {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 70px 20px 0;
  padding: 4.375rem 1.25rem 0;
  width: 100%;
}

.p-product__title {
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  opacity: 0;
  margin: 0;
  color: #1A1A1A;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .05em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.p-product__title::before {
  -webkit-transform: translateX(-50%);
  display: inline-block;
  position: absolute;
  top: -48px;
  top: -48px;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  color: #8E1F0B;
  content: '―';
}

.p-product__text {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  opacity: 0;
  margin: 0;
  min-width: 0;
  color: #1A1A1A;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .04em;
  line-height: 2.125;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.p-product__btn-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-product__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #8E1F0B;
  background-color: #fff;
  padding-right: 2.9em;
  padding-left: 2.18em;
  color: #8E1F0B;
}

.p-product__btn:hover, .p-product__btn:focus-visible {
  border-color: #8E1F0B;
  background-color: #8E1F0B;
  color: #fff;
}

/************************************************************************
* p-scene
************************************************************************/
.p-scene {
  background-image: url('../img/scene-bg.webp?v=20260307');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 130px;
  padding: 3.75rem 0 8.125rem;
}

.p-scene__head {
  position: relative;
}

.p-scene__title {
  -webkit-transform: translateX(-24px);
  transform: translateX(-24px);
  opacity: 0;
  padding-left: 50px;
  padding-left: 3.125rem;
  color: #1A1A1A;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: left;
}

.p-scene__title span {
  position: relative;
}

.p-scene__title span::before {
  display: inline-block;
  position: absolute;
  bottom: 6px;
  bottom: .375rem;
  left: -50px;
  left: -3.125rem;
  background-color: #8E1F0B;
  width: 38px;
  width: 2.375rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.p-scene__deco {
  position: absolute;
  top: 40px;
  top: 2.5rem;
  right: 8px;
  right: .5rem;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-animation: decosway 2.5s steps(2, end) infinite;
  animation: decoSway 2.5s steps(2, end) infinite;
  width: 90px;
  width: 5.625rem;
  height: auto;
}

.p-scene__deco img {
  aspect-ratio: 128/158;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-scene__list {
  gap: 100px;
  gap: 6.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 130px;
  margin-top: 8.125rem;
  list-style: none;
}

.p-scene__item {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  opacity: 0;
}

.p-scene__img {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 450px;
  max-width: 28.125rem;
  line-height: 0;
}

.p-scene__img img {
  aspect-ratio: 1;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-scene__text {
  position: absolute;
  top: 79%;
  right: 4%;
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
  opacity: 0;
  margin: 0;
  background-color: rgba(255, 255, 255, .95);
  padding: 12px 10px;
  padding: .75rem .625rem;
  color: #1A1A1A;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .25em;
  line-height: 1.7;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  white-space: nowrap;
}

.p-scene__text-line {
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem; /* 2行目を少し下げる */
}

.p-scene__kerning--01 {
  display: inline-block;
  margin-bottom: -.2em;
}

/************************************************************************
* p-spec
************************************************************************/
.p-spec {
  background-color: #fff;
}

/* トップブロック：画像＋テキスト重ね。波線デコは疑似要素で画像の下端に付与 */
.p-spec__top {
  position: relative;
  width: 100%;
}

.p-spec__top::after {
  position: absolute;
  top: 100%; /* 疑似要素の上端が p-spec__top の下端に揃う */
  left: 0;
  z-index: 1;
  margin-bottom: -1px; /* 下のリストに被せる */
  background-image: url('../img/spec-decoration.svg?v=20260307');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-bottom: 23.61%; /* SVG アスペクト比 340/1440 */
  width: 100%;
  height: 0;
  pointer-events: none;
  content: '';
}

.p-spec__top-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.p-spec__img {
  position: relative;
  z-index: 0;
  width: 100%;
  line-height: 0;
}

.p-spec__img img {
  display: block;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* 画像上：position で top/right を % 指定（画像のテキスト位置に合わせる） */
.p-spec__top-text {
  position: absolute;
  top: 12%;
  right: 30%;
  z-index: 1;
  margin: 0;
  pointer-events: none;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.5357142857;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.p-spec__top-text-line {
  display: block;
  opacity: 0;
}

.p-spec__top-text-line + .p-spec__top-text-line {
  margin-top: .2em;
}

/* 下エリア：デコの高さ(23.61%)に合わせて上パディングを可変にし、波線にテキストが被らないようにする */
.p-spec__bottom {
  position: relative;
  z-index: 0;
  background-color: #F8F8F3;
  background-image: linear-gradient(-160deg, rgb(183, 220, 217) 0%, transparent 50%);
  padding-top: 23.61%; /* トップのデコ高さ(padding-bottom)と同じ比率で可変 */
  padding-bottom: 80px;
  padding-bottom: 5rem;
  width: 100%;
}

/* 白いカード：中央・max-width 840px、左に画像・右にリスト */
.p-spec__list {
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-spec__list-inner {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

/* 左：画像1枚 */
.p-spec__list-image {
  margin-right: auto;
  margin-left: auto;
  width: 50%;
}

.p-spec__list-image img {
  aspect-ratio: 212/320;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-spec__list-inner dl {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.p-spec__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  border-bottom: 1px solid #E8E8E2;
  padding: 14px 0;
  padding: .875rem 0;
}

.p-spec__row:first-child {
  padding-top: 0;
}

.p-spec__term {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  padding-left: 9px;
  padding-left: .5625rem;
  width: 120px;
  width: 7.5rem;
  color: #1A1A1A;
  font-size: 14px;
  font-size: .875rem;
}

.p-spec__desc {
  margin: 0;
  color: #1A1A1A;
  font-size: 14px;
  font-size: .875rem;
}

.p-spec__desc--large {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-spec__desc--small {
  font-size: 14px;
  font-size: .875rem;
}

/************************************************************************
* p-story
************************************************************************/

/* セクション下端に波線デコを疑似要素で付与（p-spec と同様） */
.p-story {
  position: relative;
  background-image: url('../img/story-bg.webp?v=20260307');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 80px;
  padding: 3.75rem 0 5rem;
}

.p-story::after {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  margin-bottom: -1px; /* 次のセクションに被せる */
  background-image: url('../img/story-decoration.webp?v=20260307');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-bottom: 15.625%; /* SVG アスペクト比 225/1440 */
  width: 100%;
  height: 0;
  pointer-events: none;
  content: '';
}

.p-story__title {
  position: relative;
  -webkit-transform: translateY(16px);
  transform: translateY(16px);
  opacity: 0;
  padding-left: 1.2em;
  color: #8E1F0B;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .1em;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  white-space: nowrap;
}

.p-story__title::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #8E1F0B;
  content: '―';
}

.p-story__content {
  position: relative;
}

.p-story__img {
  -webkit-transform: translateY(16px);
  transform: translateY(16px);
  opacity: 0;
  margin-right: auto;
  margin-left: auto;
  width: 70%;
  max-width: 400px;
  max-width: 25rem;
  height: auto;
  text-align: center;
}

.p-story__img img {
  aspect-ratio: 529/377;
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-story__body {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-story__heading {
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  opacity: 0;
  color: #1A1A1A;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.p-story__text {
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  opacity: 0;
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #1A1A1A;
  font-size: 14px;
  font-size: .875rem;
  line-height: 2;
}

.p-story__text + .p-story__text {
  margin-top: 27px;
  margin-top: 1.6875rem;
}

.p-story__text-num {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  unicode-bidi: -webkit-isolate;
  unicode-bidi: -moz-isolate;
  unicode-bidi: isolate;
  text-orientation: mixed;
  white-space: nowrap;
}

/************************************************************************
* p-taste
************************************************************************/
.p-taste__top {
  background-image: url('../img/taste-bg.webp?v=20260307');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px;
  padding: 3.75rem 0 3.75rem;
}

.p-taste__title {
  -webkit-transform: translateX(-24px);
  transform: translateX(-24px);
  opacity: 0;
  padding-left: 50px;
  padding-left: 3.125rem;
  color: #1A1A1A;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: left;
}

.p-taste__title span {
  position: relative;
}

.p-taste__title span::before {
  display: inline-block;
  position: absolute;
  bottom: 6px;
  bottom: .375rem;
  left: -50px;
  left: -3.125rem;
  background-color: #8E1F0B;
  width: 38px;
  width: 2.375rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.p-taste__top-inner {
  position: relative;
}

.p-taste__deco {
  position: absolute;
  bottom: -55px;
  bottom: -3.4375rem;
  left: 0;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-animation: decosway 2.5s steps(2, end) infinite;
  animation: decoSway 2.5s steps(2, end) infinite;
  width: 85px;
  width: 5.3125rem;
  height: auto;
}

.p-taste__deco img {
  aspect-ratio: 121/141;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-taste__text-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  min-width: 0;
}

.p-taste__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  margin: 0;
  border-radius: 50%;
  background-image: url('../img/taste-text-bg.webp?v=20260307');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 200px;
  width: 12.5rem;
  height: 200px;
  height: 12.5rem;
  color: #1A1A1A;
  font-size: 14px;
  font-size: .875rem;
  line-height: 2;
  text-align: center;
}

.p-taste__bottom {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.p-taste__img {
  width: 100%;
  line-height: 0;
}

.p-taste__img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-taste__caption {
  position: absolute;
  top: 5.87vw;
  right: 10.43vw;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .9);
  padding: min(2vw, 16px) min(1.5vw, 12px) min(1.5vw, 12px);
  padding: min(2vw, 1rem) min(1.5vw, .75rem) min(1.5vw, .75rem);
  max-width: 35%;
  color: #fff;
  font-size: 1.3vw;
  letter-spacing: .37em;
  line-height: 2.2;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
  white-space: nowrap;
  white-space: nowrap;
}

.p-taste__caption-line {
  display: block;
  opacity: 0;
}

.p-taste__caption-line + .p-taste__caption-line {
  margin-top: min(4vw, 50px);
  margin-top: min(4vw, 3.125rem);
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

@media screen and (min-width: 600px) {

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (min-width: 768px) {

  html {
    font-size: 1.3333333333vw;
  }

  :root {
    --header-height: 80px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    width: 2.5rem;
  }

  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .l-container {
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1250px;
  }

  .l-container.l-container--narrow {
    max-width: 1010px;
  }

  .l-container.l-container--wide {
    max-width: 1490px;
  }

  .l-header {
    padding-right: 40px;
    padding-right: 2.5rem;
    padding-left: 40px;
    padding-left: 2.5rem;
  }

  .c-btn {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-article__title {
    font-size: 24px;
  }

  .p-article__body {
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 16px;
  }

  .p-article__body table th,
  .p-article__body table td {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-article__body table th {
    width: 153px;
    width: 9.5625rem;
  }

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 40px) / 3);
  }

  .p-commitment {
    padding: 326px 0 180px;
    padding: 20.375rem 0 11.25rem;
  }

  .p-commitment__title {
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
    max-width: 64rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-commitment__list {
    gap: 115px;
    gap: 7.1875rem;
    margin-top: 123px;
    margin-top: 7.6875rem;
  }

  .p-commitment__item {
    gap: 24px;
    gap: 1.5rem;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; /* PC: [img][body] の横並び */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 25px;
    padding-right: 1.5625rem;
    width: 100%;
    max-width: 1257px;
    max-width: 78.5625rem; /* 1232 + padding25 */
  }

  .p-commitment__item.p-commitment__item--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-left: auto;
    padding-right: 0;
    padding-left: 25px;
    padding-left: 1.5625rem;
  }

  .p-commitment__img {
    position: absolute;
    top: -10%;
    left: 0;
    margin-bottom: -20px;
    margin-bottom: -1.25rem; /* bodyにimgがかさなる */
    width: 64%;
    max-width: none;
  }

  .p-commitment__item--reverse .p-commitment__img {
    right: 0;
    left: auto;
  }

  .p-commitment__body {
    margin-right: 0;
    margin-left: 0;
    padding: 151px 129px 102px 40px;
    padding: 9.4375rem 8.0625rem 6.375rem 2.5rem;
    width: 62.4188311688%;
    max-width: none;
  }

  .p-commitment__body::before, .p-commitment__body::after {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    content: none;
  }

  .p-commitment__body .p-commitment__heading {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .p-commitment__item--reverse .p-commitment__body {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end; /* タイトル右・テキスト左のまま、ブロック全体を左寄せ */
    padding-right: 40px;
    padding-right: 2.5rem;
    padding-left: 90px;
    padding-left: 5.625rem;
  }

  .p-commitment__item:nth-of-type(3) .p-commitment__body {
    padding-right: 95px;
    padding-right: 5.9375rem;
    padding-left: 40px;
    padding-left: 2.5rem;
  }

  .p-commitment__heading {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-commitment__text {
    padding-top: 8px;
    padding-top: .5rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-commitment__item--reverse .p-commitment__text {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; /* 幅を内容に合わせて左寄せを効かせる */
  }

  .p-concept {
    padding: 104px 0 130px;
    padding: 6.5rem 0 8.125rem;
  }

  .p-concept__inner-wrap::before {
    bottom: 21%;
  }

  .p-concept__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-concept__img {
    margin-right: 0;
    margin-left: 0;
    width: 56.81%;
    max-width: none;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    line-height: 0;
  }

  .p-concept__body {
    padding: 106px 0;
    padding: 6.625rem 0;
    width: 43%;
  }

  .p-concept__content {
    gap: 43px;
    gap: 2.6875rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-right: 70px;
    margin-right: 4.375rem;
  }

  .p-concept__heading {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-concept__wrap {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
  }

  .p-concept__text {
    gap: 35px;
    gap: 2.1875rem;
  }

  .p-concept__text-block {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-concept__btn-wrap {
    margin-top: 58px;
    margin-top: 3.625rem;
  }

  .p-concept__btn {
    padding-right: 3.9em;
  }

  .p-concept__deco {
    right: 0;
    bottom: -48px;
    bottom: -3rem;
    width: 127px;
    width: 7.9375rem;
  }

  .p-footer {
    padding: 48px 0;
    padding: 3rem 0;
  }

  .p-footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-footer__left {
    margin-top: 0;
    text-align: left;
  }

  .p-footer__disclaimer {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-footer__legal {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .p-footer__right {
    text-align: left;
  }

  .p-footer__btn {
    padding-top: 28px;
    padding-top: 1.75rem;
    padding-right: 3.9em;
    padding-bottom: 28px;
    padding-bottom: 1.75rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-fv {
    min-height: 56.25vw;
  }

  .p-fv__img {
    min-width: var(--fv-img-width);
  }

  .p-fv__text {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-fv__text--small {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2.1;
  }

  .p-fv__text--middle {
    font-size: 25px;
    font-size: 1.5625rem;
  }

  .p-fv__text--large {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-fv__text-num {
    margin-top: 25px;
    margin-top: 1.5625rem;
  }

  .p-header {
    padding-top: 30px;
    padding-top: 1.875rem;
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
  }

  .p-product {
    padding: 130px 0;
    padding: 8.125rem 0;
  }

  .p-product__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-right: 16px;
    padding-right: 1rem;
  }

  .p-product__inner-wrap::before {
    bottom: 15%;
  }

  .p-product__img {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 60.5%;
    max-width: none;
  }

  .p-product__body {
    gap: 47px;
    gap: 2.9375rem;
    padding: 109px 0;
    padding: 6.8125rem 0;
    width: 50%;
  }

  .p-product__title {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-product__text {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-product__btn-wrap {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-product__btn {
    padding-right: 3.9em;
  }

  .p-scene {
    padding: 98px 0 190px;
    padding: 6.125rem 0 11.875rem;
  }

  .p-scene__title {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-scene__deco {
    top: -15px;
    top: -.9375rem;
    width: 128px;
    width: 8rem;
  }

  .p-scene__list {
    gap: 24px;
    gap: 1.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-scene__item:nth-child(2) {
    margin-top: 61px;
    margin-top: 3.8125rem;
  }

  .p-scene__item:nth-child(3) {
    margin-top: 121px;
    margin-top: 7.5625rem;
  }

  .p-scene__text {
    top: 69%;
    padding: 18px 7px;
    padding: 1.125rem .4375rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-spec__top-text {
    top: 17%;
    right: 34%;
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-spec__bottom {
    padding-top: 18.61%;
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
  }

  .p-spec__list {
    padding: 0 25px;
    padding: 0 1.5625rem;
    max-width: 890px;
    max-width: 55.625rem;
  }

  .p-spec__list-inner {
    gap: 80px;
    gap: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 60px 80px;
    padding: 3.75rem 5rem;
  }

  .p-spec__list-image {
    margin-right: 0;
    margin-left: 0;
    width: 31.1764705882%;
  }

  .p-spec__term {
    width: 145px;
    width: 9.0625rem;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-spec__desc {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-spec__desc--large {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-spec__desc--small {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-story {
    padding: 175px 0 120px;
    padding: 10.9375rem 0 7.5rem;
  }

  .p-story__title {
    position: absolute;
    top: -25px;
    top: -1.5625rem;
    left: 0;
    padding-left: 0;
    font-size: 30px;
    font-size: 1.875rem;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  .p-story__title::before {
    top: -48px;
    top: -3rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .p-story__content {
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
    max-width: 50rem;
  }

  .p-story__img {
    max-width: 529px;
    max-width: 33.0625rem;
  }

  .p-story__img img {
    margin-top: 0;
  }

  .p-story__body {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-story__heading {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-story__text {
    margin-top: 25px;
    margin-top: 1.5625rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .p-taste__top {
    padding: 98px 0 64px;
    padding: 6.125rem 0 4rem;
  }

  .p-taste__title {
    margin-right: auto;
    margin-left: auto;
    padding-left: 50px;
    padding-left: 3.125rem;
    max-width: 1024px;
    max-width: 64rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-taste__deco {
    bottom: 0;
    width: 121px;
    width: 7.5625rem;
  }

  .p-taste__text-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 54px;
    margin-top: 3.375rem;
  }

  .p-taste__text {
    width: 382px;
    width: 23.875rem;
    height: 382px;
    height: 23.875rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-taste__text + .p-taste__text {
    margin-left: -70px;
    margin-left: -4.375rem;
  }

  .p-taste__caption {
    top: 70px;
    top: 4.375rem;
    right: 120px;
    right: 7.5rem;
    padding: 28px 16px 16px;
    padding: 1.75rem 1rem 1rem;
    max-width: none;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-taste__caption-line + .p-taste__caption-line {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {

  .post-page-numbers + .post-page-numbers {
    margin-left: 20px;
  }

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media (min-width: 1200px) {

  html {
    font-size: 16px;
  }
}

@media (min-width: 1300px) {

  .p-concept__inner-wrap::before {
    max-width: 573px;
    max-width: 35.8125rem;
  }

  .p-product__inner-wrap::before {
    max-width: 573px;
    max-width: 35.8125rem;
  }
}

@media screen and (max-width: 767px) {

  .l-canvas {
    padding: 0 25px;
  }

  .p-commitment__num {
    top: -25px;
    top: -1.5625rem;
  }

  .p-fv__text--left {
    margin-left: 0;
  }

  .p-fv__img {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: min(280px, 70vw);
    max-width: min(17.5rem, 70vw);
  }

  .p-fv__img img {
    -o-object-fit: contain;
    object-fit: contain;
  }

  .u-onlySp {
    display: block;
  }

  .u-hidden--sp {
    display: none !important;
  }
}

@media screen and (max-width: 650px) {

  .l-header {
    padding-right: clamp(16px, 4vw, 40px);
    padding-right: clamp(1rem, 4vw, 2.5rem);
    padding-left: clamp(16px, 4vw, 40px);
    padding-left: clamp(1rem, 4vw, 2.5rem);
  }

  .p-fv__text--left {
    min-width: 18vw;
  }

  .p-fv__text--right {
    padding-right: 3vw;
    min-width: 18vw;
  }

  .p-fv__img {
    max-width: 42vw;
  }

  .p-fv__text {
    font-size: clamp(12px, 3.5vw, 18px);
    font-size: clamp(.75rem, 3.5vw, 1.125rem);
  }

  .p-fv__text--small {
    font-size: clamp(11px, 3vw, 16px);
    font-size: clamp(.6875rem, 3vw, 1rem);
  }

  .p-fv__text--middle {
    font-size: clamp(12px, 3.5vw, 16px);
    font-size: clamp(.75rem, 3.5vw, 1rem);
  }

  .p-fv__text--large {
    font-size: clamp(16px, 4.5vw, 25px);
    font-size: clamp(1rem, 4.5vw, 1.5625rem);
  }

  .p-header {
    padding-top: clamp(12px, 3.5vw, 30px);
    padding-top: clamp(.75rem, 3.5vw, 1.875rem);
    padding-bottom: clamp(12px, 3.5vw, 30px);
    padding-bottom: clamp(.75rem, 3.5vw, 1.875rem);
  }

  .p-header__logo-link {
    width: clamp(72px, 22vw, 124px);
    width: clamp(4.5rem, 22vw, 7.75rem);
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}
/*# sourceMappingURL=map/style.css.map */