@charset "UTF-8";
.inner {
  padding-inline: 30px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 0;
    width: 1280px;
  }
}

/* 1160px用インナー（必要に応じて） */
.inner-1160 {
  width: 100%;
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner-1160 {
    padding-inline: 0;
    width: 1160px;
  }
}

/*===================================================
# フォント
====================================================*/
/*===================================================
# 基本設定
====================================================*/
html {
  scroll-behavior: smooth;
}

body {
  color: #1d232a;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  overflow-wrap: break-word;
  background-color: #f4f4f4;
  /* SP版：横スクロールを防止 */
  width: 100%;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}
body.is-drawer-open {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1280px;
    overflow-x: auto;
  }
}

p {
  font-size: 18px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 18px;
  }
}

/*===================================================
# 補足設定
====================================================*/
.hidden-wrapper {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media not screen and (min-width: 768px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

.inline-block {
  font-weight: inherit;
  display: inline-block;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-left {
  text-align: left;
}

.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

/*===================================================
# 共通
====================================================*/
.title-with-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .title-with-line {
    gap: 16px;
  }
}
.title-with-line::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: white;
}

.section__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .section__heading {
    gap: 20px;
  }
}
.section__heading-en {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, from(#2d50af), to(#e55630));
  background: linear-gradient(90deg, #2d50af 0%, #e55630 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .section__heading-en {
    font-size: 26px;
  }
}
.section__heading-jp {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #1d232a;
}
@media screen and (min-width: 768px) {
  .section__heading-jp {
    font-size: 38px;
  }
}
.section-text {
  margin-top: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .section-text {
    margin-top: 34px;
    font-size: 18px;
    line-height: 1.8888888889;
    text-align: center;
  }
}

.btn-base {
  width: 100%;
  height: 50px;
  max-width: 315px;
  min-width: 200px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 45px;
  border: 1px solid #f4f4f4;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .btn-base {
    height: 90px;
    max-width: 380px;
    min-width: 280px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.btn-base {
  /* 背景の青い円（ボタン右端に配置） */
}
.btn-base::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #1a56be;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .btn-base::before {
    right: 22px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 44px;
    height: 44px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
.btn-base__text {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #2d50af;
  padding-top: 1px;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .btn-base__text {
    font-size: 26px;
    padding-right: 20px;
  }
}
.btn-base__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .btn-base__icon {
    right: 32px;
    width: 24px;
    height: 24px;
  }
}
.btn-base__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* SVGマスク指定 */
  -webkit-mask: url("../img/icon/icon_arrow.svg") no-repeat center/contain;
  mask: url("../img/icon/icon_arrow.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .btn-base:hover::before {
    -webkit-transform: translateY(-50%) scale(1.2);
            transform: translateY(-50%) scale(1.2);
    background-color: #e55630;
  }
  .btn-base:hover .btn-base__text {
    color: #e55630;
  }
  .btn-base:hover .btn-base__icon::after {
    -webkit-animation: slide-clip-custom 0.4s ease forwards;
            animation: slide-clip-custom 0.4s ease forwards;
  }
  .btn-base:hover {
    background-color: #f4f4f4;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.btn-base--size-2 {
  max-width: 315px;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .btn-base--size-2 {
    max-width: 315px;
    height: 50px;
  }
}
@media screen and (min-width: 768px) {
  .btn-base--size-2::before {
    right: 12px;
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 768px) {
  .btn-base--size-2 .btn-base__text {
    font-size: 18px;
    padding-right: 17px;
  }
}
.btn-base--size-2 {
  /* クリッピング枠＆SVG（SP版 16px をPCでも固定） */
}
@media screen and (min-width: 768px) {
  .btn-base--size-2 .btn-base__icon {
    right: 16px;
    width: 16px;
    height: 16px;
  }
}
.btn-base--type-plus__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .btn-base--type-plus__icon {
    right: 32px;
    width: 24px;
    height: 24px;
  }
}
.btn-base--type-plus__icon {
  /* 中のSVGアイコン（::after） */
}
.btn-base--type-plus__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* SVGマスク指定 */
  -webkit-mask: url("../img/icon/icon_arrow.svg") no-repeat center/contain;
  mask: url("../img/icon/icon_arrow.svg") no-repeat center/contain;
}

.btn-base.btn-plus .btn-base__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  /* 位置補正 ＋ 回転基準を中央に */
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.btn-base.btn-plus .btn-base__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 14px;
  background-color: #ffffff;
  border-radius: 1px;
  /* SVGマスク指定を解除 */
  mask: none;
  -webkit-mask: none;
  /* 位置補正 ＋ 回転基準を中央に */
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  /* 元のSVGアニメーションを完全に無効化（上書き） */
  -webkit-animation: none !important;
          animation: none !important;
}
@media screen and (min-width: 768px) {
  .btn-base.btn-plus:hover .btn-base__icon::before {
    /* 横棒を中央配置したまま360度回転 */
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
  }
  .btn-base.btn-plus:hover .btn-base__icon::after {
    /* 縦棒を中央配置したまま360度回転（元のanimationを無効化） */
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
            transform: translate(-50%, -50%) rotate(180deg);
  }
}

.icon-arrow {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute; /* 位置調整用 */
}
@media screen and (min-width: 768px) {
  .icon-arrow {
    width: 44px;
    height: 44px;
  }
}
.icon-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #1a56be;
  z-index: 0;
  /* 変形軸を中央にして拡大時のずれを防止 */
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.icon-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  z-index: 1;
  /* SVGマスク指定 */
  -webkit-mask: url("../img/icon/icon_arrow.svg") no-repeat center/contain;
  mask: url("../img/icon/icon_arrow.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .icon-arrow::after {
    width: 24px;
    height: 24px;
  }
}

