@charset "UTF-8";
/* リセット */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  font-style: normal;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

a,
button {
  cursor: revert;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-inline-size: 100%;
  max-block-size: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
       user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  line-break: after-white-space;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

:where(figure,
h1, h2, h3, h4, h5, h6) {
  margin: 0;
}

:where(ul, ol, dl) {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

/* ----------------------------------------
   基本設定
---------------------------------------- */
html {
  font-size: 62.5%; /* 1em -> 10px */
}

body {
  color: #0F1419;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  line-height: 2;
  font-family: "Lato", "Noto Sans JP", "YuGothic", "Yu Gothic Medium", "Hiragino Kaku Gothic Pro", "Meiryo", "MS PGothic", sans-serif;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
@media print {
  body {
    width: 210mm;
    height: 251mm;
    page-break-after: always;
  }
}

/* ----------------------------------------
   リンク設定
---------------------------------------- */
a:has(img, figure) {
  transition: all 0.4s ease-in-out;
}
a:has(img, figure):hover {
  opacity: 0.8;
}

a:has(div) {
  transition: all 0.4s ease-in-out;
}
a:has(div):hover {
  opacity: 0.8;
}

a:not(:has(*)) {
  color: #0F1419;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
a:not(:has(*)):hover {
  opacity: 0.8;
  color: #2066AC;
}

/* ----------------------------------------
   段落・リスト
---------------------------------------- */
:where(p) {
  margin: 0 0 1em 0;
}

dl :where(dt, dd) {
  padding: 0;
  margin: 0;
}

/* ----------------------------------------
   高さの最低値
---------------------------------------- */
main {
  min-height: calc(100vh - 260px - 130px);
}

/* ----------------------------------------
   タイトル設定
---------------------------------------- */
:where(h1, h2, h3, h4, h5, h6) {
  line-height: 1.5;
  color: #2066AC;
}

:where(h4, h5, h6) {
  font-size: 1.4em;
}

/* ----------------------------------------
   改行ユーティリティ
---------------------------------------- */
.pcbr {
  display: block;
}
@media screen and (max-width: 767px) {
  .pcbr {
    display: none;
  }
}

.spbr {
  display: none;
}
@media screen and (max-width: 767px) {
  .spbr {
    display: block;
  }
}

.br--mobile-up {
  display: none;
}
@media screen and (max-width: 767px) and (min-height: 896px) {
  .br--mobile-up {
    display: block;
  }
}

.br--tablet {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .br--tablet {
    display: block;
  }
}

.br--menu-fit {
  display: none;
}
@media screen and (max-width: 1320px) {
  .br--menu-fit {
    display: block;
  }
}

.br--top {
  display: none;
}
@media screen and (max-width: 1247px) {
  .br--top {
    display: block;
  }
}

.br--content {
  display: none;
}
@media screen and (max-width: 1100px) {
  .br--content {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .br--content {
    display: none;
  }
}

.br--content-up {
  display: none;
}
@media screen and (min-width: 1101px) {
  .br--content-up {
    display: block;
  }
}

.br--print {
  display: none;
}
@media print {
  .br--print {
    display: block;
  }
}

.br--768-up {
  display: none;
}
@media screen and (min-width: 768px) {
  .br--768-up {
    display: block;
  }
}

.br--768-800 {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 800px) {
  .br--768-800 {
    display: block;
  }
}

.br--440 {
  display: none;
}
@media screen and (max-width: 440px) {
  .br--440 {
    display: block;
  }
}

/* =========================================================
   PC Header
========================================================= */
.l-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* SPでは非表示 */
}
.l-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2rem;
}
.l-header__nav-list {
  display: flex;
  gap: 5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__nav-list a {
  text-decoration: none;
  color: #0f1419;
  font-weight: 500;
}
.l-header__nav-list a.is-current {
  color: #2066ac;
}
.l-header__nav-list a.is-accent {
  color: #fe190d;
  font-weight: 700;
}
@media screen and (max-width: 1100px) {
  .l-header {
    display: none;
  }
}

h1.l-header__logo {
  max-width: 300px;
}

/* =========================================================
   SP Header
========================================================= */
.l-header-sp {
  display: none;
}
@media screen and (max-width: 1100px) {
  .l-header-sp {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: #fff;
  }
  .l-header-sp__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
  }
  .l-header-sp__logo img {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 1100px) and (max-width: 440px) {
  .l-header-sp__logo img {
    width: 90%;
  }
}
.l-header-sp h1.l-header-sp__logo {
  width: 75%;
  max-width: 300px;
}

/* =========================================================
   Hamburger Button
========================================================= */
.c-hamburger {
  width: 28px;
  height: 22px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1100;
}
.c-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fe190d;
  border-radius: 2px;
  transition: 0.3s;
}
.c-hamburger span:nth-child(1) {
  top: 0;
}
.c-hamburger span:nth-child(2) {
  top: 9px;
}
.c-hamburger span:nth-child(3) {
  bottom: 0;
}

li.l-header__nav-item {
  font-size: 2rem;
}

.l-footer {
  position: relative;
  bottom: 0;
  left: 0;
  background: #F7F7F7;
  width: 100%;
  padding: 3.2rem 0 1.2rem 0;
}
.l-footer__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  gap: 5vw;
  padding: 0 2rem;
}
@media screen and (max-width: 1100px) {
  .l-footer__inner {
    justify-content: space-between;
  }
}
.l-footer__brand {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  min-width: 200px;
}
@media screen and (max-width: 1100px) {
  .l-footer__brand {
    flex: 0 0 500px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__brand {
    flex: 0 0 200px;
    height: auto;
  }
}
.l-footer__logo {
  max-width: 350px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1100px) {
  .l-footer__logo {
    max-width: 250px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    max-width: 200px;
    height: auto;
  }
}
.l-footer__corp-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.2em;
  letter-spacing: 0.03em;
}
.l-footer__address {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.7;
  text-align: left;
}
.l-footer__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 3vw;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .l-footer__nav {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    flex-direction: row;
    justify-content: center;
  }
}
.l-footer__nav-group {
  list-style: none;
  padding: 0;
  margin: 0 2rem 0 0;
  min-width: 120px;
  text-align: left;
}
.l-footer__nav-group li {
  margin-bottom: 0.4em;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-group li {
    font-size: 1.4rem;
  }
}
.l-footer__nav-group li a {
  color: #0F1419;
  text-decoration: none;
  transition: color 0.2s;
}
.l-footer__nav-group li a:hover {
  opacity: 0.75;
}
.l-footer__nav-group li a.is-accent {
  color: #FE190D;
  font-weight: 700;
}
.l-footer__nav-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.6em;
  letter-spacing: 0.08em;
}
.l-footer__copyright {
  display: block;
  margin: 2.2rem auto 0 auto;
  text-align: right;
  font-size: 1.1rem;
  color: #888;
  max-width: 1100px;
  padding: 0 2rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
    padding: 0 1rem;
  }
  .l-footer__brand {
    min-width: 0;
    margin: 0 auto;
  }
  .l-footer__nav {
    gap: 0rem;
  }
  .l-footer__nav-group {
    margin: 0 0 0.5rem 0;
  }
  .l-footer__copyright {
    padding: 0 1rem;
    text-align: center;
  }
}

