@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 {
  -moz-box-sizing: content-box;
  -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;
  -moz-box-sizing: content-box;
  -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 {
  --break-sp: 460px;
  --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: #002d60;
  --black-rgb: 0, 45, 96;
  --white: #fff;
  --white-rgb: 255, 255, 255;
  --border: #e5e5e5;
  --border-rgb: 229, 229, 229;
  --main: #4bd5f9;
  --main-rgb: 75, 213, 249;
  --hover: #4c6ae5;
  --hover-rgb: 76, 106, 229;
  --whitesmoke: #f1f3fd;
  --whitesmoke-rgb: 241, 243, 253;
  --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: "Zen Kaku Gothic New", sans-serif;
}

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

main {
  padding-top: 110px;
}
@media screen and (max-width: 460px) {
  main {
    padding-top: 60px;
  }
}

::-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: hidden;
}

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;
  line-height: 2;
}

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(--whitesmoke);
  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段
----------------------------------------------------------------- */
header.l-hd1 .l-hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--white);
  height: 80px;
  z-index: 1010;
  position: relative;
}
@media screen and (max-width: 960px) {
  header.l-hd1 .l-hd {
    position: fixed;
    width: 100%;
    height: 80px;
  }
}
@media screen and (max-width: 460px) {
  header.l-hd1 .l-hd {
    height: 60px;
  }
}
header.l-hd1 h1.l-hd-logo {
  position: relative;
  max-width: 354px;
  width: 100%;
  padding: 10px 20px;
  z-index: 999;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 960px) {
  header.l-hd1 h1.l-hd-logo {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 460px) {
  header.l-hd1 h1.l-hd-logo {
    max-width: initial;
    padding: 5px 10px;
  }
}
header.l-hd1 h1.l-hd-logo a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: 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;
}
header.l-hd1 h1.l-hd-logo a img {
  position: relative;
  display: block;
}
@media screen and (max-width: 460px) {
  header.l-hd1 h1.l-hd-logo a img {
    height: 50px !important;
    width: auto;
  }
}
header.l-hd1 h1.l-hd-logo a:hover {
  opacity: 0.7;
}
header.l-hd1 .l-hd-nav__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 71%;
  text-align: center;
  gap: 2.5rem;
}
@media screen and (max-width: 1280px) {
  header.l-hd1 .l-hd-nav__wrap {
    font-size: 1.25vw;
    min-width: initial;
  }
}
@media screen and (max-width: 960px) {
  header.l-hd1 .l-hd-nav__wrap {
    display: none;
  }
}
header.l-hd1 .l-hd-nav__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

ul.l-hd-nav1__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  line-height: 80px;
  gap: 2.5rem;
}
@media screen and (max-width: 960px) {
  ul.l-hd-nav1__list {
    display: noen;
  }
}
ul.l-hd-nav1__list .l-hd-nav1__list__menu {
  position: relative;
}
ul.l-hd-nav1__list .l-hd-nav1__list__menu a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
ul.l-hd-nav1__list .l-hd-nav1__list__menu a:hover {
  color: var(--hover);
}

.l-hd-nav1__contact {
  width: 100%;
  max-width: 180px;
  height: 100%;
  padding: 11px 20px;
}
.l-hd-nav1__contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  background-color: var(--main);
  font-weight: 700;
  line-height: 58px;
}
.l-hd-nav1__contact a:hover {
  background-color: var(--hover);
}

/* PC版メニュー 2段
----------------------------------------------------------------- */
header.l-hd2 {
  position: fixed;
  width: 100%;
  z-index: 1010;
  background-color: var(--white);
}
header.l-hd2 .l-hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--white);
  height: 110px;
  z-index: 1010;
  position: relative;
  padding-right: 15px;
}
@media screen and (max-width: 460px) {
  header.l-hd2 .l-hd {
    height: 60px;
  }
}
header.l-hd2 h1.l-hd-logo {
  position: relative;
  max-width: 354px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-left: 10px;
}
@media screen and (max-width: 460px) {
  header.l-hd2 h1.l-hd-logo {
    max-width: initial;
    padding: 5px 10px;
  }
}
header.l-hd2 h1.l-hd-logo a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: 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;
}
header.l-hd2 h1.l-hd-logo a img {
  position: relative;
  display: block;
}
@media screen and (max-width: 460px) {
  header.l-hd2 h1.l-hd-logo a img {
    height: 50px !important;
    width: auto;
  }
}
header.l-hd2 h1.l-hd-logo a:hover {
  opacity: 0.7;
}
header.l-hd2 .l-hd-nav__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 70%;
  text-align: center;
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1280px) {
  header.l-hd2 .l-hd-nav__wrap {
    min-width: initial;
    gap: 1.875rem;
  }
}
@media screen and (max-width: 960px) {
  header.l-hd2 .l-hd-nav__wrap {
    display: none;
  }
}
header.l-hd2 .l-hd-nav__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-hd-nav2__list__wrap .l-hd-nav2__list--main,
.l-hd-nav2__list__wrap .l-hd-nav2__list--sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  line-height: 1;
  gap: 0.625rem;
}
@media screen and (max-width: 1280px) {
  .l-hd-nav2__list__wrap .l-hd-nav2__list--main,
  .l-hd-nav2__list__wrap .l-hd-nav2__list--sub {
    gap: 1.25rem;
  }
}
.l-hd-nav2__list__wrap .l-hd-nav2__list--main li a,
.l-hd-nav2__list__wrap .l-hd-nav2__list--sub li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1280px) {
  .l-hd-nav2__list__wrap .l-hd-nav2__list--main li a,
  .l-hd-nav2__list__wrap .l-hd-nav2__list--sub li a {
    font-size: 14px;
  }
}
.l-hd-nav2__list__wrap .l-hd-nav2__list--main li a:hover,
.l-hd-nav2__list__wrap .l-hd-nav2__list--sub li a:hover {
  color: var(--main);
}
.l-hd-nav2__list__wrap .l-hd-nav2__list--sub {
  font-size: 16px;
  margin-top: 15px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1120px) {
  .l-hd-nav2__list__wrap .l-hd-nav2__list--sub {
    font-size: 12px;
  }
}
.l-hd-nav2__list__wrap .l-hd-nav2__list--sub .txt-tel img {
  width: 15px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.l-hd-nav2__list__wrap .l-hd-nav2__list--sub .txt-tel a {
  color: var(--main);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--hover);
}
.l-hd-nav2__list__wrap ul.l-hd-nav2__list--main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3em;
}
@media screen and (max-width: 1120px) {
  .l-hd-nav2__list__wrap ul.l-hd-nav2__list--main {
    gap: 1em;
  }
}
.l-hd-nav2__list__wrap ul.l-hd-nav2__list--main li {
  position: relative;
}
.l-hd-nav2__list__wrap ul.l-hd-nav2__list--main li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 10px 0;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (max-width: 1120px) {
  .l-hd-nav2__list__wrap ul.l-hd-nav2__list--main li a {
    font-size: 13px;
  }
}
.l-hd-nav2__list__wrap ul.l-hd-nav2__list--main li a img {
  width: 15px;
  margin-left: 5px;
}

.l-hd-nav2__contact {
  width: 100%;
  max-width: 160px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1280px) {
  .l-hd-nav2__contact {
    max-width: 140px;
  }
}
.l-hd-nav2__contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  background-color: var(--hover);
  font-weight: 400;
  height: 80px;
  width: 100%;
  border-radius: 5px;
}
.l-hd-nav2__contact a:hover {
  background-color: var(--main);
}

/* トグルボタン（ハンバーガーボタン）
----------------------------------------------------------------- */
.l-toggle {
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(/resource/images/menu_open.svg);
  -webkit-transition: background-image 0.1s linear;
  transition: background-image 0.1s linear;
  background-size: contain;
  background-repeat: no-repeat;
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 1020;
}
@media screen and (min-width: 961px) {
  .l-toggle {
    display: none;
  }
}
body.open {
  overflow: hidden;
}
body.open .l-toggle {
  background-image: url(/resource/images/menu_close.svg);
}

/* ドロワーメニュー（toggleを押して出現するメニュー/SPメニュー）
----------------------------------------------------------------- */
.l-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
}

.l-drawer-body {
  position: absolute;
  width: 100%;
  height: 100vh;
  padding-top: 80px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 3.75rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--main)), to(var(--hover)));
  background-image: linear-gradient(to bottom, var(--main), var(--hover));
}

.l-drawer-nav-main {
  position: relative;
  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: 400;
  line-height: 1.4;
  color: var(--white);
}
@media screen and (max-width: 460px) {
  .l-drawer-nav-main__menu {
    padding: 20px 0;
    font-size: 1.125rem;
  }
}
.l-drawer-nav-main__menu:after {
  content: "";
  width: 12px;
  height: 18px;
  position: absolute;
  top: 45%;
  right: 0;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_arrow.svg);
          mask-image: url(/resource/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 460px) {
  .l-drawer-nav-main__menu:after {
    width: 8px;
    height: 12px;
    background-size: 8px auto;
  }
}
.l-drawer-nav-main__menu:hover {
  opacity: 0.7;
}

/* ドロワーメニュー内のアコーディオンメニュー
----------------------------------------------------------------- */
.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: none;
}
.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 {
  font-size: 1rem;
  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 {
    padding-left: 18px;
  }
}
.l-drawer-acc__cont .l-drawer-acc__cont__menu a:hover {
  opacity: 0.7;
}

