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

body {
  margin: 0;
}

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

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

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

[hidden],
template {
  display: none;
}

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

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

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

pre {
  overflow: auto;
}

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

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

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

button,
select {
  text-transform: none;
}

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

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

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

input {
  line-height: normal;
}

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

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

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

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

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

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/* ==========================================================================
グローバル変数
=========================================================================*/
:root {
  --break-sp:600px;
}

:root {
  --black: #333333;
  --black-rgb: 51,
  51,
  51;
  --white: #fff;
  --white-rgb: 255,
  255,
  255;
  --main: #539535;
  --main-rgb: 83,
  149,
  53;
  --sub: #00E180;
  --sub-rgb: 0,
  225,
  128;
  --hover: #00E1FF;
  --hover-rgb: 0,
  225,
  255;
  --whitesmoke: #F0F0F0;
  --whitesmoke-rgb: 240,
  240,
  240;
  --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: 2;
  font-size: 16px;
  font-weight: 400;
}

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

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

.over-clip {
  overflow: 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;
}

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 {
  background-color: rgba(51, 51, 51, 0.6);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 1090px) {
  header.l-hd1 .l-container--lg {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 834px) {
  header.l-hd1 .l-container--lg {
    padding-left: 10px;
    padding-right: 10px;
  }
}
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;
  height: 85px;
  z-index: 1010;
  position: relative;
}
@media screen and (max-width: 834px) {
  header.l-hd1 .l-hd {
    height: 60px;
  }
}
header.l-hd1 h1.l-hd-logo {
  position: relative;
  max-width: 168px;
  width: 100%;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 834px) {
  header.l-hd1 h1.l-hd-logo {
    max-width: 124px;
  }
}
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;
  width: 100%;
  height: 100%;
}
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;
  margin-left: 20px;
}
@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: 834px) {
  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: 46px;
}
@media screen and (max-width: 1090px) {
  ul.l-hd-nav1__list {
    gap: 15px;
  }
}
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;
  color: var(--white);
  font-size: 15px;
}
ul.l-hd-nav1__list .l-hd-nav1__list__menu a:hover {
  color: var(--main);
}

.l-hd-nav1__entry {
  width: 100%;
  max-width: 168px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
}
@media screen and (max-width: 1090px) {
  .l-hd-nav1__entry {
    margin-right: 60px;
    max-width: 125px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 834px) {
  .l-hd-nav1__entry {
    position: absolute;
    right: 50px;
    z-index: 999;
  }
}
.l-hd-nav1__entry a {
  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;
  color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  background-color: var(--main);
  font-weight: 700;
  line-height: 51px;
  font-size: 18px;
}
@media screen and (max-width: 1090px) {
  .l-hd-nav1__entry a {
    font-size: 15px;
    line-height: 36px;
  }
}
.l-hd-nav1__entry a:hover {
  opacity: 0.8;
}

/* トグルボタン（ハンバーガーボタン）
----------------------------------------------------------------- */
.l-toggle {
  display: none;
  width: 54px;
  height: 54px;
  background-image: url(../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: 999;
}
@media screen and (max-width: 834px) {
  .l-toggle {
    display: block;
  }
}

body.open {
  overflow: hidden;
}
body.open .l-toggle {
  background-image: url(../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;
  background-color: #797979;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6.25rem;
}

.l-drawer-nav-main {
  position: relative;
  padding-left: 4.6341463415%;
  padding-right: 4.6341463415%;
}

.l-drawer-nav-main__menu {
  padding: 0.9375rem 0;
  display: block;
  position: relative;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  text-align: center;
}

/* ドロワーメニュー内のアコーディオンメニュー
----------------------------------------------------------------- */
.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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .l-drawer-acc__cont .l-drawer-acc__cont__menu a {
    padding-left: 18px;
  }
}

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

/* ==========================================================================
フッター
========================================================================== */
/* Entry
----------------------------------------------------------------- */
.l-entry {
  background-image: url(../images/idx_entry_bg.jpg);
  background-size: cover;
  background-position: bottom center;
  padding-top: 80px;
  padding-bottom: 135px;
  border-top: 2px solid var(--main);
}
@media screen and (max-width: 600px) {
  .l-entry {
    background-image: url(../images/idx_entry_bg_sp.jpg);
  }
}

/* ロゴエリア
----------------------------------------------------------------- */
.l-ft-logo__wrap {
  padding-top: 30px;
  padding-bottom: 30px;
}
.l-ft-logo__wrap .l-ft-logo {
  text-align: center;
  max-width: 280px;
}
@media screen and (max-width: 786px) {
  .l-ft-logo__wrap .l-ft-logo {
    max-width: 260px;
  }
}
.l-ft-logo__wrap .l-ft-logo img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 786px) {
  .l-ft-logo__wrap .l-ft-logo img {
    max-width: 180px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
}
.l-ft-logo__wrap .l-ft-logo:hover img {
  opacity: 0.7;
}
.l-ft-logo__wrap .l-ft-add {
  font-weight: 500;
}
@media screen and (max-width: 786px) {
  .l-ft-logo__wrap .l-ft-add p {
    text-align: center;
  }
}
@media screen and (max-width: 786px) {
  .l-ft-logo__wrap .l-ft-add .txt-tel {
    text-align: center;
  }
}

.l-ft-logo-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: 786px) {
  .l-ft-logo-flex {
    display: block;
  }
}

.l-ft-logo-flex-data {
  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: 1020px) {
  .l-ft-logo-flex-data {
    display: block;
  }
}
.l-ft-logo-flex-data .txt-tel a {
  font-size: 20px !important;
  font-weight: 900 !important;
  color: var(--black) !important;
}

.l-ft-logo-flex-data-logo {
  margin-right: 40px;
}
@media screen and (max-width: 1020px) {
  .l-ft-logo-flex-data-logo {
    margin-right: 0;
  }
}

.l-ft-logo-flex-operation-logo {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-ft-logo-flex-operation-logo > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 786px) {
  .l-ft-logo-flex-operation-logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
  }
}
.l-ft-logo-flex-operation-logo img {
  margin-left: 20px;
}
@media screen and (max-width: 786px) {
  .l-ft-logo-flex-operation-logo img {
    width: 210px;
  }
}

/* メニュー
----------------------------------------------------------------- */
.l-ft-nav__wrap {
  background-color: #F4F4F4;
  padding-top: 15px;
  padding-bottom: 15px;
}

.l-ft-nav__list ul.l-ft-nav__parent,
.l-ft-nav__list .l-ft-nav__parent--last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 600px) {
  .l-ft-nav__list ul.l-ft-nav__parent,
  .l-ft-nav__list .l-ft-nav__parent--last {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .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 {
    text-align: center;
    line-height: 2.5;
  }
}
.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-weight: 500;
}
.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-copy {
  padding-bottom: 55px;
}
.l-ft-copy p {
  text-align: right;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-ft-copy p {
    font-size: 13px;
    text-align: center;
  }
}

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

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

/* ==========================================================================
下層ページ用v2
=========================================================================*/
.l-page-title-v2 {
  height: 461px;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 600px) {
  .l-page-title-v2 {
    height: 287px;
  }
}
.l-page-title-v2 .c-breadcrumb {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .l-page-title-v2 .c-breadcrumb {
    top: 70px;
  }
}

.l-page-title-v2-inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%) translateY(20px);
          transform: translateY(-50%) translateY(20px);
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  text-align: center;
}
.l-page-title-v2-inner .en {
  font-size: 50px;
  font-weight: 600;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  line-height: 1.7;
}
@media screen and (max-width: 600px) {
  .l-page-title-v2-inner .en {
    font-size: 25px;
  }
}
.l-page-title-v2-inner .ja {
  font-size: 25px;
  font-weight: 500;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 600px) {
  .l-page-title-v2-inner .ja {
    font-size: 15px;
  }
}

/* ==========================================================================
下層ページ用v3
=========================================================================*/
.l-page-title-v3 {
  padding-top: 100px;
}
@media screen and (max-width: 600px) {
  .l-page-title-v3 {
    padding-top: 70px;
  }
}
.l-page-title-v3 .c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list {
  color: var(--black);
}
.l-page-title-v3 .c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list a {
  color: var(--black);
}
.l-page-title-v3 .c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list:not(:last-child)::before {
  color: var(--black);
}

.l-page-title-v3-inner {
  position: relative;
  padding-left: calc((100vw - 1366px) / 2);
  padding-bottom: 183px;
}
@media screen and (max-width: 600px) {
  .l-page-title-v3-inner {
    padding-bottom: 120px;
  }
}

