@charset "UTF-8";
/*-----------------------------------------------------------------
///////////////////////////////////////////////////////////////////
【メモ】
● サイト内・ページ内リンクは、先頭に『link-』をつけてIDセレクタで設定しています。
● jQuery専用クラスは先頭に『js-』をつけています。
● フォントサイズ(em)のメモは、TAB/PCのフォントサイズを基準に計算しています。
● 共通のコンテンツ幅は、『共通・コンテンツ幅』で検索してください。

///////////////////////////////////////////////////////////////////
------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

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

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

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

/*-----------------------------
画面幅
-----------------------------*/
.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: #F49E43;
  font-size: 1em; /*12px*/
  font-weight: 600;
  word-break: break-all;
  letter-spacing: 0.05em;
}
.Btn__inner {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (min-width: 640px) {
  .Btn:hover {
    border-top: 6px solid rgba(2, 2, 2, 0.3);
    transition: all 0.3s;
  }
}
/* 下線ボタン（more） */
.Line-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.125em; /*18px*/
  display: inline-block;
  color: #724B21;
}
.Line-btn__inner {
  display: inline-block;
  padding-bottom: 0.2em;
  border-bottom: 1px solid;
}
.Line-btn__icon::after {
  content: "";
  display: inline-block;
  border: 0.25em solid transparent;
  border-left-color: inherit;
}

/* 「採用はこちら」ボタン */
.Btn__recruitment {
  display: inline-block;
  width: 200px; /* 適切な幅を設定 */
  height: 40px; /* 適切な高さを設定 */
  background-color: #f90;
  color: white;
  border-radius: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 40px; /* テキストを垂直中央に配置 */
}

.line-button img {
  max-width: 20%;
  height: auto;
  display: inline-block;
}

@media (max-width: 640px) {
  .line-button img {
    max-width: 200px;
  }
}

@media (min-width: 640px) {
  .line-button img {
    max-width: 300px;
  }
}

@media (min-width: 640px) {
  .Line-btn:hover {
    transition: all 0.3s;
  }
}
@media (min-width: 640px) {
  .Line-btn:hover {
    color: #F49E43;
  }
}

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

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

.Small {
  font-size: 0.5em;
}

/* 太字 */
.Bold {
  font-size: 1.2em;
  font-weight: 600;
}

/*-----------------------------
会社のロゴ
-----------------------------*/
.Logo {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5em; /*24px*/
  font-weight: 900;
}

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

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

