@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;
  }
}

/*-----------------------------
ページタイトル
-----------------------------*/
.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;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::
お問い合わせフォーム
::::::::::::::::::::::::::::::::::::::::::::::*/
/*-----------------------------
入力欄
-----------------------------*/
.m-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border: 1px solid #515151;
}
.m-form__label {
  width: 30%;
  background: #ececec;
}
.m-form__input {
  width: 70%;
}
.m-form__input input,
.m-form__input textarea {
  width: 100%;
  border: 1px solid #515151;
  -webkit-box-shadow: inset 1px 4px 6px -6px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 4px 6px -6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: 16px; /* スマホで拡大防止 */
}
.m-form__input input:focus,
.m-form__input textarea:focus {
  background: #e4f1ff;
}
.m-form__input input {
  height: 40px;
}
.m-form__input textarea {
  min-height: 240px;
}
.m-form__label, .m-form__input {
  padding: 24px;
}
@media (max-width: 1024px) {
  .m-form__label, .m-form__input {
    width: 100%;
    padding: 16px;
  }
}
@media (max-width: 640px) {
  .m-form__label-inner {
    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;
    min-height: 40px;
  }
}
.m-form__label-inner label {
  width: 100%;
  line-height: 1.25;
  font-weight: 500;
  word-break: break-all;
  letter-spacing: 0.05em;
}
.m-form__required {
  display: inline-block;
  padding: 0.2em 0.4em;
  margin-left: 0.4em;
  vertical-align: middle;
  background: #7e97cc;
  line-height: 1.25;
  font-weight: 500;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-size: clamp(10px, 1.25vw, 12px); /* 基準:1080px */
  color: #fefefe;
}
.m-form__br {
  display: inline-block;
}

/*-----------------------------
入力欄下・プライバシーポリシー
-----------------------------*/
.m-form-privacy input[type*=checkbox] {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.m-form-privacy a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: #1B4EC7;
}

/*-----------------------------
入力欄下のボタン
-----------------------------*/
.m-form-bottom {
  text-align: center;
}
.m-form-bottom__item {
  margin-top: 32px;
}
.m-form-bottom__item--last {
  margin-top: 24px;
}

/*-----------------------------
ボタン（送信・リセット）
-----------------------------*/
.m-form-button {
  display: inline-block;
  width: 240px;
  height: 40px;
  border: 0;
  border-radius: 20px;
  background: #1B4EC7;
  font-size: clamp(15px, 1.6666666667vw, 16px); /* 基準:1080px */
  font-weight: 600;
  word-break: break-all;
  letter-spacing: 0.05em;
  color: #fefefe;
}
@media (min-width: 1025px) {
  .m-form-button {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .m-form-button:hover {
    border-top: 6px solid rgba(2, 2, 2, 0.2);
  }
}
.m-form-button--reset {
  border: 1px solid;
  background: #fefefe;
  color: #202020;
}
@media (min-width: 1025px) {
  .m-form-button--reset:hover {
    border-color: inherit;
  }
}

/*-----------------------------
確認画面・送信完了画面
-----------------------------*/
.form-next-page {
  margin: 80px 0;
  text-align: center;
}
.form-next-page__inner {
  /* 共通・コンテンツ幅 */
  width: min(calc(100% - clamp(10px, 8.33vw, 80px)), 960px);
  margin: 0 auto;
}

.form-next-page-ttl {
  display: block;
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-size: clamp(24px, 3.3333333333vw, 32px); /* 基準:1080px */
  /* 装飾（下線） */
  padding-bottom: 16px;
  border-bottom: 3px solid #2a6fed;
}

.form-next-page-ttl-bottom {
  margin-top: 32px;
}
.form-next-page-ttl-bottom__item {
  margin-top: 24px;
}

/* テキスト中央よせ */
.form-next-page-text {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
  line-height: 1.75;
  word-break: break-all;
  letter-spacing: 0.05em;
}

.m-form-table {
  width: 100%;
  padding: 16px 10px;
  margin: 0 auto;
  border: 1px solid;
  border-collapse: separate;
}
@media (max-width: 640px) {
  .m-form-table {
    max-width: 800px;
    padding: 32px;
  }
}
.m-form-table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  text-align: left;
  line-height: 1.75;
  word-break: break-all;
  letter-spacing: 0.05em;
}
.m-form-table tr:first-of-type th,
.m-form-table tr:first-of-type td {
  margin-top: 0;
}
.m-form-table th,
.m-form-table td {
  width: 100%;
}
@media (max-width: 640px) {
  .m-form-table th,
  .m-form-table td {
    width: 50%;
    margin-top: 16px;
  }
}
.m-form-table th {
  margin-top: 16px;
}
.m-form-table th::after {
  content: ":";
  display: inline-block;
  padding-left: 0.5em;
}
.m-form-table td {
  min-height: 1em;
}

/*-----------------------------
php上書き
-----------------------------*/
.error_messe {
  margin: 8px 0;
  color: red;
}