@charset "UTF-8";
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "ＭＳ ゴシック", "Arial", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.25;
  color: #202020;
  background: #fefefe;
  -webkit-text-size-adjust: 100%; /*スマホ横画面で文字の拡大・収縮防止用*/
  -webkit-font-smoothing: antialiased; /* 文字の太さを整える。Safari環境用 */
}

img {
  width: 100%;
  vertical-align: top;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.05em;
  line-height: 1.25;
  word-break: break-all;
}

ul,
ol,
dl,
table {
  line-height: 1.5;
}

button {
  letter-spacing: 0.05em;
  word-break: break-all;
}

/*-----------------------------
画面幅
-----------------------------*/
.Wrap {
  width: 100%;
  min-width: 320px;
  max-width: 1920px;
  margin: 0 auto;
}

/*-----------------------------
共通のボタン
-----------------------------*/
/* 角丸ボタン */
.Btn {
  display: inline-block;
  width: 100%;
  max-width: 240px;
  height: 40px;
  line-height: 1;
  position: relative;
  border-radius: 20px;
  color: #fefefe;
  background: #1B4EC7;
  font-size: clamp(15px, 1.6666666667vw, 16px); /* 基準:1080px */
  font-weight: 600;
  word-break: break-all;
  letter-spacing: 0.05em;
}
.Btn__inner {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
@media (min-width: 1025px) {
  .Btn:hover {
    border-top: 6px solid rgba(2, 2, 2, 0.2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

/* 下線ボタン（more） */
.Line-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.875vw, 18px); /* 基準:1080px */
  display: inline-block;
}
.Line-btn__inner {
  display: inline-block;
  padding-bottom: 0.2em;
  border-bottom: 1px solid;
}
.Line-btn__icon::after {
  display: inline-block;
  content: "";
  border: 0.25em solid transparent;
  border-left-color: inherit;
}
@media (min-width: 1025px) {
  .Line-btn {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .Line-btn:hover {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

/*-----------------------------
文字・微調整
-----------------------------*/
/* 改行 */
.Br {
  display: inline-block;
}

/* 改行（brタグ） */
.Br_pc-only {
  display: block;
}
@media (max-width: 640px) {
  .Br_pc-only {
    display: none;
  }
}

.Br_sp-only {
  display: none;
}
@media (max-width: 640px) {
  .Br_sp-only {
    display: block;
  }
}

/* 行間あける */
.Space {
  display: block;
  margin-bottom: 0.5em;
}

/* 文字を小さくする */
.Small {
  font-size: 0.8em;
}

/* 文字を強調する */
.Bold {
  font-size: 1.2em;
  font-weight: bold;
}

/*-----------------------------
会社のロゴ
-----------------------------*/
.Logo {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 2.0833333333vw, 20px); /* 基準:1080px */
  font-weight: 900;
}

/*--------------------------------------------------------
///////////////////////////////////////////////////////////
header

///////////////////////////////////////////////////////////
----------------------------------------------------------*/
/*--------------------------------------------------------
【メモ】
●画面固定
●高さ60px、pc版は80px

---------------------------------------------------------*/
/*::::::::::::::::::::::::::::::::::::::::::::
全体設定
::::::::::::::::::::::::::::::::::::::::::::::*/
.header {
  display: block;
  width: 100%;
  border-top: solid 4px #5A94FF;
  background: #fefefe;
  position: relative;
}
.header__inner {
  /* 共通・コンテンツ幅 */
  width: min(calc(100% - clamp(10px, 8.33vw, 80px)), 1600px);
  margin: 0 auto;
}
.header__container {
  display: grid;
  grid-template: "f-left f-top" auto "f-left f-bottom" auto/96px 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 80px;
  padding: 24px 0;
}
@media (max-width: 1024px) {
  .header__container {
    grid-template: "f-left f-bottom" auto/72px 1fr;
    height: 60px;
    padding: 10px 0;
  }
}
.header__top {
  grid-area: f-top;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
@media (max-width: 1024px) {
  .header__top {
    display: none;
  }
}
.header__left {
  /* Logo */
  grid-area: f-left;
  color: #2a6fed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header__bottom {
  grid-area: f-bottom;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__item-sp-only {
  display: block;
}
@media (min-width: 1025px) {
  .header__item-sp-only {
    display: none;
  }
}
.header__item-pc-only {
  display: none;
}
@media (min-width: 1025px) {
  .header__item-pc-only {
    display: block;
  }
}

/* スクロール時、表示 */
.header[class*=show] {
  -webkit-box-shadow: 0px 0px 16px 0px rgba(2, 2, 2, 0.1);
          box-shadow: 0px 0px 16px 0px rgba(2, 2, 2, 0.1);
  position: fixed;
  z-index: 20;
}
.header[class*=show] .header__container {
  grid-template: "f-left f-bottom" auto/64px 1fr;
  padding: 10px 0;
}
.header[class*=show] .header__top {
  display: none;
}

/*::::::::::::::::::::::::::::::::::::::::::::
コンテンツの設定
::::::::::::::::::::::::::::::::::::::::::::::*/
/*-----------------------------
PCメニュー
-----------------------------*/
/* 共通 */
.pc-menu-sub, .pc-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.pc-menu-sub a:active, .pc-menu a:active {
  background: rgba(73, 213, 211, 0.2);
}
@media (min-width: 1025px) {
  .pc-menu-sub a:hover, .pc-menu a:hover {
    color: #49d5d3;
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }
}

/* メインメニュー */
.pc-menu {
  grid-gap: 48px;
}
.pc-menu__item {
  font-size: clamp(13px, 1.4583333333vw, 14px); /* 基準:1080px */
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.pc-menu__item-inner {
  display: block;
  padding-left: 16px;
  position: relative;
}
.pc-menu__item-inner::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: #49d5d3;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* サブメニュー */
.pc-menu-sub {
  grid-gap: 32px;
  padding-bottom: 16px;
}
.pc-menu-sub__item {
  font-size: clamp(13px, 1.4583333333vw, 14px); /* 基準:1080px */
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/*-----------------------------
SP版メニュー（header/footer 併用）
-----------------------------*/
/*////////////////////////////
【サンプル】
<div class="sp-menu">
    <ul class="sp-menu__list">
        <li class="sp-menu__item-wrap"> ---メイン--- </li>
    </ul>
    <ul class="sp-menu__list sp-menu__list--sizeM">
        <li> ---サブ・中--- </li>
    </ul>
    <ul class="sp-menu__list sp-menu__list--sizeS">
        <li> ---サブ・小--- </li>
    </ul>
    <ul class="sp-menu__list">
        <li class="sp-menu__contact-info"> --- お問い合わせ先 --- </li>
    </ul>
</div>

【サンプル・li a】
① アイコンあり
<a href="#" class="sp-menu__item-icon"> ---メイン／サブ・中--- </a>
②　アイコンなし
<a href="#" class="sp-menu__item"> ---サブ・小--- </a>

////////////////////////////*/
.sp-menu-wrap {
  /* 共通・コンテンツ幅 */
  width: min(calc(100% - clamp(10px, 8.33vw, 80px)), 960px);
  margin: 0 auto;
}

.sp-menu {
  padding: 24px 0;
}
.sp-menu__list {
  list-style: none;
  border-bottom: 1px rgba(27, 78, 199, 0.4) solid;
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.sp-menu__list--sizeM {
  font-size: clamp(13px, 1.4583333333vw, 14px); /* 基準:1080px */
}
.sp-menu__list--sizeS {
  font-size: clamp(10px, 1.25vw, 12px); /* 基準:1080px */
}
.sp-menu__item-wrap {
  border-top: 1px rgba(27, 78, 199, 0.4) solid;
}
.sp-menu__item, .sp-menu__item-icon {
  display: block;
  padding: 16px 0;
}
.sp-menu__item-icon {
  position: relative;
}
.sp-menu__item-icon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: #49d5d3;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sp-menu__contact-info {
  margin: 32px 0;
}

/*-----------------------------
ハンバーガーメニュー（SP・TAB版で表示）
-----------------------------*/
/*////////////////////////
【メモ】
● 親要素で表示・非表示設定をする

////////////////////////*/
/* チェックボックス（非表示） */
#hamBurger-check {
  display: none;
}

/*アイコン*/
#hamBurger-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  background: transparent; /* 四角の色 */
  cursor: pointer;
  position: relative;
  z-index: 21;
}
#hamBurger-btn span,
#hamBurger-btn span::before,
#hamBurger-btn span::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #1B4EC7; /* 横線の色 */
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
}
#hamBurger-btn span::before {
  bottom: 8px;
}
#hamBurger-btn span::after {
  top: 8px;
}

/*メニューを開いたときのアイコン*/
#hamBurger-check:checked ~ #hamBurger-btn {
  position: fixed;
  top: 42px;
  right: clamp(10px, 4.17vw, 40px);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
#hamBurger-check:checked ~ #hamBurger-btn span,
#hamBurger-check:checked ~ #hamBurger-btn span::before,
#hamBurger-check:checked ~ #hamBurger-btn span::after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#hamBurger-check:checked ~ #hamBurger-btn span {
  background: transparent;
}
#hamBurger-check:checked ~ #hamBurger-btn span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#hamBurger-check:checked ~ #hamBurger-btn span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*メニュー本文*/
#hamBurger-content {
  overflow: scroll;
  width: max(100vw, 320px);
  height: calc(100vh - 64px); /* 『top』分マイナス。スクロール対策 */
  padding: 64px 0 0;
  border-top: 1px rgba(27, 78, 199, 0.4) solid;
  background: #fefefe;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #202020;
  position: fixed;
  top: 0;
  left: 2000px;
  z-index: 20;
}

/*メニュー本文・メニューを閉じたとき*/
#hamBurger-check:checked ~ #hamBurger-content {
  left: 0;
}

