:root {
  --col-bcg__light: #fffffc;
  --col-bcg__main: #fbf9e6;
  --col-bcg__text: #fffef1;
  --col-black: #000;
  --col-boxShadow: rgba(0, 0, 0, .2);
  --col-cti: #346324;
  --col-deco: #eae5bd;
  --col-font: #2d2c23;
  --col-fontHover: #64624e;
  --col-header: rgba(246, 241, 200, .5);
  --col-line__dark: #64624e;
  --col-line__light: #eae5bd;
  --col-side: #f2f0d7;
  --col-textShadow: rgba(100, 98, 78, .4);
  --col-white: #fff;
  --col-offWhite: #FFFDEB;
  --col-bcgSubheading: #8B7724;
  --col-markerTxt: #8B7724;
  --col-bcgBtn: #8B7724;
  --col-bcgBtnHover: #64624e;
  --col-balloon: #F1903D;
  --col-orange-38: #87613A;
}

:root {
  --font-mplus1: "M PLUS 1", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 82px;
}

body {
  color: var(--col-font);
  font-family: 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 1.4em;
  line-height: 1.5;
}

a {
  color: var(--col-font);
}

img {
  max-width: 100%;
}

/* - - - - - - - - - - - - - - -
  コンテナ
- - - - - - - - - - - - - - - - */
.container {
  background-color: var(--col-bcg__main);
  border-left: 10px solid var(--col-side);
  border-right: 10px solid var(--col-side);
  font-size: 1.6rem;
  width: 100%;
}

/* - - - - - - - - - - - - - - -
  ヘッダー
- - - - - - - - - - - - - - - - */
.ly_header {
  background-color: var(--col-header);
  height: auto;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.ly_header_inner {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  grid-template-areas:
    "gttl gnav gcontact";
  height: 82px;
  align-items: center;
  padding: 10px 30px;
  width: 100%;
  gap: 96px;
}

.gttl {
  grid-area: gttl;
}

.gnav {
  grid-area: gnav;
}

.gcontact {
  grid-area: gcontact;
  justify-self: end;
}

@media screen and (max-width: 1440px) {
  .ly_header_inner {
    gap: 72px;
  }
}

@media screen and (max-width: 1220px) {
  .ly_header_inner {
    gap: 48px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 960px) {
  .ly_header_inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "gttl gcontact"
      "gnav gnav";
    height: 164px;
    gap: 0 96px;
  }
}

/* h1見出し */
.ly_header h1 {
  height: 33px;
  width: 373px;
}

@media screen and (max-width: 1220px) {
  .ly_header h1 {
    height: 25px;
    width: 280px;
  }
}

.ly_header h1 img {
  aspect-ratio: 373 / 33;
  height: auto;
  width: 100%;
}

/* お問い合わせ */
.bl_addressInner {
  align-items: center;
  background-color: var(--col-cti);
  border-radius: 4px;
  color: var(--col-white);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-weight: 900;
  gap: 10px;
  height: 100%;
  justify-content: space-between;
  margin: 0;
  padding: 4px 10px;
  width: 300px;
}

@media screen and (max-width: 1220px) {
  .bl_addressInner {
    gap: 16px;
    width: fit-content;
  }
}

.bl_headerContactTtl {
  font-size: 16px;
  line-height: 1.4;
}

@media screen and (max-width: 1220px) {
  .bl_headerContactTtl {
    font-size: 15px;
  }
}

/* グローバルナビ */
.bl_globalNav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
  scroll-behavior: smooth;
}

@media screen and (max-width: 1440px) {
  .bl_globalNav {
    gap: 32px;
  }
}

@media screen and (max-width: 1220px) {
  .bl_globalNav {
    gap: 24px;
  }
}

.bl_navItem {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 1220px) {
  .bl_navItem {
    font-size: 17px;
  }
}

.bl_navItem a {
  transition: all 1s ease;
}

.bl_navItem a:hover {
  color: var(--col-fontHover);
}

