@charset "UTF-8";
/* Sass Document */
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
@layer components, variations;
@layer components {
  a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
summary,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
  }
  picture {
    display: block;
  }
  p {
    font-size: 1.6rem;
    line-height: 2;
  }
  @media screen and (max-width: 767.98px) {
    p {
      font-size: 1.5rem;
      line-height: 1.8666666667;
    }
  }
  button {
    border: none;
    font: inherit;
    color: currentColor;
  }
  ol,
ul,
menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
html {
  line-height: 1;
}

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

strong {
  font-weight: 700;
}

caption,
td,
th {
  text-align: left;
}

blockquote,
q {
  quotes: none;
}

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

a img {
  border: none;
}

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

html {
  font-size: 100%;
  line-height: 1.5em;
}

* {
  box-sizing: border-box;
  word-break: break-word; /* 長い単語を強制的に折り返す */
  overflow-wrap: break-word; /* 同様の目的。対応ブラウザが広い */
  line-break: strict; /* 節での自然な改行を優先（日本語では特に有効） */
  white-space: normal; /* 普通の折り返し挙動に */
}

html {
  font-size: 100%;
  width: 100%;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-size: min(0.7142857142vw, 62.5%);
}
@media screen and (max-width: 767.98px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  position: relative;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #212121;
  font-size: 1.6rem;
  scroll-behavior: smooth;
  letter-spacing: 0.05em;
}
body.is-fixed {
  overscroll-behavior-y: none;
  overflow: hidden;
}

div[id],
section[id],
h2[id],
h3[id] {
  scroll-margin-top: 10rem;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

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

.js-animate {
  opacity: 0;
  transform: translateY(6rem);
  transition: 1s opacity, 1s transform;
}
@media screen and (max-width: 767.98px) {
  .js-animate {
    transform: translateY(3rem);
  }
}
.js-animate.is-show {
  opacity: 1;
  transform: translateY(0);
}

#l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 8rem;
  z-index: 1000;
  background-color: #fff;
}
@media screen and (max-width: 767.98px) {
  #l-header {
    display: grid;
    place-content: center;
  }
}

.l-header__inner {
  max-width: 140rem;
  margin-inline: auto;
  padding-inline: 2rem;
  box-sizing: content-box;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .l-header__inner {
    display: block;
  }
}

.l-header__logo {
  width: 15rem;
}
@media screen and (max-width: 767.98px) {
  .l-header__logo {
    width: 13rem;
    margin-inline: auto;
  }
}
.l-header__logo img {
  width: 100%;
}
@media (any-hover) {
  .l-header__logo a {
    transition: 0.3s opacity;
  }
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}

.l-header__nav {
  margin-left: 4.9rem;
  display: flex;
  width: 100%;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav {
    padding-top: 10rem;
    display: block;
    margin-left: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    transform: translateX(100%);
    transition: 0.5s transform, 0.8s opacity;
    height: 100lvh;
    overflow: auto;
    opacity: 0;
    overscroll-behavior-y: contain;
  }
  .l-header__nav.is-open {
    transform: translateX(0);
    opacity: 1;
  }
}
.l-header__nav a {
  color: currentColor;
  text-decoration: none;
}