/*-----------------------------------------------------------------
///////////////////////////////////////////////////////////////////
footer

///////////////////////////////////////////////////////////////////
------------------------------------------------------------------*/
/*::::::::::::::::::::::::::::::::::::::::::::
全体設定
::::::::::::::::::::::::::::::::::::::::::::::*/
.footer {
  overflow: hidden; /* 子・子孫要素の背景表示用 */
}
.footer__inner {
  /* 共通・コンテンツ幅 */
  width: min(calc(100% - clamp(10px, 8.33vw, 80px)), 960px);
  margin: 0 auto;
}
.footer__mask {
  padding-top: 24px;
  color: #fefefe;
  background: #5A94FF;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}
.footer__mask::before {
  content: "";
  display: block;
  width: 300vw;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: inherit;
  z-index: -2;
}
@media (max-width: 1024px) {
  .footer__mask {
    padding-top: 0;
  }
}
.footer__sp-menu {
  display: block;
  line-height: 1.25;
  font-weight: 500;
  word-break: break-all;
  letter-spacing: 0.05em;
}
@media (min-width: 1025px) {
  .footer__sp-menu {
    display: none;
  }
}
.footer__pc-menu {
  display: none;
  padding: 24px 0;
  line-height: 1.25;
  font-weight: 500;
  word-break: break-all;
  letter-spacing: 0.05em;
}
@media (min-width: 1025px) {
  .footer__pc-menu {
    display: block;
  }
}
.footer__pc-menu-item {
  padding-top: 24px;
  border-top: 1px rgba(2, 2, 2, 0.2) solid;
}
.footer__copyright {
  padding: 24px 0;
}
.footer .sp-menu__list, .footer .sp-menu__item-wrap {
  border-color: rgba(2, 2, 2, 0.2);
}
.footer .sp-menu__item-icon::after {
  border-left-color: #fefefe;
}

/*::::::::::::::::::::::::::::::::::::::::::::
各パーツの設定
::::::::::::::::::::::::::::::::::::::::::::::*/
/*-----------------------------
top_btn
-----------------------------*/
.page-top-btn {
  display: block;
  width: 48px;
  height: 48px;
  background: #49d5d3;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(2, 2, 2, 0.05);
          box-shadow: 0px 0px 10px 0px rgba(2, 2, 2, 0.05);
  opacity: 0;
  position: fixed;
  right: 3vw;
  bottom: 3vw;
  z-index: 100;
}
.page-top-btn::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 12px 12px 16px 12px;
  border-bottom-color: #fefefe;
  position: absolute;
  top: calc(50% - 8px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.page-top-btn a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* スクロール時・表示 */
.page-top-btn[class*=show] {
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  opacity: 1;
}

/*-----------------------------
コピーライト
-----------------------------*/
.copyright {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.copyright .copyright__main, .copyright .copyright__sub {
  display: block;
  width: 100%;
}
.copyright__sub {
  /* Logo */
  margin-bottom: 6px;
}
.copyright__main {
  font-size: clamp(8px, 1.0416666667vw, 10px); /* 基準:1080px */
}

/*-----------------------------
お問い合わせ先（カードリスト）
-----------------------------*/
.icon-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  border-radius: 10px;
  color: #202020;
  background: #ececec;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}
.icon-cards::before {
  content: "";
  display: none;
  width: 300vw;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: inherit;
  z-index: -2;
}
@media (max-width: 1024px) {
  .icon-cards {
    border-radius: 0;
  }
  .icon-cards::before {
    display: block;
  }
}
.icon-cards__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; /* 高さを合わせる */
  width: 50%;
  padding: 48px 8px;
  border: 0;
  border-left: 1px solid rgba(2, 2, 2, 0.2);
}
@media (max-width: 1024px) {
  .icon-cards__card {
    width: 100%;
    padding: 32px 8px;
    border-left: 0;
    border-top: 1px solid rgba(2, 2, 2, 0.2);
  }
}
.icon-cards__card:first-of-type {
  border: 0;
}
.icon-cards__card-inner {
  width: 100%;
  /* &--sample {
      &::before {
          background: url(../img/) no-repeat center;
          background-size: cover;
      }
  }*/
}
.icon-cards__card-inner::before {
  content: "";
  display: inline-block;
  width: 72px;
  height: 72px;
  border: solid 8px #1B4EC7;
  border-radius: 100%;
  background: url(../img/icon-web.svg) no-repeat center;
  background-size: 40px;
  opacity: 0.8;
}
.icon-cards__card-inner--pc::before {
  background-color: url(../img/icon-web.svg);
}

/*-----------------------------
お問い合わせ先の詳細
-----------------------------*/
/* タイトル・番号・アドレスの入れ物(.contact-info__itemの組み合わせは自由) */
.contact-info {
  text-align: center;
}
.contact-info__item {
  /* 余白・大 */
  margin-top: 16px;
}
.contact-info__item2 {
  /* 余白・中 */
  margin-top: 10px;
}
.contact-info__item3 {
  /* 余白・小 */
  margin-top: 8px;
}

/* タイトル */
.contact-info-ttl {
  font-size: clamp(15px, 1.6666666667vw, 16px); /* 基準:1080px */
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* 番号・アドレス */
.contact-info-text {
  display: block;
  font-weight: 700;
  line-height: 1;
  color: #2a6fed;
}
.contact-info-text__tel-sp, .contact-info-text__tel-pc {
  display: block;
  font-size: clamp(24px, 3.3333333333vw, 32px); /* 基準:1080px */
}
@media (max-width: 1024px) {
  .contact-info-text__tel-sp, .contact-info-text__tel-pc {
    display: none;
  }
}
.contact-info-text__tel-pc {
  display: none;
}
@media (max-width: 1024px) {
  .contact-info-text__tel-pc {
    display: block;
  }
}

/* 番号・アドレス（補足情報） */
.contact-info-supplement {
  display: block;
  font-size: clamp(10px, 1.25vw, 12px); /* 基準:1080px */
}

/*-----------------------------
footer用・PCメニュー
-----------------------------*/
.f-pc-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  grid-gap: 24px;
}
.f-pc-menu a:active {
  background: rgba(73, 213, 211, 0.2);
}
@media (min-width: 1025px) {
  .f-pc-menu a:hover {
    color: #49d5d3;
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }
}
.f-pc-menu__container {
  width: calc((100% - 24px * 4) / 5);
  line-height: 1.25;
}
.f-pc-menu__ttl {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid;
  font-weight: 500;
}
.f-pc-menu__list {
  list-style: none;
}
.f-pc-menu__item {
  margin-bottom: 16px;
}
.f-pc-menu__item:last-of-type {
  margin-bottom: 0;
}
.f-pc-menu__itemInner {
  font-weight: 500;
}
.f-pc-menu__itemInner-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10px;
  position: relative;
  font-size: clamp(13px, 1.4583333333vw, 14px); /* 基準:1080px */
}
.f-pc-menu__itemInner-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: inherit;
}

