@charset "UTF-8";

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* base
-------------------------------------------------------------- */
:root {
  --main-color: #32A5FA;
}

html {
  font-size: 10px !important;
}

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

body {
  position: relative;
  z-index: 0;
  font-family: "Noto Serif CJK JP", serif, "Noto Sans CJK JP", sans-serif, "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #212121;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
  color: #212121;
  background: var(--main-color);
}

::selection {
  color: #212121;
  background: var(--main-color);
}

@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}

@media screen and (max-width: 960px) {
  html {
    font-size: 10px;
    font-size: max(1.7361111111vw, 10px);
  }
}

@media screen and (max-width: 576px) {
  body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}

/* a
-------------------------------------------------------------- */
a {
  color: inherit;
  text-decoration: underline;
}

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

/* img 
-------------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border: 0;
}

/* l-header
---------------------------------------------------------- */
.l-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  padding-left: 2.4rem;
  background-color: #FFF;
}

.l-header__logo {
  display: flex;
  margin-right: auto;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  align-items: center;
}

@media screen and (max-width: 960px) {
  .nav-opend .l-header {
    mix-blend-mode: normal;
  }

  .nav-opend .l-header__logo {
    opacity: 0;
  }

  .l-header__inner {
    padding-left: 1.4rem;
    padding-right: 0;
  }

  .nav-opend .l-header__inner {
    background-color: #F2F2F2;
  }


  .l-header__logo {
    width: 26rem;
  }

}

/* l-header__nav
---------------------------------------------------------- */
.l-header__nav {
  display: flex;
  align-items: center;
  margin-right: 6rem;
}

.l-header__item {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: 1.6px;
  color: #000;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.l-header__item:hover {
  opacity: 0.7;
}

.l-header__item:not(:last-child) {
  margin-right: 6rem;
}



@media screen and (max-width: 960px) {
  .l-header__nav {
    display: none;
  }

}

/* l-header__menu
---------------------------------------------------------- */
.l-header__menu {
  display: none;
  -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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 6.3rem;
  height: 6.3rem;
  cursor: pointer;
}

.l-header__line {
  position: relative;
  z-index: 2;
  width: 3rem;
  height: 2px;
  background-color: #FFF;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}


.l-header__line:before,
.l-header__line:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFF;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.l-header__menu.is-active {
  background-color: #F2F2F2;
}


.l-header__menu.is-active .l-header__line {
  background-color: transparent;
}

.l-header__menu.is-active .l-header__line:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #000;
}

.l-header__menu.is-active .l-header__line:after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #000;
}


.l-header__line:before {
  top: -1.1rem;
}

.l-header__line:after {
  top: 1.1rem;
}


@media screen and (max-width: 960px) {
  .l-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #000;
  }
}

/* l-nav-modal
---------------------------------------------------------- */
.l-nav-modal {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding-top: 0;
  background: #F2F2F2;
}

.l-nav-modal__body {
  overflow-y: scroll;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 2rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 2rem;
}

.l-nav-modal__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.l-nav-modal__item,
.l-nav-modal__item02 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 5.681564vh;
  color: #000;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.l-nav-modal__item:nth-child(1) {
  display: block;
  width: 100%;
}

.l-nav-modal__logo {
  padding-top: 2rem;
}

.l-nav-modal__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 1rem;
  column-gap: 2rem;
  max-width: 600px;
  margin: 1rem auto;
}

.l-nav-modal__links .l-nav-modal__item02 {
  flex: 1 1 calc(50% - 1.6rem);
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2vh;
}

.l-nav-modal-order_contact {
  background-color: #32A5FA;
  color: #fff;
  margin-bottom: 4rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  position: relative;
}


.l-nav-modal-order_contact a {
  text-decoration: none;
}

/* ORDER / CONTACT ブロックのスタイル */
.order-contact-block--pc,
.order-contact-block--fixed {
  background-color: #32A5FA;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: 1.6px;
  transition: opacity 0.2s ease-out;
  position: relative;
  padding: 0;
}

/* ボタン全体をクリック可能にする */
.order-contact-toggle {
  display: block;
  width: 100%;
  padding: 3.2rem;
  background-color: inherit;
  color: inherit;
  text-decoration: none;
}

.order-contact-block a {
  text-decoration: none;

}