---------------------------------------------------------*/
/*::::::::::::::::::::::::::::::::::::::::::::
全体設定
::::::::::::::::::::::::::::::::::::::::::::::*/
.header {
  width: 100%;
  background: #fefefe;
  position: fixed;
  z-index: 20;
}
.header::before, .header::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #F49E43;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.header::after {
  height: 2px;
  background: #FACD9D;
  top: 4px;
}
.header__inner {
  /* 共通・コンテンツ幅 */
  width: 95%;
  margin: 0 auto;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
@media (min-width: 960px) {
  .header__container {
    flex-wrap: wrap;
    height: auto;
    min-height: 72px;
    padding: 16px 0;
  }
}
.header__top {
  display: none;
}
@media (min-width: 960px) {
  .header__top {
    order: 1;
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
}
.header__left {
  /* Logo */
  width: min(100%, 40px);
  color: #F49E43;
}
@media (min-width: 960px) {
  .header__left {
    order: 2;
    display: flex;
    width: min(100%, 56px);
  }
}
@media (min-width: 960px) {
  .header__bottom {
    order: 3;
    display: flex;
    justify-content: flex-end;
  }
}
@media (min-width: 960px) {
  .header__item-sp-only {
    display: none;
  }
}
.header__item-pc-only {
  display: none;
}
@media (min-width: 960px) {
  .header__item-pc-only {
    display: block;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::
コンテンツの設定
::::::::::::::::::::::::::::::::::::::::::::::*/
/*-----------------------------
PCメニュー
-----------------------------*/
/* 共通 */
.pc-menu-sub, .pc-menu {
  display: flex;
  list-style: none;
}
.pc-menu-sub a:active, .pc-menu a:active {
  background: #e0f6ff;
}
@media (min-width: 960px) {
  .pc-menu-sub a:hover, .pc-menu a:hover {
    text-decoration: underline;
  }
}

/* メインメニュー */
.pc-menu {
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* アイテムを垂直方向の中央に配置 */
  flex-wrap: wrap; /* コンテンツが多い場合は折り返す */
  gap: 48px; /* アイテム間のギャップ */
  list-style: none; /* リストマーカーを非表示にする */
  padding: 0; /* デフォルトのパディングを解除 */
  margin: 0; /* デフォルトのマージンを解除 */
}

.pc-menu__item {
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え */
  flex: 1; /* 各アイテムが均等にスペースを取るように調整 */
  font-size: 1em; /*12px*/
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.pc-menu__item-inner {
  display: block;
  padding-left: 10px;
  position: relative;
  white-space: nowrap;
}
.pc-menu__item-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: #F49E43;
}

/* サブメニュー */
.pc-menu-sub {
  grid-gap: 32px;
  padding: 10px 0 0;
}
.pc-menu-sub__item {
  font-size: 0.875em; /*14px*/
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: 500;
}

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

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

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

/*メニューを開いたときのアイコン*/
#hamBurger-check:checked ~ #hamBurger-btn span {
  background: transparent;
}
#hamBurger-check:checked ~ #hamBurger-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#hamBurger-check:checked ~ #hamBurger-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

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

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

/*-----------------------------
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: 95%;
  margin: 0 auto;
}

.sp-menu {
  padding: 24px 0;
}
.sp-menu__list {
  list-style: none;
  border-bottom: 1px rgba(2, 2, 2, 0.3) solid;
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.sp-menu__list--sizeM {
  font-size: 0.875em; /*14px*/
}
.sp-menu__list--sizeS {
  font-size: 0.75em; /*12px*/
}
.sp-menu__item-wrap {
  border-top: 1px rgba(2, 2, 2, 0.3) 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;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: inherit;
}
.sp-menu__contact-info {
  margin: 32px 0;
}

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

///////////////////////////////////////////////////////////////////
------------------------------------------------------------------*/
/*::::::::::::::::::::::::::::::::::::::::::::
全体設定
::::::::::::::::::::::::::::::::::::::::::::::*/
.footer {
  overflow: hidden; /* 子・子孫要素の背景表示用 */
}
.footer__inner {
  /* 共通・コンテンツ幅 */
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .footer__inner {
    width: 98%; /*画面みっちり防止*/
    max-width: 1360px;
    padding-right: 80px;
    padding-left: 80px;
  }
}
.footer__mask {
  color: #fefefe;
  background: #F49E43;
  font-size: 0;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}
.footer__mask::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: inherit;
  z-index: -2;
}
@media (min-width: 640px) {
  .footer__mask {
    padding-top: 24px;
  }
}
.footer__sp-menu {
  display: block;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  word-break: break-all;
  letter-spacing: 0.05em;
}
@media (min-width: 960px) {
  .footer__sp-menu {
    display: none;
  }
}
.footer__pc-menu {
  display: none;
  padding: 24px 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  word-break: break-all;
  letter-spacing: 0.05em;
}
@media (min-width: 960px) {
  .footer__pc-menu {
    display: block;
  }
}
.footer__pc-menu-item {
  padding-top: 24px;
  border-top: 1px rgba(2, 2, 2, 0.3) solid;
}
.footer__copyright {
  padding: 24px 0;
}

/*::::::::::::::::::::::::::::::::::::::::::::
各パーツの設定
::::::::::::::::::::::::::::::::::::::::::::::*/
/*-----------------------------
コピーライト
-----------------------------*/
.copyright {
  display: flex;
  flex-direction: column;
}
.copyright .copyright__sub-2, .copyright .copyright__main, .copyright .copyright__sub {
  display: block;
  width: 100%;
}
.copyright__sub {
  /* Logo */
  margin-bottom: 6px;
}
.copyright__main {
  font-size: 0.625em; /*10px*/
}
.copyright__sub-2 {
  margin: 1em 0 0;
  font-size: 0.5em;
}

/*-----------------------------
お問い合わせ先（カードリスト）
-----------------------------*/
.icon-cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 16px;
  color: #202020;
  background: #f4f4f4;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 640px) {
  .icon-cards {
    border-radius: 10px;
  }
}
.icon-cards::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: inherit;
  z-index: -2;
}
@media (min-width: 640px) {
  .icon-cards::before {
    display: none;
  }
}
.icon-cards__card {
  display: flex; /* 高さを合わせる */
  width: 100%;
  padding: 32px 8px;
  border-top: 1px solid rgba(2, 2, 2, 0.3);
}
@media (min-width: 640px) {
  .icon-cards__card {
    width: 100%;
    padding: 48px 8px;
    border: 0;
    border-left: 1px solid rgba(2, 2, 2, 0.3);
  }
}
.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: 64px;
  height: 64px;
  background: url(../img/icon-tel.png) no-repeat center;
  background-size: cover;
}
.icon-cards__card-inner--pc::before {
  background: url(../img/icon-web.png) no-repeat center;
  background-size: cover;
}

