@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Asap+Condensed:wght@400;600&family=Noto+Sans+JP:wght@400;600&family=Noto+Serif+JP:wght@400;600&display=swap");
:root {
  --sans-serif: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
  	sans-serif;
  --serif: "Noto Serif JP", serif;
  --en-sans: "Asap Condensed", sans-serif;
  --en-serif: "", serif;
  --base: #fff;
  --main: #000;
  --accent: #d81b60;
  --sp-base-fs: 4vw;
  --sp-pad: 2.6vw;
}

/*========================================
  ブラウザごとのデフォルトスタイルの初期化
========================================*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
figure {
  all: unset;
  display: revert;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

img {
  vertical-align: middle;
}

/*========================================
  要素の基本的なスタイル
========================================*/
html {
  font-size: 10px;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  text-size-adjust: 100%;
  font-family: var(--sans-serif);
  font-size: 1.6rem;
  line-height: 1.8;
  min-width: 320px;
  color: var(--main);
  background: var(--base);
}
@media screen and (max-width: 1300px) and (min-width: 767px) {
  body {
    font-size: 1.3265306122vw;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: var(--sp-base-fs);
  }
}
@media screen and (max-width: 767px) {
  body.is-nav-show {
    overflow: hidden;
  }
}

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

:focus-visible {
  outline: 2px solid blue;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

img,
svg,
iframe,
video,
picture {
  max-width: 100%;
}

img {
  letter-spacing: 0;
  font-size: 12px;
  height: auto;
}
@media screen and (max-width: 1300px) and (min-width: 767px) {
  img {
    font-size: 1.2244897959vw;
  }
}

a {
  word-break: break-all;
  color: currentColor;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}

small {
  font-size: 80%;
}

button,
input[type=button],
input[type=submit] {
  cursor: pointer;
  font: inherit;
}

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

label {
  cursor: pointer;
  display: inline-block;
}

/*========================================
  コンテンツ（メインコンテンツとサイドバーのラッパー）
========================================*/
/*========================================
  サイト共通のフッター
========================================*/
.l-footer {
  padding: 1.5em 0 4.625em 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 3.3333333333vw 0 10.6666666667vw 0;
  }
}
.l-footer__logo {
  width: 21.75em;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    margin-left: auto;
    margin-right: auto;
    width: 48.5333333333vw;
  }
}
.l-footer__logo img {
  width: 100%;
}
.l-footer__box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
.l-footer__link-wrap {
  line-height: 1.1;
}
.l-footer__link {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-footer__link:not(:last-child) {
    margin-right: 3.75em;
  }
}
@media screen and (max-width: 1300px) and (min-width: 767px) {
  .l-footer__link {
    font-size: 90%;
  }
  .l-footer__link:not(:last-child) {
    margin-right: 1.25em;
  }
}
.l-footer__link .c-icon {
  margin-right: 0.875em;
  vertical-align: middle;
  top: -0.125em;
}
.l-footer__copyright {
  font-size: 93.75%;
  font-family: var(--en-sans);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    display: block;
    margin-top: 3.125em;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    text-align: center;
    display: block;
    margin-top: 6.6666666667vw;
    font-size: 2.9333333333vw;
  }
}

/*========================================
  サイト共通のヘッダー
========================================*/
.l-header__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 4.375em 1.875em;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 8vw calc(var(--sp-pad) * 2);
  }
}
.l-header__logo {
  position: relative;
  width: 21.75em;
}
.l-header__logo img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 58.6666666667vw;
  }
}
/*========================================
  メインコンテンツ
========================================*/
/*========================================
  ヘッダーのナビゲーション（グローバルナビ）
========================================*/
.l-nav__btn {
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .l-nav__btn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-nav__btn {
    margin-top: 2.9333333333vw;
    width: 10.4vw;
  }
}
.l-nav__btn svg {
  vertical-align: top;
  width: 10.4vw;
}
.l-nav__btn svg.is-close {
  width: 10.4vw;
}
.l-nav__line {
  fill: #000;
  stroke: none;
  stroke-miterlimit: 10;
}
@media screen and (max-width: 767px) {
  .l-nav__box {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .l-nav__body {
    overflow: auto;
    overscroll-behavior: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100vh;
    background: #fff;
    transform: translateY(0);
    opacity: 1;
    transition-property: opacity, transform;
    transition-duration: 0.4s;
    padding-bottom: 90px;
  }
  .l-nav__body[aria-hidden=true] {
    transform: translateY(-110vh);
    opacity: 0;
  }
}
.l-nav__link-wrap a {
  display: block;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .l-nav__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 137.5%;
  }
}
@media screen and (max-width: 767px) {
  .l-nav__list {
    font-size: 8vw;
  }
}
.l-nav__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-nav__item {
    margin-left: 2.25em;
  }
}
@media screen and (max-width: 767px) {
  .l-nav__item {
    line-height: 1;
    margin-bottom: 16vw;
  }
}
.l-nav__link {
  font-family: var(--en-sans);
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.l-nav__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.25s;
}
@media (hover: hover) {
  .l-nav__link:hover::before {
    width: 100%;
  }
}
.l-nav__slink {
  text-decoration: none;
}
.l-nav__slink .c-icon {
  margin-right: 0.875em;
  vertical-align: middle;
  top: -0.125em;
}