.icon__outlink {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #1d232a;
  mask: url(../img/icon/icon_link-e.svg) no-repeat center center/contain;
  -webkit-mask: url(../img/icon/icon_link-e.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .icon__outlink:hover, a:hover .icon__outlink {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.icon__outlink.text-em-icon {
  background-color: #2d50af;
}

.icon__outlink-bg {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .icon__outlink-bg {
    width: 44px;
    height: 44px;
    /* ★PCホバー時：::after（背後の青丸）のみを120%に拡大 */
  }
  .icon__outlink-bg:hover::after, a:hover .icon__outlink-bg::after {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .icon__outlink-bg:hover::before, a:hover .icon__outlink-bg::before {
    -webkit-animation: slide-clip-custom02 0.4s ease forwards;
            animation: slide-clip-custom02 0.4s ease forwards;
  }
}
.icon__outlink-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #2d50af;
  z-index: 0;
  /* 変形軸を中央・アニメーション */
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
.icon__outlink-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #fff;
  z-index: 1; /* ★青丸より前面に配置 */
  /* SVG画像をマスク（型抜き）として読み込み */
  mask: url(../img/icon/icon_link-e.svg) no-repeat center center/contain;
  -webkit-mask: url(../img/icon/icon_link-e.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .icon__outlink-bg::before {
    width: 20px;
    height: 20px;
  }
}

.icon-position-card {
  margin-top: 0;
  position: absolute;
  top: 20px;
  right: 24px;
}
@media screen and (min-width: 768px) {
  .icon-position-card {
    top: 50%;
    right: 30px;
    margin-top: -22px; /* translateY(-50%) の代わりに高さ(44px)の半分をマイナス指定（hover拡大と干渉しないための記述） */
  }
}

/* -----------------------------------
   クリッピング＋移動＋縮小＋透過キーフレーム
----------------------------------- */
@-webkit-keyframes slide-clip-custom {
  0% {
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(14px) scale(0);
            transform: translateX(14px) scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(-14px) scale(0);
            transform: translateX(-14px) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
    opacity: 1;
  }
}
@keyframes slide-clip-custom {
  0% {
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(14px) scale(0);
            transform: translateX(14px) scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(-14px) scale(0);
            transform: translateX(-14px) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes slide-clip-custom02 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translate(calc(-50% + 14px), -50%) scale(0);
            transform: translate(calc(-50% + 14px), -50%) scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(calc(-50% - 14px), -50%) scale(0);
            transform: translate(calc(-50% - 14px), -50%) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@keyframes slide-clip-custom02 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translate(calc(-50% + 14px), -50%) scale(0);
            transform: translate(calc(-50% + 14px), -50%) scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(calc(-50% - 14px), -50%) scale(0);
            transform: translate(calc(-50% - 14px), -50%) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.icon-base {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* 背景の青い円（右端配置） */
}
.icon-base::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #1a56be;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .icon-base::before {
    right: 22px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 44px;
    height: 44px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
.icon-base_icon {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .icon-base_icon {
    right: 32px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 24px;
    height: 24px;
  }
}
.icon-base_icon {
  /* 中のSVGアイコン（::after） */
}
.icon-base_icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* SVGマスク指定 */
  -webkit-mask: url("../img/icon/icon_arrow.svg") no-repeat center/contain;
  mask: url("../img/icon/icon_arrow.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .icon-base:hover::before {
    -webkit-transform: translateY(-50%) scale(1.2);
            transform: translateY(-50%) scale(1.2);
  }
  .icon-base:hover_icon::after {
    -webkit-animation: slide-clip-custom 0.4s ease forwards;
            animation: slide-clip-custom 0.4s ease forwards;
  }
}

.icon__up-down {
  position: absolute;
  width: 34px;
  height: 34px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .icon__up-down {
    width: 44px;
    height: 44px;
  }
}
.icon__up-down::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0, right:0, bottom:0, left:0 の一括指定 */
  border-radius: 50%;
  background-color: #2d50af;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
.icon__up-down::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: 13px;
  background: url(../img/icon/icon_arrow-up-down@2x.png) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .icon__up-down::after {
    width: 19px;
    height: 19px;
  }
}

.target-text {
  display: inline-block;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}
.target-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #e55630;
  /* ホバー前は横幅0（非表示） */
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.target-text:hover::after, a:hover .target-text::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); /* 下線を表示 */
}

.target-text02:hover, a:hover .target-text02 {
  text-decoration: underline;
  text-underline-offset: 0.25em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.target-text03 {
  color: #2d50af;
}

/*===================================================
# header
====================================================*/
.header {
  position: sticky;
  top: 8px;
  left: 0;
  width: 100%;
  padding-inline: 8px;
  height: 65px;
  z-index: 60;
}
@media screen and (min-width: 768px) {
  .header {
    top: 20px;
    padding-inline: 20px;
    height: 110px;
    min-width: 1280px;
  }
}

.header__bg {
  width: 100%;
  padding: 9px 13px 9px 18px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header__bg.header__open {
  background-color: white;
}
@media screen and (min-width: 768px) {
  .header__bg {
    padding: 16px 16px 16px 32px;
    border-radius: 18px;
    height: 110px;
  }
}

/* 表示制御（is-pc / is-sp） */
.is-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }
}

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

/*===================================================
# ロゴ
====================================================*/
.logo_company {
  max-width: 213px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .logo_company {
    width: 309px;
    max-width: none;
  }
}
.logo_company img {
  width: 100%;
}

/*===================================================
# PCナビゲーション（PC固定指定）
====================================================*/
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 36px;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 36px;
    margin-right: 20px;
  }
}

.header__link {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .header__link {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .header__link:hover {
    color: #e55630;
  }
}

/*===================================================
# ドロワーアイコン & コンテンツ
====================================================*/
.drawer-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: #2d50af;
  border: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.drawer-icon__bar:not(:last-child) {
  margin-bottom: 6px;
}

.drawer-icon.header__open .drawer-icon__bar:nth-child(2) {
  opacity: 0;
}

.drawer-icon.header__open .drawer-icon__bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg) scale(1.2);
          transform: translateY(8px) rotate(45deg) scale(1.2);
}