.l-page-title-v3-inner-text {
  position: relative;
  z-index: 1;
  margin-top: 70px;
}
@media screen and (max-width: 1430px) {
  .l-page-title-v3-inner-text {
    padding-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .l-page-title-v3-inner-text {
    margin-top: 20px;
    padding-right: 30px;
  }
}
.l-page-title-v3-inner-text .en {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .l-page-title-v3-inner-text .en {
    font-size: 25px;
  }
}
.l-page-title-v3-inner-text .ja {
  font-weight: 500;
  font-size: 25px;
}
@media screen and (max-width: 600px) {
  .l-page-title-v3-inner-text .ja {
    font-size: 15px;
  }
}
.l-page-title-v3-inner-text .catch {
  margin-top: 60px;
}
.l-page-title-v3-inner-text .catch span {
  background-color: rgb(from var(--main) r g b/0.8);
  color: var(--white);
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 3.3;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding: 18px 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .l-page-title-v3-inner-text .catch span {
    font-size: 17px;
    padding: 10px 10px;
  }
}

.l-page-title-v3-inner-image {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100vw - (100vw - 1366px) / 2 - 426px);
  height: 100%;
}
@media screen and (max-width: 600px) {
  .l-page-title-v3-inner-image {
    height: calc(100% - 100px);
    bottom: 0;
    top: auto;
    width: calc(93.34vw - 40px);
  }
}
.l-page-title-v3-inner-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .l-page-title-v3-inner-image img {
    -o-object-position: left top;
       object-position: left top;
  }
}

/* ==========================================================================
セクション
=========================================================================*/
.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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .l-sec-xxxlg-remove-top {
    padding: 0 0 5rem;
  }
}

/* ==========================================================================
コンテナーボックス
=========================================================================*/
.l-container,
.l-container--sm,
.l-container--md,
.l-container--lg,
.l-container--xlg {
  -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: 600px) {
  .l-container,
  .l-container--sm,
  .l-container--md,
  .l-container--lg,
  .l-container--xlg {
    padding-left: 6.6666666667%;
    padding-right: 6.6666666667%;
  }
}

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

.l-container--md {
  max-width: 1000px;
}

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

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

.l-container--xlg {
  max-width: 1644px;
}