.l-header__nav-list {
  display: flex;
  font-size: 1.4rem;
  align-items: center;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list {
    display: block;
    font-size: 1.8rem;
  }
}
@media (any-hover: hover) {
  .l-header__nav-list.-primary .l-header__nav-item:hover > button span::after,
.l-header__nav-list.-primary .l-header__nav-item:hover > span span::after,
.l-header__nav-list.-primary .l-header__nav-item:hover > a span::after, .l-header__nav-list.-primary .l-header__nav-item:focus > button span::after,
.l-header__nav-list.-primary .l-header__nav-item:focus > span span::after,
.l-header__nav-list.-primary .l-header__nav-item:focus > a span::after {
    transform: scale(1);
  }
  .l-header__nav-list.-primary .l-header__nav-item:hover .l-header__subnav-list, .l-header__nav-list.-primary .l-header__nav-item:focus .l-header__subnav-list {
    opacity: 1;
    pointer-events: auto;
  }
}
.l-header__nav-list.-primary .l-header__nav-item > button,
.l-header__nav-list.-primary .l-header__nav-item > span,
.l-header__nav-list.-primary .l-header__nav-item > a {
  cursor: pointer;
  padding-inline: 2.15rem;
  display: block;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list.-primary .l-header__nav-item > button,
.l-header__nav-list.-primary .l-header__nav-item > span,
.l-header__nav-list.-primary .l-header__nav-item > a {
    padding: 3rem 2rem;
  }
}
.l-header__nav-list.-primary .l-header__nav-item > button span,
.l-header__nav-list.-primary .l-header__nav-item > span span,
.l-header__nav-list.-primary .l-header__nav-item > a span {
  display: grid;
  place-content: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
.l-header__nav-list.-primary .l-header__nav-item > button span::after,
.l-header__nav-list.-primary .l-header__nav-item > span span::after,
.l-header__nav-list.-primary .l-header__nav-item > a span::after {
  content: "";
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  right: 0;
  height: 2px;
  background-color: #212121;
  transform: scale(0, 1);
  transition: 0.3s transform;
}
.l-header__nav-list.-secondary {
  padding-block: 1.5rem;
  margin-left: auto;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list.-secondary a {
    display: grid;
    height: 5rem;
    width: 15rem;
    border-radius: 0.4rem;
    border: 1px solid #000;
    place-content: center;
    overflow: clip;
    transition: 0.3s background-color, 0.3s color;
  }
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list.-secondary a {
    padding: 3rem 2rem;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .l-header__nav-list.-secondary .-item a:hover {
    background-color: #212121;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav-list.-secondary .-contact a {
    background-color: #212121;
    color: #fff;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .l-header__nav-list.-secondary .-contact a:hover {
    background-color: #fff;
    color: #212121;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav-list.-secondary .-x {
    display: none;
  }
}
.l-header__nav-list.-secondary .-x .c-icn {
  width: 1.7rem;
  height: 1.6rem;
  position: relative;
  margin-left: 0.5rem;
  top: 0.4rem;
  display: inline-block;
}

.l-header__nav-item {
  position: relative;
  height: 100%;
}
.l-header__nav-item.c-current > button span::after,
.l-header__nav-item.c-current > a span::after {
  transform: scale(1) !important;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-item {
    height: auto;
  }
  .l-header__nav-item.c-current > button,
.l-header__nav-item.c-current > a,
.l-header__nav-item.c-current > span {
    background-color: #212121 !important;
    color: #fff !important;
  }
  .l-header__nav-item.c-current > button::after {
    border-color: #fff !important;
  }
}
.l-header__nav-item > button,
.l-header__nav-item > a,
.l-header__nav-item > span {
  font: inherit;
  color: currentColor;
  display: grid;
  place-content: center;
  height: 100%;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-item > button,
.l-header__nav-item > a,
.l-header__nav-item > span {
    height: auto;
    display: block;
  }
}
.l-header__nav-item:has(.l-header__subnav-list) button {
  display: block;
  width: 100%;
  position: relative;
  text-align: left;
  background-color: transparent;
  white-space: nowrap;
}
.l-header__nav-item:has(.l-header__subnav-list) button.is-open::after {
  transform: rotate(225deg);
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-item:has(.l-header__subnav-list) button::after {
    transition: 0.3s transform;
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    top: 45%;
    right: 3rem;
    transform: rotate(45deg) translateY(-50%);
  }
}

.l-header__subnav-list {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 20rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity;
  /* box-shadow: 0px 0px 15px -5px #777777; */
  background-color: #fff;
}
@media screen and (max-width: 767.98px) {
  .l-header__subnav-list {
    position: static;
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    padding-top: 0;
    width: 100%;
    max-width: inherit;
    display: none;
    background-color: #f5f5f5;
    box-shadow: none;
  }
}
.l-header__subnav-list a {
  padding: 2rem;
  display: grid;
  place-content: center;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .l-header__subnav-list a {
    display: block;
    padding: 2rem 3rem;
    text-align: left;
  }
}
.l-header__subnav-list a span {
  display: inline-block;
  position: relative;
}
.l-header__subnav-list a span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 2px;
  transform: scale(0, 1);
  background-color: #212121;
  transition: 0.3s transform;
}

@media (any-hover: hover) {
  .l-header__subnav-item:hover a span::after {
    transform: scale(1);
  }
}
@media screen and (max-width: 767.98px) {
  .l-header__subnav-item + .l-header__subnav-item {
    border-top: 1px solid #fff;
  }
}

.l-hamburger-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .l-hamburger-wrapper {
    display: none;
  }
}