/*-----------------------------
お問い合わせ先の詳細
-----------------------------*/
/* タイトル・番号・アドレスの入れ物(.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: 1em; /*12px*/
  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: #F49E43;
}
.contact-info-text__tel-sp, .contact-info-text__tel-pc {
  display: block;
  font-size: 2em; /*32px*/
}
@media (min-width: 640px) {
  .contact-info-text__tel-sp, .contact-info-text__tel-pc {
    display: none;
  }
}
.contact-info-text__tel-pc {
  display: none;
}
@media (min-width: 640px) {
  .contact-info-text__tel-pc {
    display: block;
  }
}

/* 番号・アドレス（補足情報） */
.contact-info-supplement {
  display: block;
  font-size: 0.75em; /*12px*/
}

/*-----------------------------
footer用・PCメニュー（1列）
-----------------------------*/
.f-pc-menu-single {
  display: flex;
  grid-gap: 32px;
  list-style: none;
}
.f-pc-menu-single__item {
  font-size: 0.875em; /*14px*/
}
.f-pc-menu-single__item a:active {
  background: #e0f6ff;
}
@media (min-width: 960px) {
  .f-pc-menu-single__item a:hover {
    text-decoration: underline;
  }
}

/*-----------------------------------------------------------------
///////////////////////////////////////////////////////////////////
main

///////////////////////////////////////////////////////////////////
------------------------------------------------------------------*/
/*-----------------------------
ページトップ（パンくずリスト）
-----------------------------*/
.main-page-outer {
  border-top: 1px rgba(2, 2, 2, 0.3) solid;
}
@media (min-width: 960px) {
  .main-page-outer {
    border-bottom: 1px rgba(2, 2, 2, 0.3) solid;
  }
}
.main-page-outer__inner {
  display: none;
}
@media (min-width: 960px) {
  .main-page-outer__inner {
    display: block;
    /* 共通・コンテンツ幅 */
    width: 95%;
    margin: 0 auto;
  }
}
@media (min-width: 960px) and (min-width: 960px) {
  .main-page-outer__inner {
    width: 98%; /*画面みっちり防止*/
    max-width: 1360px;
    padding-right: 80px;
    padding-left: 80px;
  }
}

/*-----------------------------
ページ内容
-----------------------------*/
.main-page {
  /* 共通・コンテンツ幅 */
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .main-page {
    width: 98%; /*画面みっちり防止*/
    max-width: 1360px;
    padding-right: 80px;
    padding-left: 80px;
  }
}
.main-page__top {
  /* トップタイトル */
  padding: 16px 0;
  border-bottom: 1px rgba(2, 2, 2, 0.3) solid;
}
@media (min-width: 640px) {
  .main-page__top {
    padding: 24px 0;
  }
}
.main-page__bottom {
  /* トップタイトルの下 */
  margin: 32px 0 96px;
}
@media (min-width: 640px) {
  .main-page__bottom {
    margin: 80px 0 120px;
  }
}