/* Voice
----------------------------------------------------------------- */
.l-nav-voice {
  background-color: #f4f4f4;
  padding-top: 156px;
  padding-bottom: 197px;
}
@media screen and (max-width: 600px) {
  .l-nav-voice {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.l-nav-voice-slider {
  margin-top: 150px;
}
@media screen and (max-width: 600px) {
  .l-nav-voice-slider {
    width: calc(100vw - 13.3333333333%);
    margin-left: auto;
    margin-right: auto;
    margin-top: -20px;
    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;
  }
}

.l-nav-voice-slider-item {
  width: 387px;
  margin: 0 10px;
}
@media screen and (max-width: 600px) {
  .l-nav-voice-slider-item {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
    width: auto;
    margin: 0;
    margin-top: 20px;
  }
}
.l-nav-voice-slider-item .entry {
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-nav-voice-slider-item .entry {
    font-size: 15px;
  }
}
.l-nav-voice-slider-item > a {
  display: block;
}
.l-nav-voice-slider-item > a:hover {
  opacity: 0.8;
}

.l-nav-voice-slider-item-image {
  position: relative;
}
.l-nav-voice-slider-item-image__arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
}
@media screen and (max-width: 600px) {
  .l-nav-voice-slider-item-image__arrow {
    width: 22px;
    right: 10px;
    bottom: 10px;
  }
}

/*-==========================================================================
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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: grid;
}

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

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

.c-grid--sm2 {
  gap: 1.25rem 1.25rem;
}
@media screen and (max-width: 600px) {
  .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: 600px) {
  .c-grid--md {
    gap: 1.875rem 1.25rem;
  }
}

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

.c-grid {
  gap: 0;
}

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

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

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

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

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

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

.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-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(--whitesmoke);
}
.c-tb1 tr:first-child,
.c-tb1--white tr:first-child {
  border-top: 1px solid var(--whitesmoke);
}
@media screen and (max-width: 600px) {
  .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: 20%;
  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: 600px) {
  .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 0;
  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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .c-tb3 td {
    padding: 1.25rem;
    width: 100%;
  }
}

/* 複雑な表
----------------------------------------------------------------- */
.c-tb4 {
  overflow: auto;
}
@media screen and (max-width: 600px) {
  .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: 600px) {
  .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: 600px) {
  .c-modal__cont__inner .c-modal__txt {
    font-size: 15px;
  }
}

.c-modal__open {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-modal__open:before {
  content: "";
  display: block;
  background-image: url(../images/ico_plus_main.svg);
  background-size: 8px auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--white);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: 2px;
  -webkit-transition: 0.3s;
  transition: 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-image: url(../images/ico_plus_white.svg);
  background-color: var(--main);
}

/* ==========================================================================
ナビ
=========================================================================*/
.c-page-nav {
  margin-top: 3.75rem;
}
.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.25rem;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu {
  max-width: 255px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__menu {
    max-width: initial;
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 600px) {
  .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 {
  background-color: var(--white);
  display: block;
  color: var(--main);
  line-height: 56px;
  font-weight: 700;
  position: relative;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:after {
  content: "";
  width: 8px;
  height: 13px;
  background-image: url(../images/ico_arrow_main.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  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-image: url(../images/ico_arrow_white.svg);
}

.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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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 {
  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: 600px) {
  .c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl .ja {
    font-size: 1.4375rem;
  }
}
.c-nav-relate__wrap__tmb .btn {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 100px;
  background-image: url(../images/ico_arrow_black.svg);
  background-size: 8px auto;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  position: absolute;
  right: 8.6705202312%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .c-nav-relate__wrap__tmb .btn {
    width: 25px;
    height: 25px;
    right: 8.547008547%;
    background-size: 6px auto;
  }
}
@media screen and (max-width: 600px) {
  .c-nav-relate__wrap__tmb .btn {
    width: 30px;
    height: 30px;
    right: 20px;
  }
}
.c-nav-relate__wrap__tmb:hover {
  opacity: 0.7;
}
.c-nav-relate__wrap__tmb:hover .btn {
  background-color: var(--main);
  background-image: url(../images/ico_arrow_white.svg);
}

/* ==========================================================================
パンくずリスト
=========================================================================*/
.c-breadcrumb {
  font-size: 15px;
  line-height: 40px;
}
@media screen and (max-width: 600px) {
  .c-breadcrumb {
    line-height: 36px;
    font-size: 15px;
  }
}
.c-breadcrumb .c-breadcrumb__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .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;
  color: var(--white);
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list a {
  color: var(--white);
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list a:hover {
  color: var(--main);
  text-decoration: none;
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list:not(:first-child) {
  padding-left: 15px;
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list:not(:first-child):before {
  content: "＞";
  display: inline;
  margin-right: 15px;
}

/* ==========================================================================
メールフォーム
=========================================================================*/
/* 入力>確認>完了のフローナビゲーション
----------------------------------------------------------------- */
.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: var(--whitesmoke);
  position: relative;
  height: 100px;
  width: 100px;
  aspect-ratio: 1;
}
@media screen and (max-width: 600px) {
  .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: 600px) {
  .c-form-nav li span,
  .c-form-nav--white li span {
    font-size: 1.125rem;
  }
}
.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;
  padding-left: 20px;
  padding-bottom: 82px;
}
.c-form-wrap .note {
  color: #FA3F06;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .c-form-wrap .note {
    font-size: 16px;
  }
}
.c-form-wrap table {
  font-size: 1rem;
}
.c-form-wrap table tr {
  border-bottom: 20px 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 {
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .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: center;
  vertical-align: top;
  position: relative;
  width: 212px;
}
@media screen and (max-width: 600px) {
  .c-form-wrap table tr th {
    width: 100%;
    margin-bottom: 10px;
    font-size: 15px;
    text-align: left;
  }
}
.c-form-wrap table tr th > div {
  height: 70px;
  background-color: #333;
  color: var(--white);
  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: 600px) {
  .c-form-wrap table tr th > div {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 20px;
    height: 53px;
  }
}
@media screen and (max-width: 600px) {
  .c-form-wrap table tr td {
    font-size: 15px;
  }
}
.c-form-wrap table tr td > label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 15px 0 0px 20px;
}
@media screen and (max-width: 600px) {
  .c-form-wrap table tr td > label {
    margin-left: 0;
  }
}

::-webkit-input-placeholder {
  color: #B5B5B5;
}

::-moz-placeholder {
  color: #B5B5B5;
}

:-ms-input-placeholder {
  color: #B5B5B5;
}

::-ms-input-placeholder {
  color: #B5B5B5;
}

::placeholder {
  color: #B5B5B5;
}
@media screen and (max-width: 600px) {
  ::-webkit-input-placeholder {
    font-size: 15px;
  }
  ::-moz-placeholder {
    font-size: 15px;
  }
  :-ms-input-placeholder {
    font-size: 15px;
  }
  ::-ms-input-placeholder {
    font-size: 15px;
  }
  ::placeholder {
    font-size: 15px;
  }
}

/* 必須マーク
----------------------------------------------------------------- */
.c-form-required {
  position: relative;
}
@media screen and (max-width: 600px) {
  .c-form-required {
    text-align: center;
  }
}
.c-form-required::after {
  content: "＊";
  color: #FA3F06;
  font-weight: 700;
  font-size: 13px;
  position: absolute;
  left: -17px;
  top: 0;
}

/* 入力欄
----------------------------------------------------------------- */
.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;
  display: none;
}
.c-form-radio:not(:disabled),
.c-form-checkbox:not(:disabled),
.c-form-checkbox--white:not(:disabled) {
  cursor: pointer;
}
.c-form-radio + span,
.c-form-checkbox + span,
.c-form-checkbox--white + span {
  width: 36px;
  height: 36px;
  display: inline-block;
  border-radius: 5px;
  border: 1px solid rgba(112, 112, 112, 0.3);
  background-color: #F4F4F4;
  margin-right: 15px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .c-form-radio + span,
  .c-form-checkbox + span,
  .c-form-checkbox--white + span {
    width: 30px;
    height: 30px;
  }
}
.c-form-radio + span::after,
.c-form-checkbox + span::after,
.c-form-checkbox--white + span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 13px;
  width: 10px;
  height: 20px;
  border-bottom: 3px solid rgba(112, 112, 112, 0.3);
  border-right: 3px solid rgba(112, 112, 112, 0.3);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 600px) {
  .c-form-radio + span::after,
  .c-form-checkbox + span::after,
  .c-form-checkbox--white + span::after {
    width: 6px;
    height: 13px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    top: 6px;
    left: 12px;
  }
}
.c-form-radio:checked + span,
.c-form-checkbox:checked + span,
.c-form-checkbox--white:checked + span {
  background-color: rgba(51, 51, 51, 0.5);
}
.c-form-radio:checked + span::after,
.c-form-checkbox:checked + span::after,
.c-form-checkbox--white:checked + span::after {
  border-bottom: 3px solid var(--white);
  border-right: 3px solid var(--white);
}
@media screen and (max-width: 600px) {
  .c-form-radio:checked + span::after,
  .c-form-checkbox:checked + span::after,
  .c-form-checkbox--white:checked + span::after {
    border-bottom-width: 2px;
    border-right-width: 2px;
  }
}

.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(../images/ico_form_cheaked.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: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  vertical-align: middle;
  padding: 22px 20px;
  width: 100%;
  background-color: #F4F4F4;
}
@media screen and (max-width: 600px) {
  .c-form-input,
  .c-form-select,
  .c-form-textarea {
    padding-top: 15px;
    padding-bottom: 15px;
    height: 53px;
    font-size: 16px;
  }
}

.c-form-input--age {
  width: 132px;
  margin-right: 10px;
}
.c-form-input--postal {
  width: 182px;
  margin-left: 10px;
}
@media screen and (max-width: 600px) {
  .c-form-input--postal {
    width: 100%;
  }
}
.c-form-input--region {
  width: 182px;
  margin-left: 10px;
}
@media screen and (max-width: 600px) {
  .c-form-input--region {
    width: 100%;
  }
}

.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-input__wrap--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 600px) {
  .c-form-input__wrap--row {
    display: block;
  }
}

.c-form-input-address-wrap {
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .c-form-input-address-wrap {
    margin: 0;
    width: 100%;
  }
}
.c-form-input-address-wrap > div {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .c-form-input-address-wrap > div:first-child {
    width: 90px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 600px) {
  .c-form-input-address-wrap > div:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.c-form-input-address-wrap + .c-form-input-address-wrap {
  margin-top: 10px;
}

.c-form-input-address-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .c-form-input-address-flex {
    margin-top: 10px;
  }
}
.c-form-input-address-flex .label {
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
  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-right: 10px;
}
@media screen and (max-width: 600px) {
  .c-form-input-address-flex .label {
    -ms-flex-preferred-size: 90px;
        flex-basis: 90px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.c-form-input-address-flex .input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 600px) {
  .c-form-radio__wrap--job {
    display: block !important;
  }
}
@media screen and (max-width: 600px) {
  .c-form-radio__wrap--job label {
    display: block !important;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 600px) {
  .c-form-radio__wrap--job label + label {
    margin-top: 10px;
  }
}

.c-form-radio__wrap,
.c-form-radio__wrap--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.c-form-radio__wrap label,
.c-form-radio__wrap--row label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
}
@media screen and (max-width: 600px) {
  .c-form-radio__wrap label:first-child,
  .c-form-radio__wrap--row label:first-child {
    margin-left: 0;
  }
}

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

/* 個⼈情報の取扱いについて
----------------------------------------------------------------- */
.c-form-privacy {
  padding: 2.5rem 3.75rem;
}
@media screen and (max-width: 600px) {
  .c-form-privacy {
    padding: 1.875rem 5% 3.125rem;
  }
}
.c-form-privacy .c-form-privacy__panel {
  font-size: 15px;
  height: 180px;
  margin-top: 1.875rem;
  padding: 1.5rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 600px) {
  .c-form-agree {
    font-size: 16px;
  }
}
.c-form-agree input + span {
  vertical-align: middle;
}

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

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

.c-form-notsale__wrap {
  padding: 2.5rem;
  background-color: var(--whitesmoke);
}
@media screen and (max-width: 600px) {
  .c-form-notsale__wrap {
    padding: 1.875rem 1.25rem;
  }
}
.c-form-notsale__wrap .c-form-notsale__cheackbox {
  margin-top: 1.875rem;
  text-align: center;
  background-color: var(--white);
  padding: 1.875rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .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(--whitesmoke);
}
@media screen and (max-width: 600px) {
  .c-form-notsale__wrap .c-form-required:after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: 0;
    top: auto;
    bottom: 20px;
  }
}

/* ==========================================================================
ボタン
=========================================================================*/
/* メインボタン
----------------------------------------------------------------- */
.c-btn-main {
  max-width: 444px;
}
@media screen and (max-width: 600px) {
  .c-btn-main {
    max-width: 275px;
  }
}
.c-btn-main a,
.c-btn-main button {
  display: block;
  background-color: var(--main);
  background-image: url(../images/ico_arrow_white.svg);
  background-size: 6px auto;
  background-position: center right 20px;
  background-repeat: no-repeat;
  color: var(--white);
  line-height: 89px;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
  border-radius: 5px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .c-btn-main a,
  .c-btn-main button {
    line-height: 56px;
    font-size: 15px;
  }
}
.c-btn-main a .txt,
.c-btn-main button .txt {
  font-weight: 700;
  color: var(--white);
}
.c-btn-main a:hover,
.c-btn-main button:hover {
  opacity: 0.7;
}
.c-btn-main a--white a,
.c-btn-main a--white button,
.c-btn-main button--white a,
.c-btn-main button--white button {
  background-color: var(--white);
  background-image: url(../images/ico_arrow_main.svg);
}
.c-btn-main a--white a .txt,
.c-btn-main a--white button .txt,
.c-btn-main button--white a .txt,
.c-btn-main button--white button .txt {
  font-weight: 700;
  color: var(--main);
}
.c-btn-main a--white a:hover .txt,
.c-btn-main a--white button:hover .txt,
.c-btn-main button--white a:hover .txt,
.c-btn-main button--white button:hover .txt {
  color: var(--white);
}
.c-btn-main a--white a:hover,
.c-btn-main a--white button:hover,
.c-btn-main button--white a:hover,
.c-btn-main button--white button:hover {
  background-image: url(../images/ico_arrow_white.svg);
}
.c-btn-main a--win a,
.c-btn-main button--win a {
  background-image: url(../images/ico_win_white.svg);
  background-size: 16px auto;
}
.c-btn-main a--win a:hover,
.c-btn-main button--win a:hover {
  background-image: url(../images/ico_win_white.svg);
}
.c-btn-main--md {
  max-width: 360px;
}
@media screen and (max-width: 600px) {
  .c-btn-main--md {
    max-width: 275px;
  }
}
.c-btn-main--back a,
.c-btn-main--back button {
  background-color: rgba(51, 51, 51, 0.38);
  background-image: url(../images/ico_arrow_white_back.svg);
  background-position: center left 20px;
}

/* サブボタン ⚠️使用しない場合は削除 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: 600px) {
  .c-btn-sub a,
  .c-btn-sub .c-btn-sub__inner,
  .c-btn-sub button {
    gap: 5px;
  }
}
.c-btn-sub a .txt,
.c-btn-sub .c-btn-sub__inner .txt,
.c-btn-sub button .txt {
  position: relative;
  display: inline-block;
  line-height: 1.4;
  font-weight: 700;
}
.c-btn-sub a .txt::before,
.c-btn-sub .c-btn-sub__inner .txt::before,
.c-btn-sub button .txt::before {
  content: "";
  display: block;
  background-color: var(--black);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-btn-sub a .btn,
.c-btn-sub .c-btn-sub__inner .btn,
.c-btn-sub button .btn {
  display: inline-block;
  background-color: var(--main);
  border-radius: 100%;
  background-image: url(../images/ico_arrow_white.svg);
  background-position: center;
  background-size: 6px auto;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .c-btn-sub a .btn,
  .c-btn-sub .c-btn-sub__inner .btn,
  .c-btn-sub button .btn {
    width: 25px;
    height: 25px;
  }
}
.c-btn-sub a:hover,
.c-btn-sub .c-btn-sub__inner:hover,
.c-btn-sub button:hover {
  color: var(--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(--hover);
}

/* カード型の横長ボタン 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: 600px) {
  .c-btn-card,
  .c-btn-card--white {
    padding: 1.875rem;
  }
}
.c-btn-card::before,
.c-btn-card--white::before {
  content: "";
  display: block;
  position: absolute;
  right: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--main);
  background-image: url("/resource/images/ico_arrow_white.svg");
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .c-btn-card::before,
  .c-btn-card--white::before {
    width: 40px;
    height: 40px;
    background-size: 8px auto;
  }
}
.c-btn-card .c-btn-card__ttl,
.c-btn-card--white .c-btn-card__ttl {
  margin-bottom: 8px;
  color: var(--main);
}
.c-btn-card .c-btn-card__cont,
.c-btn-card--white .c-btn-card__cont {
  display: -webkit-box;
  display: -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:hover,
.c-btn-card--white:hover {
  opacity: 0.7;
}
.c-btn-card:hover::before,
.c-btn-card--white:hover::before {
  background-color: var(--hover);
}
.c-btn-card:hover .c-btn-card__cont th,
.c-btn-card:hover .c-btn-card__cont td,
.c-btn-card--white:hover .c-btn-card__cont th,
.c-btn-card--white:hover .c-btn-card__cont td {
  color: var(--main);
}

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

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

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

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

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

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

.c-card--md {
  padding: 2.5rem;
}
@media screen and (max-width: 600px) {
  .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: 600px) {
  .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: 15px;
    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 {
  max-width: 100%;
  height: auto;
}
.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: 15px;
  }
}
.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-size: 6.25rem;
}
.c-card-data .c-card-data__txt-data .txt {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

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

h2 {
  font-size: 3.5625rem;
}
@media screen and (max-width: 834px) {
  h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 2.25rem;
  }
}

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

h4 {
  font-size: 2.0625rem;
}
@media screen and (max-width: 834px) {
  h4 {
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 600px) {
  h4 {
    font-size: 1.625rem;
  }
}

h5 {
  font-size: 1.75rem;
}
@media screen and (max-width: 834px) {
  h5 {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 600px) {
  h5 {
    font-size: 1.4375rem;
  }
}

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

/* 見出し・タイトル
----------------------------------------------------------------- */
.c-ttl-lv1 {
  margin-bottom: 3.75rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 834px) {
  .c-ttl-lv1 {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .c-ttl-lv1 {
    margin-bottom: 1.875rem;
  }
}
.c-ttl-lv1 .en {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .c-ttl-lv1 .en {
    font-size: 27px;
  }
}
.c-ttl-lv1 .ja {
  display: block;
  font-size: 1rem;
  margin-top: 5px;
}
@media screen and (max-width: 834px) {
  .c-ttl-lv1 .ja {
    font-size: 13px;
  }
}
.c-ttl-lv1::after {
  content: "";
  width: 240px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  -webkit-transform: rotate(325deg);
          transform: rotate(325deg);
  bottom: -80px;
  right: -130px;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
@media screen and (max-width: 834px) {
  .c-ttl-lv1::after {
    width: 100px;
    bottom: -10px;
    right: -90px;
  }
}
.c-ttl-lv1--white {
  color: var(--white);
}
.c-ttl-lv1--white::after {
  background-color: var(--white);
}
.c-ttl-lv1--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.c-ttl-lv1--center::after {
  display: none;
}
.c-ttl-lv1--short::after {
  width: 110px;
  bottom: 0;
  right: -110px;
  -webkit-transform: rotate(317deg);
          transform: rotate(317deg);
}
@media screen and (max-width: 600px) {
  .c-ttl-lv1--short::after {
    width: 90px;
    bottom: -10px;
    right: -80px;
  }
}

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

.c-ttl-lv2 {
  font-size: 36px;
  border-bottom: 1px solid var(--black);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 5px;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .c-ttl-lv2 {
    font-size: 21px;
  }
}

/* ==========================================================================
スライド（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: 600px) {
  .c-slide-tmb__wrap .swiper-button-next,
  .c-slide-tmb__wrap .swiper-button-prev {
    width: 40px;
    height: 40px;
    top: 41%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.c-slide-tmb__wrap .swiper-button-next:after,
.c-slide-tmb__wrap .swiper-button-prev:after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-slide-tmb__wrap .swiper-button-next::before,
.c-slide-tmb__wrap .swiper-button-prev::before {
  content: "";
  display: block;
  background-image: url(../images/ico_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: 13px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
}
.c-slide-tmb__wrap .swiper-button-next:hover:after,
.c-slide-tmb__wrap .swiper-button-prev:hover:after {
  background-color: var(--hover);
}
.c-slide-tmb__wrap .swiper-button-next:hover::before,
.c-slide-tmb__wrap .swiper-button-prev:hover::before {
  background-image: url(../images/ico_arrow_white.svg);
}
.c-slide-tmb__wrap .swiper-button-next {
  right: -25px;
}
@media screen and (max-width: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 601px) {
  .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: 600px) {
  .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: 600px) {
  .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: 601px) {
  .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;
  background-image: url(../images/ico_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
}
.c-slide-sp .slide-next.swiper-button-next:hover:after,
.c-slide-sp .slide-prev.swiper-button-prev:hover:after {
  background-color: var(--main);
}
.c-slide-sp .slide-next.swiper-button-next:hover::before,
.c-slide-sp .slide-prev.swiper-button-prev:hover::before {
  background-image: url(../images/ico_arrow_white.svg);
}
.c-slide-sp .slide-next.swiper-button-next {
  right: -10px;
}
.c-slide-sp .slide-prev.swiper-button-prev {
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
  left: -10px;
}

/* マップスワイパーに変化
-----------------------------------------------------*/
.c-slide-map__wrap .c-slide-map__img {
  position: relative;
  width: 100%;
}
.c-slide-map__wrap .c-slide-map__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li {
  position: absolute;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li button {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background-color: var(--white);
  display: -webkit-box;
  display: -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 {
  right: 40%;
  top: 30%;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--03 {
  left: 40%;
  bottom: 30%;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li.--04 {
  right: 20%;
  bottom: 30%;
}

.swiper.mapSwiper {
  margin-top: 1.25rem;
  overflow: visible;
  position: relative;
}
.swiper.mapSwiper .swiper-wrapper .swiper-slide {
  padding: 1.875rem;
  display: -webkit-box;
  display: -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;
}
.swiper.mapSwiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
@media screen and (max-width: 834px) {
  .swiper.mapSwiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}
.swiper.mapSwiper .swiper-wrapper .swiper-slide.swiper-slide-prev,
.swiper.mapSwiper .swiper-wrapper .swiper-slide .swiper-slide-next {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

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

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

/* ==========================================================================
トップページ
========================================================================== */
/* MV
----------------------------------------------------------------- */
.p-idx-mv__wrap {
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-mv__wrap {
    height: 177.8vw;
    max-height: 667px;
  }
}

.p-idx-mv__overlay {
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-mv__overlay {
    height: 100%;
  }
}
.p-idx-mv__overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.29);
}

.p-idx-mv-catch {
  z-index: 2;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  text-align: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.p-idx-mv-catch p {
  color: var(--white);
  font-size: 30px;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  margin-top: 1em;
}
@media screen and (max-width: 834px) {
  .p-idx-mv-catch p {
    font-size: 18px;
  }
}
.p-idx-mv-catch .en {
  margin-top: 20px;
  font-size: 30px;
  font-family: "Shippori Mincho", serif;
  border: 1px solid var(--white);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 40px;
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 834px) {
  .p-idx-mv-catch .en {
    font-size: 18px;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-mv-catch__logomark {
    width: 95px;
  }
}

.p-idx-mv__movie {
  width: 100%;
}
@media screen and (max-width: 834px) {
  .p-idx-mv__movie {
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* メッセージ
----------------------------------------------------------------- */
.p-idx-message {
  padding-top: 160px;
  padding-bottom: 30px;
}
@media screen and (max-width: 834px) {
  .p-idx-message {
    padding-top: 35px;
  }
}

.p-idx-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: 600px) {
  .p-idx-message-flex {
    display: block;
  }
}

.p-idx-message-text {
  -ms-flex-preferred-size: 55.78%;
      flex-basis: 55.78%;
  padding-left: 11%;
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .p-idx-message-text {
    padding-left: 0;
  }
}
.p-idx-message-text .c-ttl-lv1 {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .p-idx-message-text p {
    font-size: 16px;
  }
}
.p-idx-message-text p + p {
  margin-top: 2em;
}
@media screen and (max-width: 600px) {
  .p-idx-message-text .c-btn-main {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-idx-message-image {
  -ms-flex-preferred-size: 39.75%;
      flex-basis: 39.75%;
  padding-top: 80px;
}
@media screen and (max-width: 600px) {
  .p-idx-message-image {
    padding-top: 0;
    margin-bottom: 10px;
  }
}

.p-idx-message-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -15px;
}
@media screen and (max-width: 600px) {
  .p-idx-message-images {
    position: relative;
    display: block;
    padding-top: 114%;
    width: 93.334vw;
    -webkit-transform: translateX(-6.666vw);
            transform: translateX(-6.666vw);
  }
}

@media screen and (max-width: 600px) {
  .p-idx-message-images-img1,
  .p-idx-message-images-img2 {
    position: absolute;
  }
}

.p-idx-message-images-img1 {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  padding-left: 5.8%;
}
@media screen and (max-width: 600px) {
  .p-idx-message-images-img1 {
    right: 0;
    top: 0;
    width: 43.33vw;
    padding-left: 0;
    z-index: 1;
  }
}

.p-idx-message-images-img2 {
  -ms-flex-preferred-size: 53.51%;
      flex-basis: 53.51%;
  -webkit-transform: translateY(160px);
          transform: translateY(160px);
}
@media screen and (max-width: 600px) {
  .p-idx-message-images-img2 {
    left: 0;
    top: 37vw;
    width: 78.9vw;
    -webkit-transform: none;
            transform: none;
  }
}

/* Gallery
----------------------------------------------------------------- */
.p-idx-gallery {
  padding-top: 80px;
}
@media screen and (max-width: 600px) {
  .p-idx-gallery {
    padding-top: 40px;
  }
}

.p-idx-gallery-wrap {
  position: relative;
  height: 107.5vw;
  max-height: 2021px;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
@media screen and (max-width: 1880px) {
  .p-idx-gallery-wrap {
    -webkit-transform: scale(0.0535279805vw);
            transform: scale(0.0535279805vw);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}
@media screen and (max-width: 600px) {
  .p-idx-gallery-wrap {
    height: 300vw;
    width: 100vw;
    -webkit-transform: translateX(-6.666vw);
            transform: translateX(-6.666vw);
    margin-bottom: 60px;
  }
}
.p-idx-gallery-wrap > img {
  position: absolute;
}

.p-idx-gallery__img1 {
  top: 4.5%;
  left: 7.5%;
  width: 44.46%;
}
@media screen and (max-width: 600px) {
  .p-idx-gallery__img1 {
    left: 0;
    width: 84.1vw;
    top: 4vw;
  }
}

.p-idx-gallery__img2 {
  top: -4%;
  right: 7.5%;
  width: 30.17%;
}
@media screen and (max-width: 600px) {
  .p-idx-gallery__img2 {
    display: none;
  }
}

.p-idx-gallery__img3 {
  top: 45%;
  left: 0%;
  width: 25.97%;
}
@media screen and (max-width: 600px) {
  .p-idx-gallery__img3 {
    width: 41.866%;
    top: 30%;
  }
}

.p-idx-gallery__img4 {
  top: 38%;
  left: 31%;
  width: 30.17%;
}
@media screen and (max-width: 600px) {
  .p-idx-gallery__img4 {
    width: 51.33%;
    left: auto;
    right: 0;
    top: 25%;
    z-index: 1;
  }
}

.p-idx-gallery__img5 {
  top: 32%;
  left: 66%;
  width: 21.35%;
}
@media screen and (max-width: 600px) {
  .p-idx-gallery__img5 {
    width: 40.4%;
    left: auto;
    right: 0;
    top: 67%;
  }
}

.p-idx-gallery__img6 {
  top: 68.5%;
  left: 7.5%;
  width: 44.46%;
}
@media screen and (max-width: 600px) {
  .p-idx-gallery__img6 {
    width: 84.1%;
    left: 0;
    top: 44%;
  }
}

.p-idx-gallery__img7 {
  top: 59%;
  right: 0%;
  width: 34.06%;
}
@media screen and (max-width: 600px) {
  .p-idx-gallery__img7 {
    width: 57.73%;
    left: 6.66%;
    right: auto;
    top: 74%;
  }
}

/* Guideline
----------------------------------------------------------------- */
.p-idx-guideline {
  background-image: url(../images/idx_guideline_bg.jpg);
  background-size: cover;
  background-position: bottom center;
  padding-top: 80px;
  padding-bottom: 375px;
}
@media screen and (max-width: 600px) {
  .p-idx-guideline {
    padding-bottom: 135px;
    background-image: url(../images/idx_guideline_bg_sp.jpg);
  }
}
@media screen and (max-width: 600px) {
  .p-idx-guideline .c-btn-main {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-idx-guideline .c-btn-main + .c-btn-main {
  margin-top: 30px;
}

.p-idx-guideline__catch {
  font-size: 25px;
  font-family: "Shippori Mincho", serif;
  color: var(--white);
  margin-bottom: 1.5em;
}
@media screen and (max-width: 600px) {
  .p-idx-guideline__catch {
    font-size: 20px;
  }
}

/* ==========================================================================
先輩の声
========================================================================== */
/* MV
----------------------------------------------------------------- */
.p-voice-title {
  position: relative;
  background-color: #F4F4F4;
  padding-bottom: 82px;
}
@media screen and (max-width: 600px) {
  .p-voice-title {
    height: 143.8vw;
    padding-bottom: 0;
  }
}
.p-voice-title .c-breadcrumb {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .p-voice-title .c-breadcrumb {
    top: 63px;
  }
}
.p-voice-title__img {
  width: calc(100vw - (100vw - 1366px) / 2 - 277px);
}
@media screen and (max-width: 1440px) {
  .p-voice-title__img {
    width: 78.19vw;
  }
}
@media screen and (max-width: 600px) {
  .p-voice-title__img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.p-voice-title-inner {
  position: absolute;
  top: 50%;
  right: calc((100vw - 1366px) / 2);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(51, 51, 51, 0.8);
  color: var(--white);
  text-align: center;
  padding: 54px 20px;
  width: 422px;
  height: 394px;
}
@media screen and (max-width: 1440px) {
  .p-voice-title-inner {
    right: 40px;
    width: 29.3vw;
    height: 27.36vw;
    padding: 3.75vw 1.38vw;
  }
}
@media screen and (max-width: 600px) {
  .p-voice-title-inner {
    width: 86.6666vw;
    max-width: 325px;
    height: auto;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 650/476;
    padding-top: 42px;
    top: calc(100% - 114px);
    -webkit-transform: none;
            transform: none;
  }
}
.p-voice-title-inner .en {
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1440px) {
  .p-voice-title-inner .en {
    font-size: 2.08vw;
    margin-bottom: 3.125vw;
  }
}
@media screen and (max-width: 600px) {
  .p-voice-title-inner .en {
    font-size: 20px;
  }
}
.p-voice-title-inner .ja {
  font-family: "Shippori Mincho", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.7;
}
@media screen and (max-width: 1440px) {
  .p-voice-title-inner .ja {
    font-size: 1.736vw;
  }
}
@media screen and (max-width: 600px) {
  .p-voice-title-inner .ja {
    font-size: 17px;
  }
}

/* main
----------------------------------------------------------------- */
.p-voice-main {
  padding-top: 120px;
  padding-bottom: 63px;
}
@media screen and (max-width: 600px) {
  .p-voice-main {
    padding-top: 50vw;
  }
}

.p-voice-main-wrap {
  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: 600px) {
  .p-voice-main-wrap {
    display: block;
  }
}

.p-voice-main-text {
  -ms-flex-preferred-size: 47.58%;
      flex-basis: 47.58%;
}

.p-voice-main-text-box__title {
  font-size: 36px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #707070;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
@media screen and (max-width: 600px) {
  .p-voice-main-text-box__title {
    font-size: 21px;
  }
}
.p-voice-main-text-box__q {
  font-weight: 500;
  margin-bottom: 2em;
}
@media screen and (max-width: 600px) {
  .p-voice-main-text-box__q {
    margin-bottom: 1em;
    font-size: 15px;
  }
}
.p-voice-main-text-box + .p-voice-main-text-box {
  margin-top: 70px;
}
@media screen and (max-width: 600px) {
  .p-voice-main-text-box + .p-voice-main-text-box {
    margin-top: 50px;
  }
}
@media screen and (max-width: 600px) {
  .p-voice-main-text-box p {
    font-size: 16px;
  }
}

.p-voice-main-image {
  -ms-flex-preferred-size: 44.28%;
      flex-basis: 44.28%;
}
.p-voice-main-image img + img {
  margin-top: 70px;
}

.p-voice-main-image-img-sp {
  margin-bottom: 30px;
}

/* 1日の仕事の流れ
----------------------------------------------------------------- */
.p-voice-flow {
  background-color: #F4F4F4;
  padding-top: 106px;
  padding-bottom: 122px;
}
@media screen and (max-width: 600px) {
  .p-voice-flow {
    padding-top: 50px;
    padding-bottom: 35px;
  }
}

.p-voice-flow__title {
  font-size: 36px;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .p-voice-flow__title {
    font-size: 21px;
  }
}

.p-voice-flow-wrap {
  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: 600px) {
  .p-voice-flow-wrap {
    display: block;
  }
}

.p-voice-flow-text {
  -ms-flex-preferred-size: 66.17%;
      flex-basis: 66.17%;
}
@media screen and (max-width: 600px) {
  .p-voice-flow-text {
    margin-bottom: 30px;
  }
}

.p-voice-flow-text-list {
  position: relative;
  padding-top: 60px;
}
@media screen and (max-width: 600px) {
  .p-voice-flow-text-list {
    padding-top: 20px;
  }
}
.p-voice-flow-text-list::after {
  content: "";
  width: 1px;
  height: calc(100% - 20px);
  background-color: #333;
  position: absolute;
  top: 0;
  left: 133px;
}
@media screen and (max-width: 600px) {
  .p-voice-flow-text-list::after {
    left: 49px;
    height: calc(100% + 10px);
  }
}

.p-voice-flow-text-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-voice-flow-text-list__item .time {
  font-weight: 600;
  font-size: 18px;
  width: 177px;
  position: relative;
  text-align: right;
  padding-right: 76px;
}
@media screen and (max-width: 600px) {
  .p-voice-flow-text-list__item .time {
    width: 76px;
    font-size: 16px;
  }
}
.p-voice-flow-text-list__item .time::after {
  content: "";
  width: 26px;
  height: 26px;
  background-color: #333;
  border-radius: 13px;
  position: absolute;
  top: 7px;
  right: 30px;
}
@media screen and (max-width: 600px) {
  .p-voice-flow-text-list__item .time::after {
    width: 13px;
    height: 13px;
    right: 20px;
    top: 9px;
  }
}
.p-voice-flow-text-list__item .title {
  font-weight: 600;
  font-size: 17px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 600px) {
  .p-voice-flow-text-list__item .title {
    font-size: 16px;
  }
}
.p-voice-flow-text-list__item + .p-voice-flow-text-list__item {
  margin-top: 35px;
}
@media screen and (max-width: 600px) {
  .p-voice-flow-text-list__item + .p-voice-flow-text-list__item {
    margin-top: 18px;
  }
}

.p-voice-flow-image {
  -ms-flex-preferred-size: 32.86%;
      flex-basis: 32.86%;
}
.p-voice-flow-image img + img {
  margin-top: 44px;
}
@media screen and (max-width: 600px) {
  .p-voice-flow-image img + img {
    margin-top: 25px;
  }
}

/* メッセージ
----------------------------------------------------------------- */
.p-voice-message {
  padding-top: 103px;
  padding-bottom: 158px;
}
@media screen and (max-width: 600px) {
  .p-voice-message {
    padding-top: 50px;
    padding-bottom: 25px;
  }
}

.p-voice-message-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 600px) {
  .p-voice-message-wrap {
    display: block;
  }
}

.p-voice-message-image {
  -ms-flex-preferred-size: 39.6%;
      flex-basis: 39.6%;
}

.p-voice-message-text {
  -ms-flex-preferred-size: 53.22%;
      flex-basis: 53.22%;
}
@media screen and (max-width: 600px) {
  .p-voice-message-text {
    margin-bottom: 20px;
  }
}
.p-voice-message-text__title {
  font-size: 36px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #707070;
  margin-bottom: 5px;
  padding-bottom: 5px;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .p-voice-message-text__title {
    font-size: 21px;
  }
}
@media screen and (max-width: 600px) {
  .p-voice-message-text p {
    font-size: 16px;
  }
}

.p-voice-nav-voice-wrap .l-nav-voice {
  padding-top: 74px;
  padding-bottom: 113px;
}
@media screen and (max-width: 600px) {
  .p-voice-nav-voice-wrap .l-nav-voice {
    padding-bottom: 60px;
  }
}
.p-voice-nav-voice-wrap .l-nav-voice-slider {
  margin-top: 10px;
}

/* ==========================================================================
募集要項
========================================================================== */
/* MV
----------------------------------------------------------------- */
.page-guideline .l-page-title-v2 {
  background-image: url(../images/guideline_mv.jpg);
}
@media screen and (max-width: 600px) {
  .page-guideline .l-page-title-v2 {
    background-image: url(../images/guideline_mv_sp.jpg);
    background-position: bottom center;
  }
}

/* コンテンツ
----------------------------------------------------------------- */
.p-guideline-wrap {
  margin-top: 71px;
  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: 834px) {
  .p-guideline-wrap {
    display: block;
    margin-top: 30px;
  }
}

.p-guideline-sidebar {
  -ms-flex-preferred-size: 324px;
      flex-basis: 324px;
  padding-bottom: 130px;
}
@media screen and (max-width: 834px) {
  .p-guideline-sidebar {
    padding-bottom: 35px;
  }
}

.p-guideline-sidebar-column__title {
  font-size: 25px;
  font-weight: 800;
  color: var(--main);
  margin-bottom: 1em;
}
@media screen and (max-width: 834px) {
  .p-guideline-sidebar-column__title {
    font-size: 18px;
    text-align: center;
  }
}
.p-guideline-sidebar-column + .p-guideline-sidebar-column {
  margin-top: 30px;
}

.p-guideline-sidebar-column-list__item a {
  color: var(--main);
  font-size: 20px;
  font-weight: 600;
  display: block;
  border: 1px solid var(--main);
  text-align: center;
  border-radius: 5px;
  padding: 21px 10px;
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-guideline-sidebar-column-list__item a {
    font-size: 16px;
    padding: 11px;
  }
}
.p-guideline-sidebar-column-list__item a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin: 0 10px;
  border-top: 2px solid var(--main);
  border-right: 2px solid var(--main);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 10px;
}
@media screen and (max-width: 834px) {
  .p-guideline-sidebar-column-list__item a::after {
    width: 4px;
    height: 4px;
    border-top: 1px solid var(--main);
    border-right: 1px solid var(--main);
    right: 0;
  }
}

@media screen and (max-width: 834px) {
  .p-guideline-sidebar-column-list__item {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }
}
.p-guideline-sidebar-column-list__item + .p-guideline-sidebar-column-list__item {
  margin-top: 20px;
}

.p-guideline-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 63px;
  padding-bottom: 130px;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents {
    margin-left: 0;
    padding-bottom: 10px;
  }
}

.p-guideline-section + .p-guideline-section {
  margin-top: 100px;
}

.p-guideline-contents-box {
  margin-top: 74px;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box {
    margin-top: 0px;
    margin-bottom: 70px;
  }
}

.p-guideline-contents-box-title {
  border-radius: 10px;
  color: var(--white);
  padding: 92px 20px;
  margin-bottom: 52px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-title {
    padding-top: 75px;
    padding-bottom: 75px;
    margin-bottom: 30px;
  }
}
.p-guideline-contents-box-title__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: -1;
}
.p-guideline-contents-box-title__catch {
  font-size: 25px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-title__catch {
    font-size: 15px;
  }
}
.p-guideline-contents-box-title__title {
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-title__title {
    font-size: 20px;
  }
}
.p-guideline-contents-box-title__en {
  font-size: 25px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-title__en {
    font-size: 15px;
  }
}

.p-guideline-contents-box-title-inner {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.p-guideline-contents-box-title-sub {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 1em;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-title-sub {
    font-size: 20px;
  }
}

.p-guideline-contents-box-shop {
  border: 2px solid #EAF8E9;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-bottom: 50px;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-shop {
    display: block;
    margin-bottom: 25px;
  }
}
.p-guideline-contents-box-shop > div {
  padding-top: 36px;
  padding-bottom: 36px;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-shop > div {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.p-guideline-contents-box-shop .title {
  background-color: #EAF8E9;
  padding-left: 30px;
  padding-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: 21.22%;
      flex-basis: 21.22%;
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-shop .title {
    font-size: 15px;
  }
}
.p-guideline-contents-box-shop .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--main);
  font-weight: 600;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-shop .text {
    font-size: 16px;
  }
}

.p-guideline-contents-box-type {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-type {
    font-size: 16px;
    margin-bottom: 7px;
  }
}

.p-guideline-contents-box-table {
  margin-bottom: 43px;
}
.p-guideline-contents-box-table tr th,
.p-guideline-contents-box-table tr td {
  padding-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-table tr th,
  .p-guideline-contents-box-table tr td {
    display: block;
    padding-bottom: 5px;
    font-size: 16px;
  }
}
.p-guideline-contents-box-table tr th {
  border-bottom: 4px solid var(--main);
  color: var(--main);
  font-weight: 500;
  text-align: center;
  width: 104px;
  white-space: nowrap;
  vertical-align: top;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-table tr th {
    width: 100%;
    text-align: left;
    border-bottom-width: 1px;
    margin-bottom: 10px;
  }
}
.p-guideline-contents-box-table tr td {
  border-bottom: 1px solid var(--main);
  font-size: 18px;
  font-weight: 600;
  padding-left: 40px;
  padding-right: 20px;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-table tr td {
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
    border-bottom-width: 3px;
    padding-bottom: 10px;
  }
}
.p-guideline-contents-box-table tr:not(:first-child) th,
.p-guideline-contents-box-table tr:not(:first-child) td {
  padding-top: 30px;
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-table tr:not(:first-child) th,
  .p-guideline-contents-box-table tr:not(:first-child) td {
    padding-bottom: 5px;
    padding-top: 15px;
  }
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-table tr:not(:first-child) th {
    margin-top: 10px;
  }
}
@media screen and (max-width: 834px) {
  .p-guideline-contents-box-table tr:not(:first-child) td {
    padding-top: 5px;
  }
}

/* ==========================================================================
採用エントリー
========================================================================== */
/* MV
----------------------------------------------------------------- */
.page-entry .l-page-title-v2,
.page-confirm .l-page-title-v2,
.page-thanks .l-page-title-v2 {
  background-image: url(../images/entry_mv.jpg);
}
@media screen and (max-width: 600px) {
  .page-entry .l-page-title-v2,
  .page-confirm .l-page-title-v2,
  .page-thanks .l-page-title-v2 {
    background-image: url(../images/entry_mv_sp.jpg);
    background-position: bottom center;
  }
}

/* コンテンツ
----------------------------------------------------------------- */
.p-entry-wrap {
  padding-top: 80px;
}
@media screen and (max-width: 600px) {
  .p-entry-wrap {
    padding-top: 40px;
  }
}

.p-entry-catch {
  text-align: center;
  color: var(--main);
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 1.25em;
}
@media screen and (max-width: 600px) {
  .p-entry-catch {
    font-size: 20px;
    text-align: left;
    line-height: 1.6;
  }
}
.p-entry-catch + p {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .p-entry-catch + p {
    font-size: 16px;
    text-align: left !important;
  }
}

.p-entry-tel-box {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .p-entry-tel-box {
    margin-top: 30px;
    text-align: left;
  }
}
.p-entry-tel-box p {
  text-align: center;
}
@media screen and (max-width: 600px) {
  .p-entry-tel-box p {
    text-align: left;
  }
}
.p-entry-tel-box .txt-tel a[href^="tel:"] {
  font-size: 40px;
}
@media screen and (max-width: 600px) {
  .p-entry-tel-box .txt-tel a[href^="tel:"] {
    font-size: 30px;
  }
}

.p-entry-strong {
  font-weight: 600;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .p-entry-strong {
    font-size: 16px;
    text-align: left;
  }
}
.p-entry-strong em {
  font-style: normal;
  color: #FA3F06;
}

.p-entry-list {
  margin-top: 50px;
  border: 1px solid #EAF8E9;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .p-entry-list {
    margin-top: 30px;
  }
}
.p-entry-list__title {
  text-align: center;
  font-size: 20px;
  background-color: #EAF8E9;
  font-weight: 500;
  padding: 26px;
}
@media screen and (max-width: 600px) {
  .p-entry-list__title {
    font-size: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.p-entry-list-contents {
  padding: 40px 40px 30px 40px;
}
@media screen and (max-width: 600px) {
  .p-entry-list-contents {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
    padding-bottom: 20px;
  }
}

.p-entry-list__table tr:not(:last-child) {
  border-bottom: 1px solid #D9D9D9;
}
.p-entry-list__table tr th,
.p-entry-list__table tr td {
  font-size: 18px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 600px) {
  .p-entry-list__table tr th,
  .p-entry-list__table tr td {
    display: block;
    font-size: 16px;
  }
}
.p-entry-list__table tr th {
  padding-bottom: 0;
}
.p-entry-list__table tr td {
  color: var(--main);
  font-weight: 700;
  text-align: right;
  padding-left: 20px;
}
@media screen and (max-width: 600px) {
  .p-entry-list__table tr td {
    padding-left: 0;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

/* ==========================================================================
送信内容のご確認
========================================================================== */
.p-confirm__catch {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 2em;
}
@media screen and (max-width: 600px) {
  .p-confirm__catch {
    font-size: 20px;
    text-align: left;
    margin-bottom: 1em;
  }
}

.p-confirm-table {
  max-width: 943px;
  margin-left: auto;
  margin-right: auto;
}
.p-confirm-table tr th,
.p-confirm-table tr td {
  padding: 24px 20px 15px 20px;
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .p-confirm-table tr th,
  .p-confirm-table tr td {
    display: block;
    padding-left: 0;
    padding-bottom: 5px;
    font-size: 16px;
  }
}
.p-confirm-table tr th {
  color: var(--main);
  text-align: center;
  position: relative;
  width: 208px;
}
@media screen and (max-width: 600px) {
  .p-confirm-table tr th {
    width: 100%;
    text-align: left;
  }
}
.p-confirm-table tr th:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--main);
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-confirm-table tr td {
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 600px) {
  .p-confirm-table tr td {
    padding-left: 0;
    padding-top: 15px;
  }
}
.p-confirm-table tr td:after {
  content: "";
  width: calc(100% - 30px);
  height: 1px;
  background-color: var(--main);
  position: absolute;
  bottom: 0;
  left: 30px;
}
@media screen and (max-width: 600px) {
  .p-confirm-table tr td:after {
    width: 100%;
    left: 0;
  }
}

.p-confirm-buttons {
  max-width: 768px;
  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;
  margin-top: 75px;
}
@media screen and (max-width: 600px) {
  .p-confirm-buttons {
    display: block;
  }
}
.p-confirm-buttons > div {
  width: 100%;
  -ms-flex-preferred-size: 46.875%;
      flex-basis: 46.875%;
}
@media screen and (max-width: 600px) {
  .p-confirm-buttons > div {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 600px) {
  .p-confirm-buttons > div + div {
    margin-top: 10px;
  }
}

/* ==========================================================================
送信完了
========================================================================== */
@media screen and (max-width: 600px) {
  .page-thanks .p-confirm__catch + p {
    text-align: left !important;
    font-size: 16px;
  }
}

.p-thanks-tel-box .txt-tel {
  margin-top: 5px;
}
.p-thanks-tel-box .txt-tel a[href^="tel:"] {
  font-size: 40px;
}

/* ==========================================================================
フラワーライフについて
========================================================================== */
/* コンテンツ部
----------------------------------------------------------------- */
@media screen and (max-width: 600px) {
  .p-about-contents {
    padding-top: 40px !important;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .p-about-contents p {
    font-size: 16px;
  }
}
.p-about-contents p + p {
  margin-top: 2em;
}

.p-about-contents-images {
  margin-top: 60px;
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .p-about-contents-images {
    display: block;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.p-about-contents-images > div {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.p-about-contents-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 75px;
  margin-bottom: 75px;
}
@media screen and (max-width: 600px) {
  .p-about-contents-thumbs {
    display: block;
    margin-top: 30px;
  }
}
.p-about-contents-thumbs > div {
  -ms-flex-preferred-size: 47.95%;
      flex-basis: 47.95%;
}
@media screen and (max-width: 600px) {
  .p-about-contents-thumbs > div {
    width: 70.92%;
  }
}
@media screen and (max-width: 600px) {
  .p-about-contents-thumbs > div + div {
    margin-top: 30px;
    margin-right: 0;
    margin-left: auto;
  }
}

.p-about-shops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 50px;
}
@media screen and (max-width: 600px) {
  .p-about-shops {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .p-about-shops-item + .p-about-shops-item {
    margin-top: 40px;
  }
}

.p-about-shops-item--takasaki {
  grid-area: 1/1/2/4;
}

.p-about-shops-item--maebashi {
  grid-area: 2/1/3/3;
}

.p-about-shops-item--isesaki {
  grid-area: 2/3/3/4;
}

.p-about-shops-item--ota1 {
  grid-area: 3/1/4/4;
}

.p-about-shops-item--ota2 {
  grid-area: 4/1/5/2;
}
.p-about-shops-item--ota2 .p-about-shops-flex {
  display: block;
}

.p-about-shops-item--concept {
  grid-area: 4/2/5/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-about-shops-item--concept p {
  text-align: center;
  font-weight: 500;
  margin-top: 6em;
}
@media screen and (max-width: 600px) {
  .p-about-shops-item--concept p {
    margin-top: 0px;
    text-align: left;
    margin-bottom: 30px;
  }
}

.p-about-shops__title {
  border: 1px solid var(--main);
  border-radius: 10px;
  color: var(--main);
  width: 100%;
  padding: 15px 10px;
  font-size: 17px;
  font-weight: 500;
  max-width: 171px;
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (max-width: 600px) {
  .p-about-shops__title {
    max-width: none;
  }
}

.p-about-shops-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 23px;
}
@media screen and (max-width: 600px) {
  .p-about-shops-flex {
    display: block;
  }
}
.p-about-shops-flex + .p-about-shops__title {
  margin-top: 3em;
}

.p-about-shops-flex-item {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.p-about-shops-flex-item img {
  margin-bottom: 10px;
}
.p-about-shops-flex-item h5 {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .p-about-shops-flex-item h5 {
    font-size: 16px;
  }
}
.p-about-shops-flex-item h5 em {
  color: #FA3F06;
  font-style: normal;
}
@media screen and (max-width: 600px) {
  .p-about-shops-flex-item p {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .p-about-shops-flex-item + .p-about-shops-flex-item {
    margin-top: 30px;
  }
}

.p-about-require {
  background-color: rgba(234, 248, 233, 0.86);
  border-radius: 30px;
  max-width: 1182px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
}
@media screen and (max-width: 600px) {
  .p-about-require {
    padding: 20px;
  }
}
.p-about-require__title {
  color: var(--main);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 600px) {
  .p-about-require__title {
    text-align: center;
  }
}
.p-about-require__title span {
  font-size: 28px;
  border-bottom: 2px solid var(--main);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
@media screen and (max-width: 600px) {
  .p-about-require__title span {
    font-size: 17px;
  }
}
.p-about-require p em {
  font-style: normal;
  font-weight: 600;
}

/* ==========================================================================
フラワーライフについて
========================================================================== */
/* コンテンツ部
----------------------------------------------------------------- */
@media screen and (max-width: 600px) {
  .p-benefit-contents {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .p-benefit-contents p {
    font-size: 16px;
  }
}
.p-benefit-contents p em {
  font-style: normal;
  font-weight: 600;
}

.p-benefit-contents-flex {
  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;
}
@media screen and (max-width: 600px) {
  .p-benefit-contents-flex {
    display: block;
  }
}
.p-benefit-contents-flex + .c-ttl-lv2 {
  margin-top: 115px;
}
@media screen and (max-width: 600px) {
  .p-benefit-contents-flex + .c-ttl-lv2 {
    margin-top: 40px;
  }
}

.p-benefit-contents-flex-box {
  -ms-flex-preferred-size: 30.38%;
      flex-basis: 30.38%;
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .p-benefit-contents-flex-box {
    margin-top: 30px;
  }
}
.p-benefit-contents-flex-box__title {
  font-size: 16px;
  margin-top: 1em;
  margin-bottom: 5px;
}
@media screen and (max-width: 600px) {
  .p-benefit-contents-flex-box__title {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .p-benefit-contents-flex-box p {
    font-size: 15px;
  }
}

.p-benefit-data-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1248px;
  gap: 110px 8%;
  margin-top: 104px;
}
@media screen and (max-width: 600px) {
  .p-benefit-data-flex {
    display: block;
  }
}

.p-benefit-data-flex-box {
  -ms-flex-preferred-size: 45.27%;
      flex-basis: 45.27%;
}
@media screen and (max-width: 600px) {
  .p-benefit-data-flex-box + .p-benefit-data-flex-box {
    margin-top: 60px;
  }
}

.p-benefit-feature {
  background-color: rgba(234, 248, 233, 0.86);
  border-radius: 30px;
  padding: 43px 80px 65px 80px;
  margin-top: 80px;
}
@media screen and (max-width: 600px) {
  .p-benefit-feature {
    padding: 0px;
    background-color: transparent;
  }
}

.p-benefit-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .p-benefit-feature-grid {
    display: block;
    background-color: rgba(234, 248, 233, 0.86);
    padding: 20px;
    border-radius: 30px;
  }
}
.p-benefit-feature-grid + p {
  color: var(--main);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.p-benefit-feature-grid-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-benefit-feature-grid-box .image {
  -ms-flex-preferred-size: 120px;
      flex-basis: 120px;
}
@media screen and (max-width: 600px) {
  .p-benefit-feature-grid-box .image {
    -ms-flex-preferred-size: 76px;
        flex-basis: 76px;
  }
}
.p-benefit-feature-grid-box .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main);
  font-size: 20px;
  font-weight: 600;
  margin-left: 20px;
  line-height: 1.6;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 600px) {
  .p-benefit-feature-grid-box .text {
    font-size: 16px;
  }
}
.p-benefit-feature-grid-box .text .sm {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .p-benefit-feature-grid-box .text .sm {
    font-size: 13px;
  }
}
.p-benefit-feature-grid-box .text .label {
  background-color: var(--white);
  border: 1px solid var(--main);
  border-radius: 100px;
  padding: 4px 15px;
  margin-top: 5px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .p-benefit-feature-grid-box .text .label {
    font-size: 15px;
    padding: 2px 10px;
  }
}
.p-benefit-feature-grid-box + .p-benefit-feature-grid-box {
  margin-top: 30px;
}

.p-benefit-feature-grid-box1 {
  grid-area: 1/1/2/2;
}

.p-benefit-feature-grid-box2 {
  grid-area: 1/2/2/3;
}

.p-benefit-feature-grid-box3 {
  grid-area: 1/3/2/4;
}

.p-benefit-feature-grid-box4 {
  grid-area: 2/1/3/2;
}

.p-benefit-feature-grid-box5 {
  grid-area: 2/2/3/3;
}

.p-benefit-feature-grid-box6 {
  grid-area: 2/3/3/4;
}

.p-benefit-feature__catch {
  background-color: var(--main);
  color: var(--white);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  padding: 10px 30px;
  font-size: 20px;
  font-weight: 600;
  margin-top: 1em;
  background-image: url(../images/ico_arrow_white.svg);
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 8px auto;
}
@media screen and (max-width: 600px) {
  .p-benefit-feature__catch {
    font-size: 18px;
    text-align: center;
    margin-top: 30px;
  }
}

/* ==========================================================================
マージン・パディング
=========================================================================*/
/* マージン
----------------------------------------------------------------- */
.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: 600px) {
  .margin-xsm-top {
    margin-top: 0.625rem;
  }
}

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

.margin-md-top {
  margin-top: 2.5rem;
}
@media screen and (max-width: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .padding-xxlg-top {
    padding-top: 5rem;
  }
}

/*-==========================================================================
テキスト
==========================================================================*/
.txt-bold {
  font-weight: 700 !important;
}

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

.txt-catch {
  font-size: 25px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  margin-bottom: 2em;
}
@media screen and (max-width: 600px) {
  .txt-catch {
    font-size: 18px;
    margin-bottom: 1em;
  }
}

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

.txt-sm {
  font-size: 13px;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .txt-sm {
    font-size: 15px;
  }
}

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

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

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

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

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

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

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

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

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

.txt-center--sp-left {
  text-align: center !important;
}
@media screen and (max-width: 600px) {
  .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 {
  color: #333333 !important;
}

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

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

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

.txt-hover {
  color: #00E1FF !important;
}

.txt-whitesmoke {
  color: #F0F0F0 !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: 600px) {
  .txt-tel img {
    width: 15px;
  }
}
.txt-tel a[href^="tel:"] {
  font-size: 3.625rem;
  font-weight: 700;
  line-height: 1;
  color: var(--main);
  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: 600px) {
  .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 {
  background-color: #333333 !important;
}

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

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

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

.bg-hover {
  background-color: #00E1FF !important;
}

.bg-whitesmoke {
  background-color: #F0F0F0 !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(-135px);
          transform: translateY(-135px);
}
@media screen and (max-width: 600px) {
  .scroll-anchor {
    padding-top: 0;
    margin-top: 0;
    -webkit-transform: translateY(-90px);
            transform: translateY(-90px);
  }
}

/* ==========================================================================
 非表示
=========================================================================*/
.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: 601px) and (max-width: 834px) {
  .visible-tb {
    display: block;
  }
}
@media screen and (max-width: 600px), (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: 601px) {
  .visible-more-sp {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .visible-more-sp {
    display: none !important;
  }
}

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

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