.drawer-icon.header__open .drawer-icon__bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg) scale(1.2);
          transform: translateY(-8px) rotate(-45deg) scale(1.2);
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #f4f4f4;
  z-index: 40;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.header__open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  padding-top: 85px;
  padding-inline: 30px;
}
@media screen and (max-width: 340px) {
  .drawer-content__menu {
    padding-inline: 14px;
  }
}
.drawer-content__link {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 10px;
  border-bottom: 1px solid #2d50af;
  position: relative;
}
.drawer-content__link::after {
  position: absolute;
  content: "";
  background: url(../img/icon/icon_arrow_lage_spdrawer@2x.png) no-repeat center center/cover;
  width: 14px;
  height: 10px;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*===================================================
# section
====================================================*/
section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/*===================================================
# mv
====================================================*/
.mv {
  margin-top: -65px;
  width: 100%;
  height: 480px;
  background-image: url("../img/top/top_bg-sp@2x.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto; /* ウィンドウ幅に合わせて全画面拡大＆見切れを許容 */
  background-position: center top;
  background-color: #2d50af;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
.mv::after, .mv::before {
  position: absolute;
  content: "";
  mix-blend-mode: overlay;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  pointer-events: none; /* 読み込み時の干渉防止 */
}
.mv::after {
  background: url(../img/top/top-texture_left@2x.png) no-repeat center center/contain;
  width: 700px;
  height: 500px;
  top: -107px;
  left: calc(50% - 78px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: translate(calc(-50% - 80px), 60px);
          transform: translate(calc(-50% - 80px), 60px);
}
@media screen and (min-width: 768px) {
  .mv::after {
    width: 700px;
    height: 1100px;
    top: -117px;
    left: calc(50% - 380px);
  }
}
.mv::before {
  position: absolute;
  content: "";
  background: url(../img/top/top-texture_right-sp@2x.png) no-repeat center center/contain;
  width: 427px;
  height: 468px;
  top: 250px;
  left: calc(50% + 43px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: translate(calc(-50% + 80px), -60px);
          transform: translate(calc(-50% + 80px), -60px);
}
@media screen and (min-width: 768px) {
  .mv::before {
    background: url(../img/top/top-texture_right@2x.png) no-repeat center center/contain;
    width: 489px;
    height: 622px;
    top: 150px;
    left: calc(50% + 542px);
  }
}
.mv.is-show::after {
  opacity: 1;
  /* 定位置に戻す */
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.mv.is-show::before {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media screen and (min-width: 768px) {
  .mv {
    margin-top: -110px;
    height: 754px;
    width: 100%;
    background-image: url("../img/top/top_bg@2x.jpg");
    background-size: cover;
    background-position: center top;
  }
}

.mv__inner {
  padding-block: 73px 20px;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    padding-block: 130px 20px;
  }
}

.mv_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .mv_wrap {
    gap: 30px;
  }
}

.mv_title {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-align: center;
  text-shadow: 0 0 11px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .mv_title {
    line-height: 1.3384615385;
    font-size: 60px;
  }
}

.mv_text {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-shadow: 0 0 11px rgba(0, 0, 0, 0.3);
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  margin-inline: auto;
  line-height: 1.4545454545;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .mv_text {
    font-size: 28px;
    line-height: 1;
    padding-inline: 20px;
  }
}

/*===================================================
# news
====================================================*/
.news {
  background-color: white;
  border-radius: 30px 30px 0 0;
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  margin-bottom: -30px;
}
@media screen and (min-width: 768px) {
  .news {
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 768px) {
  .news__inner {
    margin-inline: auto;
  }
}

.news_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 38px;
}
@media screen and (min-width: 768px) {
  .news_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8.5344827586%;
    margin-top: 73px;
  }
}

.news-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .news-heading {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
    width: 140px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    text-align: left;
    margin-inline: 0 auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.news-heading-en {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, from(#2d50af), to(#e55630));
  background: linear-gradient(90deg, #2d50af 0%, #e55630 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.news-heading-jp {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #1d232a;
}

.news-contents {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news-contents {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: 930px;
    width: 100%;
  }
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .news-list {
    gap: 26px;
  }
}

.news-item {
  width: 100%;
  padding-bottom: 26px;
  border-bottom: 1px solid #e9e9e9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .news-item {
    padding-bottom: 24px;
    padding-inline: 6px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
  }
}

.news-item__meta {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #62666f;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.news-item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.news-list-link {
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .news-list-link {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .news-list-link-btn {
    max-width: 185px !important;
    min-width: auto !important;
    margin-right: 30px;
  }
}

.news-list__more {
  display: none; /* 初期状態は非表示 */
  /* 中のnews-itemの余白とレイアウトを維持 */
}
.news-list__more > .news-item {
  margin-top: 26px;
}
.news-list__more > .news-item:first-child {
  margin-top: 0;
}

.btn-plus.is-open {
  /* 開いた状態（is-open）の時、縦棒（::after）を非表示にして「マイナス（ー）」にする */
}
.btn-plus.is-open .btn-base__icon::after {
  display: none;
}

/*===================================================
# message
====================================================*/
.message {
  width: 100%;
  height: 400px;
  background-image: url("../img/top/top-message-sp@2x.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
.message::after {
  position: absolute;
  content: "";
  background: url(../img/top/top-texture2-sp-l@2x.png) no-repeat center center/contain;
  width: 1141px;
  height: 878px;
  top: -211px;
  left: calc(50% + 3px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  mix-blend-mode: overlay;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  pointer-events: none; /* 読み込み時の干渉防止 */
  -webkit-transform: translate(calc(-50% - 80px), 60px);
          transform: translate(calc(-50% - 80px), 60px);
}
@media screen and (min-width: 768px) {
  .message::after {
    background: url(../img/top/top-texture2-l@2x.png) no-repeat center center/contain;
    width: 1375px;
    height: 772px;
    top: -80px;
    left: calc(50% - 498px);
  }
}
.message.is-show::after {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .message {
    height: 560px;
    background-image: url("../img/top/top-message@2x.jpg");
    background-size: cover;
    background-position: center top;
  }
}

.message__inner {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .message__inner {
    padding-inline: 30px;
  }
}

.message_main-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.message_main-text-en {
  font-family: "DM Sans", sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.4555172414;
  color: white;
  font-style: italic;
  text-shadow: 0 0 11px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .message_main-text-en {
    font-size: 48px;
    line-height: 1.375;
    letter-spacing: 0.05em;
  }
}

.message_main-text-jp {
  margin-top: 10px;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7058823529;
  color: white;
  text-align: right;
  text-shadow: 0 0 11px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .message_main-text-jp {
    margin-top: 14px;
    font-size: 26px;
    letter-spacing: 0.02em;
  }
}

.message_main-text-sub {
  margin-top: 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: white;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .message_main-text-sub {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.8888888889;
  }
}

/*===================================================
# value
====================================================*/
.value {
  background-color: white;
  border-radius: 30px 30px 0 0;
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  margin-bottom: -30px;
  padding-bottom: 57px;
}
@media screen and (min-width: 768px) {
  .value {
    padding-block: 100px 94px;
  }
}

@media screen and (min-width: 768px) {
  .value__inner {
    padding-inline: 30px;
  }
}

.point-list {
  margin-top: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 17px;
}
@media screen and (min-width: 768px) {
  .point-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 25px;
  }
}

.point-item {
  background-color: #f4f4f4;
  border-radius: 12px;
  width: 100%;
  padding-inline: 3%;
  padding-block: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.7142857143%;
}
@media screen and (min-width: 768px) {
  .point-item {
    max-width: 410px;
    padding-inline: 29px;
    gap: 6.5853658537%;
    gap: 27px;
  }
}

.point-item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20.3174603175%;
          flex: 0 0 20.3174603175%;
  max-width: 64px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .point-item-icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18.7804878049%;
            flex: 0 0 18.7804878049%;
    max-width: 77px;
    width: 100%;
  }
}
.point-item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.point-item-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 67%;
  min-width: 0; /* テキストの折り返し崩れ防止 */
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .point-item-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: none;
    font-size: 22px;
  }
}
.point-item-text span {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1d232a;
}
@media screen and (min-width: 768px) {
  .point-item-text span {
    font-size: 24px;
  }
}

.link-about {
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .link-about {
    margin-top: 43px;
  }
}

/*===================================================
# lineup
====================================================*/
.lineup {
  padding-block: 54px 60px;
  background-color: #f4f4f4;
  background: url(../img/bg/silver_bg-l@2x.jpg) no-repeat top left/cover;
}
@media screen and (min-width: 768px) {
  .lineup {
    padding-block: 100px 100px;
    background-size: 1440px auto;
  }
}

@media screen and (min-width: 768px) {
  .lineup__inner {
    padding-inline: 30px;
  }
}

.lineup_card-list {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .lineup_card-list {
    margin-top: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

.lineup_card-item {
  border-radius: 18px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .lineup_card-item {
    border-radius: 22px;
  }
  .lineup_card-item:hover .lineup_card-item_image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .lineup_card-item:hover .icon-arrow::before {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    background-color: #e55630;
  }
  .lineup_card-item:hover .icon-arrow::after {
    -webkit-animation: slide-clip-custom02 0.4s ease forwards;
            animation: slide-clip-custom02 0.4s ease forwards;
  }
  .lineup_card-item:hover .icon__outlink-bg::after {
    background-color: #e55630;
  }
  .lineup_card-item:hover .lineup_card-item_text-head {
    color: #e55630;
  }
}
.lineup_card-item.icon-plus {
  position: relative;
}
.lineup_card-item.icon-plus::after {
  position: absolute;
  content: "";
  background: url(../img/logo/machinelife-logo@2x.png) no-repeat center center/contain;
  width: 134.79px;
  height: 39.88px;
  top: 10px;
  left: 10px;
}
@media screen and (min-width: 768px) {
  .lineup_card-item.icon-plus::after {
    top: 16px;
    left: 16px;
    width: 192.55px;
    height: 54.17px;
  }
}

.lineup_card-item_image {
  width: 100%;
  height: 152px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .lineup_card-item_image {
    height: 300px;
  }
}
.lineup_card-item_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.lineup_card-item_text-wrap {
  background-color: white;
  display: block;
  padding-block: 26px 22px;
  padding-inline: 27px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .lineup_card-item_text-wrap {
    padding-block: 38px 34px;
    padding-inline: 47px 100px;
  }
}

.lineup_card-item_text-head {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 0.905;
  letter-spacing: 0.04em;
  color: #2d50af;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .lineup_card-item_text-head {
    font-size: 26px;
  }
}

.lineup_card-item_text-sub {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .lineup_card-item_text-sub {
    margin-top: 14px;
    font-size: 19px;
  }
}

/*===================================================
# footer
====================================================*/
.footer {
  background-color: #1d232a;
  color: white;
  padding-block: 40px 28px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 50px;
  }
}

@media screen and (min-width: 768px) {
  .footer__inner {
    padding-inline: 30px;
  }
}

.footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .footer-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer-head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 21px;
  }
}

.footer-logo {
  width: 100%;
  max-width: 256px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    max-width: none;
    width: 320px;
    margin-inline: 0 auto;
  }
}
.footer-logo img {
  width: 100%;
}

.footer-company-info {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer-company-info {
    -moz-text-align-last: left;
         text-align-last: left;
    font-size: 16px;
    margin-inline: 0 auto;
  }
}

.footer-menu {
  border-top: 2px solid rgba(232, 232, 232, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 29px;
}
@media screen and (min-width: 768px) {
  .footer-menu {
    border-top: none;
    gap: 39px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.footer-menu-list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
}
@media screen and (min-width: 768px) {
  .footer-menu-list01 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; /* 右揃えで折り返す */
    row-gap: 12px;
  }
}

.footer-menu-item {
  font-size: 16px;
  font-weight: 400;
  border-bottom: 2px solid rgba(232, 232, 232, 0.1);
  width: 100%;
  padding: 17px;
  white-space: nowrap;
  position: relative;
  /* SP用の矢印アイコン */
}
.footer-menu-item::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 10px;
  background-color: #ffffff;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/icon_arrow.svg) no-repeat center center/contain;
  mask: url(../img/icon/icon_arrow.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .footer-menu-item {
    font-size: 18px;
    padding: 0px;
    border-bottom: none;
    width: auto;
    white-space: normal;
    /* --- PC時の区切り線スタイル --- */
  }
  .footer-menu-item:not(:first-child) {
    padding-left: 32px;
  }
  .footer-menu-item:not(:last-child) {
    border-right: 2px solid rgba(232, 232, 232, 0.1);
    padding-right: 32px;
  }
  .footer-menu-item::after {
    top: auto;
    right: 0;
    mask: none;
    -webkit-mask: none;
    bottom: -2px;
    height: 1.5px;
    background-color: white;
    left: 0;
    width: auto;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .footer-menu-item:not(:first-child)::after {
    left: 32px;
  }
  .footer-menu-item:not(:last-child)::after {
    right: 32px;
  }
  .footer-menu-item:hover::after {
    opacity: 1;
  }
}

.footer-menu-list02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .footer-menu-list02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 44px;
  }
}

.footer-menu-item-list02 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-align: center;
  color: #e8e8e8;
  padding-block: 4px;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer-menu-item-list02 {
    font-size: 16px;
    padding-block: 0px;
    /* 下線アニメーション */
  }
  .footer-menu-item-list02::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1.5px;
    background-color: #e8e8e8;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .footer-menu-item-list02:hover::after {
    opacity: 1;
  }
}