/*========================================
  ページ全体のレイアウト
========================================*/
.l-page {
  margin-left: auto;
  margin-right: auto;
}
/*========================================
  ボタン
========================================*/
.c-btn {
  cursor: pointer;
  position: relative;
  display: inline-block;
  line-height: 1.1;
  text-decoration: none;
  user-select: none;
  border: 0;
}
.c-btn:hover {
  text-decoration: none;
}

/*========================================
  container
========================================*/
.c-container {
  width: 1300px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.c-container-m {
  width: 900px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/*========================================
  アイコン
========================================*/
.c-icon {
  position: relative;
  display: inline-block;
  background: 50% 50% no-repeat;
  background-size: contain;
  vertical-align: top;
  line-height: 1;
  font-style: normal;
}

/*========================================
  ボタン
========================================*/
/*========================================
  hdr
========================================*/
/*========================================
  アイコン
========================================*/
.p-icon-arr {
  width: 0.625em;
  height: 1.375em;
  stroke: #000;
}
@media screen and (max-width: 767px) {
  .p-icon-arr {
    width: 1.8666666667vw;
    height: 4vw;
  }
}

.p-icon-arr2 {
  width: 0.625em;
  height: 1.375em;
  stroke: #000;
}
@media screen and (max-width: 767px) {
  .p-icon-arr2 {
    width: 2vw;
    height: 4.4vw;
  }
}

.p-icon-arr-s {
  width: 0.4375em;
  height: 0.875em;
  stroke: #000;
}

/*========================================
  foot-img
========================================*/
.p-foot-img {
  text-align: center;
  margin: 15em 0 8.75em 0;
}
@media screen and (max-width: 767px) {
  .p-foot-img {
    margin: 21.3333333333vw 0 17.3333333333vw 0;
  }
}
.p-foot-img img {
  width: 31.3333333333em;
}
@media screen and (max-width: 767px) {
  .p-foot-img img {
    width: 59.4666666667vw;
  }
}

/*========================================
 * hidden
 *
 * クラス : u-hidden-{MQ}
========================================*/
@media screen and (max-width: 767px) {
  .u-hidden-ltSP {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .u-hidden-ltTAB {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-hidden-gtTAB {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .u-hidden-gtPC {
    display: none;
  }
}

/*========================================
 * padding
========================================*/
@media screen and (max-width: 1300px) and (min-width: 767px) {
  .u-PC-pad {
    padding-right: 4%;
    padding-left: 4%;
  }
}
@media screen and (max-width: 767px) {
  .u-SP-pad {
    padding-right: var(--sp-pad);
    padding-left: var(--sp-pad);
  }
  .u-SP-pad2 {
    padding-right: calc(var(--sp-pad) * 2);
    padding-left: calc(var(--sp-pad) * 2);
  }
}
/*========================================
 * tran
========================================*/
.u-tran {
  opacity: 0;
  transform: translateY(40px);
  transition-property: opacity, transform;
  transition-duration: 0.8s;
}
.u-tran.is-fire {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .u-PC-tran {
    opacity: 0;
    transform: translateY(40px);
    transition-property: opacity, transform;
    transition-duration: 0.8s;
  }
  .u-PC-tran.is-fire {
    opacity: 1;
    transform: translateY(0);
  }
}