.bl_navItem.hp_special a {
  display: flex;
  width: 128px;
  height: 62px;
  padding: 4px 10px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 2px solid var(--col-cti);
  background: var(--col-white);
  color: var(--col-cti);
  font-weight: 900;
  line-height: 1;
}

@media screen and (max-width: 1220px) {
  .bl_navItem.hp_special a {
    width: fit-content;
  }
}

@media screen and (max-width: 960px) {
  .bl_navItem.hp_special a {
    padding: 8px 16px;
    width: fit-content;
    height: fit-content;
    font-size: 16px;
  }
}

.bl_navItem.hp_special a:hover {
  background: var(--col-cti);
  color: var(--col-white);
}

/* 電話・FAX */
.bl_headerContact {
  align-content: space-between;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: flex-start;
}

.bl_headerContactUnits:active {
  color: var(--col-deco);
}

.bl_headerContactUnits i {
  color: var(--col-white);
  font-size: 20px;
}

@media screen and (max-width: 1220px) {
  .bl_headerContactUnits i {
    font-size: 18px;
  }
}

.bl_headerContactUnits .bl_headerContactNum {
  color: var(--col-white);
  font-size: 18px;
  line-height: 1.4;
}

@media screen and (max-width: 1220px) {
  .bl_headerContactUnits .bl_headerContactNum {
    font-size: 17px;
  }
}

/* - - - - - - - - - - - - - - -
  メインコンテンツ
- - - - - - - - - - - - - - - - */
.ly_main_inner {
  margin: 0 auto;
  padding: 100px 0 0;
}

/* コンテンツセクション */
.bl_sectionWrapper {
  width: 100%;
}

.bl_sectionWrapper__white {
  background-color: var(--col-bcg__light);
}

.bl_sectionInner {
  margin: 0 auto;
  max-width: 1000px;
  padding: 100px 0 160px;
}

@media screen and (max-width: 960px) {
  .bl_sectionInner {
    padding: 184px 0 160px;
  }
}

/* 見出し・要素・テーブルのレイアウト */
.bl_gridWrapper {
  display: grid;
  gap: 80px 60px;
  grid-template-areas: 'gr_1 gr_2'
    'gr_3 gr_2';
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 116px 1fr;
}

.gr_1 {
  grid-area: gr_1;
}

.gr_2 {
  grid-area: gr_2;
}

.gr_3 {
  grid-area: gr_3;
}

/* 中の要素を下揃えに */
.bl_bottomBoxWrapper {
  align-items: flex-end;
  display: flex;
  justify-content: flex-start;
}


/* 見出し h2 */
.el_lv2Heading {
  font-family: 'Noto Serif JP', 'Times New Roman', 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
  font-size: 4.8rem;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.4;
  position: relative;
  text-align: left;
  text-shadow: 0 2px 5px var(--col-textShadow);
  z-index: 2;
}

.hp_imgWhite::after,
.hp_imgBeige::after {
  content: '';
  height: 116px;
  left: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  z-index: -1;
}

.hp_imgWhite::after {
  background-image: url('/img/common/icon_h2_white.svg');
}

.hp_imgBeige::after {
  background-image: url('/img/common/icon_h2_beige.svg');
}

.el_lv2Heading span {
  display: block;
  transform: translateY(24px);
  z-index: 3;
}

/* 見出し h3 */
.el_lv3Heading {
  align-items: center;
  display: flex;
  flex-direction: row;
  font-family: 'Noto Serif JP', 'Times New Roman', 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
  font-size: 3rem;
  font-weight: 600;
  justify-content: flex-start;
  letter-spacing: .1em;
  line-height: 1.4;
  margin: 80px 0 60px;
  text-align: left;
  text-shadow: 0 1px 4px var(--col-textShadow);
}

.el_lv3Heading::before {
  background-color: var(--col-deco);
  content: '';
  height: 4px;
  margin: 0 20px 0 0;
  width: 30px;
}

.el_lv3Heading_center {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 100%;
}

.bl_box_recruit .el_lv3Heading {
  margin: 0 0 48px;
}