.copyright {
  margin-top: 24px;
  margin-inline: auto;
  display: block;
  color: #e8e8e8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .copyright {
    margin-top: 55px;
    font-size: 14px;
  }
}

/*===================================================
# ページ共通部分
====================================================*/
.page__title {
  margin-top: -65px;
  width: 100%;
  height: 330px;
  background-repeat: no-repeat;
  background-size: cover; /* ウィンドウ幅に合わせて全画面拡大＆見切れを許容 */
  background-position: center top;
  background-color: #2d50af;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .page__title {
    margin-top: -110px;
    height: 490px;
  }
}
@media screen and (min-width: 768px) {
  .page__title--type-2 {
    margin-top: -110px;
    padding-top: 64px;
  }
}
.page__title {
  position: relative;
  overflow: hidden;
}
.page__title::after, .page__title::before {
  position: absolute;
  content: "";
  mix-blend-mode: overlay;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  pointer-events: none; /* 読み込み時の干渉防止 */
}
.page__title::after {
  background: url(../img/bg/txture-sub-left@2x.png) no-repeat center center/contain;
  width: 675px;
  height: 562px;
  top: -193px;
  left: calc(50% - 141px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: translate(calc(-50% - 80px), 60px);
          transform: translate(calc(-50% - 80px), 60px);
}
@media screen and (min-width: 768px) {
  .page__title::after {
    width: 868px;
    height: 1110px;
    top: -377px;
    left: calc(50% - 540px);
  }
}
.page__title::before {
  position: absolute;
  content: "";
  background: url(../img/bg/txture-sub-right@2x.png) no-repeat center center/contain;
  width: 241px;
  height: 290px;
  top: 180px;
  left: calc(50% + 103px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: translate(calc(-50% + 80px), -60px);
          transform: translate(calc(-50% + 80px), -60px);
}
@media screen and (min-width: 768px) {
  .page__title::before {
    width: 489px;
    height: 679px;
    top: 150px;
    left: calc(50% + 580px);
  }
}
.page__title.is-show::after {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.page__title.is-show::before {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.page__heading {
  text-shadow: 0 0 11px rgba(0, 0, 0, 0.3);
}

.page__heading-en {
  color: white;
  font-size: 20px;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
}
@media screen and (min-width: 768px) {
  .page__heading-en {
    font-size: 26px;
  }
}

.page__heading-jp {
  color: white;
  font-size: 34px;
}
@media screen and (min-width: 768px) {
  .page__heading-jp {
    font-size: 54px;
  }
}

.page__contents {
  background-color: white;
  border-radius: 30px 30px 0 0;
  width: 100%;
  padding-top: 55px;
  position: relative;
  z-index: 1;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  margin-bottom: -30px;
}
@media screen and (min-width: 768px) {
  .page__contents {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

.page__heading-title {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  padding-top: 21px;
  position: relative;
}
.page__heading-title::after {
  position: absolute;
  content: "";
  width: 42px;
  height: 5px;
  background-color: #2d50af;
  border-radius: 2px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .page__heading-title {
    font-size: 38px;
  }
}

.page__body {
  margin-top: 34px;
  text-align: left;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .page__body {
    margin-top: 14px;
    text-align: center;
    font-size: 18px;
  }
}

.page__bg {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 18px;
}
@media screen and (min-width: 768px) {
  .page__bg {
    border-radius: 18px;
  }
}

/*===================================================
# company-page 会社案内ページ
====================================================*/
.company-page__title {
  background-image: url("../img/company/company-bg-sp@2x.jpg");
  background-repeat: no-repeat;
  background-size: cover; /* ウィンドウ幅に合わせて全画面拡大＆見切れを許容 */
  background-position: center top;
}
@media screen and (min-width: 768px) {
  .company-page__title {
    background-image: url("../img/company/company-bg@2x.jpg");
    margin-top: -110px;
    padding-top: 64px;
  }
}

@media screen and (min-width: 768px) {
  .company-page__title__inner {
    padding-inline: 30px;
  }
}

@media screen and (min-width: 768px) {
  .company-page__contents__inner {
    padding-inline: 30px;
  }
}

.company-page__about,
.company-page__history,
.company-page__access {
  margin-top: 106px;
}

@media screen and (min-width: 768px) {
  .company-page__inner {
    padding-inline: 30px;
  }
}

.company-page__info-table {
  margin-top: 37px;
  width: 100%;
  border-top: 1px solid #cacaca; /* テーブル全体の1行目上線 */
}
.company-page__info-table__item {
  width: 100%;
  border-bottom: 1px solid #cacaca;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .company-page__info-table__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; /* ★変更：高さ（背景色）をddに合わせて引き伸ばす */
  }
}
.company-page__info-table__head {
  width: 100%;
  background-color: #f4f4f4;
  font-weight: 400;
  padding: 20px 26px;
}
@media screen and (min-width: 768px) {
  .company-page__info-table__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    width: 200px;
    padding: 32px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.company-page__info-table__body {
  width: 100%;
  padding: 18px 26px 28px;
  line-height: 1.75;
  /* 長い文章・英単語の折り返し設定 */
  word-break: break-word;
  overflow-wrap: anywhere;
}
@media screen and (min-width: 768px) {
  .company-page__info-table__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0; /* Flexboxの折り返し崩れ防止おまじない */
    padding: 32px 24px;
  }
  .company-page__info-table__body span {
    display: inline-block; /* ★追加：改行防止spanの挙動を確実にするため推奨 */
    white-space: nowrap;
  }
}

.company-page__history-wrap {
  margin-top: 49px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .company-page__history-wrap {
    margin-top: 48px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.company-page__history-image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .company-page__history-image {
    max-width: 490px;
  }
}
.company-page__history-image img {
  width: 100%;
}

/* -----------------------------------
   タイムライン全体
----------------------------------- */
.timeline {
  width: 100%;
}

.timeline-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
.timeline-item__year {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  font-weight: 400;
  line-height: 1.5;
  color: #2d50af;
  padding-block: 16px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .timeline-item__year {
    font-size: 18px;
  }
}
.timeline-item__month {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  font-weight: 400;
  line-height: 1.5;
  color: #2d50af;
  padding-block: 16px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .timeline-item__month {
    font-size: 18px;
  }
}
.timeline-item__dot-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  position: relative;
  /* 青い丸ポチ（9px）＋ 周囲の隙間(白枠) */
}
.timeline-item__dot-wrap::before {
  content: "";
  position: absolute;
  top: calc(16px + 0.75em); /* padding-top(16px) + 1行目の高さの半分 */
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background-color: #e55630;
  border-radius: 50%;
  z-index: 2;
  -webkit-box-shadow: 0 0 0 2px #ffffff;
          box-shadow: 0 0 0 2px #ffffff;
}
@media screen and (min-width: 768px) {
  .timeline-item__dot-wrap::before {
    top: calc(18px + 0.75em); /* padding-top(16px) + 1行目の高さの半分 */
  }
}
.timeline-item__dot-wrap {
  /* 縦のグレー線（1px） */
}
.timeline-item__dot-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  background-color: #cccccc;
  z-index: 1;
}
.timeline-item__content {
  min-width: 0;
  line-height: 1.5;
  line-height: 1.75;
  padding-block: 16px;
  font-size: 16px;
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .timeline-item__content {
    font-size: 18px;
    margin-top: -2px;
  }
}
.timeline-item {
  /* -----------------------------------
     先頭と最後の線の制御
  ----------------------------------- */
  /* 一番最初の項目：青ポチより上（上端）の線を消す */
}
.timeline-item:first-child .timeline-item__dot-wrap::after {
  top: calc(16px + 0.75em);
}
.timeline-item {
  /* 一番最後の項目：青ポチより下（下端）の線を消す */
}
.timeline-item:last-child .timeline-item__dot-wrap::after {
  bottom: calc(100% - (16px + 0.75em));
}

.company-page__access-contents-wrap {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .company-page__access-contents-wrap {
    margin-top: 43px;
    gap: 52px;
  }
}
.company-page__access-bg {
  padding: 26px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}
@media screen and (min-width: 768px) {
  .company-page__access-bg {
    padding: 58px 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.company-page__access-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .company-page__access-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 22px;
  }
}
.company-page__access-title {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .company-page__access-title {
    font-size: 26px;
  }
}
.company-page__access-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
@media screen and (min-width: 768px) {
  .company-page__access-text-wrap {
    gap: 39px;
  }
}
.company-page__access-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.company-page__access-text.company-page__access-text-plus {
  margin-top: -23px;
}
@media screen and (min-width: 768px) {
  .company-page__access-text {
    font-size: 18px;
  }
}
.company-page__access-text span {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .company-page__access-text span {
    font-size: 16px;
  }
}
.company-page__access-text span.bold {
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .company-page__access-text span.bold {
    font-size: 18px;
  }
}
.company-page__access-map {
  width: 100%;
  height: 255px;
  border-radius: 16px;
  overflow: hidden; /* ★iframeの角丸がはみ出すのを防ぐ必須指定 */
  /* PC版スタイル */
}
@media screen and (min-width: 768px) {
  .company-page__access-map {
    width: 100%;
    max-width: 659.87px;
    height: 414px;
  }
}
.company-page__access-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block; /* iframe下の微妙な隙間を防止 */
}
/*===================================================
# item-page 取り扱い商品ページ
====================================================*/
.item-page__title {
  background-image: url("../img/item/item-bg@2x.jpg");
}

.item-page__title__inner {
  padding-top: 18px;
}
@media screen and (min-width: 768px) {
  .item-page__title__inner {
    padding-top: 60px;
    padding-inline: 30px;
  }
}

@media screen and (min-width: 768px) {
  .item-page__contents__inner {
    padding-inline: 30px;
  }
}

.category-card__list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .category-card__list {
    margin-top: 35px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 1280px;
  }
}

.category-card__item {
  border-radius: 18px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .category-card__item {
    width: calc((100% - 48px) / 3);
  }
}
.category-card__item_image {
  padding: 20px 10px 0 10px;
  width: 100%;
  height: 152px; /* 高さ確定*/
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .category-card__item_image {
    padding: 20px 10px 0 10px;
    height: 289px;
  }
}
.category-card__item_image img {
  width: 100%;
  height: 100%; /* 親枠の高さいっぱいに広げる */
  -o-object-fit: contain;
     object-fit: contain;
}
.category-card__item_text-wrap {
  background-color: white;
  display: block;
  padding-block: 26px 22px;
  padding-inline: 27px;
}
@media screen and (min-width: 768px) {
  .category-card__item_text-wrap {
    padding-block: 38px;
    padding-inline: 42px;
  }
}
.category-card__item_text-head {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 0.905;
  letter-spacing: 0.04em;
  color: #2d50af;
}
@media screen and (min-width: 768px) {
  .category-card__item_text-head {
    font-size: 18px;
  }
}
.category-card__item_text-sub {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .category-card__item_text-sub {
    margin-top: 14px;
    font-size: 16px;
  }
}

.icon-card-base {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* ★直下の要素（テキスト2つ）を縦並びにする */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 左揃えにする場合（必要に応じて） */
  /* 背景の青い円（ボタン右端に配置） */
}
.icon-card-base::before {
  content: "";
  position: absolute;
  right: 27px;
  top: 22px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #1a56be;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .icon-card-base::before {
    right: 37px;
    top: 32px;
    width: 24px;
    height: 24px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
.icon-card-base_icon {
  position: absolute;
  right: 31px;
  top: 26px;
  width: 16px;
  height: 16px;
  overflow: hidden; /* 24px枠からはみ出た部分をカット */
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .icon-card-base_icon {
    right: 41px;
    top: 36px;
    width: 16px;
    height: 16px;
  }
}
.icon-card-base_icon {
  /* 中のSVGアイコン（::after） */
}
.icon-card-base_icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  /* SVGマスク指定 */
  -webkit-mask: url("../img/icon/icon_arrow.svg") no-repeat center/contain;
  mask: url("../img/icon/icon_arrow.svg") no-repeat center/contain;
}

.item-page__contents-list {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .item-page__contents-list {
    margin-top: 56px;
    gap: 53px;
  }
}

.list-item {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .list-item {
    border-radius: 18px;
  }
}
.list-item__head {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 20px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  border-radius: 18px;
}
@media screen and (min-width: 768px) {
  .list-item__head {
    padding: 58px 60px;
  }
  .list-item__head:hover {
    cursor: pointer;
  }
  .list-item__head:hover .icon__up-down::before {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    background-color: #e55630;
  }
  .list-item__head:hover .target-text::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1); /* 下線を表示 */
  }
}
.list-item__head-text {
  width: 100%;
  display: inline-block;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1d232a;
}
@media screen and (min-width: 768px) {
  .list-item__head-text {
    font-size: 32px;
  }
}
.list-item__head-text::after {
  bottom: -6px;
}
@media screen and (min-width: 768px) {
  .list-item__head-text::after {
    bottom: -8px;
  }
}
.list-item__head-toggle {
  top: 18px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .list-item__head-toggle {
    top: 60px;
    right: 60px;
  }
}
.list-item.is-open .list-item__head-toggle::after {
  background-image: url(../img/icon/icon_arrow-up-down@2x.png);
}
.list-item.is-open .list-item__head-text.target-text::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); /* 下線を表示 */
}
.list-item__body {
  display: none; /* 基本は非表示 */
  margin-top: 0px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .list-item__body {
    margin-top: -20px;
    padding-bottom: 60px;
  }
}
.list-item.is-open .list-item__head-toggle::after {
  -webkit-transform: translate(-50%, -50%) scaleY(-1);
          transform: translate(-50%, -50%) scaleY(-1);
  -webkit-transform-origin: center center;
          transform-origin: center center; /* 基準点を中央に指定 */
}