/* =========================================================
   SP Menu Panel（三角背景＋中身）
========================================================= */
.p-spmenu {
  position: fixed;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 1000;
}
.p-spmenu.is-active {
  visibility: visible;
  opacity: 1;
}
.p-spmenu__bg {
  background: #fe190d;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.p-spmenu__content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  display: flex;
  justify-content: flex-start;
  width: 90%;
  z-index: 2;
  flex-wrap: wrap;
}
.p-spmenu__offices {
  font-size: 1.8rem;
  line-height: 1.6;
}
.p-spmenu__offices small {
  display: block;
  font-size: 1.6rem;
  opacity: 0.8;
}
.p-spmenu__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-spmenu__nav li {
  margin-bottom: 1.2rem;
}
.p-spmenu__nav li:last-child a {
  color: #2066ac;
  font-weight: 700;
}
.p-spmenu__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 2.2rem;
}
.p-spmenu__close {
  position: absolute;
  right: 15%;
  top: 49%;
  transform: translateY(-50%);
  font-size: 6rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* =========================================================
   三角ハンバーガーボタン
========================================================= */
.c-hamburger {
  position: relative;
  width: 110px;
  height: 85px;
  background: #fe190d;
  clip-path: polygon(50% 0, 100% 100%, 0 100%); /* 正三角形 */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}
@media screen and (max-width: 440px) {
  .c-hamburger {
    width: 80px;
    height: 60px;
  }
}
.c-hamburger span {
  position: absolute;
  width: 35px;
  height: 5px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.c-hamburger span:nth-child(1) {
  top: 50%;
}
.c-hamburger span:nth-child(2) {
  top: 63.5%;
}
.c-hamburger span:nth-child(3) {
  bottom: 15%;
}
.c-hamburger.is-active {
  display: none;
}

.p-spmenu__offices,
.p-spmenu__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ハンバーガーメニュー全体 */
.p-spmenu {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.4s ease;
  z-index: 1000;
}
.p-spmenu.is-active {
  visibility: visible;
  opacity: 1;
}
.p-spmenu__bg {
  position: absolute;
  inset: 0;
  background: #fe190d;
  clip-path: polygon(0 0, 88% 50%, 0 100%);
  z-index: 1;
}
.p-spmenu__content {
  z-index: 2;
  color: #fff;
}

.wrapper, .wrapper-top {
  width: 100%;
  max-width: 1100px;
  padding: 0 16px;
  margin: 0 auto;
}
.wrapper-top {
  max-width: 1248px;
}

@media screen and (max-width: 767px) {
  .sp-hidden {
    display: none;
  }
}

.pc-hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-hidden {
    display: initial;
  }
}

.box_row {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .box_row {
    flex-direction: column;
    justify-content: initial;
  }
}
.box_row--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1247px) {
  .box_row--reverse {
    flex-direction: column;
  }
}
.box_row-left, .box_row-right {
  width: 50%;
}
.box_row-top {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 100px;
  margin: 0 auto;
}
@media screen and (max-width: 1247px) {
  .box_row-top {
    justify-content: initial;
    flex-direction: column;
    gap: 0;
    margin: 0 auto;
  }
}
.box_column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.grid_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .grid_row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid_row-left {
  width: 315px;
  padding-right: 16px;
}
@media screen and (max-width: 767px) {
  .grid_row-left {
    padding-right: 0;
  }
}
.grid_row-right {
  width: 315px;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .grid_row-right {
    padding-left: 0;
  }
}

.content__top-txt {
  color: rgba(35, 24, 21, 0.8);
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.03em;
  text-align: justify;
  margin: 0;
}

.list__box--check {
  padding: 16px;
}
.list__item--check {
  position: relative;
  padding-left: 28px;
}
.list__item--check::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../img/common/check-orange-icon.svg) no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .list__item--check::before {
    top: 3px;
    transform: translateY(0);
  }
}

.c-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.c-title__en {
  font-size: 3.2rem;
  color: #2066AC;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-bottom: #2066AC solid 5px;
  margin: 0 0 30px 0;
}
.c-title__ja {
  font-size: 4rem;
  font-weight: 700;
  color: #0F1419;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-title {
    margin-bottom: 3rem;
  }
  .c-title__en {
    font-size: 2.8rem;
    line-height: 1.2;
    padding-bottom: 1.5rem;
    margin: 0 0 10px 0;
  }
  .c-title__ja {
    font-size: 3.2rem;
  }
}

.c-corporate-message__header {
  position: relative;
  display: inline-block;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.c-title {
  text-align: center;
  margin-bottom: 4rem;
}
.c-title__en {
  font-size: 4.2rem;
  letter-spacing: 0.1em;
  color: #2066ac;
  font-weight: bold;
  display: inline;
}
@media screen and (max-width: 550px) {
  .c-title__en {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 440px) {
  .c-title__en {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 374px) {
  .c-title__en {
    font-size: 2.8rem;
  }
}
.c-title__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-title__inner {
    margin-top: 5rem;
  }
}
.c-title__ja {
  font-size: 3.8rem;
  font-weight: 700;
  color: #0f1419;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    font-size: 3.2rem;
    margin-top: 3rem;
  }
}
.c-title__icon {
  width: 60px;
  height: 60px;
}
.c-title__icon-track {
  width: 100px;
  height: 60px;
}

.c-title__sub {
  font-size: 2.8rem;
  font-weight: 500;
  color: #0F1419;
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-title__sub {
    font-size: 2rem;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 374px) {
  .c-title__sub {
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }
}

.p-recruit, .p-contact, .p-policy {
  text-align: center;
  background-color: #fff;
  color: #0f1419;
}
.p-recruit .c-title, .p-contact .c-title, .p-policy .c-title {
  margin-bottom: 6rem;
  text-align: center;
  display: table;
}
.p-recruit .c-title .c-title__en,
.p-recruit .c-title .c-title__ja, .p-contact .c-title .c-title__en,
.p-contact .c-title .c-title__ja, .p-policy .c-title .c-title__en,
.p-policy .c-title .c-title__ja {
  text-align: center;
  margin: 0 auto;
}
.p-recruit .c-title .c-title__inner, .p-contact .c-title .c-title__inner, .p-policy .c-title .c-title__inner {
  justify-content: center;
}

.arrow__icon {
  width: 28px;
  height: 23px;
  display: flex;
  align-items: center;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
  transform: translateY(1px);
}

#page-top {
  position: fixed;
  right: 20px;
  bottom: 0px;
  width: 60px;
  height: 60px;
  background: url("../img/arrow.svg") no-repeat center center;
  transform: rotate(-90deg);
  background-size: contain;
  z-index: 999;
  cursor: pointer;
}
#page-top.hide-btn {
  display: none;
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: end;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  line-height: 1;
  z-index: 1;
  transform: rotate(90deg);
  padding-bottom: 5px;
}

/* =========================================================
   Info Card（採用・お問い合わせ 共通カード）
========================================================= */
.c-info-card {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #0f1419;
  background-color: #deeaf7;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  text-decoration: none;
}
.c-info-card--recruit {
  background-color: #deeaf7;
}
.c-info-card--recruit:hover {
  background-color: rgb(201.4756097561, 220.9390243902, 242.0243902439);
}
.c-info-card--contact {
  background-color: #f7dbd7;
}
.c-info-card--contact:hover {
  background-color: rgb(242.75, 199.875, 193.75);
}
.c-info-card__body {
  text-align: center;
}
.c-info-card__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2066ac;
  margin-bottom: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