/*-----------------------------
タイトル（共通）
-----------------------------*/
.main-page-card__ttl, .main-page-ttl2, .main-page-ttl, .main-page-top-ttl {
  display: block;
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/*-----------------------------
テキスト（共通）
-----------------------------*/
.main-page-ttl2-bottom, .main-page-ttl-bottom {
  display: block;
  line-height: 1.75;
  word-break: break-all;
  letter-spacing: 0.05em;
}

/*-----------------------------
トップタイトル
-----------------------------*/
.main-page-top-ttl {
  font-size: 2.625em; /*42px*/
}
.main-page-top-ttl__inner {
  /* 装飾（左に四角） */
  display: flex;
  align-items: center;
}
.main-page-top-ttl__inner::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 1em;
  margin-right: 0.4em;
  background: #F49E43;
}

/*-----------------------------
タイトル（大）
-----------------------------*/
/*////////////////////////
【サンプル】
① 改行なし
<h3 class="main-page-ttl">
<span class="main-page-ttl__inner">サンプルタイトル（大）</span>
</h3>
<p class="main-page-ttl-bottom">
サンプルテキスト
</p>

② 改行あり
<h3 class="main-page-ttl">
<span class="main-page-ttl__inner">サンプルタイトル（大）</span>
</h3>
<div class="main-page-ttl-bottom">
<p class="main-page-ttl-bottom__item">
サンプルテキスト
</p>
<p class="main-page-ttl-bottom__item">
サンプルテキスト
</p>
</div>

////////////////////////*/
.main-page-ttl {
  margin-top: 48px;
  font-size: 2em; /*32px*/
  /* 装飾（下線） */
  padding-bottom: 16px;
  border-bottom: 3px solid #F49E43;
}
@media (min-width: 640px) {
  .main-page-ttl {
    margin-top: 64px;
  }
}

/*-----------------------------
タイトル（大）のテキスト・写真・コンテンツ
-----------------------------*/
.main-page-ttl-bottom {
  margin-top: 32px;
}
@media (min-width: 640px) {
  .main-page-ttl-bottom {
    margin-top: 48px;
  }
}
.main-page-ttl-bottom__item {
  margin-top: 16px;
}
@media (min-width: 640px) {
  .main-page-ttl-bottom__item {
    margin-top: 24px;
  }
}

/*-----------------------------
タイトル（中）
-----------------------------*/
/*////////////////////////
【サンプル】
① 改行なし
<h4 class="main-page-ttl2">
<span class="main-page-ttl2__inner">サンプルタイトル（中）</span>
</h4>
<p class="main-page-ttl2-bottom">
サンプルテキスト
</p>

② 改行あり
<h4 class="main-page-ttl2">
<span class="main-page-ttl2__inner">サンプルタイトル（中）</span>
</h4>
<div class="main-page-ttl2-bottom">
<p class="main-page-ttl2-bottom__item">
サンプルテキスト
</p>
<p class="main-page-ttl2-bottom__item">
サンプルテキスト
</p>
</div>

////////////////////////*/
.main-page-ttl2 {
  margin-top: 32px;
  font-size: 1.5em; /*24px*/
}
@media (min-width: 640px) {
  .main-page-ttl2 {
    margin-top: 48px;
  }
}
.main-page-ttl2__inner {
  /* 装飾（下線＋四角）） */
  display: block;
  padding-bottom: 24px;
  position: relative;
  top: 0;
  left: 0;
}
.main-page-ttl2__inner::before, .main-page-ttl2__inner::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-page-ttl2__inner::before {
  width: 100%;
  bottom: 1px;
  border-bottom: 1px rgba(2, 2, 2, 0.3) solid;
}
.main-page-ttl2__inner::after {
  width: 48px;
  height: 3px;
  background: #F49E43;
}