.l-hamburger {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
  background-color: #fff;
}
.l-hamburger .l-line {
  position: absolute;
  height: 1px;
  background-color: #666666;
  width: 4rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  transition: 0.3s background-color, 0.3s width, 0.3s transform, 0.3s top;
}
.l-hamburger .l-line:first-of-type {
  top: calc(50% - 1rem);
}
.l-hamburger .l-line:nth-of-type(2) {
  top: calc(50% - 0.5px);
}
.l-hamburger .l-line:last-of-type {
  top: calc(50% + 1rem - 1px);
}
.l-hamburger.is-cross .l-line:first-of-type {
  top: calc(50% - 0.5px);
  transform: rotate(-45deg);
  width: 3rem;
}
.l-hamburger.is-cross .l-line:nth-of-type(2) {
  opacity: 0;
}
.l-hamburger.is-cross .l-line:last-of-type {
  top: calc(50% - 0.5px);
  transform: rotate(45deg);
  width: 3rem;
}

#l-footer {
  padding-bottom: 4.7rem;
  background-color: #fff;
}
@media screen and (max-width: 767.98px) {
  #l-footer {
    padding-bottom: 2.8rem;
  }
}
#l-footer a {
  color: currentColor;
  text-decoration: none;
}
@media (any-hover) {
  #l-footer a {
    transition: 0.3s opacity;
  }
  #l-footer a:hover {
    opacity: 0.7;
  }
}

.l-service {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767.98px) {
  .l-service {
    display: block;
  }
}

.l-service__img {
  width: 57.1428571429%;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .l-service__img {
    width: 100%;
  }
}
.l-service__img img {
  width: 100%;
}

.l-service__body {
  background-color: #eee8e0;
  flex-grow: 1;
  display: grid;
  align-items: center;
  padding-left: 10rem;
}
@media screen and (max-width: 767.98px) {
  .l-service__body {
    display: block;
    padding: 4.5rem 2rem 5.5rem;
  }
}

.l-service__inner .c-ttl {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767.98px) {
  .l-service__inner .c-ttl {
    font-size: 2.4rem;
    text-align: center;
  }
}
.l-service__inner p {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767.98px) {
  .l-service__inner p {
    font-size: 1.4rem;
    text-align: center;
  }
}
.l-service__inner .p-btn-wrapper {
  max-width: 28rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767.98px) {
  .l-service__inner .p-btn-wrapper {
    margin-inline: auto;
  }
}

.l-footer__inner {
  max-width: 100rem;
  margin-inline: auto;
  padding-inline: 2rem;
  box-sizing: content-box;
  margin-top: 4.7rem;
}
@media screen and (max-width: 767.98px) {
  .l-footer__inner {
    margin-top: 3.2rem;
  }
}

.l-footer__upper {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .l-footer__upper {
    display: block;
  }
}

.l-footer__logo {
  width: 16rem;
}

.l-footer__nav {
  margin-left: 13.3rem;
  font-size: 1.8rem;
  color: #666666;
}
@media screen and (max-width: 767.98px) {
  .l-footer__nav {
    margin-left: 0;
    margin-top: 1.6rem;
  }
}

.l-footer__nav-item {
  position: relative;
}
.l-footer__nav-item + .l-footer__nav-item {
  margin-top: 3rem;
}
@media screen and (max-width: 767.98px) {
  .l-footer__nav-item + .l-footer__nav-item {
    margin-top: 0;
  }
}
.l-footer__nav-item button,
.l-footer__nav-item a {
  cursor: pointer;
  font-family: "Marcellus", "Noto Sans JP", sans-serif, serif;
  letter-spacing: 0;
  background-color: transparent;
  color: currentColor;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
}
@media screen and (max-width: 767.98px) {
  .l-footer__nav-item button,
.l-footer__nav-item a {
    display: block;
    padding-block: 1rem;
  }
}
.l-footer__nav-item button {
  position: relative;
}
.l-footer__nav-item button.is-open::after {
  transform: rotate(225deg);
}
@media screen and (max-width: 767.98px) {
  .l-footer__nav-item button::after {
    transition: 0.3s transform;
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    top: 40%;
    right: 3rem;
    transform: rotate(45deg) translateY(-50%);
  }
}
.l-footer__nav-item .c-icn {
  width: 1.7rem;
  height: 1.6rem;
  position: relative;
  margin-left: 0.5rem;
  top: 0.1rem;
  display: inline-block;
}

