@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

/*--------------------------------------------------------------------------
    Global Variables
---------------------------------------------------------------------------*/
/*＊-------------------------------------------------------
サイト全体の基本設定
------------------------------------------------------- **/
html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100dvh;
  font-family: "Open Sans", sans-serif;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  position: relative;
  font-size: 1.6rem;
}

ul {
  list-style: none;
  padding: 0;
}

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

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

a {
  text-decoration: none;
  color: currentColor;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}

input[type=text] {
  padding: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
}

textarea {
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.l-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 10px 16px;
}
@media screen and (min-width: 1024px) {
  .l-header__inner {
    height: 96px;
    padding: 10px 40px;
  }
}
.l-header__logo {
  font-size: 16px;
  width: 150px;
}
@media screen and (min-width: 1024px) {
  .l-header__logo {
    width: 200px;
  }
}

.l-footer {
  position: sticky;
  top: 100%;
}
.l-footer__inner {
  width: min(90vw, 1200px);
  margin-inline: auto;
}

.l-footer-copyright {
  text-align: center;
  padding: 16px;
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .l-footer-copyright {
    padding: 24px;
  }
}
.l-footer-copyright__txt {
  font-size: 12px;
  color: #888;
}
@media screen and (min-width: 768px) {
  .l-footer-copyright__txt {
    font-size: 13px;
  }
}

.l-main {
  margin-top: 80px;
}
@media screen and (min-width: 1024px) {
  .l-main {
    margin-top: 96px;
  }
}

/*--------------------------------------------------------------------------
.l-sec
---------------------------------------------------------------------------*/
.l-sec__inner {
  width: min(90vw, 1200px);
  margin-inline: auto;
}

.l-accordion-list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media screen and (min-width: 1024px) {
  .l-accordion-list {
    row-gap: 24px;
  }
}

/*--------------------------------------------------------------------------

---------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------
Component: PC Nav 
-------------------------------------------------------------------------- */
.c-nav {
  display: flex;
  gap: 16px;
}
.c-nav__item a {
  display: inline-block;
  padding-block: 8px 5px;
  line-height: 1.5;
}
.c-nav--pc {
  display: none;
}
@media (min-width: 1024px) {
  .c-nav--pc {
    display: flex;
  }
}
.c-nav--footer this__item a {
  font-size: 1.4rem;
}

/* --------------------------------------------------------------------------
 Component: Drawer (SP Nav) 
 -------------------------------------------------------------------------- */
.c-drawer {
  width: 100vw;
  min-height: 100vh;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  padding-block: 50px;
  background-color: #ddd;
}
@media screen and (min-width: 1024px) {
  .c-drawer {
    display: none;
  }
}
.c-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  z-index: 998;
}
.c-drawer__list {
  width: 75vw;
  margin: 0 auto;
}
.c-drawer__item {
  border-bottom: 1px solid #434343;
}
.c-drawer__item a {
  padding: min(18px, 4vw) 0;
  display: block;
}
.c-drawer__item:first-child a {
  padding-top: 0;
}