/* 見出し h4 */
.el_lv4Heading {
  border-bottom: 1px solid var(--col-line__dark);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.4;
  margin-bottom: 30px;
  padding-bottom: 4px;
}

.el_lv4Heading_small {
  margin-bottom: 16px;
  margin-top: 32px;
}

.el_lv4Heading_center {
  border-bottom: unset;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--col-orange-38);
  margin-top: 80px;
  margin-bottom: 32px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 見出し サブ */
.el_subHeading.hp_bcgCol {
  color: var(--col-offWhite);
  font-weight: 600;
  line-height: 100%;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--col-bcgSubheading);
}

/* 囲みつきテキスト */
.bl_textBox {
  letter-spacing: .05em;
  line-height: 1.9;
  padding: 20px;
}

.bl_textBox__beige {
  background-color: var(--col-bcg__text);
}

.bl_textBox__white {
  background-color: var(--col-white);
  letter-spacing: unset;
  line-height: 1.4;
  padding: 24px 16px;
}


/* テーブル */
.bl_table2Col th,
.bl_table2Col td {
  border-bottom: solid 1px var(--col-line__dark);
  line-height: 2;
  padding: 20px 0;
  vertical-align: middle;
}

.bl_table2Col th {
  width: 30%;
}

/* GoogleMap */
/* 11:10 */
.bl_iframeBox {
  height: 0;
  overflow: hidden;
  padding-bottom: 90.9%;
  position: relative;
  width: 100%;
}

.bl_iframeBox iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* インデント */
.bl_indentBox {
  margin-left: 50px;
  width: calc(100% - 50px);
}

/* メディアボックス */
.bl_media {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 60px;
  justify-content: flex-start;
}

.el_media_imgWrapper {
  height: 146px;
  width: 150px;
}

.el_media_imgWrapper img {
  aspect-ratio: 150 / 146;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.bl_media p {
  width: calc(100% - 60px - 150px);
}

/* 外部リンクテキスト */
.el_exLink {
  text-decoration: underline;
}

.el_exLink:hover,
.el_exLink:active {
  font-weight: 700;
}

.el_exLink::after {
  content: '\f35d';
  font-family: 'Font Awesome 5 Free';
  font-size: 12px;
  font-weight: 900;
  margin-left: 4px;
  margin-right: 6px;
  vertical-align: top;
}

/* 順序なしリスト */
.bl_bulletList {
  margin-left: 1em;
}

.bl_bulletList__small {
  margin-left: 0;
}

.bl_bulletList>li {
  margin-bottom: 24px;
  padding-left: 1.5em;
  position: relative;
}

.bl_bulletList.bl_bulletList__small>li {
  margin-bottom: 1em;
}

.bl_bulletList.bl_bulletList__small>li:last-child {
  margin-bottom: 0;
}

.bl_bulletList>li::before {
  background-color: var(--col-deco);
  border-radius: 50%;
  content: '';
  display: block;
  height: 10px;
  left: 0;
  position: absolute;
  top: .5em;
  width: 10px;
}

.bl_bulletList>li span {
  font-weight: 700;
}

/* 順序ありリスト　乾燥工程リスト */
.bl_orderList.bl_stepList {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 40px 32px;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  counter-reset: step-counter;
}

.bl_orderList.bl_stepList>li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.bl_orderList.bl_stepList>li .hp_bold {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.bl_orderList.bl_stepList>li .hp_bold::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  display: flex;
  width: 24px;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 50%;
  background: var(--col-line__light);
  color: var(--col-markerTxt);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 100%;
}

.bl_stepItemBody {
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.bl_orderList.bl_stepList>li img {
  aspect-ratio: 15 / 11;
  width: 420px;
  height: 308px;
}

/* 画像ボックス */
.bl_imgBox {
  margin: 0;
  padding: 0 0 0 2.5em;
  width: 100%;
}

.bl_imgFlexBox {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.el_imgWrapper {
  height: 255px;
  margin: 0;
  padding: 0;
  width: 400px;
}

.el_imgWrapper__shadow {
  box-shadow: 3px 3px var(--col-boxShadow);
}

.el_imgWrapper img {
  aspect-ratio: 80 / 51;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* 採用情報　右カラム */
.bl_box_recruit.bl_box_r {
  padding: 20px;
  background: var(--col-bcg__text);
}

/* 採用情報　吹き出し */
.bl_balloon_col {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 16px;
}

.el_balloon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 160%;
  font-family: var(--font-mplus1);
  position: relative;
}

.el_balloon.hp_orange {
  background: var(--col-balloon);
  color: var(--col-white);
}

.el_balloon.hp_orange.hp_cornRight::after {
  content: '';
  position: absolute;
  right: -29px;
  top: 50%;
  width: 44px;
  height: 24px;
  background-color: #f1903d;
  clip-path: polygon(44px 50%, 0% 0%, 0% 24px);
  transform: translateY(-50%);
}

/* 採用情報CTA */
.ly_ctaRecruit {
  display: flex;
  width: 100%;
  padding: 32px 0;
  margin-top: 80px;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--col-font);
  border-bottom: 1px solid var(--col-font);
}

.bl_ctaRecruitInner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 120px;
}

@media screen and (max-width:960px) {
  .bl_ctaRecruitInner {
    gap: 80px;
  }
}

.bl_btnWrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  z-index: 0;
}