.product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  width: 100%;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .product-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 18px; /* 上下0px / 左右18px */
    min-width: 1160px;
    margin-inline: auto;
    padding-inline: 60px;
    padding-top: 6px;
  }
}

.product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* ★垂直方向の揃えを上揃えに変更 */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  border-bottom: 1px solid #e9e9e9;
  text-decoration: none;
  color: #1d232a;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .product-item {
    width: calc((100% - 36px) / 3);
    padding: 14px 15px;
  }
}
.product-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.4;
  /* 改行を許可（見切れ・三項リーダーを解除） */
  white-space: normal;
  word-break: break-all; /* 単語の途中でも安全に改行 */
}
.product-item__text::before {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #2d50af;
  /* 1行目の高さ */
  margin-top: 8.5px;
}
.product-item__text.txt-em {
  color: #e55630;
  font-weight: 700;
}
.product-item__text.txt-em::before {
  background-color: #e55630;
}
.product-item {
  /* -----------------------------------
     右端のリンクアイコン
  ----------------------------------- */
}
.product-item__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 12px;
  /* 1行目の高さ */
  margin-top: 3.5px;
}

.item-page__attention {
  margin-top: 53px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8888888889;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .item-page__attention {
    font-size: 18px;
  }
}

/*===================================================
# used page 中古
====================================================*/
.used-page__title {
  background-image: url("../img/used/used-bg@2x.jpg");
}

