@charset "UTF-8";

/* ==========================================================================
    Common Styles
============================================================================= */
:root {
  --font1: 'LINE Seed JP', sans-serif;
  --font2: "din-2014", sans-serif;
  --font3: "Luckiest Guy", cursive;
  --main-color: #eb4b55;
  --pale-color: #fff2e4;
  --text-color: #333;
}

/* -------------------------------------
    font
------------------------------------- */
@font-face {
  font-family: 'LINE Seed JP';
  src: url("../fonts/LINESeedJP_OTF_Rg.woff2") format('woff2'), url("../fonts/LINESeedJP_OTF_Rg.woff") format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'LINE Seed JP';
  src: url("../fonts/LINESeedJP_OTF_Bd.woff2") format('woff2'), url("../fonts/LINESeedJP_OTF_Bd.woff") format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'LINE Seed JP';
  src: url("../fonts/LINESeedJP_OTF_Eb.woff2") format('woff2'), url("../fonts/LINESeedJP_OTF_Eb.woff") format('woff');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-display: swap;
  font-family: 'Luckiest Guy';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/luckiest-guy.woff2") format('woff2');
}

/* -------------------------------------
    animation
------------------------------------- */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slid-in-up {
  0% {
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slid-in-up {
  0% {
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
    visibility: visible;
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes img-fade-in {
  0% {
    opacity: 0;
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes img-fade-in {
  0% {
    opacity: 0;
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes flowing {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1240px 0;
  }
}
@keyframes flowing {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1240px 0;
  }
}
@-webkit-keyframes infinity-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinity-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

/* -------------------------------------
    base
------------------------------------- */
html {
  scroll-behavior: smooth;
}

/* -------------------------------------
    header
------------------------------------- */
.l-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px min(10.4166vw, 150px) 0 min(3.4722vw, 50px);
  position: relative;
}
.l-header .logo {
  max-width: 318px;
  width: 22.0833vw;
}
@media screen and (max-width: 767.98px) {
  .l-header {
    padding: 30px 20px 0;
  }
  .l-header .logo {
    width: 190px;
  }
}

/* -------------------------------------
    header nav
------------------------------------- */
.l-nav {
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.l-nav a:hover {
  opacity: 0.7;
}
.l-nav__ttl {
  color: #d73641;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.l-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(10.2564vw, 30px);
}
.l-nav__list .nav-link {
  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;
  gap: 8px 18px;
}
.l-nav__list .nav-link-text {
  font-size: clamp(1rem, 0.9722vw, 1.4rem);
}
.l-nav__sublist {
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(3.4722vw, 50px);
}
.l-nav__sublist img {
  width: 30px;
}
.l-nav.is-open {
  background-color: #fff;
  border: solid 5px #d73641;
  -webkit-border-end: 0;
          border-inline-end: 0;
  -webkit-border-before: 0;
          border-block-start: 0;
  border-radius: 0 0 0 30px;
  height: auto;
  -webkit-margin-start: 120px;
          margin-inline-start: 120px;
  overflow-y: scroll;
  position: fixed;
  left: 0;
  top: 0;
  width: calc(100% - 120px);
  z-index: 100;
}
.l-nav.is-open .l-nav__inner {
  padding: 68px min(3.2638vw, 47px) 80px min(7.36111vw, 106px);
}
.l-nav.is-open .l-nav__inner::after {
  background: url("../images/common/bg_nav.svg") no-repeat center/100% auto;
  content: "";
  position: fixed;
  right: 0;
  bottom: calc(20% + 4px);
  height: min(13.055vw, 188px);
  width: min(20.3472vw, 293px);
}
.l-nav.is-open .l-nav__list {
  -webkit-border-after: solid 1px #eee;
          border-block-end: solid 1px #eee;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  /* max-width: 1200px; */
  margin: 50px auto 60px;
  -webkit-padding-after: 60px;
          padding-block-end: 60px;
  position: relative;
}
.l-nav.is-open .l-nav__list .nav-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.l-nav.is-open .l-nav__list .nav-link img {
  -ms-flex-preferred-size: 35px;
      flex-basis: 35px;
}
.l-nav.is-open .l-nav__list .nav-link-text,
.l-nav.is-open .l-nav__list .sub-menu {
  font-size: 2rem;
  text-align: left;
}
.l-nav.is-open .l-nav__list .nav-link-text .d-b,
.l-nav.is-open .l-nav__list .sub-menu .d-b {
  display: inline-block;
}
.l-nav.is-open .l-nav__list .sub-list {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-start: 48px;
          margin-inline-start: 48px;
}
.l-nav.is-open .l-nav__list .sub-list > li {
  position: relative;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  text-align: left;
}
.l-nav.is-open .l-nav__list .sub-list > li::before {
  background-color: var(--main-color);
  content: "";
  height: 2px;
  width: 10px;
  position: absolute;
  left: 0;
  top: 10px;
}
.l-nav.is-open .l-nav__list .sub-list > li + li {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
}
.l-nav.is-open .l-nav__list .open-hidden {
  display: none;
}
.l-nav:not(.is-open) {
  margin-inline: auto min(4.1666vw, 60px);
}
.l-nav:not(.is-open) .l-nav__ttl,
.l-nav:not(.is-open) .l-nav__sublist,
.l-nav:not(.is-open) .sub-list,
.l-nav:not(.is-open) .sub-menu {
  display: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.l-nav::-webkit-scrollbar {
  width: 5px;
}
.l-nav::-webkit-scrollbar-track {
  background-color: #fff;
}
.l-nav::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .l-nav.is-open .l-nav__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (auto)[3];
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 60px;
  }
  .l-nav.is-open .l-nav__list > li {
    -ms-flex-preferred-size: calc(100% / 2 - 20px);
        flex-basis: calc(100% / 2 - 20px);
  }
}
@media (min-width: 2000px) {
  .l-nav.is-open .l-nav__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .l-nav__item {
    text-align: center;
  }
  .l-nav__sublist {
    -webkit-padding-end: min(20.1388vw, 290px);
            padding-inline-end: min(20.1388vw, 290px);
  }
  .l-nav__list .nav-link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-nav__list .nav-link-text {
    white-space: nowrap;
  }
  .l-nav.is-open {
    height: calc(100vh - 20%);
  }
}
@media (max-width: 991.98px) {
  .l-nav.is-open .l-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 824.98px) {
  .l-nav:not(.is-open) {
    margin-inline: 10px;
  }
  .l-nav__list {
    gap: 10px;
  }
}
@media screen and (max-width: 767.98px) {
  .l-nav.is-open {
    height: calc(100vh - 75px);
    -webkit-margin-start: 20px;
            margin-inline-start: 20px;
    width: calc(100% - 20px);
  }
  .l-nav.is-open .l-nav__inner {
    padding: 48px 20px 40px min(10.2564vw, 40px);
    position: relative;
  }
  .l-nav.is-open .l-nav__inner::after {
    bottom: 0;
    height: 114px;
    position: absolute;
    width: 180px;
  }
  .l-nav.is-open .l-nav__list {
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
    -webkit-padding-after: 40px;
            padding-block-end: 40px;
  }
  .l-nav.is-open .l-nav__list > li {
    width: 100%;
  }
  .l-nav.is-open .l-nav__list .nav-link-text,
  .l-nav.is-open .l-nav__list .sub-menu {
    font-size: 1.8rem;
  }
  .l-nav__sublist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .l-nav:not(.is-open) .l-nav__list {
    display: none;
  }
}
.c-hamburger {
  background-color: var(--main-color);
  border-radius: 0 0 0 30px;
  color: #fff;
  letter-spacing: 0.05em;
  max-width: 150px;
  max-height: 150px;
  position: fixed;
  right: 0;
  top: 0;
  height: 10.4166vw;
  width: 10.4166vw;
  z-index: 100;
}
.c-hamburger__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.c-hamburger__bar::before,
.c-hamburger__bar::after {
  background-color: #fff;
  border-radius: 2px;
  content: "";
  display: block;
  height: 4px;
  width: 30px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.c-hamburger__bar::before {
  -webkit-animation: line01 0.75s forwards;
          animation: line01 0.75s forwards;
}
.c-hamburger__bar::after {
  -webkit-animation: line02 0.75s forwards;
          animation: line02 0.75s forwards;
}
.c-hamburger b {
  display: block;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
}
@media screen and (max-width: 767.98px) {
  .c-hamburger {
    height: 86px;
    width: 86px;
    font-size: 1.3rem;
  }
}
.is-open .c-hamburger {
  background-color: #fff;
  color: #d73641;
}
.is-open .c-hamburger__bar::before,
.is-open .c-hamburger__bar::after {
  background-color: #d73641;
  height: 3px;
  width: 30px;
}
.is-open .c-hamburger__bar::before {
  -webkit-animation: line01_2 0.75s forwards;
          animation: line01_2 0.75s forwards;
}
.is-open .c-hamburger__bar::after {
  -webkit-animation: line02_2 0.75s forwards;
          animation: line02_2 0.75s forwards;
}
.c-overlay {
  background: rgba(0,0,0,0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
@-webkit-keyframes line01 {
  0% {
    -webkit-transform: translateY(6px) rotate(30deg);
            transform: translateY(6px) rotate(30deg);
  }
  50% {
    -webkit-transform: translateY(6px) rotate(0);
            transform: translateY(6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes line01 {
  0% {
    -webkit-transform: translateY(6px) rotate(30deg);
            transform: translateY(6px) rotate(30deg);
  }
  50% {
    -webkit-transform: translateY(6px) rotate(0);
            transform: translateY(6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes line02 {
  0% {
    -webkit-transform: translateY(-6px) rotate(-30deg);
            transform: translateY(-6px) rotate(-30deg);
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(0);
            transform: translateY(-6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes line02 {
  0% {
    -webkit-transform: translateY(-6px) rotate(-30deg);
            transform: translateY(-6px) rotate(-30deg);
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(0);
            transform: translateY(-6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes line01_2 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(6px) rotate(0);
            transform: translateY(6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(6px) rotate(30deg);
            transform: translateY(6px) rotate(30deg);
  }
}
@keyframes line01_2 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(6px) rotate(0);
            transform: translateY(6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(6px) rotate(30deg);
            transform: translateY(6px) rotate(30deg);
  }
}
@-webkit-keyframes line02_2 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(0);
            transform: translateY(-6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-6px) rotate(-30deg);
            transform: translateY(-6px) rotate(-30deg);
  }
}
@keyframes line02_2 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(0);
            transform: translateY(-6px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-6px) rotate(-30deg);
            transform: translateY(-6px) rotate(-30deg);
  }
}

/* -------------------------------------
    footer
------------------------------------- */
.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-height: 128px;
  max-width: 128px;
  height: 8.888vw;
  width: 8.888vw;
  z-index: 90;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.page-top:hover {
  opacity: 1;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
@media screen and (max-width: 767.98px) {
  .page-top {
    right: 20px;
    bottom: 20px;
    height: 80px;
    width: 80px;
  }
}
.l-footer {
  -webkit-padding-before: 64px;
          padding-block-start: 64px;
}
.c-footer__cont {
  -webkit-border-before: solid 1px #eee;
          border-block-start: solid 1px #eee;
  gap: 0 min(5.5556vw, 80px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(24.1667vw, 348px) auto;
  grid-template-columns: min(24.1667vw, 348px) auto;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  max-width: 1275px;
  margin-inline: auto;
  padding-block: 100px 85px;
}
.c-footer__cont a:hover {
  opacity: 0.7;
}
.c-footer__info {
  -ms-flex-preferred-size: min(24.1667vw, 348px);
      flex-basis: min(24.1667vw, 348px);
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
.c-footer__info .logo {
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
}
.c-footer__info .logo img {
  -webkit-margin-after: 50px;
          margin-block-end: 50px;
}
.c-footer__info .logo b {
  display: block;
  font-size: clamp(1.8rem, 1.388vw, 2rem);
}
.c-footer__info .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.c-footer__info .contact > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  font-weight: bold;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
  letter-spacing: 0.1em;
  line-height: 1;
}
.c-footer__info .contact > div dt {
  -ms-flex-preferred-size: 4em;
      flex-basis: 4em;
}
.c-footer__info .contact > div.tel dt {
  letter-spacing: 1em;
  -webkit-margin-end: -0.5em;
          margin-inline-end: -0.5em;
}
.c-footer__info .contact > div .is-hidden {
  display: none;
}
.c-footer__navgroup {
  -ms-flex-preferred-size: calc(100% - min(24.1667vw, 348px) - min(5.5556vw, 80px));
      flex-basis: calc(100% - min(24.1667vw, 348px) - min(5.5556vw, 80px));
}
.c-footer__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[3];
  grid-template-columns: repeat(3, auto);
  gap: 30px min(3.1666vw, 60px);
}
.c-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.c-footer__list > li {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.c-footer__list > li > a {
  background: url("../images/common/ico_heart.svg") no-repeat top 0.4em left/12px auto;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  -webkit-padding-start: 22px;
          padding-inline-start: 22px;
}
.c-footer__list .sub-menu {
  font-size: clamp(1.4rem, 1.11vw, 1.6rem);
  font-weight: bold;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-start: 22px;
          margin-inline-start: 22px;
}
.c-footer__list .sub-menu > li a {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  position: relative;
}
.c-footer__list .sub-menu > li a::before {
  background-color: #d73641;
  content: "";
  height: 2px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 10px;
}
.c-footer__list .sub-menu > li + li {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
}
.c-footer__copy {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-footer__copy .copyright small {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 1280px) {
  .c-footer__cont {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-footer__nav {
    -webkit-border-after: solid 1px #eee;
            border-block-end: solid 1px #eee;
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
    -webkit-padding-after: 50px;
            padding-block-end: 50px;
  }
}
@media screen and (max-width: 767.98px) {
  .l-footer {
    margin-inline: 20px;
    -webkit-padding-before: 100px;
            padding-block-start: 100px;
  }
  .c-footer__cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
    padding: 80px 0 30px;
  }
  .c-footer__info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .c-footer__info .logo a {
    display: block;
    text-align: center;
  }
  .c-footer__info .logo img {
    max-width: 250px;
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
  }
  .c-footer__info .logo b {
    display: block;
    text-align: center;
  }
  .c-footer__info .contact {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
  .c-footer__info .contact > div {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .c-footer__info .contact > div dt {
    -ms-flex-preferred-size: inherit;
        flex-basis: inherit;
  }
  .c-footer__nav {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    gap: 30px;
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
  }
  .c-footer__copy {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}


/* -------------------------------------
    wrapper
------------------------------------- */
.l-container {
  max-width: 1200px;
  margin-inline: auto;
}
.l-inner {
  max-width: 995px;
  margin-inline: auto;
}
.bg-gray {
  background-color: #fafafa;
  padding-inline: min(4.166vw, 60px);
}
@media (max-width: 1240px) {
  .l-container {
    padding-inline: 20px;
  }
}
section {
  padding-block: 150px;
}
@media screen and (max-width: 767.98px) {
  section {
    padding-block: 100px;
  }
}

/* -------------------------------------
    column layout
------------------------------------- */
.l-column {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
.l-column.gap-40 {
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .l-column.col-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .l-column.col-3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .l-column.col-4 {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767.98px) {
  .l-column.col-2 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .l-column.col-3 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .l-column.col-4 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------------------------------------
    heading
------------------------------------- */
.c-heading01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.c-heading01 .en {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font3);
  font-size: clamp(2.2rem, 1.944vw, 2.8rem);
  gap: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.c-heading01 .en::before {
  background: url("../images/common/ico_heart.svg") no-repeat center right/contain;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
.c-heading01 .heading {
  font-size: clamp(3rem, 3.0555vw, 4.4rem);
  font-weight: 800;
  letter-spacing: 0.1em;
}
.c-heading02 {
  color: var(--main-color);
  -webkit-margin-after: 60px;
          margin-block-end: 60px;
  letter-spacing: .1em;
  position: relative;
}
.c-heading02 .en {
  background-color: #fff;
  border-radius: 40px;
  color: #d73641;
  display: -ms-grid;
  display: grid;
  font-family: var(--font3);
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 0.5;
  min-height: 30px;
  padding: 14px 16px 10px 34px;
  place-content: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-heading02 .en::before {
  background-color: rgba(235,75,85,0.5);
  left: 10px;
  height: 14px;
  width: 14px;
}
.c-heading02 .en::after {
  background-color: rgba(235,75,85,0.2);
  left: 13px;
  height: 8px;
  width: 8px;
}
.c-heading02 .en::before,
.c-heading02 .en::after {
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-heading02 .heading {
  display: block;
  font-size: clamp(2.8rem, 2.5vw, 3.6rem);
  font-weight: 800;
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
  -webkit-padding-after: 40px;
          padding-block-end: 40px;
  position: relative;
}
.c-heading02 .heading::after {
  background-color: var(--main-color);
  border-radius: 6px;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  height: 5px;
  width: 100%;
}
.c-heading02.add-img .heading {
  padding-inline-end: min(14.5833vw, 140px);
}
.c-heading02 .bg {
  position: absolute;
  min-width: 140px;
  max-width: 210px;
  width: 14.5833vw;
  bottom: 5px;
  right: 0;
}
.c-heading03 {
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: clamp(2.4rem, 2.222vw, 3.2rem);
  font-weight: 800;
  gap: 15px;
  letter-spacing: .1em;
  text-align: center;
}
.c-heading03 .heading {
  font-weight: 800;
}
.c-heading03 .sub {
  font-size: clamp(2.2rem, 1.666vw, 2.4rem);
}
.c-heading04 {
  color: var(--main-color);
  font-size: clamp(2.4rem, 1.944vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: .1em;
}

.c-heading02.orange {
  color: #ED5D16;
}
.c-heading02.orange .en {
  color: #D04500;
}
.c-heading02.orange .en::before {
  background-color: rgba(237, 93, 22, .2);
}
.c-heading02.orange .en::after {
  background-color: rgba(237, 93, 22, .6);
}
.c-heading02.orange .heading::after {
  background-color: #ED5D16;
}
.c-heading03.orange, .c-heading04.orange {
  color: #ED6616;
}

@media (max-width: 767.98px) {
  .c-heading02.add-img .heading {
    padding-inline-end: 100px;
  }
  .c-heading02 .bg {
    min-width: 100px;
    max-width: 120px;
  }
}


/* -------------------------------------
    text
------------------------------------- */
.txt {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
.txt + .txt {
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
}
.lead {
  font-size: clamp(2rem, 1.944vw, 2.8rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.8;
  -webkit-margin-after: 30px;
          margin-block-end: 30px;
}
.note {
  color: #555;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2.2;
  margin-left: calc(1em + 10px);
  text-indent: calc(-1em - 10px);
}
.note::before {
  content: "※"/"注意：";
  margin-right: 10px;
}
.link {
  color: #004f78;
  display: inline-block;
  text-decoration: underline;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.link:hover {
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  .txt {
    font-size: 1.4rem;
  }
}

/* -------------------------------------
    box
------------------------------------- */
.c-box {
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 30px rgba(235,128,75,0.3);
          box-shadow: 0 0 30px rgba(235,128,75,0.3);
  padding: min(5.5556vw, 80px);
}
.c-box__ttl {
  color: var(--main-color);
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  -webkit-margin-after: 50px;
          margin-block-end: 50px;
  text-align: center;
}

/* -------------------------------------
    button
------------------------------------- */
.c-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: solid 3px var(--main-color);
  border-radius: 50px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 20px 20px min(3.0555vw, 44px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-button::after {
  background: url("../images/common/ico_arrow_btn.svg") no-repeat center right/contain;
  content: "";
  display: block;
  -webkit-margin-start: min(2.777vw, 40px);
          margin-inline-start: min(2.777vw, 40px);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  height: 40px;
  width: 40px;
}
.c-button:hover {
  background-color: var(--main-color);
  color: #fff;
}
.c-button:hover::after {
  background: url("../images/common/ico_arrow_btn_white.svg") no-repeat center right/contain;
  /* -webkit-transform: translateX(5px);
          transform: translateX(5px); */
}
.c-button__control {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: solid 3px #eee;
  border-radius: 50px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 17px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-button__control::before {
  background: url("../images/common/ico_ctrl_stop.svg") no-repeat center/contain;
  content: "";
  display: block;
  height: 40px;
  width: 40px;
}
.c-button__control:hover,
.c-button__control.is-paused {
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.c-button__control.is-paused::before {
  background: url("../images/common/ico_ctrl_play.svg") no-repeat center/contain;
}
.c-button__control--txt {
  font-size: clamp(1.6rem, 1.3888vw, 2rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}
.c-button__exter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 30px rgba(235,128,75,0.3);
          box-shadow: 0 0 30px rgba(235,128,75,0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  justify-content: space-between;
  gap: min(3.75vw, 54px);
  letter-spacing: 0.1em;
  padding: min(2.777vw, 40px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-button__exter--txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.c-button__exter .sub {
  color: #555;
  font-size: 1.4rem;
  font-weight: bold;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.c-button__exter::after {
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.333 30C12.4163 30 11.6316 29.6737 10.9788 29.0209C10.3261 28.3681 9.99967 27.5834 9.99967 26.6667V6.66671C9.99967 5.75004 10.3261 4.96532 10.9788 4.31254C11.6316 3.65976 12.4163 3.33337 13.333 3.33337H33.333C34.2497 3.33337 35.0344 3.65976 35.6872 4.31254C36.34 4.96532 36.6663 5.75004 36.6663 6.66671V26.6667C36.6663 27.5834 36.34 28.3681 35.6872 29.0209C35.0344 29.6737 34.2497 30 33.333 30H13.333ZM13.333 10H33.333V6.66671H13.333V10ZM6.66634 36.6667C5.74967 36.6667 4.96495 36.3403 4.31217 35.6875C3.6594 35.0348 3.33301 34.25 3.33301 33.3334V10H6.66634V33.3334H29.9997V36.6667H6.66634Z' fill='%23EB4B55'/%3E%3C/svg%3E%0A") no-repeat 0 0/contain;
  content: "";
  height: 40px;
  width: 40px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.c-button__exter.ico-pdf::after {
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.9997 20.8334H16.6663V17.5H18.333C18.8052 17.5 19.2011 17.3403 19.5205 17.0209C19.84 16.7014 19.9997 16.3056 19.9997 15.8334V14.1667C19.9997 13.6945 19.84 13.2987 19.5205 12.9792C19.2011 12.6598 18.8052 12.5 18.333 12.5H14.9997V20.8334ZM16.6663 15.8334V14.1667H18.333V15.8334H16.6663ZM21.6663 20.8334H24.9997C25.4719 20.8334 25.8677 20.6737 26.1872 20.3542C26.5066 20.0348 26.6663 19.6389 26.6663 19.1667V14.1667C26.6663 13.6945 26.5066 13.2987 26.1872 12.9792C25.8677 12.6598 25.4719 12.5 24.9997 12.5H21.6663V20.8334ZM23.333 19.1667V14.1667H24.9997V19.1667H23.333ZM28.333 20.8334H29.9997V17.5H31.6663V15.8334H29.9997V14.1667H31.6663V12.5H28.333V20.8334ZM13.333 30C12.4163 30 11.6316 29.6737 10.9788 29.0209C10.3261 28.3681 9.99967 27.5834 9.99967 26.6667V6.66671C9.99967 5.75004 10.3261 4.96532 10.9788 4.31254C11.6316 3.65976 12.4163 3.33337 13.333 3.33337H33.333C34.2497 3.33337 35.0344 3.65976 35.6872 4.31254C36.34 4.96532 36.6663 5.75004 36.6663 6.66671V26.6667C36.6663 27.5834 36.34 28.3681 35.6872 29.0209C35.0344 29.6737 34.2497 30 33.333 30H13.333ZM6.66634 36.6667C5.74967 36.6667 4.96495 36.3403 4.31217 35.6875C3.6594 35.0348 3.33301 34.25 3.33301 33.3334V10H6.66634V33.3334H29.9997V36.6667H6.66634Z' fill='%23EB4B55'/%3E%3C/svg%3E%0A") no-repeat 0 0/contain;
}
.c-button__exter.is-primary {
  border: solid 3px var(--main-color);
  box-shadow: none;
}
.c-button__exter:hover {
  background-color: var(--main-color);
  color: #fff;
}
.c-button__exter:hover .c-button__exter--txt .sub {
  color: #fff;
}
.c-button__exter:hover::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.c-button__home {
  align-items: center;
  background-color: #FFE9E9;
  border-radius: 50px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  gap: 20px;
  letter-spacing: 0.1em;
  margin-inline: auto;
  padding: 20px 44px 20px 20px;
  width: fit-content;
}
.c-button__home::before {
  content: "";
  background: url("../images/common/ico_home.svg") no-repeat center / contain;
  height: 40px;
  width: 40px;
}
.c-button__home:hover {
  background-color: var(--main-color);
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .c-button {
    font-size: 1.6rem;
    position: relative;
    width: 100%;
  }
  .c-button::after {
    position: absolute;
    right: 16px;
  }
  .c-button__control {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    width: 100%;
  }
  .c-button__control::before {
    width: 50px;
  }
  .c-button__control--txt {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .c-button__exter {
    font-size: 1.6rem;
    padding: 20px;
  }
}

/* -------------------------------------
    list
------------------------------------- */
.c-disc,
.c-order {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.c-disc > li + li,
.c-order > li + li {
  -webkit-margin-before: 28px;
          margin-block-start: 28px;
}
.c-disc > li {
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
  position: relative;
}
.c-disc > li::before {
  background: url("../images/common/ico_heart.svg") no-repeat center/13px auto;
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  height: 20px;
  width: 20px;
}
.c-disc-black {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.c-disc-black>li+li {
  -webkit-margin-before: 28px;
  margin-block-start: 28px;
}
.c-disc-black>li {
  -webkit-padding-start: 26px;
  padding-inline-start: 26px;
  position: relative;
  line-height: 2.2;
}
.c-disc-black>li::before {
  background-color: #333;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 11px;
  top: 16px;
  height: 5px;
  width: 5px;
}
.c-order {
  counter-reset: order;
}
.c-order > li::before {
  counter-increment: order;
  content: counter(order) '.';
  color: #e83e37;
  display: inline-block;
  font-family: var(--font3);
  font-size: 2.4rem;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}
.c-order__plain {
  counter-reset: order;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: .1em;
}
.c-order__plain > li {
  padding-inline-start: 46px;
  position: relative;
  line-height: 2.2;
}
.c-order__plain > li::before {
  counter-increment: order;
  content: '【' counter(order) '】';
  position: absolute;
  left: 0;
}
.c-order__plain > li + li {
  margin-block-start: 60px;
}
.c-order__plain .c-order__plain {
  margin-block-start: 20px;
}
.c-order__plain .c-order__plain > li::before {
  content: '（' counter(order) '）';
}
.c-order__plain .c-order__plain > li + li {
  margin-block-start: 20px;
}
.c-link {
  text-decoration: underline;
}
.c-link:hover {
  text-decoration: none;
}
.c-link__small {
  color: #333;
  letter-spacing: .05em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.c-link__small:hover {
  text-decoration: none;
}
.c-link__small::after {
  background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.2 11.2C3.815 11.2 3.48542 11.0629 3.21125 10.7887C2.93708 10.5146 2.8 10.185 2.8 9.8V1.4C2.8 1.015 2.93708 0.685417 3.21125 0.41125C3.48542 0.137083 3.815 0 4.2 0H12.6C12.985 0 13.3146 0.137083 13.5887 0.41125C13.8629 0.685417 14 1.015 14 1.4V9.8C14 10.185 13.8629 10.5146 13.5887 10.7887C13.3146 11.0629 12.985 11.2 12.6 11.2H4.2ZM4.2 2.8H12.6V1.4H4.2V2.8ZM1.4 14C1.015 14 0.685417 13.8629 0.41125 13.5887C0.137083 13.3146 0 12.985 0 12.6V2.8H1.4V12.6H11.2V14H1.4Z' fill='%23888888'/%3E%3C/svg%3E%0A") no-repeat center / contain;
  content: "";
  display: inline-block;
  margin-inline-start: 5px;
  height: 14px;
  width: 14px;
  vertical-align: middle;
}

@media screen and (max-width: 767.98px) {
  .c-disc-black,
  .c-order__plain {
    font-size: 1.4rem;
  }
  .c-disc-black>li::before {
    top: 10px;
  }
}

/* -------------------------------------
    card
------------------------------------- */
.c-card__item {
  box-shadow: 0 0 30px rgba(235,128,75,0.3);
  border-radius: 40px;
  position: relative;
}
.c-card__item .ico-recommend {
  position: absolute;
  top: -40px;
  right: 30px;
  max-width: 200px;
  min-width: 100px;
  width: 13.889vw;
}
.c-card__item .figure {
  border-radius: 40px 40px 0 0;
  min-height: 200px;
  overflow: hidden;
  width: 100%;
}
.c-card__item .figure img {
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  width: 100%;
}
.c-card__item .details {
  background-color: #fff;
  border-radius: 0 0 40px 40px;
  padding-block: 60px 80px;
}
.c-card__item .details-head .ttl {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.c-card__item .details-head .sub {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 2.2;
  margin-block-start: 40px;
}
.c-card__item .details-head {
  border-block-end: solid 5px;
  padding-inline: min(5vw, 72px);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-block: 40px 60px;
}
.tags .tag-item {
  align-items: center;
  background-color: var(--pale-color);
  border-radius: 30px;
  display: inline-flex;
  font-size: 1.6rem;
  font-weight: bold;
  gap: 10px;
  line-height: 1;
  padding: 14px 16px;
}
.tags .tag-item::before {
  content: "";
  display: block;
  height: 22px;
  width: 22px;
}
.tags .tag-item.discount::before {
  background: url(../images/pages/ico_discount.svg) no-repeat center / contain;
}
.tags .tag-item.event::before {
  background: url(../images/pages/ico_event.svg) no-repeat center / contain;
}
.tags .tag-item.present::before {
  background: url(../images/pages/ico_present.svg) no-repeat center / contain;
}
.tags .tag-item.service::before {
  background: url(../images/pages/ico_service.svg) no-repeat center / contain;
}
.c-card__item .details-body {
  padding: 60px min(5vw, 72px) 0;
}
.c-card__item .details-body .lead {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: .1em;
  margin-block-end: 40px;
}
.c-card__item .details-body .box {
  background-color: #FAFAFA;
  border-radius: 10px;
  margin-block-end: 40px;
  padding: 40px min(3.125vw, 45px);
}
.c-card__item .details-body .box-ttl {
  border-block-end: solid 1px #DADADA;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1;
  margin-block-end: 30px;
  padding-block-end: 30px;
}
.c-card__item .details-body .box-inner + .box-inner {
  margin-block-start: 60px;
}
.c-card__item .details-body .box-dl > div {
  align-items: flex-start;
  display: flex;
  gap: 20px;
}
.c-card__item .details-body .box-dl > div + div {
  margin-block-start: 20px;
}
.c-card__item .details-body .box-dl dt {
  background-color: #EEEEEE;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: bold;
  flex-basis: 9em;
  letter-spacing: .1em;
  padding: 8px 18px;
  text-align: center;
}
.c-card__item .details-body .box-dl dd {
  flex-basis: calc(100% - 9em - 20px);
  letter-spacing: .1em;
  line-height: 2.2;
}
/* layout change */
.c-card.col-2 .c-card__item .details-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.c-card.col-2 .c-card__item .details-head .ttl {
  font-size: 2.8rem;
  letter-spacing: 0;
  flex-wrap: 100%;
}
.c-card.col-2 .c-card__item .details-head .sub,
.c-card.col-2 .c-card__item .tags {
  margin-block-start: 0;
}
.c-card.col-2 .c-card__item .c-button {
  margin: 60px auto 0;
  padding: 12px 12px 12px 30px;
}

@media (min-width: 768px) {
  .c-card__item .figure {
    aspect-ratio: 1 / 0.354;
  }
  .c-card.col-2 .c-card__item .figure {
    aspect-ratio: 1 / 0.452;
  }
  .c-card.col-2 .c-card__item .details {
    padding-block: 40px 60px;
  }
  .c-card.col-2 .c-card__item .details-head {
    padding-inline: min(2.778vw, 40px);
  }
  .c-card.col-2 .c-card__item .details-body {
    padding: 30px min(2.778vw, 40px) 0;
  }
}

@media (max-width: 767.98px) {
  .c-card__item .details {
    padding-block: 40px 60px;
  }
  .c-card__item .details-head {
    padding-inline: 20px;
  }
  .c-card__item .tags {
    margin-block: 40px;
  }
  .c-card__item .details-head .ttl {
    font-size: 2.4rem;
  }
  .c-card__item .details-body {
    padding: 30px 20px 0;
  }
  .c-card__item .details-head .sub {
    margin-block-start: 20px;
  }
  .c-card__item .details-body .box-dl > div {
    flex-direction: column;
    gap: 0;
  }
  .c-card__item .details-body .box-dl dt,
  .c-card__item .details-body .box-dl dd {
    flex-basis: 100%;
    width: 100%;
  }
  .c-card__item .details-body .lead {
    font-size: 1.8rem;
  }
  .c-card__item .details-body .box {
    padding: 40px 20px;
  }
  .c-card.col-2 {
    gap: 0;
  }
  .tags .tag-item {
    font-size: 1.2rem;
    padding: 8px 10px;
  }
}


/* -------------------------------------
    table
------------------------------------- */
.c-table {
  border-collapse: 3px;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.c-table th,
.c-table td {
  padding: 30px min(1.388vw, 20px);
}
.c-table th {
  background-color: #ffd2d5;
}
.c-table td {
  background-color: #fff;
  width: 100%;
}
.c-table__plain {
  border-collapse: collapse;
  width: 100%;
}
.c-table__plain tr {
  border-block-end: solid 1px #DADADA;
}
.c-table__plain th, .c-table__plain td {
  padding-block: 40px;
}
.c-table__plain th {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
}
.c-table__plain td {
  font-size: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .c-table {
    border-collapse: 6px;
  }
  .c-table th,
  .c-table td,
  .c-table__plain th,
  .c-table__plain td {
    display: block;
    padding: 20px;
    width: 100%;
  }
  .c-table__plain th {
    padding-block-end: 0;
  }
}

/* -------------------------------------
    Tab
------------------------------------- */
.c-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: min(3.472vw, 50px);
  margin-block: 160px 100px;
}

.c-tab__button {
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  color: #ED5D16;
  display: flex;
  flex-direction: column;
  font-size: clamp(2.4rem, 2.222vw, 3.2rem);
  font-weight: bold;
  gap: 30px;
  line-height: 1.5;
  letter-spacing: .1em;
  padding-block: 46px;
  transition: all .3s;
}

.c-tab__button .sub {
  display: block;
  font-size: 1.8rem;
}

.c-tab__button:hover,
.c-tab__button[aria-selected="true"] {
  background-color: #ED5D16;
  color: #fff;
}

.c-tab__content {
  background-color: #fff;
  border: solid 5px #ED6616;
  border-radius: 40px;
  padding: 80px min(5vw, 72px);
}

.c-tab__ttl {
  color: #ED5D16;
  font-weight: 800;
  font-size: clamp(3rem, 2.777vw, 4rem);
  text-align: center;
}

@media (max-width: 767.98px) {
  .c-tabs {
    grid-template-columns: 1fr;
    margin-block: 100px 60px;
  }

  .c-tab__button {
    gap: 10px;
    padding-block: 26px;
  }

  .c-tab__content {
    padding: 40px 15px 60px;
  }
}

/* -------------------------------------
    dl
------------------------------------- */
.c-defs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px min(4.166vw, 60px);
  justify-content: center;
}

.c-def {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.c-def dt {
  background-color: var(--pale-color);
  border-radius: 30px;
  color: #ED5D16;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1;
  padding: 12px 20px;
  text-align-last: justify;
  width: 5.5em;
}

.c-def dd {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: .1em;
}

.c-def dd .sub {
  font-size: 1.8rem;
}

.c-defs.plain {
  gap: 30px;
}

.c-defs.plain dt {
  background-color: #F5F5F5;
  border-radius: 5px;
  color: #333;
  font-size: 1.8rem;
  padding: 8px 10px;
  width: 4.45em;
}

.c-defs.plain dd {
  font-size: 1.8rem;
}

@media (max-width: 767.98px) {
  .c-defs {
    align-items: flex-start;
    justify-self: flex-start;
  }
  .c-def {
    flex-direction: column;
    align-items: flex-start;
    justify-self: flex-start;
    width: 100%;
  }
}


/* -------------------------------------
    text alignment
------------------------------------- */
.ta-c {
  text-align: center !important;
}
.ta-r {
  text-align: right !important;
}
.ta-l {
  text-align: left !important;
}

/* -------------------------------------
    font size
------------------------------------- */
.fs-14 {
  font-size: 1.4rem;
}
.fs-16 {
  font-size: 1.6rem;
}
.fs-18 {
  font-size: 1.8rem;
}
.fs-20 {
  font-size: 2rem;
}
.fs-22 {
  font-size: 2.2rem;
}
.fs-24 {
  font-size: 2.4rem;
}
.fs-26 {
  font-size: 2.6rem;
}
.fs-28 {
  font-size: 2.8rem;
}
.fs-30 {
  font-size: 3rem;
}
.fs-32 {
  font-size: 3.2rem;
}

/* -------------------------------------
    display and font weight
------------------------------------- */
.d-b {
  display: block;
}
.d-ib {
  display: inline-block;
}
.fw-bold {
  font-weight: bold !important;
}
.fw-normal {
  font-weight: normal !important;
}
.td-u {
  text-decoration: underline;
}
a.td-u:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767.98px) {
  .pc-only {
    display: none !important;
  }
}

/* -------------------------------------
    news list
------------------------------------- */
.c-news__list {
  -webkit-border-before: solid 1px #eee;
          border-block-start: solid 1px #eee;
}
.c-news__list .cont {
  -webkit-padding-end: min(7.2222vw, 104px);
          padding-inline-end: min(7.2222vw, 104px);
}
.c-news__item {
  -webkit-border-after: solid 1px #eee;
          border-block-end: solid 1px #eee;
}
.c-news__item .cont {
  aling-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.8rem;
  gap: 24px 20px;
  letter-spacing: 0.1em;
  padding-block: 30px 38px;
  position: relative;
}
.c-news__item .cont:hover {
  opacity: 0.5;
}
.c-news__item .cont:hover::after {
  right: 0;
}
.c-news__item .cont::after {
  background: url("../images/common/ico_arrow_link.svg") no-repeat center/100% auto;
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 17px;
  width: 17px;
}
.c-news__item .date {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font2);
}
.c-news__item .label {
  background-color: #fff;
  border: solid 2px;
  border-radius: 20px;
  color: var(--main-color);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 8px 16px;
  text-align: center;
  width: 100px;
}
.c-news__item .label.orange {
  border-color: #ED6616;
  color: #ED6616;
}
.c-news__item .label.green {
  border-color: #129D80;
  color: #129D80;
}
.c-news__item .txt {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  font-weight: bold;
  text-align: justify;
}

@media screen and (min-width: 768px) {
  .c-news__list {
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
  }
  .c-news__list .cont {
    -webkit-padding-end: calc(7.2222vw + 30px);
            padding-inline-end: calc(7.2222vw + 30px);
  }
}

/* -------------------------------------
    js
------------------------------------- */
.js-trigger.in {
  opacity: 0;
}
.js-trigger.in.is-active {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.js-trigger.up {
  opacity: 0;
}
.js-trigger.up.is-active {
  -webkit-animation-name: slid-in-up;
          animation-name: slid-in-up;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.js-trigger.img-in {
  opacity: 0;
}
.js-trigger.img-in.is-active {
  -webkit-animation-name: img-fade-in;
          animation-name: img-fade-in;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media (prefers-reduced-motion: reduce) {
  .js-trigger.in,
  .js-trigger.up,
  .js-trigger.img-in {
    opacity: 1 !important;
  }
  .js-trigger.is-active {
    -webkit-animation: none !important;
            animation: none !important;
  }
}

/* -------------------------------------
    margin
------------------------------------- */
.mi-auto {
  margin-inline: auto;
}
.mt-0 {
  margin-top: 0px !important;
}
.mr-0 {
  margin-right: 0px !important;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.ml-0 {
  margin-left: 0px !important;
}
.pt-0 {
  padding-top: 0px !important;
}
.pr-0 {
  padding-right: 0px !important;
}
.pb-0 {
  padding-bottom: 0px !important;
}
.pl-0 {
  padding-left: 0px !important;
}
.mt-5 {
  margin-top: 5px !important;
}
.mr-5 {
  margin-right: 5px !important;
}
.mb-5 {
  margin-bottom: 5px !important;
}
.ml-5 {
  margin-left: 5px !important;
}
.pt-5 {
  padding-top: 5px !important;
}
.pr-5 {
  padding-right: 5px !important;
}
.pb-5 {
  padding-bottom: 5px !important;
}
.pl-5 {
  padding-left: 5px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mr-10 {
  margin-right: 10px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.ml-10 {
  margin-left: 10px !important;
}
.pt-10 {
  padding-top: 10px !important;
}
.pr-10 {
  padding-right: 10px !important;
}
.pb-10 {
  padding-bottom: 10px !important;
}
.pl-10 {
  padding-left: 10px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.pt-15 {
  padding-top: 15px !important;
}
.pr-15 {
  padding-right: 15px !important;
}
.pb-15 {
  padding-bottom: 15px !important;
}
.pl-15 {
  padding-left: 15px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pr-20 {
  padding-right: 20px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pl-20 {
  padding-left: 20px !important;
}
.mt-25 {
  margin-top: 25px !important;
}
.mr-25 {
  margin-right: 25px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.ml-25 {
  margin-left: 25px !important;
}
.pt-25 {
  padding-top: 25px !important;
}
.pr-25 {
  padding-right: 25px !important;
}
.pb-25 {
  padding-bottom: 25px !important;
}
.pl-25 {
  padding-left: 25px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.ml-30 {
  margin-left: 30px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pr-30 {
  padding-right: 30px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pl-30 {
  padding-left: 30px !important;
}
.mt-35 {
  margin-top: 35px !important;
}
.mr-35 {
  margin-right: 35px !important;
}
.mb-35 {
  margin-bottom: 35px !important;
}
.ml-35 {
  margin-left: 35px !important;
}
.pt-35 {
  padding-top: 35px !important;
}
.pr-35 {
  padding-right: 35px !important;
}
.pb-35 {
  padding-bottom: 35px !important;
}
.pl-35 {
  padding-left: 35px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mr-40 {
  margin-right: 40px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.ml-40 {
  margin-left: 40px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pr-40 {
  padding-right: 40px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pl-40 {
  padding-left: 40px !important;
}
.mt-45 {
  margin-top: 45px !important;
}
.mr-45 {
  margin-right: 45px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.ml-45 {
  margin-left: 45px !important;
}
.pt-45 {
  padding-top: 45px !important;
}
.pr-45 {
  padding-right: 45px !important;
}
.pb-45 {
  padding-bottom: 45px !important;
}
.pl-45 {
  padding-left: 45px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mr-50 {
  margin-right: 50px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.ml-50 {
  margin-left: 50px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pr-50 {
  padding-right: 50px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pl-50 {
  padding-left: 50px !important;
}
.mt-55 {
  margin-top: 55px !important;
}
.mr-55 {
  margin-right: 55px !important;
}
.mb-55 {
  margin-bottom: 55px !important;
}
.ml-55 {
  margin-left: 55px !important;
}
.pt-55 {
  padding-top: 55px !important;
}
.pr-55 {
  padding-right: 55px !important;
}
.pb-55 {
  padding-bottom: 55px !important;
}
.pl-55 {
  padding-left: 55px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mr-60 {
  margin-right: 60px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.ml-60 {
  margin-left: 60px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pr-60 {
  padding-right: 60px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pl-60 {
  padding-left: 60px !important;
}
.mt-65 {
  margin-top: 65px !important;
}
.mr-65 {
  margin-right: 65px !important;
}
.mb-65 {
  margin-bottom: 65px !important;
}
.ml-65 {
  margin-left: 65px !important;
}
.pt-65 {
  padding-top: 65px !important;
}
.pr-65 {
  padding-right: 65px !important;
}
.pb-65 {
  padding-bottom: 65px !important;
}
.pl-65 {
  padding-left: 65px !important;
}
.mt-70 {
  margin-top: 70px !important;
}
.mr-70 {
  margin-right: 70px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}
.ml-70 {
  margin-left: 70px !important;
}
.pt-70 {
  padding-top: 70px !important;
}
.pr-70 {
  padding-right: 70px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pl-70 {
  padding-left: 70px !important;
}
.mt-75 {
  margin-top: 75px !important;
}
.mr-75 {
  margin-right: 75px !important;
}
.mb-75 {
  margin-bottom: 75px !important;
}
.ml-75 {
  margin-left: 75px !important;
}
.pt-75 {
  padding-top: 75px !important;
}
.pr-75 {
  padding-right: 75px !important;
}
.pb-75 {
  padding-bottom: 75px !important;
}
.pl-75 {
  padding-left: 75px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mr-80 {
  margin-right: 80px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.ml-80 {
  margin-left: 80px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pr-80 {
  padding-right: 80px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pl-80 {
  padding-left: 80px !important;
}
.mt-85 {
  margin-top: 85px !important;
}
.mr-85 {
  margin-right: 85px !important;
}
.mb-85 {
  margin-bottom: 85px !important;
}
.ml-85 {
  margin-left: 85px !important;
}
.pt-85 {
  padding-top: 85px !important;
}
.pr-85 {
  padding-right: 85px !important;
}
.pb-85 {
  padding-bottom: 85px !important;
}
.pl-85 {
  padding-left: 85px !important;
}
.mt-90 {
  margin-top: 90px !important;
}
.mr-90 {
  margin-right: 90px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.ml-90 {
  margin-left: 90px !important;
}
.pt-90 {
  padding-top: 90px !important;
}
.pr-90 {
  padding-right: 90px !important;
}
.pb-90 {
  padding-bottom: 90px !important;
}
.pl-90 {
  padding-left: 90px !important;
}
.mt-95 {
  margin-top: 95px !important;
}
.mr-95 {
  margin-right: 95px !important;
}
.mb-95 {
  margin-bottom: 95px !important;
}
.ml-95 {
  margin-left: 95px !important;
}
.pt-95 {
  padding-top: 95px !important;
}
.pr-95 {
  padding-right: 95px !important;
}
.pb-95 {
  padding-bottom: 95px !important;
}
.pl-95 {
  padding-left: 95px !important;
}
.mt-100 {
  margin-top: 100px !important;
}
.mr-100 {
  margin-right: 100px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.ml-100 {
  margin-left: 100px !important;
}
.pt-100 {
  padding-top: 100px !important;
}
.pr-100 {
  padding-right: 100px !important;
}
.pb-100 {
  padding-bottom: 100px !important;
}
.pl-100 {
  padding-left: 100px !important;
}