.f-pc-menu-single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 32px;
  list-style: none;
}
.f-pc-menu-single__item {
  font-size: clamp(13px, 1.4583333333vw, 14px); /* 基準:1080px */
}
.f-pc-menu-single__item a:active {
  background: rgba(73, 213, 211, 0.2);
}
@media (min-width: 1025px) {
  .f-pc-menu-single__item a:hover {
    color: #49d5d3;
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::
ホーム画面
::::::::::::::::::::::::::::::::::::::::::::::*/
/*-----------------------------
メインビジュアル
-----------------------------*/
.main-visual {
  width: 100%;
  height: calc(100vh - 84px);
  background: -webkit-gradient(linear, left top, right top, from(rgb(27, 78, 199)), color-stop(10%, rgb(27, 78, 199)), color-stop(10%, rgb(38, 89, 213)), color-stop(20%, rgb(38, 89, 213)), color-stop(20%, rgb(48, 103, 219)), color-stop(32%, rgb(48, 103, 219)), color-stop(32%, rgb(57, 112, 242)), color-stop(43%, rgb(57, 112, 242)), color-stop(43%, rgb(62, 124, 255)), color-stop(47%, rgb(62, 124, 255)), color-stop(47%, rgb(74, 132, 255)), color-stop(49%, rgb(74, 132, 255)), color-stop(49%, rgb(90, 148, 255)), to(rgb(90, 148, 255)));
  background: -webkit-linear-gradient(left, rgb(27, 78, 199) 0%, rgb(27, 78, 199) 10%, rgb(38, 89, 213) 10%, rgb(38, 89, 213) 20%, rgb(48, 103, 219) 20%, rgb(48, 103, 219) 32%, rgb(57, 112, 242) 32%, rgb(57, 112, 242) 43%, rgb(62, 124, 255) 43%, rgb(62, 124, 255) 47%, rgb(74, 132, 255) 47%, rgb(74, 132, 255) 49%, rgb(90, 148, 255) 49%, rgb(90, 148, 255) 100%);
  background: linear-gradient(90deg, rgb(27, 78, 199) 0%, rgb(27, 78, 199) 10%, rgb(38, 89, 213) 10%, rgb(38, 89, 213) 20%, rgb(48, 103, 219) 20%, rgb(48, 103, 219) 32%, rgb(57, 112, 242) 32%, rgb(57, 112, 242) 43%, rgb(62, 124, 255) 43%, rgb(62, 124, 255) 47%, rgb(74, 132, 255) 47%, rgb(74, 132, 255) 49%, rgb(90, 148, 255) 49%, rgb(90, 148, 255) 100%);
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.main-visual__inner {
  display: block;
  /* 共通・コンテンツ幅 */
  width: min(calc(100% - clamp(10px, 8.33vw, 80px)), 1600px);
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: calc(50% - 40px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.main-visual__inner::before {
  content: "";
  display: block;
  width: 700px;
  height: 700px;
  border: dotted 20px rgba(27, 78, 199, 0.6);
  border-radius: 50%;
  position: absolute;
  top: calc(50% + 40px);
  left: 90%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.main-visual__inner::after {
  content: "";
  display: block;
  width: 900px;
  height: 900px;
  border: dotted 40px rgba(162, 222, 219, 0.6);
  border-radius: 50%;
  position: absolute;
  top: calc(50% + 40px);
  left: 90%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 640px) {
  .main-visual__inner::before, .main-visual__inner::after {
    left: 100%;
  }
}
.main-visual__copy {
  display: inline-block;
  padding: 0 0 0.25em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px); /* 基準:1080px */
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #fefefe;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
}
.main-visual__sub-copy {
  display: block;
  margin: 0.5em 0 0;
  font-size: 0.5em;
}

/*-----------------------------
背景・楕
-----------------------------*/
.home-inner {
  text-align: center;
  overflow: hidden;
  color: #fefefe;
  background: #5A94FF;
}
.home-inner__line, .home-inner__content {
  margin: 0 -300px;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 50% 30px;
  border-top-right-radius: 50% 30px;
  border-bottom-left-radius: 50% 30px;
  border-bottom-right-radius: 50% 30px;
}
.home-inner__line {
  /*　背景・楕円の線 */
  padding: 80px 300px;
  background: #a2dedb;
}
.home-inner__content {
  /*　背景・楕円の内側 */
  padding: 0 300px;
  color: #202020;
  background: #fefefe;
}

/*-----------------------------
セクション間の余白
-----------------------------*/
.home-container {
  margin: 32px 0 48px;
}
.home-container__inner {
  /* 共通・コンテンツ幅 */
  width: min(calc(100% - clamp(10px, 8.33vw, 80px)), 960px);
  margin: 0 auto;
}

.home-inner .home-container {
  margin: 64px 0 80px;
}

/*-----------------------------
タイトル
-----------------------------*/
.home-ttl {
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  font-size: clamp(38px, 5vw, 48px); /* 基準:1080px */
}
.home-ttl__main {
  color: #2a6fed;
}
.home-ttl__sub {
  /* 装飾（読み仮名） */
  display: block;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "ＭＳ ゴシック", "Arial", sans-serif;
  font-weight: 400;
  font-size: 0.3333333333em;
  color: inherit;
}
.home-ttl__line {
  /* 装飾（下・四角） */
  display: inline-block;
  margin-bottom: 0.375em;
  position: relative;
}
.home-ttl__line::after {
  content: "";
  display: block;
  width: 0.5em;
  border-bottom: 4px solid;
  position: absolute;
  left: 50%;
  bottom: -0.375em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.home-inner .home-ttl {
  font-size: clamp(56px, 6.25vw, 60px); /* 基準:1080px */
}

/*-----------------------------
タイトル下・コンテンツ
-----------------------------*/
/* .home-ttl用 */
.home-ttl-bottom {
  margin-top: 16px;
  border-top: 1px rgba(2, 2, 2, 0.2) solid;
  border-bottom: 1px rgba(2, 2, 2, 0.2) solid;
}
@media (max-width: 640px) {
  .home-ttl-bottom {
    margin-top: 10px;
  }
}

/* .home-ttl用 */
.home-text {
  display: block;
  margin: 1em 0 0;
  font-size: clamp(16px, 1.875vw, 18px); /* 基準:1080px */
  line-height: 1.75;
  word-break: break-all;
  letter-spacing: 0.05em;
}

/* ボタンを包む用 */
.home-btn-wrap {
  display: block;
  margin: 16px 0;
}

/* .home-ttl--home__inner用 */
.home-inner-btn-wrap, .home-inner-text {
  margin: 32px 0 48px;
}

.home-inner-text {
  font-size: clamp(16px, 1.875vw, 18px); /* 基準:1080px */
  line-height: 1.75;
  word-break: break-all;
  letter-spacing: 0.05em;
}
.home-inner-text--catch {
  font-size: clamp(15px, 1.875vw, 18px); /* 基準:1080px */
  font-weight: 600;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.1);
}
.home-inner-text--catch .home-ttl {
  line-height: 1.5;
  font-size: clamp(18px, 2.5vw, 24px); /* 基準:1080px */
}
.home-inner-text--catch > p {
  margin-bottom: 1em;
}
.home-inner-text--catch > p[class*=home-ttl] {
  margin-bottom: 1.5em;
  font-family: inherit;
}
.home-inner-text--catch > p[class*="home-ttl nowrap"] {
  margin-top: 1.5em;
}
.home-inner-text--catch > p[class*="home-ttl nowrap"] .nowrap {
  margin: 0 -0.5em;
  font-size: clamp(16px, 2.5vw, 24px); /* 基準:1080px */
  white-space: nowrap;
}
.home-inner-text--catch > p[class*="home-ttl en"] {
  font-size: clamp(24px, 3.3333333333vw, 32px); /* 基準:1080px */
}
.home-inner-text .home-ttl__main {
  color: #fefefe;
}
.home-inner-text .Btn {
  color: #2a6fed;
  background: #fefefe;
}

/* ボタンを包む用 */
.home-inner-btn-wrap {
  text-align: center;
}
.home-inner-btn-wrap--right {
  text-align: right;
}

/*-----------------------------
パネル
-----------------------------*/
/*////////////////////////
【１枚】
<div class="panel">
     <img src="./images/top-img1.jpg" alt="" class="panel__pc-only">
    <img src="./images/top-img1sp.jpg" alt="" class="panel__sp-only">
</div>

【２枚】
<ul class="home-inner-list">
    <li class="home-inner-list__item2 panel"> 
        <img src="./images/top-img2.jpg" alt="" class="panel__pc-only">
        <img src="./images/top-img2sp.jpg" alt="" class="panel__sp-only">
    </li>
    <li class="home-inner-list__item2 panel"> 
        <img src="./images/top-img2.jpg" alt="" class="panel__pc-only">
        <img src="./images/top-img2sp.jpg" alt="" class="panel__sp-only">
    </li>
 </ul>

【３枚】
<ul class="home-inner-list">
    <li class="home-inner-list__item3 panel">
        <img src="./images/top-img3.jpg" alt="">
    </li>
    <li class="home-inner-list__item3 panel">
        <img src="./images/top-img3.jpg" alt="">
    </li>
    <li class="home-inner-list__item3 panel">
        <img src="./images/top-img3.jpg" alt="">
    </li>
 </ul>

////////////////////////*/
.home-inner-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}
.home-inner-list__item {
  width: 100%;
}
.home-inner-list__item2 {
  width: 50%;
}
.home-inner-list__item3 {
  width: 33.3333333333%;
}
@media (max-width: 640px) {
  .home-inner-list__item2, .home-inner-list__item3 {
    width: 100%;
  }
}

.panel {
  /* circle-itemを包む用 */
}
.panel img {
  -o-object-fit: cover;
  object-fit: cover;
}
.panel__sp-only {
  display: none;
}
@media (max-width: 640px) {
  .panel__sp-only {
    display: block;
  }
}
.panel__pc-only {
  display: block;
}
@media (max-width: 640px) {
  .panel__pc-only {
    display: none;
  }
}
.panel__circle-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 16px 0;
}
@media (max-width: 640px) {
  .panel__circle-item {
    display: none;
  }
}

/* 文字入りの正円 */
.circle-item {
  font-size: clamp(16px, 1.875vw, 18px); /* 基準:1080px */
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.circle-item__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 200px;
  min-height: 200px;
  padding: 0.5em;
  position: relative;
  top: 0;
  left: 0;
  color: #fefefe;
  z-index: 1;
}
.circle-item__inner::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 100%;
  background: #1B4EC7;
  z-index: -1;
}
.circle-item__inner--sky::before {
  background: #7e97cc;
}
.circle-item__inner--green::before {
  background: #1B4EC7;
}
.circle-item__inner--red::before {
  background: #7e97cc;
}
.circle-item-M {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.circle-item-M__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 240px;
  min-height: 240px;
  padding: 0.5em;
  position: relative;
  top: 0;
  left: 0;
  color: #fefefe;
  z-index: 1;
}
.circle-item-M__inner::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 100%;
  background: #1B4EC7;
  z-index: -1;
}

/* 文字入りの正円を並べる(●×●×●×●) */
.circle-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  list-style: none;
}
@media (max-width: 1024px) {
  .circle-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 640px) {
  .circle-list {
    display: none;
  }
}
.circle-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .circle-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.circle-list__item::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 16px;
  background: url(../img/peke.png) no-repeat center;
  background-size: cover;
}
.circle-list__item:last-of-type::after {
  display: none;
}

