@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: 0;
}

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

pre {
  overflow: auto;
}

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

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

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

button,
select {
  text-transform: none;
}

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

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

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

input {
  line-height: normal;
}

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

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

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

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

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

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/* ==========================================================================
グローバル変数
=========================================================================*/
:root {
  --black: #2f3f57;
  --black-rgb: 47,
  63,
  87;
  --white: #fff;
  --white-rgb: 255,
  255,
  255;
  --main: #2cb9aa;
  --main-rgb: 44,
  185,
  170;
  --sub: #fda369;
  --sub-rgb: 253,
  163,
  105;
  --back: #f9f5eb;
  --back-rgb: 249,
  245,
  235;
  --gray-1: #e9e9e9;
  --gray-1-rgb: 233,
  233,
  233;
  --gray-2: #f9f7f5;
  --gray-2-rgb: 249,
  247,
  245;
}

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

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

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

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

.over-clip {
  overflow: 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 {
  max-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版メニュー 2段
----------------------------------------------------------------- */
header.l-hd2 .l-hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1010;
  position: absolute;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 1280px) {
  header.l-hd2 .l-hd {
    height: 80px;
  }
}
@media screen and (max-width: 960px) {
  header.l-hd2 .l-hd {
    position: fixed;
    width: 100%;
    height: 80px;
  }
}
@media screen and (max-width: 428px) {
  header.l-hd2 .l-hd {
    height: 60px;
  }
}
header.l-hd2 .l-hd.is-scroll {
  background-color: var(--white);
}
header.l-hd2 h1.l-hd-logo {
  position: relative;
  max-width: 300px;
  width: 100%;
  padding: 15px 20px;
  z-index: 999;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1280px) {
  header.l-hd2 h1.l-hd-logo {
    padding: 14px 15px;
    max-width: 280px;
  }
}
@media screen and (max-width: 960px) {
  header.l-hd2 h1.l-hd-logo {
    max-width: 320px;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 428px) {
  header.l-hd2 h1.l-hd-logo {
    max-width: initial;
    padding: 5px 10px;
  }
}
header.l-hd2 h1.l-hd-logo a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
header.l-hd2 h1.l-hd-logo a img {
  position: relative;
  display: block;
  width: 100%;
}
@media screen and (max-width: 428px) {
  header.l-hd2 h1.l-hd-logo a img {
    height: 36px !important;
    width: auto;
  }
}
header.l-hd2 h1.l-hd-logo a:hover {
  opacity: 0.7;
}
header.l-hd2 .l-hd-nav__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 70%;
  text-align: center;
  gap: 2.5rem;
  padding-right: 15px;
}
@media screen and (max-width: 1280px) {
  header.l-hd2 .l-hd-nav__wrap {
    min-width: initial;
    gap: 1.875rem;
  }
}
@media screen and (max-width: 834px) {
  header.l-hd2 .l-hd-nav__wrap {
    display: none;
  }
}
header.l-hd2 .l-hd-nav__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-hd-nav2__list__wrap .l-hd-nav2__list--main,
.l-hd-nav2__list__wrap .l-hd-nav2__list--sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  line-height: 1;
  gap: 2.5rem;
}
@media screen and (max-width: 1280px) {
  .l-hd-nav2__list__wrap .l-hd-nav2__list--main,
  .l-hd-nav2__list__wrap .l-hd-nav2__list--sub {
    gap: 1.25rem;
  }
}
.l-hd-nav2__list__wrap .l-hd-nav2__list--main li a,
.l-hd-nav2__list__wrap .l-hd-nav2__list--sub li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1280px) {
  .l-hd-nav2__list__wrap .l-hd-nav2__list--main li a,
  .l-hd-nav2__list__wrap .l-hd-nav2__list--sub li a {
    font-size: 14px;
  }
}
.l-hd-nav2__list__wrap .l-hd-nav2__list--main li a:hover,
.l-hd-nav2__list__wrap .l-hd-nav2__list--sub li a:hover {
  color: var(--main);
}
.l-hd-nav2__list__wrap .l-hd-nav2__list--sub {
  font-size: 14px;
  margin-top: 15px;
}
.l-hd-nav2__list__wrap .l-hd-nav2__list--sub .l-hd-nav2__list--sub__link,
.l-hd-nav2__list__wrap .l-hd-nav2__list--sub .l-hd-nav2__list--sub__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
.l-hd-nav2__list__wrap .l-hd-nav2__list--sub .l-hd-nav2__list--sub__sns a:hover {
  opacity: 0.7;
}
.l-hd-nav2__list__wrap ul.l-hd-nav2__list--main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-hd-nav2__list__wrap ul.l-hd-nav2__list--main li {
  position: relative;
}
.l-hd-nav2__list__wrap ul.l-hd-nav2__list--main li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 14px 0;
  line-height: 1.4;
  font-weight: 700;
}
.l-hd-nav2__list__wrap ul.l-hd-nav2__list--main li a:hover {
  color: var(--main);
}

.l-hd-nav2__contact {
  width: 100%;
  max-width: 133px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-hd-nav2__contact 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;
  border-radius: 100px;
  color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  background-color: var(--main);
  font-size: 0.875rem;
  padding: 13px;
}
.l-hd-nav2__contact a:hover {
  opacity: 0.8;
}

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

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

body.open {
  overflow: hidden;
}
body.open .l-toggle {
  background-image: url(/resource/images/menu_close.svg);
}

/* ドロワーメニュー（toggleを押して出現するメニュー/SPメニュー）
----------------------------------------------------------------- */
.l-drawer {
  display: none;
  width: 100%;
  height: calc(100% - 80px);
  position: fixed;
  margin-top: 80px;
  top: 0;
  left: 0;
  z-index: 998;
}
@media screen and (max-width: 428px) {
  .l-drawer {
    margin-top: 60px;
  }
}

.l-drawer-body {
  position: absolute;
  width: 100%;
  height: 100vh;
  padding-top: 40px;
  background-color: var(--gray-2);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6.25rem;
}

.l-drawer-nav-main {
  position: relative;
}

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

/* ドロワーメニュー内のアコーディオンメニュー
----------------------------------------------------------------- */
.l-drawer-acc {
  width: 100%;
  position: relative;
}
.l-drawer-acc .l-drawer-nav-main__menu:after {
  content: none;
}
.l-drawer-acc .l-drawer-acc__btn {
  position: absolute;
  right: 0;
  top: 33px;
  display: block;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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;
}

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

.l-ft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5rem 0 6.25rem;
  gap: 7%;
}
@media screen and (max-width: 834px) {
  .l-ft {
    padding: 5rem 0 3.75rem;
    gap: 47px;
  }
}
@media screen and (max-width: 428px) {
  .l-ft {
    padding: 3.75rem 0 2.5rem;
    display: block;
  }
}