.bl_btn_cta {
  display: flex;
  min-width: 228px;
  padding: 8px 40px;
  justify-content: space-between;
  align-items: center;
  border-radius: 999px;
  background: var(--col-bcgBtn);
  z-index: 1;
  transition: all 1s ease;
}

.bl_btn_cta:hover {
  background: var(--col-bcgBtnHover);
}

.el_btnTxt {
  color: var(--col-white);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width:960px) {
  .el_btnTxt {
    font-size: 16px;
  }
}

.bl_btn_cta::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url('../img/common/icon_arrow_tri_r.svg');
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 1s ease;
}

@media screen and (max-width:960px) {
  .bl_btn_cta::after {
    width: 20px;
    height: 20px;
  }
}

.bl_btn_cta:hover::after {
  transform: translateX(9px);
}

.bl_telWrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.bl_telWrapper .el_contactName {
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: right;
}

@media screen and (max-width:960px) {
  .bl_telWrapper .el_contactName {
    font-size: 2rem;
  }
}

.bl_telNum {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width:960px) {
  .bl_telNum img {
    width: 36px;
    height: 36px;
  }
}


.bl_ctaTel {
  color: var(--col-bcgSubheading);
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 100%;
}

@media screen and (max-width:960px) {
  .bl_ctaTel {
    font-size: 4.8rem;
  }
}

/* フォントサイズ */
.hp_fsLarge {
  font-size: 1.8rem;
}

/* フォントウェイト */
.hp_bold {
  font-weight: 700;
}

/* ボトムの余白 */
.hp_mb24 {
  margin-bottom: 24px;
}

.hp_mb60 {
  margin-bottom: 60px;
}

/* ページ内リンクの位置調整 */
.hp_anchor {
  margin-top: -90px;
  padding-top: 90px;
}

/* - - - - - - - - - - - - - - -
  フッター
- - - - - - - - - - - - - - - - */
.ly_footer {
  background-color: var(--col-bcg__main);
  border-top: 1px solid var(--col-line__light);
  height: 60px;
  width: 100%;
}

.ly_footer_inner {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 20px 30px;
}