/*-----------------------------
ニュース 
-----------------------------*/
@media (max-width: 1024px) {
  .news {
    padding: 24px 0 32px;
  }
}
.news__unit {
  padding: 16px 0;
  border-bottom: 1px rgba(2, 2, 2, 0.2) solid;
}
@media (max-width: 1024px) {
  .news__unit {
    padding: 0;
    border-bottom: 0;
    margin-bottom: 16px;
  }
}
.news__unit:last-of-type {
  border-bottom: 0;
}
@media (max-width: 1024px) {
  .news__unit:last-of-type {
    margin-bottom: 0;
  }
}
.news__deta {
  margin-bottom: 0.5em;
  font-size: clamp(13px, 1.4583333333vw, 14px); /* 基準:1080px */
  font-weight: 700;
}
.news__text {
  line-height: 1.5;
  word-break: break-all;
  letter-spacing: 0.03em;
}
.news a {
  text-decoration: underline;
}

/*-----------------------------
地図・インフォ
-----------------------------*/
.info {
  padding: 24px 0;
}
.info__map {
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid rgba(2, 2, 2, 0.2);
}
.info__map-inner {
  width: 100%;
  padding-top: 33.3333333333%;
  position: relative;
}
.info__map-inner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.info__text {
  display: block;
  padding: 0 0 0 0.5em;
  margin: 0.5em 0 0;
  border-left: solid 8px #5A94FF;
  list-style: none;
}
.info__text li,
.info__text p {
  margin-bottom: 0.5em;
}