.used-page__title__inner {
  padding-top: 18px;
}
@media screen and (min-width: 768px) {
  .used-page__title__inner {
    padding-top: 60px;
    padding-inline: 30px;
  }
}

.used-page__contents__inner {
  padding-inline: 30px;
}
@media screen and (min-width: 768px) {
  .used-page__contents__inner {
    padding-inline: 30px;
  }
}

.used-page__card {
  margin-top: 30px;
  display: block;
  width: 100%;
  border-radius: 18px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .used-page__card {
    margin-top: 50px;
    width: 1280px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .used-page__card p {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .used-page__card:hover .used-page__card-wrap::before {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .used-page__card:hover .used-page__card-footer p {
    color: #e55630;
  }
  .used-page__card:hover .icon__outlink-bg::after {
    background-color: #e55630;
  }
}
.used-page__card-wrap {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 260px;
}
@media screen and (min-width: 768px) {
  .used-page__card-wrap {
    height: 318px;
  }
}
.used-page__card-wrap::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; の一括指定 */
  background: url(../img/used/used_image@2x.jpg) no-repeat center center/cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* 滑らかに拡大 */
  z-index: 0;
}
.used-page__card-wrap {
  /* 中のテキストやコンテンツが背景の後ろに隠れないように調整 */
}
.used-page__card-wrap > * {
  position: relative;
  z-index: 1;
}
.used-page__card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .used-page__card-head {
    gap: 20px;
  }
}
.used-page__card-head-title, .used-page__card-head-txt {
  color: white;
  text-align: center;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
}
.used-page__card-head-title {
  font-size: 26px;
  line-height: 1.2;
}
.used-page__card-head-title span {
  font-size: 18px;
  line-height: 2.0222222222;
}
@media screen and (min-width: 768px) {
  .used-page__card-head-title {
    font-size: 35px;
    line-height: 1.4571428571;
  }
  .used-page__card-head-title span {
    font-size: 25px;
    line-height: 2.04;
  }
}
.used-page__card-head-txt {
  font-size: 20px;
  width: 100%;
  line-height: 1;
  padding-block: 14px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
@media screen and (min-width: 768px) {
  .used-page__card-head-txt {
    font-size: 28px;
    padding-block: 18px;
  }
}
.used-page__card-footer {
  position: relative;
  padding-block: 20px;
  padding-inline: 60px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .used-page__card-footer {
    padding-block: 30px;
    padding-inline: 60px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 19px;
  }
}
.used-page__card-footer p {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #2d50af;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .used-page__card-footer p {
    font-size: 26px;
  }
}
.used-page__card-footer-logo {
  width: 160px;
}
@media screen and (min-width: 768px) {
  .used-page__card-footer-logo {
    width: 239px;
  }
}
.used-page__card-footer-logo img {
  width: 100%;
}
.used-page__card-footer-icon {
  margin-top: 0;
  position: absolute;
  top: 50%;
  right: 14px; /* マイナスにせずカードの内側に配置 */
  margin-top: -22px; /* translateY(-50%) の代わりに高さ(44px)の半分をマイナス指定（hover拡大と干渉しないための記述） */
}
@media screen and (min-width: 768px) {
  .used-page__card-footer-icon {
    top: 50%;
    right: 30px; /* マイナスにせずカードの内側に配置 */
    margin-top: -22px; /* translateY(-50%) の代わりに高さ(44px)の半分をマイナス指定（hover拡大と干渉しないための記述） */
  }
}

.used-page__attention {
  margin-top: 53px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8888888889;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .used-page__attention {
    font-size: 18px;
  }
}

/*===================================================
# contact-page コンタクトページ
====================================================*/
.contact-page__title {
  background-image: url("../img/contact/contact_bg@2x.jpg");
}

.contact-page__title__inner {
  padding-top: 18px;
}
@media screen and (min-width: 768px) {
  .contact-page__title__inner {
    padding-top: 60px;
    padding-inline: 30px;
  }
}

.contact-page__tel {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .contact-page__tel {
    margin-top: 60px;
    padding-inline: 30px;
  }
}
.contact-page__tel-bg {
  background-color: white;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  width: 100%;
  margin-inline: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding-block: 40px 40px;
  padding-inline: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact-page__tel-bg {
    width: 1160px;
    padding-block: 5px 5px;
    padding-inline: 20px 20px;
    height: 210px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 45px;
  }
}
.contact-page__tel-number {
  max-width: 260px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-page__tel-number {
    max-width: none;
    width: 402px;
  }
}
.contact-page__tel-number img {
  width: 100%;
}
.contact-page__tel-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 300px;
  padding-block: 14px;
  border-top: 1px solid #1d232a;
  border-bottom: 1px solid #1d232a;
}
@media screen and (min-width: 768px) {
  .contact-page__tel-text-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: none;
  }
}
.contact-page__tel-text-01 {
  background-color: #1d232a;
  border-radius: 6px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  padding: 9px 10px 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .contact-page__tel-text-01 {
    font-size: 18px;
  }
}
.contact-page__tel-text-02 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact-page__tel-text-02 {
    font-size: 22px;
  }
}
.contact-page__tel-text-02 span {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact-page__tel-text-02 span {
    font-size: 18px;
  }
}