/* サブメニュー共通 */
.order-contact-submenu {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #32A5FA;
  overflow: hidden;
  z-index: 1000;
  width: 100%;
}

.order-contact-submenu a {
  display: block;
  padding: 1.3rem 1.6rem;
  font-size: 1.6rem;
  color: #32A5FA;
  text-decoration: none;
  text-align: center;
  border-bottom: 1px solid #32A5FA;
}

.l-nav-modal-order_contact .order-contact-submenu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 160px;
  z-index: 10;
  background: #fff;
  display: none;
}

.order-contact-submenu :last-child {
  border-bottom: none;
}

.order-contact-submenu a:hover {
  background: #32A5FA;
  color: #fff;
}

/* PC版（下に出す） */
.order-contact-block--pc {
  position: relative;
}

.order-contact-block--pc .order-contact-submenu {
  top: 100%;
  /* トリガーの下に出す */
  left: 0;
}

/* 追従ボタン版（上に出す） */
/* デフォルトは非表示 */
.order-contact-block--fixed {
  display: none;
}


.l-header__to-top {
  position: relative;
  background-color: rgba(255, 255, 255, 0.711);
  /* 半透明白背景 */
}


.l-header__to-top {
  display: none;
}




/* 960px以下（スマホ）のときだけ表示 */
@media screen and (max-width: 960px) {
  .order-contact-block--pc {
    display: none !important;
  }

  .order-contact-block {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .order-contact-block--fixed {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* モーダルが開いたら追従ボタンごと非表示 */
  body.nav-opend .order-contact-block {
    display: none !important;
  }

  /* 追従版（上に出す） */
  .order-contact-block--fixed {
    position: relative;
    /* ← 追加 */
  }

  .order-contact-block--fixed .order-contact-submenu {
    bottom: 100%;
    left: 0;
    width: 100%;
    /* 親（追従ボタン）の幅に合わせる */
  }

  .l-header__to-top {
    display: flex;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }

  .l-header__to-top.is-visible {
    opacity: 1;
    visibility: visible;
  }

}


/* l-main
---------------------------------------------------------- */
.l-main {
  display: block;
  position: relative;
  z-index: 0;
  background: #FFF;
}

/* l-footer
---------------------------------------------------------- */
.l-footer {
  background: #F2F2F2;
}

.l-footer__body {
  text-align: center;
  padding-top: 5.2rem;
  padding-bottom: 7rem;
}

.l-footer__container {
  width: 100%;
  max-width: 88.2rem;
  margin-left: auto;
  margin-right: auto;
}

.l-footer__logo {
  margin-bottom: 3.8rem;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.l-footer__logo>a {
  display: inline-block;
  text-decoration: none;
}

.l-footer__nav-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-footer__item {
  display: block;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #212121;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  white-space: nowrap;
}

.l-footer__item>span {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.8rem;
  font-family: "Noto Sans CJK JP";
}

.l-footer__item:hover {
  opacity: 0.7;
}

.l-footer__nav-sub {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin-top: 4rem;
}

.l-footer__nav-sub-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.l-footer__nav-sub-item:hover {
  opacity: 0.7;
}

.l-footer__copy-right {
  background-color: #FFF;
  text-align: center;
  font-size: 1.1rem;
  padding: 2.4rem;
  line-height: 1.4;
  color: #212121;
  font-family: "Noto Sans CJK JP";
  letter-spacing: 0.1em;
}

@media screen and (max-width: 960px) {
  .l-footer {
    padding-left: 6.4102564103vw;
    padding-right: 6.4102564103vw;
  }

  .l-footer__container {
    width: 100%;
    max-width: 100%;
    padding-bottom: 3.5rem;
  }

  .l-footer__body {
    padding-top: 5.7rem;
    padding-bottom: 0;
  }

  .l-footer__logo {
    margin-bottom: 5.2rem;
  }

  .l-footer__nav-main {
    flex-direction: column;
    align-items: center;
  }

  .l-footer__nav-order_contact {
    background-color: #32A5FA;
    padding: 2rem 3rem;
    margin-bottom: 2rem;
  }

  .l-footer__item {
    margin-bottom: 3rem;
  }

  .l-footer__nav-order_contact .l-footer__item {
    margin-bottom: 0;
    color: #FFF;
  }

  .l-footer__nav-sub {
    margin-top: 2rem;
    flex-direction: column;
    gap: 20px 0;
  }

  .l-footer__nav-sub>a {
    font-size: 1.2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .l-footer__line {
    margin-top: -1rem;
    margin-bottom: 0.5rem;
  }

  .l-footer__copy-right {
    font-size: 1.1rem;
    padding-top: 1.8rem;
  }
}

/* =============================================================
container
============================================================= */
/* c-container
---------------------------------------------------------- */
.c-container-sm,
.c-container-md {
  position: relative;
  z-index: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10rem;
  padding-right: 10rem;
}

.c-container-sm {
  max-width: 120.6rem;
}

.c-container-md {
  max-width: 131.5rem;
}

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

  .c-container-sm,
  .c-container-md {
    padding-left: 6.4102564103vw;
    padding-right: 6.4102564103vw;
  }
}

/* =============================================================
button
============================================================= */
/* c-btn
---------------------------------------------------------- */
.c-btn {
  position: relative;
  margin: 0 auto 0 0;
  max-width: 280px;
  width: 100%;
}

#plan .c-btn,
#flow .c-btn {
  margin: auto;
}

.c-btn a {
  background: #32A5FA;
  color: #fff;
  font-size: 1.9rem;
  font-family: "Montserrat";
  border-radius: 50px;
  letter-spacing: 0.1em;
  display: block;
  line-height: 56px;
  position: relative;
  transition: all .2s linear;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  vertical-align: baseline;
  border: 1px solid transparent;
}

.c-btn_item {
  position: absolute;
  right: 0;
  display: block;
  top: 50%;
  z-index: 2;
}

.c-btn a::before,
.c-btn_item::before,
.c-btn_item::after {
  content: "";
  position: absolute;
  transition: all .2s linear;
}

.c-btn a::before,
.c-btn_item::before {
  height: 1px;
  top: 50%;
  width: 40px;
}

.c-btn a::before {
  background: #fff;
  right: 0;
  z-index: 3;
}

.c-btn a:hover::before {
  right: -10px;
  background: #32A5FA;
}

.c-btn a:hover {
  opacity: 1;
  background: #FFF;
  color: #32A5FA;
  border: 1px solid #32A5FA;
}

.c-btn_item::before,
.c-btn_item::after {
  background: #32A5FA;
}

.c-btn_item::before {
  right: -30px;
}

.c-btn_item::after {
  top: -11px;
  right: -24px;
  height: 12px;
  width: 1px;
  transform: skewX(45deg);
}

.c-btn:hover .c-btn_item::before {
  right: -40px;
}

.c-btn:hover .c-btn_item::after {
  right: -34px;
}

@media screen and (max-width: 960px) {
  .c-btn {
    margin: 0 auto;
    width: 80%;
  }

  .c-btn a {
    font-size: 1.6rem;
    line-height: 46px;
  }
}

/* =============================================================
title
============================================================= */
/* c-title-01
------------------------------------------------------------- */
.c-title-01 {
  z-index: 1;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.c-title-01 .en {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.9rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.c-title-01 .en::before,
.c-title-01 .en::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: #212121;
  width: 50px;
}

.c-title-01 .en::before {
  margin-right: 1.5em;
}

.c-title-01 .en::after {
  margin-left: 1.5em;
}

.c-title-01>.ja {
  font-family: "Noto Serif CJK JP", serif;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.3em;
}



@media screen and (max-width: 960px) {
  .c-title-01 {
    width: 100%;
    height: auto;
    padding-top: 0;
  }

  .c-title-01>.en {
    font-size: 2.4rem;
  }

  .c-title-01 .en::before,
  .c-title-01 .en::after {
    width: 50px;
  }

  .c-title-01 .en::before {
    margin-right: 0.5em;
  }

  .c-title-01 .en::after {
    margin-left: 0.5em;
  }

  .c-title-01>.ja {
    font-size: 1.4rem;
  }

}


/* =============================================================
animation
============================================================= */
/* js-fade-in
------------------------------------------------------------- */
.js-fade-in {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
  -webkit-transition: visibility 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: visibility 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: visibility 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: visibility 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-fade-in {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* js-wipe-in-right
------------------------------------------------------------- */
.js-wipe-in-right {
  -webkit-transition: -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

.is-wipe-in-right {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

/* js-wipe-in-left
------------------------------------------------------------- */
.js-wipe-in-left {
  -webkit-transition: -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}

.is-wipe-in-left {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

/* js-wipe-in-top
------------------------------------------------------------- */
.js-wipe-in-top {
  -webkit-transition: -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
}

.is-wipe-in-top {
  -webkit-clip-path: inset(0 0 -1px 0);
  clip-path: inset(0 0 -1px 0);
}

/* =============================================================
home
============================================================= */
/* p-home-mv
------------------------------------------------------------- */
.p-home-mv {
  position: relative;
  z-index: 0;
  padding-top: 8rem;
}

.p-home-mv__title {
  position: absolute;
  bottom: 30%;
  left: 52%;
  z-index: 1;
}

.p-home-mv__title>h1 {
  display: inline-block;
  font-family: "Noto Serif CJK JP", serif;
  font-size: max(1.6125vw, 3.7rem);
  line-height: 1.8;
  letter-spacing: 0.35em;
  margin-bottom: 0.2rem;
}

.p-home-mv__title>p {
  display: block;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: max(1vw, 1.8rem);
  line-height: 2.0327868852;
  letter-spacing: 0.15em;
}

.p-home-mv__title>p span {
  font-family: "Montserrat", sans-serif;
  font-size: max(1.2vw, 2.1rem);
  color: #B27336;
  line-height: 3;
  letter-spacing: 0.21em;
}


@media screen and (max-width: 960px) {
  .p-home-mv {
    padding-top: 6.3rem;
    padding-bottom: 0;
  }

  .p-home-mv__title {
    position: static;
    bottom: 0;
    background-color: #F8E0DB;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .p-home-mv__title>h1 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0.4rem;
    letter-spacing: 0.2em;
  }

  .p-home-mv__title>p {
    font-size: 1.4rem;
    text-align: center;
  }

  .p-home-mv__title>p span {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }

}

/* p-home-product
------------------------------------------------------------- */
.p-home-product {
  padding-top: 6rem;
  padding-bottom: 19rem;
  background:
    url('../img/top/img_product_bg.jpg'),
    linear-gradient(177deg, rgba(253, 246, 243, 0) 0%, #FFF8F5 100%);
  background-size: contain, auto;
  background-position: top center, center;
  background-repeat: no-repeat;
}

.product-item__subtitle {
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 500;
}


.p-home-product__title {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  font-size: 2.8rem;
  line-height: 1.8;
  letter-spacing: 0.3em;
  padding-top: 2rem;
  text-align: center;
  font-family: "Noto Serif CJK JP", serif;
}

.p-home-product__text {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 1.8rem;
  line-height: 2.2222222222;
  letter-spacing: 0.15em;
  padding-top: 4rem;
  padding-right: 4rem;
  padding-left: 4rem;
}

.placenta-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 0 7rem;
}

.placenta-comparison-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.placenta-box {
  border: 1px solid;
  padding: 2.4rem 3.5rem;
  width: 100%;
  background-color: #FFF;
}

.placenta-box p {
  font-family: "Noto Serif CJK JP", serif;
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.3em;
  margin-top: 0;
  margin-bottom: 25px;
}

.placenta-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.placenta-box li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-family: "Noto Sans CJK JP";
  line-height: 1.6;
  letter-spacing: 0.15em;
}

.placenta-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.placenta-box.general {
  border: 3px solid #E2E2E2;
}

.placenta-box.general li::before {
  background-color: #BABABA;
}

.placenta-box.hybrid {
  border: 3px solid #E5C19E;
}

.placenta-box.hybrid li::before {
  background-color: #B27336;
}

.placenta-tagline {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 3.1rem;
  letter-spacing: 0.2em;
  color: #B27336;
  text-align: center;
  font-family: "Noto Serif CJK JP", serif;
}

.p-home-product__list {
  width: 100%;
  height: auto;
  background: #FFF;
  padding: 6rem;
}

.product-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 3rem;
}

.product-item:not(:last-child) {
  margin-top: 5.6rem;
  margin-bottom: 10rem;
}

.product-item__image-wrapper {}

.product-item__image {
  width: 90%;
  padding-left: 3rem;
}

.product-item__details {
  flex: 1;
  padding-top: 10px;
}

.product-item__name {
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  font-family: "Noto Serif CJK JP", serif;
}

.product-item__name span {
  font-size: 2.7rem;
  letter-spacing: 0.2em;
}


.product-item__price {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
  margin: 0 0 3.8rem 0;
}

.product-item__price .currency {
  font-size: 1.6rem;
  margin-left: 0.8em;
}

.product-item__description {
  font-size: 1.6rem;
  font-family: "Noto Sans CJK JP";
  line-height: 1.8;
  letter-spacing: 0.15em;
}

.product-item__description span {
  font-size: 1.8rem;
  font-weight: bold;
}

.product-item__spec-list {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  font-size: 1.4rem;
  margin-top: 2.2rem;
  margin-bottom: 4rem;
  padding: 1rem 0;
}

.spec-list__item {
  display: flex;
  padding: 1.2rem 0;
  font-family: "Noto Sans CJK JP";
  letter-spacing: 0.15em;
}

.spec-list__term {
  flex: 0 0 9em;
  font-weight: 500;
}

.spec-list__description {
  flex: 1;
  line-height: 1.4;
  margin: 0;
}

@media screen and (max-width: 960px) {
  .p-home-product {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background:
      url('../img/top/img_product_bg_sp.jpg'),
      linear-gradient(177deg, rgba(253, 246, 243, 0) 0%, #FFF8F5 100%);
    background-size: contain, auto;
    background-position: top center, center;
    background-repeat: no-repeat;
  }

  .product-item__subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
  }

  .p-home-product__title {
    font-size: 2.2rem;
    letter-spacing: 0.2em;
    padding-top: 0;
  }

  .p-home-product__text {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    padding-top: 3rem;
    padding-right: 0;
    padding-left: 0;
  }

  .placenta-features {
    padding: 5rem 0;
  }

  .placenta-box {
    padding: 2rem;
  }

  .placenta-box p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .placenta-box li {
    font-size: 1.4rem;
  }

  .placenta-comparison-container {
    flex-direction: column;
    gap: 0;
  }

  .placenta-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .placenta-tagline {
    font-size: 2.4rem;
    line-height: 2;
  }

  .p-home-product__list {
    padding: 5rem 2rem 2rem;
  }

  .product-item {
    flex-direction: column;
    gap: 24px;
  }

  .product-item__details {
    padding-top: 0;
  }

  .product-item__image-wrapper {
    display: flex;
    justify-content: center;
  }

  .product-item__image {
    width: 60%;
    padding-left: 0;
  }

  .product-item__name {
    font-size: 2.8rem;
    justify-content: center;
    flex-direction: column;
    line-height: 1.4;
  }

  .product-item__name span {
    font-size: 2rem;
  }

  .product-item__price {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .product-item__price .currency {
    font-size: 1.2rem;
    margin-left: 0.4em;
  }

  .product-item__details {
    width: 100%;
    text-align: center;
  }

  .product-item__description {
    font-size: 1.4rem;
    text-align: left;
  }

  .product-item__description span {
    font-size: 1.6rem;
  }

  .product-item__spec-list {
    font-size: 1.3rem;
  }

  .spec-list__item {
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }

  .spec-list__term {
    flex-basis: auto;
    /* ラベルの固定幅を解除 */
  }
}


/* p-home-plan
------------------------------------------------------------- */
.p-home-plan {
  padding-bottom: 19rem;
  padding-top: 7rem;
  background-color: #393939;
  color: #FFF;
}

.p-home-plan .c-title-01 .en::before,
.p-home-plan .c-title-01 .en::after {
  background-color: #FFF;
}

.purchase-options {
  width: 100%;
  padding-top: 4.6rem;
  text-align: center;
}

.options-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* 250927 */

.option-item {
  flex: 1;
  min-width: 280px;
  display: flex;
}

.option-item fieldset {
  border: 1px solid #ffffff;
  padding: 4rem 3rem 3rem;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  /* ← テキスト縦中央揃え */
  align-items: center;
  /* ← 縦方向の中央 */
  justify-content: center;
  /* ← 横方向の中央（不要なら削除） */
  text-align: center;
  /* ← テキスト中央寄せ（お好みで） */
  width: 100%;
}

.option-item legend {
  padding: 0 1em;
  margin: 0 auto;
  font-size: 2.7rem;
  letter-spacing: 0.2em;
  font-family: "Noto Serif CJK JP", serif;
}


.option-content p {
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-family: "Noto Serif CJK JP", serif;
}

.option-content p.copy {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1em;
}

.option-content p.copy01 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 0em;
}

.option-content p span.c01 {
  font-size: 5rem;
}

.option-content p span.c02 {
  font-size: 4rem;
  margin-bottom: 1em;
}

/* /250927 */

.footer-note {
  margin-top: 6rem;
  margin-bottom: 4rem;
  font-size: 2rem;
  font-family: "Noto Sans CJK JP", sans-serif;
  letter-spacing: 0.15em;
}



@media screen and (max-width: 960px) {
  .p-home-plan {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .options-container {
    flex-direction: column;
    /* 縦並びにする */
    align-items: center;
    gap: 40px;
    /* 縦並びの時の間隔 */
  }

  .option-item {
    width: 100%;
    display: block;
    /* ← 縦並びの時は通常レイアウト */
  }

  .option-item legend {
    font-size: 2.2rem;
  }

  .option-item fieldset {
    padding: 3rem 2rem 3rem;
    display: block;
    /* ← 通常の流れに戻す */
  }

  .footer-note {
    margin-top: 4rem;
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

/* p-home-effect
------------------------------------------------------------- */
.p-home-effect {
  padding-bottom: 19rem;
  padding-top: 7rem;
  background: transparent linear-gradient(132deg, #F4EDE7 0%, #FDFDFD 35%, #FCFCFC 57%, #F4EDE7 100%) 0% 0% no-repeat padding-box;
}

.description-block {
  margin: 6.5rem auto 6rem auto;
  text-align: left;
}

.description-block h4 {
  font-size: 2.4rem;
  margin-bottom: 1.4rem;
  letter-spacing: 0.2em;
  font-family: "Noto Serif CJK JP", serif;
}

.description-block p {
  font-size: 1.6rem;
  text-align: left;
  font-family: "Noto Sans CJK JP";
  letter-spacing: 0.1em;
  line-height: 1.8;
}

/* 2x2のグリッドコンテナ */
.effects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  /* margin-bottom: 6rem; */
  justify-content: space-between;
}

/* グリッドの各項目 */
.effect-item {
  width: calc(50% - 50px);
}

.effect-item h4 {
  font-size: 2.4rem;
  margin-bottom: 1.4rem;
  letter-spacing: 0.2em;
}

.effect-item p {
  font-size: 1.6rem;
  text-align: left;
  font-family: "Noto Sans CJK JP";
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.main-heading-box {
  border: 1px solid #707070;
  padding: 6rem 2rem;
  text-align: center;
}

.main-heading-box h2 {
  font-size: 3.1rem;
  font-weight: normal;
  letter-spacing: 0.2em;
  line-height: 1.7;
  font-family: "Noto Serif CJK JP", serif;
}

@media (max-width: 960px) {
  .p-home-effect {
    padding-bottom: 7rem;
  }

  .description-block {
    margin: 5rem auto 4rem;
    text-align: center;
  }

  .description-block h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .description-block p {
    font-size: 1.4rem;
    line-height: 2;
  }

  .effect-item h4 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .effect-item p {
    font-size: 1.4rem;
    line-height: 2;
  }

  .effects-grid {
    flex-direction: column;
    gap: 40px;
  }

  .effect-item {
    width: 100%;
  }

  .main-heading-box h2 {
    font-size: 2rem;
  }

  .main-heading-box {
    padding: 4rem 2rem;
  }
}



/* p-home-faq
------------------------------------------------------------- */
.p-home-faq {
  padding-bottom: 19rem;
  padding-top: 7rem;
}

.faq-accordion {
  margin-top: 40px;
}

.faq-item {}

/* 質問部分 */
.faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2rem 0 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2.2rem;
  font-family: "Noto Serif CJK JP", serif;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #707070;
  margin-bottom: 2rem;
}

/* QとAのアイコン */
.icon-q,
.icon-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 15px;
  border: 1px solid #B27336;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
}

.icon-q {
  color: #B27336;
  font-size: 2.3rem;
}

.icon-a {
  color: #B27336;
  border: none;
  font-size: 2.3rem;
}


.question-text {
  flex: 1;
  font-family: "Noto Serif CJK JP", serif;
  color: #212121;
}

/* 矢印アイコン */
.icon-arrow {
  width: 20px;
  height: 20px;
  border-top: 3px solid #707070;
  border-right: 3px solid #707070;
  transform: rotate(135deg);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

/* 回答部分 */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.answer-content {
  display: flex;
  align-items: center;
  padding: 0 10px 20px 0;
}

.answer-content p {
  margin: 0;
  line-height: 1.8;
  font-size: 1.6rem;
  font-family: "Noto Sans CJK JP";
  letter-spacing: 0.1em;
}


.faq-item.is-active .icon-arrow {
  transform: rotate(-45deg);
  /* 上向き */
}

.answer-text {
  display: flex;
  flex-direction: column;
}

.answer-divider {
  border: 1px solid #000;
  padding: 10px 20px;
  margin: 0 0 0 50px;
}

.additional-text {
  font-size: 1.6rem;
  line-height: 1.8;
  font-family: "Noto Sans CJK JP";
  letter-spacing: 0.1em;
}

@media screen and (max-width: 960px) {
  .p-home-faq {
    padding-bottom: 7rem;
  }

  .faq-question {
    font-size: 1.6rem;
  }

  .icon-q,
  .icon-a {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }

  .icon-q {
    font-size: 1.8rem;
  }

  .icon-a {
    font-size: 1.8rem;
  }

  .icon-arrow {
    width: 16px;
    height: 16px;
    margin-left: 10px;
    margin-top: 10px;
  }

  .answer-content p {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .answer-divider {
    padding: 10px 14px;
    margin: 0 0 0 40px;
  }

  .additional-text {
    font-size: 1.4rem;
  }

}


/* p-home-flow
------------------------------------------------------------- */
.p-home-flow {
  padding-bottom: 19rem;
  padding-top: 7rem;
  background-color: #393939;
  color: #FFF;
}

.p-home-flow .c-title-01 .en::before,
.p-home-flow .c-title-01 .en::after {
  background-color: #FFF;
}

.flow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}


.flow-item {
  flex: 1;
  min-width: 280px;
}

.flow-item fieldset {
  border: 1px solid #ffffff;
  padding: 4rem 3rem 3rem;
  margin: 0;
  height: 260px;
  box-sizing: border-box;
}

.flow-item legend {
  padding: 0 1em;
  margin: 0 auto;
  font-size: 2.7rem;
  letter-spacing: 0.2em;
  font-family: "Noto Serif CJK JP", serif;
}

.flow-content {
  font-size: 1.8rem;
  font-family: "Noto Sans CJK JP";
  text-align: left;
  line-height: 1.8;
}

.arrow-separator {
  width: 12px;
  height: 20px;
  position: relative;
}

.arrow-separator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 40px 30px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-50%, -50%);
}



@media screen and (max-width: 960px) {
  .p-home-flow {
    padding-bottom: 7rem;
  }

  .flow-item legend {
    font-size: 2.2rem;
  }

  .flow-content {
    font-size: 1.6rem;
  }

  .flow-item fieldset {
    padding: 3rem 2rem 2rem;
    height: 200px;
  }

  .flow-container {
    flex-direction: column;
  }

  .arrow-separator::after {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 24px 24px;
    border-top-color: currentColor;
    border-bottom: 0;
  }
}


/* c-page
------------------------------------------------------------- */
.c-page {
  margin: 0 auto;
  padding: 7.477rem 0 10rem;
  line-height: 1.8;
  font-size: 1.8rem;
}

.c-page-hero {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: url('../img/top/img_product_bg.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  margin-bottom: 10rem;
  padding-top: 5.6rem;
  padding-bottom: 8.6rem;
}

.c-page-title {
  font-size: 3.3rem;
  letter-spacing: 0.2em;
  font-family: "Noto Serif CJK JP", serif;
}

.c-page-subtitle {
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  color: #B27336;
  font-family: "Montserrat", sans-serif;
}

.c-page-content h2 {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 600;
  margin: 4rem 0 1rem;
  letter-spacing: 0.1em;
}

.c-page-content p {
  font-family: "Noto Sans CJK JP", sans-serif;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}

.c-page-content ul {
  font-family: "Noto Sans CJK JP", sans-serif;
  margin: 1rem 0 2rem 2rem;
  padding-left: 1rem;
}


.c-page-content ol {
  counter-reset: number;
  margin: 1rem 0 2rem 2rem;
  padding-left: 1rem;
  list-style: none;
  /* デフォルト番号は消す */
}

.c-page-content ol li {
  counter-increment: number;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 3.5rem;
}

.c-page-content ol li::before {
  content: counter(number) " )";
  position: absolute;
  left: 0;
  top: 0;
}

.c-page-table {
  width: 100%;
}

.c-page-table__row {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #707070;
}

.c-page-table__row:first-child {
  border-top: none;
}

.c-page-table dt {
  width: 30%;
  padding: 2rem 0;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-family: "Noto Sans CJK JP", sans-serif;
}

.c-page-table dd {
  width: 70%;
  padding: 2rem 0;
  letter-spacing: 0.1em;
  font-family: "Noto Sans CJK JP", sans-serif;
}




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

  /* ページ全体 */
  .c-page {
    font-size: 1.4rem;
    padding: 6.3rem 0 4rem;
  }

  /* ヒーロー帯 */
  .c-page-hero {
    padding-top: 4rem;
    padding-bottom: 5rem;
    margin-bottom: 6rem;
  }

  .c-page-title {
    font-size: 2.4rem;
  }

  .c-page-subtitle {
    font-size: 1.6rem;
  }

  .c-page-content h2 {
    margin: 2.2rem 0 0.5rem;
  }

  .c-page-content p {
    margin-bottom: 1rem;
  }

  .c-page-content ol {
    margin: 0;
    padding: 0;
  }

  .c-page-table {
    font-size: 1.4rem;
  }

  .c-page-content ol li {
    padding-left: 2rem;
  }

  .c-page-table__row {
    flex-direction: column;
    border-top: 1px solid #707070;
  }

  .c-page-table dt {
    width: 100%;
    padding: 1.5rem 0 0;
  }

  .c-page-table dd {
    width: 100%;
    padding: 1rem 0 1.5rem;
  }
}


/* =============================================================
404エラー
============================================================= */
/* p-404-error
------------------------------------------------------------- */
.p-404-error {
  position: relative;
  z-index: 0;
  padding-top: 9rem;
  padding-bottom: 13.5rem;
}

.p-404-error__text {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.2222222222;
  letter-spacing: 0.05em;
  margin-top: 4rem;
}

.p-404-error__button {
  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;
  margin-top: 5rem;
}

@media screen and (max-width: 960px) {
  .p-404-error {
    padding-top: 6.5rem;
    padding-bottom: 7.2rem;
  }

  .p-404-error__text {
    font-size: 1.6rem;
    line-height: 2.1875;
    margin-top: 3rem;
  }

  .p-404-error__button {
    margin-top: 4rem;
  }
}



/* =============================================================
utility
============================================================= */
/* display
------------------------------------------------------------- */
.u-d-block-pc {
  display: block;
}

.u-d-block-sm,
.u-d-block-md,
.u-d-block-lg {
  display: none;
}

@media screen and (max-width: 960px) {
  .u-d-none-lg {
    display: none;
  }

  .u-d-block-lg {
    display: block;
  }

  .u-d-block-pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .u-d-none-md {
    display: none;
  }

  .u-d-block-md {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .u-d-none-sm {
    display: none;
  }

  .u-d-block-sm {
    display: block;
  }
}

/* text-align
------------------------------------------------------------- */
.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

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

/* font-weight
------------------------------------------------------------- */
.u-weight-normal {
  font-weight: normal;
}

.u-weight-bold {
  font-weight: bold;
}

/* color
------------------------------------------------------------- */
.u-color-orange {
  color: var(--sub-color-01);
}

/* margin
------------------------------------------------------------- */
.u-mt-05 {
  margin-top: 0.5rem;
}

.u-mt-10 {
  margin-top: 1rem;
}

.u-mt-15 {
  margin-top: 1.5rem;
}

.u-mb-05 {
  margin-bottom: 0.5rem;
}

.u-mb-10 {
  margin-bottom: 1rem;
}

.u-mb-15 {
  margin-bottom: 1.5rem;
}

.u-mb-20 {
  margin-bottom: 2rem;
}

.u-mb-25 {
  margin-bottom: 2.5rem;
}

.u-mb-30 {
  margin-bottom: 3rem;
}



/* 2025/3/17
---------------------------------------------------------- */

/* l-header
---------------------------------------------------------- */
.l-header__list {
  display: flex;
  align-items: center;
}