/*-----------------------------
ページタイトル
-----------------------------*/
.head {
  display: block;
  width: 100%;
  height: 160px;
  color: #fefefe;
  background: url(../images/head_01.jpg) center no-repeat;
  position: relative;
}
.head::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.head__inner {
  display: block;
  height: 150px;
  position: relative;
  z-index: 2;
}
.head__ttl {
  display: block;
  text-align: center;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.head__main {
  display: block;
  font-size: clamp(24px, 3.3333333333vw, 32px); /* 基準:1080px */
}
.head__sub {
  display: block;
  margin-bottom: 0.25em;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.6666666667vw, 16px); /* 基準:1080px */
}

#services .head {
  background-image: url(../images/head_02.jpg);
}

#company .head {
  background-image: url(../images/head_03.jpg);
}

.head-bottom {
  display: block;
  padding: 16px 0;
  border: solid rgba(2, 2, 2, 0.2);
  border-width: 1px 0;
}
@media (max-width: 640px) {
  .head-bottom {
    display: none;
  }
}
.head-bottom__inner {
  display: block;
  /* 共通・コンテンツ幅 */
  width: min(calc(100% - clamp(10px, 8.33vw, 80px)), 960px);
  margin: 0 auto;
}

.breadcrumb, .breadcrumb__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 24px;
}
.breadcrumb__item {
  list-style: none;
  font-size: clamp(13px, 1.4583333333vw, 14px); /* 基準:1080px */
}
.breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-style: solid;
  border-width: 1px 1px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.breadcrumb__item:first-of-type {
  margin-left: 0;
}
.breadcrumb__item:first-of-type::before {
  display: none;
}
.breadcrumb__item a:active {
  background: rgba(73, 213, 211, 0.2);
}
@media (min-width: 1025px) {
  .breadcrumb__item a:hover {
    color: #49d5d3;
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }
}