@media screen and (max-width: 767px) {
  .c-info-card__title {
    font-size: 2.8rem;
  }
}
.c-info-card__arrow img {
  width: 12px;
  height: 12px;
  display: inline-block;
}
.c-info-card__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-info-card {
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 3rem 1.5rem;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 0.8;
  }
}

/* =========================================================
   Info（採用・お問い合わせ 2枚構成）
========================================================= */
.p-info__inner {
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.p-info__inner.is-reverse {
  flex-direction: row-reverse;
}
.p-info__inner .c-info-card__body {
  flex: 0 0 80%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-info__inner .p-info__gallery {
  flex: 1 1 60%;
  min-width: 0;
  display: flex;
}
.p-info__inner .p-info__gallery img {
  flex: 1 1 0;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  min-width: 0;
  min-height: 0;
}
@media (max-width: 767px) {
  .p-info__inner {
    flex-direction: column;
    position: relative;
  }
  .p-info__inner .c-info-card__body,
  .p-info__inner .p-info__gallery {
    max-width: 100%;
    width: 100%;
    flex: 0 0 80%;
    text-align: center;
  }
  .p-info__inner .p-info__gallery {
    flex-wrap: wrap;
  }
  .p-info__inner .p-info__gallery img {
    width: 48%;
  }
}

/* =========================================================
   Info Single（画像1枚＋テキストカード）
========================================================= */
.p-info-single {
  margin-top: 8rem;
}
.p-info-single__inner {
  display: flex;
  align-items: stretch;
  height: 330px;
  justify-content: space-between;
  gap: 0;
  margin: 0 auto;
  min-width: 0;
}
.p-info-single__inner.is-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-info-single__inner.is-reverse {
    flex-direction: column;
    margin-bottom: 30rem;
  }
}
.p-info-single__image {
  flex: 1 1 60%;
}
.p-info-single__image img {
  width: 100%;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-info-single .p-info-single .c-info-card__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #0f1419;
  margin: 0 auto;
  width: 80%;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-info-single .p-info-single .c-info-card__text {
    font-size: 1.6rem;
    line-height: 1.9;
  }
}
.p-info-single .c-info-card {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 auto;
  width: 90%;
  font-weight: 700;
  text-align: justify;
}
.p-info-single .c-info-card__body {
  padding: 4rem 2rem;
}
.p-info-single .c-info-card__title {
  font-size: 2.8rem;
  color: #2066ac;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.p-info-single .c-info-card__title img {
  width: 12px;
  height: 12px;
}
.p-info-single .c-info-card--recruit {
  background-color: #deeaf7;
}
.p-info-single .c-info-card--contact {
  background-color: #f7dbd7;
}
.p-info-single .c-info-card .c-info-card__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #0f1419;
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .p-info-single__image {
    order: -1;
  }
  .p-info-single__image img {
    width: 100%;
    height: 300px;
  }
  .p-info-single .c-info-card {
    width: 100%;
    border-radius: 0;
    padding: 3rem 1.5rem;
  }
  .p-info-single .c-info-card__title {
    font-size: 2.2rem;
  }
  .p-info-single .c-info-card .c-info-card__text {
    font-size: 1.6rem;
    line-height: 1.9;
  }
}
.p-info-single .p-info-single__inner.is-reverse {
  flex-direction: column;
}

/* =========================================================
   Feature Single Card（特徴/部門説明カード）
========================================================= */
.p-info-feature__inner {
  height: 330px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  margin: 0 auto;
  min-width: 0;
}
.p-info-feature__inner.is-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-info-feature__inner {
    flex-direction: column;
    margin: 0 auto 35rem;
  }
}
.p-info-feature__image {
  flex: 1 1 60%;
  display: flex;
}
.p-info-feature__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .p-info-feature__image img {
    height: 300px;
  }
}