/*-----------------------------
タイトル（中）のテキスト・写真・コンテンツ
-----------------------------*/
.main-page-ttl2-bottom {
  margin-top: 24px;
}
@media (min-width: 640px) {
  .main-page-ttl2-bottom {
    margin-top: 32px;
  }
}
.main-page-ttl2-bottom__item {
  margin-top: 16px;
}
@media (min-width: 640px) {
  .main-page-ttl2-bottom__item {
    margin-top: 24px;
  }
}

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

<div class="main-page-container">
<div class="main-page-container__img"> 写真 </div>
<div class="main-page-container__text"> テキスト </div>
</div>
////////////////////////*/
.main-page-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-page-container__text, .main-page-container__img {
  width: 100%;
}
@media (min-width: 640px) {
  .main-page-container__text {
    width: 50%;
  }
}
@media (min-width: 640px) {
  .main-page-container__img {
    width: calc(50% - 48px);
  }
}
.main-page-container__img img {
  border: 1px solid rgba(2, 2, 2, 0.3);
}

/*-----------------------------
画像(単独)
-----------------------------*/
.main-page-img-s {
  width: min(100%, 220px);
}
.main-page-img-s img {
  border: 1px solid rgba(2, 2, 2, 0.3);
}

/*-----------------------------
カード（横並びコンテナ内）
-----------------------------*/
/*////////////////////////
【サンプル】
<div class="main-page-container">
    <div class="main-page-card">
        <dt class="main-page-card__ttl"><span class="main-page-card__ttl-inner"> タイトル（用語） </span></dt>
        <dd class="main-page-card__text"> テキスト（説明） </dd>
        <dd class="main-page-card__text"> テキスト（説明） </dd>
    </div>
</div>

////////////////////////*/
.main-page-card {
  width: 100%;
}
@media (min-width: 640px) {
  .main-page-card {
    width: calc((100% - 48px) / 2);
  }
}
.main-page-card__ttl {
  margin-top: 32px;
  font-size: 1.5em; /*24px*/
}
@media (min-width: 640px) {
  .main-page-card__ttl {
    margin-top: 48px;
  }
}
.main-page-card__ttl-inner {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(2, 2, 2, 0.3);
  /* 装飾（左に四角） */
  display: flex;
  align-items: center;
}
.main-page-card__ttl-inner::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 1em;
  margin-right: 0.4em;
  background: #F49E43;
}
.main-page-card__text {
  margin-top: 8px;
  line-height: 1.5;
  word-break: break-all;
  letter-spacing: 0.03em;
}
.main-page-card__text:first-of-type {
  margin-top: 24px;
}
@media (min-width: 640px) {
  .main-page-card__text:first-of-type {
    margin-top: 32px;
  }
}

/*-----------------------------
ページ外リンク
-----------------------------*/
/*////////////////////////
【サンプル】
<a href="" class="main-page-external-link"> サンプルテキスト </a>

////////////////////////*/
.main-page-external-link {
  color: #F49E43;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.main-page-external-link:active {
  background: #e0f6ff;
}
@media (min-width: 960px) {
  .main-page-external-link:hover {
    text-decoration: underline;
  }
}
.main-page-external-link::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  margin-left: 0.5em;
  vertical-align: middle;
  background: url(../img/baseline_open_in_new_black_48dp.png) no-repeat center;
  background-size: cover;
}

/*-----------------------------
パンくずリスト
-----------------------------*/
.breadcrumb {
  display: flex;
  align-items: center;
  grid-gap: 24px;
  padding: 16px 0;
  list-style: none;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  grid-gap: 24px;
  font-size: 0.875em; /*14px*/
}
.breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}
.breadcrumb__item:first-of-type {
  margin-left: 0;
}
.breadcrumb__item:first-of-type::before {
  display: none;
}
.breadcrumb__item a:active {
  background: #e0f6ff;
}
@media (min-width: 960px) {
  .breadcrumb__item a:hover {
    text-decoration: underline;
  }
}