@media (any-hover: hover) {
  .l-footer__nav-item:has(button):hover .l-footer__subnav {
    opacity: 1;
    pointer-events: auto;
  }
}

.l-footer__subnav {
  position: absolute;
  left: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  top: -1.5rem;
  background-color: #fff;
  box-shadow: 0px 0px 15px -5px #777777;
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity;
}
@media screen and (max-width: 767.98px) {
  .l-footer__subnav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    background-color: #f5f5f5;
    display: none;
    width: 100%;
  }
}
.l-footer__subnav a {
  display: block;
  padding: 1.6rem 2rem;
}
@media screen and (max-width: 767.98px) {
  .l-footer__subnav a {
    padding-block: 1rem;
  }
}

.l-footer__subnav-item {
  max-width: 20rem;
}
@media screen and (max-width: 767.98px) {
  .l-footer__subnav-item {
    max-width: inherit;
  }
}
.l-footer__subnav-item + .l-footer__subnav-item {
  border-top: 1px solid #fff;
}

.u-link--x {
  display: inline-block;
  padding-right: 2rem;
  position: relative;
}
.u-link--x::after {
  top: 0.2rem;
  right: 0;
  content: "";
  position: absolute;
  width: 1.7rem;
  height: 1.6rem;
  background: url(../img/common/icn_x.svg) no-repeat center center/contain;
}

.l-footer__bottom {
  display: flex;
  font-size: 1.6rem;
  color: #666666;
  -moz-column-gap: 6.4rem;
       column-gap: 6.4rem;
  border-top: 1px solid #e3e3e3;
  padding-top: 3rem;
  margin-top: 3rem;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .l-footer__bottom {
    font-size: 1.4rem;
    padding-top: 2rem;
    margin-top: 2rem;
    display: grid;
    row-gap: 1rem;
    grid-template-areas: "company company" "operation copyright";
  }
}
.l-footer__bottom .c-company {
  grid-area: company;
}
.l-footer__bottom .c-operation {
  grid-area: operation;
}
@media screen and (max-width: 767.98px) {
  .l-footer__bottom .c-operation {
    font-size: 1.2rem;
  }
}
.l-footer__bottom .c-copyright {
  margin-left: auto;
  font-size: 1.4rem;
  grid-area: copyright;
}
@media screen and (max-width: 767.98px) {
  .l-footer__bottom .c-copyright {
    font-size: 1.2rem;
  }
}

.u-pc {
  display: block;
}
@media screen and (max-width: 767.98px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .u-sp {
    display: block;
  }
}

.u-en {
  font-family: "Marcellus", "Noto Sans JP", sans-serif, serif;
  letter-spacing: 0;
}

.u-min {
  font-family: "Noto Serif", serif;
}

.u-roboto {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

.is-animate {
  transform: translateY(3rem);
  opacity: 0;
  transition: all 0.8s ease-in-out;
}
.is-animate.is-show {
  opacity: 1;
  transform: translateY(0);
}

#l-main {
  padding-top: 8rem;
  position: relative;
}
#l-main::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: url(../img/common/bg.jpg) no-repeat top center/cover;
  height: 100vh;
  z-index: -1;
}
@media screen and (max-width: 767.98px) {
  #l-main::after {
    background-image: url(../img/common/bg_sp.jpg);
    background-size: 100% 100%;
  }
}

.l-content__inner {
  padding-inline: 2rem;
  max-width: 100rem;
  margin-inline: auto;
  box-sizing: content-box;
}

.c-btn {
  font-size: 1.6rem;
  font-weight: 700;
  display: grid;
  place-content: center;
  min-height: 6rem;
  background-color: #000;
  color: #fff !important;
  text-decoration: none;
  transition: 0.3s background-color;
}
.c-btn.u-roboto {
  letter-spacing: 0.2em;
}
@media (any-hover: hover) {
  .c-btn:hover {
    background-color: #4d4d4d;
  }
}
.c-btn.c-arrow span {
  position: relative;
  display: inline-block;
  padding-right: 1.3rem;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  .c-btn.c-arrow span {
    padding-right: 1rem;
  }
}
.c-btn.c-arrow span::after {
  content: "";
  position: absolute;
  top: 58%;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-btn.c-arrow.l-size--large {
    font-size: 2rem;
    min-height: 8rem;
  }
  .c-btn.c-arrow.l-size--large span {
    padding-right: 2rem;
  }
  .c-btn.c-arrow.l-size--large span::after {
    width: 1rem;
    height: 1rem;
  }
}

