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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

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

/* ==========================================================================
   カラー ／　フォントサイズ ／　ブレークポイント ／　余白スケール
============================================================================= */
:root {
  --color-base: #333333;
  --color-sub: #6F7A82;
  --color-bg: #f8f8f8;
  --color-border: #C8C8C8;
  --font-family-base: "Noto Sans", sans-serif;
  --font-family-num: "Inter", sans-serif;
  --font-family-en: "Poppins", sans-serif;
  --fs-12: 0.75rem; /* 12px相当 */
  --fs-14: 0.875rem; /* 14px相当 */
  --fs-13: 0.8125rem; /* 13px相当 */
  --fs-15: 0.9375rem; /* 15px相当 */
  --fs-16: 1rem; /* 16px相当 */
  --fs-17: 1.0625rem;
  --fs-18: 1.125rem; /* 18px相当 */
  --fs-20: 1.25rem; /* 20px相当 */
  --fs-22: 1.375rem; /* 22px相当 */
  --fs-24: 1.5rem; /* 24px相当 */
  --fs-26: 1.625rem; /* 24px相当 */
  --fs-28: 1.75rem; /* 28px相当 */
  --fs-32: 2rem; /* 32px相当 */
  --fs-36: 2.25rem; /* 36px相当 */
  --fs-40: 2.5rem; /* 40px相当 */
  --fs-48: 3rem; /* 48px相当 */
  --fs-50: 3.125rem; /* 50px相当 */
  --fs-80: 5rem; /* 80px相当 */
  --container-max-width: 1200px;
  --inner-max-width: 994px;
  --char-fade: 1s;
}