/*-----------------------------
文字 方向
-----------------------------*/
.main-page-txt-r {
  text-align: right;
}

/*::::::::::::::::::::::::::::::::::::::::::::
お問い合わせフォーム
::::::::::::::::::::::::::::::::::::::::::::::*/
/*-----------------------------
入力欄
-----------------------------*/
.m-form {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #515151;
}
.m-form__label, .m-form__input {
  width: 100%;
  padding: 16px;
}
@media (min-width: 640px) {
  .m-form__label, .m-form__input {
    padding: 24px;
  }
}
.m-form__label {
  background: #f4f4f4;
}
@media (min-width: 640px) {
  .m-form__label {
    width: 30%;
  }
}
@media (min-width: 640px) {
  .m-form__input {
    width: 70%;
  }
}
.m-form__input input,
.m-form__input textarea {
  width: 100%;
  border: 1px solid #515151;
  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: #e0f6ff;
}
.m-form__input input {
  height: 40px;
}
.m-form__input textarea {
  min-height: 240px;
}
@media (min-width: 640px) {
  .m-form__label-inner {
    display: flex;
    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::after {
  content: "必須";
  display: inline-block;
  padding: 0.1em;
  margin-left: 0.4em;
  vertical-align: middle;
  font-size: 0.625em; /*10px*/
  color: #fefefe;
  background: red;
}
.m-form__br {
  display: inline-block;
}

/*-----------------------------
入力欄下のボタン
-----------------------------*/
.m-form-bottom {
  text-align: center;
}
.m-form-bottom__item {
  margin-top: 32px;
}
@media (min-width: 640px) {
  .m-form-bottom__item {
    margin-top: 48px;
  }
}
.m-form-bottom__item--last {
  margin-top: 16px;
}
@media (min-width: 640px) {
  .m-form-bottom__item--last {
    margin-top: 24px;
  }
}

/*-----------------------------
ボタン（送信・リセット）
-----------------------------*/
.m-form-button {
  display: inline-block;
  width: 240px;
  height: 40px;
  border: 1px solid;
  border-radius: 20px;
  font-size: 1em; /*12px*/
  font-weight: 600;
  word-break: break-all;
  letter-spacing: 0.05em;
  color: #202020;
  background: #fefefe;
}
@media (min-width: 640px) {
  .m-form-button:hover {
    border-top: 6px solid;
    transition: all 0.3s;
  }
}
.m-form-button--submit {
  border: 0;
  color: #fefefe;
  background: #F49E43;
}
@media (min-width: 640px) {
  .m-form-button--submit:hover {
    border-color: rgba(2, 2, 2, 0.3);
  }
}

/*-----------------------------
確認画面・送信完了画面
-----------------------------*/
.form-next-page {
  margin: 80px 0;
  text-align: center;
}
.form-next-page__inner {
  /* 共通・コンテンツ幅 */
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .form-next-page__inner {
    width: 98%; /*画面みっちり防止*/
    max-width: 1360px;
    padding-right: 80px;
    padding-left: 80px;
  }
}

.form-next-page-ttl {
  display: block;
  line-height: 1.25;
  word-break: break-all;
  letter-spacing: 0.05em;
  font-size: 2em; /*32px*/
  /* 装飾（下線） */
  padding-bottom: 16px;
  border-bottom: 3px solid #F49E43;
}

.form-next-page-ttl-bottom {
  margin-top: 32px;
}
@media (min-width: 640px) {
  .form-next-page-ttl-bottom {
    margin-top: 48px;
  }
}
.form-next-page-ttl-bottom__item {
  margin-top: 16px;
}
@media (min-width: 640px) {
  .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 (min-width: 640px) {
  .m-form-table {
    max-width: 800px;
    padding: 32px;
  }
}
.m-form-table tr {
  display: flex;
  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 (min-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;
}