/*-----------------------------
ページ内容
-----------------------------*/
.contents {
  margin: 48px 0 120px;
  line-height: 1.75;
}
.contents__inner {
  /* 共通・コンテンツ幅 */
  width: min(calc(100% - clamp(10px, 8.33vw, 80px)), 960px);
  margin: 0 auto;
}
.contents h3 {
  font-size: clamp(20px, 2.2916666667vw, 22px); /* 基準:1080px */
}
.contents h4 {
  font-size: clamp(18px, 2.0833333333vw, 20px); /* 基準:1080px */
}
.contents h5 {
  font-size: clamp(16px, 1.875vw, 18px); /* 基準:1080px */
}

/*-----------------------------
余白
-----------------------------*/
.item_LL {
  margin-top: 64px;
}

.item_L {
  margin-top: 48px;
}

.item_M {
  margin-top: 32px;
}

.item_S {
  margin-top: 24px;
}

.item_SS {
  margin-top: 16px;
}

.item_LL p:not([class]), .item_L p:not([class]), .item_M p:not([class]), .item_S p:not([class]), .item_SS p:not([class]) {
  margin-bottom: 1em;
  text-align: justify;
}
.item_LL p:not([class]):last-of-type, .item_L p:not([class]):last-of-type, .item_M p:not([class]):last-of-type, .item_S p:not([class]):last-of-type, .item_SS p:not([class]):last-of-type {
  margin-bottom: 0;
}