.l-drawer-nav__recruit {
  padding: 0 20px;
  font-size: 1.4375rem;
  text-align: center;
  color: var(--white);
  font-family: "Shippori Mincho", serif;
  margin-bottom: 40px;
  margin-top: 40px;
}
.l-drawer-nav__recruit a {
  display: block;
}

.l-drawer-nav__contact {
  padding: 0 20px;
}

/* ==========================================================================
フッター
========================================================================== */
footer {
  background-image: url(/resource/images/bg_footer.png);
  background-size: 100% 100%;
  margin-top: -180px;
  padding-top: 190px;
  background-position: top center;
  padding-left: 30px;
  position: relative;
  z-index: 1;
  padding-right: 30px;
}
@media screen and (max-width: 880px) and (min-width: 461px) {
  footer {
    margin-top: calc(-250px - 70 * (880px - 100vw) / 419);
    padding-top: calc(180px + 120 * (880px - 100vw) / 419);
  }
}
@media screen and (max-width: 460px) {
  footer {
    background-image: url(/resource/images/bg_footer_sp.png);
    margin-top: -150px;
    padding-top: 80px;
  }
}

@media screen and (max-width: 460px) {
  .l-ft-top {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100vw;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
}

/* 下層ページナビエリア
----------------------------------------------------------------- */
.l-ft-nav {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}

.l-ft-nav-item {
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.l-ft-nav-item a {
  padding: 30px 20px;
  display: block;
}
.l-ft-nav-item a button {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-ft-nav-item a:hover .c-btn-main button {
  background-color: var(--main);
  color: var(--white);
}
.l-ft-nav-item a:hover .c-btn-main button::after {
  background-color: var(--white) !important;
}
.l-ft-nav-item img {
  width: 78%;
  margin-bottom: 10px;
}
.l-ft-nav-item--recruit {
  background-image: url(/resource/images/footer_nav_bg_recruit.jpg);
}
.l-ft-nav-item--company {
  background-image: url(/resource/images/footer_nav_bg_company.jpg);
}

/* メインエリア
----------------------------------------------------------------- */
.l-ft {
  background-color: var(--white);
  max-width: 1306px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 460px) {
  .l-ft {
    padding-right: 0px;
    padding-left: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.l-ft-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 5%;
}
@media screen and (max-width: 460px) {
  .l-ft-inner {
    display: block;
  }
}

/* ロゴエリア
----------------------------------------------------------------- */
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-ft-logo__wrap a {
  font-size: 0.875rem;
}
.l-ft-logo__wrap .l-ft-logo {
  text-align: center;
  max-width: 289px;
  font-weight: 900;
}
.l-ft-logo__wrap .l-ft-logo img {
  -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: 1.875rem;
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-add {
    margin-top: 20px;
  }
}
.l-ft-logo__wrap .l-ft-add p {
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  line-height: 50px;
  font-size: 0.9375rem;
  text-align: center;
}
@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 .win {
  display: block;
  width: 14px;
  height: 14px;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_win.svg);
          mask-image: url(/resource/images/ico_win.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.l-ft-logo__wrap .l-ft-btn--co a:hover {
  color: var(--main);
  background-color: var(--white);
}
.l-ft-logo__wrap .l-ft-btn--co a:hover .win {
  background-color: var(--main);
}
.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 h3 {
  font-size: 1.4375rem;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 10px;
  padding: 0 20px;
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-btn--rec h3 {
    padding: 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a {
  display: block;
  position: relative;
}
@media screen and (max-width: 460px) {
  .l-ft-logo__wrap .l-ft-btn--rec a {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a:hover {
  opacity: 0.7;
}

/* メニュー
----------------------------------------------------------------- */
.l-ft-nav__wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__wrap {
    max-width: 477px;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-nav__wrap {
    display: none;
  }
}

.l-ft-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 0 8%;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list {
    gap: 5rem 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .l-ft-nav__list {
    display: none;
  }
}
.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;
  margin-bottom: 40px;
}
.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: 1.125rem;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
}
@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 {
  color: var(--main);
}
.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: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -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 {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@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::before {
  content: "・";
  color: var(--main);
  display: inline-block;
}

.l-ft-nav__sub {
  margin-top: 50px;
}
.l-ft-nav__sub ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-ft-nav__sub ul li a {
  font-size: 1.125rem;
  font-weight: 900;
  font-family: "Shippori Mincho", serif;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-ft-nav__sub ul li a:hover {
  color: var(--main);
}
.l-ft-nav__sub ul li + li {
  margin-left: 5em;
}

.l-ft-spnav {
  margin-top: 30px;
}
.l-ft-spnav ul li {
  text-align: center;
}
.l-ft-spnav ul li a {
  font-size: 1.125rem;
  text-align: center !important;
  font-family: "Shippori Mincho", serif;
  font-weight: 900;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-ft-spnav ul li a:hover {
  opacity: 0.8;
}
.l-ft-spnav ul li + li {
  margin-top: 10px;
}

/* コピーライト
----------------------------------------------------------------- */
.l-ft-copy {
  padding: 1.25rem 0;
}
.l-ft-copy p {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  line-height: 1;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 460px) {
  .l-ft-copy p {
    font-size: 10px;
  }
}

/* ページトップに戻るボタン
----------------------------------------------------------------- */
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;
  border-radius: 5px;
}
a#pagetop:hover img {
  opacity: 0.7;
}

/* ==========================================================================
ページタイトル
=========================================================================*/
.l-page-ttl {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
@media screen and (max-width: 460px) {
  .l-page-ttl {
    height: auto;
    margin-top: 30px;
  }
}
.l-page-ttl picture {
  width: 100%;
  height: 100%;
  border: 1px solid var(--hover);
}
.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 {
  width: 87.8%;
  max-width: 1590px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (max-width: 460px) {
  .l-page-ttl .l-page-ttl-inner {
    display: block;
  }
}
.l-page-ttl .l-page-ttl-inner .jp {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 4rem;
  margin-top: -0.75em;
}
@media screen and (max-width: 1810px) and (min-width: 461px) {
  .l-page-ttl .l-page-ttl-inner .jp {
    font-size: 3.5359116022vw;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl .l-page-ttl-inner .jp {
    font-size: 2.25rem;
  }
}
.l-page-ttl .l-page-ttl-inner .en {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 6.5625rem;
  font-weight: 400;
  line-height: 1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--main-rgb), 0.15)), to(rgba(var(--hover-rgb), 0.15)));
  background-image: linear-gradient(to bottom, rgba(var(--main-rgb), 0.15), rgba(var(--hover-rgb), 0.15));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
@media screen and (max-width: 1810px) and (min-width: 461px) {
  .l-page-ttl .l-page-ttl-inner .en {
    font-size: 5.8011049724vw;
  }
}
@media screen and (max-width: 460px) {
  .l-page-ttl .l-page-ttl-inner .en {
    font-size: 3.4375rem;
  }
}

.l-page-ttl-inner__wrap {
  -ms-flex-preferred-size: 34.59%;
      flex-basis: 34.59%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 460px) {
  .l-page-ttl-inner__wrap {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
  }
}

.l-page-ttl-inner__img {
  -ms-flex-preferred-size: 45.41%;
      flex-basis: 45.41%;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1810px) and (min-width: 461px) {
  .l-page-ttl-inner__img {
    border-radius: 1.1049723757vw;
  }
}
.l-page-ttl-inner__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
セクション
=========================================================================*/
.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;
  }
}

.bg--lightblue {
  background-image: url(/resource/images/bg_lightblue.jpg);
}
.bg--lightblue.wave {
  position: relative;
  margin-top: 310px;
}
@media screen and (max-width: 460px) {
  .bg--lightblue.wave {
    margin-top: 250px;
  }
}
.bg--lightblue.wave::before {
  content: "";
  position: absolute;
  top: -230px;
  left: 0;
  width: 100%;
  height: 230px;
  background-image: url(/resource/images/bg_title_lv1_lightblue.png);
  background-size: 100% 100%;
  z-index: -1;
}
@media screen and (max-width: 460px) {
  .bg--lightblue.wave::before {
    background-image: url(/resource/images/bg_title_lv1_lightblue_sp.png);
    height: 151px;
    top: -131px;
  }
}

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

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

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

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

.l-contact {
  max-width: 855px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--white);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px 33px;
  position: relative;
  z-index: 1;
  background-image: url(/resource/images/parts_contact_bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}
@media screen and (max-width: 920px) and (min-width: 461px) {
  .l-contact {
    padding: 3.2608695652vw 3.5869565217vw;
    border-radius: 1.0869565217vw;
  }
  .l-contact .visible-less-tb {
    display: none;
  }
}
@media screen and (max-width: 460px) {
  .l-contact {
    padding: 25px 15px;
  }
}
.l-contact__title {
  font-size: 2.125rem;
  text-align: center;
  margin-bottom: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 920px) and (min-width: 461px) {
  .l-contact__title {
    font-size: 3.6956521739vw;
    margin-bottom: 2.1739130435vw;
  }
}
@media screen and (max-width: 460px) {
  .l-contact__title {
    font-size: 1.25rem;
    white-space: normal;
  }
}

.l-contact-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
}
@media screen and (max-width: 920px) and (min-width: 461px) {
  .l-contact-flex {
    gap: 2.1739130435vw;
  }
}
@media screen and (max-width: 460px) {
  .l-contact-flex {
    display: block;
  }
}

.l-contact-flex__face {
  -ms-flex-preferred-size: 19.41%;
      flex-basis: 19.41%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 460px) {
  .l-contact-flex__face {
    width: 51%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}

.l-contact-flex__text {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 460px) {
  .l-contact-flex__text {
    white-space: normal;
  }
}
@media screen and (max-width: 460px) {
  .l-contact-flex__text p {
    text-align: center;
  }
}
.l-contact-flex__text .txt-tel {
  text-align: center;
}
.l-contact-flex__text .txt-tel img {
  width: 51px;
  margin-right: 10px;
}
@media screen and (max-width: 920px) and (min-width: 461px) {
  .l-contact-flex__text .txt-tel img {
    width: 5.5434782609vw;
    margin-right: 1.0869565217vw;
  }
}
@media screen and (max-width: 460px) {
  .l-contact-flex__text .txt-tel img {
    width: 20px;
  }
}
.l-contact-flex__text .txt-tel a[href^="tel:"] {
  font-size: 5rem;
  text-align: center;
}
@media screen and (max-width: 920px) and (min-width: 461px) {
  .l-contact-flex__text .txt-tel a[href^="tel:"] {
    font-size: 8.6956521739vw;
  }
}
@media screen and (max-width: 460px) {
  .l-contact-flex__text .txt-tel a[href^="tel:"] {
    font-size: 2.5rem;
  }
}
.l-contact-flex__text .min {
  font-family: "Shippori Mincho", serif;
  font-size: 2.3125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 920px) and (min-width: 461px) {
  .l-contact-flex__text .min {
    font-size: 4.0217391304vw;
    margin-bottom: 1.0869565217vw;
  }
}
@media screen and (max-width: 460px) {
  .l-contact-flex__text .min {
    font-size: 1.375rem;
  }
}
.l-contact-flex__text .open {
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 920px) and (min-width: 461px) {
  .l-contact-flex__text .open {
    font-size: 1.7391304348vw;
  }
}
@media screen and (max-width: 460px) {
  .l-contact-flex__text .open {
    text-align: left;
    font-size: inherit;
  }
}
.l-contact-flex__text .open span {
  font-weight: 600;
}

/*-==========================================================================
FlexBox
==========================================================================*/
/* FlexBox 基本
----------------------------------------------------------------- */
.c-flex,
.c-flex--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: no-wrap;
      flex-wrap: no-wrap;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-flex .c-flex-1,
.c-flex--center .c-flex-1 {
  -webkit-box-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;
      -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;
        -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;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 460px) {
  .c-flex--center {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

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

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

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

/* FlexBox サイズごと
----------------------------------------------------------------- */
.c-flex--sm,
.c-flex--30,
.c-flex--md,
.c-flex--lg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
        -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;
      -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;
      -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;
      -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;
        -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;
      -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;
        -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;
      -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;
        -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;
        -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;
      -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;
      -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;
        -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;
      -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;
      -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;
        -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: -ms-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 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 460px) {
  .c-grid-2clm {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

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

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

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

.c-grid-4clm--tb2clm {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 834px) {
  .c-grid-4clm--tb2clm {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 460px) {
  .c-grid-4clm--tb2clm {
    -ms-grid-columns: 1fr;
    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: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -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: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.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(--hover);
}
.c-tb1 tr:first-child,
.c-tb1--white tr:first-child {
  border-top: 1px solid var(--hover);
}
@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: 700;
  line-height: 1.8;
  vertical-align: top;
  width: 210px;
  padding: 1.875rem 0 1.875rem 1.875rem;
}
@media screen and (max-width: 834px) {
  .c-tb1 tr th,
  .c-tb1--white tr th {
    padding: 1.25rem 0 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-tb1 tr th,
  .c-tb1--white tr th {
    padding: 1.25rem 0 0 0;
    width: 100%;
  }
}
.c-tb1 tr td,
.c-tb1--white tr td {
  padding: 1.875rem 1.875rem 1.875rem 30px;
  line-height: 2;
}
@media screen and (max-width: 834px) {
  .c-tb1 tr td,
  .c-tb1--white tr td {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
}
@media screen and (max-width: 460px) {
  .c-tb1 tr td,
  .c-tb1--white tr td {
    padding: 1.25rem 0 1.25rem 0;
    width: 100%;
  }
}

.c-tb1--white tr {
  border-bottom: 1px solid var(--white);
}
.c-tb1--white tr:first-child {
  border-top: 1px solid var(--white);
}

/* 交互のシマシマtable 
----------------------------------------------------------------- */
.c-tb2 tr:nth-child(odd) {
  background-color: var(--white);
}
.c-tb2 tr:nth-child(even) {
  background-color: var(--whitesmoke);
}
@media screen and (max-width: 460px) {
  .c-tb2 tr th,
  .c-tb2 tr td {
    display: block;
    line-height: 1.7;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.c-tb2 tr th {
  font-weight: 700;
  line-height: 1.8;
  vertical-align: top;
  width: 20%;
  padding: 1.875rem 0 1.875rem 1.875rem;
}
@media screen and (max-width: 834px) {
  .c-tb2 tr th {
    padding: 1.25rem 0 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-tb2 tr th {
    padding: 1.25rem 1.25rem 0 1.25rem;
    width: 100%;
  }
}
.c-tb2 tr td {
  padding: 1.875rem 1.875rem 1.875rem 0;
  line-height: 2;
}
@media screen and (max-width: 834px) {
  .c-tb2 tr td {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
}
@media screen and (max-width: 460px) {
  .c-tb2 tr td {
    padding: 1.25rem;
    width: 100%;
  }
}

/* thがベタtdが下線のtable
----------------------------------------------------------------- */
.c-tb3 tr:last-child th,
.c-tb3 tr:last-child td {
  border: none;
}
@media screen and (max-width: 460px) {
  .c-tb3 th,
  .c-tb3 td {
    display: block;
    line-height: 1.7;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.c-tb3 th {
  border-bottom: 1px solid var(--white);
  background-color: var(--whitesmoke);
  font-weight: 700;
  vertical-align: top;
  width: 22%;
  padding: 1.875rem 0 1.875rem 1.875rem;
}
@media screen and (max-width: 834px) {
  .c-tb3 th {
    padding: 1.25rem 0 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 460px) {
  .c-tb3 th {
    padding: 1.25rem;
    width: 100%;
  }
}
.c-tb3 td {
  border-bottom: 1px solid var(--whitesmoke);
  background-color: var(--white);
  padding: 1.875rem;
  line-height: 2;
}
@media screen and (max-width: 834px) {
  .c-tb3 td {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }
}
@media screen and (max-width: 460px) {
  .c-tb3 td {
    padding: 1.25rem;
    width: 100%;
  }
}

/* 複雑な表
----------------------------------------------------------------- */
.c-tb4 {
  overflow: auto;
}
@media screen and (max-width: 460px) {
  .c-tb4 {
    max-height: 445px;
  }
}
.c-tb4::-webkit-scrollbar {
  width: 8px;
  background: var(--whitesmoke);
}
.c-tb4::-webkit-scrollbar:horizontal {
  height: 8px;
  background: var(--whitesmoke);
}
.c-tb4::-webkit-scrollbar-thumb {
  background: var(--main);
  border-radius: 4px;
}
.c-tb4::-webkit-scrollbar-thumb:horizontal {
  background: var(--main);
  border-radius: 4px;
}
.c-tb4 table {
  width: 100%;
  min-width: 720px;
}
.c-tb4 table th,
.c-tb4 table td {
  border: solid 1px var(--border);
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 700;
}
.c-tb4 table th {
  color: var(--main);
  border: solid 1px var(--white);
  background-color: rgba(var(--main-rgb), 0.1);
}
.c-tb4 table td {
  font-weight: 400;
  padding: 0.5rem 1.5rem;
  border: solid 1px var(--border);
  background-color: var(--white);
}
.c-tb4 table .first {
  background-color: rgba(var(--black-rgb), 0.1);
  font-weight: 700;
  border: solid 1px var(--white);
}

/* ==========================================================================
モーダルウィンドウ
=========================================================================*/
.c-modal {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}

.c-modal__bg {
  background: rgba(var(--black-rgb), 0.7);
  height: 100vh;
  width: 100%;
}

.c-modal__cont {
  color: var(--white);
  background: rgba(var(--white-rgb), 0);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  max-width: 860px;
}
@media screen and (max-width: 1280px) {
  .c-modal__cont {
    width: 90%;
  }
}

.c-modal__cont__inner {
  position: relative;
}
.c-modal__cont__inner .c-modal-close__btn {
  width: 28px;
  height: 28px;
  position: absolute;
  top: -3rem;
  right: 0;
  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__txt {
  margin-top: 10px;
}
@media screen and (max-width: 460px) {
  .c-modal__cont__inner .c-modal__txt {
    font-size: 14px;
  }
}

.c-modal__open {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-modal__open:before {
  content: "";
  display: block;
  background-color: var(--white);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: 2px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-modal__open:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 8px;
  left: 8px;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_plus.svg);
          mask-image: url(/resource/images/ico_plus.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--main);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-modal__open img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-modal__open:hover {
  opacity: 0.7;
}
.c-modal__open:hover:before {
  background-color: var(--main);
}
.c-modal__open:hover:after {
  background-color: var(--white);
}

/* ==========================================================================
ナビ
=========================================================================*/
.c-page-nav {
  margin-top: 6.25rem;
  margin-bottom: 100px;
}
.c-page-nav .c-page-nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem 1.875rem;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu {
  text-align: center;
}
@media screen and (max-width: 460px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__menu {
    max-width: initial;
    width: 98%;
  }
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a {
  display: block;
  color: var(--hover);
  line-height: 40px;
  position: relative;
  padding-right: 40px;
  padding-left: 10px;
  border-bottom: 1px solid var(--hover);
  text-align: center;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:after {
  content: "";
  width: 8px;
  height: 13px;
  background-color: var(--hover);
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_arrow.svg);
          mask-image: url(/resource/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  right: 14.5px;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:hover {
  color: var(--white);
  background-color: var(--hover);
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:hover:after {
  background-color: var(--white);
}

.c-page-nav-tag__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: 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(--hover);
}

.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;
  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 .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
  width: 8px;
  height: 16px;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_arrow.svg);
          mask-image: url(/resource/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--black);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-nav-relate__wrap__tmb:hover {
  opacity: 0.7;
}
.c-nav-relate__wrap__tmb:hover .btn {
  background-color: var(--main);
}
.c-nav-relate__wrap__tmb:hover .btn::after {
  background-color: var(--white);
}

/* ==========================================================================
パンくずリスト
=========================================================================*/
.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: -ms-flexbox;
  display: flex;
  -webkit-box-pack: 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;
  position: absolute;
  top: 2px;
  left: 10px;
  bottom: 0;
  margin: auto;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_arrow.svg);
          mask-image: url(/resource/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--black);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

/* ==========================================================================
メールフォーム
=========================================================================*/
/* 入力>確認>完了のフローナビゲーション
----------------------------------------------------------------- */
.c-form-nav,
.c-form-nav--white {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.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(--whitesmoke);
  aspect-ratio: 1/360;
  max-width: 1px;
  width: 100%;
  max-width: 300px;
  height: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-form-nav li,
.c-form-nav--white li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background-color: #e5e5e5;
  position: relative;
  height: 100px;
  width: 100px;
  aspect-ratio: 1;
  border-radius: 10px;
}
@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: 700;
}
@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(--whitesmoke);
}

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

/* 必須マーク
----------------------------------------------------------------- */
.c-form-required {
  position: relative;
}
@media screen and (max-width: 460px) {
  .c-form-required {
    text-align: center;
  }
}
.c-form-required::after {
  content: "必須";
  display: inline-block;
  background-color: var(--main);
  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: 960px) {
  .c-form-required::after {
    margin-left: 10px;
  }
}

/* 入力欄
----------------------------------------------------------------- */
.c-form-radio,
.c-form-checkbox,
.c-form-checkbox--white {
  display: inline-block;
  margin: -4px 8px 0 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.c-form-radio: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;
  background-color: var(--whitesmoke);
}
.c-form-checkbox:checked:before,
.c-form-checkbox--white:checked:before {
  content: "";
  background-image: url(/resource/images/ico_form_checked.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  display: block;
  position: absolute;
  left: 5px;
  top: 0px;
}
@media screen and (max-width: 834px) {
  .c-form-checkbox:checked:before,
  .c-form-checkbox--white:checked:before {
    top: -5px;
  }
}

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

.c-form-input,
.c-form-select,
.c-form-textarea {
  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%;
}
@media screen and (max-width: 960px) {
  .c-form-input,
  .c-form-select,
  .c-form-textarea {
    max-width: 100%;
  }
}

.c-form-select,
.c-form-input {
  height: 58px;
}

.c-form-input,
.c-form-textarea {
  font-size: 18px;
}

.c-form-select__wrap {
  position: relative;
}
.c-form-select__wrap select.c-form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.c-form-select__wrap:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-right: solid 1px var(--main);
  border-bottom: solid 1px var(--main);
  -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: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.c-form-radio__wrap--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.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: white;
  color: rgba(var(--black-rgb), 0.6);
  border: none;
  border-radius: 50px;
  padding: 12px 50px;
  text-align: center;
  margin-right: 20px;
  font-weight: 700;
}

.c-form-input-file::file-selector-button {
  background: white;
  color: rgba(var(--black-rgb), 0.6);
  border: none;
  border-radius: 50px;
  padding: 12px 50px;
  text-align: center;
  margin-right: 20px;
  font-weight: 700;
}
@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.8;
  font-size: 13px;
  color: rgba(var(--black-rgb), 0.6);
}

/* placeholder 
----------------------------------------------------------------- */
.c-form-input::-webkit-input-placeholder, .c-form-select::-webkit-input-placeholder, .c-form-textarea::-webkit-input-placeholder {
  color: rgba(var(--black-rgb), 0.5);
}
.c-form-input::-moz-placeholder, .c-form-select::-moz-placeholder, .c-form-textarea::-moz-placeholder {
  color: rgba(var(--black-rgb), 0.5);
}
.c-form-input:-ms-input-placeholder, .c-form-select:-ms-input-placeholder, .c-form-textarea:-ms-input-placeholder {
  color: rgba(var(--black-rgb), 0.5);
}
.c-form-input::-ms-input-placeholder, .c-form-select::-ms-input-placeholder, .c-form-textarea::-ms-input-placeholder {
  color: rgba(var(--black-rgb), 0.5);
}
.c-form-input::placeholder,
.c-form-select::placeholder,
.c-form-textarea::placeholder {
  color: rgba(var(--black-rgb), 0.5);
}

/* 個⼈情報の取扱いについて
----------------------------------------------------------------- */
.c-form-privacy {
  padding: 2.5rem 3.75rem;
}
@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-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 {
  display: inline-block;
  font-weight: 700;
}

.c-form-notsale__wrap {
  padding: 2.5rem;
  background-color: var(--white);
  border: 1px solid var(--hover);
  border-radius: 10px;
}
@media screen and (max-width: 460px) {
  .c-form-notsale__wrap {
    padding: 1.875rem 1.25rem;
  }
}
.c-form-notsale__wrap h4 {
  text-align: center;
}
.c-form-notsale__wrap .c-form-notsale__cheackbox {
  margin-top: 1.875rem;
  text-align: center;
  background-color: rgba(var(--hover-rgb), 0.05);
  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-notsale__cheackbox .c-form-checkbox {
  background-color: var(--white);
}
@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;
  }
}
@media screen and (max-width: 460px) {
  .c-form-notsale__wrap .txt-center {
    text-align: left !important;
  }
}

.c-form-agree {
  margin-top: 80px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 460px) {
  .c-form-agree {
    text-align: left;
  }
}

.c-form-agree-box {
  background-color: var(--white);
  padding: 40px 40px;
  margin-top: 40px;
  border-radius: 10px;
}
@media screen and (max-width: 460px) {
  .c-form-agree-box {
    padding: 20px;
  }
}
.c-form-agree-box h4 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1em;
}

.c-form-agree-box-inner {
  height: 180px;
  background-color: var(--whitesmoke);
  padding: 20px;
  overflow: auto;
}
.c-form-agree-box-inner p,
.c-form-agree-box-inner dt,
.c-form-agree-box-inner dd {
  font-size: 0.875rem;
}

/* ==========================================================================
ボタン
=========================================================================*/
/* メインボタン
----------------------------------------------------------------- */
.c-btn-main {
  text-align: center;
  max-width: 310px;
  width: 100%;
}
.c-btn-main a,
.c-btn-main button {
  position: relative;
  background-color: var(--hover);
  line-height: 70px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-radius: 5px;
}
.c-btn-main a .txt,
.c-btn-main button .txt {
  font-weight: 400;
  color: var(--white);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.c-btn-main a::after,
.c-btn-main button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 16px;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_arrow.svg);
          mask-image: url(/resource/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-btn-main a:hover,
.c-btn-main button:hover {
  background-color: var(--main);
}
.c-btn-main--sm a,
.c-btn-main--sm button {
  background-color: rgba(255, 255, 255, 0.8);
  line-height: 50px;
}
.c-btn-main--sm a::after,
.c-btn-main--sm button::after {
  background-color: var(--hover);
}
.c-btn-main--sm a:hover,
.c-btn-main--sm button:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.c-btn-main--white a,
.c-btn-main--white button {
  background-color: var(--white);
}
.c-btn-main--white a::after,
.c-btn-main--white button::after {
  background-color: var(--main);
}
.c-btn-main--white a .txt,
.c-btn-main--white button .txt {
  font-weight: 700;
  color: var(--main);
}
.c-btn-main--white a:hover .txt,
.c-btn-main--white button:hover .txt {
  color: var(--white);
}
.c-btn-main--white a:hover::after,
.c-btn-main--white button:hover::after {
  background-color: var(--white);
}

.c-btn-main--win a::after,
.c-btn-main--win button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_win.svg);
          mask-image: url(/resource/images/ico_win.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

/* サブボタン ⚠️使用しない場合は削除 or コメントアウト
----------------------------------------------------------------- */
.c-btn-sub a,
.c-btn-sub .c-btn-sub__inner,
.c-btn-sub button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: 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: 400;
}
.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(--hover);
  border-radius: 100%;
  width: 30px;
  height: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@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 .btn::after,
.c-btn-sub .c-btn-sub__inner .btn::after,
.c-btn-sub button .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 6px;
  height: 12px;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_arrow.svg);
          mask-image: url(/resource/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-btn-sub a:hover,
.c-btn-sub .c-btn-sub__inner:hover,
.c-btn-sub button:hover {
  color: var(--hover);
}
.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(--main);
}

/* カード型の横長ボタン 1段 ⚠️使用しない場合は削除 or コメントアウト
----------------------------------------------------------------- */
.c-btn-card,
.c-btn-card--white {
  background-color: var(--whitesmoke);
  padding: 1.875rem 5.625rem 1.875rem 3.75rem;
  position: relative;
  display: block;
}
@media screen and (max-width: 960px) {
  .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 .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: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -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 .c-btn-card__btn,
.c-btn-card--white .c-btn-card__btn {
  display: block;
  position: absolute;
  right: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--main);
  width: 50px;
  height: 50px;
  border-radius: 100px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 834px) {
  .c-btn-card .c-btn-card__btn,
  .c-btn-card--white .c-btn-card__btn {
    width: 40px;
    height: 40px;
  }
}
.c-btn-card .c-btn-card__btn::before,
.c-btn-card--white .c-btn-card__btn::before {
  content: "";
  width: 10px;
  height: 20px;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_arrow.svg);
          mask-image: url(/resource/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 834px) {
  .c-btn-card .c-btn-card__btn::before,
  .c-btn-card--white .c-btn-card__btn::before {
    width: 8px;
    height: 16px;
  }
}
.c-btn-card:hover,
.c-btn-card--white:hover {
  opacity: 0.7;
}
.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:hover .c-btn-card__btn,
.c-btn-card--white:hover .c-btn-card__btn {
  background-color: var(--hover);
}

.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(--whitesmoke);
  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%);
  width: 16px;
  height: 16px;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_win2.svg);
          mask-image: url(/resource/images/ico_win2.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--black);
  -webkit-transition: background-color 0.3s;
  transition: background-color 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-color: var(--main);
}
.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(--hover);
}
.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(--hover);
}

/* 数字つき　タイトルとテキストのカード
----------------------------------------------------------------- */
.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: -ms-flexbox;
  display: flex;
  -webkit-box-align: 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: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: auto;
}
.c-card-tmb-cat .c-card-tmb-cat__head img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.c-card-tmb-cat .c-card-tmb-cat__cont {
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: 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: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 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: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: 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,
.c-ttl-xxlg,
.c-ttl-xlg,
.c-ttl-lg,
.c-ttl-md,
.c-ttl-sm {
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

h2,
.c-ttl-xxlg {
  font-size: 3.5625rem;
}
@media screen and (max-width: 834px) {
  h2,
  .c-ttl-xxlg {
    font-size: 3rem;
  }
}
@media screen and (max-width: 460px) {
  h2,
  .c-ttl-xxlg {
    font-size: 2.25rem;
  }
}

h3,
.c-ttl-xlg {
  font-size: 3rem;
}
@media screen and (max-width: 834px) {
  h3,
  .c-ttl-xlg {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  h3,
  .c-ttl-xlg {
    font-size: 2.0625rem;
  }
}

h4,
.c-ttl-lg {
  font-size: 2.0625rem;
}
@media screen and (max-width: 834px) {
  h4,
  .c-ttl-lg {
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 460px) {
  h4,
  .c-ttl-lg {
    font-size: 1.625rem;
  }
}

h5,
.c-ttl-md {
  font-size: 1.75rem;
}
@media screen and (max-width: 834px) {
  h5,
  .c-ttl-md {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 460px) {
  h5,
  .c-ttl-md {
    font-size: 1.4375rem;
  }
}

h6,
.c-ttl-sm {
  font-size: 1.4375rem;
}
@media screen and (max-width: 834px) {
  h6,
  .c-ttl-sm {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 460px) {
  h6,
  .c-ttl-sm {
    font-size: 1.25rem;
  }
}

/* 見出し・タイトル
----------------------------------------------------------------- */
.c-ttl-lv1 {
  margin-bottom: 5.625rem;
  background-image: url(/resource/images/bg_title_lv1.png);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: top left;
  height: 230px;
  padding-top: 89px;
}
@media screen and (max-width: 460px) {
  .c-ttl-lv1 {
    background-image: url(/resource/images/bg_title_lv1_sp.png);
    height: 150px;
    padding-top: 30px;
    margin-bottom: 60px;
    background-size: cover;
    height: auto;
  }
}
.c-ttl-lv1 .en {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(var(--hover-rgb), 0.2);
  font-weight: 200;
}
@media screen and (max-width: 460px) {
  .c-ttl-lv1 .en {
    font-size: 4.375rem;
  }
}
.c-ttl-lv1 .ja {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  margin-top: -20px;
  font-weight: 600;
}
.c-ttl-lv1 .ja::before {
  content: "";
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/resource/images/ico_title_star.svg);
  display: inline-block;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  margin-right: 7px;
}
@media screen and (max-width: 834px) {
  .c-ttl-lv1 .ja {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 460px) {
  .c-ttl-lv1 .ja {
    font-size: 2.0625rem;
  }
}
.c-ttl-lv1--lightblue {
  background-image: url(/resource/images/bg_title_lv1_lightblue.png);
}
@media screen and (max-width: 460px) {
  .c-ttl-lv1--lightblue {
    background-image: url(/resource/images/bg_title_lv1_lightblue_sp.png);
  }
}
.c-ttl-lv1--center {
  text-align: center;
}
.c-ttl-lv1--nobg {
  background-image: none;
  padding-top: 0;
  height: auto;
}

.c-ttl-lv2 {
  border-bottom: 1px solid var(--hover);
  font-size: 1.75rem;
  padding-bottom: 10px;
  margin-bottom: 1em;
}
@media screen and (max-width: 460px) {
  .c-ttl-lv2 {
    font-size: 1.625rem;
  }
}

/* ==========================================================================
スライド（swiper、slick）
=========================================================================*/
/* サムネイル付きのスワイパー
-----------------------------------------------------*/
.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-color: var(--black);
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_arrow.svg);
          mask-image: url(/resource/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 13px;
  height: 13px;
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  margin: auto;
}
.c-slide-tmb__wrap .swiper-button-next:hover:after,
.c-slide-tmb__wrap .swiper-button-prev:hover:after {
  background-color: var(--hover);
}
.c-slide-tmb__wrap .swiper-button-next:hover::before,
.c-slide-tmb__wrap .swiper-button-prev:hover::before {
  background-color: var(--white);
}
.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: -ms-flexbox;
  display: flex;
  -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(--whitesmoke);
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6px;
  height: 10px;
  z-index: 5;
  position: relative;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_arrow.svg);
          mask-image: url(/resource/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--black);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.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-color: var(--white);
}
.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: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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 {
  left: 30%;
  top: 30%;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--03 {
  left: 40%;
  top: 30%;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--04 {
  right: 40%;
  top: 30%;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--05 {
  right: 30%;
  top: 30%;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--06 {
  right: 20%;
  top: 30%;
}

.swiper.mapSwiper {
  margin-top: 1.25rem;
  overflow: visible;
  position: relative;
}
.swiper.mapSwiper .swiper-wrapper .swiper-slide .c-slide-map__card {
  padding: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
  background-color: var(--whitesmoke);
}
.swiper.mapSwiper .swiper-wrapper .swiper-slide.swiper-slide-active .c-slide-map__card {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
@media screen and (max-width: 834px) {
  .swiper.mapSwiper .swiper-wrapper .swiper-slide.swiper-slide-active .c-slide-map__card {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}
.swiper.mapSwiper .swiper-wrapper .swiper-slide.swiper-slide-prev.map-prev, .swiper.mapSwiper .swiper-wrapper .swiper-slide.swiper-slide-next.map-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: 20%;
  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;
  width: 40px;
  height: 62px;
  z-index: 5;
  position: relative;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_arrow.svg);
          mask-image: url(/resource/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--black);
  -webkit-transition: background-color 0.3s;
  transition: background-color 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-color: var(--main);
}
.map-next.swiper-button-next.swiper-button-disabled,
.map-prev.swiper-button-prev.swiper-button-disabled {
  pointer-events: none;
}
.map-next.swiper-button-next.swiper-button-disabled:before,
.map-prev.swiper-button-prev.swiper-button-disabled:before {
  opacity: 0 !important;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.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);
          transform: scale(-1, 1);
  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-mv-wrap {
  position: relative;
  background-image: url(/resource/images/idx_mv_bg.png);
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding-top: 60px;
  padding-bottom: 344px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 1120px) and (min-width: 461px) {
  .p-idx-mv-wrap {
    padding-top: 5.3571428571vw;
    padding-bottom: 30.7142857143vw;
    padding-left: 2.6785714286vw;
    padding-right: 2.6785714286vw;
  }
}
@media screen and (min-width: 1978px) {
  .p-idx-mv-wrap {
    padding-bottom: calc(344px + (100vw - 1978px) * 936 / 2732);
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mv-wrap {
    padding-bottom: 154px;
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
    background-image: url(/resource/images/idx_mv_bg_sp.png);
  }
}

.p-idx-mv-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 1075px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1120px) and (min-width: 461px) {
  .p-idx-mv-inner {
    max-width: 95.9821428571vw;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mv-inner {
    display: block;
    max-width: none;
  }
}

.p-idx-mv__catch {
  z-index: 2;
  -ms-flex-preferred-size: 44.7%;
      flex-basis: 44.7%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0;
}
@media screen and (max-width: 460px) {
  .p-idx-mv__catch {
    width: 75.2vw;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 30px;
  }
}

.p-idx-mv__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 8%;
  opacity: 0;
  white-space: nowrap;
}
@media screen and (max-width: 460px) {
  .p-idx-mv__list {
    white-space: normal;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-idx-mv__list p {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 1120px) and (min-width: 461px) {
  .p-idx-mv__list p {
    font-size: 2.1428571429vw;
    margin-bottom: 0.4464285714vw;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mv__list p {
    font-size: 1.125rem;
  }
}
.p-idx-mv__list ul li {
  font-size: 1.25rem;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(1.524%, var(--main)), to(var(--hover)));
  background-image: linear-gradient(to right, var(--main) 1.524%, var(--hover));
  color: var(--white);
  border-radius: 100px;
  padding: 10px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
@media screen and (max-width: 1120px) and (min-width: 461px) {
  .p-idx-mv__list ul li {
    font-size: 1.7857142857vw;
    padding: 0.8928571429vw 2.1428571429vw;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mv__list ul li {
    padding: 10px 35px 10px 10px;
    font-size: 1rem;
  }
}
.p-idx-mv__list ul li > div {
  position: relative;
  padding-left: 80px;
}
@media screen and (max-width: 1120px) and (min-width: 461px) {
  .p-idx-mv__list ul li > div {
    padding-left: 7.1428571429vw;
  }
}
@media screen and (max-width: 460px) {
  .p-idx-mv__list ul li > div {
    line-height: 1.3;
  }
}
.p-idx-mv__list ul li + li {
  margin-top: 10px;
}
@media screen and (max-width: 1120px) and (min-width: 461px) {
  .p-idx-mv__list ul li + li {
    margin-top: 0.8928571429vw;
  }
}
.p-idx-mv__list ul li img {
  width: 60px;
  height: 32px;
  margin-right: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 1120px) and (min-width: 461px) {
  .p-idx-mv__list ul li img {
    width: 5.3571428571vw;
    height: 2.8571428571vw;
    margin-right: 1.7857142857vw;
  }
}

/* リード
----------------------------------------------------------------- */
.p-idx-lead {
  padding-bottom: 100px;
}
.p-idx-lead .l-contact {
  margin-top: -60px;
  opacity: 0;
}
@media screen and (max-width: 460px) {
  .p-idx-lead .l-contact {
    margin-top: -33px;
  }
}

.p-idx-lead-catch {
  background-color: var(--whitesmoke);
  border-radius: 10px;
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  padding: 42px 60px;
  margin-top: 104px;
  margin-bottom: 80px;
}
@media screen and (max-width: 460px) {
  .p-idx-lead-catch {
    margin-top: 80px;
    font-size: 1.75rem;
    padding: 30px 25px;
    margin-bottom: 60px;
  }
}

.p-idx-lead-catch__inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.p-idx-lead-catch__inner::before, .p-idx-lead-catch__inner::after {
  content: "";
  display: block;
  width: 42px;
  height: 38px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 460px) {
  .p-idx-lead-catch__inner::before, .p-idx-lead-catch__inner::after {
    width: 34px;
    height: 31px;
    top: auto;
    bottom: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.p-idx-lead-catch__inner::before {
  background-image: url(/resource/images/idx_lead_catch_star_left.png);
  left: -40px;
}
@media screen and (max-width: 460px) {
  .p-idx-lead-catch__inner::before {
    left: -10px;
  }
}
.p-idx-lead-catch__inner::after {
  background-image: url(/resource/images/idx_lead_catch_star_right.png);
  right: -40px;
}
@media screen and (max-width: 460px) {
  .p-idx-lead-catch__inner::after {
    right: -10px;
  }
}

.p-idx-lead-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .p-idx-lead-contents {
    display: block;
  }
}

.p-idx-lead-contents-text {
  -ms-flex-preferred-size: 47%;
      flex-basis: 47%;
}
@media screen and (max-width: 460px) {
  .p-idx-lead-contents-text {
    margin-bottom: 50px;
  }
}
.p-idx-lead-contents-text__catch {
  font-size: 2.5rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 460px) {
  .p-idx-lead-contents-text__catch {
    font-size: 2.0625rem;
  }
}
.p-idx-lead-contents-text p {
  font-size: 1.1875rem;
  line-height: 2.2;
}
@media screen and (max-width: 460px) {
  .p-idx-lead-contents-text p {
    font-size: 1rem;
    line-height: 2;
  }
}
.p-idx-lead-contents-text p em {
  font-style: normal;
  color: var(--hover);
  font-weight: 600;
}

.p-idx-lead-contents-image {
  -ms-flex-preferred-size: 46.57%;
      flex-basis: 46.57%;
}

/* 選ばれる理由
----------------------------------------------------------------- */
.p-idx-why {
  padding-bottom: 100px;
}

.p-idx-why-list {
  margin-bottom: 100px;
}
@media screen and (max-width: 460px) {
  .p-idx-why-list {
    margin-bottom: 160px;
  }
}
.p-idx-why-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 460px) {
  .p-idx-why-list ul {
    display: block;
  }
}
.p-idx-why-list ul li {
  -ms-flex-preferred-size: 22.87%;
      flex-basis: 22.87%;
  border-radius: 10px;
  background-color: var(--whitesmoke);
  text-align: center;
  padding: 30px 10px;
}
.p-idx-why-list ul li img {
  width: 50%;
}
@media screen and (max-width: 460px) {
  .p-idx-why-list ul li img {
    width: 35%;
  }
}
.p-idx-why-list ul li h3 {
  font-size: 1.5rem;
  margin-top: 1.5em;
}
.p-idx-why-list ul li h3 span {
  font-family: "Jost", sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
}
.p-idx-why-list ul li h3 span::after {
  content: "";
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/resource/images/ico_star_blue.svg);
  display: inline-block;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  margin-left: 7px;
  margin-right: 5px;
}
@media screen and (max-width: 460px) {
  .p-idx-why-list ul li + li {
    margin-top: 20px;
  }
}

.p-idx-why-eco a {
  display: block;
  text-align: center;
  border-radius: 10px;
  background-image: url(/resource/images/idx_why_eco_bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 113px 50px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 460px) {
  .p-idx-why-eco a {
    background-image: url(/resource/images/idx_why_eco_bg_sp.jpg);
  }
}
.p-idx-why-eco a:hover {
  opacity: 0.8;
}
.p-idx-why-eco a:hover .p-idx-why-eco__button {
  background-color: var(--main);
}
.p-idx-why-eco a:hover .p-idx-why-eco__button::after {
  background-color: var(--white);
}
.p-idx-why-eco .c-ttl-lv1 {
  background: none;
  padding-top: 0;
  margin-bottom: 0;
  height: auto;
}
.p-idx-why-eco .c-ttl-lv1 .en {
  color: rgba(var(--white-rgb), 0.4);
}
@media screen and (max-width: 460px) {
  .p-idx-why-eco .c-ttl-lv1 .en {
    font-size: 2.5rem;
  }
}
.p-idx-why-eco .c-ttl-lv1 .ja {
  color: var(--white);
}
@media screen and (max-width: 460px) {
  .p-idx-why-eco .c-ttl-lv1 .ja {
    margin-top: -10px;
    line-height: 1.2;
  }
}
.p-idx-why-eco .c-ttl-lv1 .ja::before {
  display: none;
}

.p-idx-why-eco__button {
  background-color: var(--white);
  width: 64px;
  height: 64px;
  border-radius: 100%;
  position: absolute;
  bottom: 41px;
  right: 49px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-idx-why-eco__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 10px;
  height: 15px;
  /* ⚠️Safariのhoverちらつき防止のため、
  		   背景画像差し替えではなくSVGのmask方式を使用。
  		   アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_arrow.svg);
          mask-image: url(/resource/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--hover);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 460px) {
  .p-idx-why-eco__button {
    bottom: 20px;
    right: 20px;
  }
}

/* サービス内容
----------------------------------------------------------------- */
.p-idx-service {
  padding-bottom: 10px;
}
.p-idx-service .l-contact {
  margin-top: 100px;
}

.p-idx-service-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 0;
}
@media screen and (max-width: 460px) {
  .p-idx-service-contents {
    display: block;
  }
}

.p-idx-service-contents-item {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  border: 2px solid var(--hover);
  border-radius: 20px;
  background-color: var(--white);
}
@media screen and (max-width: 460px) {
  .p-idx-service-contents-item + .p-idx-service-contents-item {
    margin-top: 20px;
  }
}
.p-idx-service-contents-item a {
  padding: 30px 40px;
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 460px) {
  .p-idx-service-contents-item a {
    padding: 20px;
  }
}
.p-idx-service-contents-item a:hover .btn {
  background-color: var(--main);
}
.p-idx-service-contents-item a:hover .btn::after {
  background-color: var(--white);
}
.p-idx-service-contents-item__title {
  font-size: 1.5rem;
  position: relative;
  padding-left: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 460px) {
  .p-idx-service-contents-item__title {
    display: block;
    padding-left: 0;
    text-align: center;
  }
}
.p-idx-service-contents-item__title img {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 460px) {
  .p-idx-service-contents-item__title img {
    position: static;
    display: block;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: none;
            transform: none;
    margin-bottom: 20px;
  }
}
.p-idx-service-contents-item__text {
  padding-right: 74px;
  line-height: 2.2;
  position: relative;
  border-top: 1px solid var(--hover);
  padding-top: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 460px) {
  .p-idx-service-contents-item__text {
    padding-right: 30px;
  }
}
.p-idx-service-contents-item__text .btn {
  display: inline-block;
  background-color: var(--hover);
  border-radius: 100%;
  width: 30px;
  height: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 460px) {
  .p-idx-service-contents-item__text .btn {
    width: 25px;
    height: 25px;
  }
}
.p-idx-service-contents-item__text .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 6px;
  height: 12px;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_arrow.svg);
          mask-image: url(/resource/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

/* お知らせ
----------------------------------------------------------------- */
.p-idx-news {
  padding-top: 100px;
  padding-bottom: 180px;
}
.p-idx-news .c-ttl-lv1 {
  background: none;
  padding-top: 0;
  margin-bottom: 0;
  height: auto;
}

.p-idx-news-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .p-idx-news-inner {
    display: block;
  }
}

.p-idx-news-title {
  -ms-flex-preferred-size: 285px;
      flex-basis: 285px;
}
@media screen and (max-width: 460px) {
  .p-idx-news-title {
    margin-bottom: 30px;
  }
}

.p-idx-news-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-idx-news-contents ul {
  background-color: var(--white);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.p-idx-news-contents ul li a {
  display: block;
  padding: 20px 30px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-idx-news-contents ul li a:hover {
  color: var(--main);
}
.p-idx-news-contents ul li:not(:last-child) {
  border-bottom: 1px dotted #e5e5e5;
}

.p-idx-news-contents-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.p-idx-news-contents-date {
  margin-right: 30px;
}

.p-idx-news__btn {
  text-align: right;
  margin-top: 30px;
}
.p-idx-news__btn a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: auto;
}

/* ==========================================================================
選ばれる理由
========================================================================== */
/* 共通
----------------------------------------------------------------- */
.p-why-sec-wrap {
  padding-bottom: 160px;
}
@media screen and (max-width: 460px) {
  .p-why-sec-wrap {
    padding-bottom: 100px;
  }
}

.p-why-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 60px;
  padding-right: 60px;
  background-color: var(--white);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 80px;
}
@media screen and (max-width: 460px) {
  .p-why-sec {
    padding: 80px 20px;
    margin-bottom: 40px;
  }
}
.p-why-sec .c-ttl-lv1 .en {
  color: rgba(var(--hover-rgb), 0.1);
}

.p-why-sec-title__illust {
  width: 130px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.p-why-sec-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .p-why-sec-contents {
    display: block;
  }
}

.p-why-sec-contents-text {
  -ms-flex-preferred-size: 48.14%;
      flex-basis: 48.14%;
}
@media screen and (max-width: 460px) {
  .p-why-sec-contents-text {
    margin-bottom: 40px;
  }
}
.p-why-sec-contents-text p {
  line-height: 2;
}
.p-why-sec-contents-text p + .c-ttl-lv2 {
  margin-top: 2em;
}

.p-why-sec-contents-image {
  -ms-flex-preferred-size: 48.14%;
      flex-basis: 48.14%;
}
.p-why-sec-contents-image img {
  border-radius: 10px;
}

/* 保全活動
----------------------------------------------------------------- */
.p-why-eco {
  background-color: #b5e5e4;
  padding-bottom: 300px;
}
@media screen and (max-width: 460px) {
  .p-why-eco {
    padding-bottom: 210px;
  }
}

.p-why-eco__title {
  height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(/resource/images/why_eco_title_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}
@media screen and (max-width: 460px) {
  .p-why-eco__title {
    background-image: url(/resource/images/why_eco_title_bg_sp.jpg);
    height: auto;
    margin-bottom: 60px;
    height: 280px !important;
    margin-bottom: 20px;
  }
}
.p-why-eco__title .c-ttl-lv1 {
  margin-bottom: 0;
}
.p-why-eco__title .c-ttl-lv1 .en {
  color: rgba(var(--white-rgb), 0.4);
}
@media screen and (max-width: 460px) {
  .p-why-eco__title .c-ttl-lv1 .en {
    font-size: 3.125rem;
  }
}
.p-why-eco__title .c-ttl-lv1 .ja {
  color: var(--white);
}
.p-why-eco__title .c-ttl-lv1 .ja::before {
  display: none;
}

.p-why-eco-contents-box {
  background-color: var(--white);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px 60px;
}
@media screen and (max-width: 460px) {
  .p-why-eco-contents-box {
    padding: 30px 20px;
  }
}
.p-why-eco-contents-box__title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1em;
}
.p-why-eco-contents-box + .p-why-eco-contents-box {
  margin-top: 80px;
}
@media screen and (max-width: 460px) {
  .p-why-eco-contents-box + .p-why-eco-contents-box {
    margin-top: 40px;
  }
}

.p-why-eco-contents-box-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .p-why-eco-contents-box-flex {
    display: block;
  }
}
.p-why-eco-contents-box-flex > div {
  -ms-flex-preferred-size: 48.14%;
      flex-basis: 48.14%;
}

@media screen and (max-width: 460px) {
  .p-why-eco-contents-box-flex-text {
    margin-bottom: 30px;
  }
}
.p-why-eco-contents-box-flex-text p {
  line-height: 2;
}

.p-why-eco-contents-box-flex-image img {
  border-radius: 10px;
}

.p-why-eco-contents-box-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .p-why-eco-contents-box-thumbs {
    display: block;
  }
}
.p-why-eco-contents-box-thumbs figure {
  margin: 0;
  -ms-flex-preferred-size: 30.83%;
      flex-basis: 30.83%;
}
.p-why-eco-contents-box-thumbs figure img {
  border-radius: 10px;
}
@media screen and (max-width: 460px) {
  .p-why-eco-contents-box-thumbs figure + figure {
    margin-top: 20px;
  }
}

.p-why-eco-contents-box__map {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

/* ==========================================================================
サービス内容
========================================================================== */
/* 共通
----------------------------------------------------------------- */
.p-service-sec {
  padding-bottom: 160px;
}
@media screen and (max-width: 460px) {
  .p-service-sec {
    padding-bottom: 60px;
  }
}
.p-service-sec .l-contact {
  margin-top: 100px;
}

.p-service-sec-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .p-service-sec-flex {
    display: block;
  }
}
.p-service-sec-flex > div {
  -ms-flex-preferred-size: 48.14%;
      flex-basis: 48.14%;
}

@media screen and (max-width: 460px) {
  .p-service-sec-flex-text {
    margin-bottom: 30px;
  }
}
.p-service-sec-flex-text .c-btn-main {
  margin-top: 30px;
}

.p-service-sec-flex-image img {
  border-radius: 10px;
}

.p-service-thumbs-item {
  -ms-flex-preferred-size: 30.83%;
      flex-basis: 30.83%;
  margin: 0;
  margin-top: 40px;
}
.p-service-thumbs-item img {
  border-radius: 10px;
}

/* 家庭用浄化槽向けサービス
----------------------------------------------------------------- */
.p-service-home p + .c-ttl-lv2 {
  margin-top: 2em;
}

.p-service-home-list,
.p-service-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px 0;
}
@media screen and (max-width: 460px) {
  .p-service-home-list,
  .p-service-thumbs {
    display: block;
  }
}

.p-service-home-list {
  margin-top: 100px;
}

.p-service-home-list-item {
  -ms-flex-preferred-size: 30.83%;
      flex-basis: 30.83%;
  background-color: var(--white);
  -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);
  border-radius: 10px;
  overflow: hidden;
}
.p-service-home-list-item .p-service-home-list-item__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--main)), to(var(--hover)));
  background-image: linear-gradient(to bottom, var(--main), var(--hover));
  color: var(--white);
  padding: 19px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 460px) {
  .p-service-home-list-item .p-service-home-list-item__title {
    font-size: 1.25rem;
    padding: 29px 10px;
  }
}
.p-service-home-list-item p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
  padding: 15px 15px;
}
@media screen and (max-width: 460px) {
  .p-service-home-list-item + .p-service-home-list-item {
    margin-top: 40px;
  }
}

.p-service-thumbs {
  margin-bottom: 100px;
}

/* 工場・事業所向け浄化槽サービス　
----------------------------------------------------------------- */
.p-service-industrial-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .p-service-industrial-thumbs {
    display: block;
  }
}
.p-service-industrial-thumbs > figure {
  -ms-flex-preferred-size: 48.18%;
      flex-basis: 48.18%;
  margin: 0;
}
.p-service-industrial-thumbs > figure img {
  border-radius: 10px;
}
@media screen and (max-width: 460px) {
  .p-service-industrial-thumbs > figure + figure {
    margin-top: 40px;
  }
}

/* バキュームカーの手配
----------------------------------------------------------------- */
.p-service-vacuum {
  padding-bottom: 300px;
}

/* ==========================================================================
サービス内容
========================================================================== */
.p-company-sec {
  padding-bottom: 100px;
}

/* ごあいさつ
----------------------------------------------------------------- */
.p-company-message-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .p-company-message-flex {
    display: block;
  }
}

.p-company-message-flex-text {
  -ms-flex-preferred-size: 60.92%;
      flex-basis: 60.92%;
}
@media screen and (max-width: 460px) {
  .p-company-message-flex-text {
    margin-bottom: 30px;
  }
}
.p-company-message-flex-text__catch {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--hover);
  line-height: 2;
  margin-bottom: 1.25em;
}
.p-company-message-flex-text__signature {
  font-weight: 600;
  text-align: right;
  font-size: 1.4375rem;
}
.p-company-message-flex-text__signature span {
  font-size: 1rem;
  margin-right: 1em;
}

.p-company-message-flex-image {
  -ms-flex-preferred-size: 29.81%;
      flex-basis: 29.81%;
}
.p-company-message-flex-image img {
  border-radius: 10px;
}

/* 企業理念
----------------------------------------------------------------- */
.p-company-philosophy__catch {
  font-size: 2.5rem;
  color: var(--hover);
  font-family: "Shippori Mincho", serif;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-radius: 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);
  padding: 34px 20px;
  font-weight: 600;
  margin-bottom: 80px;
}
@media screen and (max-width: 460px) {
  .p-company-philosophy__catch {
    font-size: 1.5rem;
  }
}

.p-company-philosophy-wrap {
  padding-bottom: 100px;
}

.p-company-philosophy-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .p-company-philosophy-flex {
    display: block;
  }
}
.p-company-philosophy-flex > div {
  -ms-flex-preferred-size: 48.18%;
      flex-basis: 48.18%;
}

@media screen and (max-width: 460px) {
  .p-company-philosophy-flex-text {
    margin-bottom: 30px;
  }
}

/* 沿革
----------------------------------------------------------------- */
.p-company-history-table tr {
  border-bottom-color: #e5e5e5;
}
.p-company-history-table tr:first-child {
  border-top-color: #e5e5e5;
}
.p-company-history-table tr th {
  width: 255px;
}
.p-company-history-table tr th span {
  display: inline-block;
  margin-left: 2em;
}
@media screen and (max-width: 460px) {
  .p-company-history-table tr th span {
    margin-left: 0;
  }
}

/* アクセス
----------------------------------------------------------------- */
.p-company-access {
  padding-bottom: 200px;
  margin-bottom: -50px;
}

.p-company-access-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 460px) {
  .p-company-access-flex {
    display: block;
  }
}
.p-company-access-flex > div {
  -ms-flex-preferred-size: 48.18%;
      flex-basis: 48.18%;
}

@media screen and (max-width: 460px) {
  .p-company-access-flex-data {
    margin-bottom: 30px;
  }
}
.p-company-access-flex-data__title {
  color: var(--hover);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.25em;
}

.p-company-access-flex-image img {
  border-radius: 10px;
}

.p-company-access-map {
  margin-top: 60px;
  margin-bottom: 100px;
  border-radius: 10px;
  overflow: hidden;
}
.p-company-access-map iframe {
  width: 100%;
  height: 422px;
}

/* ==========================================================================
お問い合わせ
========================================================================== */
.p-contact-sec {
  padding-bottom: 100px;
}

/* お電話でのお問い合わせ
----------------------------------------------------------------- */
.p-contact-telephone .l-contact {
  margin-top: 40px;
}

/* メールでのお問い合わせ
----------------------------------------------------------------- */
.p-contact-mailform {
  padding-bottom: 200px;
}

/* 確認画面
----------------------------------------------------------------- */
.p-contact-confirm {
  padding-bottom: 200px;
}
.p-contact-confirm .c-form-wrap table {
  background-color: transparent;
}

/* お問い合わせ完了
----------------------------------------------------------------- */
.p-contact-thanks {
  padding-bottom: 200px;
}

.p-contact-thanks-tel {
  background-color: var(--main);
  color: var(--white);
  border-radius: 10px;
  max-width: 855px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 20px;
  margin-top: 60px;
}
.p-contact-thanks-tel .txt-tel img {
  width: 51px;
}
@media screen and (max-width: 460px) {
  .p-contact-thanks-tel .txt-tel img {
    width: 25px;
  }
}
.p-contact-thanks-tel .txt-tel a[href^="tel:"] {
  color: var(--white);
  font-size: 5.3125rem;
}
@media screen and (max-width: 460px) {
  .p-contact-thanks-tel .txt-tel a[href^="tel:"] {
    font-size: 2.3125rem;
  }
}

/* ==========================================================================
プライバシーポリシー
========================================================================== */
.p-privacypolicy {
  padding-bottom: 200px;
}

/* ==========================================================================
お知らせ
========================================================================== */
.p-news {
  padding-bottom: 200px;
}

/* 記事
----------------------------------------------------------------- */
.p-news-article {
  background-color: var(--white);
  padding: 3.75rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 834px) {
  .p-news-article {
    padding: 2.5rem;
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 460px) {
  .p-news-article {
    padding: 1.875rem 1.25rem;
    margin-bottom: 2.5rem;
  }
}
.p-news-article .p-news-article__items__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.25rem;
}
.p-news-article .p-news-article__items__flex .p-news-article__date {
  display: inline-block;
  background-color: var(--main);
  color: var(--white);
  font-weight: 400;
  line-height: 1.4;
  padding: 5px 20px 6px;
}
.p-news-article .p-news-article-data {
  color: var(--main);
  font-family: "Jost", sans-serif;
  font-weight: 700;
}
.p-news-article .p-news-article__ttl {
  line-height: 1.6;
  font-size: 2.0625rem;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .p-news-article .p-news-article__ttl {
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 460px) {
  .p-news-article .p-news-article__ttl {
    font-size: 1.625rem;
  }
}
.p-news-article .p-news-article__cont {
  margin-top: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-news-article .p-news-article__cont {
    margin-top: 1.875rem;
  }
}
.p-news-article .p-news-article__cont p:nth-child(n+2) {
  margin-top: 1.5rem;
}
.p-news-article .p-news-article__cont a {
  color: var(--sub);
  text-decoration: underline;
}
.p-news-article .p-news-article__cont a:hover {
  color: var(--hover);
  text-decoration: none;
}
.p-news-article .p-news-article__cont > * + * {
  margin-top: 30px;
}

/* ページネーション
----------------------------------------------------------------- */
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.75rem;
  position: relative;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .current {
  color: var(--white);
  background-color: var(--main);
}

.wp-pagenavi span,
.wp-pagenavi a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--main);
  background-color: var(--border);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  width: 32px;
  height: 36px;
  margin: 0 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
}

.wp-pagenavi a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wp-pagenavi a:hover {
  color: var(--white);
  background-color: var(--main);
}
.wp-pagenavi a.first, .wp-pagenavi a.last {
  width: auto;
  font-size: 14px;
  padding: 0.5rem;
}

/* ==========================================================================
マージン・パディング
=========================================================================*/
/* マージン
----------------------------------------------------------------- */
.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;
  }
}
@media screen and (max-width: 460px) {
  .margin-xsm-top {
    margin-top: 0.625rem;
  }
}

.margin-sm-top {
  margin-top: 1.25rem;
}
@media screen and (max-width: 460px) {
  .margin-sm-top {
    margin-top: 0.9375rem;
  }
}

.margin-md-top {
  margin-top: 2.5rem;
}
@media screen and (max-width: 460px) {
  .margin-md-top {
    margin-top: 1.25rem;
  }
}

.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;
  }
}
@media screen and (max-width: 460px) {
  .margin-xxlg-top {
    margin-top: 3.75rem;
  }
}