/* ロゴエリア
----------------------------------------------------------------- */
.l-ft-logo__wrap {
  -ms-flex-preferred-size: 406px;
      flex-basis: 406px;
}
.l-ft-logo__wrap .l-ft-logo__wrap__inner {
  background-color: var(--white);
  border-radius: 40px;
  padding: 30px 30px 40px 30px;
}
.l-ft-logo__wrap .l-ft-logo {
  text-align: center;
  max-width: 280px;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-logo {
    max-width: 220px;
  }
}
@media screen and (max-width: 428px) {
  .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;
}
.l-ft-logo__wrap .l-ft-logo:hover img {
  opacity: 0.7;
}
.l-ft-logo__wrap .l-ft-add {
  margin-top: 1.25rem;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-add {
    margin-top: 1.875rem;
  }
}
.l-ft-logo__wrap .l-ft-add p {
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-add p {
    font-size: 0.9375rem;
  }
}
.l-ft-logo__wrap .l-ft-btn--entry {
  margin-top: 30px;
}
.l-ft-logo__wrap .l-ft-btn--entry a {
  line-height: 48px;
  max-width: 209px;
}
.l-ft-logo__wrap .l-ft-btn--entry a::after {
  background-image: url(/resource/images/ico_ex_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: none;
  width: 13px;
  height: 10px;
  -webkit-transform: rotate(0) translateY(-50%);
          transform: rotate(0) translateY(-50%);
  top: 50%;
  right: 20px;
}
.l-ft-logo__wrap .l-ft-btn--rec {
  max-width: 240px;
  width: 100%;
  margin-top: 1.875rem;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec {
    max-width: 200px;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-logo__wrap .l-ft-btn--rec {
    max-width: 280px;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a {
  display: block;
  position: relative;
  background-image: -webkit-image-set(url(/resource/images/_banner_320x100.webp) type("image/webp"), url(/resource/images/_banner_320x100.jpg) type("image/jpeg"));
  background-image: image-set(url(/resource/images/_banner_320x100.webp) type("image/webp"), url(/resource/images/_banner_320x100.jpg) type("image/jpeg"));
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.125rem 1.25rem;
  height: 76px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec a {
    height: 63px;
    padding: 13.5px 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-logo__wrap .l-ft-btn--rec a {
    height: 88px;
    padding: 1.5rem 1.25rem 1.25rem;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 1.25rem;
  top: 30px;
  background-image: url(/resource/images/ico_win_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 19px;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec a::after {
    top: 20px;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-logo__wrap .l-ft-btn--rec a::after {
    top: 32px;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a .en,
.l-ft-logo__wrap .l-ft-btn--rec a .ja {
  display: block;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
.l-ft-logo__wrap .l-ft-btn--rec a .en {
  font-size: 13px;
  font-family: "Yellowtail", cursive;
  margin-bottom: 5px;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec a .en {
    font-size: 11px;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a .ja {
  font-size: 1.125rem;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-btn--rec a .ja {
    font-size: 1rem;
  }
}
.l-ft-logo__wrap .l-ft-btn--rec a:hover {
  opacity: 0.7;
}
.l-ft-logo__wrap .l-ft-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  .l-ft-logo__wrap .l-ft-sns {
    max-width: 160px;
    width: 100%;
  }
}
.l-ft-logo__wrap .l-ft-sns li {
  width: 40px;
  aspect-ratio: 1;
}
.l-ft-logo__wrap .l-ft-sns li a:hover {
  opacity: 0.7;
}

/* メニュー
----------------------------------------------------------------- */
.l-ft-nav__wrap {
  -ms-flex-preferred-size: 63.26%;
      flex-basis: 63.26%;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__wrap {
    max-width: 477px;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-nav__wrap {
    display: none;
  }
}

.l-ft-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 5rem 2.5rem;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list {
    gap: 0;
    margin-top: -50px;
  }
}
@media screen and (max-width: 428px) {
  .l-ft-nav__list {
    display: none;
  }
}
.l-ft-nav__list ul.l-ft-nav__parent,
.l-ft-nav__list .l-ft-nav__parent--last {
  max-width: 120px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list ul.l-ft-nav__parent,
  .l-ft-nav__list .l-ft-nav__parent--last {
    -ms-flex-preferred-size: 46%;
        flex-basis: 46%;
    max-width: none;
    width: auto;
    margin-top: 50px;
  }
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu {
  line-height: 1.4;
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu a,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu a {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu a,
  .l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu a {
    font-size: 1rem;
  }
}
.l-ft-nav__list ul.l-ft-nav__parent li.l-ft-nav__parent__menu a:hover,
.l-ft-nav__list .l-ft-nav__parent--last li.l-ft-nav__parent__menu a:hover {
  color: var(--main);
}
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__parent__menu:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__parent__menu:not(:last-of-type) {
    margin-bottom: 1.875rem;
  }
}
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__other {
  line-height: 1.4;
  margin-top: 2rem;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__other {
    margin-top: 1.875rem;
  }
}
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__other a {
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
}
.l-ft-nav__list .l-ft-nav__parent--last .l-ft-nav__other a:hover {
  opacity: 0.7;
}
.l-ft-nav__list ul.l-ft-nav__child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 834px) {
  .l-ft-nav__list ul.l-ft-nav__child {
    margin-top: 0.9375rem;
    gap: 12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu {
  line-height: 1.4;
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu a {
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (max-width: 428px) {
  .l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu a {
    font-size: 13px;
  }
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu--sm {
  margin-top: 10px;
}
.l-ft-nav__list ul.l-ft-nav__child li.l-ft-nav__child__menu--sm a {
  font-size: 0.75rem;
}

/* コピーライト
----------------------------------------------------------------- */
.l-ft-copy {
  padding: 1.25rem 0;
  background: -ms-linear-gradient(0deg, rgb(23, 176, 209) 0%, rgb(135, 214, 192) 50%, rgb(154, 221, 171) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#17B0D1', endColorstr='#9ADDAB' ,GradientType=0)";
  background: -webkit-gradient(linear, left top, right top, from(rgb(23, 176, 209)), color-stop(50%, rgb(135, 214, 192)), to(rgb(154, 221, 171)));
  background: linear-gradient(90deg, rgb(23, 176, 209) 0%, rgb(135, 214, 192) 50%, rgb(154, 221, 171) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#17B0D1", endColorstr="#9ADDAB", GradientType=1);
}
.l-ft-copy p {
  text-align: center;
  font-size: 13px;
  line-height: 1;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 834px) {
  .l-ft-copy p {
    font-size: 14px;
  }
}

/* ページトップに戻るボタン
----------------------------------------------------------------- */
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: 460px;
  position: relative;
  overflow: hidden;
  background: -ms-linear-gradient(0deg, rgb(217, 242, 248) 0%, rgb(223, 244, 238) 49.95%, rgb(255, 255, 255) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#D9F2F8', endColorstr='#FFFFFF' ,GradientType=0)";
  background: -webkit-gradient(linear, left top, right top, from(rgb(217, 242, 248)), color-stop(49.95%, rgb(223, 244, 238)), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgb(217, 242, 248) 0%, rgb(223, 244, 238) 49.95%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#D9F2F8", endColorstr="#FFFFFF", GradientType=1);
}
.l-page-ttl::before {
  content: "";
  width: 863px;
  height: 863px;
  border-radius: 432px;
  background-color: var(--white);
  position: absolute;
  bottom: -480px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 834px) {
  .l-page-ttl::before {
    width: 624px;
    height: 624px;
    bottom: -260px;
  }
}
@media screen and (max-width: 428px) {
  .l-page-ttl::before {
    width: 513px;
    height: 513px;
    bottom: -200px;
  }
}
@media screen and (max-width: 834px) {
  .l-page-ttl {
    height: 456px;
  }
}
@media screen and (max-width: 428px) {
  .l-page-ttl {
    height: 410px;
  }
}
.l-page-ttl picture img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
.l-page-ttl .l-page-ttl-inner {
  position: absolute;
  top: 155px;
  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: 160px;
  }
}
@media screen and (max-width: 428px) {
  .l-page-ttl .l-page-ttl-inner {
    top: 160px;
  }
}
.l-page-ttl .l-page-ttl-inner .jp {
  color: var(--sub);
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 8px;
}
.l-page-ttl .l-page-ttl-inner .en {
  color: var(--main);
  font-family: "Yellowtail", cursive;
  font-size: 5.125rem;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 428px) {
  .l-page-ttl .l-page-ttl-inner .en {
    font-size: 3.75rem;
  }
}

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

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

.l-sec-lg {
  padding: 3.75rem 0;
}
@media screen and (max-width: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .l-sec-xxxlg-remove-top {
    padding: 0 0 5rem;
  }
}

.bg-whitesmoke {
  background-color: var(--gray-2);
}

.bg-circle {
  background-image: -webkit-image-set(url(/resource/images/bg_circle.webp) type("image/webp"), url(/resource/images/bg_circle.png) type("image/jpeg"));
  background-image: image-set(url(/resource/images/bg_circle.webp) type("image/webp"), url(/resource/images/bg_circle.png) type("image/jpeg"));
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}

.bg-gradient {
  background: -ms-linear-gradient(90deg, rgb(129, 212, 230) 0%, rgb(218, 239, 232) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#81D4E6', endColorstr='#DAEFE8' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(129, 212, 230)), to(rgb(218, 239, 232)));
  background: linear-gradient(0deg, rgb(129, 212, 230) 0%, rgb(218, 239, 232) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#DAEFE8", endColorstr="#81D4E6", GradientType=0);
}

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

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

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

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

/*-==========================================================================
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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .c-flex--lg .c-flex-3clm,
  .c-flex--lg .c-flex-2clm {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: auto;
  }
}

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

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

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

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

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

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

.c-grid {
  gap: 0;
}

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

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

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

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

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

/* ==========================================================================
リスト
=========================================================================*/
.c-list-num {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list-num li {
  position: relative;
  padding-left: 1.5rem;
}
.c-list-num li:before {
  content: counter(number) ".";
  counter-increment: number;
  position: absolute;
  display: inline-block;
  font-weight: 500;
  color: var(--main);
  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-family: "Yellowtail", cursive;
  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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .c-tb3 td {
    padding: 1.25rem;
    width: 100%;
  }
}

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

.c-modal__open {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-modal__open:before {
  content: "";
  display: block;
  background-image: url(/resource/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(/resource/images/ico_plus_white.svg);
  background-color: var(--main);
}

/* ==========================================================================
ナビ
=========================================================================*/
.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: 428px) {
  .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(--black);
  line-height: 56px;
  position: relative;
  border-radius: 100px;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:after {
  content: "";
  width: 8px;
  height: 13px;
  background-image: url(/resource/images/ico_arrow_sub.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(--sub);
}
.c-page-nav .c-page-nav__wrap .c-page-nav__menu a:hover:after {
  background-image: url(/resource/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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl {
    left: 20px;
  }
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl span {
  color: var(--white);
  font-weight: 700;
  display: block;
}
.c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl .en {
  font-family: "Yellowtail", cursive;
  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: 428px) {
  .c-nav-relate__wrap__tmb .c-nav-relate__wrap__tmb__ttl .ja {
    font-size: 1.4375rem;
  }
}
.c-nav-relate__wrap__tmb .btn {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 100px;
  background-image: url(/resource/images/ico_arrow_black.svg);
  background-size: 8px auto;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  position: absolute;
  right: 8.6705202312%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .c-nav-relate__wrap__tmb .btn {
    width: 25px;
    height: 25px;
    right: 8.547008547%;
    background-size: 6px auto;
  }
}
@media screen and (max-width: 428px) {
  .c-nav-relate__wrap__tmb .btn {
    width: 30px;
    height: 30px;
    right: 20px;
  }
}
.c-nav-relate__wrap__tmb:hover {
  opacity: 0.7;
}
.c-nav-relate__wrap__tmb:hover .btn {
  background-color: var(--main);
  background-image: url(/resource/images/ico_arrow_white.svg);
}

/* ==========================================================================
パンくずリスト
=========================================================================*/
.c-breadcrumb {
  font-size: 13px;
  line-height: 40px;
  background-color: var(--gray-2);
  position: relative;
}
.c-breadcrumb::before {
  content: "";
  width: 100%;
  height: 51px;
  background-image: url(/resource/images/bg_breadcrumb.svg);
  background-position: bottom center;
  background-size: 100% 100%;
  position: absolute;
  top: -51px;
  left: 0;
}
@media screen and (max-width: 428px) {
  .c-breadcrumb::before {
    height: 14px;
    top: -14px;
  }
}
@media screen and (max-width: 428px) {
  .c-breadcrumb {
    line-height: 36px;
  }
}
.c-breadcrumb .c-breadcrumb__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 428px) {
  .c-breadcrumb .c-breadcrumb__wrap {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list {
  white-space: nowrap;
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list a {
  text-decoration: underline;
  text-decoration-color: var(--sub);
}
.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(:last-child) {
  padding-right: 25px;
  position: relative;
}
.c-breadcrumb .c-breadcrumb__wrap .c-breadcrumb__list:not(:last-child):before {
  content: "";
  width: 5px;
  height: 8px;
  background-image: url(/resource/images/ico_arrow_sub.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 2px;
  right: 10px;
  bottom: 0;
  margin: auto;
}

/* ==========================================================================
メールフォーム
=========================================================================*/
/* 入力>確認>完了のフローナビゲーション
----------------------------------------------------------------- */
.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(--main);
  aspect-ratio: 1/360;
  max-width: 1px;
  width: 100%;
  max-width: 300px;
  height: 1px;
  top: 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;
  border-radius: 10px;
  position: relative;
  height: 100px;
  width: 100px;
  aspect-ratio: 1;
  background-color: var(--white);
  border: 1px solid var(--main);
}
@media screen and (max-width: 428px) {
  .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;
  font-size: 1.1875rem;
  line-height: 1;
}
@media screen and (max-width: 428px) {
  .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 table {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.c-form-wrap table tr {
  border-top: 1px solid #e3ecf4;
}
.c-form-wrap table tr:last-child {
  border-bottom: 1px solid #e3ecf4;
}
.c-form-wrap table tr th,
.c-form-wrap table tr td {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 428px) {
  .c-form-wrap table tr th,
  .c-form-wrap table tr td {
    display: block;
  }
}
.c-form-wrap table tr th {
  color: var(--main);
  font-weight: 500;
  width: 240px;
  padding-left: 0;
  padding-right: 0;
  vertical-align: top;
  padding-right: 2em;
}
@media screen and (max-width: 428px) {
  .c-form-wrap table tr th {
    width: 100%;
    max-width: 214px;
    padding-bottom: 0;
  }
}
/* 必須マーク
----------------------------------------------------------------- */
.c-form-required {
  position: relative;
}
.c-form-required::after {
  content: "必須";
  position: absolute;
  background-color: var(--sub);
  border-radius: 20px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 22px;
  width: 43px;
  right: 20px;
  text-align: center;
  margin-left: 14px;
  top: 25px;
}
@media screen and (max-width: 960px) {
  .c-form-required::after {
    margin-left: 10px;
  }
}

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

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

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

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

.c-form-input,
.c-form-select,
.c-form-textarea {
  display: inline-block;
  background-color: #f2f2f2;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  vertical-align: middle;
  padding: 4px 8px;
  max-width: 760px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .c-form-input,
  .c-form-select,
  .c-form-textarea {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.c-form-cap {
  line-height: 1.8;
  font-size: 13px;
  color: rgba(var(--black-rgb), 0.6);
}

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

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

.c-form-notsale__attention {
  vertical-align: middle;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 3.75rem;
}
.c-form-notsale__attention img {
  margin-right: 10px;
  margin-top: -4px;
}
.c-form-notsale__attention p {
  display: inline-block;
  font-weight: 500;
}

.c-form-notsale__wrap {
  padding: 0 20px;
}
@media screen and (max-width: 428px) {
  .c-form-notsale__wrap {
    padding: 1.875rem 1.25rem;
  }
}
.c-form-notsale__wrap h5 {
  color: var(--main);
}
.c-form-notsale__wrap .c-form-notsale__cheackbox {
  margin-top: 1.875rem;
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.875rem;
  font-weight: 500;
  line-height: 1.4;
  background-color: var(--gray-2);
}
@media screen and (max-width: 428px) {
  .c-form-notsale__wrap .c-form-notsale__cheackbox {
    margin-top: 1.25rem;
    padding: 1.875rem 0 3.125rem;
  }
}
.c-form-notsale__wrap .c-form-notsale__cheackbox .c-form-checkbox {
  background-color: var(--white);
}
.c-form-notsale__wrap .c-form-required:after {
  position: relative;
  display: inline-block;
  right: auto;
  top: auto;
  vertical-align: middle;
  margin-left: 5px;
}
@media screen and (max-width: 428px) {
  .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;
  }
}

::-webkit-input-placeholder {
  color: #738fab;
  font-size: 1rem;
}

::-moz-placeholder {
  color: #738fab;
  font-size: 1rem;
}

:-ms-input-placeholder {
  color: #738fab;
  font-size: 1rem;
}

::-ms-input-placeholder {
  color: #738fab;
  font-size: 1rem;
}

::placeholder {
  color: #738fab;
  font-size: 1rem;
}

/* ==========================================================================
ボタン
=========================================================================*/
/* メインボタン
----------------------------------------------------------------- */
.c-btn-main,
.c-btn-main--white {
  text-align: center;
  max-width: 310px;
  width: 100%;
}
.c-btn-main a,
.c-btn-main button,
.c-btn-main--white a,
.c-btn-main--white button {
  display: block;
  background: -ms-linear-gradient(0deg, rgb(246, 194, 101) 0%, rgb(253, 147, 97) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#F6C265', endColorstr='#FD9361' ,GradientType=0)";
  background: -webkit-gradient(linear, left top, right top, from(rgb(246, 194, 101)), to(rgb(253, 147, 97)));
  background: linear-gradient(90deg, rgb(246, 194, 101) 0%, rgb(253, 147, 97) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F6C265", endColorstr="#FD9361", GradientType=1);
  line-height: 80px;
  border-radius: 100px;
  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;
  position: relative;
}
.c-btn-main a::after,
.c-btn-main button::after,
.c-btn-main--white a::after,
.c-btn-main--white button::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.c-btn-main a .txt,
.c-btn-main button .txt,
.c-btn-main--white a .txt,
.c-btn-main--white button .txt {
  font-weight: 700;
  color: var(--white);
}
.c-btn-main a:hover,
.c-btn-main button:hover,
.c-btn-main--white a:hover,
.c-btn-main--white button:hover {
  opacity: 0.8;
}

.c-btn-main--white a,
.c-btn-main--white button {
  background-color: var(--white);
  background-image: url(/resource/images/ico_arrow_main.svg);
}
.c-btn-main--white a .txt,
.c-btn-main--white button .txt {
  font-weight: 700;
  color: var(--main);
}
.c-btn-main--white a:hover,
.c-btn-main--white button:hover {
  background-image: url(/resource/images/ico_arrow_white.svg);
}
.c-btn-main--white a:hover .txt,
.c-btn-main--white button:hover .txt {
  color: var(--white);
}

.c-btn-main--win a::after {
  background-image: url(/resource/images/ico_ex_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: none;
  width: 13px;
  height: 10px;
  -webkit-transform: rotate(0) translateY(-50%);
          transform: rotate(0) translateY(-50%);
  top: 50%;
  right: 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: 428px) {
  .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: 500;
}
.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(--sub);
  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(--sub);
  border-radius: 100%;
  background-image: url(/resource/images/ico_arrow_white.svg);
  background-position: center;
  background-size: 6px auto;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 428px) {
  .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(--sub);
}
.c-btn-sub--back .btn {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

/* カード型の横長ボタン 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: 428px) {
  .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(/resource/images/ico_pdf.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 11px;
  margin-top: 4px;
}
.c-btn-pdf a::after,
.c-btn-excel a::after,
.c-btn-word a::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/resource/images/ico_win2.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-pdf a span,
.c-btn-excel a span,
.c-btn-word a span {
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}
.c-btn-pdf a:hover,
.c-btn-excel a:hover,
.c-btn-word a:hover {
  opacity: 0.7;
}
.c-btn-pdf a:hover::after,
.c-btn-excel a:hover::after,
.c-btn-word a:hover::after {
  background-image: url(/resource/images/ico_win2_main.svg);
}
.c-btn-pdf a:hover span,
.c-btn-excel a:hover span,
.c-btn-word a:hover span {
  color: var(--main);
}

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

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

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

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

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

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

/* 画像とその下にタイトルとテキストのあるカード ※ボタンつき
----------------------------------------------------------------- */
.c-card-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.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 .txt::before {
  content: none;
}

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

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

/* サムネイル画像とタイトルのほか、カテゴリもあるリンクのついたカード
----------------------------------------------------------------- */
.c-card-tmb-cat {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: auto;
}
.c-card-tmb-cat .c-card-tmb-cat__head img {
  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: 14px;
  }
}
.c-card-tmb-cat .c-card-tmb-cat__cont .c-card-tmb-cat__ttl {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.c-card-tmb-cat .c-card-tmb-cat__cont .c-card-tmb-cat__txt {
  margin-top: 5px;
}
.c-card-tmb-cat:hover {
  opacity: 0.7;
}

/* データカード（数字付きカード）
----------------------------------------------------------------- */
.c-card-data {
  padding: 1.875rem;
}
.c-card-data .c-card-data__txt-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 10px;
}
.c-card-data .c-card-data__txt-data .num {
  color: var(--main);
  font-weight: 700;
  line-height: 1;
  font-family: "Yellowtail", cursive;
  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;
}

/* 下層ページ共通のコンテンツボックス
----------------------------------------------------------------- */
.c-box {
  border-radius: 40px;
  background-color: var(--white);
}
@media screen and (max-width: 428px) {
  .c-box {
    border-radius: 27px;
  }
}
.c-box + .c-box {
  margin-top: 60px;
}
@media screen and (max-width: 428px) {
  .c-box + .c-box {
    margin-top: 30px;
  }
}

.c-box__title {
  padding-right: 60px;
  padding-left: 60px;
  padding-top: 40px;
  padding-bottom: 30px;
  color: var(--main);
  font-size: 1.75rem;
  border-bottom: 1px solid var(--sub);
  margin-bottom: 40px;
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  .c-box__title {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 428px) {
  .c-box__title {
    font-size: 1.4375rem;
  }
}
.c-box__title em {
  color: var(--sub);
  font-style: normal;
}

.c-box-contents {
  padding-right: 60px;
  padding-left: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 834px) {
  .c-box-contents {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.c-box-contents-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: 428px) {
  .c-box-contents-flex {
    display: block;
  }
}
.c-box-contents-flex > div {
  -ms-flex-preferred-size: 47%;
      flex-basis: 47%;
}
.c-box-contents-flex--rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-box-contents-flex + .c-box-contents-flex {
  margin-top: 80px;
}
@media screen and (max-width: 428px) {
  .c-box-contents-flex + .c-box-contents-flex {
    margin-top: 40px;
  }
}

.c-box-contents-flex-text__title {
  color: var(--main);
  font-size: 1.25rem;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 428px) {
  .c-box-contents-flex-text__title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 428px) {
  .c-box-contents-flex-text {
    margin-bottom: 20px;
  }
}

.c-box-contents-flex-image img {
  border-radius: 60px;
}
@media screen and (max-width: 834px) {
  .c-box-contents-flex-image img {
    border-radius: 30px;
  }
}

/* ==========================================================================
タイトル
=========================================================================*/
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: 428px) {
  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: 428px) {
  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: 428px) {
  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: 428px) {
  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: 428px) {
  h6 {
    font-size: 1.25rem;
  }
}

/* 見出し・タイトル
----------------------------------------------------------------- */
.c-ttl-lv1,
.c-ttl-lv1--white {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 834px) {
  .c-ttl-lv1,
  .c-ttl-lv1--white {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .c-ttl-lv1,
  .c-ttl-lv1--white {
    margin-bottom: 1.875rem;
  }
}
.c-ttl-lv1 .en,
.c-ttl-lv1--white .en {
  display: block;
  font-family: "Yellowtail", cursive;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--main);
  font-weight: 400;
  background-image: url(/resource/images/line_title_lv1.svg);
  background-size: 78px 21px;
  background-repeat: no-repeat;
  background-position: bottom left;
  padding: 0 0 6px 18px;
  -webkit-transform: translateX(-13px);
          transform: translateX(-13px);
}
.c-ttl-lv1 .ja,
.c-ttl-lv1--white .ja {
  display: block;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #2f3f57;
}
@media screen and (max-width: 834px) {
  .c-ttl-lv1 .ja,
  .c-ttl-lv1--white .ja {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .c-ttl-lv1 .ja,
  .c-ttl-lv1--white .ja {
    font-size: 2.0625rem;
  }
}

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

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

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

/* マップスワイパーに変化
-----------------------------------------------------*/
.c-slide-map__wrap .c-slide-map__img {
  position: relative;
  width: 100%;
}
.c-slide-map__wrap .c-slide-map__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li {
  position: absolute;
}
.c-slide-map__wrap .c-slide-map__img .c-slide-map__link li button {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background-color: var(--white);
  display: -webkit-box;
  display: -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: 428px) {
  .map-next.swiper-button-next,
  .map-prev.swiper-button-prev {
    width: 20px;
  }
}
.map-next.swiper-button-next:after,
.map-prev.swiper-button-prev:after {
  content: none;
}
.map-next.swiper-button-next::before,
.map-prev.swiper-button-prev::before {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .map-next.swiper-button-next::before,
  .map-prev.swiper-button-prev::before {
    background-size: 30px auto;
  }
}
@media screen and (max-width: 428px) {
  .map-next.swiper-button-next::before,
  .map-prev.swiper-button-prev::before {
    background-size: 20px auto;
  }
}
.map-next.swiper-button-next:hover::before,
.map-prev.swiper-button-prev:hover::before {
  background-image: url(/resource/images/ico_arrow_main.svg);
}

.map-next.swiper-button-next {
  right: 100px;
}
@media screen and (max-width: 834px) {
  .map-next.swiper-button-next {
    right: 15px;
  }
}
@media screen and (max-width: 428px) {
  .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: 428px) {
  .map-prev.swiper-button-prev {
    left: -5px;
  }
}

/* ==========================================================================
トップページ
========================================================================== */
.p-idx-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 41.1vw;
  z-index: 2;
}
@media screen and (max-width: 428px) {
  .p-idx-circle {
    width: 72.26vw;
  }
}

/* スライドショー
----------------------------------------------------------------- */
.p-idx-slide__wrap {
  width: 100%;
  height: 56.22vw;
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 834px) {
  .p-idx-slide__wrap {
    height: 53.22vw;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-slide__wrap {
    height: 132vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 60px;
  }
}

.p-idx-slide__catch {
  z-index: 2;
  position: absolute;
  display: block;
  width: 19.76vw;
  right: 6vw;
  top: 7.32vw;
}
@media screen and (max-width: 428px) {
  .p-idx-slide__catch {
    width: 37.33vw;
  }
}
.p-idx-slide__catch img {
  max-width: 100%;
}

.p-idx-slide__items .p-idx-slide-item picture {
  width: 100%;
  height: 100%;
  display: block;
}
.p-idx-slide__items .p-idx-slide-item picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.swiper.fvSwiper {
  position: relative;
  width: 78vw;
  margin-right: auto;
  margin-left: 0;
}
@media screen and (max-width: 428px) {
  .swiper.fvSwiper {
    width: 130vw;
  }
}

.fv-swiper-pagination {
  bottom: 11vw !important;
}
.fv-swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background-color: var(--white);
  opacity: 1;
  width: 30px;
  height: 3px;
  border-radius: 1.5px;
}
.fv-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main);
}

/* リード
----------------------------------------------------------------- */
.p-idx-sec1__wrap {
  margin-top: -14.5vw;
  padding: 9.5vw 0 12.5rem 0;
  position: relative;
  z-index: 1;
  background: -ms-linear-gradient(0deg, rgb(23, 176, 209) 0%, rgb(219, 243, 225) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#17B0D1', endColorstr='#DBF3E1' ,GradientType=0)";
  background: -webkit-gradient(linear, left top, right top, from(rgb(23, 176, 209)), to(rgb(219, 243, 225)));
  background: linear-gradient(90deg, rgb(23, 176, 209) 0%, rgb(219, 243, 225) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#17B0D1", endColorstr="#DBF3E1", GradientType=1);
  color: var(--white);
  -webkit-mask-image: url(/resource/images/mask_square.svg), url(/resource/images/mask_arc.svg);
          mask-image: url(/resource/images/mask_square.svg), url(/resource/images/mask_arc.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  -webkit-mask-position: top center;
          mask-position: top center;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
@media screen and (max-width: 834px) {
  .p-idx-sec1__wrap {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap {
    padding: 3.75rem 0;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__img {
  position: absolute;
  right: -5%;
  top: 12vw;
  width: 61.7862371889%;
  overflow: hidden;
  height: 609px;
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap .p-idx-sec1__img {
    position: static;
    height: auto;
    width: 100%;
    margin-top: 1.875rem;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__img picture {
  height: 100%;
}
.p-idx-sec1__wrap .p-idx-sec1__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left top;
     object-position: left top;
}
.p-idx-sec1__wrap .p-idx-sec1__cont {
  width: 50.9259259259%;
  min-height: 409px;
}
@media screen and (max-width: 834px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont {
    width: 47.311827957%;
    min-height: initial;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont {
    width: 100%;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__ttl {
  font-size: 1.75rem;
  line-height: 1.8;
  margin-bottom: 2.5em;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__ttl {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__ttl {
    font-size: 1.4375rem;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt {
  line-height: 2.25;
  margin-top: 1.25rem;
  color: var(--white);
}
@media screen and (max-width: 428px) {
  .p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt {
    margin-top: 1.875rem;
  }
}
.p-idx-sec1__wrap .p-idx-sec1__cont .p-idx-sec1__txt + .p-idx-sec1__txt {
  margin-top: 2em;
}

/* 事業内容
----------------------------------------------------------------- */
.p-idx-business__wrap,
.p-idx-business__wrap--re {
  padding: 6.25rem 0;
  position: relative;
  background-color: var(--gray-2);
}
@media screen and (max-width: 834px) {
  .p-idx-business__wrap,
  .p-idx-business__wrap--re {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-business__wrap,
  .p-idx-business__wrap--re {
    padding: 3.75rem 0;
  }
}
.p-idx-business__wrap .p-idx-business__img-area,
.p-idx-business__wrap--re .p-idx-business__img-area {
  position: relative;
}
@media screen and (max-width: 834px) {
  .p-idx-business__wrap .p-idx-business__img-area .p-idx-business__img,
  .p-idx-business__wrap--re .p-idx-business__img-area .p-idx-business__img {
    width: 47.6829268293%;
    height: 293px;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-business__wrap .p-idx-business__img-area .p-idx-business__img,
  .p-idx-business__wrap--re .p-idx-business__img-area .p-idx-business__img {
    width: 100%;
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    margin-left: 0;
    margin-right: auto;
    margin-top: 1.875rem;
  }
}
.p-idx-business__wrap .p-idx-business__img-area .p-idx-business__img picture,
.p-idx-business__wrap--re .p-idx-business__img-area .p-idx-business__img picture {
  width: 100%;
  height: 100%;
  display: block;
}
.p-idx-business__wrap .p-idx-business__img-area .p-idx-business__img picture img,
.p-idx-business__wrap--re .p-idx-business__img-area .p-idx-business__img picture img {
  width: calc(100% + 60px);
  max-width: none;
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
  border-radius: 60px;
}
@media screen and (max-width: 1280px) {
  .p-idx-business__wrap .p-idx-business__img-area .p-idx-business__img picture img,
  .p-idx-business__wrap--re .p-idx-business__img-area .p-idx-business__img picture img {
    width: 100%;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-business__wrap .p-idx-business__img-area .p-idx-business__img picture img,
  .p-idx-business__wrap--re .p-idx-business__img-area .p-idx-business__img picture img {
    border-radius: 22px;
  }
}
.p-idx-business__wrap .p-idx-business__cont .p-idx-business__link,
.p-idx-business__wrap .p-idx-business__cont .p-idx-business__link--white,
.p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link,
.p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link--white {
  border-top: 1px solid var(--whitesmoke);
  width: 100%;
}
.p-idx-business__wrap .p-idx-business__cont .p-idx-business__link li a,
.p-idx-business__wrap .p-idx-business__cont .p-idx-business__link--white li a,
.p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link li a,
.p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link--white li a {
  display: block;
  position: relative;
  line-height: 75px;
  font-size: 1.25rem;
  border-bottom: 1px solid var(--whitesmoke);
}
@media screen and (max-width: 428px) {
  .p-idx-business__wrap .p-idx-business__cont .p-idx-business__link li a,
  .p-idx-business__wrap .p-idx-business__cont .p-idx-business__link--white li a,
  .p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link li a,
  .p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link--white li a {
    line-height: 62px;
  }
}
.p-idx-business__wrap .p-idx-business__cont .p-idx-business__link li a::before,
.p-idx-business__wrap .p-idx-business__cont .p-idx-business__link--white li a::before,
.p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link li a::before,
.p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link--white li a::before {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--sub);
  border-right: 1px solid var(--sub);
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 834px) {
  .p-idx-business__wrap .p-idx-business__cont .p-idx-business__link li a::before,
  .p-idx-business__wrap .p-idx-business__cont .p-idx-business__link--white li a::before,
  .p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link li a::before,
  .p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link--white li a::before {
    width: 8px;
    height: 13px;
  }
}
.p-idx-business__wrap .p-idx-business__cont .p-idx-business__link li a:hover,
.p-idx-business__wrap .p-idx-business__cont .p-idx-business__link--white li a:hover,
.p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link li a:hover,
.p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link--white li a:hover {
  color: var(--main);
}
.p-idx-business__wrap .p-idx-business__cont .p-idx-business__link--white li a,
.p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link--white li a {
  background-color: var(--white);
  border-radius: 100px;
  padding: 0 30px;
}
.p-idx-business__wrap .p-idx-business__cont .p-idx-business__link--white li + li,
.p-idx-business__wrap--re .p-idx-business__cont .p-idx-business__link--white li + li {
  margin-top: 10px;
}
.p-idx-business__wrap .p-idx-business__cont .c-btn-main,
.p-idx-business__wrap--re .p-idx-business__cont .c-btn-main {
  margin-top: 3.75rem;
}
@media screen and (max-width: 834px) {
  .p-idx-business__wrap .p-idx-business__cont .c-btn-main,
  .p-idx-business__wrap--re .p-idx-business__cont .c-btn-main {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-business__wrap .p-idx-business__cont .c-btn-main,
  .p-idx-business__wrap--re .p-idx-business__cont .c-btn-main {
    margin-top: 1.875rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-idx-business__flex {
  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: 428px) {
  .p-idx-business__flex {
    display: block;
  }
}
.p-idx-business__flex > div {
  -ms-flex-preferred-size: 47.3%;
      flex-basis: 47.3%;
}

/* 採用情報
----------------------------------------------------------------- */
.p-idx-recruit__wrap {
  background: -ms-linear-gradient(90deg, rgb(203, 240, 210) 0%, rgb(239, 246, 235) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#CBF0D2', endColorstr='#EFF6EB' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(203, 240, 210)), to(rgb(239, 246, 235)));
  background: linear-gradient(0deg, rgb(203, 240, 210) 0%, rgb(239, 246, 235) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EFF6EB", endColorstr="#CBF0D2", GradientType=0);
}
.p-idx-recruit__wrap .c-btn-main {
  margin-top: 3.75rem;
}

/* お知らせ2（リストタイプ）
----------------------------------------------------------------- */
.p-idx-newslist__wrap {
  background-color: var(--gray-2);
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__wrap {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-newslist__wrap {
    padding: 3.75rem 0;
  }
}

.p-idx-newslist__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 13.7%;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__inner {
    gap: 10.3494623656%;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-newslist__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-idx-newslist__ttl {
  min-width: 192px;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__ttl {
    min-width: 160px;
  }
}

.p-idx-newslist__cont {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 1px;
  margin-left: 0;
}
.p-idx-newslist__cont ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 428px) {
  .p-idx-newslist__cont ul {
    gap: 15px;
  }
}
.p-idx-newslist__cont ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.875rem;
  background-color: var(--white);
  border-radius: 100px;
  position: relative;
  gap: 2.5rem;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__cont ul li a {
    gap: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-newslist__cont ul li a {
    padding: 1.25rem;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-idx-newslist__cont ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.875rem;
  width: 8px;
  height: 12px;
  background-image: url(/resource/images/ico_arrow_main.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__cont ul li a::after {
    right: 1.25rem;
  }
}
.p-idx-newslist__cont ul li a .p-idx-newslist__cont__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__cont ul li a .p-idx-newslist__cont__flex {
    gap: 10px;
  }
}
.p-idx-newslist__cont ul li a .p-idx-newslist__cont__flex .p-idx-newslist__cont__data {
  line-height: 1.2;
}
.p-idx-newslist__cont ul li a .p-idx-newslist__cont__flex .p-idx-newslist__cat {
  display: block;
  background-color: var(--main);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  padding: 5px 16px 5px;
  text-align: center;
  min-width: 84px;
  border-radius: 100px;
}
@media screen and (max-width: 834px) {
  .p-idx-newslist__cont ul li a .p-idx-newslist__cont__flex .p-idx-newslist__cat {
    min-width: 72px;
    padding: 3px 10px;
  }
}
.p-idx-newslist__cont ul li a .p-idx-newslist__cont__ttl {
  display: inline-block;
  line-height: 1.4;
}
.p-idx-newslist__cont ul li a:hover {
  color: var(--main);
  opacity: 0.7;
}
.p-idx-newslist__cont ul li a:hover .p-idx-newslist__cont__ttl::after {
  right: 0;
}

.p-idx-newslist__btn {
  margin-top: 1.875rem;
}
.p-idx-newslist__btn a {
  margin-left: auto;
  margin-right: 0;
}

/* 会社概要
----------------------------------------------------------------- */
.p-idx-outline__wrap {
  background-image: -webkit-image-set(url(/resource/images/idx_outline_bg.webp) type("image/webp"), url(/resource/images/idx_outline_bg.jpg) type("image/jpeg"));
  background-image: image-set(url(/resource/images/idx_outline_bg.webp) type("image/webp"), url(/resource/images/idx_outline_bg.jpg) type("image/jpeg"));
  background-position: bottom center;
  background-size: cover;
  padding-bottom: 18.75rem;
}
@media screen and (max-width: 428px) {
  .p-idx-outline__wrap {
    padding-bottom: 160px;
  }
}

.p-idx-recruit__contents {
  background-color: var(--white);
  border-radius: 40px;
  padding: 30px;
}
.p-idx-recruit__contents table {
  max-width: 858px;
  margin-left: auto;
  margin-right: auto;
}
.p-idx-recruit__contents table tr:not(:last-child) {
  border-bottom: 1px solid #e3ecf4;
}
.p-idx-recruit__contents table th,
.p-idx-recruit__contents table td {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 428px) {
  .p-idx-recruit__contents table th,
  .p-idx-recruit__contents table td {
    display: block;
  }
}
.p-idx-recruit__contents table th {
  color: var(--main);
  font-weight: 500;
  padding-left: 1em;
}
@media screen and (max-width: 428px) {
  .p-idx-recruit__contents table th {
    padding-top: 10px;
    padding-bottom: 0;
    padding-left: 0;
  }
}
.p-idx-recruit__contents table td {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* アクセス
----------------------------------------------------------------- */
.p-idx-access__wrap {
  background-color: var(--gray-2);
}

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

.p-idx-access__contents h3 {
  font-size: 1.25rem;
  color: var(--main);
  margin-bottom: 2em;
}
.p-idx-access__contents .access {
  margin-top: 30px;
  background-color: var(--white);
  border-radius: 20px;
  padding: 20px;
  max-width: 321px;
}
@media screen and (max-width: 428px) {
  .p-idx-access__contents .access {
    max-width: none;
    margin-bottom: 40px;
  }
}
.p-idx-access__contents .access h4 {
  font-size: 1.25rem;
  color: var(--main);
  margin-bottom: 1em;
}

.p-idx-access__img img {
  border-radius: 60px;
}
@media screen and (max-width: 834px) {
  .p-idx-access__img img {
    border-radius: 27px;
  }
}

.p-idx-access__map {
  border: 1px solid var(--white);
  border-radius: 15px;
  overflow: hidden;
  margin-top: 5rem;
}
@media screen and (max-width: 428px) {
  .p-idx-access__map {
    margin-top: 40px;
  }
}
.p-idx-access__map iframe {
  width: 100%;
  height: 427px;
}
@media screen and (max-width: 834px) {
  .p-idx-access__map iframe {
    height: 294px;
  }
}

/* お問い合わせエリア
----------------------------------------------------------------- */
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-contact__wrap {
    padding: 1.875rem 0;
  }
}
.p-idx-contact__wrap .p-idx-contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 428px) {
  .p-idx-contact__wrap .p-idx-contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box {
  width: 50%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.5rem;
  background-color: var(--white);
  position: relative;
}
@media screen and (max-width: 428px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box {
    width: 100%;
    padding: 1.875rem 1.25rem;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box:nth-child(1) {
    padding-left: 0;
    padding-right: 20px;
  }
}
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box:nth-child(1)::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 1px;
  background-color: #e3ecf4;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 428px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box:nth-child(1)::after {
    height: 1px;
    width: 100%;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box:nth-child(2) {
    padding-right: 0;
    padding-left: 20px;
  }
}
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .p-idx-contact__ttl {
  text-align: center;
  font-size: 1.4375rem;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .p-idx-contact__ttl {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .p-idx-contact__ttl {
    font-size: 1.25rem;
  }
}
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .txt-tel {
  margin-top: 20px;
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .txt-tel {
    margin-top: 8px;
  }
}
.p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .c-btn-main {
  margin-top: 1.875rem;
}
@media screen and (max-width: 834px) {
  .p-idx-contact__wrap .p-idx-contact__inner .p-idx-contact__box .c-btn-main {
    max-width: initial;
    width: 100%;
    margin-top: 1.25rem;
  }
}

/* ==========================================================================
お知らせ
========================================================================== */
.p-news-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5rem;
}
@media screen and (max-width: 834px) {
  .p-news-categories {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2%;
    margin-top: -10px;
  }
}
.p-news-categories li {
  -ms-flex-preferred-size: 18.88%;
      flex-basis: 18.88%;
}
@media screen and (max-width: 834px) {
  .p-news-categories li {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    margin-top: 10px;
  }
}
@media screen and (max-width: 428px) {
  .p-news-categories li {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
.p-news-categories li a {
  display: block;
  background-color: var(--white);
  text-align: center;
  padding: 10px;
  border-radius: 100px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-news-categories li a:hover {
  background-color: var(--sub);
  color: var(--white);
}
.p-news-categories li.current-cat a {
  background-color: var(--sub);
  color: var(--white);
}

/* 記事
----------------------------------------------------------------- */
.p-news-article {
  background-color: var(--white);
  border-radius: 60px;
}
@media screen and (max-width: 834px) {
  .p-news-article {
    padding: 2.5rem 0;
    border-radius: 23px;
  }
}
.p-news-article .p-news-article-head {
  padding: 60px 60px 30px 60px;
  border-bottom: 1px solid var(--sub);
}
@media screen and (max-width: 834px) {
  .p-news-article .p-news-article-head {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-news-article .p-news-article__items__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.25rem;
}
.p-news-article .p-news-article__items__flex .p-news-article__date {
  line-height: 1.2;
  color: var(--black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 428px) {
  .p-news-article .p-news-article__items__flex .p-news-article__date {
    font-size: 1.125rem;
  }
}
.p-news-article .p-news-article__items__flex .p-news-article__cat {
  display: inline-block;
  background-color: var(--main);
  color: var(--white);
  font-weight: 400;
  line-height: 1.4;
  padding: 5px 20px 6px;
  border-radius: 100px;
  font-size: 0.8125rem;
}
.p-news-article .p-news-article-data {
  color: var(--main);
  font-family: "Yellowtail", cursive;
  font-weight: 700;
}
.p-news-article .p-news-article__ttl {
  line-height: 1.6;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--main);
}
@media screen and (max-width: 834px) {
  .p-news-article .p-news-article__ttl {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 428px) {
  .p-news-article .p-news-article__ttl {
    font-size: 1.625rem;
  }
}
.p-news-article .p-news-article__cont {
  padding: 40px 60px 60px 60px;
}
@media screen and (max-width: 834px) {
  .p-news-article .p-news-article__cont {
    margin-top: 1.875rem;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    margin-top: 10px;
    padding-bottom: 20px;
  }
}
.p-news-article .p-news-article__cont p:nth-child(n+2) {
  margin-top: 1.5rem;
}
.p-news-article .p-news-article__cont a {
  color: var(--sub);
  text-decoration: underline;
}
.p-news-article .p-news-article__cont a:hover {
  color: var(--hover);
  text-decoration: none;
}
.p-news-article .p-news-article__cont img {
  border-radius: 60px;
}
@media screen and (max-width: 834px) {
  .p-news-article .p-news-article__cont img {
    border-radius: 20px;
  }
}
.p-news-article .p-news-article__cont > * + * {
  margin-top: 30px;
}
.p-news-article + .scroll-anchor {
  margin-top: 3.75rem;
}
@media screen and (max-width: 834px) {
  .p-news-article + .scroll-anchor {
    margin-top: 0px;
  }
}

/* ページネーション
----------------------------------------------------------------- */
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 5rem 0;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi a {
  background-color: var(--gray-2);
}
.wp-pagenavi .current {
  color: var(--white);
  background-color: var(--main);
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  background-color: var(--sub);
  color: var(--white);
}

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

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

/* ==========================================================================
お知らせ2
========================================================================== */
.p-news2__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 7.4074074074%;
}
@media screen and (max-width: 428px) {
  .p-news2__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-news2__layout .p-news2__cont {
  -ms-flex-preferred-size: 66.6666666667%;
      flex-basis: 66.6666666667%;
}
.p-news2__layout aside {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 428px) {
  .p-news2__layout aside {
    margin-top: 3.75rem;
  }
}
.p-news2__layout aside .c-ttl-sub {
  margin-bottom: 1.875rem;
}
.p-news2__layout aside .c-list-dot2 li {
  margin-bottom: 1.25rem;
}
.p-news2__layout aside .c-list-dot2 li:last-of-type {
  margin-bottom: 0;
}
.p-news2__layout aside .c-list-dot2 li a:hover {
  color: var(--main);
}

/* ==========================================================================
事業内容
========================================================================== */
/* サービス紹介
----------------------------------------------------------------- */
.p-business-service-box {
  border: 1px solid var(--main);
  border-radius: 15px;
  background-color: var(--white);
  text-align: center;
  padding: 40px;
  -ms-flex-preferred-size: 47.5%;
      flex-basis: 47.5%;
}
@media screen and (max-width: 834px) {
  .p-business-service-box {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.p-business-service-box__title {
  background-color: var(--main);
  color: var(--white);
  font-weight: 500;
  border-radius: 15px;
  padding: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 834px) {
  .p-business-service-box__title {
    font-size: 1.4375rem;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.p-business-service-box img {
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .p-business-service-box.p-business-service-box {
    margin-top: 30px;
  }
}

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

.p-business-service-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 428px) {
  .p-business-service-thumbs {
    display: block;
  }
}
.p-business-service-thumbs > div {
  -ms-flex-preferred-size: 47.5%;
      flex-basis: 47.5%;
}
.p-business-service-thumbs > div img {
  border-radius: 60px;
}
@media screen and (max-width: 834px) {
  .p-business-service-thumbs > div img {
    border-radius: 30px;
  }
}
@media screen and (max-width: 428px) {
  .p-business-service-thumbs > div + div {
    margin-top: 30px;
  }
}

.p-business-service-thumbs-box--absolute {
  position: relative;
  aspect-ratio: 509/361;
}
.p-business-service-thumbs-box--absolute picture {
  position: absolute;
}
.p-business-service-thumbs-box--absolute picture.p-business-service-thumbs-box__catch {
  z-index: 1;
  top: 10%;
  left: 8%;
  width: 46.95%;
}
.p-business-service-thumbs-box--absolute picture.p-business-service-thumbs-box__catch img {
  border-radius: 0;
}
.p-business-service-thumbs-box--absolute picture.p-business-service-thumbs-box__image {
  width: 61.4%;
}
.p-business-service-thumbs-box--absolute picture.p-business-service-thumbs-box__image--top {
  top: 0;
  right: 0;
}
.p-business-service-thumbs-box--absolute picture.p-business-service-thumbs-box__image--bottom {
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 428px) {
  .p-business-price-scroll {
    white-space: nowrap;
  }
}
.p-business-price-scroll + p {
  font-size: 0.875rem;
  margin-bottom: 60px;
}

.p-business-price__table {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
}
@media screen and (max-width: 428px) {
  .p-business-price__table {
    width: 743px;
  }
}
.p-business-price__table th,
.p-business-price__table td {
  padding: 20px 3em;
  border: 1px solid #e3ecf4;
}
@media screen and (max-width: 834px) {
  .p-business-price__table th,
  .p-business-price__table td {
    padding-left: 2em;
    padding-right: 2em;
  }
}
.p-business-price__table th {
  background-color: var(--gray-2);
  font-weight: 400;
}
.p-business-price__table td {
  background-color: var(--white);
  font-weight: 400;
}
.p-business-price__table td:last-child {
  color: var(--main);
  font-weight: 600;
}

/* ==========================================================================
採用情報
========================================================================== */
/* 仕事紹介
----------------------------------------------------------------- */
.p-recruit-culture-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -40px;
}
@media screen and (max-width: 428px) {
  .p-recruit-culture-contents {
    display: block;
    margin-top: 0;
  }
}

.p-recruit-culture-contents-box {
  border: 1px solid var(--main);
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  -ms-flex-preferred-size: 30.46%;
      flex-basis: 30.46%;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 428px) {
  .p-recruit-culture-contents-box {
    margin-top: 30px;
  }
}
.p-recruit-culture-contents-box::before {
  content: "";
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: var(--main);
  position: absolute;
  top: -1px;
  left: -1px;
  width: 40px;
  height: 40px;
}
.p-recruit-culture-contents-box__catch {
  text-align: center;
  font-size: 1.25rem;
  color: var(--main);
  font-weight: 600;
  margin-bottom: 1em;
}
.p-recruit-culture-contents-box__catch em {
  color: var(--sub);
  font-style: normal;
}
.p-recruit-culture-contents-box p {
  font-weight: 500;
}

.p-recruit-culture-thumbs .p-business-service-thumbs-box--absolute .p-business-service-thumbs-box__catch {
  top: auto;
  left: auto;
  bottom: 10%;
  right: 4%;
  width: 40%;
}

.p-recruit-guideline-contents {
  background-color: var(--white);
  border-radius: 40px;
}
@media screen and (max-width: 428px) {
  .p-recruit-guideline-contents {
    border-radius: 20px;
  }
}
.p-recruit-guideline-contents__title {
  padding-left: 10.1%;
  padding-right: 10.1%;
  padding-top: 40px;
  padding-bottom: 30px;
  font-size: 1.75rem;
  color: var(--main);
  border-bottom: 1px solid var(--sub);
}
@media screen and (max-width: 834px) {
  .p-recruit-guideline-contents__title {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 428px) {
  .p-recruit-guideline-contents__title {
    font-size: 1.4375rem;
  }
}

.p-recruit-guideline-contents-inner {
  padding-left: 10.1%;
  padding-right: 10.1%;
  padding-top: 40px;
  padding-bottom: 60px;
}
@media screen and (max-width: 834px) {
  .p-recruit-guideline-contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-recruit-guideline-contents__table tr {
  border-bottom: 1px solid #e3ecf4;
}
.p-recruit-guideline-contents__table th,
.p-recruit-guideline-contents__table td {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 428px) {
  .p-recruit-guideline-contents__table th,
  .p-recruit-guideline-contents__table td {
    display: block;
  }
}
.p-recruit-guideline-contents__table th {
  color: var(--main);
  width: 200px;
  vertical-align: top;
}
@media screen and (max-width: 428px) {
  .p-recruit-guideline-contents__table th {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 428px) {
  .p-recruit-guideline-contents__table td {
    padding-top: 0px;
    padding-bottom: 15px;
  }
}
.p-recruit-guideline-contents__table td ul li {
  text-indent: -16px;
  padding-left: 16px;
}

.p-recruit-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 469px;
}
@media screen and (max-width: 834px) {
  .p-recruit-images {
    height: 281px;
  }
}
@media screen and (max-width: 428px) {
  .p-recruit-images {
    height: 128px;
  }
}
.p-recruit-images > div {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  width: 100%;
  height: 100%;
}
.p-recruit-images > div picture {
  height: 100%;
}
.p-recruit-images > div img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  width: 100%;
  height: 100%;
}

.p-recruit-entry__title {
  text-align: center;
  margin-bottom: 1.5em;
}

.p-recruit-entry-contents {
  background-color: var(--gray-2);
  border-radius: 40px;
  padding: 6.25rem 20px 5rem 20px;
}
@media screen and (max-width: 428px) {
  .p-recruit-entry-contents {
    border-radius: 30px;
    padding: 2.5rem 20px 2.5rem 20px;
  }
}

.p-recruit-entry-contents-inner {
  max-width: 955px;
  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;
}
@media screen and (max-width: 428px) {
  .p-recruit-entry-contents-inner {
    display: block;
  }
}
.p-recruit-entry-contents-inner > div {
  text-align: center;
  background-color: var(--white);
  border-radius: 40px;
  padding: 3.75rem 20px 40px 20px;
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  position: relative;
}
@media screen and (max-width: 428px) {
  .p-recruit-entry-contents-inner > div {
    padding-top: 30px;
    border-radius: 30px;
  }
}
.p-recruit-entry-contents-inner > div .c-btn-main {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 428px) {
  .p-recruit-entry-contents-inner > div + div {
    margin-top: 40px;
  }
}
@media screen and (max-width: 428px) {
  .p-recruit-entry-contents-inner > div .txt-tel a[href^="tel:"] {
    font-size: 8vw;
  }
}

.p-recruit-entry-contents-inner__en {
  color: var(--main);
  font-family: "Yellowtail", cursive;
  font-size: 3.125rem;
  font-weight: 400;
  position: absolute;
  top: -0.7em;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 428px) {
  .p-recruit-entry-contents-inner__en {
    font-size: 2.125rem;
  }
}

.p-recruit-entry-contents-inner__title {
  text-align: center;
  font-size: 1.4375rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 834px) {
  .p-recruit-entry-contents-inner__title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 834px) {
  .p-recruit-entry-contents-inner__title {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
お問い合わせ
========================================================================== */
.p-contact__lead {
  text-align: center;
}
@media screen and (max-width: 834px) {
  .p-contact__lead {
    text-align: left !important;
  }
}

/* メールでのお問い合わせ
----------------------------------------------------------------- */
.p-contact-contents {
  background-color: var(--white);
  border-radius: 40px;
  margin-top: 2.5rem;
  padding: 3.75rem 20px;
}
@media screen and (max-width: 428px) {
  .p-contact-contents {
    border-radius: 20px;
  }
}
.p-contact-contents--notsale {
  padding-top: 40px;
  padding-bottom: 40px;
}

.p-contact-agree::after {
  position: static;
  display: inline-block;
}

.p-contact-tel-box {
  border: 1px solid #e3ecf4;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 20px;
  margin-top: 3.75rem;
  background-color: var(--white);
  border-radius: 10px;
}
@media screen and (max-width: 428px) {
  .p-contact-tel-box {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* ==========================================================================
お知らせ
========================================================================== */
.p-privacy-contents {
  background-color: var(--white);
  border-radius: 40px;
  padding: 5rem 6% 3.75rem 6%;
}
.p-privacy-contents dt {
  color: var(--main);
  font-weight: 500;
}
.p-privacy-contents dt.name {
  color: var(--black);
}

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

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

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

.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: 428px) {
  .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: 428px) {
  .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: 428px) {
  .padding-xxlg-top {
    padding-top: 5rem;
  }
}

/*-==========================================================================
テキスト
==========================================================================*/
.txt-en {
  font-family: "Yellowtail", cursive;
}

.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: 428px) {
  .txt-lead {
    line-height: 1.8;
  }
}

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

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

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

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

.txt-link,
.txt-link--arrow,
.txt-link--win {
  font-weight: 500;
  line-height: 1.6;
  color: var(--sub);
  position: relative;
}
.txt-link::before,
.txt-link--arrow::before,
.txt-link--win::before {
  content: "";
  display: block;
  background-color: var(--sub);
  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(/resource/images/ico_arrow_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  margin-right: 4px;
  margin-top: 2px;
}
.txt-link--arrow:hover::before {
  background-image: url(/resource/images/ico_arrow_green.svg);
}

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

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

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

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

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

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

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

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

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

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

.txt-gray-1 {
  color: #e9e9e9 !important;
}

.txt-gray-2 {
  color: #f9f7f5 !important;
}

/* 電話番号
----------------------------------------------------------------- */
.txt-tel img {
  margin-right: 5px;
  width: 24px;
  vertical-align: baseline;
}
@media screen and (max-width: 834px) {
  .txt-tel img {
    width: 3vw;
  }
}
@media screen and (max-width: 428px) {
  .txt-tel img {
    width: 15px;
  }
}
.txt-tel a[href^="tel:"] {
  font-size: 2.6875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--main);
  display: inline-block;
  pointer-events: none;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .txt-tel a[href^="tel:"] {
    font-size: 4.5563549161vw;
  }
}
@media screen and (max-width: 428px) {
  .txt-tel a[href^="tel:"] {
    pointer-events: auto;
    font-size: 2.375rem;
  }
  .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;
  font-size: 0.875rem;
}
@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: #2f3f57 !important;
}

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

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

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

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

.bg-gray-1 {
  background-color: #e9e9e9 !important;
}

.bg-gray-2 {
  background-color: #f9f7f5 !important;
}

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

/* ==========================================================================
 スクロール
=========================================================================*/
.scroll-anchor {
  display: block;
}
@media screen and (max-width: 834px) {
  .scroll-anchor {
    padding-top: 3.75rem;
    margin-top: -3.75rem;
  }
}
@media screen and (max-width: 428px) {
  .scroll-anchor {
    padding-top: 1.875rem;
    margin-top: -1.875rem;
  }
}

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

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

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