@charset 'UTF-8';
/* ========================================================================
/*
/* Foundation
/*
========================================================================= */
/* Bootstrap Customize
--------------------------------------------------------- */
h1 {
  float: none;
  margin: 0;
  padding: 0;
}

h2 {
  margin: 0;
  padding: 0;
}

h3 {
  margin: 0;
  padding: 0;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  margin-top: 0;
  margin-bottom: 0;
}

img {
  border: 0;
  vertical-align: top;
}

p {
  margin: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl {
  margin: 0;
  padding: 0;
  line-height: 1.9;
}

dt {
  font-weight: normal;
  line-height: 1.9;
}

dd {
  line-height: 1.9;
}

address {
  margin-bottom: auto;
}

@media (min-width: 1400px) {
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-none {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1230px;
  }
}
[class*=col-]:not(:last-child) {
  margin-bottom: 2em;
}
@media print, screen and (min-width: 768px) {
  [class*=col-]:not(:last-child) {
    margin-bottom: 0;
  }
}

.modal {
  z-index: 9999;
}
@media print {
  .modal {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .modal-body img {
    max-height: 700px;
  }
}

.thumb {
  position: relative;
  width: auto;
  height: 300px;
  border: solid 1px #e5e5e5;
  background: #f8f8f8;
}
.thumb img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.thumb a {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
  cursor: pointer;
}
.thumb a:is(:hover, :active, :focus) img {
  opacity: .7;
  transition: .3s;
}

@media only screen and (max-width: 767.98px) {
  .form-inline select {
    display: inline-block;
    width: auto;
    padding-right: 2px;
    padding-left: 2px;
  }
}

input[type=file].form-control {
  height: 0;
}

@media print, screen and (min-width: 576px) {
  .form-check-inline:not(:last-of-type) {
    margin-right: 1.4em;
  }
}

.form-control {
  height: auto;
  border-radius: 3px;
}
@media only screen and (max-width: 767.98px) {
  .form-control {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 768px) {
  .form-control {
    font-size: clamp(.938rem, .158vw + .862rem, 1rem);
  }
}

.form-control::placeholder {
  color: #b3b3b3;
  font-weight: 350;
}
@media only screen and (max-width: 767.98px) {
  .form-control::placeholder {
    font-size: .875rem;
  }
}
@media print, screen and (min-width: 768px) {
  .form-control::placeholder {
    font-size: clamp(.875rem, .158vw + .799rem, .938rem);
  }
}

/* Base
--------------------------------------------------------- */
:root {
  --color-main: #00f;
  --color-main-hover: #00008e;
  --color-primary: #8787ff;
  --color-sub: #00acf5;
  --color-txt: #222;
  --color-base: #f3f6fa;
  --color-accent: #ff1d56;
  --color-red: #ff1d56;
  --color-warning: #fc0;
  --color-white: #fff;
  --color-black: #000;
  --font-family-primary: 'Noto Sans JP', sans-serif;
  --font-family-secondary: 'Roboto', sans-serif;
  --font-family-tertiary: 'font-mkpop', sans-serif;
  --font-family-awesome: 'Font Awesome 6 Free';
  --header-height-mobile: clamp(45px, 7.8vw, 60px);
  --header-height-desktop: clamp(80px, 6.2vw, 100px);
  --icon-phone: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M25.47,32c-.71-.21-2.17-.44-3.46-1.03C13.16,26.94,6.34,20.72,1.67,12.23c-.23-.42-.4-.86-.59-1.31C-.94,6-.23,3.29,4.12.2c.49-.35,1.95-.21,2.26.21,1.48,2.01,2.87,4.12,3.96,6.35.31.64-.28,1.99-.84,2.72-1.6,2.09-1.54,4.18.17,5.93,2.66,2.72,5.57,5.2,8.43,7.72.96.84,1.9.62,2.9-.27,2.84-2.54,3.37-2.55,6.7-.73.54.3,1.06.63,1.59.95,1.63.97,3.29,1.9,2.53,4.27-.83,2.59-3.39,4.75-6.34,4.65Z"/></svg>');
}

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

body {
  color: var(--color-txt);
  letter-spacing: .05em;
  font-weight: 400;
  font-family: var(--font-family-primary);
  line-height: 2;

  font-optical-sizing: auto;
}
body :lang(en) {
  font-family: var(--font-family-secondary);
}

a {
  color: var(--color-main);
  text-decoration: none;
  transition: color .3s;

  text-underline-offset: .3em;
}
a:is(:hover, :active, :focus) {
  color: var(--color-sub);
  text-decoration: none;
}
a:has([data-action=call]) {
  color: inherit;
  text-decoration: none;
}

em,
strong {
  font-weight: bold;
  font-style: normal;
}

button,
input[type=submit],
input[type=button] {
  padding: 0;
  border: 0;
}

img {
  -webkit-backface-visibility: hidden;
}

/* Webfont
--------------------------------------------------------- */
/* 851マカポップ
--------------------------------------------------------- */
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: 'font-mkpop';
  src: url('../fonts/mkpop/851MkPOP_101.woff') format('woff'), url('../fonts/mkpop/851MkPOP_101.ttf') format('truetype');

  font-display: swap;
}
.f-mkpop {
  font-family: 'font-mkpop', sans-serif;
}

/* ========================================================================
/*
/* Layout
/*
========================================================================= */
/* 全体
--------------------------------------------------------- */
.l-page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (max-width: 991.98px) {
  .l-page-wrapper {
    padding-top: var(--header-height-mobile);
  }
}
@media print {
  .l-page-wrapper {
    padding-top: 0;
  }
}

/* ヘッダー
--------------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  transition: transform .4s, opacity .4s, background-color .4s;
}
@media screen and (max-width: 991.98px) {
  .l-header {
    display: flex;
    height: var(--header-height-mobile);
    padding-left: 1.5vw;
    background-color: #fff;

    align-items: center;
  }
}
@media print, screen and (min-width: 992px) {
  .l-header {
    display: grid;
    height: var(--header-height-desktop);
    column-gap: 4%;

    grid-template: 'logo util'/auto 1fr;
    align-items: center;
  }
}
@media print {
  .l-header {
    position: static;
  }
}
.l-header.is-below {
  background-color: #fff;
}
@media print, screen and (min-width: 992px) {
  .l-header.is-below .l-header__logo img {
    height: clamp(90px, 9.3vw, 180px);
  }
}
@media print, screen and (min-width: 992px) {
  .l-header.is-below .c-global-nav__item > a {
    color: var(--color-txt);
  }
}
@media print, screen and (min-width: 992px) {
  .l-header.is-below .c-global-nav__item.is-current > a {
    color: var(--color-main);
  }
}
.l-header__logo {
  font-size: 0;

  grid-area: logo;
}
@media print, screen and (min-width: 992px) {
  .l-header__logo {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.l-header__logo a {
  display: block;
  color: var(--color-txt);
  text-decoration: none;
}
.l-header__logo img {
  width: auto;
  transition: height .4s;
}
@media screen and (max-width: 991.98px) {
  .l-header__logo img {
    display: none;
  }
}
@media print, screen and (min-width: 992px) {
  .l-header__logo img {
    height: clamp(120px, 14.4vw, 300px);
  }
}
.l-header__logo .txt {
  display: block;
  color: var(--color-main);
  font-weight: 700;
  font-size: clamp(1.375rem, .633vw + 1.233rem, 1.625rem);
}
@media print, screen and (min-width: 992px) {
  .l-header__logo .txt {
    display: none;
  }
}
.l-header__logo .txt small {
  margin-right: .3em;
  color: var(--color-txt);
  font-weight: 500;
  font-size: clamp(1.25rem, .128vw + 1.221rem, 1.375rem);
}
.l-header__util {
  grid-area: util;
}
@media print, screen and (min-width: 992px) {
  .l-header__util {
    align-self: stretch;
  }
}
@media print, screen and (min-width: 992px) {
  .l-header__block {
    display: grid;
    height: 100%;
    column-gap: clamp(30px, 2.7vw, 50px);

    grid-template: 'nav btn'/1fr auto;
    align-items: center;
  }
}
.l-header__nav {
  grid-area: nav;
}
@media print, screen and (min-width: 992px) {
  .l-header__nav {
    height: 100%;
  }
}
.l-header__btn {
  grid-area: btn;
}
@media screen and (max-width: 991.98px) {
  .l-header__btn {
    margin-top: 50px;
  }
}
@media print, screen and (min-width: 992px) {
  .l-header__btn {
    height: 100%;
  }
}
.l-header__btn a {
  position: relative;
  background-color: var(--color-main);
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: background-color .3s, color .3s;
}
@media screen and (max-width: 991.98px) {
  .l-header__btn a {
    display: block;
    padding: .8em 1.5em 1em;
  }
}
@media print, screen and (min-width: 992px) {
  .l-header__btn a {
    display: flex;
    flex-direction: column;
    width: clamp(170px, 13.7vw, 230px);
    height: 100%;

    align-items: center;
    justify-content: center;
  }
}
.l-header__btn a::before {
  position: absolute;
  right: 5px;
  bottom: 5px;
  background-color: #fff;
  content: '';

  aspect-ratio: 1;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 991.98px) {
  .l-header__btn a::before {
    width: 13px;
  }
}
@media print, screen and (min-width: 992px) {
  .l-header__btn a::before {
    width: clamp(10px, .9vw, 15px);
  }
}
.l-header__btn a .txt-en {
  display: block;
  font-weight: 500;
  font-family: var(--font-family-secondary);
  line-height: 1.4;
}
@media screen and (max-width: 991.98px) {
  .l-header__btn a .txt-en {
    font-size: clamp(1.5rem, .475vw + 1.393rem, 1.688rem);
  }
}
@media print, screen and (min-width: 992px) {
  .l-header__btn a .txt-en {
    font-size: clamp(1.25rem, .431vw + .983rem, 1.5rem);
  }
}
.l-header__btn a .txt-jp {
  display: block;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 991.98px) {
  .l-header__btn a .txt-jp {
    font-size: clamp(.813rem, .158vw + .777rem, .875rem);
  }
}
@media print, screen and (min-width: 992px) {
  .l-header__btn a .txt-jp {
    font-size: clamp(.813rem, .216vw + .679rem, .938rem);
  }
}
@media print, screen and (min-width: 992px) {
  .l-header__btn a:hover {
    background-color: var(--color-main-hover);
  }
}

/* コンテンツ
--------------------------------------------------------- */
.l-contents {
  flex: 1 0 auto;
  overflow: hidden;
}

/* フッター
--------------------------------------------------------- */
.l-footer {
  background-color: var(--color-txt);
  color: #fff;
}
@media print {
  .l-footer {
    page-break-inside: avoid;
  }
}
.l-footer__inner {
  max-width: min(92vw, 1600px);
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(50px, 5.3vw, 70px);
  padding-bottom: clamp(50px, 5.3vw, 70px);
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .l-footer__inner {
    text-align: center;
  }
}
@media print, screen and (min-width: 992px) {
  .l-footer__inner {
    display: grid;
    column-gap: 4%;

    grid-template-columns: 40% 1fr;
    grid-template-areas: 'info util';
  }
}
.l-footer__info {
  font-size: clamp(.938rem, .064vw + .923rem, 1rem);

  grid-area: info;
}
.l-footer__name {
  letter-spacing: .07em;
  font-weight: 600;
  font-size: clamp(1.5rem, .641vw + 1.356rem, 2.125rem);
  line-height: 1.5;
}
@media only screen and (max-width: 767.98px) {
  .l-footer__name {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .l-footer__name {
    margin-bottom: 25px;
  }
}
.l-footer__address .map-btn {
  margin-left: .8em;
  padding: .3em .8em;
  background-color: var(--color-sub);
  color: #fff;
  letter-spacing: .07em;
  font-weight: 500;
  font-size: 95%;
  font-family: var(--font-family-secondary);
  line-height: 1.6;
  transition: background-color .3s, color .3s;
}
.l-footer__address .map-btn:is(:hover, :active, :focus) {
  background-color: var(--color-main);
}
.l-footer__util {
  grid-area: util;
}
@media print, screen and (min-width: 992px) {
  .l-footer__util {
    padding-top: 5px;
  }
}
@media screen and (max-width: 991.98px) {
  .l-footer__contact {
    margin-top: clamp(30px, 6.2vw, 40px);
  }
}
@media print, screen and (min-width: 768px) {
  .l-footer__contact {
    display: flex;

    justify-content: center;
    gap: 1.5em;
  }
}
@media print, screen and (min-width: 992px) {
  .l-footer__contact {
    justify-content: flex-end;
  }
}
.l-footer__contact-num {
  letter-spacing: .02em;
  font-weight: 600;
  font-family: var(--font-family-secondary);
}
@media only screen and (max-width: 767.98px) {
  .l-footer__contact-num {
    font-size: clamp(1.375rem, .98vw + 1.154rem, 1.625rem);
    line-height: 1.5;
  }
}
@media print, screen and (min-width: 768px) {
  .l-footer__contact-num {
    font-size: clamp(1.5rem, 1.215vw + .917rem, 2.375rem);
    line-height: 1.3;
  }
}
@media only screen and (max-width: 767.98px) {
  .l-footer__nav {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .l-footer__nav {
    margin-top: 20px;
  }
}
.l-footer__copyright {
  width: 92%;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #b9b9b9;
  text-align: center;
  letter-spacing: .05em;
  font-size: .75rem;
}
@media only screen and (max-width: 767.98px) {
  .l-footer__copyright {
    padding-top: 2em;
    padding-bottom: 2em;
  }
}
@media print, screen and (min-width: 768px) {
  .l-footer__copyright {
    padding-top: 3em;
    padding-bottom: 3em;
  }
}

/* ========================================================================
/*
/* Component
/*
========================================================================= */
/* ドロワー
--------------------------------------------------------- */
.drawer__btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  width: var(--header-height-mobile);
  height: var(--header-height-mobile);
  outline: none !important;
  background: var(--color-main);
  transition: background-color .5s;

  -webkit-user-select: none;
          user-select: none;
}
@media print, screen and (min-width: 992px) {
  .drawer__btn {
    display: none;
  }
}
.is-drawer-open .drawer__btn {
  background-color: #fff;
}
.drawer__btn-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: clamp(24px, 4vw, 30px);
  height: 1px;
  margin: auto;
  background: #fff;
  transition: .5s cubic-bezier(.645, .045, .355, 1);
  pointer-events: none;
}
.is-drawer-open .drawer__btn-line {
  background-color: #5f5f5f;
}
.drawer__btn-line:nth-child(1) {
  transform: translateY(-6px);
}
.is-drawer-open .drawer__btn-line:nth-child(1) {
  transform: rotate(45deg);
}
.is-drawer-open .drawer__btn-line:nth-child(2) {
  opacity: 0;
}
.drawer__btn-line:nth-child(3) {
  transform: translateY(6px);
}
.is-drawer-open .drawer__btn-line:nth-child(3) {
  transform: rotate(-45deg);
}
@media screen and (max-width: 991.98px) {
  .drawer__bg {
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 500;
    overflow-x: hidden;
    width: min(80vw, 450px);
    height: 100vh;
    background-color: #fff;
    transition: transform .5s cubic-bezier(.645, .045, .355, 1);
    pointer-events: none;
  }
}
@media print, screen and (min-width: 992px) {
  .drawer__bg {
    height: 100%;
  }
}
@media screen and (max-width: 991.98px) {
  .drawer__bg::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 991.98px) {
  .is-drawer-open .drawer__bg {
    overflow-y: auto;
    transform: translateX(-100%);
    pointer-events: auto;

    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
@media screen and (max-width: 991.98px) {
  .drawer__inner {
    visibility: hidden;
    padding: 90px 4vw 140px;
    opacity: 0;
    transition: opacity .5s cubic-bezier(.645, .045, .355, 1) .25s, visibility .5s cubic-bezier(.645, .045, .355, 1) .25s, transform .5s cubic-bezier(.645, .045, .355, 1) .25s;
    transform: translateX(30px);
  }
}
@media print, screen and (min-width: 992px) {
  .drawer__inner {
    height: 100%;
  }
}
@media screen and (max-width: 991.98px) {
  .is-drawer-open .drawer__inner {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
}
@media screen and (max-width: 991.98px) {
  .drawer__overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 400;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: .5s cubic-bezier(.645, .045, .355, 1);
    pointer-events: none;

    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
  }
}
@media screen and (max-width: 991.98px) {
  .is-drawer-open .drawer__overlay {
    visibility: visible;
    background: rgba(0, 0, 0, .3);
    opacity: 1;
    pointer-events: auto;
  }
}

/* グローバルナビ
--------------------------------------------------------- */
@media print, screen and (min-width: 992px) {
  .c-global-nav__items {
    display: flex;
    height: 100%;

    justify-content: flex-end;
    gap: clamp(20px, 2.2vw, 45px);
  }
}
@media screen and (max-width: 991.98px) {
  .c-global-nav__item + .c-global-nav__item {
    margin-top: 10px;
  }
}
.c-global-nav__item.--is-hidden {
  display: none;
}
.c-global-nav__item > a {
  position: relative;
  display: block;
  text-decoration: none;
  letter-spacing: .05em;
  transition: background-color .3s, color .3s;
}
@media screen and (max-width: 991.98px) {
  .c-global-nav__item > a {
    padding: .9em 1em .9em 1.5em;
    color: var(--color-txt);
    text-align: left;
  }
}
@media print, screen and (min-width: 992px) {
  .c-global-nav__item > a {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: .4em .6em;
    color: #fff;
    text-align: center;

    justify-content: center;
  }
}
.c-global-nav__item > a::after {
  position: absolute;
  margin: auto;
  background-color: var(--color-main);
  content: '';
  opacity: 0;
  transition: opacity .3s;
}
@media screen and (max-width: 991.98px) {
  .c-global-nav__item > a::after {
    top: 0;
    bottom: 0;
  }
}
@media print, screen and (min-width: 992px) {
  .c-global-nav__item > a::after {
    right: 0;
    left: 0;
  }
}
@media screen and (max-width: 991.98px) {
  .c-global-nav__item > a::after {
    left: 0;
    width: clamp(4px, .7vw, 5px);
  }
}
@media print, screen and (min-width: 992px) {
  .c-global-nav__item > a::after {
    top: 0;
    height: clamp(3px, .2vw, 4px);
  }
}
.c-global-nav__item > a .txt-en {
  display: block;
  font-weight: 500;
  font-family: var(--font-family-secondary);
  line-height: 1.5;
}
@media screen and (max-width: 991.98px) {
  .c-global-nav__item > a .txt-en {
    font-size: clamp(1.75rem, .316vw + 1.679rem, 1.875rem);
  }
}
@media print, screen and (min-width: 992px) {
  .c-global-nav__item > a .txt-en {
    font-size: clamp(1.25rem, .431vw + .983rem, 1.5rem);
  }
}
.c-global-nav__item > a .txt-jp {
  display: block;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 991.98px) {
  .c-global-nav__item > a .txt-jp {
    font-size: clamp(.875rem, .158vw + .839rem, .938rem);
  }
}
@media print, screen and (min-width: 992px) {
  .c-global-nav__item > a .txt-jp {
    font-size: clamp(.813rem, .216vw + .679rem, .938rem);
  }
}
@media print, screen and (min-width: 992px) {
  .c-global-nav__item > a:hover::before,
  .c-global-nav__item > a:hover::after {
    opacity: 1;
  }
}
.c-global-nav__item.is-current > a::before,
.c-global-nav__item.is-current > a::after {
  opacity: 1;
}

/* フッターナビ
--------------------------------------------------------- */
.c-footer-nav__items {
  display: flex;

  flex-wrap: wrap;
}
@media only screen and (max-width: 767.98px) {
  .c-footer-nav__items {
    gap: 10px 1.5em;
  }
}
@media print, screen and (min-width: 768px) {
  .c-footer-nav__items {
    justify-content: center;
    gap: 15px 2em;
  }
}
@media print, screen and (min-width: 992px) {
  .c-footer-nav__items {
    justify-content: flex-end;
  }
}
.c-footer-nav__item {
  position: relative;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 991.98px) {
  .c-footer-nav__item {
    font-size: clamp(.938rem, .158vw + .902rem, 1rem);
  }
}
@media print, screen and (min-width: 992px) {
  .c-footer-nav__item {
    font-size: clamp(.875rem, .216vw + .741rem, 1rem);
  }
}
.c-footer-nav__item a {
  color: #fff;
  transition: color .3s;
}
.c-footer-nav__item a:hover {
  color: var(--color-sub);
}

/* キャッチコピー
--------------------------------------------------------- */
.c-copy {
  margin-bottom: 1.2em;
  font-weight: 500;
  font-size: clamp(1.063rem, .641vw + .918rem, 1.688rem);
  line-height: 1.5;
}

/* リスト
--------------------------------------------------------- */
.c-list > li {
  position: relative;
}
.c-list > li::before {
  position: absolute;
  left: 0;
}
.c-list.--dot > li {
  padding-left: 1.2em;
}
.c-list.--dot > li::before {
  content: '・';
}
.c-list.--num > li {
  margin-left: 1.3em;
  list-style-type: decimal;
}
.c-list.--inline {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(6em, 1fr));
  gap: 4%;
}

/* テーブル
--------------------------------------------------------- */
.c-table {
  width: 100%;
}
.c-table th,
.c-table td {
  word-break: break-all;
  line-height: 1.7;
}
@media only screen and (max-width: 767.98px) {
  .c-table th,
  .c-table td {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  .c-table.--style-a th,
  .c-table.--style-a td {
    text-align: center;
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 768px) {
  .c-table.--style-a th,
  .c-table.--style-a td {
    padding: 1.4em 2.4em;
    font-size: clamp(1rem, .174vw + .917rem, 1.125rem);
  }
}
.c-table.--style-a th {
  border-right: clamp(3px, .3vw, 4px) solid var(--color-white);
  border-bottom: clamp(3px, .3vw, 4px) solid var(--color-white);
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 500;
}
@media only screen and (max-width: 767.98px) {
  .c-table.--style-a th {
    padding: .2em 1em;
  }
}
.c-table.--style-a td {
  border-bottom: clamp(3px, .3vw, 4px) solid var(--color-white);
  background-color: var(--color-base);
}
@media only screen and (max-width: 767.98px) {
  .c-table.--style-a td {
    padding: 1em 1em;
  }
}
@media only screen and (max-width: 767.98px) {
  .c-table.--style-b th,
  .c-table.--style-b td {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 768px) {
  .c-table.--style-b th,
  .c-table.--style-b td {
    padding-top: 1.4em;
    padding-bottom: 1.4em;
    font-size: clamp(1rem, .087vw + .958rem, 1.063rem);
  }
}
.c-table.--style-b th {
  font-weight: 500;
}
@media only screen and (max-width: 767.98px) {
  .c-table.--style-b th {
    padding-top: .5em;
    padding-bottom: .5em;
  }
}
@media only screen and (max-width: 767.98px) {
  .c-table.--style-b td {
    padding-bottom: 1.6em;
  }
}
@media print, screen and (min-width: 768px) {
  .c-table.--style-b td {
    padding-left: clamp(30px, 3vw, 50px);
  }
}
@media print, screen and (min-width: 768px) {
  .c-table.--company th,
  .c-table.--overview th {
    width: 25%;
  }
}
.c-table.--contact th,
.c-table.--contact td {
  position: relative;
}
.c-table.--contact th .c-badge,
.c-table.--contact td .c-badge {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
  .c-table.--contact th {
    width: clamp(250px, 20.5vw, 300px);
  }
}
@media only screen and (max-width: 767.98px) {
  .c-table.--contact td {
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  .c-table__tel {
    display: flex;
  }
}
@media print, screen and (min-width: 768px) {
  .c-table__tel-item + .c-table__tel-item::before {
    margin-right: .5em;
    margin-left: .5em;
    content: '/';
  }
}

/* バッジ
--------------------------------------------------------- */
.c-badge {
  display: inline-block;
  padding: .3em .6em;
  background-color: var(--color-red);
  color: #fff;
  font-weight: normal;
  font-size: clamp(11px, 1vw, 12px);
  line-height: 1.4;
}

@media only screen and (max-width: 767.98px) {
  .c-heading {
    margin-bottom: 1.8em;
  }
}
@media print, screen and (min-width: 768px) {
  .c-heading {
    margin-bottom: 3em;
  }
}
.c-heading + * {
  margin-top: 0 !important;
}
.c-heading.--secondary {
  display: flex;
  padding-bottom: .5em;
  border-bottom: 1px solid #e0e5eb;

  align-items: center;
  gap: clamp(15px, 2.4vw, 40px);
}
.c-heading__en {
  color: var(--color-main);
  font-weight: 700;
  line-height: 1.4;
}
.c-heading.--primary .c-heading__en {
  position: relative;
  left: -.05em;
}
@media only screen and (max-width: 767.98px) {
  .c-heading.--primary .c-heading__en {
    font-size: clamp(2rem, 1.961vw + 1.559rem, 2.5rem);
  }
}
@media print, screen and (min-width: 768px) {
  .c-heading.--primary .c-heading__en {
    font-size: clamp(3.75rem, 2.604vw + 2.5rem, 5.625rem);
  }
}
.c-heading.--secondary .c-heading__en {
  position: relative;
  left: -.05em;
}
@media only screen and (max-width: 767.98px) {
  .c-heading.--secondary .c-heading__en {
    font-size: clamp(1.75rem, 1.471vw + 1.419rem, 2.125rem);
  }
}
@media print, screen and (min-width: 768px) {
  .c-heading.--secondary .c-heading__en {
    font-size: clamp(3.125rem, 1.736vw + 2.292rem, 4.375rem);
  }
}
.c-heading__title {
  font-weight: 600;
  line-height: 1.4;
}
@media only screen and (max-width: 767.98px) {
  .c-heading.--primary .c-heading__title {
    font-size: clamp(.938rem, .49vw + .827rem, 1.063rem);
  }
}
@media print, screen and (min-width: 768px) {
  .c-heading.--primary .c-heading__title {
    font-size: clamp(1.25rem, .347vw + 1.083rem, 1.5rem);
  }
}
.c-heading.--secondary .c-heading__title {
  position: relative;
  top: .2em;
}
@media only screen and (max-width: 767.98px) {
  .c-heading.--secondary .c-heading__title {
    font-size: clamp(.938rem, .49vw + .827rem, 1.063rem);
  }
}
@media print, screen and (min-width: 768px) {
  .c-heading.--secondary .c-heading__title {
    font-size: clamp(1.25rem, .347vw + 1.083rem, 1.5rem);
  }
}

.c-heading-border {
  margin-bottom: 1.2em;
  padding-bottom: .5em;
  border-bottom: 1px solid #e0e5eb;
  font-weight: 500;
  font-size: clamp(1.063rem, .321vw + .99rem, 1.375rem);
  line-height: 1.5;
}

/* メインビジュアル
--------------------------------------------------------- */
.c-hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.c-hero::before {
  position: absolute;
  z-index: 2;
  background-color: rgba(6, 11, 13, .3);
  content: '';

  inset: 0;
  mix-blend-mode: multiply;
}
.c-hero__content {
  position: absolute;
  top: 0;
  right: clamp(15px, 4.2vw, 80px);
  right: 7vw;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  margin: auto;
  color: #fff;

  justify-content: center;
}
@media print, screen and (min-width: 992px) {
  .c-hero__content {
    padding-top: clamp(40px, 4.8vw, 100px);
  }
}
.c-hero__copy,
.c-hero__en {
  opacity: 0;
  filter: blur(10px);
  transition: filter 2s, opacity 1s;
}
.is-hero-ready .c-hero__copy,
.is-hero-ready .c-hero__en {
  opacity: 1;
  filter: blur(0);
}
.is-hero-ready .c-hero__copy span,
.is-hero-ready .c-hero__en span {
  -webkit-mask-position: left center;
          mask-position: left center;
}
.c-hero__copy span,
.c-hero__en span {
  transition: -webkit-mask-position 5s;
  transition:         mask-position 5s;
  transition:         mask-position 5s, -webkit-mask-position 5s;

  -webkit-mask-image: linear-gradient(270deg, hsla(0, 0%, 100%, 0) 0%, hsla(0, 0%, 100%, 0) 30%, hsla(0, 0%, 100%, .02) 35%, hsla(0, 0%, 100%, .09) 40%, hsla(0, 0%, 100%, .21) 45%, hsla(0, 0%, 100%, .38) 50%, hsla(0, 0%, 100%, .62) 55%, hsla(0, 0%, 100%, .79) 60%, hsla(0, 0%, 100%, .91) 65%, hsla(0, 0%, 100%, .98) 70%, hsl(0, 0%, 100%) 75%, hsl(0, 0%, 100%) 100%);
          mask-image: linear-gradient(270deg, hsla(0, 0%, 100%, 0) 0%, hsla(0, 0%, 100%, 0) 30%, hsla(0, 0%, 100%, .02) 35%, hsla(0, 0%, 100%, .09) 40%, hsla(0, 0%, 100%, .21) 45%, hsla(0, 0%, 100%, .38) 50%, hsla(0, 0%, 100%, .62) 55%, hsla(0, 0%, 100%, .79) 60%, hsla(0, 0%, 100%, .91) 65%, hsla(0, 0%, 100%, .98) 70%, hsl(0, 0%, 100%) 75%, hsl(0, 0%, 100%) 100%);
  -webkit-mask-position: right center;
          mask-position: right center;
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
}
.c-hero__copy {
  font-weight: 400;
  font-family: var(--font-family-tertiary);
  line-height: 1.2;
}
@media only screen and (max-width: 575.98px) {
  .c-hero__copy {
    font-size: 11vw;
  }
}
@media print, screen and (min-width: 576px) {
  .c-hero__copy {
    font-size: clamp(3.125rem, 2.976vw + 2.054rem, 5.625rem);
  }
}
.c-hero__en {
  padding-left: .1em;
  font-weight: 300;
  font-family: var(--font-family-secondary);
}
@media only screen and (max-width: 575.98px) {
  .c-hero__en {
    font-size: 7.3vw;
  }
}
@media print, screen and (min-width: 576px) {
  .c-hero__en {
    font-size: clamp(2.063rem, 2.009vw + 1.339rem, 3.75rem);
  }
}
.c-hero__en span {
  transition-delay: 1.8s;
}
.c-hero__marks {
  display: flex;

  gap: clamp(10px, 2.2vw, 40px);
}
.c-hero__mark {
  margin-top: clamp(20px, 2.6vw, 40px);
}
.c-hero__mark img {
  height: auto;
}
@media only screen and (max-width: 575.98px) {
  .c-hero__mark img {
    width: 20vw;
  }
}
@media print, screen and (min-width: 576px) {
  .c-hero__mark img {
    width: clamp(100px, 10.4vw, 160px);
  }
}
.c-hero__scroll {
  position: absolute;
  bottom: 2vw;
  left: 5vw;
  z-index: 3;
}
.c-hero .swiper-slide img {
  width: 100%;
  height: auto;
  font-size: 0;

  object-fit: cover;
}
@media only screen and (max-width: 767.98px) {
  .c-hero .swiper-slide img {
    min-height: 50vh;
  }
}
@media print, screen and (min-width: 768px) {
  .c-hero .swiper-slide img {
    height: clamp(500px, 58.4vw, 650px);
  }
}
@media screen and (min-width: 1200px) {
  .c-hero .swiper-slide img {
    height: 100vh;
  }
}
.c-hero .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}
.c-hero .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

/* ボタン
--------------------------------------------------------- */
.c-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  outline: none !important;
  color: inherit;
  text-align: center;
  text-decoration: none;
  font-size: inherit;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color .3s, color .3s;

  -webkit-appearance: none;
          appearance: none;
}
.c-btn.--primary {
  background-color: var(--color-main);
  color: #fff;
  font-weight: 600;
}
@media only screen and (max-width: 767.98px) {
  .c-btn.--primary {
    padding: .8em 1.7em;
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 768px) {
  .c-btn.--primary {
    padding: 1.3em 4.5em;
    letter-spacing: .08em;
    font-size: clamp(1.125rem, .174vw + 1.042rem, 1.25rem);
  }
}
.c-btn.--primary::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-sub);
  content: '';
  transition: transform .3s;
  transform: scaleX(0);
  transform-origin: right top;
}
.c-btn.--primary:is(:hover, :active, :focus) {
  color: #fff;
}
.c-btn.--primary:is(:hover, :active, :focus)::after {
  transform: scaleX(1);
  transform-origin: left top;
}
@media only screen and (max-width: 767.98px) {
  .c-btn.--primary.--arrow-right {
    padding-right: 3.5em;
  }
}
@media print, screen and (min-width: 768px) {
  .c-btn.--primary.--arrow-right {
    padding-right: 4.5em;
  }
}
@media only screen and (max-width: 767.98px) {
  .c-btn.--primary.--arrow-left {
    padding-left: 3.5em;
  }
}
@media print, screen and (min-width: 768px) {
  .c-btn.--primary.--arrow-left {
    padding-left: 4.5em;
  }
}
.c-btn.--arrow-right::before,
.c-btn.--arrow-left::before {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  color: inherit;
  font-weight: 900;
  font-size: inherit;
  font-family: 'Font Awesome 6 Free';
  line-height: 1;

  align-items: center;
}
.c-btn.--arrow-right::before {
  right: .9em;
  content: '\f30b';
}
.c-btn.--arrow-left::before {
  left: 1.5em;
  content: '\f30a';
}
.c-btn.--back {
  background-color: #aaa;
}
.c-btn.--back::after {
  background-color: #858585;
}

/* ページトップ
--------------------------------------------------------- */
.c-pagetop {
  position: fixed;
  z-index: 50;
  font-size: 0;
  opacity: 0;
  cursor: pointer;
  transition: transform .3s;
  transition: opacity .5s;
}
@media only screen and (max-width: 767.98px) {
  .c-pagetop {
    right: 10px;
    bottom: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-pagetop {
    right: 20px;
    bottom: 20px;
  }
}
@media print {
  .c-pagetop {
    display: none;
  }
}
.c-pagetop.is-show {
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  .c-pagetop img {
    width: 44px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-pagetop img {
    width: clamp(44px, 4.1vw, 50px);
  }
}

/* スクロールダウン
--------------------------------------------------------- */
.c-scroll-down6 {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  padding-bottom: calc(clamp(60px, 6.1vw, 80px) + 10px);
}
.c-scroll-down6__txt {
  color: #fff;
  letter-spacing: .2em;
  font-weight: 500;
  font-size: clamp(.625rem, .192vw + .582rem, .813rem);
  line-height: 1.2;

  writing-mode: vertical-rl;
}
.c-scroll-down6__line {
  position: absolute;
  bottom: 0;
  left: 50%;
  overflow: hidden;
  width: .5vw;
  height: clamp(60px, 6.1vw, 80px);
  transform: translate(-50%, 0);
}
.c-scroll-down6__line::before,
.c-scroll-down6__line::after {
  position: absolute;
  left: 50%;
  content: '';
  transform: translate(-50%, 0);
}
.c-scroll-down6__line::before {
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #fff;
}
.c-scroll-down6__line::after {
  top: -10px;
  bottom: -10px;
  width: 2px;
  background-color: var(--color-sub);
  animation: scroll 4s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translate(-50%, -100%);
  }
  100% {
    transform: translate(-50%, 100%);
  }
}

.c-scroll-down__inner {
  position: absolute;
  bottom: 0;
  z-index: 10;
  display: inline-block;
  overflow: hidden;
  padding-top: clamp(60px, 6.1vw, 80px);
  color: #fff;
  letter-spacing: .1em;
  line-height: 1;

  writing-mode: vertical-lr;
}
@media only screen and (max-width: 767.98px) {
  .c-scroll-down__inner {
    font-size: 2.5vw;
  }
}
@media print, screen and (min-width: 768px) {
  .c-scroll-down__inner {
    font-size: clamp(.75rem, .174vw + .667rem, .875rem);
  }
}
.c-scroll-down__inner::before,
.c-scroll-down__inner::after {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  width: 1px;
  height: clamp(50px, 5.3vw, 70px);
  content: '';
}
.c-scroll-down__inner::before {
  background-color: var(--color-base);
}
.c-scroll-down__inner::after {
  background-color: var(--color-main);
  animation: sdl 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* フォーム
--------------------------------------------------------- */
.c-form__radio {
  display: flex;
  column-gap: clamp(30px, 3.1vw, 40px);

  flex-wrap: wrap;
  row-gap: 8px;
}
.c-form__radio-item {
  display: flex;

  align-items: center;
  gap: .5em;
}
.c-form__radio-item label {
  display: inline-block;
  margin-bottom: 0;
}
.c-form input[type=radio] {
  position: relative;
  display: inline-block;
  width: clamp(20px, 1.9vw, 24px);
  height: clamp(20px, 1.9vw, 24px);
  border: 2px solid #3b3b3f;
  border-radius: 50%;
  cursor: pointer;

  -webkit-appearance: none;
          appearance: none;
}
.c-form input[type=radio]:checked::before {
  position: absolute;
  width: clamp(10px, 1vw, 12px);
  height: clamp(10px, 1vw, 12px);
  margin: auto;
  border-radius: 50%;
  background-color: #3b3b3f;
  content: '';

  inset: 0;
}
.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form textarea {
  width: 100%;
  padding: 1.2em 1em;
  border: 0;
  border-radius: clamp(4px, .4vw, 6px);
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.8;
  transition: box-shadow .3s;
}
@media only screen and (max-width: 767.98px) {
  .c-form input[type=text],
  .c-form input[type=email],
  .c-form input[type=tel],
  .c-form textarea {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 768px) {
  .c-form input[type=text],
  .c-form input[type=email],
  .c-form input[type=tel],
  .c-form textarea {
    font-size: clamp(1rem, .087vw + .958rem, 1.063rem);
  }
}
.c-form input[type=text]:focus,
.c-form input[type=email]:focus,
.c-form input[type=tel]:focus,
.c-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--color-primary) inset, 0 0 0 3px rgba(0, 0, 0, .1);
}
.c-form input[type=text]::placeholder,
.c-form input[type=email]::placeholder,
.c-form input[type=tel]::placeholder,
.c-form textarea::placeholder {
  color: #cacbcd;
  font-weight: 400;
}
.c-form input[type=text].item-s,
.c-form input[type=email].item-s,
.c-form input[type=tel].item-s,
.c-form textarea.item-s {
  width: clamp(150px, 14.5vw, 180px);
}
.c-form textarea {
  min-height: 300px;
  resize: vertical;
}
@media only screen and (max-width: 767.98px) {
  .c-form select,
  .c-form input[type=file] {
    width: 100%;
  }
}
.c-form__btn {
  display: flex;
  margin-top: clamp(50px, 6.1vw, 90px);

  justify-content: center;
  gap: clamp(15px, 1.8vw, 25px);
}

/* ローディング
--------------------------------------------------------- */
.c-loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  margin: auto;
  background-color: #f7f7f7;
}
.is-hero-ready .c-loading {
  animation: fadeOut .8s linear forwards;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    pointer-events: none;
  }
}
.c-loading__in {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
}
.c-loading__in::after,
.c-loading__in::before {
  position: absolute;
  top: 40%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  margin-left: -50%;
  border-radius: 110%;
  content: '';
}
.c-loading__in::after {
  border: 1px solid transparent;
  border-top-color: var(--color-main);
  animation: loading .75s linear infinite;
}
.c-loading__in::before {
  border: 1px solid #d6d6d6;
}
@keyframes loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 埋め込みコンポーネント
--------------------------------------------------------- */
.c-embed {
  font-size: 0;
}
.c-embed iframe,
.c-embed video {
  width: 100% !important;
  height: 100% !important;
}
@media only screen and (max-width: 767.98px) {
  .c-embed.--gmap iframe {
    aspect-ratio: 1;
  }
}
@media print, screen and (min-width: 768px) {
  .c-embed.--gmap iframe {
    aspect-ratio: 16/9;
  }
}

/* GSAP
--------------------------------------------------------- */
.js-scroll-show {
  opacity: 0;
}

/* ========================================================================
/*
/* Project
/*
========================================================================= */
/* 人の縁を繋ぐ
--------------------------------------------------------- */
.p-intro {
  padding-top: clamp(50px, 7.5vw, 120px);
  padding-bottom: clamp(50px, 7.5vw, 120px);
  background-color: var(--color-sub);
  color: #fff;
}
.p-intro__inner {
  width: min(92%, 1600px);
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (min-width: 992px) {
  .p-intro__inner {
    display: grid;
    column-gap: clamp(40px, 5.2vw, 100px);

    grid-template: 'heading txt'/auto 1fr;
  }
}
.p-intro__heading {
  grid-area: heading;
}
@media screen and (max-width: 991.98px) {
  .p-intro__heading {
    margin-bottom: 2em;
  }
}
.p-intro__heading-en,
.p-intro__heading-title {
  opacity: 0;
  filter: blur(10px);
  transition: filter 2s, opacity 1s;
}
.p-intro__heading.is-appear .p-intro__heading-en,
.p-intro__heading.is-appear .p-intro__heading-title {
  opacity: 1;
  filter: blur(0);
}
.p-intro__heading-en span,
.p-intro__heading-title span {
  transition: -webkit-mask-position 4s;
  transition:         mask-position 4s;
  transition:         mask-position 4s, -webkit-mask-position 4s;

  -webkit-mask-image: linear-gradient(270deg, hsla(0, 0%, 100%, 0) 0%, hsla(0, 0%, 100%, 0) 30%, hsla(0, 0%, 100%, .02) 35%, hsla(0, 0%, 100%, .09) 40%, hsla(0, 0%, 100%, .21) 45%, hsla(0, 0%, 100%, .38) 50%, hsla(0, 0%, 100%, .62) 55%, hsla(0, 0%, 100%, .79) 60%, hsla(0, 0%, 100%, .91) 65%, hsla(0, 0%, 100%, .98) 70%, hsl(0, 0%, 100%) 75%, hsl(0, 0%, 100%) 100%);
          mask-image: linear-gradient(270deg, hsla(0, 0%, 100%, 0) 0%, hsla(0, 0%, 100%, 0) 30%, hsla(0, 0%, 100%, .02) 35%, hsla(0, 0%, 100%, .09) 40%, hsla(0, 0%, 100%, .21) 45%, hsla(0, 0%, 100%, .38) 50%, hsla(0, 0%, 100%, .62) 55%, hsla(0, 0%, 100%, .79) 60%, hsla(0, 0%, 100%, .91) 65%, hsla(0, 0%, 100%, .98) 70%, hsl(0, 0%, 100%) 75%, hsl(0, 0%, 100%) 100%);
  -webkit-mask-position: right center;
          mask-position: right center;
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
}
.p-intro__heading.is-appear .p-intro__heading-en span,
.p-intro__heading.is-appear .p-intro__heading-title span {
  -webkit-mask-position: left center;
          mask-position: left center;
}
.p-intro__heading-en {
  letter-spacing: .03em;
  font-weight: 700;
  font-family: var(--font-family-secondary);
  line-height: 1;
}
@media screen and (max-width: 991.98px) {
  .p-intro__heading-en {
    font-size: clamp(2.5rem, 1.582vw + 2.144rem, 3.125rem);
  }
}
@media print, screen and (min-width: 992px) {
  .p-intro__heading-en {
    font-size: clamp(3.75rem, 4.31vw + 1.078rem, 6.25rem);
  }
}
.p-intro__heading-title {
  margin-top: .7em;
  letter-spacing: .1em;
  font-weight: 400;
  font-family: var(--font-family-tertiary);
  line-height: 1.4;
}
@media screen and (max-width: 991.98px) {
  .p-intro__heading-title {
    font-size: clamp(1.875rem, .791vw + 1.697rem, 2.188rem);
  }
}
@media print, screen and (min-width: 992px) {
  .p-intro__heading-title {
    font-size: clamp(2.813rem, 1.616vw + 1.81rem, 3.75rem);
  }
}
.p-intro__heading-title span {
  transition-delay: 1.5s;
}
.p-intro__txt {
  font-size: clamp(1rem, .128vw + .971rem, 1.125rem);

  grid-area: txt;
}
@media print, screen and (min-width: 992px) {
  .p-intro__txt {
    padding-top: .6em;
    line-height: 3;
  }
}

/* 保有車両
--------------------------------------------------------- */
.p-car {
  margin-top: clamp(70px, 9.2vw, 140px);
}
.p-car__inner {
  width: min(92%, 1600px);
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (min-width: 992px) {
  .p-car__items {
    display: grid;
    column-gap: clamp(20px, 2.4vw, 50px);

    grid-template-columns: repeat(3, 1fr);
  }
}
.p-car__item {
  position: relative;
  z-index: 1;
  padding: clamp(8px, .8vw, 10px);
  border: 1px solid var(--color-txt);
  text-align: center;
}
@media screen and (max-width: 991.98px) {
  .p-car__item {
    padding-bottom: 65vw;
  }
}
@media print, screen and (min-width: 992px) {
  .p-car__item {
    transition: color .5s;
  }
}
.p-car__item::before,
.p-car__item::after {
  position: absolute;
  z-index: -1;
  content: '';
}
@media screen and (max-width: 991.98px) {
  .p-car__item::before,
  .p-car__item::after {
    right: 0;
    bottom: 0;
    left: 0;
    height: 60vw;
  }
}
@media print, screen and (min-width: 992px) {
  .p-car__item::before,
  .p-car__item::after {
    opacity: 0;
    transition: opacity .5s;

    inset: 0;
  }
}
.p-car__item::before {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media print, screen and (min-width: 992px) {
  .p-car__item::after {
    background-color: rgba(0, 0, 0, .3);
  }
}
.p-car__item.--primary::before {
  background-image: url('../images/bg-car-primary.jpg');
  background-position: right 80%;
}
.p-car__item.--secondary::before {
  background-image: url('../images/bg-car-secondary.jpg');
  background-position: left 60%;
}
.p-car__item.--tertiary::before {
  background-image: url('../images/bg-car-tertiary.jpg');
  background-position: right 60%;
}
@media print, screen and (min-width: 992px) {
  .p-car__item:hover {
    color: #fff;
  }
}
@media print, screen and (min-width: 992px) {
  .p-car__item:hover::before,
  .p-car__item:hover::after {
    opacity: 1;
  }
}
@media print, screen and (min-width: 992px) {
  .p-car__item:hover .p-car__item-title {
    background-color: transparent;
  }
}
@media print, screen and (min-width: 992px) {
  .p-car__item:hover .p-car__item-btn {
    border-color: #fff;
  }
}
@media screen and (max-width: 991.98px) {
  .p-car__item + .p-car__item {
    margin-top: 40px;
  }
}
.p-car__title {
  position: relative;
  background-color: var(--color-txt);
  color: #fff;
  letter-spacing: .07em;
  transition: background-color .5s, color .5s;
}
@media screen and (max-width: 991.98px) {
  .p-car__title {
    padding: .7em 1.5em;
    font-size: clamp(1.25rem, .316vw + 1.179rem, 1.375rem);
  }
}
@media print, screen and (min-width: 992px) {
  .p-car__title {
    padding: .8em 1.5em;
    font-size: clamp(1.5rem, .647vw + 1.099rem, 1.875rem);
  }
}
.p-car__item.--primary .p-car__title {
  background-color: var(--color-main);
}
.p-car__item.--secondary .p-car__title {
  background-color: var(--color-accent);
}
.p-car__item.--tertiary .p-car__title {
  background-color: var(--color-warning);
}
@media print, screen and (min-width: 992px) {
  .p-car__item:hover .p-car__title {
    background-color: rgba(0, 0, 0, .3);
  }
}
.p-car__content {
  padding-top: clamp(25px, 2.6vw, 35px);
  padding-right: clamp(8px, .8vw, 10px);
  padding-bottom: clamp(15px, 1.5vw, 20px);
  padding-left: clamp(8px, .8vw, 10px);
}
.p-car__name {
  margin-bottom: 1.4em;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.125rem, .385vw + 1.038rem, 1.5rem);
  line-height: 1.6;
}
@media screen and (max-width: 991.98px) {
  .p-car__name {
    font-size: clamp(1.125rem, .316vw + 1.054rem, 1.25rem);
  }
}
@media print, screen and (min-width: 992px) {
  .p-car__name {
    font-size: clamp(1.063rem, .754vw + .595rem, 1.5rem);
  }
}
.p-car__label {
  display: inline-block;
  margin-bottom: 1.5em;
  padding: .1em 1.3em;
  border-radius: clamp(4px, .4vw, 6px);
  background-color: var(--color-txt);
  color: #fff;
  letter-spacing: .07em;
  font-weight: 500;
  font-size: clamp(1.063rem, .256vw + 1.005rem, 1.313rem);
  line-height: 1.6;
  transition: background-color .5s, color .5s;
}
@media print, screen and (min-width: 992px) {
  .p-car__item:hover .p-car__label {
    background-color: rgba(0, 0, 0, .3);
  }
}
.p-car__list li {
  padding: .2em 1.3em;
  border-radius: clamp(4px, .4vw, 6px);
  background-color: var(--color-base);
  font-weight: 500;
  font-size: clamp(1rem, .256vw + .942rem, 1.25rem);
  line-height: 1.6;
  transition: background-color .5s, color .5s;
}
.p-car__list li + li {
  margin-top: clamp(12px, 1.1vw, 14px);
}
@media print, screen and (min-width: 992px) {
  .p-car__item:hover .p-car__list li {
    background-color: rgba(0, 0, 0, .3);
    color: #fff;
  }
}

/* 会社案内
--------------------------------------------------------- */
.p-company__main {
  position: relative;
  z-index: 1;
  margin-top: clamp(70px, 9.2vw, 140px);
  padding-top: clamp(50px, 6.6vw, 100px);
  background-color: var(--color-base);
}
@media print, screen and (min-width: 992px) {
  .p-company__main {
    padding-bottom: clamp(50px, 6.6vw, 100px);
  }
}
@media screen and (max-width: 991.98px) {
  .p-company__main-in {
    padding-right: 4vw;
    padding-left: 4vw;
  }
}
@media print, screen and (min-width: 992px) {
  .p-company__main-in {
    width: min(92%, 1600px);
    margin-right: auto;
    margin-left: auto;
  }
}
@media print, screen and (min-width: 992px) {
  .p-company__content {
    width: 44%;
  }
}
@media screen and (max-width: 991.98px) {
  .p-company__txt {
    font-size: clamp(1rem, .158vw + .964rem, 1.063rem);
  }
}
@media print, screen and (min-width: 992px) {
  .p-company__txt {
    font-size: clamp(.938rem, .192vw + .894rem, 1.125rem);
    line-height: 2.8;
  }
}
@media screen and (max-width: 991.98px) {
  .p-company__img {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    padding-top: 40vw;
  }
}
@media print, screen and (min-width: 992px) {
  .p-company__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    z-index: -1;
    display: flex;
    width: calc(100% - min(92%, 1600px) * .48 - (100% - min(92%, 1600px)) / 2);

    align-items: flex-end;
  }
}
.p-company__img::before {
  position: absolute;
  z-index: -1;
  background: url('../images/bg-company.jpg') center center/cover no-repeat;
  content: '';

  inset: 0;
}
.p-company__copy {
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
  color: #fff;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 991.98px) {
  .p-company__copy {
    padding: 1.2em 1.3em;
    font-size: clamp(1.063rem, .316vw + .991rem, 1.188rem);
  }
}
@media print, screen and (min-width: 992px) {
  .p-company__copy {
    padding: 1.2em .5em;
    text-align: center;
    font-size: clamp(1.125rem, .647vw + .724rem, 1.5rem);
  }
}
.p-company__outline {
  width: min(92%, 1600px);
  margin-top: clamp(70px, 9.2vw, 140px);
  margin-right: auto;
  margin-left: auto;
}
.p-company__map {
  margin-top: clamp(70px, 9.2vw, 140px);
  font-size: 0;
}
.p-company__map iframe {
  width: 100% !important;
  height: 100% !important;
}
@media only screen and (max-width: 767.98px) {
  .p-company__map iframe {
    aspect-ratio: 1;
    aspect-ratio: 4/3;
  }
}
@media print, screen and (min-width: 768px) {
  .p-company__map iframe {
    aspect-ratio: 3/2;
  }
}
@media screen and (min-width: 1200px) {
  .p-company__map iframe {
    aspect-ratio: 3/1;
  }
}

/* 募集要項
--------------------------------------------------------- */
.p-overview {
  margin-top: clamp(50px, 6.6vw, 100px);
}
.p-overview__inner {
  width: min(92%, 1600px);
  margin-right: auto;
  margin-left: auto;
}
.p-overview__item + .p-overview__item {
  margin-top: clamp(50px, 6.1vw, 90px);
}
.p-overview__title {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 1.5em;
  padding: .4em 1.5em;
  border: 2px solid #000;
  color: var(--color-txt);
  letter-spacing: .07em;
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width: 767.98px) {
  .p-overview__title {
    font-size: clamp(1.125rem, .98vw + .904rem, 1.375rem);
  }
}
@media print, screen and (min-width: 768px) {
  .p-overview__title {
    font-size: clamp(1.5rem, .347vw + 1.333rem, 1.75rem);
  }
}
.p-overview__title::before {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: clamp(12px, 1.2vw, 16px);
  background-color: #000;
  content: '';

  aspect-ratio: 1;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.p-overview__title.--primary {
  border-color: var(--color-main);
}
.p-overview__title.--primary::before {
  background-color: var(--color-main);
}
.p-overview__title.--secondary {
  border-color: var(--color-accent);
}
.p-overview__title.--secondary::before {
  background-color: var(--color-accent);
}
.p-overview__title.--tertiary {
  border-color: var(--color-warning);
}
.p-overview__title.--tertiary::before {
  background-color: var(--color-warning);
}

/* 採用について
--------------------------------------------------------- */
.p-recruit {
  margin-top: clamp(70px, 9.2vw, 140px);

  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.p-recruit::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  content: '';
}
@media only screen and (max-width: 767.98px) {
  .p-recruit::before {
    background-image: url('../images/bg-recruit-sp.jpg');
  }
}
@media print, screen and (min-width: 768px) {
  .p-recruit::before {
    background-image: url('../images/bg-recruit-pc.jpg');
  }
}
.p-recruit__content {
  width: min(92%, 1600px);
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(60px, 7.9vw, 120px);
  padding-bottom: clamp(60px, 7.9vw, 120px);
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  .p-recruit__heading {
    margin-bottom: 1.8em;
  }
}
@media print, screen and (min-width: 768px) {
  .p-recruit__heading {
    margin-bottom: 3em;
  }
}
.p-recruit__heading-en {
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 767.98px) {
  .p-recruit__heading-en {
    font-size: clamp(2rem, 1.961vw + 1.559rem, 2.5rem);
  }
}
@media print, screen and (min-width: 768px) {
  .p-recruit__heading-en {
    font-size: clamp(3.75rem, 2.604vw + 2.5rem, 5.625rem);
  }
}
.p-recruit__heading-title {
  font-weight: 600;
  line-height: 1.4;
}
@media only screen and (max-width: 767.98px) {
  .p-recruit__heading-title {
    font-size: clamp(.938rem, .49vw + .827rem, 1.063rem);
  }
}
@media print, screen and (min-width: 768px) {
  .p-recruit__heading-title {
    font-size: clamp(1.25rem, .347vw + 1.083rem, 1.5rem);
  }
}
.p-recruit__txt {
  font-size: clamp(1rem, .128vw + .971rem, 1.125rem);
}
@media only screen and (max-width: 767.98px) {
  .p-recruit__txt {
    text-align: left;
  }
}
@media print, screen and (min-width: 768px) {
  .p-recruit__txt {
    line-height: 2.8;
  }
}

/* 職種一覧
--------------------------------------------------------- */
.p-job {
  margin-top: clamp(50px, 6.6vw, 100px);
}
.p-job__inner {
  width: min(92%, 1600px);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 991.98px) {
  .p-job__items {
    padding-right: 4vw;
    padding-left: 4vw;
  }
}
@media print, screen and (min-width: 992px) {
  .p-job__items {
    display: grid;
    max-width: 2000px;
    margin-right: auto;
    margin-left: auto;
    padding-right: clamp(20px, 2.1vw, 40px);
    padding-left: clamp(20px, 2.1vw, 40px);
    column-gap: clamp(10px, 1.3vw, 20px);

    grid-template-columns: repeat(3, 1fr);
  }
}
.p-job__item {
  position: relative;
  z-index: 3;
  display: block;
  overflow: hidden;
  width: 100%;
  color: #fff;
  transition: all .5s;
}
@media print, screen and (min-width: 992px) {
  .p-job__item {
    height: clamp(400px, 30.9vw, 500px);
  }
}
@media screen and (max-width: 991.98px) {
  .p-job__item + .p-job__item {
    margin-top: clamp(50px, 9.8vw, 60px);
  }
}
.p-job__item:hover {
  z-index: 4;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2);
  transform: scale(1.05);
}
.p-job__in {
  position: absolute;
  z-index: 1;
  margin: auto;
  background-size: cover;

  inset: 0;
}
.p-job__in::before,
.p-job__in::after {
  position: absolute;
  z-index: 2;
  content: '';
  transition: all .5s;

  inset: 0;
}
.p-job__in::before {
  background-color: #000;
  opacity: 0;
}
.p-job__in::after {
  opacity: .7;
}
.p-job__item.--primary .p-job__in {
  background-image: url(../images/pic-job01.jpg);
  background-position: right center;
}
.p-job__item.--primary .p-job__in::after {
  background-color: var(--color-main);
}
.p-job__item.--secondary .p-job__in {
  background-image: url(../images/pic-job02.jpg);
}
.p-job__item.--secondary .p-job__in::after {
  background-color: var(--color-accent);
}
.p-job__item.--tertiary .p-job__in {
  background-image: url(../images/pic-job03.jpg);
  background-position: center 70%;
}
.p-job__item.--tertiary .p-job__in::after {
  background-color: var(--color-warning);
}
.p-job__item:hover .p-job__in::before {
  opacity: .5;
}
.p-job__item:hover .p-job__in::after {
  opacity: 0;
}
.p-job__box {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transition: all .5s;

  inset: 0;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991.98px) {
  .p-job__box {
    padding: 9vw 6vw;
  }
}
@media print, screen and (min-width: 992px) {
  .p-job__box {
    padding-top: clamp(30px, 2.7vw, 50px);
    padding-right: clamp(30px, 2.7vw, 50px);
    padding-bottom: clamp(30px, 2.7vw, 50px);
    padding-left: clamp(30px, 2.7vw, 50px);
  }
}
.p-job__box.--on {
  opacity: 1;
}
.p-job__box.--off {
  position: relative;
  opacity: 0;
}
@media print, screen and (min-width: 992px) {
  .p-job__box.--off {
    height: 100%;
  }
}
.p-job__item:hover .p-job__box.--on {
  opacity: 0;
}
.p-job__item:hover .p-job__box.--off {
  opacity: 1;
}
.p-job__title {
  position: relative;
  margin-bottom: .7em;
  padding-bottom: .2em;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-family-secondary);
  line-height: 1.5;
}
@media screen and (max-width: 991.98px) {
  .p-job__title {
    font-size: clamp(1.375rem, 1.582vw + 1.019rem, 2rem);
  }
}
@media print, screen and (min-width: 992px) {
  .p-job__title {
    font-size: clamp(2.5rem, 1.616vw + 1.498rem, 3.438rem);
  }
}
.p-job__title::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: clamp(20px, 2.2vw, 30px);
  height: 2px;
  margin: auto;
  background-color: #fff;
  content: '';
}
.p-job__cap {
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 991.98px) {
  .p-job__cap {
    font-size: clamp(1.125rem, 1.266vw + .84rem, 1.625rem);
  }
}
@media print, screen and (min-width: 992px) {
  .p-job__cap {
    font-size: clamp(1.625rem, .97vw + 1.024rem, 2.188rem);
  }
}
.p-job__cap small {
  display: inline-block;
  font-weight: 500;
  font-size: 70%;
}
.p-job__label {
  display: inline-block;
  margin-top: clamp(30px, 3.1vw, 40px);
  padding: .4em 1em;
  border-radius: 6px;
  background-color: var(--color-txt);
  text-align: center;
  letter-spacing: .07em;
  font-weight: 500;
  font-size: clamp(1.063rem, .431vw + .795rem, 1.313rem);
  line-height: 1.5;
}
.p-job__note-title {
  margin-bottom: clamp(20px, 1.5vw, 25px);
  text-align: center;
  font-weight: 500;
  font-size: clamp(1.125rem, .694vw + .694rem, 1.563rem);
  line-height: 1.5;
}
.p-job__note-txt {
  letter-spacing: .02em;
}
@media screen and (max-width: 991.98px) {
  .p-job__note-txt {
    font-size: clamp(.938rem, .158vw + .902rem, 1rem);
  }
}
@media print, screen and (min-width: 992px) {
  .p-job__note-txt {
    font-size: clamp(.813rem, .298vw + .628rem, 1rem);
  }
}

/* お問い合わせエリア
--------------------------------------------------------- */
.p-inquiry {
  position: relative;
  z-index: 1;
  margin-top: clamp(70px, 9.2vw, 140px);
  padding-top: clamp(50px, 7.5vw, 120px);
  background-color: var(--color-base);
}
.p-inquiry__container {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 991.98px) {
  .p-inquiry__container {
    padding-bottom: 70vw;
  }
}
.p-inquiry__container::before {
  position: absolute;
  z-index: 1;
  background-image: url('../images/bg-contact.jpg');
  background-position: left bottom;
  background-size: cover;
  background-repeat: no-repeat;
  content: '';
}
@media screen and (max-width: 991.98px) {
  .p-inquiry__container::before {
    right: 4vw;
    bottom: 0;
    left: 4vw;
    height: 60vw;
  }
}
@media print, screen and (min-width: 992px) {
  .p-inquiry__container::before {
    top: 0;
    right: 0;
    width: calc(min(92%, 1600px) * .5 + (100% - min(92%, 1600px)) / 2);
    height: 100%;
  }
}
@media screen and (max-width: 991.98px) {
  .p-inquiry__inner {
    padding-right: 4vw;
    padding-left: 4vw;
  }
}
@media print, screen and (min-width: 992px) {
  .p-inquiry__inner {
    padding-right: calc(min(92%, 1600px) * .5 + (100% - min(92%, 1600px)) / 2 + clamp(60px, 5.5vw, 100px));
    padding-left: calc((100% - min(92%, 1600px)) / 2);
  }
}
.p-inquiry__txt {
  font-size: clamp(1rem, .128vw + .971rem, 1.125rem);
}
@media print, screen and (min-width: 992px) {
  .p-inquiry__txt {
    line-height: 2.8;
  }
}
.p-inquiry__tel {
  margin-top: clamp(40px, 4.4vw, 60px);
  padding: 1em 1em .9em;
  border: 1px solid var(--color-main);
  text-align: center;
}
.p-inquiry__num {
  letter-spacing: .01em;
  font-weight: 700;
  font-size: clamp(1.875rem, .513vw + 1.76rem, 2.375rem);
  font-family: var(--font-family-secondary);
  line-height: 1.2;
}
.p-inquiry__num::before {
  position: relative;
  top: .04em;
  display: inline-block;
  height: .8em;
  background-color: var(--color-sub);
  content: '';

  -webkit-mask-image: var(--icon-phone);
          mask-image: var(--icon-phone);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  aspect-ratio: 1;
}
@media print {
  .p-inquiry__num::before {
    -webkit-print-color-adjust: exact;
  }
}
.p-inquiry__time {
  margin-top: .8em;
  color: var(--color-main-hover);
  text-align: center;
  font-weight: 500;
  font-size: clamp(.938rem, .128vw + .909rem, 1.063rem);
}

/* メールでのお問い合わせ
--------------------------------------------------------- */
.p-contact {
  padding-top: clamp(60px, 8.8vw, 140px);
  padding-bottom: clamp(80px, 10.5vw, 160px);
  background-color: var(--color-base);
}
.p-contact__inner {
  width: min(92%, 1600px);
  margin-right: auto;
  margin-left: auto;
}
.p-contact__txt {
  margin-bottom: clamp(40px, 3.9vw, 50px);
  font-size: clamp(1rem, .128vw + .971rem, 1.125rem);
}
@media print, screen and (min-width: 992px) {
  .p-contact__txt {
    line-height: 2.8;
  }
}
.p-contact__txt strong {
  color: var(--color-red);
  font-weight: 400;
}
.p-contact__txt .c-badge {
  position: relative;
  top: -.2em;
}

/* プライバシーポリシー
--------------------------------------------------------- */
.p-policy {
  margin-top: clamp(30px, 3.9vw, 60px);
}
.p-policy__scroll-box {
  overflow-y: auto;
  background-color: #e8ecf0;
  font-size: .875rem;
}
@media only screen and (max-width: 767.98px) {
  .p-policy__scroll-box {
    max-height: 220px;
    padding: 2em 1.5em;
  }
}
@media print, screen and (min-width: 768px) {
  .p-policy__scroll-box {
    max-height: 300px;
    padding-top: clamp(40px, 4.1vw, 70px);
    padding-right: clamp(30px, 3vw, 50px);
    padding-bottom: clamp(40px, 4.1vw, 70px);
    padding-left: clamp(30px, 3vw, 50px);
  }
}
@media print {
  .p-policy__scroll-box {
    max-height: 100%;
  }
}
.p-policy__item {
  margin-top: clamp(30px, 4vw, 40px);
}
.p-policy__item-title {
  margin-bottom: 1.2em;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
.p-policy__item p,
.p-policy__item ul {
  margin-bottom: 1.5em;
}
.p-policy__item a {
  word-wrap: break-word;
}
.p-policy__agree {
  background-color: var(--color-primary);
  color: #fff;
  font-size: clamp(.875rem, .064vw + .861rem, .938rem);
  line-height: 1.6;

  -webkit-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 767.98px) {
  .p-policy__agree {
    display: flex;
    padding: .6em 1em;
    letter-spacing: .03em;
    font-size: .8125rem;

    justify-content: center;
  }
}
@media print, screen and (min-width: 768px) {
  .p-policy__agree {
    padding: .6em .3em;
    text-align: center;
  }
}
.p-policy__agree .form-check {
  align-items: center;
}
.p-policy__agree [type=checkbox] {
  width: 1.2em;
  height: 1.2em;
  margin-right: .4em;
}
/* ========================================================================
/*
/* Utility
/*
========================================================================= */
/* typography
--------------------------------------------------------- */
.u-kome {
  position: relative;
  padding-left: 1.2em;
}
.u-kome.--inline {
  display: inline-block;
}
.u-kome.--red::before {
  color: var(--color-red);
}
.u-kome::before {
  position: absolute;
  left: 0;
  content: '※';
}

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

.u-important {
  color: var(--color-red);
}

.u-palt {
  font-feature-settings: 'palt';
}

@media print, screen and (min-width: 768px) {
  .u-split {
    display: flex;
  }
}
@media print, screen and (min-width: 768px) {
  .u-split__item + .u-split__item::before {
    margin-right: .5em;
    margin-left: .5em;
    content: '/';
  }
}

/* ------------------------------------------------------------------------
/* 印刷用
------------------------------------------------------------------------- */
@media print {
  html {
    font-size: 10px !important;
  }
}
@page {
  margin: 8mm;

  size: A4 portrait;
}