.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: 5rem;
  }
}

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

.txt-bold {
  font-weight: 600 !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;
}
@media screen and (max-width: 460px) {
  .txt-sm {
    font-size: 14px;
  }
}

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

.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;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.txt-link:hover,
.txt-link--arrow:hover,
.txt-link--win:hover {
  color: var(--hover);
}
.txt-link:hover::before,
.txt-link--arrow:hover::before,
.txt-link--win:hover::before {
  background-color: var(--hover);
}

.txt-link--arrow::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 2px;
  margin-top: 2px;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_arrow.svg);
          mask-image: url(/resource/images/ico_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--main);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.txt-link--arrow:hover:after {
  background-color: var(--hover);
}

.txt-link--win {
  margin-right: 2px;
}
.txt-link--win::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 3px;
  /* ⚠️Safariのhoverちらつき防止のため、
     背景画像差し替えではなくSVGのmask方式を使用。
     アイコンは1つのSVGを共通使用し、色はCSS側で制御する。 */
  -webkit-mask-image: url(/resource/images/ico_win.svg);
          mask-image: url(/resource/images/ico_win.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  /* ⚠️アイコンの色指定は background-color で行う。*/
  background-color: var(--main);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.txt-link--win:hover:after {
  background-color: var(--hover);
}

.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: #002d60 !important;
}

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

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

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