/* =========================================================
   c-info-feature-card：1枚構成の特徴カード
========================================================= */
.c-info-feature-card {
  flex: 1 1 40%;
  background-color: #deeaf7;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.c-info-feature-card .c-info-feature-card__body {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding: 4rem 2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #0f1419;
}
@media screen and (max-width: 1100px) {
  .c-info-feature-card .c-info-feature-card__body {
    padding: 0.5rem;
  }
}
.c-info-feature-card .c-info-feature-card__body .c-info-feature-card__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #0f1419;
  margin: 0 auto;
  width: 100%;
  text-align: justify;
}
@media screen and (max-width: 1100px) {
  .c-info-feature-card .c-info-feature-card__body .c-info-feature-card__text {
    line-height: 1.4;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-info-feature-card {
    width: 100%;
    border-radius: 0;
    padding: 3rem 1.5rem;
  }
  .c-info-feature-card .c-info-feature-card__body {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.9;
    padding: 2rem 0.5rem;
  }
  .c-info-feature-card .c-info-feature-card__body .c-info-feature-card__text {
    font-size: 1.8rem;
    line-height: 1.9;
    width: 100%;
  }
}

.p-company-links {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 800px;
  padding: 2rem 1rem;
  background: #fff;
  padding-top: var(--header-height);
}
@media screen and (max-width: 767px) {
  .p-company-links {
    height: 600px;
    align-items: end;
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 440px) {
  .p-company-links {
    display: flex;
    height: 900px;
    align-items: end;
  }
}
.p-company-links__list {
  display: flex;
  gap: 8rem;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media screen and (max-width: 1100px) {
  .p-company-links__list {
    gap: 2rem;
  }
}
@media screen and (max-width: 440px) {
  .p-company-links__list {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-company-links__item {
  width: 33.3333333333%;
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s;
  cursor: pointer;
  list-style: none;
}
@media screen and (max-width: 1100px) {
  .p-company-links__item {
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-company-links__item {
    max-width: 150px;
  }
}
@media screen and (max-width: 550px) {
  .p-company-links__item {
    max-width: 130px;
  }
}
.p-company-links__item:hover {
  transform: scale(1.05);
}
.p-company-links__link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
.p-company-links__image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width: 440px) {
  .p-company-links__image {
    width: 330px;
    height: 150px;
  }
}
.p-company-links__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-company-links__label {
  margin-top: 1rem;
  font-size: 2.4rem;
  font-weight: bold;
  color: #333;
}

@media screen and (max-width: 768px) {
  .p-company-links__list {
    gap: 2rem;
  }
}
.p-company-links__item {
  width: 100%;
}
@media screen and (max-width: 440px) {
  .p-company-links__item {
    max-width: 100%;
  }
}

/* =========================================================
  Component: Corporate Message
  ========================================================= */
.c-corporate-message {
  margin: 15rem auto;
  padding: 0 1rem;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .c-corporate-message {
    width: 85%;
  }
}

.c-corporate-message__list-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  .c-corporate-message__list-row {
    margin: 1.5rem;
    gap: 0rem;
    align-items: center;
  }
}

.c-corporate-message__acronym,
.c-corporate-message__meanings {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  width: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  flex: 0 0 auto;
}

.c-corporate-message__acronym li,
.c-corporate-message__meanings li {
  min-height: 2.5em;
  display: flex;
  align-items: center;
}

.c-corporate-message__acronym li {
  font-size: 2.1rem;
  font-weight: 900;
  color: #2066AC;
  text-align: right;
  letter-spacing: 0.14em;
  justify-content: center;
  padding-right: 0.4em;
}
@media screen and (max-width: 767px) {
  .c-corporate-message__acronym li {
    font-size: 2.4rem;
    padding-right: 0em;
  }
}
@media screen and (max-width: 550px) {
  .c-corporate-message__acronym li {
    font-size: 2rem;
  }
}
@media screen and (max-width: 440px) {
  .c-corporate-message__acronym li {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 374px) {
  .c-corporate-message__acronym li {
    font-size: 1.4rem;
  }
}

.c-corporate-message__meanings li {
  font-size: 2.1rem;
  font-weight: 900;
  text-align: right;
  letter-spacing: 0.14em;
  justify-content: flex-start;
  padding-right: 0.4em;
}
@media screen and (max-width: 767px) {
  .c-corporate-message__meanings li {
    font-size: 2.4rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 550px) {
  .c-corporate-message__meanings li {
    font-size: 2rem;
  }
}
@media screen and (max-width: 440px) {
  .c-corporate-message__meanings li {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 374px) {
  .c-corporate-message__meanings li {
    font-size: 1.4rem;
  }
}

.c-corporate-message__arrow {
  margin-right: 0.4em;
  width: 1em;
  height: 0.8em;
  vertical-align: middle;
  display: inline-block;
}

.c-corporate-message__lead {
  display: block;
  width: 80%;
  text-align: center;
  margin: 4rem auto; /* 中央寄せ */
  font-size: 2.1rem;
  color: #222;
  letter-spacing: 0.03em;
  line-height: 1.8;
  font-weight: 700;
  /* ===== タイトル部分 ===== */
  /* ===== テキスト部分 ===== */
}
@media screen and (max-width: 767px) {
  .c-corporate-message__lead {
    display: block;
    width: 75%;
    padding: 0 0.5rem;
    margin: 8rem auto;
    font-size: 1.6rem;
    transform: none;
    left: 0;
  }
}
.c-corporate-message__lead__title {
  position: relative;
  text-align: center;
  font-weight: 700;
  margin: 3rem auto;
  color: #0f1419;
}
.c-corporate-message__lead__title::before, .c-corporate-message__lead__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px; /* 線の長さ */
  height: 1px;
  background-color: #0f1419;
  transform: translateY(-50%);
}
.c-corporate-message__lead__title::before {
  left: -80px;
}
@media screen and (max-width: 767px) {
  .c-corporate-message__lead__title::before {
    width: 30px;
  }
}
.c-corporate-message__lead__title::after {
  right: -80px;
}
@media screen and (max-width: 767px) {
  .c-corporate-message__lead__title::after {
    width: 30px;
  }
}
.c-corporate-message__lead__text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-top: 2.4rem;
  line-height: 1.8;
}

.c-corporate-message__logo-row {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-corporate-message__logo-row {
    width: 100%;
  }
}

/* =========================================================
   Mainvisual (ヘッダー下で高さ調整)
========================================================= */
.mainvisual {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.mainvisual img {
  width: 100%;
  height: calc(100vh - var(--header-height));
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* JSで取得したヘッダー高さを反映する変数 */
:root {
  --header-height: 0px;
}

/* =========================================================
   Intro Section
========================================================= */
.p-intro {
  background-color: #fff;
  text-align: center;
  margin: 18rem 0 15rem;
  /* ----------------------------------------
     共通リスト設定
  ---------------------------------------- */
  /* ===== モディファイア：右寄せ ===== */
  /* ===== モディファイア：左寄せ ===== */
  /* ----------------------------------------
     共通カードスタイル
  ---------------------------------------- */
}
@media screen and (max-width: 767px) {
  .p-intro {
    margin: 13rem 0 10rem;
  }
}
.p-intro__block {
  margin-bottom: 15rem;
}
.p-intro__block:last-child {
  margin-bottom: 0;
}
.p-intro__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  background-color: #F7F7F7;
  padding: 4rem 2rem;
  width: 90%;
  transition: all 0.3s ease;
}
.p-intro_block-right .p-intro__list {
  justify-content: center;
  margin-left: auto;
  margin-right: 0;
  border-radius: 2rem 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-intro_block-right .p-intro__list {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}
.p-intro_block-left .p-intro__list {
  justify-content: center;
  margin-left: 0;
  margin-right: auto;
  border-radius: 0 2rem 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-intro_block-left .p-intro__list {
    border-radius: 2rem 2rem 2rem 2rem;
  }
}
.p-intro__item {
  text-decoration: none;
  color: #0F1419;
  width: 28%;
  min-width: 290px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-intro__item:hover {
  opacity: 0.85;
  transform: translateY(-0.5rem);
}
.p-intro__img {
  flex: 1 1;
  overflow: hidden;
}
.p-intro__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-intro__caption {
  margin-top: 1.2rem;
  font-size: 3.2rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-intro__caption {
    font-size: 2.8rem;
  }
}
.p-intro__arrow img {
  width: 30px;
  height: 25px;
  display: inline-block;
  transform: translateY(1px);
}
@media screen and (max-width: 767px) {
  .p-intro {
    padding: 0rem 1rem;
  }
  .p-intro__list {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 3.2rem;
    padding: 3rem 1.5rem;
    margin: 0 auto !important;
    border-radius: 2rem;
  }
  .p-intro__item {
    width: 90%;
    height: 350px;
  }
}

.p-message {
  position: relative;
  border-radius: 20px;
  z-index: 0;
  padding: 10rem 0;
}
.p-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background-color: #f7f7f7;
  border-radius: 0 20px 20px 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .p-message::before {
    width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
  }
}
.p-message__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 3rem;
  color: #0f1419;
  line-height: 2;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
.p-message__text {
  max-width: 720px;
  margin: 8rem auto;
  font-size: 1.6rem;
  line-height: 2;
  color: #0f1419;
  text-align: left;
  font-weight: 400;
}
.p-message__text p {
  margin-bottom: 2.4rem;
}
.p-message__text p:last-child {
  margin-bottom: 0;
  font-size: 1.8rem;
}
.p-message__text p br {
  display: block;
  content: "";
  margin-bottom: 0.6rem;
}
.p-message__text strong {
  font-weight: 700;
  color: #0f1419;
}
.p-message__text em {
  font-style: normal;
  color: #fe190d;
}
.p-message__sign {
  text-align: right;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .p-message::before {
    width: 100vw;
    border-radius: 0;
  }
  .p-message__inner {
    padding: 4rem 2rem;
  }
  .p-message__text {
    font-size: 1.4rem;
    line-height: 1.9;
    max-width: 100%;
    padding: 0 1rem;
  }
  .p-message__text p {
    margin-bottom: 2rem;
  }
  .p-message__sign {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}

.p-company {
  padding: 8rem 0;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #0f1419;
}
.p-company .c-title {
  text-align: center;
  margin-bottom: 4rem;
}
.p-company__img {
  max-width: 800px;
  margin: 0 auto 5rem;
  border-radius: 8px;
  overflow: hidden;
}
.p-company__img img {
  width: 100%;
  height: 330px;
  display: block;
}
.p-company__table-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid #2066ac;
}
.p-company__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
  line-height: 1.8;
}
.p-company__table th,
.p-company__table td {
  padding: 1.2rem 0;
  border-bottom: 1px solid #d5e2f3;
  vertical-align: top;
}
.p-company__table th {
  width: 25%;
  font-weight: 700;
  color: #0f1419;
  text-align: left;
  white-space: nowrap;
  padding-right: 2rem;
}
.p-company__table td {
  color: #333;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-company {
    padding: 6rem 0;
  }
  .p-company__img {
    margin-bottom: 3rem;
    border-radius: 4px;
  }
  .p-company__table {
    font-size: 1.4rem;
  }
  .p-company__table th {
    display: block;
    width: 100%;
    padding: 1rem 0 0.3rem;
    border: none;
  }
  .p-company__table td {
    display: block;
    width: 100%;
    padding: 0 0 1rem;
    border-bottom: 1px solid #d5e2f3;
  }
}

.p-office {
  padding: 8rem 0;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #0f1419;
}
.p-office .p-office__nav {
  text-align: center;
  margin-bottom: 6rem;
}
.p-office .p-office__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
}
.p-office .p-office__nav li {
  flex: 1 1 calc((100% - 5rem) / 6);
  max-width: 13.3333333333%;
  display: flex;
  justify-content: center;
}
.p-office .p-office__nav a {
  display: block;
  width: 100%;
  padding: 1rem 0;
  border-radius: 30px;
  color: #2066ac;
  background-color: rgba(32, 102, 172, 0.26);
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
}
.p-office .p-office__nav a:hover, .p-office .p-office__nav a.is-active {
  background-color: #2066ac;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-office .p-office__nav {
    margin-bottom: 4rem;
  }
  .p-office .p-office__nav li {
    flex: 1 1 48%;
    max-width: 48%;
    margin-bottom: 1rem;
  }
  .p-office .p-office__nav a {
    font-size: 1.4rem;
    padding: 0.8rem 0;
  }
}
.p-office .c-title {
  text-align: center;
  margin-bottom: 4rem;
}
.p-office__list {
  max-width: 1000px;
  margin: 0 auto;
}
.p-office__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 8rem;
  flex-wrap: wrap;
}
.p-office__item:last-child {
  margin-bottom: 0;
}
.p-office__map {
  flex: 1 1 45%;
  text-align: center;
}
.p-office__map img {
  width: 100%;
  height: auto;
}
.p-office__info {
  flex: 1 1 45%;
}
.p-office__name {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0f1419;
}
.p-office__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}
.p-office__icons li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  color: #2066ac;
  line-height: 1.4;
}
.p-office__icons li img {
  width: auto;
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.p-office__address {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.p-office__address a {
  color: #2066ac;
  text-decoration: underline;
  font-size: 1.4rem;
}
.p-office__tel {
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-office {
    padding: 6rem 0;
  }
  .p-office__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .p-office__map {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-office__info {
    width: 100%;
  }
  .p-office__name {
    font-size: 1.8rem;
  }
  .p-office__icons {
    justify-content: center;
  }
  .p-office__icons li img {
    width: 28px;
  }
  .p-office__address {
    font-size: 1.4rem;
  }
  .p-office__tel {
    font-size: 1.3rem;
  }
}

/* =========================================================
   p-service：左右2カラム（背景ずらし付き）＋補足ブロック
========================================================= */
.p-service {
  background-color: #fff;
  padding: 15rem 0;
  /* --------------------
     左右カラムブロック
  -------------------- */
  /* =========================================================
     灰色背景の補足ブロック（中核充てん所）
  ========================================================= */
}
@media screen and (max-width: 1100px) {
  .p-service {
    padding: 0rem 0 15rem;
  }
}
.p-service__block {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4rem;
  margin: 15rem auto;
  z-index: 0;
  /* --- テキスト部分 --- */
  /* --- 画像部分 --- */
  /* --- 右テキスト・左画像 --- */
  /* --- レスポンシブ対応 --- */
}
@media screen and (max-width: 1100px) {
  .p-service__block {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-service__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  width: 100%;
  height: 110%;
  background-color: #f7f7f7;
  border-radius: 0 20px 20px 0;
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .p-service__block::before {
    top: -5%;
  }
}
.p-service__block .p-service__text {
  flex: 1 1 55%;
  justify-content: center;
  align-items: center;
  padding: 4rem 5rem;
  color: #0f1419;
  text-align: left;
}
@media screen and (max-width: 1100px) {
  .p-service__block .p-service__text {
    padding: 1rem 5rem;
  }
}
.p-service__block .p-service__text__inner {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  .p-service__block .p-service__text__inner {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-service__block .p-service__text .p-service__gray-title {
  line-height: 2;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f1419;
  margin-bottom: 3rem;
  display: inline-block;
  border-bottom: 5px solid #2066ac;
}
@media screen and (max-width: 767px) {
  .p-service__block .p-service__text .p-service__gray-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.p-service__block .p-service__text .p-service__heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2066ac;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-service__block .p-service__text .p-service__heading {
    font-size: 2.4rem;
  }
}
.p-service__block .p-service__text .p-service__list {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
.p-service__block .p-service__text .p-service__list li {
  list-style: disc;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}
.p-service__block .p-service__text .p-service__desc {
  font-size: 1.6rem;
  line-height: 1.9;
  margin-top: 4rem;
  text-align: justify;
}
.p-service__block .p-service__image {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .p-service__block .p-service__image {
    width: 540px;
    height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__block .p-service__image {
    height: auto;
  }
}
.p-service__block .p-service__image img {
  width: 100%;
  height: 530px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -5%;
}
@media screen and (max-width: 1100px) {
  .p-service__block .p-service__image img {
    height: 360px;
  }
}
.p-service__block .p-service__image .p-service__caption {
  font-size: 1.4rem;
  color: #555;
  margin-top: 1rem;
  text-align: center;
}
.p-service__block--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1100px) {
  .p-service__block--reverse {
    flex-direction: column;
  }
}
.p-service__block--reverse::before {
  left: auto;
  width: 95%;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 1100px) {
  .p-service__block::before {
    width: 95%;
    right: 0;
    left: 0;
  }
}
@media screen and (max-width: 1100px) and (max-width: 1100px) {
  .p-service__block::before {
    width: 100%;
    right: 0;
    border-radius: 0;
    height: 115%;
  }
}
@media screen and (max-width: 1100px) and (max-width: 1100px) and (max-width: 550px) {
  .p-service__block {
    height: 110%;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-service__block {
    flex-direction: column;
    gap: 3rem;
  }
  .p-service__block::before {
    content: none;
  }
  .p-service__block .p-service__text {
    width: 100%;
    padding: 3rem 2rem;
  }
  .p-service__block .p-service__image {
    width: 100%;
  }
  .p-service__block .p-service__image img {
    aspect-ratio: 700/530;
    height: auto;
  }
}
.p-service__graybox {
  background-color: #f7f7f7;
  border-radius: 20px 0 0 20px;
  width: 95%;
  margin: 10rem 0 10rem auto;
  /* --- SP対応 --- */
}
@media screen and (max-width: 1100px) {
  .p-service__graybox {
    width: 100%;
    border-radius: 0;
    margin-top: -5rem;
  }
}
@media screen and (max-width: 1100px) {
  .p-service__graybox {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service__graybox {
    width: 100%;
    border-radius: 0;
    margin-top: -1rem;
    background-color: #fff;
  }
}
@media screen and (max-width: 550px) {
  .p-service__graybox {
    margin-top: -5rem;
  }
}
.p-service__graybox__inner {
  padding: 10rem 6rem 10rem 0;
  max-width: 1000px;
  margin: 8rem auto;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 1100px) {
  .p-service__graybox__inner {
    padding: 5rem 6rem 10rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service__graybox__inner {
    padding: 0;
  }
}
.p-service__graybox .p-service__gray-title {
  line-height: 2;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f1419;
  margin-bottom: 3rem;
  display: inline-block;
  border-bottom: 5px solid #2066ac;
}
.p-service__graybox .p-service__gray-text {
  font-size: 1.6rem;
  line-height: 1.9;
  margin-bottom: 6rem;
}
.p-service__graybox .p-service__gray-columns {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-service__graybox .p-service__gray-columns {
    width: 90%;
  }
}
.p-service__graybox .p-service__gray-columns .p-service__gray-col {
  flex: 1 1 48%;
}
.p-service__graybox .p-service__gray-columns .p-service__gray-col h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f1419;
  margin-bottom: 1rem;
}
.p-service__graybox .p-service__gray-columns .p-service__gray-col p,
.p-service__graybox .p-service__gray-columns .p-service__gray-col li {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #0f1419;
}
.p-service__graybox .p-service__gray-columns .p-service__gray-col ul {
  padding-left: 1.5rem;
}
.p-service__graybox .p-service__gray-columns .p-service__gray-col ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
}
.p-service__graybox .p-service__gray-footer {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #2066ac;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-service__graybox .p-service__gray-footer {
    font-size: 2rem;
    text-align: left;
  }
}
.p-service__graybox .p-service__gray-footer br.spbr {
  display: none;
}
.p-service__graybox .p-service__gray-img {
  width: 25%;
}
.p-service__graybox .p-service__gray-img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-service__graybox {
    padding: 3rem 2rem;
  }
  .p-service__graybox .p-service__gray-columns {
    flex-direction: column;
  }
  .p-service__graybox .p-service__gray-img {
    width: 100%;
    margin-top: 2rem;
  }
  .p-service__graybox .p-service__gray-footer br.spbr {
    display: inline;
  }
}

/* =========================================================
   補足ブロック内：2カラム構成（テキスト＋画像）
========================================================= */
.p-service__graybox__cols {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 4rem;
}
.p-service__graybox__cols .p-service__gray-columns .p-service__gray-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
.p-service__graybox__cols .p-service__gray-img {
  flex: 0 0 30%;
  align-items: center;
}
.p-service__graybox__cols .p-service__gray-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-service__graybox__cols .p-service__gray-img img {
    width: 60%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 900px) {
  .p-service__graybox__cols {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .p-service__graybox__cols .p-service__gray-columns {
    flex-direction: column;
    gap: 1.5rem;
  }
  .p-service__graybox__cols .p-service__gray-img {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 900px) and (max-width: 1100px) {
  .p-service__graybox__cols .p-service__gray-img {
    align-items: center;
    width: 50%;
  }
}
@media screen and (max-width: 900px) and (max-width: 550px) {
  .p-service__graybox__cols .p-service__gray-img {
    align-items: center;
    width: 70%;
  }
}

/* =========================================================
   補足ブロック内：h4 + 青ボーダー（横並び装飾）
========================================================= */
.p-service__gray-heading {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.p-service__gray-heading h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2066ac;
  margin: 0;
  white-space: nowrap;
}
.p-service__gray-heading .p-service__gray-divider {
  flex: 1 1 auto;
  height: 1px;
  background: #2066ac;
  display: block;
  min-width: 40px;
  border-radius: 1px;
}

/* =========================================================
   画像2枚カラム（deliveryで使用）
========================================================= */
.p-service__image-column_inner {
  display: flex;
  max-width: 700px;
  height: 530px;
}
@media screen and (max-width: 767px) {
  .p-service__image-column_inner {
    height: auto;
  }
}
.p-service__image-column_inner img {
  width: 60%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========================================================
   p-info-delivery：配送業務ページ用
========================================================= */
.p-info-delivery__gray-title, .p-info-delivery__gray-title__center {
  line-height: 2;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0f1419;
  margin-bottom: 3rem;
  display: inline-block;
  border-bottom: 5px solid #2066ac;
}
@media screen and (max-width: 767px) {
  .p-info-delivery__gray-title, .p-info-delivery__gray-title__center {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}

.p-info-delivery__gray-title__center {
  position: relative;
  left: 50%;
  transform: translate(-50%);
}

/* =========================================================
   テーブル（配送車両数表）
========================================================= */
.p-info-delivery__table {
  margin: 4rem auto;
  width: 700px;
}
@media screen and (max-width: 1439px) {
  .p-info-delivery__table {
    width: 560px;
  }
}
@media screen and (max-width: 1260px) {
  .p-info-delivery__table {
    width: 450px;
  }
}
@media screen and (max-width: 1100px) {
  .p-info-delivery__table {
    width: 650px;
  }
}
@media screen and (max-width: 767px) {
  .p-info-delivery__table {
    width: 550px;
  }
}
@media screen and (max-width: 550px) {
  .p-info-delivery__table {
    width: 440px;
  }
}
@media screen and (max-width: 440px) {
  .p-info-delivery__table {
    width: 340px;
  }
}
@media screen and (max-width: 374px) {
  .p-info-delivery__table {
    width: 320px;
  }
}
.p-info-delivery__table .c-table__inner {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  background-color: #f7f7f7;
  border: 1px solid #c5c5c5;
}
.p-info-delivery__table .c-table__inner th,
.p-info-delivery__table .c-table__inner td {
  border: 1px solid #c5c5c5;
  padding: 1rem 0.3rem;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 440px) {
  .p-info-delivery__table .c-table__inner th,
  .p-info-delivery__table .c-table__inner td {
    padding: 0.5rem 0.3rem;
  }
}
.p-info-delivery__table .c-table__inner thead th {
  background-color: #deeaf7;
  color: #0f1419;
  font-weight: 700;
  width: 24%;
  line-height: 1.2;
}
.p-info-delivery__table .c-table__inner tbody th {
  background-color: #deeaf7;
  text-align: center;
  font-weight: 700;
}
.p-info-delivery__table .c-table__inner td {
  background-color: #fff;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-info-delivery__table .c-table__inner th,
  .p-info-delivery__table .c-table__inner td {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  p.p-service__gray-caption {
    text-align: center;
  }
}

/* =========================================================
   p-recruit：採用情報セクション
========================================================= */
.p-recruit {
  text-align: center;
  padding: 15rem 0 10rem;
  background-color: #fff;
  color: #0f1419;
}
.p-recruit .c-title {
  margin-bottom: 6rem;
  text-align: center;
  display: table;
}
.p-recruit .c-title .c-title__en,
.p-recruit .c-title .c-title__ja {
  text-align: center;
  margin: 0 auto;
  display: block;
}
.p-recruit .c-title .c-title__inner {
  justify-content: center;
}
.p-recruit__buttons {
  display: flex;
  max-width: 1000px;
  margin: 0 auto 5rem;
  justify-content: space-around;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__buttons {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-recruit__button {
  display: inline-block;
  background-color: #2066ac;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 2rem 4rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 350px;
}
.p-recruit__button:hover {
  transform: translateY(-2px);
}
.p-recruit__button span {
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-recruit__button {
    font-size: 2.2rem;
    padding: 1.5rem 3rem;
    min-width: 300px;
  }
}
.p-recruit__desc {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  margin-top: 15rem;
  margin-bottom: 15rem;
}

/* =========================================================
   p-recruit-detail：募集要項テーブル（青ボーダー・下線のみ）
========================================================= */
.p-recruit-detail {
  background-color: #fff;
  color: #0f1419;
  margin-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-detail {
    margin-bottom: 15rem;
  }
}
.p-recruit-detail .c-title {
  margin-bottom: 6rem;
}
.p-recruit-detail__table {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.p-recruit-detail__inner {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.8rem;
  line-height: 1.9;
  background-color: #fff;
  border: none;
}
.p-recruit-detail__inner th,
.p-recruit-detail__inner td {
  padding: 1.6rem 2rem;
  text-align: left;
  vertical-align: top;
  border: none;
  border-bottom: 1px solid #2066ac;
}
.p-recruit-detail__inner th {
  width: 20%;
  font-weight: 700;
  color: #0f1419;
  white-space: nowrap;
}
.p-recruit-detail__inner td {
  width: 80%;
  color: #0f1419;
}
.p-recruit-detail__inner tr:last-child th,
.p-recruit-detail__inner tr:last-child td {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .p-recruit-detail__inner {
    font-size: 1.6rem;
  }
  .p-recruit-detail__inner th,
  .p-recruit-detail__inner td {
    display: block;
    width: 100%;
    padding: 1.2rem 1.5rem;
  }
  .p-recruit-detail__inner th {
    border-bottom: none;
    padding-bottom: 0.5rem;
    color: #2066ac;
  }
  .p-recruit-detail__inner td {
    border-bottom: 1px solid #2066ac;
    margin-bottom: 1.5rem;
  }
}

/* =========================================================
   p-recruit-timeline：ルート配送スタッフの1日
========================================================= */
.p-recruit-timeline {
  position: relative;
  background-color: #f7f7f7;
  padding: 10rem 2rem;
  overflow: hidden;
  width: 90%;
  top: 0;
  right: 0;
  border-radius: 20px 0 0 20px;
  margin-left: auto;
  /* 時計背景 */
  /* タイムライン本体 */
}
@media screen and (max-width: 767px) {
  .p-recruit-timeline {
    margin: 0 auto;
    border-radius: 20px;
  }
}
.p-recruit-timeline .c-title {
  text-align: center;
  margin-bottom: 6rem;
}
.p-recruit-timeline__inner {
  max-width: 800px;
  margin: 0 auto;
}
.p-recruit-timeline__bg {
  position: absolute;
  right: 0%;
  top: 10%;
  opacity: 0.8;
  z-index: 5;
}
.p-recruit-timeline__bg img {
  width: 80%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-recruit-timeline__bg img {
    width: 100%;
  }
}
.p-recruit-timeline__list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-recruit-timeline__list::before {
  content: "";
  position: absolute;
  left: 115px;
  top: 20px;
  width: 2px;
  height: 85%;
  background-color: #2066ac;
}
@media screen and (max-width: 767px) {
  .p-recruit-timeline__list::before {
    left: 70px;
  }
}
.p-recruit-timeline__item {
  position: relative;
  display: flex;
  gap: 5rem;
  margin-bottom: 6rem;
  align-items: flex-start;
}
.p-recruit-timeline__item:last-child {
  margin-bottom: 0;
}
.p-recruit-timeline__item::before {
  content: "";
  position: absolute;
  left: 105px;
  top: 19px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 3px solid #2066ac;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-recruit-timeline__item::before {
    left: 63px;
  }
}
.p-recruit-timeline__time {
  padding-top: 5px;
  font-size: 3rem;
  font-weight: 700;
  color: #2066ac;
  min-width: 100px;
  text-align: right;
  line-height: 1.5;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-recruit-timeline__time {
    line-height: 2.5;
  }
}
.p-recruit-timeline__content {
  flex: 1;
  color: #0f1419;
}
.p-recruit-timeline__title {
  width: 320px;
  height: 55px;
  font-size: 3rem;
  font-weight: 700;
  color: #2066ac;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 550px) {
  .p-recruit-timeline__title {
    width: 100%;
  }
}
.p-recruit-timeline__title img {
  width: auto;
  height: 60px;
}
.p-recruit-timeline__desc {
  font-size: 1.6rem;
  line-height: 1.9;
  text-align: start;
}
.p-recruit-timeline__note {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #0f1419;
  text-align: center;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-timeline {
    padding: 5rem 1.5rem;
  }
  .p-recruit-timeline__time {
    min-width: 65px;
    font-size: 1.8rem;
  }
  .p-recruit-timeline__title {
    font-size: 1.8rem;
  }
  .p-recruit-timeline__desc {
    font-size: 1.4rem;
  }
  .p-recruit-timeline__note {
    font-size: 1.2rem;
    margin-top: 4rem;
  }
}

/* =========================================================
   採用ページ専用：バルクルート配送画像を50%
========================================================= */
.p-recruit-page .p-service__image-column .p-service__image-column_inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.p-recruit-page .p-service__image-column .p-service__image-column_inner .p-service__image-column_inner__img {
  width: 50%;
  text-align: center;
  margin-top: -5%;
}
.p-recruit-page .p-service__image-column .p-service__image-column_inner .p-service__image-column_inner__img img {
  width: 100%;
  height: 530px;
  display: block;
}
@media screen and (max-width: 1100px) {
  .p-recruit-page .p-service__image-column .p-service__image-column_inner .p-service__image-column_inner__img img {
    width: 540px;
    height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-page .p-service__image-column .p-service__image-column_inner .p-service__image-column_inner__img img {
    width: 100%;
    aspect-ratio: 700/530;
    height: auto;
  }
}
.p-recruit-page .p-service__image-column .p-service__image-column_inner .p-service__image-column_inner__img .p-service__caption {
  font-size: 1.4rem;
  margin-top: 0.8rem;
  color: #0f1419;
}
@media screen and (max-width: 767px) {
  .p-recruit-page .p-service__image-column .p-service__image-column_inner .p-service__image-column_inner__img {
    width: 100%;
    margin-top: 0;
  }
}

.c-info-feature-card__text.u-text-center {
  text-align: center !important;
  margin-bottom: 3rem !important;
}

.u-tel-link {
  color: inherit;
  text-decoration: none;
}
.u-tel-link:hover {
  text-decoration: underline;
}

/* =========================================================
   p-contact：お問合せセクション（共通／採用ページ対応）
========================================================= */
.p-contact {
  position: relative;
  text-align: center;
  border-radius: 20px 0 0 20px;
  color: #0f1419;
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* ------------------------------
     説明テキスト
  ------------------------------ */
  /* ------------------------------
     電話ボタンブロック
  ------------------------------ */
  /* ------------------------------
     レスポンシブ対応
  ------------------------------ */
}
.p-contact__desc {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
  line-height: 1.8;
}
.p-contact__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-contact__button {
  display: inline-block;
  background-color: #2066ac;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 2rem 4rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  min-width: 320px;
  /* 電話番号部分 */
}
.p-contact__button:hover {
  transform: translateY(-3px);
}
.p-contact__button .p-contact__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}
.p-contact__button .p-contact__tel img {
  width: 22px;
  height: auto;
  vertical-align: middle;
}
.p-contact__button .p-contact__tel .p-contact__tel-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-contact .c-title__ja {
    font-size: 2.4rem;
  }
  .p-contact__desc {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
  .p-contact__button {
    font-size: 1.8rem;
    padding: 1.6rem 2.5rem;
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
  }
  .p-contact__button .p-contact__tel-number {
    font-size: 2rem;
  }
}

/* =========================================================
   p-policy：サイトポリシーページ
========================================================= */
.p-policy {
  background-color: #fff;
  color: #0f1419;
  padding: 20rem 2rem;
  font-size: 1.6rem;
  line-height: 1.9;
  text-align: left;
  /* ------------------------------
     レスポンシブ
  ------------------------------ */
}
.p-policy__lead {
  max-width: 800px;
  margin: 10rem auto 6rem;
  font-size: 1.6rem;
  line-height: 2;
}
.p-policy__block {
  max-width: 800px;
  margin: 0 auto 5rem;
  border-top: 2px solid #2066ac;
  padding-top: 2.5rem;
}
.p-policy__heading {
  font-size: 2rem;
  font-weight: 700;
  color: #2066ac;
  margin-bottom: 1.5rem;
}
.p-policy__text {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #0f1419;
}
@media screen and (max-width: 767px) {
  .p-policy .c-title__ja {
    font-size: 2.6rem;
  }
  .p-policy__lead {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
  .p-policy__block {
    margin-bottom: 4rem;
    padding-top: 2rem;
  }
  .p-policy__heading {
    font-size: 1.8rem;
  }
  .p-policy__text {
    font-size: 1.5rem;
  }
}

ol.p-policy__list {
  padding-left: 20px;
}

/* ------------------------------------------
上下margin・上下padding
------------------------------------------ */
.m_tb_40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.m_tb_80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.p_tb_40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.p_tb_80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ------------------------------------------
  下margin  
  ------------------------------------------ */
.mb_00 {
  margin-bottom: 0 !important;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_16 {
  margin-bottom: 16px !important;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .mb_40 {
    margin-bottom: 20px;
  }
}

.mb_50 {
  margin-bottom: 50px;
}

.mb_60 {
  margin-bottom: 60px;
}

.mb_70 {
  margin-bottom: 70px;
}

.mb_80 {
  margin-bottom: 80px;
}

.mb_90 {
  margin-bottom: 90px;
}

.mb_100 {
  margin-bottom: 100px;
}

/* ------------------------------------------
  上margin  
  ------------------------------------------ */
.mt_00 {
  margin-top: 0 !important;
}

.mt_10 {
  margin-top: 10px;
}

.mt_16 {
  margin-top: 16px !important;
}

.mt_20 {
  margin-top: 20px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_50 {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .mt_50 {
    margin-top: 40px;
  }
}

.mt_60 {
  margin-top: 60px;
}

.mt_70 {
  margin-top: 70px;
}

.mt_80 {
  margin-top: 80px;
}

.mt_90 {
  margin-top: 90px;
}

.mt_100 {
  margin-top: 100px;
}

/* ------------------------------------------
  下padding
  ------------------------------------------ */
.pb_00 {
  padding-bottom: 0 !important;
}

.pb_10 {
  padding-bottom: 10px;
}

.pb_20 {
  padding-bottom: 20px;
}

.pb_30 {
  padding-bottom: 30px;
}

.pb_40 {
  padding-bottom: 40px;
}

.pb_50 {
  padding-bottom: 50px;
}

.pb_60 {
  padding-bottom: 60px;
}

.pb_70 {
  padding-bottom: 70px;
}

.pb_80 {
  padding-bottom: 80px;
}

.pb_90 {
  padding-bottom: 90px;
}

.pb_100 {
  padding-bottom: 100px;
}

/* ------------------------------------------
  上padding
  ------------------------------------------ */
.pt_00 {
  padding-top: 0 !important;
}

.pt_10 {
  padding-top: 10px;
}

.pt_20 {
  padding-top: 20px;
}

.pt_30 {
  padding-top: 30px;
}

.pt_40 {
  padding-top: 40px;
}

.pt_50 {
  padding-top: 50px;
}

.pt_60 {
  padding-top: 60px;
}

.pt_70 {
  padding-top: 70px;
}

.pt_80 {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .pt_80 {
    padding-top: 40px;
  }
}

.pt_90 {
  padding-top: 90px;
}

.pt_100 {
  padding-top: 100px;
}

/* ------------------------------------------
  変則的なスペーシング
  ------------------------------------------ */
.bg-coverd-btn {
  margin-top: -110px;
}
@media screen and (max-width: 767px) {
  .bg-coverd-btn {
    margin-top: 0;
  }
}

.engine {
  animation: engine 0.2s infinite;
}
@keyframes engine {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  50% {
    transform: scale(1, 0.98) translate(0%, 1.5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
/* その場で */
/* 上下にふわふわ */
.fwari {
  animation: fwari ease-in-out 2.3s infinite alternate;
}
@keyframes fwari {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, -30px);
  }
}
/* 左右にふわふわ */
.fwafwa {
  animation: fwafwa ease-in-out 2.8s infinite alternate;
}
@keyframes fwafwa {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(-40px, 0%);
  }
}
/* スクロールアクション */
/* ぼんっと拡大 */
.bom {
  opacity: 0;
}

.bomAnime {
  animation-name: zoomInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes zoomInAnime {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* その場でふわっ */
.fadeIn {
  opacity: 0;
}

.fadeInAnime {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 下からふわっ */
.fadeUp {
  opacity: 0;
}

.fadeUpAnime {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 下から順番にふわっ */
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

.delay-time10 {
  animation-delay: 1s;
}

.delay-time12 {
  animation-delay: 1.2s;
}

.fadeUpOrder {
  opacity: 0;
}

.fadeUpOrderAnime {
  animation-name: fadeUpOrderAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpOrderAnime {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 右上にパタッ */
.pata {
  opacity: 0;
}

.pataAnime {
  animation-name: pataAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes pataAnime {
  0% {
    transform: translate(-20px, 100px) rotate(2deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}
.line-right--gray {
  border-right: 1px solid rgba(35, 24, 21, 0.15);
}
.line-under--gray {
  border-bottom: 1px solid rgba(35, 24, 21, 0.15);
  margin-bottom: 16px;
}/*# sourceMappingURL=style.css.map */