/* --------------------------------------------------------------------------
Component: Hamburger Button 
-------------------------------------------------------------------------- */
.c-hamburger {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 999;
}
@media screen and (min-width: 1024px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger span {
  display: block;
  height: 1px;
  width: 40px;
  transition: all 0.3s;
  background: #000;
}
.c-hamburger.is-open {
  row-gap: 0px;
}
.c-hamburger.is-open span:nth-child(1) {
  margin-bottom: -2px;
  rotate: 45deg;
}
.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-open span:nth-child(3) {
  rotate: -45deg;
}

/* --------------------------------------------------------------------------
Component: Accordion 
-------------------------------------------------------------------------- */
.c-accordion {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.c-accordion__btn {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: #eee;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-accordion__icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.c-accordion .c-accordion__btn.is-open .c-accordion__icon {
  transform: rotate(-135deg);
}
.c-accordion__content {
  padding: 16px;
}

/*--------------------------------------------------------------------------
  Animation Utilities
---------------------------------------------------------------------------*/
.u-fade-up {
  opacity: 0;
}

.u-fade-up.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------------------
  Color Utilities
---------------------------------------------------------------------------*/
.text-white {
  color: #fff !important;
}

.text-black {
  color: #000000 !important;
}

/*--------------------------------------------------------------------------
  Display Utilities
--------------------------------------------------------------------------*/
.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

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

.flex {
  display: flex !important;
}

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

.grid {
  display: grid !important;
}

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

.hidden {
  display: none !important;
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.no-link {
  pointer-events: none;
  text-decoration: none !important;
  cursor: initial;
}

/*--------------------------------------------------------------------------
 Size Utilities
---------------------------------------------------------------------------*/
.mlr-auto {
  margin-inline: auto !important;
}

/* 8pxごと */
/* マージン関連クラス */
.m-0 {
  margin: "0px" !important;
}

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

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

.mtb-0 {
  margin-block: "0px" !important;
}

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

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

.mlr-0 {
  margin-inline: "0px" !important;
}

@media screen and (min-width: 768px) {
  .m-0-pc {
    margin: "0px" !important;
  }
  .mt-0-pc {
    margin-top: "0px" !important;
  }
  .mb-0-pc {
    margin-bottom: "0px" !important;
  }
  .mtb-0-pc {
    margin-block: "0px" !important;
  }
  .ml-0-pc {
    margin-left: "0px" !important;
  }
  .mr-0-pc {
    margin-right: "0px" !important;
  }
  .mlr-0-pc {
    margin-inline: "0px" !important;
  }
}
/* パディング関連クラス */
.p-0 {
  padding: "0px" !important;
}

.pt-0 {
  padding-top: "0px" !important;
}

.pb-0 {
  padding-bottom: "0px" !important;
}

.ptb-0 {
  padding-block: "0px" !important;
}

.pl-0 {
  padding-left: "0px" !important;
}

.pr-0 {
  padding-right: "0px" !important;
}

.plr-0 {
  padding-inline: "0px" !important;
}

@media screen and (min-width: 768px) {
  .p-0-pc {
    padding: "0px" !important;
  }
  .pt-0-pc {
    padding-top: "0px" !important;
  }
  .pb-0-pc {
    padding-bottom: "0px" !important;
  }
  .ptb-0-pc {
    padding-block: "0px" !important;
  }
  .pl-0-pc {
    padding-left: "0px" !important;
  }
  .pr-0-pc {
    padding-right: "0px" !important;
  }
  .plr-0-pc {
    padding-inline: "0px" !important;
  }
}
.fs-0 {
  font-size: "0px" !important;
}

@media screen and (min-width: 768px) {
  .fs-0-pc {
    font-size: "0px" !important;
  }
}
/* マージン関連クラス */
.m-8 {
  margin: "8px" !important;
}

.mt-8 {
  margin-top: "8px" !important;
}

.mb-8 {
  margin-bottom: "8px" !important;
}

.mtb-8 {
  margin-block: "8px" !important;
}

.ml-8 {
  margin-left: "8px" !important;
}

.mr-8 {
  margin-right: "8px" !important;
}

.mlr-8 {
  margin-inline: "8px" !important;
}

@media screen and (min-width: 768px) {
  .m-8-pc {
    margin: "8px" !important;
  }
  .mt-8-pc {
    margin-top: "8px" !important;
  }
  .mb-8-pc {
    margin-bottom: "8px" !important;
  }
  .mtb-8-pc {
    margin-block: "8px" !important;
  }
  .ml-8-pc {
    margin-left: "8px" !important;
  }
  .mr-8-pc {
    margin-right: "8px" !important;
  }
  .mlr-8-pc {
    margin-inline: "8px" !important;
  }
}
/* パディング関連クラス */
.p-8 {
  padding: "8px" !important;
}

.pt-8 {
  padding-top: "8px" !important;
}

.pb-8 {
  padding-bottom: "8px" !important;
}

.ptb-8 {
  padding-block: "8px" !important;
}

.pl-8 {
  padding-left: "8px" !important;
}

.pr-8 {
  padding-right: "8px" !important;
}

.plr-8 {
  padding-inline: "8px" !important;
}

@media screen and (min-width: 768px) {
  .p-8-pc {
    padding: "8px" !important;
  }
  .pt-8-pc {
    padding-top: "8px" !important;
  }
  .pb-8-pc {
    padding-bottom: "8px" !important;
  }
  .ptb-8-pc {
    padding-block: "8px" !important;
  }
  .pl-8-pc {
    padding-left: "8px" !important;
  }
  .pr-8-pc {
    padding-right: "8px" !important;
  }
  .plr-8-pc {
    padding-inline: "8px" !important;
  }
}
.fs-8 {
  font-size: "8px" !important;
}

@media screen and (min-width: 768px) {
  .fs-8-pc {
    font-size: "8px" !important;
  }
}
/* マージン関連クラス */
.m-16 {
  margin: "16px" !important;
}

.mt-16 {
  margin-top: "16px" !important;
}

.mb-16 {
  margin-bottom: "16px" !important;
}

.mtb-16 {
  margin-block: "16px" !important;
}

.ml-16 {
  margin-left: "16px" !important;
}

.mr-16 {
  margin-right: "16px" !important;
}

.mlr-16 {
  margin-inline: "16px" !important;
}

@media screen and (min-width: 768px) {
  .m-16-pc {
    margin: "16px" !important;
  }
  .mt-16-pc {
    margin-top: "16px" !important;
  }
  .mb-16-pc {
    margin-bottom: "16px" !important;
  }
  .mtb-16-pc {
    margin-block: "16px" !important;
  }
  .ml-16-pc {
    margin-left: "16px" !important;
  }
  .mr-16-pc {
    margin-right: "16px" !important;
  }
  .mlr-16-pc {
    margin-inline: "16px" !important;
  }
}
/* パディング関連クラス */
.p-16 {
  padding: "16px" !important;
}

.pt-16 {
  padding-top: "16px" !important;
}

.pb-16 {
  padding-bottom: "16px" !important;
}

.ptb-16 {
  padding-block: "16px" !important;
}

.pl-16 {
  padding-left: "16px" !important;
}

.pr-16 {
  padding-right: "16px" !important;
}

.plr-16 {
  padding-inline: "16px" !important;
}

@media screen and (min-width: 768px) {
  .p-16-pc {
    padding: "16px" !important;
  }
  .pt-16-pc {
    padding-top: "16px" !important;
  }
  .pb-16-pc {
    padding-bottom: "16px" !important;
  }
  .ptb-16-pc {
    padding-block: "16px" !important;
  }
  .pl-16-pc {
    padding-left: "16px" !important;
  }
  .pr-16-pc {
    padding-right: "16px" !important;
  }
  .plr-16-pc {
    padding-inline: "16px" !important;
  }
}
.fs-16 {
  font-size: "16px" !important;
}

@media screen and (min-width: 768px) {
  .fs-16-pc {
    font-size: "16px" !important;
  }
}
/* マージン関連クラス */
.m-24 {
  margin: "24px" !important;
}

.mt-24 {
  margin-top: "24px" !important;
}

.mb-24 {
  margin-bottom: "24px" !important;
}

.mtb-24 {
  margin-block: "24px" !important;
}

.ml-24 {
  margin-left: "24px" !important;
}

.mr-24 {
  margin-right: "24px" !important;
}

.mlr-24 {
  margin-inline: "24px" !important;
}

@media screen and (min-width: 768px) {
  .m-24-pc {
    margin: "24px" !important;
  }
  .mt-24-pc {
    margin-top: "24px" !important;
  }
  .mb-24-pc {
    margin-bottom: "24px" !important;
  }
  .mtb-24-pc {
    margin-block: "24px" !important;
  }
  .ml-24-pc {
    margin-left: "24px" !important;
  }
  .mr-24-pc {
    margin-right: "24px" !important;
  }
  .mlr-24-pc {
    margin-inline: "24px" !important;
  }
}
/* パディング関連クラス */
.p-24 {
  padding: "24px" !important;
}

.pt-24 {
  padding-top: "24px" !important;
}

.pb-24 {
  padding-bottom: "24px" !important;
}

.ptb-24 {
  padding-block: "24px" !important;
}

.pl-24 {
  padding-left: "24px" !important;
}

.pr-24 {
  padding-right: "24px" !important;
}

.plr-24 {
  padding-inline: "24px" !important;
}

@media screen and (min-width: 768px) {
  .p-24-pc {
    padding: "24px" !important;
  }
  .pt-24-pc {
    padding-top: "24px" !important;
  }
  .pb-24-pc {
    padding-bottom: "24px" !important;
  }
  .ptb-24-pc {
    padding-block: "24px" !important;
  }
  .pl-24-pc {
    padding-left: "24px" !important;
  }
  .pr-24-pc {
    padding-right: "24px" !important;
  }
  .plr-24-pc {
    padding-inline: "24px" !important;
  }
}
.fs-24 {
  font-size: "24px" !important;
}

@media screen and (min-width: 768px) {
  .fs-24-pc {
    font-size: "24px" !important;
  }
}
/* マージン関連クラス */
.m-32 {
  margin: "32px" !important;
}

.mt-32 {
  margin-top: "32px" !important;
}

.mb-32 {
  margin-bottom: "32px" !important;
}

.mtb-32 {
  margin-block: "32px" !important;
}

.ml-32 {
  margin-left: "32px" !important;
}

.mr-32 {
  margin-right: "32px" !important;
}

.mlr-32 {
  margin-inline: "32px" !important;
}

@media screen and (min-width: 768px) {
  .m-32-pc {
    margin: "32px" !important;
  }
  .mt-32-pc {
    margin-top: "32px" !important;
  }
  .mb-32-pc {
    margin-bottom: "32px" !important;
  }
  .mtb-32-pc {
    margin-block: "32px" !important;
  }
  .ml-32-pc {
    margin-left: "32px" !important;
  }
  .mr-32-pc {
    margin-right: "32px" !important;
  }
  .mlr-32-pc {
    margin-inline: "32px" !important;
  }
}
/* パディング関連クラス */
.p-32 {
  padding: "32px" !important;
}

.pt-32 {
  padding-top: "32px" !important;
}

.pb-32 {
  padding-bottom: "32px" !important;
}

.ptb-32 {
  padding-block: "32px" !important;
}

.pl-32 {
  padding-left: "32px" !important;
}

.pr-32 {
  padding-right: "32px" !important;
}

.plr-32 {
  padding-inline: "32px" !important;
}

@media screen and (min-width: 768px) {
  .p-32-pc {
    padding: "32px" !important;
  }
  .pt-32-pc {
    padding-top: "32px" !important;
  }
  .pb-32-pc {
    padding-bottom: "32px" !important;
  }
  .ptb-32-pc {
    padding-block: "32px" !important;
  }
  .pl-32-pc {
    padding-left: "32px" !important;
  }
  .pr-32-pc {
    padding-right: "32px" !important;
  }
  .plr-32-pc {
    padding-inline: "32px" !important;
  }
}
.fs-32 {
  font-size: "32px" !important;
}

@media screen and (min-width: 768px) {
  .fs-32-pc {
    font-size: "32px" !important;
  }
}
/* マージン関連クラス */
.m-40 {
  margin: "40px" !important;
}

.mt-40 {
  margin-top: "40px" !important;
}

.mb-40 {
  margin-bottom: "40px" !important;
}

.mtb-40 {
  margin-block: "40px" !important;
}

.ml-40 {
  margin-left: "40px" !important;
}

.mr-40 {
  margin-right: "40px" !important;
}

.mlr-40 {
  margin-inline: "40px" !important;
}

@media screen and (min-width: 768px) {
  .m-40-pc {
    margin: "40px" !important;
  }
  .mt-40-pc {
    margin-top: "40px" !important;
  }
  .mb-40-pc {
    margin-bottom: "40px" !important;
  }
  .mtb-40-pc {
    margin-block: "40px" !important;
  }
  .ml-40-pc {
    margin-left: "40px" !important;
  }
  .mr-40-pc {
    margin-right: "40px" !important;
  }
  .mlr-40-pc {
    margin-inline: "40px" !important;
  }
}
/* パディング関連クラス */
.p-40 {
  padding: "40px" !important;
}

.pt-40 {
  padding-top: "40px" !important;
}

.pb-40 {
  padding-bottom: "40px" !important;
}

.ptb-40 {
  padding-block: "40px" !important;
}

.pl-40 {
  padding-left: "40px" !important;
}

.pr-40 {
  padding-right: "40px" !important;
}

.plr-40 {
  padding-inline: "40px" !important;
}

@media screen and (min-width: 768px) {
  .p-40-pc {
    padding: "40px" !important;
  }
  .pt-40-pc {
    padding-top: "40px" !important;
  }
  .pb-40-pc {
    padding-bottom: "40px" !important;
  }
  .ptb-40-pc {
    padding-block: "40px" !important;
  }
  .pl-40-pc {
    padding-left: "40px" !important;
  }
  .pr-40-pc {
    padding-right: "40px" !important;
  }
  .plr-40-pc {
    padding-inline: "40px" !important;
  }
}
.fs-40 {
  font-size: "40px" !important;
}

@media screen and (min-width: 768px) {
  .fs-40-pc {
    font-size: "40px" !important;
  }
}
/* マージン関連クラス */
.m-48 {
  margin: "48px" !important;
}

.mt-48 {
  margin-top: "48px" !important;
}

.mb-48 {
  margin-bottom: "48px" !important;
}

.mtb-48 {
  margin-block: "48px" !important;
}

.ml-48 {
  margin-left: "48px" !important;
}

.mr-48 {
  margin-right: "48px" !important;
}

.mlr-48 {
  margin-inline: "48px" !important;
}

@media screen and (min-width: 768px) {
  .m-48-pc {
    margin: "48px" !important;
  }
  .mt-48-pc {
    margin-top: "48px" !important;
  }
  .mb-48-pc {
    margin-bottom: "48px" !important;
  }
  .mtb-48-pc {
    margin-block: "48px" !important;
  }
  .ml-48-pc {
    margin-left: "48px" !important;
  }
  .mr-48-pc {
    margin-right: "48px" !important;
  }
  .mlr-48-pc {
    margin-inline: "48px" !important;
  }
}
/* パディング関連クラス */
.p-48 {
  padding: "48px" !important;
}

.pt-48 {
  padding-top: "48px" !important;
}

.pb-48 {
  padding-bottom: "48px" !important;
}

.ptb-48 {
  padding-block: "48px" !important;
}

.pl-48 {
  padding-left: "48px" !important;
}

.pr-48 {
  padding-right: "48px" !important;
}

.plr-48 {
  padding-inline: "48px" !important;
}

@media screen and (min-width: 768px) {
  .p-48-pc {
    padding: "48px" !important;
  }
  .pt-48-pc {
    padding-top: "48px" !important;
  }
  .pb-48-pc {
    padding-bottom: "48px" !important;
  }
  .ptb-48-pc {
    padding-block: "48px" !important;
  }
  .pl-48-pc {
    padding-left: "48px" !important;
  }
  .pr-48-pc {
    padding-right: "48px" !important;
  }
  .plr-48-pc {
    padding-inline: "48px" !important;
  }
}
.fs-48 {
  font-size: "48px" !important;
}

@media screen and (min-width: 768px) {
  .fs-48-pc {
    font-size: "48px" !important;
  }
}
/* マージン関連クラス */
.m-56 {
  margin: "56px" !important;
}

.mt-56 {
  margin-top: "56px" !important;
}

.mb-56 {
  margin-bottom: "56px" !important;
}

.mtb-56 {
  margin-block: "56px" !important;
}

.ml-56 {
  margin-left: "56px" !important;
}

.mr-56 {
  margin-right: "56px" !important;
}

.mlr-56 {
  margin-inline: "56px" !important;
}

@media screen and (min-width: 768px) {
  .m-56-pc {
    margin: "56px" !important;
  }
  .mt-56-pc {
    margin-top: "56px" !important;
  }
  .mb-56-pc {
    margin-bottom: "56px" !important;
  }
  .mtb-56-pc {
    margin-block: "56px" !important;
  }
  .ml-56-pc {
    margin-left: "56px" !important;
  }
  .mr-56-pc {
    margin-right: "56px" !important;
  }
  .mlr-56-pc {
    margin-inline: "56px" !important;
  }
}
/* パディング関連クラス */
.p-56 {
  padding: "56px" !important;
}

.pt-56 {
  padding-top: "56px" !important;
}

.pb-56 {
  padding-bottom: "56px" !important;
}

.ptb-56 {
  padding-block: "56px" !important;
}

.pl-56 {
  padding-left: "56px" !important;
}

.pr-56 {
  padding-right: "56px" !important;
}

.plr-56 {
  padding-inline: "56px" !important;
}

@media screen and (min-width: 768px) {
  .p-56-pc {
    padding: "56px" !important;
  }
  .pt-56-pc {
    padding-top: "56px" !important;
  }
  .pb-56-pc {
    padding-bottom: "56px" !important;
  }
  .ptb-56-pc {
    padding-block: "56px" !important;
  }
  .pl-56-pc {
    padding-left: "56px" !important;
  }
  .pr-56-pc {
    padding-right: "56px" !important;
  }
  .plr-56-pc {
    padding-inline: "56px" !important;
  }
}
.fs-56 {
  font-size: "56px" !important;
}

@media screen and (min-width: 768px) {
  .fs-56-pc {
    font-size: "56px" !important;
  }
}
/* マージン関連クラス */
.m-64 {
  margin: "64px" !important;
}

.mt-64 {
  margin-top: "64px" !important;
}

.mb-64 {
  margin-bottom: "64px" !important;
}

.mtb-64 {
  margin-block: "64px" !important;
}

.ml-64 {
  margin-left: "64px" !important;
}

.mr-64 {
  margin-right: "64px" !important;
}

.mlr-64 {
  margin-inline: "64px" !important;
}

@media screen and (min-width: 768px) {
  .m-64-pc {
    margin: "64px" !important;
  }
  .mt-64-pc {
    margin-top: "64px" !important;
  }
  .mb-64-pc {
    margin-bottom: "64px" !important;
  }
  .mtb-64-pc {
    margin-block: "64px" !important;
  }
  .ml-64-pc {
    margin-left: "64px" !important;
  }
  .mr-64-pc {
    margin-right: "64px" !important;
  }
  .mlr-64-pc {
    margin-inline: "64px" !important;
  }
}
/* パディング関連クラス */
.p-64 {
  padding: "64px" !important;
}

.pt-64 {
  padding-top: "64px" !important;
}

.pb-64 {
  padding-bottom: "64px" !important;
}

.ptb-64 {
  padding-block: "64px" !important;
}

.pl-64 {
  padding-left: "64px" !important;
}

.pr-64 {
  padding-right: "64px" !important;
}

.plr-64 {
  padding-inline: "64px" !important;
}

@media screen and (min-width: 768px) {
  .p-64-pc {
    padding: "64px" !important;
  }
  .pt-64-pc {
    padding-top: "64px" !important;
  }
  .pb-64-pc {
    padding-bottom: "64px" !important;
  }
  .ptb-64-pc {
    padding-block: "64px" !important;
  }
  .pl-64-pc {
    padding-left: "64px" !important;
  }
  .pr-64-pc {
    padding-right: "64px" !important;
  }
  .plr-64-pc {
    padding-inline: "64px" !important;
  }
}
.fs-64 {
  font-size: "64px" !important;
}

@media screen and (min-width: 768px) {
  .fs-64-pc {
    font-size: "64px" !important;
  }
}
/* マージン関連クラス */
.m-72 {
  margin: "72px" !important;
}

.mt-72 {
  margin-top: "72px" !important;
}

.mb-72 {
  margin-bottom: "72px" !important;
}

.mtb-72 {
  margin-block: "72px" !important;
}

.ml-72 {
  margin-left: "72px" !important;
}

.mr-72 {
  margin-right: "72px" !important;
}

.mlr-72 {
  margin-inline: "72px" !important;
}

@media screen and (min-width: 768px) {
  .m-72-pc {
    margin: "72px" !important;
  }
  .mt-72-pc {
    margin-top: "72px" !important;
  }
  .mb-72-pc {
    margin-bottom: "72px" !important;
  }
  .mtb-72-pc {
    margin-block: "72px" !important;
  }
  .ml-72-pc {
    margin-left: "72px" !important;
  }
  .mr-72-pc {
    margin-right: "72px" !important;
  }
  .mlr-72-pc {
    margin-inline: "72px" !important;
  }
}
/* パディング関連クラス */
.p-72 {
  padding: "72px" !important;
}

.pt-72 {
  padding-top: "72px" !important;
}

.pb-72 {
  padding-bottom: "72px" !important;
}

.ptb-72 {
  padding-block: "72px" !important;
}

.pl-72 {
  padding-left: "72px" !important;
}

.pr-72 {
  padding-right: "72px" !important;
}

.plr-72 {
  padding-inline: "72px" !important;
}

@media screen and (min-width: 768px) {
  .p-72-pc {
    padding: "72px" !important;
  }
  .pt-72-pc {
    padding-top: "72px" !important;
  }
  .pb-72-pc {
    padding-bottom: "72px" !important;
  }
  .ptb-72-pc {
    padding-block: "72px" !important;
  }
  .pl-72-pc {
    padding-left: "72px" !important;
  }
  .pr-72-pc {
    padding-right: "72px" !important;
  }
  .plr-72-pc {
    padding-inline: "72px" !important;
  }
}
.fs-72 {
  font-size: "72px" !important;
}

@media screen and (min-width: 768px) {
  .fs-72-pc {
    font-size: "72px" !important;
  }
}
/* マージン関連クラス */
.m-80 {
  margin: "80px" !important;
}

.mt-80 {
  margin-top: "80px" !important;
}

.mb-80 {
  margin-bottom: "80px" !important;
}

.mtb-80 {
  margin-block: "80px" !important;
}

.ml-80 {
  margin-left: "80px" !important;
}

.mr-80 {
  margin-right: "80px" !important;
}

.mlr-80 {
  margin-inline: "80px" !important;
}

@media screen and (min-width: 768px) {
  .m-80-pc {
    margin: "80px" !important;
  }
  .mt-80-pc {
    margin-top: "80px" !important;
  }
  .mb-80-pc {
    margin-bottom: "80px" !important;
  }
  .mtb-80-pc {
    margin-block: "80px" !important;
  }
  .ml-80-pc {
    margin-left: "80px" !important;
  }
  .mr-80-pc {
    margin-right: "80px" !important;
  }
  .mlr-80-pc {
    margin-inline: "80px" !important;
  }
}
/* パディング関連クラス */
.p-80 {
  padding: "80px" !important;
}

.pt-80 {
  padding-top: "80px" !important;
}

.pb-80 {
  padding-bottom: "80px" !important;
}

.ptb-80 {
  padding-block: "80px" !important;
}

.pl-80 {
  padding-left: "80px" !important;
}

.pr-80 {
  padding-right: "80px" !important;
}

.plr-80 {
  padding-inline: "80px" !important;
}

@media screen and (min-width: 768px) {
  .p-80-pc {
    padding: "80px" !important;
  }
  .pt-80-pc {
    padding-top: "80px" !important;
  }
  .pb-80-pc {
    padding-bottom: "80px" !important;
  }
  .ptb-80-pc {
    padding-block: "80px" !important;
  }
  .pl-80-pc {
    padding-left: "80px" !important;
  }
  .pr-80-pc {
    padding-right: "80px" !important;
  }
  .plr-80-pc {
    padding-inline: "80px" !important;
  }
}
.fs-80 {
  font-size: "80px" !important;
}

@media screen and (min-width: 768px) {
  .fs-80-pc {
    font-size: "80px" !important;
  }
}
/* マージン関連クラス */
.m-88 {
  margin: "88px" !important;
}

.mt-88 {
  margin-top: "88px" !important;
}

.mb-88 {
  margin-bottom: "88px" !important;
}

.mtb-88 {
  margin-block: "88px" !important;
}

.ml-88 {
  margin-left: "88px" !important;
}

.mr-88 {
  margin-right: "88px" !important;
}

.mlr-88 {
  margin-inline: "88px" !important;
}

@media screen and (min-width: 768px) {
  .m-88-pc {
    margin: "88px" !important;
  }
  .mt-88-pc {
    margin-top: "88px" !important;
  }
  .mb-88-pc {
    margin-bottom: "88px" !important;
  }
  .mtb-88-pc {
    margin-block: "88px" !important;
  }
  .ml-88-pc {
    margin-left: "88px" !important;
  }
  .mr-88-pc {
    margin-right: "88px" !important;
  }
  .mlr-88-pc {
    margin-inline: "88px" !important;
  }
}
/* パディング関連クラス */
.p-88 {
  padding: "88px" !important;
}

.pt-88 {
  padding-top: "88px" !important;
}

.pb-88 {
  padding-bottom: "88px" !important;
}

.ptb-88 {
  padding-block: "88px" !important;
}

.pl-88 {
  padding-left: "88px" !important;
}

.pr-88 {
  padding-right: "88px" !important;
}

.plr-88 {
  padding-inline: "88px" !important;
}

@media screen and (min-width: 768px) {
  .p-88-pc {
    padding: "88px" !important;
  }
  .pt-88-pc {
    padding-top: "88px" !important;
  }
  .pb-88-pc {
    padding-bottom: "88px" !important;
  }
  .ptb-88-pc {
    padding-block: "88px" !important;
  }
  .pl-88-pc {
    padding-left: "88px" !important;
  }
  .pr-88-pc {
    padding-right: "88px" !important;
  }
  .plr-88-pc {
    padding-inline: "88px" !important;
  }
}
.fs-88 {
  font-size: "88px" !important;
}

@media screen and (min-width: 768px) {
  .fs-88-pc {
    font-size: "88px" !important;
  }
}
/* マージン関連クラス */
.m-96 {
  margin: "96px" !important;
}

.mt-96 {
  margin-top: "96px" !important;
}

.mb-96 {
  margin-bottom: "96px" !important;
}

.mtb-96 {
  margin-block: "96px" !important;
}

.ml-96 {
  margin-left: "96px" !important;
}

.mr-96 {
  margin-right: "96px" !important;
}

.mlr-96 {
  margin-inline: "96px" !important;
}

@media screen and (min-width: 768px) {
  .m-96-pc {
    margin: "96px" !important;
  }
  .mt-96-pc {
    margin-top: "96px" !important;
  }
  .mb-96-pc {
    margin-bottom: "96px" !important;
  }
  .mtb-96-pc {
    margin-block: "96px" !important;
  }
  .ml-96-pc {
    margin-left: "96px" !important;
  }
  .mr-96-pc {
    margin-right: "96px" !important;
  }
  .mlr-96-pc {
    margin-inline: "96px" !important;
  }
}
/* パディング関連クラス */
.p-96 {
  padding: "96px" !important;
}

.pt-96 {
  padding-top: "96px" !important;
}

.pb-96 {
  padding-bottom: "96px" !important;
}

.ptb-96 {
  padding-block: "96px" !important;
}

.pl-96 {
  padding-left: "96px" !important;
}

.pr-96 {
  padding-right: "96px" !important;
}

.plr-96 {
  padding-inline: "96px" !important;
}

@media screen and (min-width: 768px) {
  .p-96-pc {
    padding: "96px" !important;
  }
  .pt-96-pc {
    padding-top: "96px" !important;
  }
  .pb-96-pc {
    padding-bottom: "96px" !important;
  }
  .ptb-96-pc {
    padding-block: "96px" !important;
  }
  .pl-96-pc {
    padding-left: "96px" !important;
  }
  .pr-96-pc {
    padding-right: "96px" !important;
  }
  .plr-96-pc {
    padding-inline: "96px" !important;
  }
}
.fs-96 {
  font-size: "96px" !important;
}

@media screen and (min-width: 768px) {
  .fs-96-pc {
    font-size: "96px" !important;
  }
}
/* width */
.w-fit {
  width: fit-content !important;
}

.w-100 {
  width: 100% !important;
}

/* Max Width */
.max-w-content {
  max-width: 1200px !important;
}

.max-w-100 {
  max-width: 100% !important;
}

/*--------------------------------------------------------------------------
  Text Utilities
---------------------------------------------------------------------------*/
/* Text Alignment */
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

/* Font Weight */
.font-300 {
  font-weight: 300 !important;
}

.font-400 {
  font-weight: 400 !important;
}

.font-500 {
  font-weight: 500 !important;
}

.font-600 {
  font-weight: 600 !important;
}

.font-700 {
  font-weight: 700 !important;
}

.font-800 {
  font-weight: 800 !important;
}

.font-900 {
  font-weight: 900 !important;
}

/* Line Height */
.lh-10 {
  line-height: 1 !important;
}

.lh-11 {
  line-height: 1.1 !important;
}

.lh-12 {
  line-height: 1.2 !important;
}

.lh-13 {
  line-height: 1.3 !important;
}

.lh-14 {
  line-height: 1.4 !important;
}

.lh-15 {
  line-height: 1.5 !important;
}

.lh-16 {
  line-height: 1.6 !important;
}

.lh-18 {
  line-height: 1.8 !important;
}

.lh-20 {
  line-height: 2 !important;
}

/* Text Decoration */
.underline {
  text-decoration: underline;
}

/* Text Transform */
.uppercase {
  text-transform: uppercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.normal-case {
  text-transform: none !important;
}/*# sourceMappingURL=style.css.map */