.c-sectiont__ttl {
  text-align: center;
}
.c-sectiont__ttl .u-en,
.c-sectiont__ttl .u-jp {
  display: block;
}
.c-sectiont__ttl .u-en {
  font-size: 3.6rem;
}
@media screen and (max-width: 767.98px) {
  .c-sectiont__ttl .u-en {
    font-size: 2.4rem;
  }
}
.c-sectiont__ttl .u-jp {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 1.9rem;
}
@media screen and (max-width: 767.98px) {
  .c-sectiont__ttl .u-jp {
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }
}

.c-content__ttl.u-en {
  font-size: 4.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .c-content__ttl.u-en {
    font-size: 2.8rem;
  }
}

.l-kv {
  width: 100%;
  display: grid;
}

.l-kv__inner {
  grid-row: 1;
  grid-column: 1;
  max-width: 100rem;
  margin-inline: auto;
  display: grid;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .l-kv__inner {
    padding-inline: 2rem;
    text-align: center;
  }
}

.l-kv__img {
  grid-row: 1;
  grid-column: 1;
}

.u-fw--regular {
  font-weight: 400;
}

.u-fw--medium {
  font-weight: 500;
}

.u-fz--14 {
  font-size: 1.4rem;
  line-height: 1.8571428571;
}

.u-fz--18 {
  font-size: 1.8rem;
  line-height: 1.7777777778;
}

.u-fz--20 {
  font-size: 2rem;
  line-height: 0.6666666667;
}

.u-fz--30 {
  font-size: 3rem;
  line-height: 1.2;
}

@media screen and (max-width: 767.98px) {
  .u-fz-sp--12 {
    font-size: 1.2rem !important;
  }
}

@media screen and (max-width: 767.98px) {
  .u-fz-sp--14 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767.98px) {
  .u-fz-sp--16 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767.98px) {
  .u-fz-sp--20 {
    font-size: 2rem;
  }
}

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

.u-mt--20 {
  margin-top: 2rem;
}

.u-mt--30 {
  margin-top: 3rem;
}

.u-mt--40 {
  margin-top: 4rem;
}

.u-mt--50 {
  margin-top: 5rem !important;
}

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

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

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

.u-mb--40 {
  margin-bottom: 4rem;
}

@media screen and (max-width: 767.98px) {
  .u-mt-sp--10 {
    margin-top: 1rem !important;
  }
}

@media screen and (max-width: 767.98px) {
  .u-mt-sp--20 {
    margin-top: 2rem !important;
  }
}