.contact-page__form {
  padding-block: 54px 50px;
  padding-inline: 30px;
  background-color: #f4f4f4;
}
@media screen and (min-width: 768px) {
  .contact-page__form {
    padding-block: 100px;
    padding-inline: 30px;
  }
}
.contact-page__form-bg {
  background-color: white;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  width: 100%;
  margin-inline: auto;
  height: auto;
  padding: 40px 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact-page__form-bg {
    width: 1160px;
    padding: 60px 60px;
  }
}
.contact-page__form-heading-title {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .contact-page__form-heading-title {
    font-size: 30px;
  }
}
.contact-page__form-post {
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-page__form-post {
    width: 840px;
  }
}
.contact-form-table {
  margin-top: 20px;
  width: 100%;
  border-top: 1px solid #cacaca;
}
@media screen and (min-width: 768px) {
  .contact-form-table {
    margin-top: 37px;
    width: 840px;
    margin-inline: auto;
  }
}
.contact-form-table p {
  margin: 0;
  padding: 0;
}
.contact-form-table__item {
  width: 100%;
  border-bottom: 1px solid #cacaca;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact-form-table__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.contact-form-table__head {
  width: 100%;
  background-color: #f4f4f4;
  padding: 14px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* dt内のpタグをFlexにしてバッジを横並びにする */
}
.contact-form-table__head > p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .contact-form-table__head > p {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 12px;
  }
}
@media screen and (min-width: 768px) {
  .contact-form-table__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
            flex: 0 0 220px;
    width: 220px;
    padding: 18px 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.contact-form-table__badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #ffffff;
  background-color: #e55630; /* 必須マーク */
  border-radius: 3px;
  line-height: 1.4;
}
.contact-form-table__body {
  width: 100%;
  padding: 14px 16px;
  word-break: break-word;
  overflow-wrap: anywhere;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact-form-table__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    padding: 16px 24px;
  }
}
.contact-form-table__body {
  /* CF7の自動生成ラッパー要素を100%に引き伸ばす */
}
.contact-form-table__body .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  max-width: 500px;
}
.contact-form-table__body {
  /* お問い合わせ内容（textarea）用ラッパー拡張 */
}
.contact-form-table__body .wpcf7-form-control-wrap[data-name=your-message] {
  max-width: 100%;
}
.contact-form-table__body {
  /* エラーメッセージ（CF7標準）の位置調整 */
}
.contact-form-table__body .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #dc3232;
  margin-top: 6px;
  display: block;
}
.contact-form-table {
  /* -----------------------------------------------
     フォーム要素共通スタイル（input / select / textarea）
  ----------------------------------------------- */
}
.contact-form-table__input, .contact-form-table__select, .contact-form-table__textarea {
  width: 100%;
  max-width: 500px;
  padding: 10px 14px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  border: 1px solid #cacaca;
  border-radius: 4px;
  background-color: #ffffff;
  color: #1d232a;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.contact-form-table__input:focus, .contact-form-table__select:focus, .contact-form-table__textarea:focus {
  border-color: #2d50af;
  -webkit-box-shadow: 0 0 0 2px rgba(45, 80, 175, 0.2);
          box-shadow: 0 0 0 2px rgba(45, 80, 175, 0.2);
}
.contact-form-table__input::-webkit-input-placeholder, .contact-form-table__select::-webkit-input-placeholder, .contact-form-table__textarea::-webkit-input-placeholder {
  color: #a0a0a0;
}
.contact-form-table__input::-moz-placeholder, .contact-form-table__select::-moz-placeholder, .contact-form-table__textarea::-moz-placeholder {
  color: #a0a0a0;
}
.contact-form-table__input:-ms-input-placeholder, .contact-form-table__select:-ms-input-placeholder, .contact-form-table__textarea:-ms-input-placeholder {
  color: #a0a0a0;
}
.contact-form-table__input::-ms-input-placeholder, .contact-form-table__select::-ms-input-placeholder, .contact-form-table__textarea::-ms-input-placeholder {
  color: #a0a0a0;
}
.contact-form-table__input::placeholder, .contact-form-table__select::placeholder, .contact-form-table__textarea::placeholder {
  color: #a0a0a0;
}
.contact-form-table {
  /* セレクトボックス調整 */
}
.contact-form-table__select {
  cursor: pointer;
  -moz-appearance: none;
       appearance: none; /* デフォルトの矢印をリセット */
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%3a33333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.contact-form-table {
  /* テキストエリア調整 */
}
.contact-form-table__textarea {
  max-width: 100%;
  height: 160px;
  resize: vertical; /* 上下のみリサイズ許可 */
  line-height: 1.6;
}

/* --------------------------------------------------
   同意チェックボックスエリア
-------------------------------------------------- */
.contact-form-acceptance {
  margin-top: 10px;
  text-align: center;
}
.contact-form-acceptance p {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .contact-form-acceptance {
    margin-top: 40px;
  }
}
.contact-form-acceptance__text {
  text-align: center;
  margin-inline: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.contact-form-acceptance__text a {
  color: #2d50af;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .contact-form-acceptance__text a:hover {
    color: #e55630;
  }
}
@media screen and (min-width: 768px) {
  .contact-form-acceptance__text {
    font-size: 16px;
  }
}

/* --------------------------------------------------
   オリジナルのチェックボックス装飾（CF7書き出し構造対応）
-------------------------------------------------- */
.contact-form-checkbox {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-form-checkbox .wpcf7-form-control-wrap {
  display: inline-block;
}
.contact-form-checkbox .wpcf7-list-item {
  margin: 0;
}
.contact-form-checkbox label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.contact-form-checkbox {
  /* テキストの余白とスタイル */
}
.contact-form-checkbox .wpcf7-list-item-label,
.contact-form-checkbox .contact-form-checkbox__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding-left: 26px; /* ★左側に四角枠用の余白を作る */
}
.contact-form-checkbox {
  /* 1. ブラウザ標準のチェックボックスを完全隠す */
}
.contact-form-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.contact-form-checkbox {
  /* 2. 外枠（オリジナルの四角枠 □） */
}
.contact-form-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #cacaca;
  border-radius: 2px;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.contact-form-checkbox {
  /* 3. チェックマーク（オリジナルのレ点 ✓） */
}
.contact-form-checkbox label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: calc(50% - 1px);
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.contact-form-checkbox {
  /* -----------------------------------------------
     チェックが入った状態（:checked）のスタイル
  ----------------------------------------------- */
  /* 枠線の色と背景色をテーマカラーにする */
}
.contact-form-checkbox label:has(input[type=checkbox]:checked)::before,
.contact-form-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: #2d50af;
  border-color: #2d50af;
}
.contact-form-checkbox {
  /* レ点（✓）を表示する */
}
.contact-form-checkbox label:has(input[type=checkbox]:checked)::after,
.contact-form-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* --------------------------------------------------
   送信ボタン（Contact Form 7 書き出し構造対応）