.txt-hover {
  color: #4c6ae5 !important;
}

.txt-whitesmoke {
  color: #f1f3fd !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: 600;
  line-height: 1;
  color: var(--black);
  display: inline-block;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .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(--hover);
  }
}

.txt-tel__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: 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;
        -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;
  }
}

/*-==========================================================================
角丸
==========================================================================*/
.radi10 {
  border-radius: 0.625rem;
}

.radi15 {
  border-radius: 0.9375rem;
}

.radi20 {
  border-radius: 1.25rem;
}

.radi30 {
  border-radius: 1.875rem;
}

/*-==========================================================================
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: #002d60 !important;
}

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

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

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

.bg-hover {
  background-color: #4c6ae5 !important;
}

.bg-whitesmoke {
  background-color: #f1f3fd !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(--whitesmoke);
}

/* ==========================================================================
 スクロール
=========================================================================*/
.scroll-anchor {
  display: block;
  -webkit-transform: translateY(-110px);
          transform: translateY(-110px);
}
@media screen and (max-width: 460px) {
  .scroll-anchor {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
}

.js-fadein {
  opacity: 0;
}

.js-fadein-ttl .en,
.js-fadein-ttl .ja {
  opacity: 0;
}

/* ==========================================================================
 非表示
=========================================================================*/
.visible-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

/*-==========================================================================
特定の画面幅で表示・非表示するクラス
==========================================================================*/
/* 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: 961px) and (max-width: 1280px) {
  .visible-pc {
    display: block;
  }
}
@media screen and (max-width: 960px), (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: 961px) {
  .visible-more-lp {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .visible-more-lp {
    display: none !important;
  }
}

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

/*  lp以下*/
@media screen and (max-width: 960px) {
  .visible-less-lp {
    display: block;
  }
}
@media screen and (min-width: 961px) {
  .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 */