@media screen and (max-width: 767.98px) {
  .u-mt-sp--30 {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 767.98px) {
  .u-mt-sp--40 {
    margin-top: 4rem;
  }
}

@media screen and (max-width: 767.98px) {
  .u-mt-sp--50 {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 767.98px) {
  .u-mt-sp--60 {
    margin-top: 6rem !important;
  }
}

@media screen and (max-width: 767.98px) {
  .u-mb-sp--10 {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 767.98px) {
  .u-mb-sp--20 {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 767.98px) {
  .u-mb-sp--30 {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 767.98px) {
  .u-mb-sp--40 {
    margin-bottom: 41rem;
  }
}

.p-img-cut {
  width: 100%;
  padding-bottom: max(3rem, 2.1428571429vw);
}
@media screen and (max-width: 767.98px) {
  .p-img-cut {
    padding-bottom: 2rem;
  }
}
.p-img-cut img {
  width: 100%;
}

.p-img-cut__block {
  display: block;
  width: 100%;
}
.p-img-cut__block + .p-img-cut__block {
  margin-top: max(3rem, 2.1428571429vw);
}
@media screen and (max-width: 767.98px) {
  .p-img-cut__block + .p-img-cut__block {
    margin-top: 1rem;
  }
}

.l-fixbanner {
  position: fixed;
  z-index: 990;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #6e8493;
  display: flex;
  justify-content: center;
  padding: 2.4rem;
  color: #fff;
  align-items: center;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s opacity;
  font-size: 1.8rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .l-fixbanner {
    display: block;
    padding: 1rem 1rem 1.7rem;
    font-size: 1.4rem;
    text-align: center;
  }
}
.l-fixbanner.is-show {
  opacity: 1;
  pointer-events: auto;
}

#link-buy {
  background-color: #fff;
  color: #476173 !important;
  width: 50rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  -moz-column-gap: 1.4rem;
       column-gap: 1.4rem;
  transition: 0.3s background-color, 0.3s color !important;
}
@media screen and (max-width: 767.98px) {
  #link-buy {
    display: block;
    width: 28rem;
    height: auto;
    margin: 1.2rem auto 0;
    padding: 1.5rem;
    font-size: 1.4rem;
  }
}
@media (any-hover: hover) {
  #link-buy:hover {
    opacity: 1 !important;
    background-color: #000;
    color: #fff !important;
  }
  #link-buy:hover .u-txtsize--large::after {
    background-color: #fff;
  }
}
#link-buy .u-txtsize--large {
  font-size: 150%;
  position: relative;
  top: -0.2rem;
  display: inline-block;
  padding-right: 3rem;
}
@media screen and (max-width: 767.98px) {
  #link-buy .u-txtsize--large {
    margin-top: 0.8rem;
    top: 0;
  }
}
#link-buy .u-txtsize--large::after {
  transition: 0.3s background-color;
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  right: 0;
  width: 2.2rem;
  height: 2rem;
  content: "";
  background-color: #476173;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.28 20"><title>arrow</title><path id="Icon_fa-solid-cart-arrow-down" data-name="Icon fa-solid-cart-arrow-down" class="cls-1" d="M.91,0C.39.02-.02.45,0,.97c.02.49.41.89.91.91h1.78c.15,0,.28.11.31.25l2.02,10.59c.25,1.33,1.41,2.28,2.76,2.28h11.26c.52.02.95-.39.97-.91.02-.52-.39-.95-.91-.97-.02,0-.04,0-.06,0H7.77c-.45,0-.84-.32-.92-.76l-.21-1.11h11.27c1.27,0,2.39-.85,2.72-2.08l1.6-5.95c.22-.83-.27-1.69-1.1-1.92-.13-.04-.27-.05-.41-.05h-6.68v3.99l.9-.9c.37-.37.96-.37,1.32,0,.37.37.37.96,0,1.32h0l-2.5,2.5c-.36.37-.96.37-1.32,0,0,0,0,0,0,0l-2.5-2.5c-.35-.38-.32-.98.07-1.32.36-.32.9-.32,1.25,0l.9.9V1.25h-7.49C4.3.49,3.53,0,2.68,0H.91ZM6.84,20c1.04,0,1.88-.84,1.88-1.88s-.84-1.88-1.88-1.88-1.88.84-1.88,1.88.84,1.88,1.88,1.88h0ZM19.97,18.13c0-1.04-.84-1.88-1.88-1.88s-1.88.84-1.88,1.88.84,1.88,1.88,1.88,1.88-.84,1.88-1.88h0Z"/></svg>');
          mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.28 20"><title>arrow</title><path id="Icon_fa-solid-cart-arrow-down" data-name="Icon fa-solid-cart-arrow-down" class="cls-1" d="M.91,0C.39.02-.02.45,0,.97c.02.49.41.89.91.91h1.78c.15,0,.28.11.31.25l2.02,10.59c.25,1.33,1.41,2.28,2.76,2.28h11.26c.52.02.95-.39.97-.91.02-.52-.39-.95-.91-.97-.02,0-.04,0-.06,0H7.77c-.45,0-.84-.32-.92-.76l-.21-1.11h11.27c1.27,0,2.39-.85,2.72-2.08l1.6-5.95c.22-.83-.27-1.69-1.1-1.92-.13-.04-.27-.05-.41-.05h-6.68v3.99l.9-.9c.37-.37.96-.37,1.32,0,.37.37.37.96,0,1.32h0l-2.5,2.5c-.36.37-.96.37-1.32,0,0,0,0,0,0,0l-2.5-2.5c-.35-.38-.32-.98.07-1.32.36-.32.9-.32,1.25,0l.9.9V1.25h-7.49C4.3.49,3.53,0,2.68,0H.91ZM6.84,20c1.04,0,1.88-.84,1.88-1.88s-.84-1.88-1.88-1.88-1.88.84-1.88,1.88.84,1.88,1.88,1.88h0ZM19.97,18.13c0-1.04-.84-1.88-1.88-1.88s-1.88.84-1.88,1.88.84,1.88,1.88,1.88,1.88-.84,1.88-1.88h0Z"/></svg>');
  display: block;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
/*# sourceMappingURL=common.css.map */