/*-----------------------------
タイトル
-----------------------------*/
.page-ttl3, .page-ttl2, .page-ttl {
  display: block;
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.page-ttl {
  /* 装飾（下線） */
  padding-bottom: 16px;
  border-bottom: 3px solid #5A94FF;
}

.page-ttl2__inner {
  /* 装飾（下線＋四角）） */
  display: block;
  padding-bottom: 24px;
  position: relative;
  top: 0;
  left: 0;
}
.page-ttl2__inner::before, .page-ttl2__inner::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.page-ttl2__inner::before {
  width: 100%;
  bottom: 1px;
  border-bottom: 1px rgba(2, 2, 2, 0.2) solid;
}
.page-ttl2__inner::after {
  width: 48px;
  height: 3px;
  background: #a2dedb;
}

.page-ttl3__inner {
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(2, 2, 2, 0.2);
  /* 装飾（左に四角） */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-ttl3__inner::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 1em;
  margin-right: 0.4em;
  background: #5A94FF;
}

/*-----------------------------
イメージ（単体）
-----------------------------*/
.page-img {
  width: min(100%, 240px);
}

/*-----------------------------
横並びコンテナ
-----------------------------*/
/*////////////////////////
【サンプル】
<div class="page-container">
<div class="page-container__text"> テキスト </div>
<div class="page-container__img"> 写真 </div>
</div>

<div class="page-container">
<div class="page-container__img"> 写真 </div>
<div class="page-container__text"> テキスト </div>
</div>
////////////////////////*/
.page-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-container__text {
  width: min(50%, 640px);
}
@media (max-width: 1024px) {
  .page-container__text {
    width: 100%;
  }
}
.page-container__img {
  width: min(100%, 320px);
}

/*-----------------------------
カード（横並びコンテナ内）
-----------------------------*/
.page-card {
  width: min(100%, calc(960px / 2 - 24px));
}
.page-card__ttl {
  margin-top: 32px;
}
.page-card__text {
  margin-top: 0.5em;
  line-height: 1.5;
  word-break: break-all;
  letter-spacing: 0.03em;
}
.page-card__ttl + .page-card__text {
  margin-top: 16px;
}

/*-----------------------------
リスト（丸）
-----------------------------*/
.page-list {
  list-style: square;
  padding-left: 1em;
}
.page-list > li {
  margin: 0 0 0.5em;
  text-align: left;
}
.page-list > li::marker {
  color: #2a6fed;
}
.page-list .Small {
  display: block;
  color: #2a6fed;
  font-weight: bold;
}

/*-----------------------------
リスト（/）
-----------------------------*/
.page-list2 {
  list-style: none;
}
.page-list2 > li {
  display: inline-block;
  margin: 0 0.25em 0.5em 0;
  text-align: left;
}
.page-list2 > li::after {
  content: "／";
  display: inline;
  margin: 0 0 0 0.25em;
  color: rgba(2, 2, 2, 0.2);
}
.page-list2 > li:last-of-type::after {
  display: none;
}

/*-----------------------------
テーブル（実績などに使用）
-----------------------------*/
.page-table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  width: 100%;
  max-height: 600px;
  margin: 0.5em 0;
  overflow: auto;
  font-size: clamp(13px, 1.4583333333vw, 14px); /* 基準:1080px */
  line-height: 1.75;
}
.page-table tr {
  display: grid;
  grid-template: 1fr/3fr 2fr;
  gap: 0.2em 1em;
  width: 100%;
  padding: 0.1em 0.1em 0.25em;
  border-bottom: 1px dotted rgba(2, 2, 2, 0.2);
}
.page-table tr:first-of-type {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #fff;
}
.page-table th {
  text-align: left;
  font-weight: 400;
  font-size: 0.9em;
  color: rgba(32, 32, 32, 0.6);
}

