@charset "UTF-8";
/* ==========================================================================
リセット
========================================================================== */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

/* HTML5 display definitions
----------------------------------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

/* Links
----------------------------------------------------------------- */
a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
----------------------------------------------------------------- */
abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
----------------------------------------------------------------- */
img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
----------------------------------------------------------------- */
figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
----------------------------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  outline: none;
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
  border: none;
  padding: 0;
  background-color: transparent;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/* Tables
----------------------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ==========================================================================
グローバル変数
=========================================================================*/
:root {
  --black-800: #5C5C5C;
  --black-800-rgb: 92,
  92,
  92;
  --black-600: #858585;
  --black-600-rgb: 133,
  133,
  133;
  --black-400: #ADADAD;
  --black-400-rgb: 173,
  173,
  173;
  --black-200: #D6D6D6;
  --black-200-rgb: 214,
  214,
  214;
  --black-100: #EBEBEB;
  --black-100-rgb: 235,
  235,
  235;
  --black: #303030;
  --black-rgb: 48,
  48,
  48;
  --white: #fff;
  --white-rgb: 255,
  255,
  255;
  --main: #043587;
  --main-rgb: 4,
  53,
  135;
  --sub: #E60512;
  --sub-rgb: 230,
  5,
  18;
  --accent: #FCEE21;
  --accent-rgb: 252,
  238,
  33;
  --back: #E5E9F4;
  --back-rgb: 229,
  233,
  244;
  --border: #DDDDDD;
  --border-rgb: 221,
  221,
  221;
  --selection_txt: #525252;
  --selection_txt-rgb: 82,
  82,
  82;
  --selection_bg: #ffd0c4;
  --selection_bg-rgb: 255,
  208,
  196;
  --tomato: #ef423b;
  --tomato-rgb: 239,
  66,
  59;
}

/*-==========================================================================
font
==========================================================================*/
/*-==========================================================================
rem変換関数
==========================================================================*/
/*-==========================================================================
vw変換
==========================================================================*/
/*-==========================================================================
mixin
==========================================================================*/
/*-==========================================================================
独自mixinを定義
==========================================================================*/
/*-==========================================================================
ブレイクポイント（xpc、pc、lp、tb、sp）
==========================================================================*/
/* less_than_xx */
/* more_than_xx */
/* ==========================================================================
汎用CSS
========================================================================== */
/* サイト全体のフォントサイズや色に関する設定
----------------------------------------------------------------- */
html,
body {
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
}

body {
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
}

::-moz-selection {
  color: var(--selection_txt);
  background-color: var(--selection_bg);
}

::selection,
::-moz-selection {
  color: var(--selection_txt);
  background-color: var(--selection_bg);
}

.over-clip {
  overflow: clip;
}

a {
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}

p {
  padding: 0;
  margin: 0;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

picture {
  display: block;
}
picture img {
  width: 100%;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

hr {
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--back);
  text-align: inherit;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
  text-align: justify;
}

table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0;
}

label {
  cursor: pointer;
}

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

/* ==========================================================================
アニメーション
========================================================================== */
/* fadeIm fadeOut
----------------------------------------------------------------- */
/* ==========================================================================
ヘッダー
========================================================================== */
/* PC版メニュー 1段
----------------------------------------------------------------- */
.l-hd {
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--main);
  z-index: 900;
  position: relative;
  width: 100%;
  padding: 14px 20px;
}
@media screen and (max-width: 460px) {
  .l-hd {
    padding: 10px 16px;
  }
}

.l-hd-bnr {
  position: relative;
  width: auto;
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 460px) {
  .l-hd-bnr {
    width: auto;
  }
}
.l-hd-bnr a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  gap: 1rem;
}
@media screen and (max-width: 460px) {
  .l-hd-bnr a {
    gap: 10px;
  }
}
.l-hd-bnr a img {
  position: relative;
  display: block;
  max-width: 164px;
  width: 100%;
  height: 33.56px;
}
@media screen and (max-width: 460px) {
  .l-hd-bnr a img {
    height: 28px;
    max-width: initial;
  }
}
.l-hd-bnr a p {
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 834px) {
  .l-hd-bnr a p {
    font-size: 13px;
  }
}
@media screen and (max-width: 460px) {
  .l-hd-bnr a p {
    font-size: 9px;
    width: 100%;
    line-height: 1.2;
  }
}
.l-hd-bnr a:hover {
  opacity: 0.7;
}

.l-hd-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-hd-info {
    gap: 15px;
    display: none;
  }
}
.l-hd-info .l-hd-info__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-hd-info p {
  color: var(--white);
  line-height: 1;
  letter-spacing: 0em;
}
.l-hd-info .tel {
  font-weight: 600;
  font-size: 1.625rem;
  font-family: "Jost", sans-serif;
}
.l-hd-info .tel .en {
  font-size: 14px;
  font-weight: 600;
}
.l-hd-info .time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-hd-info .time span {
  letter-spacing: -0.02em;
  font-size: 15px;
}
.l-hd-info .contact-btn {
  background-color: var(--white);
  padding: 7px 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
}
.l-hd-info .contact-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-hd-logo {
  width: 100%;
  padding: 11px 0 4px;
  position: relative;
  z-index: 1111;
}
.l-hd-logo a {
  max-width: 259px;
  width: 100%;
  display: block;
  margin: auto;
}
@media screen and (max-width: 460px) {
  .l-hd-logo a {
    max-width: 200px;
  }
}
.l-hd-logo a img {
  height: 60px;
  width: auto;
}
@media screen and (max-width: 460px) {
  .l-hd-logo a img {
    height: auto;
    width: 100%;
  }
}
.l-hd-logo h1 {
  font-weight: 700;
  line-height: 2;
  letter-spacing: -0.04em;
  color: var(--main);
  text-align: center;
}
@media screen and (max-width: 460px) {
  .l-hd-logo h1 {
    font-size: 12px;
  }
}

/* dropdowメニュー
----------------------------------------------------------------- */
.l-dropdown {
  position: relative;
}
@media (orientation: landscape) and (max-device-width: 1024px) {
  .l-dropdown > a {
    pointer-events: none;
  }
}
.l-dropdown .l-dropdown-nav {
  position: absolute;
  bottom: 0px;
  left: 50%;
  display: block;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: translate(-50%, 100%) scale(1, 0);
          transform: translate(-50%, 100%) scale(1, 0);
  overflow: hidden;
  -webkit-transition: 0.5s 0.1s;
  transition: 0.5s 0.1s;
  background-color: var(--white);
  padding: 10px 1.25rem;
}
.l-dropdown .l-dropdown-nav .l-dropdown-nav__menu a {
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.6;
  padding: 0;
}
.l-dropdown .l-dropdown-nav .l-dropdown-nav__menu:last-child a {
  margin-bottom: 0;
}
.l-dropdown .l-dropdown-nav.is-dropdown-open {
  overflow: visible;
  -webkit-transform: translate(-50%, 100%) scale(1, 1);
          transform: translate(-50%, 100%) scale(1, 1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.l-dropdown .l-dropdown-nav.is-dropdown-open a {
  opacity: 1;
  -webkit-transition: 0.3s 0.2s;
  transition: 0.3s 0.2s;
}
.l-dropdown .l-dropdown-arrow::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--main);
  border-right: 1px solid var(--main);
  -webkit-transform: rotate(135deg) translateY(50%);
          transform: rotate(135deg) translateY(50%);
  margin-left: 0.6125em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-dropdown:hover .l-dropdown-arrow::after {
  border-top: 1px solid var(--sub);
  border-right: 1px solid var(--sub);
}

/* トグルボタン（ハンバーガーボタン）
----------------------------------------------------------------- */
.l-toggle {
  width: 60px;
  height: 60px;
  position: fixed;
  top: -1px;
  right: 0px;
  z-index: 1200;
  background-color: var(--main);
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .l-toggle {
    display: none;
  }
}
@media screen and (max-width: 834px) {
  .l-toggle {
    display: block;
  }
}
.l-toggle span {
  display: block;
  width: 38px;
  height: 2px;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 20px;
}
.l-toggle span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
}
.l-toggle span:nth-child(3) {
  top: auto;
  bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .l-toggle:hover span {
    background-color: var(--sub);
  }
}
.l-toggle:active span {
  background-color: var(--sub);
}

body.open {
  overflow: hidden;
}
body.open .l-toggle span {
  -webkit-transform: rotate(-20deg) translateX(-50%);
          transform: rotate(-20deg) translateX(-50%);
  top: 20px;
  background-color: var(--white);
}
body.open .l-toggle span:nth-child(2) {
  opacity: 0;
}
body.open .l-toggle span:nth-child(3) {
  -webkit-transform: rotate(20deg) translateX(-50%);
          transform: rotate(20deg) translateX(-50%);
  bottom: 24px;
  top: auto;
}
@media screen and (min-width: 1025px) {
  body.open .l-toggle:hover span {
    background-color: var(--sub);
  }
}
body.open .l-toggle:active span {
  background-color: var(--sub);
}

/* ドロワーメニュー（toggleを押して出現するメニュー/SPメニュー）
----------------------------------------------------------------- */
.l-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1111;
}
.l-drawer .l-drawer-logo {
  position: absolute;
  left: 20px;
  top: 15px;
  z-index: 1200;
}
.l-drawer .l-drawer-logo img {
  height: 60px;
  width: auto;
}

.l-drawer-body {
  position: absolute;
  width: 100%;
  height: 100vh;
  padding-top: 100px;
  background-color: var(--main);
}
.l-drawer-body .l-drawer-body__inner {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 460px) {
  .l-drawer-body .l-drawer-body__inner {
    padding-bottom: 140px;
  }
}

.l-drawer-nav-main {
  position: relative;
  padding-left: 9.765625%;
  padding-right: 9.765625%;
  margin-bottom: 60px;
}
@media screen and (max-width: 834px) {
  .l-drawer-nav-main {
    padding-left: 4.6341463415%;
    padding-right: 4.6341463415%;
  }
}
@media screen and (max-width: 460px) {
  .l-drawer-nav-main {
    padding-left: 4.8%;
    padding-right: 4.8%;
  }
}

.l-drawer-nav-main__menu {
  padding: 1.875rem 0;
  display: block;
  position: relative;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}