/* ==========================================================================
   メディアクエリ / 汎用関数 など
============================================================================= */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-up {
  from {
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes arw-loop {
  0%, 20% {
    transform: translate3d(0, 0, 0);
  }
  55% {
    transform: translate3d(180%, -180%, 0);
  }
  55.01% {
    transform: translate3d(180%, -180%, 0);
  }
  55.02% {
    transform: translate3d(-180%, 180%, 0);
  }
  56% {
    transform: translate3d(-180%, 180%, 0);
  }
  80% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes img-blur {
  from {
    opacity: 0;
    filter: blur(15px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
@keyframes scroll-bar {
  0% {
    height: 0;
    top: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes floating {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floating-2 {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(-5px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes pulsate-icon {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(6);
    opacity: 0;
  }
}
/* ==========================================================================
   body の基本設定 / 共通の a や img の扱い など
============================================================================= */
html {
  font-size: 100%;
  font-family: var(--font-family-base);
  color: var(--color-base);
  line-height: 1.45;
  letter-spacing: 0.1em;
}

body {
  font-size: var(--fs-15);
  font-weight: 500;
  position: relative;
  letter-spacing: 0.05em;
  line-height: 1.6;
  height: -webkit-fill-available;
}
body.is-fixed {
  overflow-y: hidden;
}
@media (max-width: 767.98px) {
  body {
    font-size: var(--fs-14);
  }
}

a {
  color: var(--color-base);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   p, h1~h6, link の初期設定 / 行間 ・ フォント設定
============================================================================= */
.txt {
  font-weight: 500;
  line-height: 1.6;
}

.note {
  font-size: var(--fs-13);
  margin-inline-start: 1em;
  text-indent: -1em;
}
.note::before {
  content: "※";
}

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

.fw-bold {
  font-weight: bold !important;
}

.fw-normal {
  font-weight: normal !important;
}

.ta-c {
  text-align: center !important;
}

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

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

.en {
  font-family: var(--font-family-en) !important;
}

.num {
  font-family: var(--font-family-num) !important;
}

/* ==========================================================================
   ユーティリティ
============================================================================= */
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .pc-only {
    display: none !important;
  }
}
/* ==========================================================================
   Header Styles
============================================================================= */
.l-header {
  background-color: var(--color-bg);
  border-block-end: solid 1px var(--color-border);
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px min(4.166vw, 60px);
  transition: all 0.3s ease;
  width: calc(100% - min(4.166vw, 60px) * 2);
  z-index: 100;
}
.l-header .l-container {
  align-items: center;
  display: flex;
  margin-inline: auto;
  max-width: inherit;
  padding-inline: 0;
}
.l-header.is-fixed {
  transform: translateY(-100%);
  padding: 10px;
  width: calc(100% - 20px);
}
.l-header.is-fixed .c-header__logo img {
  width: 160px;
}
.l-header.is-fixed-enter {
  transform: translateY(0);
}
.l-header.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
}
@media (max-width: 1023.98px) {
  .l-header {
    padding: 10px;
    width: calc(100% - 20px);
  }
  .l-header.is-fixed-enter {
    transform: translateY(0px);
  }
}
.l-header .c-header__title {
  align-items: center;
  display: flex;
  gap: clamp(20px, 2.777vw, 40px);
}
.l-header .c-header__logo {
  max-width: 180px;
  width: 12.5vw;
}
.l-header .c-header__logo:hover {
  opacity: 0.7;
}
.l-header .c-header__copy {
  font-size: clamp(var(--fs-12), 0.9027vw, var(--fs-13));
}
@media (max-width: 1023.98px) {
  .l-header .c-header__logo {
    position: relative;
    width: 120px;
    z-index: 200;
  }
  .l-header .c-header__copy {
    position: absolute;
    left: 20px;
    top: 80px;
  }
}
.l-header .l-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.l-header .l-nav.is-open {
  transform: scale(1);
  opacity: 1;
}
.l-header .l-nav__inner {
  display: flex;
}
@media (min-width: 1024px) {
  .l-header .l-container {
    min-height: 60px;
  }
  .l-header .l-nav {
    margin-inline-start: min(2.777vw, 40px);
    width: calc(100% - min(12.5vw, 180px) - min(2.777vw, 40px));
  }
  .l-header .l-nav__inner {
    align-items: center;
    margin-inline-start: auto;
  }
}
@media (max-width: 1023.98px) {
  .l-header .l-nav {
    background-color: #fff;
    opacity: 0;
    height: 100vh;
    max-width: 390px;
    position: fixed;
    right: 0;
    top: -1px;
    transform-origin: top right;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    will-change: transform, opacity;
    z-index: 100;
    width: 100%;
  }
  .l-header .l-nav__inner {
    flex-direction: column;
    gap: 28px;
    height: 100%;
    width: 100%;
  }
}
.l-header .c-nav__list {
  align-items: center;
  display: flex;
  font-size: var(--fs-14);
  gap: min(40px, 2.777vw);
  margin-inline: auto min(40px, 2.777vw);
}
.l-header .c-nav__item {
  letter-spacing: 1.4px;
  line-height: 1.8;
  position: relative;
  text-align: center;
  transition: all 0.5s ease;
}
.l-header .c-nav__item > a, .l-header .c-nav__item .subtitle {
  display: block;
  cursor: pointer;
  padding-block: 10px;
}
.l-header .c-nav__item.has-subList .subtitle {
  align-items: center;
  display: flex;
  gap: 5px;
}
.l-header .c-nav__item.has-subList .subtitle::after {
  content: "";
  background: url("../images/common/ico_plus.svg") no-repeat center/contain;
  display: inline-block;
  height: 10px;
  width: 10px;
}
.l-header .c-nav__item.has-subList .subList {
  background-color: var(--color-bg);
  height: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  text-align: left;
  top: 0;
  visibility: hidden;
  min-width: 12em;
  width: fit-content;
}
.l-header .c-nav__item.has-subList .subList .subList__item a {
  display: block;
  font-size: var(--fs-13);
  padding: 20px;
  position: relative;
}
.l-header .c-nav__item.has-subList .subList .subList__item a::after {
  background: url("../images/common/ico_arw_right.svg") no-repeat center/contain;
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  transform: translateY(-50%);
  transition: transform 0.3s;
  top: 50%;
  right: 20px;
}
.l-header .c-nav__item.has-subList .subList .subList__item a:hover {
  opacity: 0.7;
}
.l-header .c-nav__item.has-subList .subList .subList__item a:hover::after {
  transform: translateX(5px) translateY(-50%);
}
.l-header .c-nav__btn {
  align-items: center;
  background-color: var(--color-base);
  border: solid 1px var(--color-base);
  border-radius: 50px;
  color: #FFF;
  display: flex;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  line-height: 1;
  letter-spacing: 0.7px;
  overflow: hidden;
  padding: 16px 30px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .l-header .c-nav__btn {
    height: 60px;
    padding-block: 0;
    padding-inline: 30px;
  }
}
.l-header .c-nav__btn::after {
  background-color: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.l-header .c-nav__btn:hover {
  color: var(--color-base);
}
.l-header .c-nav__btn:hover::after {
  transform: scale(1, 1);
}
@media (min-width: 1024px) {
  .l-header .c-nav__item {
    position: relative;
  }
  .l-header .c-nav__item > a, .l-header .c-nav__item .subtitle {
    color: transparent;
    overflow: hidden;
    text-shadow: 0 -2.5em 0 var(--color-base), 0 0 0 var(--color-base);
    transition: text-shadow 0.3s;
  }
  .l-header .c-nav__item > a:hover, .l-header .c-nav__item .subtitle:hover {
    text-shadow: 0 0 0 var(--color-base), 0 2.5em 0 var(--color-base);
  }
  .l-header .c-nav__item.has-subList .subList {
    margin-block-start: 44px;
    transition: all 0.5s ease;
  }
  .l-header .c-nav__item.has-subList .subList .linktitle {
    display: none;
  }
  .l-header .c-nav__item.has-subList:hover::after {
    background-image: none;
    background-color: #888;
    height: 1px;
    width: 8px;
  }
  .l-header .c-nav__item.has-subList:hover .subList {
    box-shadow: 0 8px 17px rgba(0, 0, 0, 0.1);
    height: auto;
    opacity: 1;
    visibility: visible;
  }
  .l-header .c-nav__item.has-subList:hover .subtitle::after {
    background-image: none;
    background-color: #888;
    height: 1px;
  }
  .l-header .c-nav__btn {
    margin-inline-start: auto;
  }
}
@media (max-width: 1023.98px) {
  .l-header .c-nav__list {
    border-block-start: solid 1px #eee;
    flex-direction: column;
    gap: 0;
    margin: 140px auto 0;
    width: 100%;
  }
  .l-header .c-nav__item {
    border-block-end: solid 1px #eee;
    text-align: left;
    width: 100%;
  }
  .l-header .c-nav__item.js-toggle .subList {
    border-block-start: solid 1px #eee;
    width: 100%;
  }
  .l-header .c-nav__item.js-toggle .subList .subList__item a {
    background-color: var(--color-bg);
    padding: 20px 20px 20px calc(20px + 1em);
  }
  .l-header .c-nav__item.js-toggle.is-active .subList {
    height: auto;
    margin-block-start: 0;
    position: relative;
    opacity: 1;
    visibility: visible;
  }
  .l-header .c-nav__item.js-toggle.is-active .subtitle::after {
    background-image: none;
    background-color: #888;
    height: 1px;
    width: 8px;
  }
  .l-header .c-nav__item > a {
    align-items: center;
    display: flex;
  }
  .l-header .c-nav__item > a::after {
    background: url("../images/common/ico_arw_right.svg") no-repeat center/contain;
    content: "";
    width: 8px;
    height: 8px;
  }
  .l-header .c-nav__item > a, .l-header .c-nav__item .subtitle {
    justify-content: space-between;
    padding: 20px;
  }
  .l-header .c-nav__btn {
    box-sizing: border-box;
    margin-inline: auto;
    width: calc(100% - 40px);
  }
}

.c-hamburger {
  margin-inline-start: auto;
  position: relative;
  transition: transform 0.5s ease;
  z-index: 200;
}
.c-hamburger__bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-hamburger__bar::before, .c-hamburger__bar::after {
  background-color: #888;
  content: "";
  display: block;
  height: 1px;
  transition: transform 0.5s, width 0.5s, background-color 0.5s;
}
.c-hamburger__bar::before {
  width: 20px;
}
.c-hamburger__bar::after {
  width: 26px;
}
.c-hamburger.is-open .c-hamburger__bar::before {
  transform: rotate(35deg) translate(-2px, 5px);
  width: 30px;
}
.c-hamburger.is-open .c-hamburger__bar::after {
  transform: rotate(-35deg) translate(0, -8px);
  width: 30px;
}
@media (min-width: 1024px) {
  .c-hamburger {
    display: none;
  }
}

/* ==========================================================================
   Footer Styles
============================================================================= */
.l-footer {
  background-color: #E5E8EA;
  border-top: 1px solid var(--color-border);
  padding-block: 60px;
}
.l-footer__wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .l-footer__wrap {
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .l-footer__wrap {
    flex-direction: column;
    gap: 60px;
  }
}

.c-footer__info {
  display: flex;
  font-size: var(--fs-14);
  flex-wrap: wrap;
  gap: min(2.7777vw, 40px);
}
.c-footer__copy {
  font-size: var(--fs-12);
  margin-inline-start: auto;
  line-height: 1;
  letter-spacing: 0.6px;
  text-align: right;
}
@media (max-width: 767.98px) {
  .c-footer__info {
    gap: 20px;
  }
}

/* ==========================================================================
   Grid Styles
============================================================================= */
.l-column {
  display: grid;
  gap: 30px;
}
.l-column.gap-40 {
  gap: 40px;
}
@media (min-width: 768px) {
  .l-column.col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-column.col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .l-column.col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767.98px) {
  .l-column.col-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .l-column.col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-column.col-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .l-column.col-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ==========================================================================
   Container Styles
============================================================================= */
.l-container {
  max-width: var(--container-max-width);
  margin-inline: auto;
}
@media (max-width: 1240px) {
  .l-container {
    padding-inline: 20px;
  }
}

.l-inner {
  max-width: var(--inner-max-width);
  margin-inline: auto;
}
@media (max-width: 996px) {
  .l-inner {
    padding-inline: 20px;
  }
  .l-container .l-inner {
    padding-inline: 0;
  }
}

.bg-gray {
  background-color: var(--color-bg);
}

/* ---------------------------------
   Contact area styles
--------------------------------- */
.p-contact {
  background-color: #E5E8EA;
  padding-block: 110px 60px;
}
.p-contact__wrap {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.c-contact__hdg .hdg {
  display: flex;
  align-items: stretch;
  font-family: var(--font-family-en);
  font-size: clamp(2rem, 3.3334vw + 0.8334rem, 4rem);
  gap: 27px;
  margin-block-end: 50px;
  line-height: 0.8;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.c-contact__hdg .hdg .arw {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 30px;
  height: 30px;
  vertical-align: -0.15em;
}
.c-contact__hdg .hdg .arw img {
  display: block;
  width: 100%;
  height: 100%;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation: arw-loop 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.c-contact__hdg .hdg:hover {
  opacity: 0.7;
}
.c-contact__hdg .txt {
  color: #555;
  line-height: 2.3;
}
.c-contact__nav--list {
  align-items: flex-start;
  display: flex;
  font-size: var(--fs-14);
  gap: min(2.7778vw, 40px);
  line-height: 1.8;
  letter-spacing: 0.7px;
}
.c-contact__nav--item a:hover {
  opacity: 0.7;
}
.c-contact__nav--item .subList {
  margin-block-start: 10px;
}
.c-contact__nav--item .subList__link {
  align-items: center;
  display: flex;
  gap: 5px;
}
.c-contact__nav--item .subList__link::before {
  content: "";
  background-color: var(--color-base);
  height: 1px;
  width: 10px;
}
@media (min-width: 768px) {
  .c-contact__nav {
    margin-inline-start: auto;
  }
}
@media (max-width: 767.98px) {
  .c-contact__nav {
    flex-basis: 100%;
  }
  .c-contact__nav--list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .c-contact__nav--item {
    flex-basis: calc(50% - 10px);
  }
  .c-contact__nav--item:nth-child(2) {
    order: 3;
  }
  .c-contact__nav--item:nth-child(3) {
    order: 4;
  }
  .c-contact__nav--item:nth-child(4) {
    order: 2;
  }
  .c-contact__nav--item:nth-child(5) {
    order: 5;
  }
  .c-contact__nav--item .subList {
    margin-inline-start: 1em;
  }
  .c-contact__hdg .hdg {
    font-size: var(--fs-40);
    letter-spacing: 3px;
    margin-block-end: 30px;
  }
  .c-contact__hdg .hdg .arw {
    height: 24px;
    width: 24px;
  }
}

/* Img Slide */
.c-img__slide {
  display: flex;
  flex-shrink: 0;
  overflow: hidden;
}
.c-img__slide > div {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
  display: flex;
  flex-shrink: 0;
}
.c-img__slide > div img {
  max-width: 290px;
}

/* ==========================================================================
   見出し
============================================================================= */
.c-hdg01 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.c-hdg01 .en {
  font-size: var(--fs-80);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.c-hdg01 .jp {
  color: #555;
  font-size: var(--fs-15);
  font-weight: 700;
  line-height: 1.8;
}
@media (max-width: 767.98px) {
  .c-hdg01 .en {
    font-size: var(--fs-50);
  }
}

.c-hdg02 {
  display: flex;
  flex-direction: column;
  font-feature-settings: "palt" on;
  font-size: var(--fs-28);
  font-weight: 500;
  gap: 10px;
}
.c-hdg02 .en {
  align-items: center;
  color: var(--color-sub);
  display: flex;
  font-size: var(--fs-15);
  gap: 6px;
  line-height: 1.1;
  text-transform: uppercase;
}
.c-hdg02 .en::before {
  background-color: var(--color-sub);
  content: "";
  height: 1px;
  width: 10px;
}
@media (max-width: 767.98px) {
  .c-hdg02 {
    font-size: var(--fs-22);
  }
  .c-hdg02 .en {
    font-size: var(--fs-13);
  }
}

/* ==========================================================================
   ボタン
============================================================================= */
.c-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-links .c-link:not(:last-of-type) {
  position: relative;
  padding-inline-end: 18px;
}
.c-links .c-link:not(:last-of-type)::before {
  content: "/";
  margin-inline-start: 10px;
  right: 0;
  position: absolute;
}

.c-link {
  text-decoration: underline;
}
.c-link:not(.is-internal)::after {
  background: url("../images/common/ico_arw_up_right.svg") no-repeat center/contain;
  content: "";
  display: inline-block;
  flex-shrink: 0;
  margin-inline-start: 8px;
  vertical-align: 0.05em;
  height: 9px;
  width: 9px;
}
.c-link:hover {
  text-decoration: none;
}

.c-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .c-btns .c-btn {
    flex-basis: 100%;
  }
}

.c-btn {
  background-color: var(--color-base);
  border: solid 1px var(--color-base);
  border-radius: 50px;
  color: #FFF;
  display: flex;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  line-height: 1.8;
  letter-spacing: 0.75px;
  overflow: hidden;
  padding: 16px 30px;
  position: relative;
  text-decoration: none;
  width: fit-content;
  z-index: 1;
}
.c-btn.is-white {
  background-color: #fff;
  color: var(--color-base);
}
.c-btn.is-white .c-btn__label::after {
  background: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.75977 0.75H12.4015V10.3925' stroke='%23333333' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='0.75' y1='-0.75' x2='15.4947' y2='-0.75' transform='matrix(-0.70708 0.707134 -0.70708 -0.707134 11.4863 0.525879)' stroke='%23333333' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E%0A") no-repeat center/contain;
}
.c-btn__label {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  overflow: hidden;
}
.c-btn__label::after {
  background: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.75977 0.75H12.4015V10.3925' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='0.75' y1='-0.75' x2='15.4947' y2='-0.75' transform='matrix(-0.70708 0.707134 -0.70708 -0.707134 11.4863 0.525879)' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E%0A") no-repeat center/contain;
  backface-visibility: hidden;
  content: "";
  height: 12px;
  opacity: 1;
  width: 12px;
  will-change: transform, opacity;
  z-index: 2;
}
.c-btn:hover, .c-btn:focus-visible {
  opacity: 0.9;
}
.c-btn:hover .c-btn__label::after, .c-btn:focus-visible .c-btn__label::after {
  animation: arw-loop 1.6s ease infinite;
}
@media (max-width: 767.98px) {
  .c-btn {
    box-sizing: border-box;
    width: 100%;
  }
}

/* ==========================================================================
   カードコンポーネント
============================================================================= */
.c-card.col-2 {
  gap: 80px 60px;
}
.c-card.col-3 {
  gap: 60px 40px;
}
.c-card__cont {
  display: flex;
  flex-direction: column;
}
.c-card__cont .detail .ttl {
  font-size: clamp(1.6rem, 1.5277vw, 2.2rem);
  font-weight: bold;
  line-height: 1.45;
}
.c-card__cont .detail .txt {
  line-height: 1.4375;
  margin-block-start: 30px;
}
.c-card__cont .detail .c-link {
  margin-block-start: 50px;
}
.c-card__cont .detail .c-link + .c-link {
  margin-block-start: 20px;
}
.c-card__cont .figure {
  overflow: hidden;
  text-align: center;
  position: relative;
}
.c-card__cont .figure::before {
  background-color: rgba(255, 255, 255, 0.4);
  content: "";
  mix-blend-mode: overlay;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
}
.c-card__cont .figure.border {
  border: solid 1px var(--color-base);
}
.c-card__cont .figure.border img {
  height: 100%;
  object-fit: contain;
}
.col-2 .c-card__cont {
  gap: 30px;
}
.col-3 .c-card__cont {
  gap: 16px;
}
.c-card a:hover .figure::before {
  opacity: 1;
}
@media (min-width: 768px) {
  .col-2 .c-card__cont .figure {
    aspect-ratio: 1.781/1;
  }
  .col-3 .c-card__cont .figure {
    aspect-ratio: 1.252/1;
  }
  .c-card__cont .figure {
    display: grid;
    place-content: center;
  }
}
@media (max-width: 767.98px) {
  .c-card__cont .figure {
    max-height: 300px;
  }
  .c-card__cont .figure img {
    object-fit: cover;
  }
}

/* ==========================================================================
   メディアコンポーネント
============================================================================= */
.c-media__cont {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  gap: min(2.778vw, 40px);
  padding: 36px 22px;
}
@media (max-width: 767.98px) {
  .c-media__cont {
    flex-direction: column-reverse;
    padding: 20px;
  }
}
.c-media__cont .details .ttl {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.45;
  margin-block-end: 30px;
}
.c-media__cont .details .txt {
  letter-spacing: 0.1em;
  line-height: 1.4375;
}
.c-media__cont .details .btn {
  border: solid 1px;
  border-radius: 50px;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-block-start: 40px;
  margin-inline-start: auto;
  padding: 10px 30px;
  width: fit-content;
}
.c-media__cont .details .btn::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-size: 1.2rem;
  font-weight: 900;
  margin-left: 10px;
}
.c-media__cont .details .btn:hover {
  background-color: var(--color-base);
  border-color: var(--color-base);
  color: #fff;
}
@media (min-width: 768px) {
  .c-media__cont .details {
    flex-basis: calc(48.5388% - min(2.778vw, 40px));
  }
  .c-media__cont .figure {
    flex-basis: 51.4612%;
  }
}

/* ==========================================================================
   数字リスト
============================================================================= */
.c-order {
  counter-reset: order-counter;
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
}
.c-order li {
  align-items: baseline;
  counter-increment: order-counter;
  display: flex;
  gap: 10px;
  line-height: 2;
}
.c-order li::before {
  background-color: var(--color-green);
  content: counter(order-counter);
  color: var(--color-sub);
  display: inline-block;
  font-family: var(--font-family-en);
  font-size: var(--fs-18);
  letter-spacing: 0.9px;
  margin-inline-end: 10px;
}
@media (max-width: 767.98px) {
  .c-order {
    gap: 0;
  }
}

/* ==========================================================================
   リストアニメーション
============================================================================= */
/* ==========================================================================
   黒丸箇条書きリスト
============================================================================= */
.c-disc {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-top: 1em;
  margin-bottom: 1em;
}
.c-disc li {
  margin-bottom: 0.5em;
}
.c-disc li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Table
============================================================================= */
.c-tbl {
  border-collapse: collapse;
  width: 100%;
}
.c-tbl__group {
  border-block-end: solid 1px var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-block: 30px;
}
.c-tbl__group.is-flex {
  border-block-end: 0;
  padding-block: 0;
}
.c-tbl__group.is-flex > div {
  border-block-end: solid 1px var(--color-border);
  padding-block: 30px;
}
@media (min-width: 768px) {
  .c-tbl__group.is-flex {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px min(2.569vw, 37px);
  }
  .c-tbl__group.is-flex > div {
    flex: 1 1 calc(50% - min(1.2847vw, 19px));
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.c-tbl__label, .c-tbl__value {
  display: block;
  text-align: left;
}
.c-tbl__label {
  color: var(--color-sub);
  font-size: var(--fs-13);
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .c-tbl__group {
    padding-block: 20px;
  }
  .c-tbl__group.is-flex > div {
    padding-block: 20px;
  }
}

.c-infoList {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.c-infoList__item {
  display: flex;
  flex-wrap: wrap;
  line-height: 2;
}
.c-infoList__item dt {
  color: var(--color-sub);
  font-feature-settings: "palt" on;
  font-family: var(--font-family-en), var(--font-family-base);
  font-weight: 500;
}
.c-infoList__item dt::after {
  content: ":";
  display: inline-block;
  margin-inline: 10px;
}
@media (max-width: 767.98px) {
  .c-infoList {
    gap: 0;
  }
}

/* ==========================================================================
   Box
============================================================================= */
.c-box {
  border-radius: 3px;
  border: solid 1px var(--color-border);
  padding: 20px 30px;
  margin: 20px 0;
  width: fit-content;
}
.c-box.is-white {
  background-color: #fff;
}
.c-box .txt {
  line-height: 1.8;
}

/* ==========================================================================
   js コンポーネント
============================================================================= */
.js-modal {
  display: block;
  margin-inline: auto;
  position: relative;
  width: fit-content;
}
.js-modal.ico-zoom::after {
  content: "\f00e";
  color: var(--color-green);
  font-family: "Font Awesome 6 Free";
  font-size: clamp(2rem, 2.0833vw, 3rem);
  font-weight: 900;
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.js-modal .figure {
  display: block;
  position: relative;
}
.js-modal .figure::before {
  background-color: rgba(255, 255, 255, 0.4);
  content: "";
  mix-blend-mode: overlay;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
}
.js-modal:hover .figure::before {
  opacity: 1;
}

.js-trigger {
  opacity: 0;
}
.js-trigger.in.is-active {
  animation-name: fade-in;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  animation-fill-mode: forwards;
}
.js-trigger.up.is-active {
  animation-name: slide-up;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  animation-fill-mode: forwards;
}
.js-trigger.img-blur.is-active {
  animation-name: img-blur;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

.js-cards {
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   Ajustes de Margen y Padding
============================================================================= */
.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;
}

/* リサイズ中はナビ/ハンバーガーのtransitionを無効化（ブレークポイント跨ぎで一瞬メニューが開く誤動作を防止） */
html.is-resizing .l-header .l-nav,
html.is-resizing .l-header .l-nav__inner,
html.is-resizing .c-hamburger,
html.is-resizing .c-hamburger__bar::before,
html.is-resizing .c-hamburger__bar::after {
  transition: none !important;
}

/*# sourceMappingURL=common.css.map*/