-------------------------------------------------- */
.contact-form-submit {
  margin-top: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-form-submit p {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-form-submit {
  /* ★CF7のローディングスピナーを確実に消去（これが左寄りの元凶です） */
}
.contact-form-submit .wpcf7-spinner {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 0 !important;
  height: 0 !important;
}
.contact-form-submit {
  /* 送信ボタン本体 */
}
.contact-form-submit input[type=submit].contact-form-btn,
.contact-form-submit input[type=submit].wpcf7-submit {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 280px;
  max-width: 100%;
  height: 60px;
  line-height: 60px;
  margin-inline: auto;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  border-radius: 45px;
  border: 1px solid #f4f4f4;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* -----------------------------------------------
     1. 基本状態（通常時・送信可能な時）
     基本：白背景 × 青文字
  ----------------------------------------------- */
  background-color: #ffffff;
  color: #2d50af;
  cursor: pointer;
  /* PCホバー時：グレー背景 × オレンジ文字 */
}
@media screen and (min-width: 768px) {
  .contact-form-submit input[type=submit].contact-form-btn:hover,
  .contact-form-submit input[type=submit].wpcf7-submit:hover {
    background-color: #f4f4f4;
    color: #e55630;
    border-color: #f4f4f4;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.contact-form-submit input[type=submit].contact-form-btn,
.contact-form-submit input[type=submit].wpcf7-submit {
  /* -----------------------------------------------
     2. 無効状態（未同意・送信不可の時）
     基本：白背景 × 青文字（薄く表示・ホバー変化なし）
  ----------------------------------------------- */
}
.contact-form-submit input[type=submit].contact-form-btn:disabled, .contact-form-submit input[type=submit].contact-form-btn[disabled], .contact-form-submit input[type=submit].contact-form-btn.disabled, .contact-form-submit input[type=submit].contact-form-btn.wpcf7-submit-disabled,
.contact-form-submit input[type=submit].wpcf7-submit:disabled,
.contact-form-submit input[type=submit].wpcf7-submit[disabled],
.contact-form-submit input[type=submit].wpcf7-submit.disabled,
.contact-form-submit input[type=submit].wpcf7-submit.wpcf7-submit-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #ffffff;
  color: #2d50af;
  border-color: #f4f4f4;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .contact-form-submit input[type=submit].contact-form-btn:disabled:hover, .contact-form-submit input[type=submit].contact-form-btn[disabled]:hover, .contact-form-submit input[type=submit].contact-form-btn.disabled:hover, .contact-form-submit input[type=submit].contact-form-btn.wpcf7-submit-disabled:hover,
  .contact-form-submit input[type=submit].wpcf7-submit:disabled:hover,
  .contact-form-submit input[type=submit].wpcf7-submit[disabled]:hover,
  .contact-form-submit input[type=submit].wpcf7-submit.disabled:hover,
  .contact-form-submit input[type=submit].wpcf7-submit.wpcf7-submit-disabled:hover {
    background-color: #ffffff;
    color: #2d50af;
    border-color: #f4f4f4;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #2d50af !important;
}

.contact-page__ask {
  width: 100%;
  height: auto;
  padding-block: 60px;
  background-image: url("../img/contact/contact-ask_bg@2x.jpg");
  background-repeat: no-repeat;
  background-size: cover; /* ウィンドウ幅に合わせて全画面拡大＆見切れを許容 */
  background-position: center top;
}
@media screen and (min-width: 768px) {
  .contact-page__ask {
    padding-block: 100px;
  }
}
.contact-page__ask {
  position: relative;
  overflow: hidden;
}
.contact-page__ask::after {
  position: absolute;
  content: "";
  background: url(../img/top/top-contact-txture-sp@2x.png) no-repeat center center/contain;
  width: 803px;
  height: 576px;
  top: -100px;
  left: calc(50% - 99px);
  mix-blend-mode: overlay;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  pointer-events: none; /* 読み込み時の干渉防止 */
  -webkit-transform: translate(calc(-50% - 80px), 60px);
          transform: translate(calc(-50% - 80px), 60px);
}
@media screen and (min-width: 768px) {
  .contact-page__ask::after {
    background: url(../img/top/top-contact-txture-l@2x.png) no-repeat center center/contain;
    width: 2067px;
    height: 1056px;
    top: -292px;
    left: calc(50% - 100px);
    -webkit-transform: translate(calc(-50% - 80px), 60px);
            transform: translate(calc(-50% - 80px), 60px);
  }
}
.contact-page__ask.is-show::after {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.contact-page__ask__inner {
  padding-inline: 30px;
}
@media screen and (min-width: 768px) {
  .contact-page__ask__inner {
    padding-inline: 30px;
  }
}
.contact-page__ask__heading-jp {
  font-size: 36px;
}
@media screen and (min-width: 768px) {
  .contact-page__ask__heading-jp {
    font-size: 38px;
  }
}
.contact-page__ask__card-list {
  margin-top: 42px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .contact-page__ask__card-list {
    margin-top: 42px;
    width: 1280px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 25px;
  }
}
.ask-card {
  background-color: white;
  border-radius: 18px;
  height: auto;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .ask-card {
    width: calc((100% - 50px) / 3);
    height: 330px;
    padding: 10px;
  }
}
.ask-card-image {
  width: 120px;
}
.ask-card-image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .ask-card-image {
    width: 150px;
  }
}
.ask-card-title {
  margin-top: 18px;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #2d50af;
}
@media screen and (min-width: 768px) {
  .ask-card-title {
    margin-top: 20px;
    font-size: 26px;
  }
}
.ask-card-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 19px;
}
@media screen and (min-width: 768px) {
  .ask-card-txt {
    font-size: 22px;
  }
}

/*===================================================
# プライバシーポリシー・サイトポリシー
====================================================*/
.privacypolicy-page__title,
.sitepolicy-page__title {
  background-color: #2d50af;
  background-image: url("../img/bg/pp-sp__bg@2x.jpg");
}

.privacypolicy-page__title__inner,
.sitepolicy-page__title__inner {
  padding-top: 18px;
}
@media screen and (min-width: 768px) {
  .privacypolicy-page__title__inner,
  .sitepolicy-page__title__inner {
    padding-top: 60px;
    padding-inline: 30px;
  }
}

.privacypolicy-page__heading-en,
.sitepolicy-page__heading-en {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .privacypolicy-page__heading-en,
  .sitepolicy-page__heading-en {
    font-size: 24px;
  }
}
.privacypolicy-page__heading-jp,
.sitepolicy-page__heading-jp {
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .privacypolicy-page__heading-jp,
  .sitepolicy-page__heading-jp {
    font-size: 54px;
  }
}

@media screen and (min-width: 768px) {
  .privacypolicy-page__contents__inner,
  .sitepolicy-page__contents__inner {
    padding-inline: 30px;
  }
}

.privacypolicy-page__body p:not(:first-child),
.sitepolicy-page__body p:not(:first-child) {
  margin-top: 30px;
}