@media screen and (max-width: 460px) {
  .l-drawer-nav-main__menu {
    padding: 20px 0;
    font-size: 1.25rem;
  }
}
.l-drawer-nav-main__menu:after {
  content: "";
  width: 12px;
  height: 18px;
  position: absolute;
  background-image: url(/resource/images/ico_arrow_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  top: 45%;
  right: 0;
}
@media screen and (max-width: 460px) {
  .l-drawer-nav-main__menu:after {
    width: 8px;
    height: 12px;
    background-size: 8px auto;
  }
}

/* ドロワーメニュー内のアコーディオンメニュー
----------------------------------------------------------------- */
.l-drawer-acc {
  width: 100%;
  position: relative;
}
.l-drawer-acc .l-drawer-nav-main__menu:after {
  content: none;
}
.l-drawer-acc .l-drawer-acc__btn {
  position: absolute;
  right: 0;
  top: 33px;
  display: block;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 460px) {
  .l-drawer-acc .l-drawer-acc__btn {
    width: 15px;
    height: 15px;
    top: 24px;
  }
}
.l-drawer-acc .l-drawer-acc__btn::before, .l-drawer-acc .l-drawer-acc__btn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 460px) {
  .l-drawer-acc .l-drawer-acc__btn::before, .l-drawer-acc .l-drawer-acc__btn::after {
    width: 16px;
  }
}
.l-drawer-acc .l-drawer-acc__btn::before {
  top: 48%;
  right: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.l-drawer-acc .l-drawer-acc__btn::after {
  top: 48%;
  right: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.l-drawer-acc .l-drawer-acc__btn.close::before {
  -webkit-transform: rotate(0deg) translateX(5px);
          transform: rotate(0deg) translateX(5px);
  opacity: 0;
}
.l-drawer-acc .l-drawer-acc__btn.close::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.l-drawer-acc__cont {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 460px) {
  .l-drawer-acc__cont {
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-drawer-acc__cont .l-drawer-acc__cont__menu {
  padding-bottom: 1.25rem;
  line-height: 1.4;
}
@media screen and (max-width: 460px) {
  .l-drawer-acc__cont .l-drawer-acc__cont__menu:last-child {
    padding-bottom: 10px;
  }
}
.l-drawer-acc__cont .l-drawer-acc__cont__menu a,
.l-drawer-acc__cont .l-drawer-acc__cont__menu button {
  font-size: 18px;
  font-weight: 500;
  padding-left: 21px;
  color: var(--white);
}
@media screen and (max-width: 460px) {
  .l-drawer-acc__cont .l-drawer-acc__cont__menu a,
  .l-drawer-acc__cont .l-drawer-acc__cont__menu button {
    padding-left: 18px;
    font-size: 1rem;
  }
}
.l-drawer-acc__cont .l-drawer-acc__cont__menu a .ico,
.l-drawer-acc__cont .l-drawer-acc__cont__menu button .ico {
  margin-right: 4px;
}

.l-drawer-nav__sns {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem 2.5rem;
  width: 100%;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-right: 4.6341463415%;
  padding-left: 4.6341463415%;
}
@media screen and (max-width: 460px) {
  .l-drawer-nav__sns {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 190px;
  }
}
.l-drawer-nav__sns li img {
  width: 35px;
}
.l-drawer-nav__sns .youtube img {
  width: 40px;
}
.l-drawer-nav__sns .tiktok img {
  width: 31px;
}

/* コピーライト
----------------------------------------------------------------- */
.l-drawer-copy {
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--white);
}
.l-drawer-copy .l-drawer-copy__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .l-drawer-copy .l-drawer-copy__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
.l-drawer-copy .l-drawer-copy__top .l-drawer-copy__top__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
.l-drawer-copy .l-drawer-copy__top .l-drawer-copy__top__left .logo img {
  height: 32.33px;
}
.l-drawer-copy .l-drawer-copy__top .l-drawer-copy__top__left .logo:hover {
  opacity: 0.7;
}
.l-drawer-copy .l-drawer-copy__top .l-drawer-copy__top__left ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.l-drawer-copy .l-drawer-copy__top .l-drawer-copy__top__left ul li a,
.l-drawer-copy .l-drawer-copy__top .l-drawer-copy__top__left ul li button {
  background-color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-drawer-copy .l-drawer-copy__top .l-drawer-copy__top__left ul li a img,
.l-drawer-copy .l-drawer-copy__top .l-drawer-copy__top__left ul li button img {
  width: 21px;
  height: auto;
}
.l-drawer-copy .l-drawer-copy__top .l-drawer-copy__top__left ul li a:hover,
.l-drawer-copy .l-drawer-copy__top .l-drawer-copy__top__left ul li button:hover {
  opacity: 0.7;
}
.l-drawer-copy .l-drawer-copy__top .gct_bnr {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-drawer-copy .l-drawer-copy__top .gct_bnr:hover {
  opacity: 0.7;
}
.l-drawer-copy .l-drawer-copy__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2.5rem;
}
@media screen and (max-width: 460px) {
  .l-drawer-copy .l-drawer-copy__inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-drawer-copy .l-drawer-copy__inner .l-drawer-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 460px) {
  .l-drawer-copy .l-drawer-copy__inner .l-drawer-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}
.l-drawer-copy .l-drawer-copy__inner .l-drawer-link .win {
  color: var(--white);
  font-size: 0.9375rem;
  line-height: 1.8;
}
.l-drawer-copy .l-drawer-copy__inner .l-drawer-link .win img {
  width: 9px;
  margin-left: 4px;
  margin-top: -3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-drawer-copy .l-drawer-copy__inner .l-drawer-link .win:hover {
  opacity: 0.7;
}
.l-drawer-copy .l-drawer-copy__inner .copy {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  line-height: 1;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 40px;
}
@media screen and (max-width: 834px) {
  .l-drawer-copy .l-drawer-copy__inner .copy {
    font-size: 11px;
  }
}

/* ==========================================================================
フッター
========================================================================== */
footer {
  background-color: var(--black);
}

.l-ft {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5rem 0 6.25rem;
  gap: 8.6607142857%;
}
@media screen and (max-width: 834px) {
  .l-ft {
    padding: 5rem 0 3.75rem;
    gap: 47px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 460px) {
  .l-ft {
    padding: 3.75rem 0 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* ロゴエリア
----------------------------------------------------------------- */
.l-ft-logo__wrap {
  max-width: 243px;
  width: 100%;
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-ft-logo__wrap .l-ft-logo {
  text-align: center;
}
.l-ft-logo__wrap .l-ft-logo img {
  width: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-ft-logo__wrap .l-ft-logo:hover img {
  opacity: 0.7;
}
.l-ft-logo__wrap .l-ft-add {
  margin-top: 2.5rem;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-add {
    margin-top: 1.875rem;
  }
}
.l-ft-logo__wrap .l-ft-add p {
  color: var(--white);
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-add p {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-add p {
    text-align: center;
  }
}
.l-ft-logo__wrap .l-ft-btn--co {
  border: 1px solid var(--white);
  margin-top: 2.5rem;
  max-width: 210px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--co {
    max-width: 200px;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-btn--co {
    max-width: 280px;
  }
}
.l-ft-logo__wrap .l-ft-btn--co a {
  width: 100%;
  position: relative;
  display: inline-block;
  background-image: url(/resource/images/ico_win_white.svg);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: right 1.25rem center;
  color: var(--white);
  font-weight: 700;
  line-height: 50px;
  font-size: 0.9375rem;
  padding-left: 1.875rem;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--co a {
    padding-left: 1.84375rem;
    font-size: 14px;
    background-position: right 1.21875rem center;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-btn--co a {
    padding: 0;
    text-align: center;
    line-height: 66px;
  }
}
.l-ft-logo__wrap .l-ft-btn--co a:hover {
  color: var(--main);
  background-color: var(--white);
  background-image: url(/resource/images/ico_win_main.svg);
}
.l-ft-logo__wrap .l-ft-btn--rec {
  max-width: 240px;
  width: 100%;
  margin-top: 1.875rem;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec {
    max-width: 200px;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-btn--rec {
    max-width: 280px;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a {
  display: block;
  position: relative;
  background-image: -webkit-image-set(url(/resource/images/_banner_320x100.webp) type("image/webp"), url(/resource/images/_banner_320x100.jpg) type("image/jpeg"));
  background-image: image-set(url(/resource/images/_banner_320x100.webp) type("image/webp"), url(/resource/images/_banner_320x100.jpg) type("image/jpeg"));
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.125rem 1.25rem;
  height: 76px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec a {
    height: 63px;
    padding: 13.5px 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-btn--rec a {
    height: 88px;
    padding: 1.5rem 1.25rem 1.25rem;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1.25rem;
  top: 30px;
  background-image: url(/resource/images/ico_win_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 19px;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec a::after {
    top: 20px;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-btn--rec a::after {
    top: 32px;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a .en,
.l-ft-logo__wrap .l-ft-btn--rec a .ja {
  display: block;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
.l-ft-logo__wrap .l-ft-btn--rec a .en {
  font-size: 13px;
  font-family: "Jost", sans-serif;
  margin-bottom: 5px;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec a .en {
    font-size: 11px;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a .ja {
  font-size: 1.125rem;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec a .ja {
    font-size: 1rem;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a:hover {
  opacity: 0.7;
}
.l-ft-logo__wrap .l-ft-sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-sns {
    max-width: 160px;
    width: 100%;
  }
}
.l-ft-logo__wrap .l-ft-sns li {
  width: 40px;
  aspect-ratio: 1;
}
.l-ft-logo__wrap .l-ft-sns li a:hover {
  opacity: 0.7;
}

/* メニュー
----------------------------------------------------------------- */
.l-ft-nav__wrap {
  max-width: 780px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__wrap {
    max-width: initial;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-nav__wrap {
    display: none;
  }
}

.l-ft-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: no-wrap;
      -ms-flex-wrap: no-wrap;
          flex-wrap: no-wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list {
    gap: 5rem 1.25rem;
    width: 100%;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-nav__list {
    display: none;
  }
}
.l-ft-nav__list ul.l-ft-nav__parent,
.l-ft-nav__list .l-ft-nav__parent--last {
  width: auto;
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu {
  line-height: 1.4;
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu > a,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu > a {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu > a,
  .l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu > a {
    font-size: 1rem;
  }
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu > a:hover,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu > a:hover {
  opacity: 0.7;
}
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__parent__menu:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__parent__menu:not(:last-of-type) {
    margin-bottom: 1.875rem;
  }
}
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__other {
  line-height: 1.4;
  margin-top: 2rem;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__other {
    margin-top: 1.875rem;
  }
}
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__other a {
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
}
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__other a:hover {
  opacity: 0.7;
}
.l-ft-nav__list ul.l-ft-nav__child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list ul.l-ft-nav__child {
    margin-top: 0.9375rem;
    gap: 12px;
  }
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu {
  line-height: 1.4;
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu a {
  color: rgba(var(--white-rgb), 0.8);
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu a {
    font-size: 13px;
  }
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu a:hover {
  opacity: 0.5;
}

/* コピーライト
----------------------------------------------------------------- */
.l-ft-copy {
  padding: 2.5rem 0 9.375rem;
  border-top: 1px solid var(--white);
}
.l-ft-copy .l-ft-copy__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .l-ft-copy .l-ft-copy__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
.l-ft-copy .l-ft-copy__top .l-ft-copy__top__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
.l-ft-copy .l-ft-copy__top .l-ft-copy__top__left .logo img {
  height: 32.33px;
}
.l-ft-copy .l-ft-copy__top .l-ft-copy__top__left .logo:hover {
  opacity: 0.7;
}
.l-ft-copy .l-ft-copy__top .l-ft-copy__top__left ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.l-ft-copy .l-ft-copy__top .l-ft-copy__top__left ul li a, .l-ft-copy .l-ft-copy__top .l-ft-copy__top__left ul li button {
  background-color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-ft-copy .l-ft-copy__top .l-ft-copy__top__left ul li a img, .l-ft-copy .l-ft-copy__top .l-ft-copy__top__left ul li button img {
  width: 21px;
  height: auto;
}
.l-ft-copy .l-ft-copy__top .l-ft-copy__top__left ul li a:hover, .l-ft-copy .l-ft-copy__top .l-ft-copy__top__left ul li button:hover {
  opacity: 0.7;
}
.l-ft-copy .l-ft-copy__top .gct_bnr {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-ft-copy .l-ft-copy__top .gct_bnr:hover {
  opacity: 0.7;
}
.l-ft-copy .l-ft-copy__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.5rem;
}
@media screen and (max-width: 460px) {
  .l-ft-copy .l-ft-copy__inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-ft-copy .l-ft-copy__inner .l-ft-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 460px) {
  .l-ft-copy .l-ft-copy__inner .l-ft-link {
    display: none;
  }
}
.l-ft-copy .l-ft-copy__inner .l-ft-link .win {
  color: var(--white);
  font-size: 0.9375rem;
  line-height: 1.8;
}
.l-ft-copy .l-ft-copy__inner .l-ft-link .win img {
  width: 9px;
  margin-left: 4px;
  margin-top: -3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-ft-copy .l-ft-copy__inner .l-ft-link .win:hover {
  opacity: 0.7;
}
.l-ft-copy .l-ft-copy__inner .copy {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  line-height: 1;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 834px) {
  .l-ft-copy .l-ft-copy__inner .copy {
    font-size: 11px;
  }
}

/* ページトップに戻るボタン
----------------------------------------------------------------- */
a#pagetop {
  line-height: 0;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 100;
}
a#pagetop img {
  width: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a#pagetop:hover img {
  opacity: 0.7;
}

/* ==========================================================================
ページタイトル
=========================================================================*/
.l-page-ttl {
  width: 100%;
  height: 384px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .l-page-ttl {
    height: 290px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl {
    height: 230px;
    margin-top: 60px;
  }
}
.l-page-ttl picture {
  width: 100%;
  height: 100%;
}
.l-page-ttl picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.l-page-ttl .l-page-ttl-inner {
  position: absolute;
  top: 125px;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 834px) {
  .l-page-ttl .l-page-ttl-inner {
    top: 100px;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl .l-page-ttl-inner {
    top: 72px;
  }
}
.l-page-ttl .l-page-ttl-inner .jp {
  color: var(--white);
  text-align: center;
}
.l-page-ttl .l-page-ttl-inner .en {
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 1.4375rem;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .l-page-ttl .l-page-ttl-inner .en {
    font-size: 1.1875rem;
  }
}

/* ==========================================================================
セクション
=========================================================================*/
.l-sec-sm {
  padding: 1rem 0;
}

.l-sec-md {
  padding: 2.5rem 0;
}

.l-sec-lg {
  padding: 3.75rem 0;
}
@media screen and (max-width: 460px) {
  .l-sec-lg {
    padding: 3.75rem 0;
  }
}

.l-sec-xlg {
  padding: 5rem 0;
}
@media screen and (max-width: 834px) {
  .l-sec-xlg {
    padding: 3.75rem 0;
  }
}

.l-sec-xxlg {
  padding: 6.25rem 0;
}
@media screen and (max-width: 834px) {
  .l-sec-xxlg {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .l-sec-xxlg {
    padding: 3.75rem 0;
  }
}

.l-sec-xlg-remove-top {
  padding: 0 0 5rem;
}
@media screen and (max-width: 834px) {
  .l-sec-xlg-remove-top {
    padding: 0 0 3.75rem;
  }
}

.l-sec-xxlg-remove-top {
  padding: 0 0 6.25rem;
}
@media screen and (max-width: 834px) {
  .l-sec-xxlg-remove-top {
    padding: 0 0 5rem;
  }
}
@media screen and (max-width: 460px) {
  .l-sec-xxlg-remove-top {
    padding: 0 0 5rem;
  }
}

.l-sec-xxxlg-remove-top {
  padding: 0 0 6.25rem;
}
@media screen and (max-width: 834px) {
  .l-sec-xxxlg-remove-top {
    padding: 0 0 5rem;
  }
}
@media screen and (max-width: 460px) {
  .l-sec-xxxlg-remove-top {
    padding: 0 0 5rem;
  }
}

/* ==========================================================================
コンテナーボックス
=========================================================================*/
.l-container,
.l-container--car-list,
.l-container--sm,
.l-container--lg {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (max-width: 834px) {
  .l-container,
  .l-container--car-list,
  .l-container--sm,
  .l-container--lg {
    padding-left: 4.6341463415%;
    padding-right: 4.6341463415%;
  }
}
@media screen and (max-width: 460px) {
  .l-container,
  .l-container--car-list,
  .l-container--sm,
  .l-container--lg {
    padding-left: 4.8%;
    padding-right: 4.8%;
  }
}

.l-container--sm {
  max-width: 820px;
}

.l-container {
  max-width: 1110px;
}

.l-container--lg {
  max-width: 1200px;
}

.l-container--car-list {
  max-width: 1280px;
  padding-left: 3.1478770132%;
  padding-right: 3.1478770132%;
}

/* ==========================================================================
固定のボタン群
=========================================================================*/
.l-bar__wrap {
  background-color: var(--main);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 1.25rem;
}
@media screen and (max-width: 460px) {
  .l-bar__wrap {
    padding: 0.625rem;
  }
}
.l-bar__wrap ul {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 834px) {
  .l-bar__wrap ul {
    gap: 0.625rem;
  }
}
@media screen and (max-width: 460px) {
  .l-bar__wrap ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.l-bar__wrap ul li a,
.l-bar__wrap ul li button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--sub);
  border-radius: 4px;
  background-image: url(/resource/images/ico_arrow--white.svg);
  background-size: 7.74px auto;
  background-position: center right 18px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 834px) {
  .l-bar__wrap ul li a,
  .l-bar__wrap ul li button {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 20px;
    background-size: 6px auto;
    background-position: center right 10px;
  }
}
@media screen and (max-width: 460px) {
  .l-bar__wrap ul li a,
  .l-bar__wrap ul li button {
    height: 50px;
    padding-left: 10px;
  }
}
.l-bar__wrap ul li a .inner,
.l-bar__wrap ul li button .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
}
.l-bar__wrap ul li a .inner img,
.l-bar__wrap ul li button .inner img {
  margin-right: 10px;
  margin-top: -4px;
}
@media screen and (max-width: 1024px) {
  .l-bar__wrap ul li a .inner img,
  .l-bar__wrap ul li button .inner img {
    margin-right: 5px;
  }
}
@media screen and (max-width: 460px) {
  .l-bar__wrap ul li a .inner img,
  .l-bar__wrap ul li button .inner img {
    margin-top: -2px;
    margin-right: 4px;
    width: 16px;
    height: auto;
  }
}
.l-bar__wrap ul li a .inner .txt,
.l-bar__wrap ul li button .inner .txt {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  .l-bar__wrap ul li a .inner .txt,
  .l-bar__wrap ul li button .inner .txt {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-bar__wrap ul li a .inner .txt,
  .l-bar__wrap ul li button .inner .txt {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 834px) {
  .l-bar__wrap ul li a .inner .txt,
  .l-bar__wrap ul li button .inner .txt {
    font-size: 1rem;
    text-align: left;
  }
}
@media screen and (max-width: 834px) {
  .l-bar__wrap ul li a .inner .txt,
  .l-bar__wrap ul li button .inner .txt {
    display: block;
  }
}
.l-bar__wrap ul li a:hover,
.l-bar__wrap ul li button:hover {
  opacity: 0.7;
}

/*-==========================================================================
FlexBox
==========================================================================*/
/* FlexBox 基本
----------------------------------------------------------------- */
.c-flex,
.c-flex--center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: no-wrap;
      -ms-flex-wrap: no-wrap;
          flex-wrap: no-wrap;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-flex .c-flex-1,
.c-flex--center .c-flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-flex .c-flex-4clm,
.c-flex .c-flex-3clm,
.c-flex .c-flex-2clm,
.c-flex--center .c-flex-4clm,
.c-flex--center .c-flex-3clm,
.c-flex--center .c-flex-2clm {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 460px) {
  .c-flex,
  .c-flex--center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-flex .c-flex-4clm,
  .c-flex .c-flex-3clm,
  .c-flex .c-flex-2clm,
  .c-flex--center .c-flex-4clm,
  .c-flex--center .c-flex-3clm,
  .c-flex--center .c-flex-2clm {
    width: 100%;
  }
}

.c-flex--center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 460px) {
  .c-flex--center {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-flex--start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-flex--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.c-flex-allcenter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-flex--center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 460px) {
  .c-flex--center {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-flex--end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.c-flex--j-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-flex-all {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.gap20 {
  gap: 20px;
}

.gap14 {
  gap: 14px;
}

.gap10 {
  gap: 10px;
}

/* FlexBox サイズごと
----------------------------------------------------------------- */
.c-flex--sm,
.c-flex--30,
.c-flex--md,
.c-flex--lg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 460px) {
  .c-flex--sm,
  .c-flex--30,
  .c-flex--md,
  .c-flex--lg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-flex--sm {
  gap: 2.5rem 1.25rem;
}
@media screen and (max-width: 460px) {
  .c-flex--sm {
    gap: 1.25rem;
  }
}
.c-flex--sm > .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 1.25rem) / 2);
      -ms-flex: 0 0 calc((100% - 1.25rem) / 2);
          flex: 0 0 calc((100% - 1.25rem) / 2);
  min-width: 0;
}
.c-flex--sm > .c-flex-3clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 2.5rem) / 3);
      -ms-flex: 0 0 calc((100% - 2.5rem) / 3);
          flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
}
.c-flex--sm > .c-flex-4clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 3.75rem) / 4);
      -ms-flex: 0 0 calc((100% - 3.75rem) / 4);
          flex: 0 0 calc((100% - 3.75rem) / 4);
  min-width: 0;
}
@media screen and (max-width: 460px) {
  .c-flex--sm .c-flex-4clm,
  .c-flex--sm .c-flex-3clm,
  .c-flex--sm .c-flex-2clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: auto;
  }
}

.c-flex--30 {
  gap: 1.875rem;
}
@media screen and (max-width: 834px) {
  .c-flex--30 {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-flex--30 {
    gap: 1.875rem;
  }
}
.c-flex--30 > .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 1.875rem) / 2);
      -ms-flex: 0 0 calc((100% - 1.875rem) / 2);
          flex: 0 0 calc((100% - 1.875rem) / 2);
  min-width: 0;
}
@media screen and (max-width: 834px) {
  .c-flex--30 > .c-flex-2clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc((100% - 1.25rem) / 2);
        -ms-flex: 0 0 calc((100% - 1.25rem) / 2);
            flex: 0 0 calc((100% - 1.25rem) / 2);
    min-width: 0;
  }
}
.c-flex--30 > .c-flex-3clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 3.75rem) / 3);
      -ms-flex: 0 0 calc((100% - 3.75rem) / 3);
          flex: 0 0 calc((100% - 3.75rem) / 3);
  min-width: 0;
}
@media screen and (max-width: 834px) {
  .c-flex--30 > .c-flex-3clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc((100% - 2.5rem) / 3);
        -ms-flex: 0 0 calc((100% - 2.5rem) / 3);
            flex: 0 0 calc((100% - 2.5rem) / 3);
    min-width: 0;
  }
}
@media screen and (max-width: 460px) {
  .c-flex--30 .c-flex-3clm,
  .c-flex--30 .c-flex-2clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: auto;
  }
}

.c-flex--md {
  gap: 2.5rem 2.5rem;
}
@media screen and (max-width: 460px) {
  .c-flex--md {
    gap: 1.875rem;
  }
}
.c-flex--md > .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 2.5rem) / 2);
      -ms-flex: 0 0 calc((100% - 2.5rem) / 2);
          flex: 0 0 calc((100% - 2.5rem) / 2);
  min-width: 0;
}
.c-flex--md > .c-flex-3clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 5rem) / 3);
      -ms-flex: 0 0 calc((100% - 5rem) / 3);
          flex: 0 0 calc((100% - 5rem) / 3);
  min-width: 0;
}
@media screen and (max-width: 460px) {
  .c-flex--md .c-flex-3clm,
  .c-flex--md .c-flex-2clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: auto;
  }
}

.c-flex--lg {
  gap: 2.5rem 3.75rem;
}
.c-flex--lg > .c-flex-2clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 3.75rem) / 2);
      -ms-flex: 0 0 calc((100% - 3.75rem) / 2);
          flex: 0 0 calc((100% - 3.75rem) / 2);
  min-width: 0;
}
.c-flex--lg > .c-flex-3clm {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc((100% - 7.5rem) / 3);
      -ms-flex: 0 0 calc((100% - 7.5rem) / 3);
          flex: 0 0 calc((100% - 7.5rem) / 3);
  min-width: 0;
}
@media screen and (max-width: 460px) {
  .c-flex--lg .c-flex-3clm,
  .c-flex--lg .c-flex-2clm {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: auto;
  }
}

/*-==========================================================================
グリッドレイアウト
==========================================================================*/
/* グリッド
----------------------------------------------------------------- */
.c-grid--layout,
.c-grid--xsm,
.c-grid--sm,
.c-grid--sm2,
.c-grid--md,
.c-grid--lg,
.c-grid {
  display: grid;
}

.c-grid--xsm {
  gap: 10px;
}

.c-grid--sm {
  gap: 1.875rem 1.25rem;
}
@media screen and (max-width: 460px) {
  .c-grid--sm {
    gap: 1.875rem;
  }
}

.c-grid--sm2 {
  gap: 1.25rem 1.25rem;
}
@media screen and (max-width: 460px) {
  .c-grid--sm2 {
    gap: 1.875rem;
  }
}

.c-grid--md {
  gap: 5rem 2.5rem;
}
@media screen and (max-width: 834px) {
  .c-grid--md {
    gap: 2.5rem 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .c-grid--md {
    gap: 1.875rem 1.25rem;
  }
}

.c-grid--lg {
  gap: 3.75rem 3.75rem;
}
@media screen and (max-width: 834px) {
  .c-grid--lg {
    gap: 2.5rem 1.25rem;
  }
}

.c-grid {
  gap: 0;
}

.c-grid-2clm {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 460px) {
  .c-grid-2clm {
    grid-template-columns: 1fr;
  }
}

.c-grid-3clm {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 460px) {
  .c-grid-3clm {
    grid-template-columns: 1fr;
  }
}

.c-grid-3clm--tb2clm {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 834px) {
  .c-grid-3clm--tb2clm {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 460px) {
  .c-grid-3clm--tb2clm {
    grid-template-columns: 1fr;
  }
}

.c-grid-4clm {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 460px) {
  .c-grid-4clm {
    grid-template-columns: 1fr;
  }
}

.c-grid-4clm--tb2clm {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 834px) {
  .c-grid-4clm--tb2clm {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 460px) {
  .c-grid-4clm--tb2clm {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
リスト
=========================================================================*/
.c-list-num {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list-num li {
  position: relative;
  padding-left: 1.5rem;
}
.c-list-num li:before {
  content: counter(number) ".";
  counter-increment: number;
  position: absolute;
  display: inline-block;
  font-weight: 800;
  margin-left: -1.3125rem;
  font-family: "Jost", sans-serif;
}

.c-list-num-divider {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
.c-list-num-divider li {
  position: relative;
  padding: 1.875rem 1.25rem;
  padding-left: 4.75rem;
}
.c-list-num-divider li span {
  margin-top: 6px;
}
.c-list-num-divider li:before {
  content: counter(number);
  counter-increment: number;
  position: absolute;
  left: 1.25rem;
  display: inline-block;
  color: var(--main);
  font-family: "Jost", sans-serif;
  font-size: 2.0625rem;
  font-weight: 700;
  line-height: 1.4;
  width: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-list-dot li {
  text-indent: -1em;
  margin-left: 1em;
}
.c-list-dot li:before {
  content: "・";
  color: var(--sub);
  font-weight: 700;
}

.c-list-dot2 {
  padding-left: 10px;
}
.c-list-dot2 li {
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-weight: 500;
}
.c-list-dot2 li:before {
  content: "";
  vertical-align: middle;
  background-color: var(--black);
  width: 5px;
  height: 5px;
  border-radius: 100px;
  display: inline-block;
  margin-right: 8.5px;
}

/* ==========================================================================
テーブル
=========================================================================*/
/* 下線だけのシンプルな表 
----------------------------------------------------------------- */
.c-tb1 tr,
.c-tb1--white tr {
  border-bottom: 1px solid var(--black);
}
.c-tb1 tr:first-child,
.c-tb1--white tr:first-child {
  border-top: 1px solid var(--black);
}
.c-tb1 tr th,
.c-tb1 tr td,
.c-tb1--white tr th,
.c-tb1--white tr td {
  padding: 8px 10px;
  line-height: 2;
}
@media screen and (max-width: 460px) {
  .c-tb1 tr th,
  .c-tb1 tr td,
  .c-tb1--white tr th,
  .c-tb1--white tr td {
    display: block;
  }
}
.c-tb1 tr th,
.c-tb1--white tr th {
  font-weight: 500;
  vertical-align: top;
  color: var(--main);
  min-width: 116px;
}
@media screen and (max-width: 460px) {
  .c-tb1 tr th,
  .c-tb1--white tr th {
    padding: 8px 0 0 0;
    width: 100%;
  }
}
@media screen and (max-width: 460px) {
  .c-tb1 tr td,
  .c-tb1--white tr td {
    width: 100%;
    padding: 8px 0 8px;
  }
}

/* 交互のシマシマtable 
----------------------------------------------------------------- */
/* thがベタtdが下線のtable
----------------------------------------------------------------- */
/* 複雑な表
----------------------------------------------------------------- */
/* ==========================================================================
モーダルウィンドウ
=========================================================================*/
.c-modal {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.c-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--black-rgb), 0.7);
  z-index: 0;
  cursor: pointer;
}

.c-modal__cont {
  background: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 720px;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .c-modal__cont {
    width: 90%;
  }
}

.c-modal__cont__inner {
  position: relative;
  padding: 68px 0 84px;
}
.c-modal__cont__inner .c-modal-close__btn {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 20px;
  right: 20px;
  position: absolute;
}
@media screen and (max-width: 460px) {
  .c-modal__cont__inner .c-modal-close__btn {
    width: 24px;
    height: 24px;
  }
}
.c-modal__cont__inner .c-modal__img {
  margin: auto;
  max-width: 286px;
  height: auto;
}
.c-modal__cont__inner .c-modal__txt {
  margin-top: 10px;
  margin-top: 25px;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 460px) {
  .c-modal__cont__inner .c-modal__txt {
    font-size: 14px;
  }
}
.c-modal__cont__inner .c-modal__txt--sm {
  margin-top: 30px;
  text-align: center;
}

/* ==========================================================================
ナビ
=========================================================================*/
.c-page-nav {
  padding: 3.75rem 0 4.375rem;
  background-color: var(--back);
}
@media screen and (max-width: 460px) {
  .c-page-nav {
    padding: 3.75rem 0 3.125rem;
  }
}
.c-page-nav .c-page-nav__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem 1.25rem;
}
@media screen and (max-width: 460px) {
  .c-page-nav .c-page-nav__wrap {
    gap: 2rem;
  }
}
.c-page-nav .c-page-nav__wrap li {
  max-width: 240px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .c-page-nav .c-page-nav__wrap li {
    max-width: initial;
    width: calc((100% - 60px) / 4);
  }
}
@media screen and (max-width: 460px) {
  .c-page-nav .c-page-nav__wrap li {
    max-width: initial;
    width: 98%;
  }
}
.c-page-nav .c-page-nav__wrap li a {
  background-color: var(--main);
  display: block;
  color: var(--white);
  line-height: 68px;
  font-weight: 700;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .c-page-nav .c-page-nav__wrap li a {
    line-height: 60px;
  }
}
.c-page-nav .c-page-nav__wrap li a:after {
  content: "";
  width: 60px;
  height: 60px;
  background-color: var(--main);
  border-radius: 100%;
  background-image: url(/resource/images/ico_arrow--white.svg);
  background-size: 9.25px auto;
  background-position: 70% 50%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -22px;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  left: 50%;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
@media screen and (max-width: 460px) {
  .c-page-nav .c-page-nav__wrap li a:after {
    width: 50px;
    height: 50px;
  }
}
.c-page-nav .c-page-nav__wrap li a:hover {
  color: var(--white);
  background-color: var(--sub);
}
.c-page-nav .c-page-nav__wrap li a:hover:after {
  bottom: -27px;
  background-color: var(--sub);
}

.c-page-nav-tag__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem 1.25rem;
}
@media screen and (max-width: 834px) {
  .c-page-nav-tag__wrap {
    gap: 10px 10px;
  }
}
.c-page-nav-tag__wrap .c-page-nav-tag__menu {
  display: inline-block;
  max-width: 255px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .c-page-nav-tag__wrap .c-page-nav-tag__menu {
    max-width: initial;
    width: calc((100% - 30px) / 4);
  }
}
@media screen and (max-width: 460px) {
  .c-page-nav-tag__wrap .c-page-nav-tag__menu {
    max-width: initial;
    width: 98%;
  }
}
.c-page-nav-tag__wrap .c-page-nav-tag__menu a {
  display: block;
  color: var(--white);
  background-color: var(--main);
  font-weight: 700;
  line-height: 58px;
  padding: 0 3rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 460px) {
  .c-page-nav-tag__wrap .c-page-nav-tag__menu a {
    line-height: 3rem;
  }
}
.c-page-nav-tag__wrap .c-page-nav-tag__menu a:hover {
  background-color: var(--sub);
}

.c-nav-relate__wrap {
  padding: 6.25rem 0;
}
@media screen and (max-width: 834px) {
  .c-nav-relate__wrap {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .c-nav-relate__wrap {
    padding: 3.75rem 0;
  }
}

.c-nav-relate__wrap__tmb {
  position: relative;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__img {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__img picture {
  width: 100%;
  height: 100%;
  display: block;
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl {
  position: absolute;
  left: 8.6705202312%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 834px) {
  .c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl {
    left: 8.547008547%;
  }
}
@media screen and (max-width: 460px) {
  .c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl {
    left: 20px;
  }
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl span {
  color: var(--white);
  font-weight: 700;
  display: block;
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl .en {
  font-family: "Jost", sans-serif;
  line-height: 1;
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl .ja {
  font-size: 1.4375rem;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl .ja {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 460px) {
  .c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl .ja {
    font-size: 1.4375rem;
  }
}
.c-nav-relate__wrap__tmb .btn {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 100px;
  background-image: url(/resource/images/ico_arrow_black.svg);
  background-size: 8px auto;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  position: absolute;
  right: 8.6705202312%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .c-nav-relate__wrap__tmb .btn {
    width: 25px;
    height: 25px;
    right: 8.547008547%;
    background-size: 6px auto;
  }
}
@media screen and (max-width: 460px) {
  .c-nav-relate__wrap__tmb .btn {
    width: 30px;
    height: 30px;
    right: 20px;
  }
}
.c-nav-relate__wrap__tmb:hover {
  opacity: 0.7;
}
.c-nav-relate__wrap__tmb:hover .btn {
  background-color: var(--main);
  background-image: url(/resource/images/ico_arrow_white.svg);
}

/* ==========================================================================
パンくずリスト
=========================================================================*/
.c-breadcrumb {
  font-size: 13px;
  line-height: 40px;
}
@media screen and (max-width: 460px) {
  .c-breadcrumb {
    line-height: 36px;
  }
}
.c-breadcrumb .c-breadcrumb__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 460px) {
  .c-breadcrumb .c-breadcrumb__wrap {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list {
  white-space: nowrap;
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list a {
  text-decoration: underline;
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list a:hover {
  color: var(--main);
  text-decoration: none;
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list:nth-child(n+2) {
  padding-left: 25px;
  position: relative;
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list:nth-child(n+2):before {
  content: "";
  width: 5px;
  height: 8px;
  background-image: url(/resource/images/ico_arrow_black.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 2px;
  left: 10px;
  bottom: 0;
  margin: auto;
}

/* ==========================================================================
メールフォーム
=========================================================================*/
/* 入力>確認>完了のフローナビゲーション
----------------------------------------------------------------- */
.c-form-nav,
.c-form-nav--white {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.875rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 460px) {
  .c-form-nav,
  .c-form-nav--white {
    gap: 1rem;
  }
}
.c-form-nav::before,
.c-form-nav--white::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  background-color: var(--back);
  aspect-ratio: 1/360;
  max-width: 1px;
  width: 100%;
  max-width: 300px;
  height: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 460px) {
  .c-form-nav::before,
  .c-form-nav--white::before {
    width: 60%;
    max-width: initial;
  }
}
.c-form-nav li,
.c-form-nav--white li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: var(--back);
  position: relative;
  height: 100px;
  width: 100px;
  aspect-ratio: 1;
}
@media screen and (max-width: 460px) {
  .c-form-nav li,
  .c-form-nav--white li {
    height: 80px;
    width: 80px;
  }
}
.c-form-nav li.c-form-nav__active,
.c-form-nav--white li.c-form-nav__active {
  background-color: var(--main);
}
.c-form-nav li.c-form-nav__active span,
.c-form-nav--white li.c-form-nav__active span {
  color: var(--white);
}
.c-form-nav li span,
.c-form-nav--white li span {
  display: block;
  color: var(--white);
  font-size: 1.1875rem;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 460px) {
  .c-form-nav li span,
  .c-form-nav--white li span {
    font-size: 1.125rem;
  }
}
.c-form-nav li .num,
.c-form-nav--white li .num {
  font-family: "Jost", sans-serif;
}

.c-form-nav--white::before {
  background-color: var(--white);
}
.c-form-nav--white li {
  background-color: var(--white);
}
.c-form-nav--white li span {
  color: var(--back);
}

.p-single-model .c-form-nav--white::before {
  background-color: var(--back);
}
.p-single-model .c-form-nav--white li {
  background-color: var(--back);
}
.p-single-model .c-form-nav--white li.c-form-nav__active {
  background-color: var(--main);
}
.p-single-model .c-form-nav--white li.c-form-nav__active span {
  color: var(--white);
}
.p-single-model .c-form-nav--white li span {
  color: var(--white);
}

/* 入力フォーム
----------------------------------------------------------------- */
.c-form-wrap,
.c-form-wrap--white {
  margin-top: 2.5rem;
}
.c-form-wrap table,
.c-form-wrap--white table {
  font-size: 1rem;
  background-color: var(--back);
}
.c-form-wrap table tr,
.c-form-wrap--white table tr {
  border-bottom: 1px solid var(--white);
}
.c-form-wrap table tr:first-child,
.c-form-wrap--white table tr:first-child {
  border-top: 1px solid var(--white);
}
.c-form-wrap table tr th,
.c-form-wrap table tr td,
.c-form-wrap--white table tr th,
.c-form-wrap--white table tr td {
  padding: 1.875rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 834px) {
  .c-form-wrap table tr th,
  .c-form-wrap table tr td,
  .c-form-wrap--white table tr th,
  .c-form-wrap--white table tr td {
    padding: 1.25rem;
    display: block;
  }
}
@media screen and (max-width: 460px) {
  .c-form-wrap table tr th,
  .c-form-wrap table tr td,
  .c-form-wrap--white table tr th,
  .c-form-wrap--white table tr td {
    display: block;
  }
}
.c-form-wrap table tr th,
.c-form-wrap--white table tr th {
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  position: relative;
  width: 25%;
  padding-right: 0;
}
@media screen and (max-width: 834px) {
  .c-form-wrap table tr th,
  .c-form-wrap--white table tr th {
    width: 100%;
    padding-right: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 460px) {
  .c-form-wrap table tr th,
  .c-form-wrap--white table tr th {
    width: 100%;
    padding: 1.25rem 0.625rem;
  }
}
@media screen and (max-width: 460px) {
  .c-form-wrap table tr td,
  .c-form-wrap--white table tr td {
    padding: 0 0.625rem 1.25rem 0.625rem;
  }
}

.c-form-wrap--white table {
  background-color: var(--white);
}
.c-form-wrap--white table tr {
  border-bottom: 1px solid var(--back);
}
.c-form-wrap--white table tr:first-child {
  border-top: 1px solid var(--back);
}

.p-single-model .c-form-wrap--white table {
  background-color: var(--back);
}
.p-single-model .c-form-wrap--white table tr {
  border-bottom: 1px solid var(--white);
}
.p-single-model .c-form-wrap--white table tr:first-child {
  border-top: 1px solid var(--white);
}
.p-single-model .c-form-wrap--white table tr td .c-form-input--back {
  background-color: var(--white);
  border: 1px solid var(--white);
}
.p-single-model .c-form-wrap--white table tr td .c-form-select--back {
  background-color: var(--white);
  border: 1px solid var(--white);
}
.p-single-model .c-form-wrap--white table tr td .c-form-textarea--back {
  background-color: var(--white);
  border: 1px solid var(--white);
}
.p-single-model .c-form-privacy.bg-white {
  background-color: var(--back) !important;
}
.p-single-model .c-form-privacy.bg-white .c-form-privacy__panel.bg-back {
  background-color: var(--white) !important;
}

/* 必須マーク
----------------------------------------------------------------- */
.c-form-required {
  position: relative;
}
@media screen and (max-width: 460px) {
  .c-form-required {
    text-align: center;
  }
}
.c-form-required::after {
  content: "必須";
  display: block;
  position: absolute;
  right: 0;
  top: 33px;
  background-color: var(--sub);
  border-radius: 20px;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 24px;
  width: 48px;
  text-align: center;
  margin-left: 14px;
}
@media screen and (max-width: 834px) {
  .c-form-required::after {
    top: 20px;
    right: 20px;
  }
}

/* 入力欄
----------------------------------------------------------------- */
.c-form-radio,
.c-form-radio--white,
.c-form-checkbox,
.c-form-checkbox--white {
  display: inline-block;
  margin: -4px 8px 0 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: 2px solid var(--main);
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.c-form-radio:not(:disabled),
.c-form-radio--white:not(:disabled),
.c-form-checkbox:not(:disabled),
.c-form-checkbox--white:not(:disabled) {
  cursor: pointer;
}

.c-form-radio {
  border-radius: 50%;
}
.c-form-radio:checked {
  border: 6px solid var(--main);
}

.c-form-checkbox,
.c-form-checkbox--white {
  position: relative;
}
.c-form-checkbox:checked:before,
.c-form-checkbox--white:checked:before {
  content: "";
  background-image: url(/resource/images/ico_form_cheaked.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  display: block;
  position: absolute;
  left: 1px;
  top: -4px;
}
@media screen and (max-width: 834px) {
  .c-form-checkbox:checked:before,
  .c-form-checkbox--white:checked:before {
    top: -5px;
  }
}

.c-form-radio--white,
.c-form-checkbox--white {
  background-color: var(--white);
}

.c-form-input,
.c-form-input--back,
.c-form-input--back--sm,
.c-form-select,
.c-form-select--back,
.c-form-textarea,
.c-form-textarea--back {
  display: inline-block;
  background-color: var(--white);
  border: 1px solid var(--white);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  vertical-align: middle;
  padding: 4px 8px;
  max-width: 760px;
  width: 100%;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .c-form-input,
  .c-form-input--back,
  .c-form-input--back--sm,
  .c-form-select,
  .c-form-select--back,
  .c-form-textarea,
  .c-form-textarea--back {
    max-width: 100%;
  }
}
.c-form-input::-webkit-input-placeholder, .c-form-input--back::-webkit-input-placeholder, .c-form-input--back--sm::-webkit-input-placeholder, .c-form-select::-webkit-input-placeholder, .c-form-select--back::-webkit-input-placeholder, .c-form-textarea::-webkit-input-placeholder, .c-form-textarea--back::-webkit-input-placeholder {
  color: rgba(var(--black-rgb), 0.5);
}
.c-form-input::-moz-placeholder, .c-form-input--back::-moz-placeholder, .c-form-input--back--sm::-moz-placeholder, .c-form-select::-moz-placeholder, .c-form-select--back::-moz-placeholder, .c-form-textarea::-moz-placeholder, .c-form-textarea--back::-moz-placeholder {
  color: rgba(var(--black-rgb), 0.5);
}
.c-form-input:-ms-input-placeholder, .c-form-input--back:-ms-input-placeholder, .c-form-input--back--sm:-ms-input-placeholder, .c-form-select:-ms-input-placeholder, .c-form-select--back:-ms-input-placeholder, .c-form-textarea:-ms-input-placeholder, .c-form-textarea--back:-ms-input-placeholder {
  color: rgba(var(--black-rgb), 0.5);
}
.c-form-input::-ms-input-placeholder, .c-form-input--back::-ms-input-placeholder, .c-form-input--back--sm::-ms-input-placeholder, .c-form-select::-ms-input-placeholder, .c-form-select--back::-ms-input-placeholder, .c-form-textarea::-ms-input-placeholder, .c-form-textarea--back::-ms-input-placeholder {
  color: rgba(var(--black-rgb), 0.5);
}
.c-form-input::placeholder,
.c-form-input--back::placeholder,
.c-form-input--back--sm::placeholder,
.c-form-select::placeholder,
.c-form-select--back::placeholder,
.c-form-textarea::placeholder,
.c-form-textarea--back::placeholder {
  color: rgba(var(--black-rgb), 0.5);
}

.c-form-select,
.c-form-select--back,
.c-form-input,
.c-form-input--back--sm,
.c-form-input--back {
  height: 50px;
}

.c-form-input--back--sm,
.c-form-input--back {
  background-color: var(--back);
  border: 1px solid var(--back);
}

.c-form-input--back--sm {
  max-width: 150px;
  width: 100%;
}

.c-form-select--back {
  background-color: var(--back);
  border: 1px solid var(--back);
}

.c-form-textarea--back {
  background-color: var(--back);
  border: 1px solid var(--back);
}

.c-form-select__inner {
  position: relative;
}
.c-form-select__inner select.c-form-select,
.c-form-select__inner select.c-form-select--back {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.c-form-select__inner .c-form-select,
.c-form-select__inner .c-form-select--back {
  padding: 4px 30px;
}
.c-form-select__inner:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-right: solid 1px var(--black);
  border-bottom: solid 1px var(--black);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 40%;
  right: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}

.c-form-radio__wrap,
.c-form-radio__wrap--row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.c-form-radio__wrap--row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0px 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 460px) {
  .c-form-radio__wrap--row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 460px) {
  .c-form-radio__wrap--row .c-flex-all .c-flex-1 {
    width: 100%;
    -webkit-box-flex: initial;
    -webkit-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.c-form-radio__wrap--row .c-flex-all .c-flex-1 .c-form-input,
.c-form-radio__wrap--row .c-flex-all .c-flex-1 .c-form-input--back {
  width: 100%;
  max-width: initial;
  margin-left: 14px;
}
@media screen and (max-width: 460px) {
  .c-form-radio__wrap--row .c-flex-all .c-flex-1 .c-form-input,
  .c-form-radio__wrap--row .c-flex-all .c-flex-1 .c-form-input--back {
    margin-left: 0;
    width: 100%;
    margin-top: 4px;
  }
}

.c-form-radio__wrap--grid {
  display: grid;
  grid-template-columns: repeat(3, 158px);
  gap: 14px 20px;
}
@media screen and (max-width: 460px) {
  .c-form-radio__wrap--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }
}
.c-form-radio__wrap--grid label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
}

.c-form-address__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 460px) {
  .c-form-address__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-form-address__wrap span {
  min-width: 112px;
  text-align: right;
}
@media screen and (max-width: 460px) {
  .c-form-address__wrap span {
    text-align: left;
  }
}

.c-form-reserve__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 834px) {
  .c-form-reserve__wrap {
    gap: 10px;
  }
}
@media screen and (max-width: 460px) {
  .c-form-reserve__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-form-reserve__wrap .c-form-reserve__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 834px) {
  .c-form-reserve__wrap .c-form-reserve__inner {
    gap: 10px;
  }
}
@media screen and (max-width: 460px) {
  .c-form-reserve__wrap .c-form-reserve__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-form-reserve__wrap .c-form-reserve__inner-date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 834px) {
  .c-form-reserve__wrap .c-form-reserve__inner-date {
    gap: 10px;
  }
}
.c-form-reserve__wrap span {
  min-width: 80px;
}
.c-form-reserve__wrap .c-flex-all {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form-reserve__wrap .c-form-input,
.c-form-reserve__wrap .c-form-input--back {
  max-width: 60px;
  width: 100%;
}
.c-form-reserve__wrap .c-form-select__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 834px) {
  .c-form-reserve__wrap .c-form-select__wrap {
    gap: 10px;
  }
}
.c-form-reserve__wrap .c-form-select__wrap .c-form-select,
.c-form-reserve__wrap .c-form-select__wrap .c-form-select--back {
  width: 240px;
}
@media screen and (max-width: 460px) {
  .c-form-reserve__wrap .c-form-select__wrap .c-form-select,
  .c-form-reserve__wrap .c-form-select__wrap .c-form-select--back {
    width: 100%;
  }
}

.c-form-input-file__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.c-form-input-file {
  cursor: pointer;
  display: block;
  width: 100%;
}
@media screen and (max-width: 460px) {
  .c-form-input-file {
    font-size: 14px;
  }
}

.c-form-input-file::-webkit-file-upload-button {
  background: var(--back);
  color: rgba(var(--black-rgb), 0.6);
  border: none;
  border-radius: 50px;
  padding: 12px 40px;
  text-align: center;
  margin-right: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.c-form-input-file::file-selector-button {
  background: var(--back);
  color: rgba(var(--black-rgb), 0.6);
  border: none;
  border-radius: 50px;
  padding: 12px 40px;
  text-align: center;
  margin-right: 20px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 460px) {
  .c-form-input-file::-webkit-file-upload-button {
    padding: 12px 20px;
    font-size: 14px;
  }
  .c-form-input-file::file-selector-button {
    padding: 12px 20px;
    font-size: 14px;
  }
}

.c-form-cap {
  line-height: 1.5;
  color: var(--sub);
  font-weight: 400;
}

/* 個⼈情報の取扱いについて
----------------------------------------------------------------- */
.c-form-privacy {
  padding: 2.5rem 3.75rem;
}
@media screen and (max-width: 834px) {
  .c-form-privacy {
    padding: 1.875rem 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .c-form-privacy {
    padding: 1.875rem 5% 3.125rem;
  }
}
.c-form-privacy .c-form-privacy__panel {
  font-size: 14px;
  height: 180px;
  margin-top: 1.875rem;
  padding: 1.5rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
  margin-left: auto;
  margin-right: auto;
}
.c-form-privacy .c-form-required:after {
  position: relative;
  left: auto;
  top: auto;
  bottom: auto;
  -webkit-transform: none;
          transform: none;
  display: inline-block;
}
@media screen and (max-width: 834px) {
  .c-form-privacy .c-form-required:after {
    top: -2px;
    right: 0px;
  }
}
@media screen and (max-width: 460px) {
  .c-form-privacy .c-form-required:after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: 0;
    top: auto;
    bottom: -30px;
  }
}

.c-form-checkfocus {
  cursor: pointer;
}

.c-form-notsale__attention {
  vertical-align: middle;
}
.c-form-notsale__attention img {
  margin-right: 10px;
  margin-top: -4px;
}
.c-form-notsale__attention p {
  color: var(--main);
  display: inline-block;
  font-weight: 700;
}

.c-form-notsale__wrap {
  padding: 2.5rem;
  background-color: var(--back);
}
@media screen and (max-width: 460px) {
  .c-form-notsale__wrap {
    padding: 1.875rem 1.25rem;
  }
}
.c-form-notsale__wrap .c-form-notsale__cheackbox {
  margin-top: 1.875rem;
  text-align: center;
  background-color: var(--white);
  padding: 1.875rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 460px) {
  .c-form-notsale__wrap .c-form-notsale__cheackbox {
    margin-top: 1.25rem;
    padding: 1.875rem 1.25rem 3.125rem;
  }
}
.c-form-notsale__wrap .c-form-required:after {
  position: relative;
  left: auto;
  top: auto;
  bottom: auto;
  -webkit-transform: none;
          transform: none;
  display: inline-block;
}
@media screen and (max-width: 460px) {
  .c-form-notsale__wrap .c-form-required:after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: 0;
    top: auto;
    bottom: 20px;
  }
}

/* ==========================================================================
ボタン
=========================================================================*/
/* メインボタン
----------------------------------------------------------------- */
.c-btn-main,
.c-btn-main--sub,
.c-btn-main--white,
.c-btn-main--sub-white,
.c-btn-white,
.c-btn-main--win,
.c-btn-main--lg--sub,
.c-btn-main--lg--sub-white,
.c-btn-main--lg--white {
  text-align: center;
  max-width: 310px;
  width: 100%;
  position: relative;
}
.c-btn-main::after,
.c-btn-main--sub::after,
.c-btn-main--white::after,
.c-btn-main--sub-white::after,
.c-btn-white::after,
.c-btn-main--win::after,
.c-btn-main--lg--sub::after,
.c-btn-main--lg--sub-white::after,
.c-btn-main--lg--white::after {
  content: "";
  display: block;
  background-color: var(--main);
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -4px;
  position: absolute;
  border-radius: 50px;
}
.c-btn-main a,
.c-btn-main button,
.c-btn-main--sub a,
.c-btn-main--sub button,
.c-btn-main--white a,
.c-btn-main--white button,
.c-btn-main--sub-white a,
.c-btn-main--sub-white button,
.c-btn-white a,
.c-btn-white button,
.c-btn-main--win a,
.c-btn-main--win button,
.c-btn-main--lg--sub a,
.c-btn-main--lg--sub button,
.c-btn-main--lg--sub-white a,
.c-btn-main--lg--sub-white button,
.c-btn-main--lg--white a,
.c-btn-main--lg--white button {
  display: block;
  background-color: var(--main);
  background-image: url(/resource/images/ico_arrow--white.svg);
  background-size: 7.74px auto;
  background-position: center right 18px;
  background-repeat: no-repeat;
  line-height: 80px;
  border-radius: 50px;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  position: relative;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 460px) {
  .c-btn-main a,
  .c-btn-main button,
  .c-btn-main--sub a,
  .c-btn-main--sub button,
  .c-btn-main--white a,
  .c-btn-main--white button,
  .c-btn-main--sub-white a,
  .c-btn-main--sub-white button,
  .c-btn-white a,
  .c-btn-white button,
  .c-btn-main--win a,
  .c-btn-main--win button,
  .c-btn-main--lg--sub a,
  .c-btn-main--lg--sub button,
  .c-btn-main--lg--sub-white a,
  .c-btn-main--lg--sub-white button,
  .c-btn-main--lg--white a,
  .c-btn-main--lg--white button {
    line-height: 76px;
  }
}
.c-btn-main a .txt,
.c-btn-main button .txt,
.c-btn-main--sub a .txt,
.c-btn-main--sub button .txt,
.c-btn-main--white a .txt,
.c-btn-main--white button .txt,
.c-btn-main--sub-white a .txt,
.c-btn-main--sub-white button .txt,
.c-btn-white a .txt,
.c-btn-white button .txt,
.c-btn-main--win a .txt,
.c-btn-main--win button .txt,
.c-btn-main--lg--sub a .txt,
.c-btn-main--lg--sub button .txt,
.c-btn-main--lg--sub-white a .txt,
.c-btn-main--lg--sub-white button .txt,
.c-btn-main--lg--white a .txt,
.c-btn-main--lg--white button .txt {
  font-weight: 700;
  color: var(--white);
  font-size: 1.125rem;
}
.c-btn-main a:hover,
.c-btn-main button:hover,
.c-btn-main--sub a:hover,
.c-btn-main--sub button:hover,
.c-btn-main--white a:hover,
.c-btn-main--white button:hover,
.c-btn-main--sub-white a:hover,
.c-btn-main--sub-white button:hover,
.c-btn-white a:hover,
.c-btn-white button:hover,
.c-btn-main--win a:hover,
.c-btn-main--win button:hover,
.c-btn-main--lg--sub a:hover,
.c-btn-main--lg--sub button:hover,
.c-btn-main--lg--sub-white a:hover,
.c-btn-main--lg--sub-white button:hover,
.c-btn-main--lg--white a:hover,
.c-btn-main--lg--white button:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.c-btn-main--sub::after {
  background-color: var(--main);
}
.c-btn-main--sub a,
.c-btn-main--sub button {
  background-color: var(--sub);
}

.c-btn-main--white::after {
  background-color: var(--white);
}
.c-btn-main--sub-white::after {
  background-color: var(--white);
}
.c-btn-main--sub-white a,
.c-btn-main--sub-white button {
  background-color: var(--sub);
}

.c-btn-white a,
.c-btn-white button {
  background-color: var(--white);
  background-image: url(/resource/images/ico_arrow_main.svg);
}

.c-btn-main--win a {
  background-image: url(/resource/images/ico_win_white.svg);
  background-size: 16px auto;
}
.c-btn-main--win a:hover {
  background-image: url(/resource/images/ico_win_white.svg);
}

.c-btn-main--lg--sub,
.c-btn-main--lg--sub-white,
.c-btn-main--lg--white {
  max-width: initial;
}
.c-btn-main--lg--sub a,
.c-btn-main--lg--sub button,
.c-btn-main--lg--sub-white a,
.c-btn-main--lg--sub-white button,
.c-btn-main--lg--white a,
.c-btn-main--lg--white button {
  height: 90px;
  position: relative;
  background-color: var(--sub);
}
@media screen and (max-width: 460px) {
  .c-btn-main--lg--sub a,
  .c-btn-main--lg--sub button,
  .c-btn-main--lg--sub-white a,
  .c-btn-main--lg--sub-white button,
  .c-btn-main--lg--white a,
  .c-btn-main--lg--white button {
    height: 80px;
  }
}
.c-btn-main--lg--sub a .hukidashi,
.c-btn-main--lg--sub button .hukidashi,
.c-btn-main--lg--sub-white a .hukidashi,
.c-btn-main--lg--sub-white button .hukidashi,
.c-btn-main--lg--white a .hukidashi,
.c-btn-main--lg--white button .hukidashi {
  background-color: var(--white);
  border-radius: 50px;
  padding: 5px 30px;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  line-height: 1.3;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: none;
  display: inline-block;
}
.c-btn-main--lg--sub a .hukidashi::before,
.c-btn-main--lg--sub button .hukidashi::before,
.c-btn-main--lg--sub-white a .hukidashi::before,
.c-btn-main--lg--sub-white button .hukidashi::before,
.c-btn-main--lg--white a .hukidashi::before,
.c-btn-main--lg--white button .hukidashi::before {
  content: "";
  display: block;
  background-color: var(--white);
  width: 9px;
  height: 9px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(0% 0, 50% 100%, 100% 0%);
          clip-path: polygon(0% 0, 50% 100%, 100% 0%);
}
.c-btn-main--lg--sub a .txt,
.c-btn-main--lg--sub button .txt,
.c-btn-main--lg--sub-white a .txt,
.c-btn-main--lg--sub-white button .txt,
.c-btn-main--lg--white a .txt,
.c-btn-main--lg--white button .txt {
  color: var(--white);
  position: relative;
  display: inline-block;
  line-height: 1.3;
  font-size: 1.4375rem;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 460px) {
  .c-btn-main--lg--sub a .txt,
  .c-btn-main--lg--sub button .txt,
  .c-btn-main--lg--sub-white a .txt,
  .c-btn-main--lg--sub-white button .txt,
  .c-btn-main--lg--white a .txt,
  .c-btn-main--lg--white button .txt {
    font-size: 1.25rem;
  }
}

.c-btn-main--lg--sub-white::after {
  background-color: var(--white);
}

.c-btn-main--lg--white::after {
  background-color: var(--sub);
}
.c-btn-main--lg--white a,
.c-btn-main--lg--white button {
  background-color: var(--white);
}
.c-btn-main--lg--white a .txt,
.c-btn-main--lg--white button .txt {
  color: var(--black);
}

/* サブボタン ⚠️使用しない場合は削除 or コメントアウト
----------------------------------------------------------------- */
.c-btn-sub a,
.c-btn-sub .c-btn-sub__inner,
.c-btn-sub button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 460px) {
  .c-btn-sub a,
  .c-btn-sub .c-btn-sub__inner,
  .c-btn-sub button {
    gap: 5px;
  }
}
.c-btn-sub a .txt,
.c-btn-sub .c-btn-sub__inner .txt,
.c-btn-sub button .txt {
  position: relative;
  display: inline-block;
  line-height: 1.4;
  font-weight: 700;
}
.c-btn-sub a .txt::before,
.c-btn-sub .c-btn-sub__inner .txt::before,
.c-btn-sub button .txt::before {
  content: "";
  display: block;
  background-color: var(--black);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-btn-sub a .btn,
.c-btn-sub .c-btn-sub__inner .btn,
.c-btn-sub button .btn {
  display: inline-block;
  background-color: var(--main);
  border-radius: 100%;
  background-image: url(/resource/images/ico_arrow--white.svg);
  background-position: center;
  background-size: 6px auto;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 460px) {
  .c-btn-sub a .btn,
  .c-btn-sub .c-btn-sub__inner .btn,
  .c-btn-sub button .btn {
    width: 25px;
    height: 25px;
  }
}
.c-btn-sub a:hover,
.c-btn-sub .c-btn-sub__inner:hover,
.c-btn-sub button:hover {
  color: var(--sub);
}
.c-btn-sub a:hover .txt::before,
.c-btn-sub .c-btn-sub__inner:hover .txt::before,
.c-btn-sub button:hover .txt::before {
  content: none;
}
.c-btn-sub a:hover .btn,
.c-btn-sub .c-btn-sub__inner:hover .btn,
.c-btn-sub button:hover .btn {
  background-color: var(--sub);
}

/* カード型の横長ボタン 1段 ⚠️使用しない場合は削除 or コメントアウト
----------------------------------------------------------------- */
.c-btn-card,
.c-btn-card--white {
  background-color: var(--back);
  padding: 1.875rem 5.625rem 1.875rem 3.75rem;
  position: relative;
  display: block;
}
@media screen and (max-width: 1024px) {
  .c-btn-card,
  .c-btn-card--white {
    padding: 2.5rem 3.75rem 2.5rem 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .c-btn-card,
  .c-btn-card--white {
    padding: 1.875rem;
  }
}
.c-btn-card::before,
.c-btn-card--white::before {
  content: "";
  display: block;
  position: absolute;
  right: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--main);
  background-image: url("/resource/images/ico_arrow_white.svg");
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .c-btn-card::before,
  .c-btn-card--white::before {
    width: 40px;
    height: 40px;
    background-size: 8px auto;
  }
}
.c-btn-card .c-btn-card__ttl,
.c-btn-card--white .c-btn-card__ttl {
  margin-bottom: 8px;
  color: var(--main);
}
.c-btn-card .c-btn-card__cont,
.c-btn-card--white .c-btn-card__cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-collapse: separate;
  border-spacing: 5px;
}
.c-btn-card .c-btn-card__cont th,
.c-btn-card--white .c-btn-card__cont th {
  font-weight: 700;
  width: 80px;
}
.c-btn-card .c-btn-card__cont th,
.c-btn-card .c-btn-card__cont td,
.c-btn-card--white .c-btn-card__cont th,
.c-btn-card--white .c-btn-card__cont td {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-card:hover,
.c-btn-card--white:hover {
  opacity: 0.7;
}
.c-btn-card:hover::before,
.c-btn-card--white:hover::before {
  background-color: var(--sub);
}
.c-btn-card:hover .c-btn-card__cont th,
.c-btn-card:hover .c-btn-card__cont td,
.c-btn-card--white:hover .c-btn-card__cont th,
.c-btn-card--white:hover .c-btn-card__cont td {
  color: var(--main);
}

.c-btn-card--white {
  background-color: var(--white);
}

/* PDF、Excel、Wordボタン（情報公開） 1段 ⚠️使用しない場合は削除 or コメントアウト
----------------------------------------------------------------- */
.c-btn-pdf a,
.c-btn-excel a,
.c-btn-word a {
  display: block;
  padding: 20px;
  background-color: var(--back);
  text-align: left;
  position: relative;
}
.c-btn-pdf a::before,
.c-btn-excel a::before,
.c-btn-word a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 23px;
  vertical-align: top;
  background-image: url(/resource/images/ico_pdf.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 11px;
  margin-top: 4px;
}
.c-btn-pdf a::after,
.c-btn-excel a::after,
.c-btn-word a::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/resource/images/ico_win2.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-pdf a span,
.c-btn-excel a span,
.c-btn-word a span {
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}
.c-btn-pdf a:hover,
.c-btn-excel a:hover,
.c-btn-word a:hover {
  opacity: 0.7;
}
.c-btn-pdf a:hover::after,
.c-btn-excel a:hover::after,
.c-btn-word a:hover::after {
  background-image: url(/resource/images/ico_win2_main.svg);
}
.c-btn-pdf a:hover span,
.c-btn-excel a:hover span,
.c-btn-word a:hover span {
  color: var(--main);
}

.c-btn-excel a::before {
  background-image: url(/resource/images/ico_excel.svg);
}

.c-btn-word a::before {
  background-image: url(/resource/images/ico_word.svg);
}

/* ==========================================================================
カード
=========================================================================*/
/* 余白だけのシンプルなカード
----------------------------------------------------------------- */
.c-card-basic {
  padding: 1.875rem;
}
@media screen and (max-width: 460px) {
  .c-card-basic {
    padding: 1.875rem 1.25rem;
  }
}

.c-card--sm {
  padding: 1.25rem;
}
@media screen and (max-width: 460px) {
  .c-card--sm {
    padding: 1.875rem 1.25rem;
  }
}

.c-card--md {
  padding: 2.5rem;
}
@media screen and (max-width: 460px) {
  .c-card--md {
    padding: 1.875rem 1.25rem;
  }
}

.c-card--lg {
  padding: 3.75rem;
}
@media screen and (max-width: 834px) {
  .c-card--lg {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .c-card--lg {
    padding: 1.875rem 1.25rem;
  }
}

/* 画像とその下にタイトルとテキストのあるカード ※ボタンつき
----------------------------------------------------------------- */
.c-card-img {
  position: relative;
}
.c-card-img .c-card-img__head img {
  max-width: 100%;
  height: auto;
}
.c-card-img .c-card-img__cont {
  padding: 1.875rem;
}
@media screen and (max-width: 834px) {
  .c-card-img .c-card-img__cont {
    padding: 1.875rem 1.25rem;
  }
}
.c-card-img .c-card-img__cont .c-card-img__ttl {
  text-align: center;
  margin-bottom: 1rem;
}
.c-card-img .c-card-img__cont .c-card-img__txt {
  margin-top: 10px;
}
.c-card-img:hover {
  opacity: 0.7;
}
.c-card-img:hover .c-btn-sub .c-btn-sub__inner {
  color: var(--sub);
}
.c-card-img:hover .c-btn-sub .c-btn-sub__inner .txt::before {
  content: none;
}
.c-card-img:hover .c-btn-sub .c-btn-sub__inner .btn {
  background-color: var(--sub);
}

/* 数字つき　タイトルとテキストのカード
----------------------------------------------------------------- */
.c-card-num {
  padding: 1.875rem 2.5rem;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .c-card-num {
    padding: 1.875rem 1.25rem;
  }
}
.c-card-num .c-card-num__num {
  color: var(--main);
  font-size: 1.75rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
.c-card-num .c-card-num__num span {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}
.c-card-num .c-card-num__ttl {
  margin-top: 10px;
  text-align: center;
  font-size: 1.75rem;
}
.c-card-num .c-card-num__txt {
  margin-top: 1.875rem;
  text-align: center;
}

/* サムネイル画像とタイトルのリンクのついたカード
----------------------------------------------------------------- */
.c-card-tmb-link {
  padding: 0;
  position: relative;
}
.c-card-tmb-link .c-card-tmb-link__img {
  overflow: hidden;
  height: 206px;
}
.c-card-tmb-link .c-card-tmb-link__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.c-card-tmb-link .c-card-tmb-link__body {
  margin-top: 1.25rem;
}
.c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat .cat {
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  background-color: var(--main);
  padding: 4px 8px;
}
@media screen and (max-width: 834px) {
  .c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat .cat {
    font-size: 14px;
    padding: 3px 6px;
  }
}
.c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__cat .name {
  font-weight: 500;
  line-height: 1.4;
  color: var(--main);
}
.c-card-tmb-link .c-card-tmb-link__body .c-card-tmb-link__ttl {
  margin-top: 10px;
}
.c-card-tmb-link:hover {
  opacity: 0.7;
}

/* サムネイル画像とタイトルのほか、カテゴリもあるリンクのついたカード
----------------------------------------------------------------- */
.c-card-tmb-cat {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: auto;
}
.c-card-tmb-cat .c-card-tmb-cat__head img {
  max-width: 100%;
  height: auto;
}
.c-card-tmb-cat .c-card-tmb-cat__cont {
  padding: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-card-tmb-cat .c-card-tmb-cat__cont .c-card-tmb-cat__cat {
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  background-color: var(--main);
  padding: 4px 8px;
}
@media screen and (max-width: 834px) {
  .c-card-tmb-cat .c-card-tmb-cat__cont .c-card-tmb-cat__cat {
    padding: 3px 6px;
    font-size: 14px;
  }
}
.c-card-tmb-cat .c-card-tmb-cat__cont .c-card-tmb-cat__ttl {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.c-card-tmb-cat .c-card-tmb-cat__cont .c-card-tmb-cat__txt {
  margin-top: 5px;
}
.c-card-tmb-cat:hover {
  opacity: 0.7;
}

/* データカード（数字付きカード）
----------------------------------------------------------------- */
.c-card-data {
  padding: 1.875rem;
}
.c-card-data .c-card-data__txt-data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 10px;
}
.c-card-data .c-card-data__txt-data .num {
  color: var(--main);
  font-weight: 700;
  line-height: 1;
  font-family: "Jost", sans-serif;
  font-size: 6.25rem;
}
.c-card-data .c-card-data__txt-data .txt {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* ==========================================================================
タイトル
=========================================================================*/
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

h2 {
  font-size: 3.0625rem;
}
@media screen and (max-width: 834px) {
  h2 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 2.5rem;
}
@media screen and (max-width: 834px) {
  h3 {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 460px) {
  h3 {
    font-size: 2.0625rem;
  }
}

h4 {
  font-size: 1.75rem;
}
@media screen and (max-width: 834px) {
  h4 {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 460px) {
  h4 {
    font-size: 1.4375rem;
  }
}

h5 {
  font-size: 1.4375rem;
}
@media screen and (max-width: 834px) {
  h5 {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 460px) {
  h5 {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1.25rem;
}
@media screen and (max-width: 834px) {
  h6 {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 460px) {
  h6 {
    font-size: 1.125rem;
  }
}

/* 見出し・タイトル
----------------------------------------------------------------- */
.c-ttl-main,
.c-ttl-main--white {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 834px) {
  .c-ttl-main,
  .c-ttl-main--white {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-main,
  .c-ttl-main--white {
    margin-bottom: 1.875rem;
  }
}
.c-ttl-main .en,
.c-ttl-main--white .en {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 1.1875rem;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--main);
}
@media screen and (max-width: 834px) {
  .c-ttl-main .en,
  .c-ttl-main--white .en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-main .en,
  .c-ttl-main--white .en {
    font-size: 14px;
  }
}
.c-ttl-main .ja,
.c-ttl-main--white .ja {
  display: block;
  font-size: 3rem;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .c-ttl-main .ja,
  .c-ttl-main--white .ja {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-main .ja,
  .c-ttl-main--white .ja {
    font-size: 2.0625rem;
  }
}

.c-ttl-main--white {
  margin-bottom: 2.5rem;
  text-align: center;
}
.c-ttl-main--white .en {
  color: var(--white);
}
.c-ttl-main--white .ja {
  color: var(--white);
}

.c-ttl-sub {
  color: var(--main);
  border-bottom: 1px solid var(--main);
  padding-bottom: 8px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 834px) {
  .c-ttl-sub {
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-sub {
    font-size: 1.75rem;
  }
}

/* アイコン付きの見出し
----------------------------------------------------------------- */
.c-ttl-ico {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.125rem;
}
.c-ttl-ico img {
  height: 50px;
}

/* ==========================================================================
スライド（swiper、slick）
=========================================================================*/
/* 
-----------------------------------------------------*/
.swiper.carlistSwiper {
  width: 100%;
  max-width: initial;
}
/* サムネイル付きのスワイパー
-----------------------------------------------------*/
.c-slide-tmb__wrap {
  position: relative;
}
.c-slide-tmb__wrap .swiper.tmbslide_main {
  width: 100%;
  aspect-ratio: 1080/567;
}
.c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper {
  width: 100%;
}
.c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper .p-works__tmb.swiper-slide {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.c-slide-tmb__wrap .swiper.tmbslide_main .swiper-wrapper .p-works__tmb.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: initial;
  border: none;
}
.c-slide-tmb__wrap .swiper-button-next,
.c-slide-tmb__wrap .swiper-button-prev {
  z-index: 2;
  width: 60px;
  height: 60px;
  display: block;
  background: initial;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}
@media screen and (max-width: 460px) {
  .c-slide-tmb__wrap .swiper-button-next,
  .c-slide-tmb__wrap .swiper-button-prev {
    width: 40px;
    height: 40px;
    top: 41%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.c-slide-tmb__wrap .swiper-button-next:after,
.c-slide-tmb__wrap .swiper-button-prev:after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-slide-tmb__wrap .swiper-button-next::before,
.c-slide-tmb__wrap .swiper-button-prev::before {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: 13px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
}
.c-slide-tmb__wrap .swiper-button-next:hover:after,
.c-slide-tmb__wrap .swiper-button-prev:hover:after {
  background-color: var(--sub);
}
.c-slide-tmb__wrap .swiper-button-next:hover::before,
.c-slide-tmb__wrap .swiper-button-prev:hover::before {
  background-image: url(/resource/images/ico_arrow_white.svg);
}
.c-slide-tmb__wrap .swiper-button-next {
  right: -25px;
}
@media screen and (max-width: 460px) {
  .c-slide-tmb__wrap .swiper-button-next {
    right: -15px;
  }
}
.c-slide-tmb__wrap .swiper-button-prev {
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
  left: -25px;
}
@media screen and (max-width: 460px) {
  .c-slide-tmb__wrap .swiper-button-prev {
    -webkit-transform: scale(-1, 1) translateY(0%);
            transform: scale(-1, 1) translateY(0%);
    left: -15px;
  }
}

.swiper.tmbslide_tmb {
  width: 100%;
  max-width: initial;
  margin-top: 2.5rem;
}
@media screen and (max-width: 460px) {
  .swiper.tmbslide_tmb {
    margin-top: 1.25rem;
  }
}
.swiper.tmbslide_tmb .swiper-wrapper .swiper-slide {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 208/109;
}
.swiper.tmbslide_tmb .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: initial;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper.tmbslide_tmb .swiper-wrapper .swiper-slide:hover img {
  opacity: 0.7;
}

/* スマホでスワイパーに変化
-----------------------------------------------------*/
.c-slide-sp__wrap {
  position: relative;
}
@media screen and (max-width: 460px) {
  .c-slide-sp__wrap {
    padding-bottom: 28px;
  }
}
.c-slide-sp__wrap .sp-pagination.swiper-pagination {
  bottom: -8px;
  z-index: 1;
}
@media screen and (min-width: 461px) {
  .c-slide-sp__wrap .sp-pagination.swiper-pagination {
    display: none;
  }
}
.c-slide-sp__wrap .sp-pagination.swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
  background-color: rgba(var(--whitesmoke-rgb), 1);
  opacity: 1;
  width: 8px;
  height: 8px;
}
.c-slide-sp__wrap .sp-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main);
}

.c-slide-sp {
  position: relative;
}
.c-slide-sp .swiper.spSwiper .swiper-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  gap: 10px;
}
@media screen and (max-width: 460px) {
  .c-slide-sp .swiper.spSwiper .swiper-wrapper {
    gap: 0;
  }
}
.c-slide-sp .swiper.spSwiper .swiper-wrapper .swiper-slide {
  width: calc((100% - 30px) / 4);
}
@media screen and (max-width: 460px) {
  .c-slide-sp .swiper.spSwiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
  }
}
.c-slide-sp .slide-next.swiper-button-next,
.c-slide-sp .slide-prev.swiper-button-prev {
  z-index: 2;
  width: 30px;
  height: 30px;
  display: block;
  background: initial;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}
@media screen and (min-width: 461px) {
  .c-slide-sp .slide-next.swiper-button-next,
  .c-slide-sp .slide-prev.swiper-button-prev {
    display: none;
  }
  .c-slide-sp .slide-next.swiper-button-next::before, .c-slide-sp .slide-next.swiper-button-next::after,
  .c-slide-sp .slide-prev.swiper-button-prev::before,
  .c-slide-sp .slide-prev.swiper-button-prev::after {
    content: none;
  }
}
.c-slide-sp .slide-next.swiper-button-next:after,
.c-slide-sp .slide-prev.swiper-button-prev:after {
  content: "";
  display: block;
  background-color: var(--back);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-slide-sp .slide-next.swiper-button-next::before,
.c-slide-sp .slide-prev.swiper-button-prev::before {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
}
.c-slide-sp .slide-next.swiper-button-next:hover:after,
.c-slide-sp .slide-prev.swiper-button-prev:hover:after {
  background-color: var(--main);
}
.c-slide-sp .slide-next.swiper-button-next:hover::before,
.c-slide-sp .slide-prev.swiper-button-prev:hover::before {
  background-image: url(/resource/images/ico_arrow_white.svg);
}
.c-slide-sp .slide-next.swiper-button-next {
  right: -10px;
}
.c-slide-sp .slide-prev.swiper-button-prev {
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
  left: -10px;
}

/* マップスワイパーに変化
-----------------------------------------------------*/
.c-slide-map__wrap .c-slide-map__img {
  position: relative;
  width: 100%;
}
.c-slide-map__wrap .c-slide-map__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li {
  position: absolute;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li button {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background-color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li button:hover {
  opacity: 0.7;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--01 {
  left: 20%;
  top: 30%;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--02 {
  right: 40%;
  top: 30%;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--03 {
  left: 40%;
  bottom: 30%;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--04 {
  right: 20%;
  bottom: 30%;
}

.swiper.mapSwiper {
  margin-top: 1.25rem;
  overflow: visible;
  position: relative;
}
.swiper.mapSwiper .swiper-wrapper .swiper-slide {
  padding: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
.swiper.mapSwiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
@media screen and (max-width: 834px) {
  .swiper.mapSwiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}
.swiper.mapSwiper .swiper-wrapper .swiper-slide.swiper-slide-prev,
.swiper.mapSwiper .swiper-wrapper .swiper-slide .swiper-slide-next {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.map-next.swiper-button-next,
.map-prev.swiper-button-prev {
  z-index: 2;
  width: 40px;
  height: 62px;
  display: block;
  background: initial;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}
@media screen and (max-width: 834px) {
  .map-next.swiper-button-next,
  .map-prev.swiper-button-prev {
    width: 20px;
  }
}
@media screen and (max-width: 460px) {
  .map-next.swiper-button-next,
  .map-prev.swiper-button-prev {
    width: 20px;
  }
}
.map-next.swiper-button-next:after,
.map-prev.swiper-button-prev:after {
  content: none;
}
.map-next.swiper-button-next::before,
.map-prev.swiper-button-prev::before {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .map-next.swiper-button-next::before,
  .map-prev.swiper-button-prev::before {
    background-size: 30px auto;
  }
}
@media screen and (max-width: 460px) {
  .map-next.swiper-button-next::before,
  .map-prev.swiper-button-prev::before {
    background-size: 20px auto;
  }
}
.map-next.swiper-button-next:hover::before,
.map-prev.swiper-button-prev:hover::before {
  background-image: url(/resource/images/ico_arrow_main.svg);
}

.map-next.swiper-button-next {
  right: 100px;
}
@media screen and (max-width: 834px) {
  .map-next.swiper-button-next {
    right: 15px;
  }
}
@media screen and (max-width: 460px) {
  .map-next.swiper-button-next {
    right: -5px;
  }
}

.map-prev.swiper-button-prev {
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
  left: 100px;
}
@media screen and (max-width: 834px) {
  .map-prev.swiper-button-prev {
    left: 15px;
  }
}
@media screen and (max-width: 460px) {
  .map-prev.swiper-button-prev {
    left: -5px;
  }
}

/* ==========================================================================
トップページ
========================================================================== */
/* スライドショー
----------------------------------------------------------------- */
.p-idx-slide__wrap {
  width: 100%;
  position: relative;
}
.p-idx-slide__wrap::before {
  content: "";
  position: absolute;
  display: block;
  background-color: var(--back);
  width: 100%;
  height: 241px;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 460px) {
  .p-idx-slide__wrap::before {
    height: 100px;
  }
}

.p-idx-slide__items .p-idx-slide-item {
  aspect-ratio: 1240/465;
}
@media screen and (max-width: 460px) {
  .p-idx-slide__items .p-idx-slide-item {
    aspect-ratio: 340/255;
  }
}
.p-idx-slide__items .p-idx-slide-item picture {
  width: 100%;
  height: 100%;
  display: block;
}
.p-idx-slide__items .p-idx-slide-item picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.p-idx-slide__wrap {
  position: relative;
}
.p-idx-slide__wrap .fv-swiper-pagination.swiper-pagination-bullets {
  position: absolute;
  right: -34px;
  bottom: 0;
  top: auto;
  left: auto;
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 834px) {
  .p-idx-slide__wrap .fv-swiper-pagination.swiper-pagination-bullets {
    bottom: -20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    gap: 5px;
  }
}
.p-idx-slide__wrap .swiper-pagination-bullet {
  display: block !important;
  background-color: var(--main);
  opacity: 1;
  width: 8px;
  height: 8px;
  border-radius: 100px;
}
.p-idx-slide__wrap .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--sub);
}

.p-idx-slide__wrap {
  padding: 0 4.6120058565%;
}
.p-idx-slide__wrap .p-idx-slide__inner {
  position: relative;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
.p-idx-slide__wrap .p-idx-slide__inner .swiper-button-next,
.p-idx-slide__wrap .p-idx-slide__inner .swiper-button-prev {
  position: absolute;
  z-index: 2;
  width: 60px;
  height: 60px;
  display: block;
  background: initial;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}
@media screen and (max-width: 460px) {
  .p-idx-slide__wrap .p-idx-slide__inner .swiper-button-next,
  .p-idx-slide__wrap .p-idx-slide__inner .swiper-button-prev {
    width: 40px;
    height: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.p-idx-slide__wrap .p-idx-slide__inner .swiper-button-next:after,
.p-idx-slide__wrap .p-idx-slide__inner .swiper-button-prev:after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 3px solid var(--back);
}
@media screen and (max-width: 460px) {
  .p-idx-slide__wrap .p-idx-slide__inner .swiper-button-next:after,
  .p-idx-slide__wrap .p-idx-slide__inner .swiper-button-prev:after {
    border: 2px solid var(--back);
  }
}
.p-idx-slide__wrap .p-idx-slide__inner .swiper-button-next::before,
.p-idx-slide__wrap .p-idx-slide__inner .swiper-button-prev::before {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_arrow--main.svg);
  background-repeat: no-repeat;
  background-size: 13px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
}
@media screen and (max-width: 460px) {
  .p-idx-slide__wrap .p-idx-slide__inner .swiper-button-next::before,
  .p-idx-slide__wrap .p-idx-slide__inner .swiper-button-prev::before {
    background-size: 10px auto;
  }
}
.p-idx-slide__wrap .p-idx-slide__inner .swiper-button-next:hover:after,
.p-idx-slide__wrap .p-idx-slide__inner .swiper-button-prev:hover:after {
  background-color: var(--main);
}
.p-idx-slide__wrap .p-idx-slide__inner .swiper-button-next:hover::before,
.p-idx-slide__wrap .p-idx-slide__inner .swiper-button-prev:hover::before {
  background-image: url(/resource/images/ico_arrow--white.svg);
}
.p-idx-slide__wrap .p-idx-slide__inner .swiper-button-next {
  right: -30px;
}
@media screen and (max-width: 460px) {
  .p-idx-slide__wrap .p-idx-slide__inner .swiper-button-next {
    right: -15px;
  }
}
.p-idx-slide__wrap .p-idx-slide__inner .swiper-button-prev {
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
  left: -30px;
}
@media screen and (max-width: 460px) {
  .p-idx-slide__wrap .p-idx-slide__inner .swiper-button-prev {
    -webkit-transform: scale(-1, 1) translateY(-50%);
            transform: scale(-1, 1) translateY(-50%);
    left: -15px;
  }
}

/* セクション1
----------------------------------------------------------------- */
.p-idx-sec1__wrap {
  padding: 6.25rem 0 7.5rem;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-sec1__wrap {
    padding: 5rem 6.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__wrap {
    padding: 3.75rem 0 5rem;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.1727672035%;
  padding-left: 10.4685212299%;
  padding-right: 3.953147877%;
}
@media screen and (max-width: 1024px) {
  .p-idx-sec1__wrap .p-idx-sec1__inner {
    gap: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 4.6341463415%;
    padding-right: 4.6341463415%;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-sec1__wrap .p-idx-sec1__inner {
    gap: 20px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 4.6341463415%;
    padding-right: 4.6341463415%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__wrap .p-idx-sec1__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0rem;
    padding-left: 5.3333333333%;
    padding-right: 5.3333333333%;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__img {
  width: 64.1573994867%;
  overflow: hidden;
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__wrap .p-idx-sec1__img {
    width: 100%;
    position: relative;
    right: auto;
    top: auto;
    margin-top: 2.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-idx-sec1__wrap .p-idx-sec1__cont {
  width: 33.6184773311%;
}
@media screen and (max-width: 1024px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont {
    width: 45.1612903226%;
    min-height: initial;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont {
    width: 47.311827957%;
    min-height: initial;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont {
    width: 100%;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__ttl {
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: 800;
  color: var(--main);
}
@media screen and (max-width: 834px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__ttl {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__ttl {
    font-size: 1.4375rem;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt {
  line-height: 2;
  margin-top: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt {
    margin-top: 1.875rem;
  }
}

.p-idx-sec1__car-logo {
  overflow-x: clip;
  width: 100%;
  margin-top: 3.75rem;
}
.p-idx-sec1__car-logo .p-idx-sec1__car-logo-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 121px;
  gap: 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: car-logo-slide 40s linear infinite;
          animation: car-logo-slide 40s linear infinite;
}
@media screen and (max-width: 834px) {
  .p-idx-sec1__car-logo .p-idx-sec1__car-logo-track {
    height: 80px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec1__car-logo .p-idx-sec1__car-logo-track {
    height: 60px;
    gap: 20px;
  }
}
.p-idx-sec1__car-logo .p-idx-sec1__car-logo-track picture {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-idx-sec1__car-logo .p-idx-sec1__car-logo-track picture img {
  display: block;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@-webkit-keyframes car-logo-slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes car-logo-slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* キャンペーン
----------------------------------------------------------------- */
.p-idx-campaign__wrap {
  padding: 0 0 6.25rem;
}
@media screen and (max-width: 834px) {
  .p-idx-campaign__wrap {
    padding: 0 0 5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-campaign__wrap {
    padding: 0 0 3.75rem;
  }
}
.p-idx-campaign__wrap .p-idx-campaign__inner {
  padding: 3.125rem;
}
@media screen and (max-width: 460px) {
  .p-idx-campaign__wrap .p-idx-campaign__inner {
    padding: 3.125rem 1.875rem 1.875rem;
  }
}
.p-idx-campaign__wrap .p-idx-campaign__inner .p-idx-campaign__ttl {
  gap: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 2.25rem;
  margin-top: -66px;
}
@media screen and (max-width: 460px) {
  .p-idx-campaign__wrap .p-idx-campaign__inner .p-idx-campaign__ttl {
    gap: 10px;
    margin-bottom: 1.25rem;
  }
}
.p-idx-campaign__wrap .p-idx-campaign__inner .p-idx-campaign__ttl .en {
  background-color: var(--main);
  padding: 8px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  font-size: 1.25rem;
  font-family: "Jost", sans-serif;
  line-height: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
}
@media screen and (max-width: 460px) {
  .p-idx-campaign__wrap .p-idx-campaign__inner .p-idx-campaign__ttl .en {
    padding: 6px 16px;
    font-size: 1.125rem;
  }
}
.p-idx-campaign__wrap .p-idx-campaign__inner .p-idx-campaign__ttl .ja {
  font-size: 2.25rem;
  color: var(--main);
  line-height: 1;
}
@media screen and (max-width: 460px) {
  .p-idx-campaign__wrap .p-idx-campaign__inner .p-idx-campaign__ttl .ja {
    font-size: 1.5rem;
  }
}
.p-idx-campaign__wrap .p-idx-campaign__inner .c-flex {
  gap: 2.5rem;
  margin: auto;
  max-width: 1000px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 460px) {
  .p-idx-campaign__wrap .p-idx-campaign__inner .c-flex {
    gap: 1.25rem;
  }
}
.p-idx-campaign__wrap .p-idx-campaign__inner .c-flex-1 {
  border-radius: 5px;
  background-color: var(--white);
  padding: 10px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media screen and (max-width: 460px) {
  .p-idx-campaign__wrap .p-idx-campaign__inner .c-flex-1 {
    padding: 6px;
  }
}
.p-idx-campaign__wrap .p-idx-campaign__inner .c-flex-1 picture {
  border-radius: 3px;
  overflow: hidden;
}
/* フラット7の特長
----------------------------------------------------------------- */
.p-idx-feature__wrap {
  padding: 6.25rem 0;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap {
    padding: 3.75rem 0 5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-feature__wrap {
    padding: 3.75rem 0;
  }
}
.p-idx-feature__wrap .p-idx-feature__ttl {
  color: var(--white);
  text-align: center;
}
.p-idx-feature__wrap .p-idx-feature__ttl span {
  display: block;
  text-align: center;
}
.p-idx-feature__wrap .p-idx-feature__cont {
  margin-top: 5rem;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__cont {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-feature__wrap .p-idx-feature__cont {
    margin-top: 2.5rem;
  }
}
.p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__num {
  background-color: var(--sub);
  width: 111px;
  height: 111px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 100px;
  margin: 0 auto;
  margin-bottom: 1rem;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__num {
    width: 90px;
    height: 90px;
    margin-bottom: 24px;
  }
}
.p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__num::before {
  content: "";
  display: block;
  background-color: var(--sub);
  width: 18px;
  height: 18px;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  position: absolute;
}
.p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__num p {
  border-radius: 100px;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "Jost", sans-serif;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__num p {
    font-size: 2.25rem;
  }
}
.p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__num p .ja {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__num p .ja {
    font-size: 1.125rem;
  }
}
.p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__sub-ttl {
  margin-bottom: 1.875rem;
  color: var(--white);
  text-align: center;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__sub-ttl {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__sub-ttl {
    line-height: 1.4;
  }
}
.p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__sub-ttl .sm {
  font-size: 1.875rem;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__sub-ttl .sm {
    font-size: 1.375rem;
  }
}
.p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__sub-ttl .mdsm {
  font-size: 2.4375rem;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__sub-ttl .mdsm {
    font-size: 1.75rem;
  }
}
.p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__sub-ttl .md {
  font-size: 3.0625rem;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__sub-ttl .md {
    font-size: 2.125rem;
  }
}
.p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__sub-ttl .lg {
  font-size: 4.3125rem;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__sub-ttl .lg {
    font-size: 3rem;
  }
}
.p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__sub-ttl .lg--en {
  font-size: 5.625rem;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__sub-ttl .lg--en {
    font-size: 5rem;
    line-height: 1;
  }
}
.p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 460px) {
  .p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__inner > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 460px) {
  .p-idx-feature__wrap .p-idx-feature__cont .p-idx-feature__inner > div {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}
.p-idx-feature__wrap .p-idx-feature__point__wrap {
  padding-top: 6.875rem;
}
.p-idx-feature__wrap .p-idx-feature__point__wrap .p-idx-feature__point-ttl {
  margin-bottom: 5.625rem;
  width: 100%;
  background-color: var(--white);
  border-radius: 50px;
  text-align: center;
  font-size: 2.5rem;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 10px 0;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__point__wrap .p-idx-feature__point-ttl {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-feature__wrap .p-idx-feature__point__wrap .p-idx-feature__point-ttl {
    font-size: 1.5rem;
  }
}
.p-idx-feature__wrap .p-idx-feature__point__wrap .p-idx-feature__point-ttl::before {
  content: "";
  display: block;
  background-color: var(--white);
  width: 20px;
  height: 20px;
  bottom: -19px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  position: absolute;
}
.p-idx-feature__wrap .p-idx-feature__point__wrap .p-idx-feature__point-ttl span {
  font-size: 4.375rem;
}
@media screen and (max-width: 460px) {
  .p-idx-feature__wrap .p-idx-feature__point__wrap .p-idx-feature__point-ttl span {
    font-size: 3.125rem;
  }
}
.p-idx-feature__wrap .p-idx-feature__point__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  gap: 3.6036036036%;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__point__inner {
    gap: 20px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-feature__wrap .p-idx-feature__point__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
}
.p-idx-feature__wrap .p-idx-feature__point__inner > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3.125rem 1.875rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__point__inner > div {
    padding: 2.5rem 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-feature__wrap .p-idx-feature__point__inner > div {
    padding: 2.5rem 1.25rem 2.5rem;
  }
}
.p-idx-feature__wrap .p-idx-feature__point__inner > div .num {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  line-height: 1;
  color: var(--white);
  background-color: var(--sub);
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__point__inner > div .num {
    width: 70px;
    height: 70px;
    top: -10px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    font-size: 2.25rem;
    top: -30px;
  }
}
.p-idx-feature__wrap .p-idx-feature__point__inner > div .num::before {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_point.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 25px;
  height: 26px;
  position: absolute;
  left: -16px;
  top: -15px;
}
.p-idx-feature__wrap .p-idx-feature__point__inner > div .p-idx-feature__point__box-ttl {
  color: var(--main);
  position: relative;
  display: inline-block;
  line-height: 1.8;
  text-align: center;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--sub);
          text-decoration-color: var(--sub);
  /* 赤線 */
  text-decoration-thickness: 4px;
  /* 線の太さ */
  text-underline-offset: 10px;
  /* 文字との距離 */
}
@media screen and (max-width: 834px) {
  .p-idx-feature__wrap .p-idx-feature__point__inner > div .p-idx-feature__point__box-ttl {
    text-underline-offset: 8px;
    font-size: 1.5rem;
  }
}

/* セクションイメージ
----------------------------------------------------------------- */
.p-idx-sec-img__wrap {
  height: 598px;
  position: relative;
}
.p-idx-sec-img__wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.2;
  width: 100%;
  height: 100%;
}
.p-idx-sec-img__wrap .l-container {
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-sec-img__wrap {
    height: 400px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec-img__wrap {
    height: 600px;
  }
}
.p-idx-sec-img__wrap .p-idx-sec-img__txt {
  padding-left: 0%;
  padding-top: 9%;
  z-index: 5;
  width: 60%;
}
@media screen and (max-width: 834px) {
  .p-idx-sec-img__wrap .p-idx-sec-img__txt {
    padding-left: 0%;
    padding-top: 10%;
    width: 60%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec-img__wrap .p-idx-sec-img__txt {
    width: 95%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-idx-sec-img__wrap picture {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.p-idx-sec-img__wrap picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  -o-object-position: 100%;
     object-position: 100%;
}
@media screen and (max-width: 1024px) {
  .p-idx-sec-img__wrap picture img {
    -o-object-position: 80%;
       object-position: 80%;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-sec-img__wrap picture img {
    -o-object-position: 71%;
       object-position: 71%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-sec-img__wrap picture img {
    -o-object-position: 80%;
       object-position: 80%;
  }
}

/* 対象車両一覧
----------------------------------------------------------------- */
.p-idx-car-list__wrap {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__wrap {
    padding-bottom: 0rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap {
    padding-bottom: 0rem;
  }
}
.p-idx-car-list__wrap .l-container--car-list {
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
}
.p-idx-car-list__wrap .p-idx-car-list__ttl {
  color: var(--white);
  background-color: var(--main);
  font-size: 2.875rem;
  padding: 1.25rem 1.875rem;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__wrap .p-idx-car-list__ttl {
    font-size: 2.25rem;
    padding: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__ttl {
    font-size: 2rem;
    padding: 1.25rem;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__cont {
  background-color: var(--white);
  padding: 3.75rem 5.3125rem;
}
@media screen and (max-width: 1024px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont {
    padding: 3.75rem 3.75rem;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont {
    padding: 2.5rem 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont {
    padding: 2.5rem 1rem;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__cont__ttl__wrap {
  text-align: center;
}
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__cont__ttl__wrap .p-idx-car-list__cont__ttl {
  position: relative;
  display: inline-block;
  color: var(--sub);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__cont__ttl__wrap .p-idx-car-list__cont__ttl {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__cont__ttl__wrap .p-idx-car-list__cont__ttl {
    font-size: 1.75rem;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__cont__ttl__wrap .p-idx-car-list__cont__ttl::before, .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__cont__ttl__wrap .p-idx-car-list__cont__ttl::after {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_car-list_ttl.svg);
  width: 31px;
  height: 43px;
  position: absolute;
  left: -44px;
  top: 15px;
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__cont__ttl__wrap .p-idx-car-list__cont__ttl::before, .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__cont__ttl__wrap .p-idx-car-list__cont__ttl::after {
    top: 35px;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__cont__ttl__wrap .p-idx-car-list__cont__ttl::after {
  left: auto;
  right: -44px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide {
  margin-top: 3.75rem;
  position: relative;
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide {
    margin-top: 2.5rem;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper.carlistSwiper {
  overflow: hidden;
  overflow-x: clip;
}
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-next,
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-prev {
  z-index: 2;
  width: 60px;
  height: 60px;
  display: block;
  background: initial;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-next,
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-prev {
    width: 20px;
    height: 100%;
    top: 0%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-next::after,
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-prev::after {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_arrow--main.svg);
  background-repeat: no-repeat;
  background-size: 27.36px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-next::after,
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-prev::after {
    background-size: 20px auto;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-next::after,
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-prev::after {
    background-size: 16px auto;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-next:hover::before,
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-prev:hover::before {
  background-image: url(/resource/images/ico_arrow--white.svg);
}
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-next {
  right: -50px;
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-next {
    right: -34px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-next {
    right: -25px;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-prev {
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
  left: -50px;
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-prev {
    left: -34px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__cont .p-idx-car-list__slide .swiper-button-prev {
    -webkit-transform: scale(-1, 1) translateY(0%);
            transform: scale(-1, 1) translateY(0%);
    left: -25px;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__maker .p-idx-car-list__maker__cont {
  background-color: var(--back);
  padding: 2.5rem;
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__maker .p-idx-car-list__maker__cont {
    padding: 1rem 10px;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__maker .p-idx-car-list__maker__cont ul {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6.29px;
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__wrap .p-idx-car-list__maker .p-idx-car-list__maker__cont ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-idx-car-list__wrap .p-idx-car-list__maker .p-idx-car-list__maker__cont ul li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  background-color: var(--white);
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__maker .p-idx-car-list__maker__cont ul li {
    padding: 8px;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__maker .p-idx-car-list__maker__cont ul li picture {
  width: 100%;
  height: 64px;
  display: block;
  margin: auto;
}
.p-idx-car-list__wrap .p-idx-car-list__maker .p-idx-car-list__maker__cont ul li picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-idx-car-list__wrap .p-idx-car-list__maker .p-idx-car-list__maker__cont ul li p {
  margin-top: 10px;
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__maker .p-idx-car-list__maker__cont ul li p {
    margin-top: 5px;
    font-size: 14px;
    letter-spacing: -0.03em;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__flow .p-idx-car-list__flow__cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
.p-idx-car-list__wrap .p-idx-car-list__flow .p-idx-car-list__flow__cont .p-idx-car-list__flow__inner {
  background-color: var(--back);
  padding: 24px 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6.25rem;
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__flow .p-idx-car-list__flow__cont .p-idx-car-list__flow__inner {
    padding: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__flow .p-idx-car-list__flow__cont .p-idx-car-list__flow__inner .p-idx-car-list__flow__num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.5;
  width: 400px;
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__wrap .p-idx-car-list__flow .p-idx-car-list__flow__cont .p-idx-car-list__flow__inner .p-idx-car-list__flow__num {
    width: 200px;
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__flow .p-idx-car-list__flow__cont .p-idx-car-list__flow__inner .p-idx-car-list__flow__num {
    width: 100%;
    font-size: 1.1875rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__flow .p-idx-car-list__flow__cont .p-idx-car-list__flow__inner .p-idx-car-list__flow__num .num {
  display: block;
  background-color: var(--white);
  color: var(--sub);
  font-family: "Jost", sans-serif;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 5px 20px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__wrap .p-idx-car-list__flow .p-idx-car-list__flow__cont .p-idx-car-list__flow__inner .p-idx-car-list__flow__num .num {
    font-size: 1.25rem;
    padding: 3px 10px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__wrap .p-idx-car-list__flow .p-idx-car-list__flow__cont .p-idx-car-list__flow__inner .p-idx-car-list__flow__num .num {
    font-size: 1rem;
    padding: 3px 10px;
  }
}
.p-idx-car-list__wrap .p-idx-car-list__flow .p-idx-car-list__flow__cont .p-idx-car-list__flow__inner .txt-lg {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-idx-car-list__wrap .p-idx-car-list__maker__ttl,
.p-idx-car-list__wrap .p-idx-car-list__flow__ttl {
  text-align: center;
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__wrap .p-idx-car-list__maker__ttl,
  .p-idx-car-list__wrap .p-idx-car-list__flow__ttl {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

/* よくあるご質問
----------------------------------------------------------------- */
.p-faq2__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

/*アコーディオン全体*/
.p-faq2__cont .p-faq2-area {
  /*アコーディオンタイトル*/
}
.p-faq2__cont .p-faq2-area .p-faq2-q {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  margin-top: 5px;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 20px 80px 26px 104px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 834px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 460px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q {
    padding: 20px 40px 20px 40px;
    font-size: 1.25rem;
  }
}
.p-faq2__cont .p-faq2-area .p-faq2-q {
  /*アイコンの＋と×*/
}
.p-faq2__cont .p-faq2-area .p-faq2-q::before, .p-faq2__cont .p-faq2-area .p-faq2-q::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 460px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q::before, .p-faq2__cont .p-faq2-area .p-faq2-q::after {
    width: 15px;
  }
}
.p-faq2__cont .p-faq2-area .p-faq2-q::before {
  top: 50%;
  right: 31px;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
@media screen and (max-width: 460px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q::before {
    right: 16px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-faq2__cont .p-faq2-area .p-faq2-q::after {
  top: 50%;
  right: 31px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width: 460px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q::after {
    right: 16px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.p-faq2__cont .p-faq2-area .p-faq2-q .p-faq2-q__inner {
  position: relative;
}
.p-faq2__cont .p-faq2-area .p-faq2-q .p-faq2-q__inner::before {
  content: "Q";
  display: block;
  position: absolute;
  left: -60px;
  top: -5px;
  font-size: 2.8125rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  color: var(--main);
  width: 42px;
  height: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 834px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q .p-faq2-q__inner::before {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-faq2__cont .p-faq2-area .p-faq2-q .p-faq2-q__inner::before {
    font-size: 1.5rem;
    top: 0px;
    left: -30px;
    width: 30px;
    height: 30px;
  }
}
.p-faq2__cont .p-faq2-area {
  /*　closeというクラスがついたら形状変化　*/
}
.p-faq2__cont .p-faq2-area .p-faq2-q.close::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.p-faq2__cont .p-faq2-area .p-faq2-q.close::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.p-faq2__cont .p-faq2-area {
  /*アコーディオンで現れるエリア*/
}
.p-faq2__cont .p-faq2-area .p-faq2-a {
  display: none;
  margin-top: 2px;
  padding: 20px 40px 20px 104px;
  position: relative;
}
@media screen and (max-width: 460px) {
  .p-faq2__cont .p-faq2-area .p-faq2-a {
    padding: 20px 40px 20px 40px;
  }
}
.p-faq2__cont .p-faq2-area .p-faq2-a .lg {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .p-faq2__cont .p-faq2-area .p-faq2-a .lg {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 460px) {
  .p-faq2__cont .p-faq2-area .p-faq2-a .lg {
    font-size: 1.25rem;
  }
}
.p-faq2__cont .p-faq2-area .p-faq2-a .p-faq2-a__inner {
  position: relative;
}
.p-faq2__cont .p-faq2-area .p-faq2-a .p-faq2-a__inner::before {
  content: "A";
  display: block;
  position: absolute;
  left: -64px;
  top: 0px;
  font-size: 2.8125rem;
  line-height: 1;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  color: var(--sub);
  width: 42px;
  height: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 834px) {
  .p-faq2__cont .p-faq2-area .p-faq2-a .p-faq2-a__inner::before {
    font-size: 2.25rem;
    top: -3px;
  }
}
@media screen and (max-width: 460px) {
  .p-faq2__cont .p-faq2-area .p-faq2-a .p-faq2-a__inner::before {
    font-size: 1.5rem;
    left: -30px;
    width: 30px;
    height: 30px;
    top: 0;
  }
}

/* お客様の声
----------------------------------------------------------------- */
.p-idx-voice__wrap {
  padding: 6.25rem 0 7.5rem;
}
@media screen and (max-width: 834px) {
  .p-idx-voice__wrap {
    padding: 5rem 0 6.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-voice__wrap {
    padding: 3.75rem 0 5rem;
  }
}

.p-idx-voice__cont {
  background-color: var(--white);
  position: relative;
  padding: 3.75rem 2.5rem 2.5rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 460px) {
  .p-idx-voice__cont {
    padding: 2.5rem 1.25rem 1.25rem;
    margin-top: 3.125rem;
  }
}
.p-idx-voice__cont .tag {
  position: absolute;
  left: -17px;
  top: -15px;
  background-color: var(--sub);
  color: var(--white);
  padding: 9px 20px 10px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 460px) {
  .p-idx-voice__cont .tag {
    left: -10px;
    top: -25px;
    padding: 5px 16px 6px;
  }
}
.p-idx-voice__cont .p-idx-voice__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 460px) {
  .p-idx-voice__cont .p-idx-voice__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-idx-voice__cont .p-idx-voice__inner .img {
  width: 33.4951456311%;
}
@media screen and (max-width: 834px) {
  .p-idx-voice__cont .p-idx-voice__inner .img {
    width: 37.6506024096%;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-voice__cont .p-idx-voice__inner .img {
    width: 100%;
  }
}
.p-idx-voice__cont .p-idx-voice__inner .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 460px) {
  .p-idx-voice__cont .p-idx-voice__inner .txt {
    width: 100%;
    -webkit-box-flex: initial;
    -webkit-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

/* 会社情報／採用情報
----------------------------------------------------------------- */
.p-idx-company__ttl {
  font-size: 1.75rem;
  line-height: 1;
  color: var(--main);
  width: auto;
}
@media screen and (max-width: 834px) {
  .p-idx-company__ttl {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-company__ttl {
    font-size: 1.625rem;
  }
}

.p-idx-company__store,
.p-idx-company__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  background-color: var(--white);
  padding: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-idx-company__store,
  .p-idx-company__info {
    gap: 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-company__store,
  .p-idx-company__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
    padding: 2.5rem 1.25rem;
  }
}
.p-idx-company__store .p-idx-company__store__cont,
.p-idx-company__store .p-idx-company__info__cont,
.p-idx-company__info .p-idx-company__store__cont,
.p-idx-company__info .p-idx-company__info__cont {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 460px) {
  .p-idx-company__store .p-idx-company__store__cont,
  .p-idx-company__store .p-idx-company__info__cont,
  .p-idx-company__info .p-idx-company__store__cont,
  .p-idx-company__info .p-idx-company__info__cont {
    -webkit-box-flex: initial;
    -webkit-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
  }
}

.p-idx-company__store__ttl {
  font-size: 1.5625rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 460px) {
  .p-idx-company__store__ttl {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 834px) {
  .p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner {
    gap: 0rem;
  }
}
.p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner .time,
.p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner .tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 834px) {
  .p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner .time,
  .p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner .tel {
    font-size: 1rem;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner .time,
  .p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner .tel {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner .time span,
.p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner .tel span {
  padding: 0 8px 1px;
  background-color: var(--main);
  color: var(--white);
  line-height: 1.7;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner .time span,
  .p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner .tel span {
    font-size: 1rem;
    text-align: center;
    min-width: 80px;
    margin-top: 2px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner .time span,
  .p-idx-company__store__cont .p-idx-company__store__cont__info .p-idx-company__store__cont__info__inner .tel span {
    font-size: 0.875rem;
  }
}
.p-idx-company__store__cont .c-flex {
  gap: 30px;
}
@media screen and (max-width: 834px) {
  .p-idx-company__store__cont .c-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-company__store__cont .c-flex {
    gap: 20px;
  }
}
.p-idx-company__store__cont .c-flex > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-idx-company__store__cont .c-flex > div p {
  text-align: left;
}

/* お問い合わせエリア
----------------------------------------------------------------- */
.p-idx-contact__wrap {
  padding: 6.25rem 0;
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-contact__wrap {
    padding: 3.75rem 0;
  }
}
.p-idx-contact__wrap .p-idx-contact-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-idx-contact__wrap .p-idx-contact-tab li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  max-width: 500px;
  background-color: rgba(var(--sub-rgb), 0.5);
  padding: 20px;
  position: relative;
  color: var(--white);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .p-idx-contact-tab li {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-contact__wrap .p-idx-contact-tab li {
    font-size: 1.125rem;
    padding: 20px 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-idx-contact__wrap .p-idx-contact-tab li.is-active {
  background-color: var(--sub);
}
.p-idx-contact__wrap .p-idx-contact-tab li.is-active::before {
  opacity: 1;
}
.p-idx-contact__wrap .p-idx-contact-tab li::before {
  content: "";
  display: block;
  background-color: var(--sub);
  width: 28px;
  height: 28px;
  -webkit-clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -16px;
  opacity: 0;
}
.p-idx-contact__wrap .c-form-tab__wrap {
  background-color: var(--back);
  padding: 5rem 3.75rem;
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .c-form-tab__wrap {
    padding: 3.75rem 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-contact__wrap .c-form-tab__wrap {
    padding: 2.5rem 1rem 3.75rem;
  }
}

/* ボタンエリア
----------------------------------------------------------------- */
.p-idx-btns__wrap .p-idx-btns__cont {
  padding: 3.125rem 6.25rem 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-idx-btns__wrap .p-idx-btns__cont {
    padding: 2.5rem 2.5rem 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-btns__wrap .p-idx-btns__cont {
    padding: 3.125rem 1.25rem 2.5rem;
  }
}
.p-idx-btns__wrap .p-idx-btns__cont .p-idx-btns__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 460px) {
  .p-idx-btns__wrap .p-idx-btns__cont .p-idx-btns__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.p-idx-btns__wrap .p-idx-btns__cont .p-idx-btns__inner > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-idx-btns__tel__wrap {
  border: 2px solid var(--sub);
  border-radius: 10px;
  padding: 1.25rem 3.75rem;
  margin-top: 2.5rem;
  background-color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-idx-btns__tel__wrap {
    padding: 2.5rem 1.25rem;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-btns__tel__wrap {
    padding: 1.25rem 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-btns__tel__wrap {
    padding: 1.25rem 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.p-idx-btns__tel__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 834px) {
  .p-idx-btns__tel__inner {
    gap: 5px;
  }
}
.p-idx-btns__tel__inner .sub {
  position: relative;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 460px) {
  .p-idx-btns__tel__inner .sub {
    font-size: 13px;
  }
}
.p-idx-btns__tel__inner .sub::before, .p-idx-btns__tel__inner .sub::after {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/naname.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  width: 9px;
  height: 14px;
}
.p-idx-btns__tel__inner .sub::after {
  content: "";
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.p-idx-btns__tel__inner .ttl {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .p-idx-btns__tel__inner .ttl {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-btns__tel__inner .ttl {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-btns__tel__inner .ttl img {
    width: 20px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-btns__tel__inner .ttl img {
    width: 16px;
  }
}

.p-idx-btns__tel__info .tel {
  color: var(--sub);
}
.p-idx-btns__tel__info .tel span {
  font-weight: 600;
  font-size: 1.375rem;
}
@media screen and (max-width: 1024px) {
  .p-idx-btns__tel__info .tel span {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-btns__tel__info .tel span {
    font-size: 1.0625rem;
  }
}
.p-idx-btns__tel__info .tel a {
  color: var(--sub);
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 1;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .p-idx-btns__tel__info .tel a {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-btns__tel__info .tel a {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-btns__tel__info .tel a {
    font-size: 1.875rem;
  }
}
.p-idx-btns__tel__info .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 834px) {
  .p-idx-btns__tel__info .info {
    font-size: 14px;
    gap: 5px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-btns__tel__info .info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.p-idx-btns__tel__info .info span {
  margin-top: 5px;
  line-height: 1;
}
@media screen and (max-width: 460px) {
  .p-idx-btns__tel__info .info span {
    font-size: 13px;
  }
}

.p-idx-btns__cont--pt2 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem 1.25rem;
}
@media screen and (max-width: 460px) {
  .p-idx-btns__cont--pt2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.p-idx-btns__cont--pt3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
}
@media screen and (max-width: 834px) {
  .p-idx-btns__cont--pt3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}
.p-idx-btns__cont--pt3 .p-idx-btns__tel__wrap {
  padding: 1.875rem 3.75rem;
}
@media screen and (max-width: 460px) {
  .p-idx-btns__cont--pt3 .p-idx-btns__tel__wrap {
    padding: 1.875rem 1.25rem;
  }
}
.p-idx-btns__cont--pt3 .p-idx-btns__inner--pt3 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .p-idx-btns__cont--pt3 .p-idx-btns__inner--pt3 {
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-btns__cont--pt3 .p-idx-btns__inner--pt3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-idx-btns__cont--pt3 .p-idx-btns__tel__wrap {
  margin-top: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

/* ==========================================================================
対応車種一覧
=========================================================================*/
/* nav
----------------------------------------------------------------- */
.p-car-models .c-page-nav {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 460px) {
  .p-car-models .c-page-nav {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-car-models .c-page-nav .c-page-nav__wrap {
    gap: 30px 10px;
  }
}
.p-car-models .c-page-nav .c-page-nav__wrap li {
  height: auto;
}
@media screen and (max-width: 1024px) {
  .p-car-models .c-page-nav .c-page-nav__wrap li {
    width: 23%;
    max-width: initial;
  }
}
@media screen and (max-width: 834px) {
  .p-car-models .c-page-nav .c-page-nav__wrap li {
    width: 22%;
  }
}
@media screen and (max-width: 460px) {
  .p-car-models .c-page-nav .c-page-nav__wrap li {
    width: 45%;
  }
}
.p-car-models .c-page-nav .c-page-nav__wrap li a {
  height: 130px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  line-height: 1.2;
  font-size: 1.4375rem;
}
.p-car-models .c-page-nav .c-page-nav__wrap li a img {
  height: 51px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}

/* 一覧-タイトル
----------------------------------------------------------------- */
.p-car-models__group {
  margin-bottom: 7.5rem;
}
.p-car-models__group .p-car-models__ttl__wrap {
  background-color: var(--main);
  height: 414px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 460px) {
  .p-car-models__group .p-car-models__ttl__wrap {
    height: 300px;
  }
}
.p-car-models__group .p-car-models__ttl__wrap .p-car-models__ttl__img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -202px;
}
@media screen and (max-width: 460px) {
  .p-car-models__group .p-car-models__ttl__wrap .p-car-models__ttl__img {
    top: -112px;
  }
}
.p-car-models__group .p-car-models__ttl__wrap .p-car-models__ttl {
  margin-top: 140px;
  color: var(--white);
  text-align: center;
}
@media screen and (max-width: 460px) {
  .p-car-models__group .p-car-models__ttl__wrap .p-car-models__ttl {
    margin-top: 100px;
  }
}
.p-car-models__group .l-container {
  margin-top: -106px;
}

/* 一覧-カード
----------------------------------------------------------------- */
.p-car-models__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem 1.875rem;
}
@media screen and (max-width: 1280px) {
  .p-car-models__list {
    gap: 3.125rem 1.875vw;
  }
}
@media screen and (max-width: 834px) {
  .p-car-models__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.875rem;
  }
}
@media screen and (max-width: 460px) {
  .p-car-models__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-car-models__item {
  border: 3px solid var(--back);
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-car-models__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-car-models__item .model {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--main);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 2px 10px 6px;
  z-index: 2;
}
.p-car-models__item .head {
  height: 186px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--white);
}
.p-car-models__item .head img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-car-models__item .body {
  background-color: var(--back);
  padding: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.p-car-models__item .body .p-car-models__item__ttl {
  margin-top: 10px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-car-models__item .body .price {
  background-color: var(--sub);
  padding: 13px 10px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .p-car-models__item .body .price {
    padding: 10px 8px;
    gap: 5px;
  }
}
@media screen and (max-width: 834px) {
  .p-car-models__item .body .price {
    gap: 10px;
    padding: 13px 10px;
  }
}
.p-car-models__item .body .price .label {
  color: var(--sub);
  background-color: var(--white);
  border-radius: 10px;
  padding: 6px 4px 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .p-car-models__item .body .price .label {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 834px) {
  .p-car-models__item .body .price .label {
    font-size: 12px;
  }
}
.p-car-models__item .body .price .price__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 73.73px;
}
.p-car-models__item .body .price .price__inner .en {
  font-family: "Jost", sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.p-car-models__item .body .price .price__inner .price__inner__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-car-models__item .body .price .price__inner .yen {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 3px;
}
@media screen and (max-width: 1280px) {
  .p-car-models__item .body .price .price__inner .yen {
    font-size: 1.171875vw;
  }
}
@media screen and (max-width: 834px) {
  .p-car-models__item .body .price .price__inner .yen {
    font-size: 15px;
  }
}
.p-car-models__item .body .price .price__inner .yen span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (max-width: 1280px) {
  .p-car-models__item .body .price .price__inner .yen span {
    font-size: 0.859375vw;
  }
}
@media screen and (max-width: 834px) {
  .p-car-models__item .body .price .price__inner .yen span {
    font-size: 11px;
  }
}
.p-car-models__item .body .price .price__inner .times {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1280px) {
  .p-car-models__item .body .price .price__inner .times {
    font-size: 1.171875vw;
  }
}
@media screen and (max-width: 834px) {
  .p-car-models__item .body .price .price__inner .times {
    font-size: 15px;
  }
}
.p-car-models__item .body .note {
  margin-top: 10px;
  margin-bottom: 10px;
}
.p-car-models__item .body .note p {
  line-height: 1.4;
}
.p-car-models__item .body .btn {
  width: 100%;
}
.p-car-models__item .body .btn button {
  width: 100%;
  display: block;
  text-align: center;
  color: var(--white);
  background-color: var(--main);
  border-radius: 50px;
  font-size: 1.125rem;
  font-size: 14px;
  font-weight: 700;
  line-height: 47px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-car-models__item:hover a .head img {
  opacity: 0.8;
}
.p-car-models__item:hover a .body .btn button {
  background-color: var(--sub);
}

/* singleページ
----------------------------------------------------------------- */
.p-single-model__cont {
  background-color: var(--white);
}
.p-single-model__cont .header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background-color: var(--main);
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .header {
    padding: 0.625rem 1.25rem;
    gap: 0.625rem;
  }
}
.p-single-model__cont .header .model {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3125rem 1.25rem;
  background-color: var(--white);
  border-radius: 0.1875rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .header .model {
    font-size: 1.125rem;
    padding: 0.1875rem 0.625rem;
  }
}
.p-single-model__cont .header .maker {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .header .maker {
    font-size: 1.5rem;
  }
}
.p-single-model__cont .p-single-model__inner {
  padding: 0 1.25rem;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .p-single-model__inner {
    padding: 0 0.625rem;
  }
}
.p-single-model__cont .ttl__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-single-model__cont .ttl__wrap .ttl {
  font-size: 2.25rem;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .ttl__wrap .ttl {
    font-size: 1.75rem;
  }
}
.p-single-model__cont .ttl__wrap .grade,
.p-single-model__cont .ttl__wrap .wd {
  display: inline-block;
  font-weight: 700;
  font-size: 1.25rem;
  background-color: var(--back);
  border-radius: 50px;
  padding: 3px 24px;
  text-align: center;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .ttl__wrap .grade,
  .p-single-model__cont .ttl__wrap .wd {
    font-size: 1.0625rem;
    padding: 2px 20px;
  }
}
.p-single-model__cont .img {
  max-width: 540px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-single-model__cont .img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.p-single-model__cont .price__inner {
  margin-top: 1.25rem;
  background-color: var(--sub);
  padding: 1rem 0.625rem;
  border-radius: 0.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: no-wrap;
      -ms-flex-wrap: no-wrap;
          flex-wrap: no-wrap;
  gap: 1.25rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .price__inner {
    padding: 0.625rem;
    gap: 0.625rem;
  }
}
.p-single-model__cont .price__inner .label {
  color: var(--sub);
  background-color: var(--white);
  border-radius: 5px;
  padding: 10px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .price__inner .label {
    font-size: 13px;
    padding: 6px;
  }
}
.p-single-model__cont .price__inner .label::before {
  content: "";
  display: block;
  background-color: var(--white);
  width: 12px;
  height: 12px;
  top: 50%;
  right: -5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0 100%);
          clip-path: polygon(0% 0%, 100% 50%, 0 100%);
  position: absolute;
}
.p-single-model__cont .price__inner .price__cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.3125rem;
}
.p-single-model__cont .price__inner .price__cont .en {
  font-family: "Jost", sans-serif;
  font-size: 3.625rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .price__inner .price__cont .en {
    font-size: 2.5rem;
  }
}
.p-single-model__cont .price__inner .price__cont .yen {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 3px;
  font-size: 1.125rem;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .price__inner .price__cont .yen {
    font-size: 1rem;
  }
}
.p-single-model__cont .price__inner .price__cont .yen span {
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .price__inner .price__cont .yen span {
    font-size: 0.625rem;
  }
}
.p-single-model__cont .price__inner .price__cont .times {
  margin-left: 8px;
  color: var(--white);
  font-size: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .price__inner .price__cont .times {
    font-size: 1rem;
    margin-left: 0;
  }
}
.p-single-model__cont .note {
  margin-top: 1.25rem;
}
.p-single-model__cont .note p {
  line-height: 2;
  margin-bottom: 0.5rem;
}
.p-single-model__cont .note p:last-child {
  margin-bottom: 0;
}
.p-single-model__cont .point,
.p-single-model__cont .recommend {
  margin-top: 2.5rem;
}
.p-single-model__cont .point > p,
.p-single-model__cont .recommend > p {
  font-weight: 700;
  color: var(--white);
  background-color: var(--main);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1.875rem;
  position: relative;
  padding: 14px;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .point > p,
  .p-single-model__cont .recommend > p {
    font-size: 1.5rem;
  }
}
.p-single-model__cont .point > p::before,
.p-single-model__cont .recommend > p::before {
  content: "";
  display: block;
  background-color: var(--main);
  width: 30px;
  height: 30px;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  position: absolute;
}
.p-single-model__cont .point ul,
.p-single-model__cont .recommend ul {
  list-style: none;
  padding-left: 18px;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .point ul,
  .p-single-model__cont .recommend ul {
    padding-left: 4px;
    padding-right: 4px;
  }
}
.p-single-model__cont .point ul li,
.p-single-model__cont .recommend ul li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
  margin-bottom: 0.625rem;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .point ul li,
  .p-single-model__cont .recommend ul li {
    font-size: 1.0625rem;
    padding-left: 1.5rem;
  }
}
.p-single-model__cont .point ul li::before,
.p-single-model__cont .recommend ul li::before {
  content: "・";
  position: absolute;
  background-image: url(/resource/images/ico_list.svg);
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .point ul li::before,
  .p-single-model__cont .recommend ul li::before {
    width: 18px;
    height: 18px;
    top: 5px;
  }
}
.p-single-model__cont .tags {
  margin-top: 2.5rem;
  background-color: var(--main);
  padding: 1.875rem 20px;
}
.p-single-model__cont .tags ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .tags ul {
    gap: 0.625rem;
  }
}
.p-single-model__cont .tags li {
  background-color: var(--sub);
  padding: 0.5rem 1.5rem;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  border-radius: 50px;
  color: var(--white);
}
@media screen and (max-width: 460px) {
  .p-single-model__cont .tags li {
    font-size: 1.25rem;
    padding: 0.375rem 1rem;
  }
}

.p-idx-car-list__search {
  background-color: var(--main);
  padding: 2.5rem;
  margin-top: 70px;
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__search {
    padding: 2.5rem 1.25rem;
    margin-top: 2.5rem;
  }
}
.p-idx-car-list__search .p-idx-car-list__search__ttl {
  color: var(--white);
  font-size: 2.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__search .p-idx-car-list__search__ttl {
    gap: 0.625rem;
    font-size: 1.5rem;
  }
}
.p-idx-car-list__search .p-idx-car-list__search__ttl img {
  width: 28px;
  height: 36px;
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__search .p-idx-car-list__search__ttl img {
    width: 22px;
    height: 26px;
  }
}
.p-idx-car-list__search .p-idx-car-list__search__cont {
  margin-top: 2.5rem;
}
.p-idx-car-list__search .p-idx-car-list__search__cont ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__search .p-idx-car-list__search__cont ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-idx-car-list__search .p-idx-car-list__search__cont ul li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-idx-car-list__search .p-idx-car-list__search__cont ul li a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  padding: 20px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 4px solid var(--white);
}
@media screen and (max-width: 1024px) {
  .p-idx-car-list__search .p-idx-car-list__search__cont ul li a {
    padding: 10px;
    gap: 15px;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__search .p-idx-car-list__search__cont ul li a {
    padding: 20px;
    gap: 20px;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__search .p-idx-car-list__search__cont ul li a {
    padding: 10px;
    gap: 10px;
    border-radius: 3px;
    border: 3px solid var(--white);
  }
}
.p-idx-car-list__search .p-idx-car-list__search__cont ul li a img {
  margin: auto;
}
.p-idx-car-list__search .p-idx-car-list__search__cont ul li a .btn {
  width: 100%;
  position: relative;
  text-align: center;
}
.p-idx-car-list__search .p-idx-car-list__search__cont ul li a .btn::before {
  content: "";
  display: block;
  background-color: var(--main);
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -4px;
  position: absolute;
  border-radius: 50px;
}
.p-idx-car-list__search .p-idx-car-list__search__cont ul li a .btn span {
  width: 100%;
  color: var(--white);
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  font-size: 1.25rem;
  position: relative;
  line-height: 37px;
  background-color: var(--sub);
  border-radius: 50px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .p-idx-car-list__search .p-idx-car-list__search__cont ul li a .btn span {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-car-list__search .p-idx-car-list__search__cont ul li a .btn span {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__search .p-idx-car-list__search__cont ul li a .btn span {
    font-size: 15px;
    line-height: 1.2;
    padding: 8px 0;
  }
}
.p-idx-car-list__search .p-idx-car-list__search__cont ul li a .btn span::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 14px;
  background-image: url(/resource/images/ico_arrow--white.svg);
  background-size: 9.52px auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 460px) {
  .p-idx-car-list__search .p-idx-car-list__search__cont ul li a .btn span::after {
    right: 10px;
    top: 21px;
    width: 8px;
    height: 8px;
  }
}
.p-idx-car-list__search .p-idx-car-list__search__cont ul li a:hover {
  border: 4px solid var(--sub);
}
.p-idx-car-list__search .p-idx-car-list__search__cont ul li a:hover .btn span {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.p-single-model .p-idx-car-list__search {
  margin-top: 0;
  padding: 2.5rem 2.5rem 3.75rem;
}
@media screen and (max-width: 460px) {
  .p-single-model .p-idx-car-list__search {
    padding: 2.5rem 1.25rem 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .p-single-model .p-idx-car-list__search .l-container {
    padding: 0;
  }
}
.p-single-model .p-idx-car-list__search .p-idx-car-list__search__cont ul li a .btn span::after {
  top: 14px;
}

/* ==========================================================================
マージン・パディング
=========================================================================*/
/* マージン
----------------------------------------------------------------- */
.margin-auto {
  margin: auto;
}

.margin-xxxsm-top {
  margin-top: 5px;
}

.margin-xxsm-top {
  margin-top: 0.625rem;
}

.margin-xsm-top {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 834px) {
  .margin-xsm-top {
    margin-top: 0.9375rem;
  }
}
.margin-sm-top {
  margin-top: 1.25rem;
}
.margin-md-top {
  margin-top: 2.5rem;
}
.margin-lg-top {
  margin-top: 3.75rem;
}
@media screen and (max-width: 834px) {
  .margin-lg-top {
    margin-top: 2.5rem;
  }
}

.margin-xlg-top {
  margin-top: 5rem;
}
@media screen and (max-width: 834px) {
  .margin-xlg-top {
    margin-top: 3.75rem;
  }
}

.margin-xxlg-top {
  margin-top: 6.25rem;
}
@media screen and (max-width: 834px) {
  .margin-xxlg-top {
    margin-top: 5rem;
  }
}
.margin-30-top {
  margin-top: 1.875rem;
}

.margin-xxsm-right {
  margin-right: 0.625rem;
}

/* パディング
----------------------------------------------------------------- */
.padding-xlg-top {
  padding-top: 5rem;
}
@media screen and (max-width: 460px) {
  .padding-xlg-top {
    padding-top: 3.75rem;
  }
}

.padding-xxlg-top {
  padding-top: 6.25rem;
}
@media screen and (max-width: 834px) {
  .padding-xxlg-top {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 460px) {
  .padding-xxlg-top {
    padding-top: 3.75rem;
  }
}

/*-==========================================================================
テキスト
==========================================================================*/
.txt-en {
  font-family: "Jost", sans-serif;
}

.txt-bold {
  font-weight: 700 !important;
}

.txt-lead {
  font-size: 1rem;
  line-height: 2.2;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .txt-lead {
    line-height: 2;
  }
}
@media screen and (max-width: 460px) {
  .txt-lead {
    line-height: 1.8;
  }
}

.txt-cap {
  font-size: 1rem;
  line-height: 1.4;
}

.txt-sm {
  font-size: 13px;
  line-height: 1.4;
}

.txt-lg {
  font-size: 1.0625rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .txt-lg {
    font-size: 1rem;
    font-weight: 500;
  }
}

.txt-xlg {
  font-size: 1.4375rem;
  line-height: 1.4;
}
@media screen and (max-width: 460px) {
  .txt-xlg {
    font-size: 1.125rem;
  }
}

.txt-link,
.txt-link--arrow,
.txt-link--win {
  font-weight: 700;
  line-height: 1.6;
  color: var(--main);
  position: relative;
}
.txt-link::before,
.txt-link--arrow::before,
.txt-link--win::before {
  content: "";
  display: block;
  background-color: var(--main);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.txt-link:hover,
.txt-link--arrow:hover,
.txt-link--win:hover {
  color: var(--sub);
}

.txt-link--arrow::before {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_arrow_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  margin-right: 4px;
  margin-top: 2px;
}
.txt-link--arrow:hover::before {
  background-image: url(/resource/images/ico_arrow_green.svg);
}

.txt-link--win {
  margin-right: 2px;
}
.txt-link--win::after {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_win_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-left: 3px;
}
.txt-link--win:hover:after {
  background-image: url(/resource/images/ico_win_green.svg);
}

.txt-center {
  text-align: center !important;
}

.txt-left {
  text-align: left !important;
}

.txt-right {
  text-align: right !important;
}

.txt-top {
  vertical-align: top !important;
}

.txt-center--sp-left {
  text-align: center !important;
}
@media screen and (max-width: 460px) {
  .txt-center--sp-left {
    text-align: left !important;
  }
}

.txt-center--tb-left {
  text-align: center !important;
}
@media screen and (max-width: 834px) {
  .txt-center--tb-left {
    text-align: left !important;
  }
}

.txt-black-800 {
  color: #5C5C5C !important;
}

.txt-black-600 {
  color: #858585 !important;
}

.txt-black-400 {
  color: #ADADAD !important;
}

.txt-black-200 {
  color: #D6D6D6 !important;
}

.txt-black-100 {
  color: #EBEBEB !important;
}

.txt-black {
  color: #303030 !important;
}

.txt-white {
  color: #fff !important;
}

.txt-main {
  color: #043587 !important;
}

.txt-sub {
  color: #E60512 !important;
}

.txt-accent {
  color: #FCEE21 !important;
}

.txt-back {
  color: #E5E9F4 !important;
}

.txt-border {
  color: #DDDDDD !important;
}

.txt-selection_txt {
  color: #525252 !important;
}

.txt-selection_bg {
  color: #ffd0c4 !important;
}

.txt-tomato {
  color: #ef423b !important;
}

/* 電話番号
----------------------------------------------------------------- */
.txt-tel img {
  margin-right: 5px;
  width: 24px;
  vertical-align: baseline;
}
@media screen and (max-width: 834px) {
  .txt-tel img {
    width: 20px;
  }
}
@media screen and (max-width: 460px) {
  .txt-tel img {
    width: 15px;
  }
}
.txt-tel a[href^="tel:"] {
  font-family: "Jost", sans-serif;
  font-size: 3.625rem;
  font-weight: 700;
  line-height: 1;
  color: var(--main);
  display: inline-block;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .txt-tel a[href^="tel:"] {
    font-size: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .txt-tel a[href^="tel:"] {
    font-size: 5.7553956835vw;
  }
}
@media screen and (max-width: 460px) {
  .txt-tel a[href^="tel:"] {
    pointer-events: auto;
    font-size: 2.5625rem;
  }
  .txt-tel a[href^="tel:"]:hover {
    color: var(--sub);
  }
}

.txt-tel__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}
@media screen and (max-width: 834px) {
  .txt-tel__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    margin-top: 9px;
  }
}
.txt-tel__info p {
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .txt-tel__info p {
    font-size: 13px;
  }
}

/*-==========================================================================
角丸
==========================================================================*/
/*-==========================================================================
boder
==========================================================================*/
/*-==========================================================================
背景
==========================================================================*/
.bg-black-800 {
  background-color: #5C5C5C !important;
}

.bg-black-600 {
  background-color: #858585 !important;
}

.bg-black-400 {
  background-color: #ADADAD !important;
}

.bg-black-200 {
  background-color: #D6D6D6 !important;
}

.bg-black-100 {
  background-color: #EBEBEB !important;
}

.bg-black {
  background-color: #303030 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-main {
  background-color: #043587 !important;
}

.bg-sub {
  background-color: #E60512 !important;
}

.bg-accent {
  background-color: #FCEE21 !important;
}

.bg-back {
  background-color: #E5E9F4 !important;
}

.bg-border {
  background-color: #DDDDDD !important;
}

.bg-selection_txt {
  background-color: #525252 !important;
}

.bg-selection_bg {
  background-color: #ffd0c4 !important;
}

.bg-tomato {
  background-color: #ef423b !important;
}

.bg-even-whitesmoke:nth-of-type(even) {
  background-color: var(--back);
}

/* ==========================================================================
 スクロール
=========================================================================*/
.scroll-anchor {
  display: block;
}

/* ==========================================================================
 非表示
=========================================================================*/
/*-==========================================================================
特定の画面幅で表示・非表示するクラス
==========================================================================*/
/* xpc以上*/
@media screen and (min-width: 1537px) {
  .visible-more-xpc {
    display: block;
  }
}
@media screen and (max-width: 1536px) {
  .visible-more-xpc {
    display: none !important;
  }
}

/* xpcのみ*/
@media screen and (min-width: 1281px) and (max-width: 1536px) {
  .visible-xpc {
    display: block;
  }
}
@media screen and (max-width: 1280px), (min-width: 1537px) {
  .visible-xpc {
    display: none !important;
  }
}

/* xpc以下*/
@media screen and (max-width: 1536px) {
  .visible-less-xpc {
    display: block;
  }
}
@media screen and (min-width: 1537px) {
  .visible-less-xpc {
    display: none !important;
  }
}

/* pc以上*/
@media screen and (min-width: 1281px) {
  .visible-more-pc {
    display: block;
  }
}
@media screen and (max-width: 1280px) {
  .visible-more-pc {
    display: none !important;
  }
}

/* pcのみ*/
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .visible-pc {
    display: block;
  }
}
@media screen and (max-width: 1024px), (min-width: 1281px) {
  .visible-pc {
    display: none !important;
  }
}

/*  pc以下*/
@media screen and (max-width: 1280px) {
  .visible-less-pc {
    display: block;
  }
}
@media screen and (min-width: 1281px) {
  .visible-less-pc {
    display: none !important;
  }
}

/* lp以上*/
@media screen and (min-width: 1025px) {
  .visible-more-lp {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .visible-more-lp {
    display: none !important;
  }
}

/* lpのみ*/
@media screen and (min-width: 835px) and (max-width: 1024px) {
  .visible-lp {
    display: block;
  }
}
@media screen and (max-width: 834px), (min-width: 1025px) {
  .visible-lp {
    display: none !important;
  }
}

/*  lp以下*/
@media screen and (max-width: 1024px) {
  .visible-less-lp {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .visible-less-lp {
    display: none !important;
  }
}

/* tb以上*/
@media screen and (min-width: 835px) {
  .visible-more-tb {
    display: block;
  }
}
@media screen and (max-width: 834px) {
  .visible-more-tb {
    display: none !important;
  }
}

/* tbのみ*/
@media screen and (min-width: 461px) and (max-width: 834px) {
  .visible-tb {
    display: block;
  }
}
@media screen and (max-width: 460px), (min-width: 835px) {
  .visible-tb {
    display: none !important;
  }
}

/*  tb以下*/
@media screen and (max-width: 834px) {
  .visible-less-tb {
    display: block;
  }
}
@media screen and (min-width: 835px) {
  .visible-less-tb {
    display: none !important;
  }
}

/* sp以上*/
@media screen and (min-width: 461px) {
  .visible-more-sp {
    display: block;
  }
}
@media screen and (max-width: 460px) {
  .visible-more-sp {
    display: none !important;
  }
}

/* spのみ*/
@media screen and (max-width: 460px) {
  .visible-sp {
    display: block;
  }
}
@media screen and (min-width: 461px) {
  .visible-sp {
    display: none !important;
  }
}

/*-==========================================================================
その他
==========================================================================*//*# sourceMappingURL=main.css.map */