/* --------------------------------------------------
  タブレット
-------------------------------------------------- */
@media screen and (max-width: 768px) {

  /* お問い合わせ */
  .bl_addressInner {
    background-color: unset;
    padding: 0;
    width: unset;
  }

  .bl_headerContactTtl,
  .bl_headerContactNum {
    display: none;
  }

  /* 電話・FAX */
  .bl_headerContact {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-end;
  }

  .bl_headerContactUnits {
    align-items: center;
    background-color: var(--col-cti);
    border-radius: 4px;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 4px;
    width: 40px;
  }

  .bl_headerContactUnits i {
    font-size: 32px;
  }

  /* - - - - - - - - - - - - - - -
  ヘッダー
- - - - - - - - - - - - - - - - */
  .ly_header_inner {
    padding: 20px 40px;
  }

  /* h1見出し */
  .ly_header h1 {
    height: 30px;
    width: 339px;
  }

  /* お問い合わせ */
  .bl_headerContactTtl {
    font-size: 15px;
  }

  /* - - - - - - - - - - - - - - -
  メインコンテンツ
- - - - - - - - - - - - - - - - */
  .ly_main_inner {
    padding: 150px 0 0;
  }

  /* コンテンツセクション */
  .bl_sectionInner {
    max-width: unset;
    padding: 100px 0 140px 0;
    width: 90%;
  }

  /* 見出し・要素・テーブルのレイアウト */
  .bl_gridWrapper {
    gap: 30px 0;
    grid-template-areas: 'gr_1'
      'gr_2'
      'gr_3';
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
  }

  /* 見出し h2 */
  .el_lv2Heading {
    font-size: 4.2rem;
  }

  .hp_imgWhite::after,
  .hp_imgBeige::after {
    left: 44px;
  }

  .el_lv2Heading span {
    transform: translateY(0);
  }

  /* 見出し h3 */
  .el_lv3Heading {
    font-size: 2.8rem;
    margin: 80px 0 60px;
  }

  .el_lv3Heading::before {
    margin: 0 18px 0 0;
  }

  .el_lv3Heading_center {
    font-size: 3.6rem;
  }

  /* 見出し h4 */
  .el_lv4Heading_center {
    font-size: 1.8rem;
  }

  /* 囲みつきテキスト */
  .bl_textBox {
    width: 100%;
  }

  /* テーブル */
  .bl_table2Col {
    margin-bottom: 50px;
    width: 100%;
  }

  /* 外部リンクテキスト */
  .el_exLink::after {
    font-size: 10px;
  }

  /* 画像ボックス */
  .bl_imgFlexBox {
    gap: 8px;
  }

  .el_imgWrapper {
    height: 190px;
    width: 267px;
  }

  /* フォントサイズ */
  .hp_fsLarge {
    font-size: 1.6rem;
  }

  /* 採用情報CTA */
  .bl_ctaRecruitInner {
    flex-direction: column;
    gap: 36px;
  }

  .bl_btnWrapper {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .bl_btn_cta {
    min-width: 200px;
    padding: 8px 30px;
  }

  .bl_telWrapper {
    justify-content: center;
    align-items: center;
  }

  .bl_telWrapper .el_contactName {
    text-align: center;
  }
}

/* --------------------------------------------------
  スマホ
-------------------------------------------------- */
@media screen and (max-width: 480px) {

  /* - - - - - - - - - - - - - - -
  コンテナ
- - - - - - - - - - - - - - - - */
  .container {
    font-size: 1.4rem;
  }

  /* - - - - - - - - - - - - - - -
  ヘッダー
- - - - - - - - - - - - - - - - */
  .ly_header_inner {
    height: 128px;
    padding: 10px 10px;
    gap: 0 16px;
  }

  /* h1見出し */
  .ly_header h1 {
    height: 24px;
    width: 271px;
  }

  /* グローバルナビ */
  .bl_globalNav {
    gap: 16px;
  }

  .bl_navItem {
    font-size: 16px;
  }

  /* お問い合わせ */
  /* 電話・FAX */
  .bl_headerContact {
    gap: 12px;
  }

  .bl_headerContactUnits {
    align-items: center;
    background-color: var(--col-cti);
    border-radius: 4px;
    display: flex;
    height: 36px;
    justify-content: center;
    padding: 4px;
    width: 36px;
  }

  .bl_headerContactUnits i {
    font-size: 28px;
  }

  /* - - - - - - - - - - - - - - -
  メインコンテンツ
- - - - - - - - - - - - - - - - */
  .ly_main_inner {
    padding: 120px 0 0;
  }

  /* コンテンツセクション */
  .bl_sectionInner {
    padding: 60px 0 120px;
  }

  /* 画像ボックス */
  .bl_imgFlexBox {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* 見出し・要素・テーブルのレイアウト */
  .bl_gridWrapper {
    gap: 20px 0;
  }

  /* 見出し h2 */
  .el_lv2Heading {
    font-size: 2.4rem;
  }

  .hp_imgWhite::after,
  .hp_imgBeige::after {
    height: 70px;
    left: 18px;
    width: 60px;
  }

  /* 見出し h3 */
  .el_lv3Heading {
    font-size: 2.4rem;
    margin: 60px 0 40px;
  }

  .el_lv3Heading::before {
    margin: 0 10px 0 0;
    width: 20px;
  }

  .el_lv3Heading_center {
    font-size: 2.8rem;
  }

  /* 見出し h4 */
  .el_lv4Heading_small {
    margin-bottom: 8px;
    margin-top: 24px;
  }

  .el_lv4Heading_center {
    font-size: 1.6rem;
  }

  /* 囲みつきテキスト */
  .bl_textBox {
    line-height: 1.7;
  }

  /* インデント */
  .bl_indentBox {
    margin-left: 20px;
    width: calc(100% - 20px);
  }

  /* メディアボックス */
  .bl_media {
    align-items: center;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
  }

  /* 画像ボックス */
  .bl_imgFlexBox {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }

  .bl_media p {
    width: 100%;
  }

  /* 行間 */
  .hp_lhLarge {
    line-height: 1.6;
  }

  /* 採用情報 */
  .bl_box_recruit {
    margin-top: 48px;
  }

  .bl_balloon_col {
    gap: 20px;
    flex-direction: column;
    margin-top: 24px;
  }

  .el_balloon.hp_orange.hp_cornRight::after {
    top: unset;
    transform: rotate(120deg);
    bottom: -16px;
    right: 20px;
  }

  .bl_orderList.bl_stepList>li img {
    width: 100%;
    height: auto;
  }

  /* 採用情報CTA */
  .bl_ctaRecruitInner {
    gap: 36px;
  }

  .bl_btnWrapper {
    gap: 24px;
  }

  .bl_btn_cta {
    min-width: 200px;
    padding: 8px 30px;
  }

  .bl_telWrapper {
    gap: 8px
  }

  .bl_telWrapper .el_contactName {
    text-align: center;
  }

  .bl_telNum {
    gap: 8px;
  }

  .bl_telNum img {
    width: 24px;
    height: 24px;
  }

  .bl_ctaTel {
    font-size: 3.2rem;
  }

  .bl_telWrapper .el_contactName {
    font-size: 1.8rem;
  }
}


/* --------------------------------------------------
  最小サイズ
-------------------------------------------------- */
@media screen and (max-width: 320px) {

  /* - - - - - - - - - - - - - - -
  ヘッダー
- - - - - - - - - - - - - - - - */
  .ly_header_inner {
    height: 100px;
  }

  /* h1見出し */
  .ly_header h1 {
    height: 16px;
    width: 181px;
  }

  /* 電話・FAX */
  .bl_headerContact {
    gap: 4px;
  }

  .bl_headerContactUnits {
    width: 32px;
  }

  .bl_headerContactUnits i {
    font-size: 20px;
  }

  /* - - - - - - - - - - - - - - -
  メインコンテンツ
- - - - - - - - - - - - - - - - */
  .ly_main_inner {
    padding: 50px 0 0;
  }

  /* コンテンツセクション */
  .bl_sectionInner {
    padding: 40px 0 100px;
  }

  /* 見出し h3 */
  .el_lv3Heading {
    font-size: 2.2rem;
    margin: 50px 0 20px;
  }

  /* 見出し h4 */
  .el_lv4Heading {
    font-size: 1.8rem;
  }

  /* 画像ボックス */
  .bl_imgBox {
    padding: 0;
  }

  .el_imgWrapper {
    height: 171px;
    width: 240px;
  }
}