/* 差分・日付あり */
.page-table[class*=type_dey] tr {
  grid-template: 1fr/88px 3fr 2fr;
}
.page-table[class*=type_dey] td:first-of-type {
  font-size: 0.9em;
  margin: 0.11em 0 0;
}

@media (max-width: 640px) {
  .page-table tr,
  .page-table[class*=type_dey] tr {
    grid-template: 1fr/1fr;
  }
}
/*-----------------------------
文字・囲み
-----------------------------*/
.page-kakomi {
  display: inline-block;
  padding: 1em 2em;
  background: rgba(162, 222, 219, 0.3);
}

/*-----------------------------
リンク装飾（内部リンク）
-----------------------------*/
.page-link, .page-external-link {
  color: #1B4EC7;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.page-link:active, .page-external-link:active {
  background: rgba(73, 213, 211, 0.2);
}
@media (min-width: 1025px) {
  .page-link:hover, .page-external-link:hover {
    color: #49d5d3;
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }
}

/*-----------------------------
リンク装飾（外部リンク）
-----------------------------*/
/*////////////////////////
【サンプル】
<a href="" class="page-external-link"> サンプルテキスト </a>
////////////////////////*/
.page-external-link {
  margin: 0 0.25em;
}
.page-external-link::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  margin-left: 0.25em;
  vertical-align: middle;
  background: url(../img/icon-link.png) no-repeat center;
  background-size: cover;
  opacity: 0.6;
}

/*-----------------------------
アイコン付きテキスト
-----------------------------*/
.page-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2em;
  height: 2em;
  background: #49d5d3;
  border-radius: 50%;
  color: #fefefe;
  font-size: 1.2em;
  font-weight: bold;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}

.page-icon-wrap {
  display: grid;
  grid-template: 1fr/repeat(1, auto 1fr);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.8em 1.5em;
}
@media (max-width: 640px) {
  .page-icon-wrap {
    grid-template: auto 1fr/1fr;
  }
}