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

/*========================================
  ブラウザごとのデフォルトスタイルの初期化
========================================*/
@layer foundation {
  body {
    line-height: 1;
  }
  ol,
  ul {
    list-style: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  img {
    vertical-align: middle;
  }
  summary {
    cursor: pointer;
    user-select: none;
  }
}
@layer foundation {
  /*========================================
  	要素の基本的なスタイル
  ========================================*/
  html {
    height: 100%;
    scroll-behavior: smooth;
  }
  body {
    text-size-adjust: 100%;
    font-family: var(--sans-serif);
    line-height: 1.8;
    min-width: 320px;
    color: var(--main);
    background: var(--base);
  }
  @media screen and (max-width: 1200px) and (min-width: 767px) {
    body {
      font-size: 1.3265306122vw;
    }
    body img {
      font-size: 0.9795918367vw;
    }
  }
  @media screen and (max-width: 767px) {
    body {
      font-size: var(--sp-base-fs);
    }
  }
  *,
  *::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,
  svg {
    vertical-align: top;
  }
  img {
    letter-spacing: 0;
    font-size: 12px;
    height: auto;
  }
  @media screen and (max-width: 1200px) and (min-width: 767px) {
    img {
      font-size: 1.2244897959vw;
    }
  }
  a {
    word-break: break-all;
  }
  @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;
  }
}
/*========================================
  コンテンツ（メインコンテンツとサイドバーのラッパー）
========================================*/
@layer layout {}
/*========================================
  サイト共通のフッター
========================================*/
@layer layout {}
/*========================================
  サイト共通のヘッダー
========================================*/
@layer layout {}
/*========================================
  メインコンテンツ
========================================*/
@layer layout {}
/*========================================
  ヘッダーのナビゲーション（グローバルナビ）
========================================*/
@layer layout {
  .l-nav__btn {
    background: transparent;
    padding: 0;
    border: 0;
  }
  @media screen and (min-width: 768px) {
    .l-nav__btn {
      display: none;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__btn {
      width: 4vw;
    }
  }
  .l-nav__btn.is-active {
    transform: translateX(0);
  }
  .l-nav__btn.is-active .is-line-1,
  .l-nav__btn.is-active .is-line-4 {
    opacity: 0;
  }
  .l-nav__btn.is-active .is-line-2 {
    transform: rotate(45deg);
  }
  .l-nav__btn.is-active .is-line-3 {
    transform: rotate(-45deg);
  }
  .l-nav__line {
    fill: none;
    stroke: #000;
    stroke-miterlimit: 10;
    stroke-width: 2px;
  }
  .l-nav__line.is-line-1, .l-nav__line.is-line-4 {
    transform-origin: center;
    transition-property: opacity;
    transition-duration: 0.2s;
  }
  .l-nav__line.is-line-2, .l-nav__line.is-line-3 {
    transform-origin: center;
    transition-property: transform;
    transition-duration: 0.2s;
  }
  @media screen and (max-width: 767px) {
    .l-nav__body[aria-hidden=true] {
      display: none;
    }
  }
}
/*========================================
  ページ全体のレイアウト
========================================*/
@layer layout {}
/*========================================
  row
========================================*/
@layer layout {
  .l-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5%;
  }
  .l-row > * {
    flex: 1;
  }
}
/*========================================
  ボタン
========================================*/
@layer component {
  .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
========================================*/
@layer component {
  .c-container, .c-container--s {
    width: 1000px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  @media screen and (max-width: 767px) {
    .c-container--full {
      padding-right: 10px;
      padding-left: 10px;
    }
  }
  .c-container--s {
    width: 900px;
  }
  @media screen and (max-width: 767px) {
    .c-container, .c-container--s {
      padding-right: 10px;
      padding-left: 10px;
    }
  }
}
/*========================================
  アイコン
========================================*/
@layer component {
  .c-icon {
    position: relative;
    display: inline-block;
    background: 50% 50% no-repeat;
    background-size: contain;
    vertical-align: top;
    line-height: 1;
    font-style: normal;
  }
}
/*========================================
  ボタン
========================================*/
@layer project {
  .p-btn-link {
    background: blue;
    color: #fff;
  }
  .p-btn-close {
    background: transparent;
  }
  .p-btn-close::before, .p-btn-close::after {
    content: "";
    display: block;
    width: 70%;
    height: 2px;
    background: #000;
    position: absolute;
    left: 15%;
  }
  .p-btn-close::before {
    transform: rotate(-45deg);
  }
  .p-btn-close::after {
    transform: rotate(45deg);
  }
}
/*========================================
  hdr
========================================*/
@layer project {}
/*========================================
  アイコン
========================================*/
@layer project {}
/*========================================
  breadcrumb
========================================*/
@layer project {
  .p-breadcrumb a {
    display: inline-block;
    color: currentColor;
    text-decoration: none;
  }
  .p-breadcrumb a:not(:last-child)::after {
    content: ">";
    display: inline-block;
    margin: 0 0.2em;
  }
  @media (hover: hover) {
    .p-breadcrumb a:hover:not([aria-current=page]) {
      text-decoration: underline;
    }
  }
}
/*========================================
  card
========================================*/
@layer project {
  .p-card__ttl {
    font-size: 125%;
    font-weight: bold;
  }
  .p-card__txt {
    margin: 0;
  }
}
/*========================================
  form
========================================*/
@layer project {
  .p-form fieldset,
  .p-form legend {
    display: contents;
    border: 0;
    padding: 0;
  }
  .p-form__fields {
    display: table;
  }
  .p-form__error {
    margin-top: 0.2em;
    color: #c00;
  }
  .p-form__item {
    display: table-row;
  }
  .p-form__item select {
    appearance: none;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff url("../img/arrow_btm.svg") calc(100% - 0.4em) 50%/auto 20% no-repeat;
    padding: 0.2em 1.6em 0.2em 0.4em;
  }
  .p-form__item input[type=checkbox],
  .p-form__item input[type=radio] {
    appearance: none;
    position: relative;
    display: inline-block;
  }
  .p-form__item input[type=checkbox] {
    top: -0.1em;
    width: 1em;
    height: 1em;
    border: 1px solid #000;
    border-radius: 4px;
    vertical-align: middle;
  }
  .p-form__item input[type=checkbox]:checked {
    background: url("../img/check.svg") 50% 50%/80% auto no-repeat;
  }
  .p-form__item input[type=radio] {
    top: -0.2em;
    width: 1em;
    height: 1em;
    border: 1px solid #000;
    border-radius: 100em;
    vertical-align: middle;
  }
  .p-form__item input[type=radio]:checked {
    background: #000;
  }
  .p-form__item input[type=radio]:checked::before {
    content: "";
    position: absolute;
    background: #fff;
    border-color: #000;
    left: 22%;
    top: 22%;
    width: 56%;
    height: 56%;
    border-radius: 100em;
  }
  .p-form__label, .p-form__box {
    padding: 0.4em;
    display: table-cell;
  }
  .p-form__wbtn {
    text-align: center;
  }
}
/*========================================
  modal
========================================*/
@layer project {
  .p-modal {
    display: none;
    opacity: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition-property: opacity;
    transition-duration: 0.4s;
  }
  .p-modal__wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 20px;
    max-width: 60%;
    transition-property: margin;
    transition-duration: 0.4s;
  }
  .p-modal__content {
    overscroll-behavior: contain;
    overflow: auto;
    position: relative;
    background: #fff;
    padding: 2em;
    width: 100%;
    max-height: 50vh;
    box-sizing: border-box;
    border: 2px solid white;
  }
  .p-modal:focus {
    border: 2px solid blue;
  }
  .p-modal.is-show {
    opacity: 1;
  }
  .p-modal.is-show .p-modal__content {
    margin-top: 0;
  }
  .p-modal__close-btn {
    cursor: pointer;
    background: #000;
    position: fixed;
    right: 0;
    top: 0;
    border: 0;
    width: 46px;
    height: 46px;
    padding: 0;
    transform: translate(50%, -50%);
  }
  .p-modal__close-btn::before, .p-modal__close-btn::after {
    content: "";
    display: block;
    width: 70%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 15%;
  }
  .p-modal__close-btn::before {
    transform: rotate(-45deg);
  }
  .p-modal__close-btn::after {
    transform: rotate(45deg);
  }
}
/*========================================
  tab
========================================*/
@layer project {
  .p-tab__list {
    display: flex;
    justify-content: space-between;
    border-bottom: 3px solid #2980b9;
  }
  .p-tab__btn {
    width: 33%;
    border-radius: 10px 10px 0 0;
    border: 0;
    background: #2c3e50;
    color: #fff;
    padding: 0.6em;
  }
  .p-tab__btn:focus {
    border: 2px solid #00f;
  }
  .p-tab__btn[aria-selected=true] {
    background: #2980b9;
  }
  .p-tab__panel {
    transition: .5S opacity;
    opacity: 1;
    height: auto;

    &:not(.is-visible) {
      visibility: hidden;
      overflow: hidden;
      opacity: 0;
      height: 0;
    }
  }
}
/*========================================
  table
========================================*/
@layer project {
  .p-table-a th, .p-table-a td {
    padding: 0.2em 0.4em;
    border: 1px solid #000;
  }
}
/*========================================
  pagination
========================================*/
@layer project {
  .p-pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 0.8em;
    
    > * {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      border: 1px solid #333;
      width: 2em;
      height: 2em;
      text-decoration: none;
      color: currentColor;
      border-radius: 100px;
    }
    a {
      transition-property: background, color;
      transition-duration: 0.25s;
      @media (hover: hover) {
        &:hover {
          background: #000;
          color: #fff;
        }
      }
    }
    .prev, .next {
      border: 0;
      width: auto;
      height: auto;
      @media (hover: hover) {
        &:hover {
          background: inherit;
          color: inherit;
          text-decoration: underline;
        }
      }
    }
    .prev::before {
      content: "<";
      display: inline-block;
      margin: 0 0.3em;
    }
    .next::after {
      content: ">";
      display: inline-block;
      margin: 0 0.3em;
    }
    .dots {
      width: auto;
      border: 0;
    }
  }
}
/*========================================
 * hidden
 *
 * クラス : u-hidden-{MQ}
========================================*/
@layer utilities {
  @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
========================================*/
@layer utilities {
  @media screen and (max-width: 1200px) 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);
    }
  }
}
/*========================================
 * スクリーンリーダーテキスト
========================================*/
@layer utilities {
  .screen-reader-text,
  .u-screen-reader {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
  }
}
/*========================================
 * text-align
========================================*/
@layer utilities {
  .u-ta-left {
    text-align: left;
  }
  .u-ta-center {
    text-align: center;
  }
  .u-ta-right {
    text-align: right;
  }
  @media screen and (max-width: 767px) {
    .u-SP-ta-left {
      text-align: left;
    }
    .u-SP-ta-center {
      text-align: center;
    }
    .u-SP-ta-right {
      text-align: right;
    }
  }
}