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

body {
  margin: 0;
  padding: 0;
}

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

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

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

[hidden],
template {
  display: none;
}

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

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

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

pre {
  overflow: auto;
}

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

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

button {
  overflow: visible;
  border: none;
  padding: 0;
}

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 {
  --white: #fff;
  --lightgray: #e9e9e9;
  --silver: #d4d4d4;
  --gray: #676767;
  --black: #262626;
  --black-800: #5C5C5C;
  --black-600: #858585;
  --black-400: #ADADAD;
  --black-200: #D6D6D6;
  --black-100: #EBEBEB;
  --main: #00AA5C;
  --sub: #FF7C30;
  --hover: #008969;
  --back: #F4F1EF;
  --selection_txt: #525252;
  --selection_bg: #ffd0c4;
  --tomato: #ef423b;
}

/*-==========================================================================
rem変換関数
==========================================================================*/
/*-==========================================================================
vw変換
==========================================================================*/
/*-==========================================================================
mixin
==========================================================================*/
/*-==========================================================================
独自mixinを定義
==========================================================================*/
/*-==========================================================================
ブレイクポイント
==========================================================================*/
/* less_than_xx */
/* more_than_xx */
/* ==========================================================================
汎用CSS
========================================================================== */
/* サイト全体のフォントサイズや色に関する設定
----------------------------------------------------------------- */
html {
  color: var(--black);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-justify: inter-ideograph;
  vertical-align: baseline;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

::-moz-selection {
  color: var(--select_txt);
  background-color: var(--select_bg);
}

::selection,
::-moz-selection {
  color: var(--select_txt);
  background-color: var(--select_bg);
}

.f-common__wrap {
  overflow: clip;
}

.f-frame {
  margin: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 820px) {
  .f-frame {
    margin: 0 14px;
  }
}
@media screen and (max-width: 599px) {
  .f-frame {
    margin: 0 10px;
  }
}

a {
  color: var(--black);
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  a {
    -webkit-transition: 0.1s !important;
    transition: 0.1s !important;
  }
}
a:hover {
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0;
  text-align: justify;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 2;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

dt {
  font-weight: bold;
}

dd {
  margin: 0;
}

label {
  cursor: pointer;
}

/* ==========================================================================
アニメーション
========================================================================== */
/* fadeIm fadeOut
----------------------------------------------------------------- */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.is-fade-in {
  opacity: 0;
}

/* ==========================================================================

========================================================================== */
/* ==========================================================================
ヘッダー
========================================================================== */
header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.l-header {
  width: 100%;
  height: 100px;
  z-index: 100;
  position: relative;
}

h1.l-header__logo {
  position: absolute;
  max-width: 304px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 110;
  border-radius: 0px 0px 20px 0px;
  background-color: white;
  height: 90px;
}
@media screen and (max-width: 820px) {
  h1.l-header__logo {
    max-width: 265px;
    height: 80px;
  }
}
@media screen and (max-width: 599px) {
  h1.l-header__logo {
    max-width: 201px;
    height: 60px;
  }
}
h1.l-header__logo a {
  padding: 1.25rem 1.875rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  gap: 1.25rem;
}
@media screen and (max-width: 820px) {
  h1.l-header__logo a {
    gap: 0.9375rem;
    padding: 0.875rem 0.875rem;
  }
}
@media screen and (max-width: 599px) {
  h1.l-header__logo a {
    gap: 0.625rem;
    padding: 0.75rem 0.9375rem;
  }
}
h1.l-header__logo a:hover {
  opacity: 0.8;
}
h1.l-header__logo a .l-header__logo-img {
  width: 182px;
  height: 50px;
  aspect-ratio: 91/25;
}
@media screen and (max-width: 820px) {
  h1.l-header__logo a .l-header__logo-img {
    width: 175px;
    height: 50px;
  }
}
@media screen and (max-width: 599px) {
  h1.l-header__logo a .l-header__logo-img {
    width: 131px;
    height: 36px;
    width: auto;
  }
}
h1.l-header__logo a .l-header__logo-img-sub {
  width: 42px;
  height: 50px;
  aspect-ratio: 21/25;
}
@media screen and (max-width: 820px) {
  h1.l-header__logo a .l-header__logo-img-sub {
    width: 35px;
    height: 42px;
  }
}
@media screen and (max-width: 599px) {
  h1.l-header__logo a .l-header__logo-img-sub {
    width: 30px;
    height: 36px;
  }
}

/* PC版メニュー
----------------------------------------------------------------- */
.l-header__nav {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 1.875rem;
  /* dropdown
  ----------------------------------------------------------------- */
}
.l-header__nav ul.l-header__nav-global {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu,
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu--win,
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu--access {
  padding-top: 2.8125rem;
  height: 100%;
}
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu > a,
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu--win > a,
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu--access > a {
  position: relative;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--white);
  line-height: 1.4;
  font-size: 1.0625rem;
  font-weight: bold;
  height: 100%;
}
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu > a::after,
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu--win > a::after,
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu--access > a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--white);
  bottom: 20px;
  /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu:hover a::after,
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu--win:hover a::after,
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu--access:hover a::after {
  visibility: visible;
  bottom: 26px;
  opacity: 1;
}
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu--win a {
  padding-right: 17px;
}
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu--win a::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 6px;
  background-image: url(/resource/images/ico_win_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 12px auto;
  width: 12px;
  height: 12px;
  margin-left: 5px;
}
.l-header__nav ul.l-header__nav-global .l-header__nav-global__menu--access a::before {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_map_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 8px auto;
  margin-top: 2px;
  width: 8px;
  height: 12px;
  margin-right: 5px;
}
.l-header__nav .l-header__dropdown {
  position: relative;
}
@media (orientation: landscape) and (max-device-width: 1024px) {
  .l-header__nav .l-header__dropdown > a {
    pointer-events: none;
  }
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  display: block;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  max-width: 260px;
  width: 100%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s 0.1s;
  transition: 0.5s 0.1s;
  padding: 1.25rem 1.875rem;
  border-radius: 0.9375rem;
  background-color: var(--white);
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu {
  width: 100%;
  border-bottom: 1px solid var(--back);
  min-width: 200px;
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu:last-child {
  border: none;
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu a {
  display: block;
  width: 100%;
  position: relative;
  padding: 10px 0;
  line-height: 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu a span {
  position: relative;
  padding-left: 15px;
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu a span:before, .l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu a span:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/resource/images/ico_en_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu a span:after {
  background-image: url(/resource/images/ico_en_orange.svg);
  opacity: 0;
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu a:before, .l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu a:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  background-image: url(/resource/images/ico_arrow_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  height: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu a:after {
  background-image: url(/resource/images/ico_arrow_orange.svg);
  opacity: 0;
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu a:hover span:before {
  opacity: 0;
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu a:hover span:after {
  opacity: 1;
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu a:hover:before {
  opacity: 0;
  right: 0px;
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav li.l-header__dropdown-nav__menu a:hover:after {
  right: 0px;
  opacity: 1;
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav.l-header__dropdown-open {
  overflow: visible;
  display: block;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.l-header__nav .l-header__dropdown .l-header__dropdown-nav.l-header__dropdown-open a {
  opacity: 1;
  -webkit-transition: 0.3s 0.2s;
  transition: 0.3s 0.2s;
}
.l-header__nav .l-header__nav-contact {
  width: 100%;
  max-width: 130px;
  height: 100px;
}
.l-header__nav .l-header__nav-contact a {
  height: 100%;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  background-color: var(--white);
  border-radius: 0px 0px 0px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: bold;
}
.l-header__nav .l-header__nav-contact a .l-header__nav-contact-img {
  width: 26px;
  height: 19px;
}
.l-header__nav .l-header__nav-contact a .l-header__nav-contact-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__nav .l-header__nav-contact a:hover {
  color: var(--main);
}

/* ハンバーガー
----------------------------------------------------------------- */
.l-toggle {
  display: block;
  width: 80px;
  height: 80px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  background-color: var(--white);
  border-radius: 0 0 0 20px;
}
@media screen and (max-width: 599px) {
  .l-toggle {
    width: 60px;
    height: 60px;
  }
}
.l-toggle::before {
  content: "MENU";
  text-align: center;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 21.5px;
  margin: 0 auto;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  line-height: 16px;
}
@media screen and (max-width: 599px) {
  .l-toggle::before {
    font-size: 11px;
    top: 13px;
  }
}
.l-toggle span {
  position: absolute;
  display: block;
  height: 2px;
  width: 42px;
  background-color: var(--black);
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
@media screen and (max-width: 599px) {
  .l-toggle span {
    width: 36px;
  }
}
.l-toggle span:nth-child(1) {
  bottom: 34.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .l-toggle span:nth-child(1) {
    bottom: 26px;
  }
}
.l-toggle span:nth-child(2) {
  bottom: 24.5px;
  right: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .l-toggle span:nth-child(2) {
    bottom: 16px;
  }
}

body.is-open {
  overflow: hidden;
}
body.is-open .l-toggle::before {
  content: "CLOSE";
  top: 17.4px;
}
@media screen and (max-width: 599px) {
  body.is-open .l-toggle::before {
    top: 10.5px;
  }
}
body.is-open .l-toggle span {
  width: 28px;
}
@media screen and (max-width: 599px) {
  body.is-open .l-toggle span {
    width: 24px;
  }
}
body.is-open .l-toggle span:nth-child(1) {
  bottom: 30px;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(42deg) translateX(-50%);
          transform: rotate(42deg) translateX(-50%);
}
@media screen and (max-width: 599px) {
  body.is-open .l-toggle span:nth-child(1) {
    bottom: 20px;
  }
}
body.is-open .l-toggle span:nth-child(2) {
  bottom: 30px;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(-42deg) translateX(-50%);
          transform: rotate(-42deg) translateX(-50%);
}
@media screen and (max-width: 599px) {
  body.is-open .l-toggle span:nth-child(2) {
    bottom: 20px;
  }
}

/* ドロワー
----------------------------------------------------------------- */
.l-drawer {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.3s ease, opacity 0.3s ease;
  transition: height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  /* その他の必要なレイアウト */
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: var(--white);
}
.l-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
  height: 100vh;
}

.l-drawer__wrap.is-visible {
  pointer-events: auto;
  opacity: 1;
}

.l-drawer__wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 20px;
  height: calc(100% - 40px);
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
@media screen and (max-width: 820px) {
  .l-drawer__wrap {
    margin: 14px;
    height: calc(100% - 40px);
  }
}
@media screen and (max-width: 599px) {
  .l-drawer__wrap {
    margin: 10px;
    height: calc(100% - 10px);
  }
}

.l-drawer__inner {
  border-radius: 1.25rem;
  background-color: var(--back);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-left: 3.75rem;
  padding-top: 7.5rem;
  margin: auto;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .l-drawer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 5rem;
    padding-left: 20px;
    padding-bottom: 5rem;
    gap: 1.875rem;
  }
}

.l-drawer-nav-main {
  position: relative;
  height: 100%;
  width: 43.25%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 599px) {
  .l-drawer-nav-main {
    width: 100%;
    gap: 2.25rem;
    height: auto;
  }
}

.l-drawer-nav-main__menu,
.l-drawer-nav-main__menu--win,
.l-drawer-nav-main__menu--sm,
.l-drawer-nav-main__menu--orange {
  position: relative;
}
.l-drawer-nav-main__menu > a,
.l-drawer-nav-main__menu--win > a,
.l-drawer-nav-main__menu--sm > a,
.l-drawer-nav-main__menu--orange > a {
  display: block;
  position: relative;
  font-size: 1.4375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  width: calc(100% - 15px);
}
@media screen and (max-width: 599px) {
  .l-drawer-nav-main__menu > a,
  .l-drawer-nav-main__menu--win > a,
  .l-drawer-nav-main__menu--sm > a,
  .l-drawer-nav-main__menu--orange > a {
    font-size: 1.1875rem;
  }
}
.l-drawer-nav-main__menu > a::before,
.l-drawer-nav-main__menu--win > a::before,
.l-drawer-nav-main__menu--sm > a::before,
.l-drawer-nav-main__menu--orange > a::before {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_en_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  margin-top: -7px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .l-drawer-nav-main__menu > a::before,
  .l-drawer-nav-main__menu--win > a::before,
  .l-drawer-nav-main__menu--sm > a::before,
  .l-drawer-nav-main__menu--orange > a::before {
    width: 12px;
    height: 12px;
    margin-top: -6px;
  }
}
.l-drawer-nav-main__menu > a:hover,
.l-drawer-nav-main__menu--win > a:hover,
.l-drawer-nav-main__menu--sm > a:hover,
.l-drawer-nav-main__menu--orange > a:hover {
  color: var(--main);
}

.l-drawer-nav-main__menu--win a:after {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_win_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  margin-top: -7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-drawer-nav-main__menu--win a:hover:after {
  background-image: url(/resource/images/ico_win_green.svg);
}

.l-drawer-nav-main__menu--sm > a {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .l-drawer-nav-main__menu--sm > a {
    font-size: 0.9375rem;
  }
}
.l-drawer-nav-main__menu--sm > a::before {
  width: 12px;
  height: 12px;
  margin-top: -5px;
}
.l-drawer-nav-main__menu--sm:first-child {
  margin-bottom: 15px;
}

.l-drawer-nav-main__menu--orange > a {
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 599px) {
  .l-drawer-nav-main__menu--orange > a {
    font-size: 1rem;
  }
}
.l-drawer-nav-main__menu--orange > a::before {
  width: 13px;
  height: 13px;
  margin-top: -3px;
  background-image: url(/resource/images/ico_en_orange.svg);
}
.l-drawer-nav-main__menu--orange > a::after {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_win_black.svg);
  opacity: 0.8;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 8px;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  margin-top: -3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-drawer-nav-main__menu--orange > a:hover {
  color: var(--sub);
}
.l-drawer-nav-main__menu--orange > a:hover:after {
  background-image: url(/resource/images/ico_win_orange.svg);
}
.l-drawer-nav-main__menu--orange:first-child {
  margin-bottom: 15px;
}

@media screen and (max-width: 599px) {
  .l-drawer-accordion-btn {
    position: absolute;
    display: block;
    cursor: pointer;
    width: 15px;
    height: 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    right: 20px;
    top: 4px;
  }
  .l-drawer-accordion-btn::before, .l-drawer-accordion-btn::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    background-color: var(--black);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .l-drawer-accordion-btn::before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .l-drawer-accordion-btn::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .l-drawer-accordion-btn.close::before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 0;
  }
  .l-drawer-accordion-btn.close::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.l-drawer-accordion {
  width: 100%;
  padding-left: 22px;
}
@media screen and (max-width: 599px) {
  .l-drawer-accordion {
    display: none;
  }
}

.l-drawer-accordion__menu {
  line-height: 1.4;
  margin-top: 1.25rem;
}
@media screen and (max-width: 599px) {
  .l-drawer-accordion__menu {
    margin-top: 1.25rem;
  }
}
.l-drawer-accordion__menu:first-child {
  margin-top: 1.5rem;
}
.l-drawer-accordion__menu a {
  font-size: 1.125rem;
  color: var(--black-800);
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .l-drawer-accordion__menu a {
    font-size: 0.9375rem;
  }
}
.l-drawer-accordion__menu a:hover {
  color: var(--main);
}

.l-drawer-accordion__child {
  padding-left: 8px;
  margin-top: 10px;
}
.l-drawer-accordion__child .l-drawer-accordion__child__menu {
  margin-bottom: 10px;
}
.l-drawer-accordion__child .l-drawer-accordion__child__menu:last-child {
  margin-bottom: 0;
}
.l-drawer-accordion__child .l-drawer-accordion__child__menu a {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
.l-drawer-accordion__child .l-drawer-accordion__child__menu a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-color: var(--main);
  width: 4px;
  height: 4px;
  border-radius: 100px;
  margin-right: 4px;
}

.l-drawer-nav-main__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
}
@media screen and (max-width: 599px) {
  .l-drawer-nav-main__inner {
    gap: 2.5rem;
  }
}

/* ==========================================================================
フッター
========================================================================== */
footer {
  height: calc(100% - 20px);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 820px) {
  footer {
    height: calc(100% - 14px);
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 599px) {
  footer {
    height: calc(100% - 10px);
    margin-bottom: 10px;
  }
}

.l-footer {
  background-color: var(--back);
  border-radius: 1.25rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 820px) {
  .l-footer .l-container--lg {
    padding-left: 4.8%;
    padding-right: 4.8%;
  }
}

/* フッター above
----------------------------------------------------------------- */
.l-footer__above {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 5rem;
}
@media screen and (max-width: 820px) {
  .l-footer__above {
    padding-top: 3.75rem;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__above {
    padding-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.l-footer__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 599px) {
  .l-footer__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.l-footer__logo .l-footer__logo__img {
  height: 60px;
}
@media screen and (max-width: 820px) {
  .l-footer__logo .l-footer__logo__img {
    height: 55px;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__logo .l-footer__logo__img {
    height: 60px;
  }
}
.l-footer__logo .l-footer__logo__name {
  padding-top: 1.25rem;
  line-height: 1.4;
  font-size: 1.1875rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .l-footer__logo .l-footer__logo__name {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 599px) {
  .l-footer__logo .l-footer__logo__name {
    padding-top: 0;
  }
}
.l-footer__logo:hover {
  opacity: 0.8;
}

.l-footer__adress {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 599px) {
  .l-footer__adress {
    text-align: center;
  }
}
.l-footer__adress .l-footer__adress__txt {
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (max-width: 820px) {
  .l-footer__adress .l-footer__adress__txt {
    font-size: 14px;
  }
}
.l-footer__adress .l-footer__adress__map {
  position: relative;
  font-weight: 500;
  line-height: 19px;
  height: 19px;
  font-size: 1rem;
}
@media screen and (max-width: 820px) {
  .l-footer__adress .l-footer__adress__map {
    font-size: 14px;
    line-height: 1.2;
  }
}
.l-footer__adress .l-footer__adress__map .map {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 12px;
  margin-right: 5px;
  margin-top: -4px;
  vertical-align: middle;
}
.l-footer__adress .l-footer__adress__map .map::before, .l-footer__adress .l-footer__adress__map .map::after {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_map_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  position: absolute;
}
@media screen and (max-width: 820px) {
  .l-footer__adress .l-footer__adress__map .map::before, .l-footer__adress .l-footer__adress__map .map::after {
    width: 6px;
    height: 10px;
    margin-top: 1px;
  }
}
.l-footer__adress .l-footer__adress__map .map::after {
  opacity: 0;
  background-image: url(/resource/images/ico_map_green.svg);
}
.l-footer__adress .l-footer__adress__map .win {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  vertical-align: middle;
}
.l-footer__adress .l-footer__adress__map .win::before, .l-footer__adress .l-footer__adress__map .win::after {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_win_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
}
@media screen and (max-width: 820px) {
  .l-footer__adress .l-footer__adress__map .win::before, .l-footer__adress .l-footer__adress__map .win::after {
    width: 10px;
    height: 10px;
  }
}
.l-footer__adress .l-footer__adress__map .win::after {
  opacity: 0;
  background-image: url(/resource/images/ico_win_green.svg);
}
.l-footer__adress .l-footer__adress__map:hover {
  color: var(--main);
}
.l-footer__adress .l-footer__adress__map:hover .win::before {
  opacity: 0;
}
.l-footer__adress .l-footer__adress__map:hover .win::after {
  opacity: 1;
}
.l-footer__adress .l-footer__adress__map:hover .map::before {
  opacity: 0;
}
.l-footer__adress .l-footer__adress__map:hover .map::after {
  opacity: 1;
}

/* メニュー
----------------------------------------------------------------- */
.l-footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5rem;
}
@media screen and (max-width: 599px) {
  .l-footer__nav {
    display: none;
  }
}

.l-footer__nav__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 50.89285%;
}
@media screen and (max-width: 820px) {
  .l-footer__nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
  }
}

.l-footer__nav-wrap {
  width: auto;
}
.l-footer__nav-wrap .l-footer__nav-wrap__ttl:first-child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}

.l-footer__nav-wrap__ttl,
.l-footer__nav-wrap__ttl--win,
.l-footer__nav-wrap__ttl--small,
.l-footer__nav-wrap__ttl--orange {
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.l-footer__nav-wrap__ttl a,
.l-footer__nav-wrap__ttl--win a,
.l-footer__nav-wrap__ttl--small a,
.l-footer__nav-wrap__ttl--orange a {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
}
.l-footer__nav-wrap__ttl a:before,
.l-footer__nav-wrap__ttl--win a:before,
.l-footer__nav-wrap__ttl--small a:before,
.l-footer__nav-wrap__ttl--orange a:before {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_en_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 7px;
  margin-top: 2px;
  width: 12px;
  height: 12px;
}
.l-footer__nav-wrap__ttl a:hover,
.l-footer__nav-wrap__ttl--win a:hover,
.l-footer__nav-wrap__ttl--small a:hover,
.l-footer__nav-wrap__ttl--orange a:hover {
  color: var(--main);
}

.l-footer__nav-wrap__ttl--win {
  margin-bottom: 0;
}
.l-footer__nav-wrap__ttl--win a .win {
  display: inline-block;
  margin-left: 4px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  position: relative;
  vertical-align: middle;
}
.l-footer__nav-wrap__ttl--win a .win:before, .l-footer__nav-wrap__ttl--win a .win:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(/resource/images/ico_win_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.l-footer__nav-wrap__ttl--win a .win:after {
  opacity: 0;
  background-image: url(/resource/images/ico_win_green.svg);
}
.l-footer__nav-wrap__ttl--win a:hover .win:before {
  opacity: 0;
}
.l-footer__nav-wrap__ttl--win a:hover .win:after {
  opacity: 1;
}

.l-footer__nav-wrap__ttl--small {
  line-height: 1.4;
}
.l-footer__nav-wrap__ttl--small a {
  font-size: 14px;
  font-weight: 500;
}
.l-footer__nav-wrap__ttl--small a:before {
  margin-right: 5px;
  width: 8px;
  height: 8px;
}

.l-footer__nav-wrap__ttl--orange {
  line-height: 1.4;
}
.l-footer__nav-wrap__ttl--orange a {
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.l-footer__nav-wrap__ttl--orange a:before {
  background-image: url(/resource/images/ico_en_orange.svg);
  margin-right: 5px;
  width: 9px;
  height: 9px;
}
.l-footer__nav-wrap__ttl--orange a .win {
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative;
  margin-left: 8px;
  margin-top: -3px;
}
.l-footer__nav-wrap__ttl--orange a .win:before, .l-footer__nav-wrap__ttl--orange a .win:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(/resource/images/ico_win_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.8;
}
.l-footer__nav-wrap__ttl--orange a .win:after {
  background-image: url(/resource/images/ico_win_orange.svg);
  opacity: 0;
}
.l-footer__nav-wrap__ttl--orange a:hover {
  color: var(--sub);
}
.l-footer__nav-wrap__ttl--orange a:hover .win:before {
  opacity: 0;
}
.l-footer__nav-wrap__ttl--orange a:hover .win:after {
  opacity: 1;
}

.l-footer__nav-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
.l-footer__nav-inner .l-footer__nav-wrap__ttl {
  margin-bottom: 0;
}
.l-footer__nav-inner .l-footer__nav-wrap__ttl--small,
.l-footer__nav-inner .l-footer__nav-wrap__ttl--orange {
  margin-bottom: 0;
}
.l-footer__nav-inner .l-footer__nav-wrap__ttl--small:first-child,
.l-footer__nav-inner .l-footer__nav-wrap__ttl--orange:first-child {
  margin-bottom: 15px;
}

.l-footer__nav-child-wrap {
  font-size: 14px;
}
@media screen and (max-width: 820px) {
  .l-footer__nav-child-wrap {
    display: none;
  }
}
.l-footer__nav-child-wrap .l-footer__nav-child-wrap__iink {
  margin-bottom: 15px;
  position: relative;
  padding-left: 1.125rem;
  line-height: 1.4;
}
.l-footer__nav-child-wrap .l-footer__nav-child-wrap__iink a {
  color: var(--black-800);
  letter-spacing: 0;
  font-weight: 500;
}
.l-footer__nav-child-wrap .l-footer__nav-child-wrap__iink a:hover {
  color: var(--main);
}

.l-footer__nav-grandchild-wrap {
  margin-top: 8px;
  padding-left: 5px;
}
.l-footer__nav-grandchild-wrap .l-footer__nav-grandchild-wrap__link {
  margin-bottom: 8px;
  padding-left: 6px;
  position: relative;
}
.l-footer__nav-grandchild-wrap .l-footer__nav-grandchild-wrap__link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 9px;
  background-color: var(--main);
  width: 3px;
  height: 3px;
}
.l-footer__nav-grandchild-wrap .l-footer__nav-grandchild-wrap__link:last-child {
  margin-bottom: 0;
}

/* コピーライト
----------------------------------------------------------------- */
.l-footer__copyright {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--black-600);
  margin-top: 6.25rem;
  padding-bottom: 1.8125rem;
}
@media screen and (max-width: 599px) {
  .l-footer__copyright {
    margin-top: 5rem;
    text-align: center;
    padding-bottom: 15px;
  }
}

/* ページトップに戻るボタン
----------------------------------------------------------------- */
a.is-pagetop {
  position: fixed;
  right: 0px;
  bottom: 0px;
  padding: 10px 20px 10px 30px;
  max-width: 160px;
  width: 100%;
  border-radius: 20px 0 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--white);
  z-index: 50;
}
@media screen and (max-width: 820px) {
  a.is-pagetop {
    max-width: 135px;
    padding: 10px 20px 10px 30px;
  }
}
@media screen and (max-width: 599px) {
  a.is-pagetop {
    max-width: 110px;
    padding: 5px 15px 5px 20px;
  }
}
a.is-pagetop span.top {
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
}
a.is-pagetop span.top::before {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_en_orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  margin-top: -2px;
  vertical-align: middle;
}
a.is-pagetop span.arrow {
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 11px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  a.is-pagetop span.arrow {
    right: 36px;
  }
}
@media screen and (max-width: 599px) {
  a.is-pagetop span.arrow {
    right: 20px;
  }
}
a.is-pagetop span.arrow::before, a.is-pagetop span.arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/resource/images/ico_arrow_under_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 11px;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
a.is-pagetop span.arrow::after {
  background-image: url(/resource/images/ico_arrow_under_orange.svg);
  opacity: 0;
}
a.is-pagetop:hover span.arrow {
  -webkit-transform: translateY(calc(-50% - 5px));
          transform: translateY(calc(-50% - 5px));
}
a.is-pagetop:hover span.arrow::before {
  opacity: 0;
}
a.is-pagetop:hover span.arrow::after {
  opacity: 1;
}

a.is-pagetop.is-ajust {
  bottom: 20px;
}
@media screen and (max-width: 820px) {
  a.is-pagetop.is-ajust {
    bottom: 14px;
  }
}
@media screen and (max-width: 599px) {
  a.is-pagetop.is-ajust {
    bottom: 10px;
  }
}

/* ==========================================================================
ページタイトル
=========================================================================*/
.l-page-ttl__wrap {
  width: 100%;
  height: 440px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 820px) {
  .l-page-ttl__wrap {
    height: 334px;
  }
}
@media screen and (max-width: 599px) {
  .l-page-ttl__wrap {
    height: 330px;
  }
}
.l-page-ttl__wrap::before {
  content: "";
  display: block;
  display: inline-block;
  position: absolute;
  top: -300px;
  right: -180px;
  background-image: url(/resource/images/bg_circle_orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 600px;
  height: 600px;
}
@media screen and (max-width: 820px) {
  .l-page-ttl__wrap::before {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
  }
}
@media screen and (max-width: 820px) {
  .l-page-ttl__wrap::before {
    width: 350px;
    height: 350px;
    top: -175px;
    right: -175px;
  }
}

.l-page-ttl__inner {
  margin: 0 20px;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 820px) {
  .l-page-ttl__inner {
    margin: 0 14px;
  }
}
@media screen and (max-width: 599px) {
  .l-page-ttl__inner {
    margin: 0 10px;
  }
}

.l-page-ttl {
  position: absolute;
  bottom: 133px;
  left: 100px;
}
@media screen and (max-width: 820px) {
  .l-page-ttl {
    bottom: 98px;
    left: 38px;
  }
}
@media screen and (max-width: 599px) {
  .l-page-ttl {
    left: 18px;
    bottom: 115px;
  }
}
.l-page-ttl .l-page-ttl__jp {
  color: var(--white);
  font-size: 3.3125rem;
  letter-spacing: 0.025em;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 820px) {
  .l-page-ttl .l-page-ttl__jp {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 599px) {
  .l-page-ttl .l-page-ttl__jp {
    font-size: 2.375rem;
    letter-spacing: 0.01em;
  }
}
.l-page-ttl .l-page-ttl__en {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: bold;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  display: block;
}
@media screen and (max-width: 820px) {
  .l-page-ttl .l-page-ttl__en {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 599px) {
  .l-page-ttl .l-page-ttl__en {
    font-size: 1rem;
  }
}
.l-page-ttl .l-page-ttl__en::before {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_en_orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  margin-top: -2px;
  vertical-align: middle;
}
@media screen and (max-width: 820px) {
  .l-page-ttl .l-page-ttl__en::before {
    width: 13px;
    height: 13px;
  }
}
@media screen and (max-width: 599px) {
  .l-page-ttl .l-page-ttl__en::before {
    width: 12px;
    height: 12px;
  }
}

.l-page-ttl__bg {
  overflow: hidden;
  border-radius: 1.875rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 20px;
  z-index: -1;
  width: 100%;
  height: calc(100% - 20px);
}
@media screen and (max-width: 820px) {
  .l-page-ttl__bg {
    top: 14px;
    border-radius: 20px;
    height: calc(100% - 14px);
  }
}
@media screen and (max-width: 599px) {
  .l-page-ttl__bg {
    top: 10px;
    border-radius: 15px;
    height: calc(100% - 10px);
  }
}
.l-page-ttl__bg img {
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

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

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

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

.l-sec-xxxlg {
  padding: 7.5rem 0;
}
@media screen and (max-width: 820px) {
  .l-sec-xxxlg {
    padding: 6.25rem 0;
  }
}
@media screen and (max-width: 599px) {
  .l-sec-xxxlg {
    padding: 5rem 0;
  }
}

.l-sec-xlg-remove-top {
  padding: 0 0 5rem;
}
@media screen and (max-width: 820px) {
  .l-sec-xlg-remove-top {
    padding: 0 0 5rem;
  }
}
@media screen and (max-width: 599px) {
  .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: 820px) {
  .l-sec-xxlg-remove-top {
    padding: 0 0 5rem;
  }
}
@media screen and (max-width: 599px) {
  .l-sec-xxlg-remove-top {
    padding: 0 0 5rem;
  }
}

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

.l-sec-xxxxlg-remove-top {
  padding: 0 0 8.75rem;
}
@media screen and (max-width: 820px) {
  .l-sec-xxxxlg-remove-top {
    padding: 0 0 5rem;
  }
}
@media screen and (max-width: 599px) {
  .l-sec-xxxxlg-remove-top {
    padding: 0 0 5rem;
  }
}

/* セクションにある英字の配置
----------------------------------------------------------------- */
.l-container__inner,
.l-container__inner--sp-bottom,
.l-container__inner--sp-bottom-lg,
.c-access-container,
.l-container__inner--wide-sp-bottom-lg,
.l-container__inner--wide {
  position: relative;
}
.l-container__inner .l-sec-en-left--back,
.l-container__inner .l-sec-en-right--back,
.l-container__inner .l-sec-en-left--white,
.l-container__inner .l-sec-en-left--white-access,
.l-container__inner .l-sec-en-right--back-access,
.l-container__inner .l-sec-en-right--white,
.l-container__inner--sp-bottom .l-sec-en-left--back,
.l-container__inner--sp-bottom .l-sec-en-right--back,
.l-container__inner--sp-bottom .l-sec-en-left--white,
.l-container__inner--sp-bottom .l-sec-en-left--white-access,
.l-container__inner--sp-bottom .l-sec-en-right--back-access,
.l-container__inner--sp-bottom .l-sec-en-right--white,
.l-container__inner--sp-bottom-lg .l-sec-en-left--back,
.l-container__inner--sp-bottom-lg .l-sec-en-right--back,
.l-container__inner--sp-bottom-lg .l-sec-en-left--white,
.l-container__inner--sp-bottom-lg .l-sec-en-left--white-access,
.l-container__inner--sp-bottom-lg .l-sec-en-right--back-access,
.l-container__inner--sp-bottom-lg .l-sec-en-right--white,
.c-access-container .l-sec-en-left--back,
.c-access-container .l-sec-en-right--back,
.c-access-container .l-sec-en-left--white,
.c-access-container .l-sec-en-left--white-access,
.c-access-container .l-sec-en-right--back-access,
.c-access-container .l-sec-en-right--white,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--back,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white,
.l-container__inner--wide .l-sec-en-left--back,
.l-container__inner--wide .l-sec-en-right--back,
.l-container__inner--wide .l-sec-en-left--white,
.l-container__inner--wide .l-sec-en-left--white-access,
.l-container__inner--wide .l-sec-en-right--back-access,
.l-container__inner--wide .l-sec-en-right--white {
  position: absolute;
  display: block;
  width: 48px;
  height: auto;
  z-index: 2;
  left: calc(228px);
  bottom: 0;
  padding-bottom: 48px;
  display: inline-block;
}
@media screen and (min-width: 1535px) {
  .l-container__inner .l-sec-en-left--back,
  .l-container__inner .l-sec-en-right--back,
  .l-container__inner .l-sec-en-left--white,
  .l-container__inner .l-sec-en-left--white-access,
  .l-container__inner .l-sec-en-right--back-access,
  .l-container__inner .l-sec-en-right--white,
  .l-container__inner--sp-bottom .l-sec-en-left--back,
  .l-container__inner--sp-bottom .l-sec-en-right--back,
  .l-container__inner--sp-bottom .l-sec-en-left--white,
  .l-container__inner--sp-bottom .l-sec-en-left--white-access,
  .l-container__inner--sp-bottom .l-sec-en-right--back-access,
  .l-container__inner--sp-bottom .l-sec-en-right--white,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--back,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white-access,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back-access,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--white,
  .c-access-container .l-sec-en-left--back,
  .c-access-container .l-sec-en-right--back,
  .c-access-container .l-sec-en-left--white,
  .c-access-container .l-sec-en-left--white-access,
  .c-access-container .l-sec-en-right--back-access,
  .c-access-container .l-sec-en-right--white,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--back,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white,
  .l-container__inner--wide .l-sec-en-left--back,
  .l-container__inner--wide .l-sec-en-right--back,
  .l-container__inner--wide .l-sec-en-left--white,
  .l-container__inner--wide .l-sec-en-left--white-access,
  .l-container__inner--wide .l-sec-en-right--back-access,
  .l-container__inner--wide .l-sec-en-right--white {
    left: calc(168px);
  }
}
@media screen and (max-width: 1024px) {
  .l-container__inner .l-sec-en-left--back,
  .l-container__inner .l-sec-en-right--back,
  .l-container__inner .l-sec-en-left--white,
  .l-container__inner .l-sec-en-left--white-access,
  .l-container__inner .l-sec-en-right--back-access,
  .l-container__inner .l-sec-en-right--white,
  .l-container__inner--sp-bottom .l-sec-en-left--back,
  .l-container__inner--sp-bottom .l-sec-en-right--back,
  .l-container__inner--sp-bottom .l-sec-en-left--white,
  .l-container__inner--sp-bottom .l-sec-en-left--white-access,
  .l-container__inner--sp-bottom .l-sec-en-right--back-access,
  .l-container__inner--sp-bottom .l-sec-en-right--white,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--back,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white-access,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back-access,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--white,
  .c-access-container .l-sec-en-left--back,
  .c-access-container .l-sec-en-right--back,
  .c-access-container .l-sec-en-left--white,
  .c-access-container .l-sec-en-left--white-access,
  .c-access-container .l-sec-en-right--back-access,
  .c-access-container .l-sec-en-right--white,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--back,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white,
  .l-container__inner--wide .l-sec-en-left--back,
  .l-container__inner--wide .l-sec-en-right--back,
  .l-container__inner--wide .l-sec-en-left--white,
  .l-container__inner--wide .l-sec-en-left--white-access,
  .l-container__inner--wide .l-sec-en-right--back-access,
  .l-container__inner--wide .l-sec-en-right--white {
    padding-left: 38px;
    padding-bottom: 0;
    left: 0;
    width: auto;
  }
}
.l-container__inner .l-sec-en-left--back::before,
.l-container__inner .l-sec-en-right--back::before,
.l-container__inner .l-sec-en-left--white::before,
.l-container__inner .l-sec-en-left--white-access::before,
.l-container__inner .l-sec-en-right--back-access::before,
.l-container__inner .l-sec-en-right--white::before,
.l-container__inner--sp-bottom .l-sec-en-left--back::before,
.l-container__inner--sp-bottom .l-sec-en-right--back::before,
.l-container__inner--sp-bottom .l-sec-en-left--white::before,
.l-container__inner--sp-bottom .l-sec-en-left--white-access::before,
.l-container__inner--sp-bottom .l-sec-en-right--back-access::before,
.l-container__inner--sp-bottom .l-sec-en-right--white::before,
.l-container__inner--sp-bottom-lg .l-sec-en-left--back::before,
.l-container__inner--sp-bottom-lg .l-sec-en-right--back::before,
.l-container__inner--sp-bottom-lg .l-sec-en-left--white::before,
.l-container__inner--sp-bottom-lg .l-sec-en-left--white-access::before,
.l-container__inner--sp-bottom-lg .l-sec-en-right--back-access::before,
.l-container__inner--sp-bottom-lg .l-sec-en-right--white::before,
.c-access-container .l-sec-en-left--back::before,
.c-access-container .l-sec-en-right--back::before,
.c-access-container .l-sec-en-left--white::before,
.c-access-container .l-sec-en-left--white-access::before,
.c-access-container .l-sec-en-right--back-access::before,
.c-access-container .l-sec-en-right--white::before,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--back::before,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back::before,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white::before,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access::before,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access::before,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white::before,
.l-container__inner--wide .l-sec-en-left--back::before,
.l-container__inner--wide .l-sec-en-right--back::before,
.l-container__inner--wide .l-sec-en-left--white::before,
.l-container__inner--wide .l-sec-en-left--white-access::before,
.l-container__inner--wide .l-sec-en-right--back-access::before,
.l-container__inner--wide .l-sec-en-right--white::before {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--back);
  width: 3px;
  height: 40px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .l-container__inner .l-sec-en-left--back::before,
  .l-container__inner .l-sec-en-right--back::before,
  .l-container__inner .l-sec-en-left--white::before,
  .l-container__inner .l-sec-en-left--white-access::before,
  .l-container__inner .l-sec-en-right--back-access::before,
  .l-container__inner .l-sec-en-right--white::before,
  .l-container__inner--sp-bottom .l-sec-en-left--back::before,
  .l-container__inner--sp-bottom .l-sec-en-right--back::before,
  .l-container__inner--sp-bottom .l-sec-en-left--white::before,
  .l-container__inner--sp-bottom .l-sec-en-left--white-access::before,
  .l-container__inner--sp-bottom .l-sec-en-right--back-access::before,
  .l-container__inner--sp-bottom .l-sec-en-right--white::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--back::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white-access::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back-access::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--white::before,
  .c-access-container .l-sec-en-left--back::before,
  .c-access-container .l-sec-en-right--back::before,
  .c-access-container .l-sec-en-left--white::before,
  .c-access-container .l-sec-en-left--white-access::before,
  .c-access-container .l-sec-en-right--back-access::before,
  .c-access-container .l-sec-en-right--white::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--back::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white::before,
  .l-container__inner--wide .l-sec-en-left--back::before,
  .l-container__inner--wide .l-sec-en-right--back::before,
  .l-container__inner--wide .l-sec-en-left--white::before,
  .l-container__inner--wide .l-sec-en-left--white-access::before,
  .l-container__inner--wide .l-sec-en-right--back-access::before,
  .l-container__inner--wide .l-sec-en-right--white::before {
    width: 30px;
    height: 3px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    bottom: auto;
    left: 0;
  }
}
@media screen and (max-width: 599px) {
  .l-container__inner .l-sec-en-left--back::before,
  .l-container__inner .l-sec-en-right--back::before,
  .l-container__inner .l-sec-en-left--white::before,
  .l-container__inner .l-sec-en-left--white-access::before,
  .l-container__inner .l-sec-en-right--back-access::before,
  .l-container__inner .l-sec-en-right--white::before,
  .l-container__inner--sp-bottom .l-sec-en-left--back::before,
  .l-container__inner--sp-bottom .l-sec-en-right--back::before,
  .l-container__inner--sp-bottom .l-sec-en-left--white::before,
  .l-container__inner--sp-bottom .l-sec-en-left--white-access::before,
  .l-container__inner--sp-bottom .l-sec-en-right--back-access::before,
  .l-container__inner--sp-bottom .l-sec-en-right--white::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--back::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white-access::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back-access::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--white::before,
  .c-access-container .l-sec-en-left--back::before,
  .c-access-container .l-sec-en-right--back::before,
  .c-access-container .l-sec-en-left--white::before,
  .c-access-container .l-sec-en-left--white-access::before,
  .c-access-container .l-sec-en-right--back-access::before,
  .c-access-container .l-sec-en-right--white::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--back::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white::before,
  .l-container__inner--wide .l-sec-en-left--back::before,
  .l-container__inner--wide .l-sec-en-right--back::before,
  .l-container__inner--wide .l-sec-en-left--white::before,
  .l-container__inner--wide .l-sec-en-left--white-access::before,
  .l-container__inner--wide .l-sec-en-right--back-access::before,
  .l-container__inner--wide .l-sec-en-right--white::before {
    top: 20px;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.l-container__inner .l-sec-en-left--back span,
.l-container__inner .l-sec-en-right--back span,
.l-container__inner .l-sec-en-left--white span,
.l-container__inner .l-sec-en-left--white-access span,
.l-container__inner .l-sec-en-right--back-access span,
.l-container__inner .l-sec-en-right--white span,
.l-container__inner--sp-bottom .l-sec-en-left--back span,
.l-container__inner--sp-bottom .l-sec-en-right--back span,
.l-container__inner--sp-bottom .l-sec-en-left--white span,
.l-container__inner--sp-bottom .l-sec-en-left--white-access span,
.l-container__inner--sp-bottom .l-sec-en-right--back-access span,
.l-container__inner--sp-bottom .l-sec-en-right--white span,
.l-container__inner--sp-bottom-lg .l-sec-en-left--back span,
.l-container__inner--sp-bottom-lg .l-sec-en-right--back span,
.l-container__inner--sp-bottom-lg .l-sec-en-left--white span,
.l-container__inner--sp-bottom-lg .l-sec-en-left--white-access span,
.l-container__inner--sp-bottom-lg .l-sec-en-right--back-access span,
.l-container__inner--sp-bottom-lg .l-sec-en-right--white span,
.c-access-container .l-sec-en-left--back span,
.c-access-container .l-sec-en-right--back span,
.c-access-container .l-sec-en-left--white span,
.c-access-container .l-sec-en-left--white-access span,
.c-access-container .l-sec-en-right--back-access span,
.c-access-container .l-sec-en-right--white span,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--back span,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back span,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white span,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access span,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access span,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white span,
.l-container__inner--wide .l-sec-en-left--back span,
.l-container__inner--wide .l-sec-en-right--back span,
.l-container__inner--wide .l-sec-en-left--white span,
.l-container__inner--wide .l-sec-en-left--white-access span,
.l-container__inner--wide .l-sec-en-right--back-access span,
.l-container__inner--wide .l-sec-en-right--white span {
  position: relative;
  left: auto;
  bottom: auto;
  width: auto;
  height: auto;
  -webkit-transform: initial;
          transform: initial;
  font-weight: 600;
  color: var(--back);
  font-size: 3rem;
  font-family: "Montserrat", sans-serif;
  -webkit-writing-mode: sideways-lr;
      -ms-writing-mode: sideways-lr;
          writing-mode: sideways-lr;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1024px) {
  .l-container__inner .l-sec-en-left--back span,
  .l-container__inner .l-sec-en-right--back span,
  .l-container__inner .l-sec-en-left--white span,
  .l-container__inner .l-sec-en-left--white-access span,
  .l-container__inner .l-sec-en-right--back-access span,
  .l-container__inner .l-sec-en-right--white span,
  .l-container__inner--sp-bottom .l-sec-en-left--back span,
  .l-container__inner--sp-bottom .l-sec-en-right--back span,
  .l-container__inner--sp-bottom .l-sec-en-left--white span,
  .l-container__inner--sp-bottom .l-sec-en-left--white-access span,
  .l-container__inner--sp-bottom .l-sec-en-right--back-access span,
  .l-container__inner--sp-bottom .l-sec-en-right--white span,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--back span,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back span,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white span,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white-access span,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back-access span,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--white span,
  .c-access-container .l-sec-en-left--back span,
  .c-access-container .l-sec-en-right--back span,
  .c-access-container .l-sec-en-left--white span,
  .c-access-container .l-sec-en-left--white-access span,
  .c-access-container .l-sec-en-right--back-access span,
  .c-access-container .l-sec-en-right--white span,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--back span,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back span,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white span,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access span,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access span,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white span,
  .l-container__inner--wide .l-sec-en-left--back span,
  .l-container__inner--wide .l-sec-en-right--back span,
  .l-container__inner--wide .l-sec-en-left--white span,
  .l-container__inner--wide .l-sec-en-left--white-access span,
  .l-container__inner--wide .l-sec-en-right--back-access span,
  .l-container__inner--wide .l-sec-en-right--white span {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    font-size: 2.625rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 599px) {
  .l-container__inner .l-sec-en-left--back span,
  .l-container__inner .l-sec-en-right--back span,
  .l-container__inner .l-sec-en-left--white span,
  .l-container__inner .l-sec-en-left--white-access span,
  .l-container__inner .l-sec-en-right--back-access span,
  .l-container__inner .l-sec-en-right--white span,
  .l-container__inner--sp-bottom .l-sec-en-left--back span,
  .l-container__inner--sp-bottom .l-sec-en-right--back span,
  .l-container__inner--sp-bottom .l-sec-en-left--white span,
  .l-container__inner--sp-bottom .l-sec-en-left--white-access span,
  .l-container__inner--sp-bottom .l-sec-en-right--back-access span,
  .l-container__inner--sp-bottom .l-sec-en-right--white span,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--back span,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back span,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white span,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white-access span,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back-access span,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--white span,
  .c-access-container .l-sec-en-left--back span,
  .c-access-container .l-sec-en-right--back span,
  .c-access-container .l-sec-en-left--white span,
  .c-access-container .l-sec-en-left--white-access span,
  .c-access-container .l-sec-en-right--back-access span,
  .c-access-container .l-sec-en-right--white span,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--back span,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back span,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white span,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access span,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access span,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white span,
  .l-container__inner--wide .l-sec-en-left--back span,
  .l-container__inner--wide .l-sec-en-right--back span,
  .l-container__inner--wide .l-sec-en-left--white span,
  .l-container__inner--wide .l-sec-en-left--white-access span,
  .l-container__inner--wide .l-sec-en-right--back-access span,
  .l-container__inner--wide .l-sec-en-right--white span {
    font-size: 2.25rem;
  }
}
.l-container__inner .--u100,
.l-container__inner--sp-bottom .--u100,
.l-container__inner--sp-bottom-lg .--u100,
.c-access-container .--u100,
.l-container__inner--wide-sp-bottom-lg .--u100,
.l-container__inner--wide .--u100 {
  bottom: -100px;
}
@media screen and (max-width: 1024px) {
  .l-container__inner .--u100,
  .l-container__inner--sp-bottom .--u100,
  .l-container__inner--sp-bottom-lg .--u100,
  .c-access-container .--u100,
  .l-container__inner--wide-sp-bottom-lg .--u100,
  .l-container__inner--wide .--u100 {
    bottom: -72px !important;
  }
}
@media screen and (max-width: 599px) {
  .l-container__inner .--u100,
  .l-container__inner--sp-bottom .--u100,
  .l-container__inner--sp-bottom-lg .--u100,
  .c-access-container .--u100,
  .l-container__inner--wide-sp-bottom-lg .--u100,
  .l-container__inner--wide .--u100 {
    bottom: -64px !important;
  }
}
.l-container__inner .--u80,
.l-container__inner--sp-bottom .--u80,
.l-container__inner--sp-bottom-lg .--u80,
.c-access-container .--u80,
.l-container__inner--wide-sp-bottom-lg .--u80,
.l-container__inner--wide .--u80 {
  bottom: -80px;
}
@media screen and (max-width: 1024px) {
  .l-container__inner .--u80,
  .l-container__inner--sp-bottom .--u80,
  .l-container__inner--sp-bottom-lg .--u80,
  .c-access-container .--u80,
  .l-container__inner--wide-sp-bottom-lg .--u80,
  .l-container__inner--wide .--u80 {
    bottom: -64px !important;
  }
}
@media screen and (max-width: 599px) {
  .l-container__inner .--u80,
  .l-container__inner--sp-bottom .--u80,
  .l-container__inner--sp-bottom-lg .--u80,
  .c-access-container .--u80,
  .l-container__inner--wide-sp-bottom-lg .--u80,
  .l-container__inner--wide .--u80 {
    bottom: -54px !important;
  }
}
.l-container__inner .l-sec-en-left--white-access::before,
.l-container__inner .l-sec-en-left--white::before,
.l-container__inner .l-sec-en-right--white::before,
.l-container__inner--sp-bottom .l-sec-en-left--white-access::before,
.l-container__inner--sp-bottom .l-sec-en-left--white::before,
.l-container__inner--sp-bottom .l-sec-en-right--white::before,
.l-container__inner--sp-bottom-lg .l-sec-en-left--white-access::before,
.l-container__inner--sp-bottom-lg .l-sec-en-left--white::before,
.l-container__inner--sp-bottom-lg .l-sec-en-right--white::before,
.c-access-container .l-sec-en-left--white-access::before,
.c-access-container .l-sec-en-left--white::before,
.c-access-container .l-sec-en-right--white::before,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access::before,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white::before,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white::before,
.l-container__inner--wide .l-sec-en-left--white-access::before,
.l-container__inner--wide .l-sec-en-left--white::before,
.l-container__inner--wide .l-sec-en-right--white::before {
  background-color: var(--white);
}
.l-container__inner .l-sec-en-left--white-access span,
.l-container__inner .l-sec-en-left--white span,
.l-container__inner .l-sec-en-right--white span,
.l-container__inner--sp-bottom .l-sec-en-left--white-access span,
.l-container__inner--sp-bottom .l-sec-en-left--white span,
.l-container__inner--sp-bottom .l-sec-en-right--white span,
.l-container__inner--sp-bottom-lg .l-sec-en-left--white-access span,
.l-container__inner--sp-bottom-lg .l-sec-en-left--white span,
.l-container__inner--sp-bottom-lg .l-sec-en-right--white span,
.c-access-container .l-sec-en-left--white-access span,
.c-access-container .l-sec-en-left--white span,
.c-access-container .l-sec-en-right--white span,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access span,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white span,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white span,
.l-container__inner--wide .l-sec-en-left--white-access span,
.l-container__inner--wide .l-sec-en-left--white span,
.l-container__inner--wide .l-sec-en-right--white span {
  color: var(--white);
}
.l-container__inner .l-sec-en-right--back-access,
.l-container__inner .l-sec-en-right--back,
.l-container__inner .l-sec-en-right--white,
.l-container__inner--sp-bottom .l-sec-en-right--back-access,
.l-container__inner--sp-bottom .l-sec-en-right--back,
.l-container__inner--sp-bottom .l-sec-en-right--white,
.l-container__inner--sp-bottom-lg .l-sec-en-right--back-access,
.l-container__inner--sp-bottom-lg .l-sec-en-right--back,
.l-container__inner--sp-bottom-lg .l-sec-en-right--white,
.c-access-container .l-sec-en-right--back-access,
.c-access-container .l-sec-en-right--back,
.c-access-container .l-sec-en-right--white,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white,
.l-container__inner--wide .l-sec-en-right--back-access,
.l-container__inner--wide .l-sec-en-right--back,
.l-container__inner--wide .l-sec-en-right--white {
  left: auto;
  right: calc(0.7547169811%);
  text-align: right;
}
@media screen and (min-width: 1535px) {
  .l-container__inner .l-sec-en-right--back-access,
  .l-container__inner .l-sec-en-right--back,
  .l-container__inner .l-sec-en-right--white,
  .l-container__inner--sp-bottom .l-sec-en-right--back-access,
  .l-container__inner--sp-bottom .l-sec-en-right--back,
  .l-container__inner--sp-bottom .l-sec-en-right--white,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back-access,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--white,
  .c-access-container .l-sec-en-right--back-access,
  .c-access-container .l-sec-en-right--back,
  .c-access-container .l-sec-en-right--white,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white,
  .l-container__inner--wide .l-sec-en-right--back-access,
  .l-container__inner--wide .l-sec-en-right--back,
  .l-container__inner--wide .l-sec-en-right--white {
    right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .l-container__inner .l-sec-en-right--back-access,
  .l-container__inner .l-sec-en-right--back,
  .l-container__inner .l-sec-en-right--white,
  .l-container__inner--sp-bottom .l-sec-en-right--back-access,
  .l-container__inner--sp-bottom .l-sec-en-right--back,
  .l-container__inner--sp-bottom .l-sec-en-right--white,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back-access,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--white,
  .c-access-container .l-sec-en-right--back-access,
  .c-access-container .l-sec-en-right--back,
  .c-access-container .l-sec-en-right--white,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white,
  .l-container__inner--wide .l-sec-en-right--back-access,
  .l-container__inner--wide .l-sec-en-right--back,
  .l-container__inner--wide .l-sec-en-right--white {
    padding-left: 0;
    padding-right: 38px;
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .l-container__inner .l-sec-en-right--back-access::before,
  .l-container__inner .l-sec-en-right--back::before,
  .l-container__inner .l-sec-en-right--white::before,
  .l-container__inner--sp-bottom .l-sec-en-right--back-access::before,
  .l-container__inner--sp-bottom .l-sec-en-right--back::before,
  .l-container__inner--sp-bottom .l-sec-en-right--white::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back-access::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--white::before,
  .c-access-container .l-sec-en-right--back-access::before,
  .c-access-container .l-sec-en-right--back::before,
  .c-access-container .l-sec-en-right--white::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white::before,
  .l-container__inner--wide .l-sec-en-right--back-access::before,
  .l-container__inner--wide .l-sec-en-right--back::before,
  .l-container__inner--wide .l-sec-en-right--white::before {
    left: auto;
    right: 0;
  }
}
.l-container__inner .l-sec-en-left--white-access,
.l-container__inner--sp-bottom .l-sec-en-left--white-access,
.l-container__inner--sp-bottom-lg .l-sec-en-left--white-access,
.c-access-container .l-sec-en-left--white-access,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access,
.l-container__inner--wide .l-sec-en-left--white-access {
  bottom: -80px;
}
@media screen and (max-width: 1024px) {
  .l-container__inner .l-sec-en-left--white-access,
  .l-container__inner--sp-bottom .l-sec-en-left--white-access,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white-access,
  .c-access-container .l-sec-en-left--white-access,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access,
  .l-container__inner--wide .l-sec-en-left--white-access {
    bottom: -64px;
  }
}
@media screen and (max-width: 599px) {
  .l-container__inner .l-sec-en-left--white-access,
  .l-container__inner--sp-bottom .l-sec-en-left--white-access,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white-access,
  .c-access-container .l-sec-en-left--white-access,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access,
  .l-container__inner--wide .l-sec-en-left--white-access {
    bottom: -80px;
  }
}
@media screen and (max-width: 599px) {
  .l-container__inner .l-sec-en-left--white-access,
  .l-container__inner--sp-bottom .l-sec-en-left--white-access,
  .l-container__inner--sp-bottom-lg .l-sec-en-left--white-access,
  .c-access-container .l-sec-en-left--white-access,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white-access,
  .l-container__inner--wide .l-sec-en-left--white-access {
    bottom: 19px;
  }
}
.l-container__inner .l-sec-en-right--back-access,
.l-container__inner--sp-bottom .l-sec-en-right--back-access,
.l-container__inner--sp-bottom-lg .l-sec-en-right--back-access,
.c-access-container .l-sec-en-right--back-access,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access,
.l-container__inner--wide .l-sec-en-right--back-access {
  bottom: -80px;
}
@media screen and (max-width: 1024px) {
  .l-container__inner .l-sec-en-right--back-access,
  .l-container__inner--sp-bottom .l-sec-en-right--back-access,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back-access,
  .c-access-container .l-sec-en-right--back-access,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access,
  .l-container__inner--wide .l-sec-en-right--back-access {
    bottom: -64px;
  }
}
@media screen and (max-width: 599px) {
  .l-container__inner .l-sec-en-right--back-access,
  .l-container__inner--sp-bottom .l-sec-en-right--back-access,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back-access,
  .c-access-container .l-sec-en-right--back-access,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access,
  .l-container__inner--wide .l-sec-en-right--back-access {
    bottom: 19px;
  }
}
@media screen and (max-width: 1024px) {
  .l-container__inner .l-sec-en-right--back-access::before,
  .l-container__inner--sp-bottom .l-sec-en-right--back-access::before,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back-access::before,
  .c-access-container .l-sec-en-right--back-access::before,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access::before,
  .l-container__inner--wide .l-sec-en-right--back-access::before {
    background-color: var(--white);
  }
}
@media screen and (max-width: 1024px) {
  .l-container__inner .l-sec-en-right--back-access span,
  .l-container__inner--sp-bottom .l-sec-en-right--back-access span,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--back-access span,
  .c-access-container .l-sec-en-right--back-access span,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--back-access span,
  .l-container__inner--wide .l-sec-en-right--back-access span {
    color: var(--white);
  }
}
.l-container__inner .l-sec-en-right--lg,
.l-container__inner--sp-bottom .l-sec-en-right--lg,
.l-container__inner--sp-bottom-lg .l-sec-en-right--lg,
.c-access-container .l-sec-en-right--lg,
.l-container__inner--wide-sp-bottom-lg .l-sec-en-right--lg,
.l-container__inner--wide .l-sec-en-right--lg {
  position: absolute;
  height: auto;
  z-index: 2;
  right: -20px;
  bottom: 0;
  width: 76px;
}
@media screen and (max-width: 1024px) {
  .l-container__inner .l-sec-en-right--lg,
  .l-container__inner--sp-bottom .l-sec-en-right--lg,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--lg,
  .c-access-container .l-sec-en-right--lg,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--lg,
  .l-container__inner--wide .l-sec-en-right--lg {
    -webkit-transform: rotate(-90deg) translate(100%, 0) scale(1, 1);
            transform: rotate(-90deg) translate(100%, 0) scale(1, 1);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    right: 0;
    bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .l-container__inner .l-sec-en-right--lg,
  .l-container__inner--sp-bottom .l-sec-en-right--lg,
  .l-container__inner--sp-bottom-lg .l-sec-en-right--lg,
  .c-access-container .l-sec-en-right--lg,
  .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--lg,
  .l-container__inner--wide .l-sec-en-right--lg {
    width: 50px;
  }
}

.bg-back--radi,
.bg-back--radi--lg {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .bg-back--radi .l-container__inner--sp-bottom,
  .bg-back--radi .l-container__inner--sp-bottom-lg,
  .bg-back--radi .l-container__inner,
  .bg-back--radi .l-container__inner--wide-sp-bottom-lg,
  .bg-back--radi .l-container__inner--wide,
  .bg-back--radi--lg .l-container__inner--sp-bottom,
  .bg-back--radi--lg .l-container__inner--sp-bottom-lg,
  .bg-back--radi--lg .l-container__inner,
  .bg-back--radi--lg .l-container__inner--wide-sp-bottom-lg,
  .bg-back--radi--lg .l-container__inner--wide {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .bg-back--radi .l-container__inner--sp-bottom .l-sec-en-left--white,
  .bg-back--radi .l-container__inner--sp-bottom .l-sec-en-right--white,
  .bg-back--radi .l-container__inner--sp-bottom-lg .l-sec-en-left--white,
  .bg-back--radi .l-container__inner--sp-bottom-lg .l-sec-en-right--white,
  .bg-back--radi .l-container__inner .l-sec-en-left--white,
  .bg-back--radi .l-container__inner .l-sec-en-right--white,
  .bg-back--radi .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white,
  .bg-back--radi .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white,
  .bg-back--radi .l-container__inner--wide .l-sec-en-left--white,
  .bg-back--radi .l-container__inner--wide .l-sec-en-right--white,
  .bg-back--radi--lg .l-container__inner--sp-bottom .l-sec-en-left--white,
  .bg-back--radi--lg .l-container__inner--sp-bottom .l-sec-en-right--white,
  .bg-back--radi--lg .l-container__inner--sp-bottom-lg .l-sec-en-left--white,
  .bg-back--radi--lg .l-container__inner--sp-bottom-lg .l-sec-en-right--white,
  .bg-back--radi--lg .l-container__inner .l-sec-en-left--white,
  .bg-back--radi--lg .l-container__inner .l-sec-en-right--white,
  .bg-back--radi--lg .l-container__inner--wide-sp-bottom-lg .l-sec-en-left--white,
  .bg-back--radi--lg .l-container__inner--wide-sp-bottom-lg .l-sec-en-right--white,
  .bg-back--radi--lg .l-container__inner--wide .l-sec-en-left--white,
  .bg-back--radi--lg .l-container__inner--wide .l-sec-en-right--white {
    bottom: -64px;
  }
}

@media screen and (max-width: 1024px) {
  .l-container__inner--sp-bottom,
  .l-container__inner--wide {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 1024px) {
  .l-container__inner--wide-sp-bottom-lg,
  .l-container__inner--sp-bottom-lg {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .l-container__inner--wide-sp-bottom-lg,
  .l-container__inner--sp-bottom-lg {
    padding-bottom: 100px;
  }
}

/* ==========================================================================
コンテナーボックス
=========================================================================*/
/* 基本のコンテナ
----------------------------------------------------------------- */
.l-container--sm,
.l-container,
.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: 1024px) {
  .l-container--sm,
  .l-container,
  .l-container--lg {
    padding-left: 6%;
    padding-right: 6%;
  }
}
@media screen and (max-width: 599px) {
  .l-container--sm,
  .l-container,
  .l-container--lg {
    padding-left: 5%;
    padding-right: 5%;
  }
}

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

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

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

/* 左にサイドnavがあるコンテンツの大枠レイアウト
----------------------------------------------------------------- */
.l-container__wrap,
.l-container__wrap--post {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 7.5rem;
  z-index: 1;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 1024px) {
  .l-container__wrap,
  .l-container__wrap--post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0;
  }
}
@media screen and (max-width: 820px) {
  .l-container__wrap,
  .l-container__wrap--post {
    margin-bottom: 6.25rem;
  }
}
@media screen and (max-width: 599px) {
  .l-container__wrap,
  .l-container__wrap--post {
    margin-bottom: 5rem;
  }
}

.l-container__nav,
.l-container__nav--post {
  z-index: 10;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  max-width: 300px;
  width: 100%;
  margin-left: 20px;
  padding-top: 40px;
  margin-top: -40px;
}
@media screen and (max-width: 1024px) {
  .l-container__nav,
  .l-container__nav--post {
    margin: auto;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    max-width: initial;
    position: relative;
    top: auto;
  }
}
@media screen and (max-width: 820px) {
  .l-container__nav,
  .l-container__nav--post {
    margin-left: 0;
    padding-left: 6%;
    padding-right: 6%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 599px) {
  .l-container__nav,
  .l-container__nav--post {
    padding-left: 7.4%;
    padding-right: 7.4%;
  }
}

.l-container__cont,
.l-container__cont--post {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: -300px;
  margin-right: 20px;
}
@media screen and (max-width: 1200px) {
  .l-container__cont,
  .l-container__cont--post {
    margin-left: calc(-1 * min(300px, 25vw));
  }
}
@media screen and (max-width: 1024px) {
  .l-container__cont,
  .l-container__cont--post {
    margin-right: 14px;
    margin-left: 14px;
  }
}
@media screen and (max-width: 599px) {
  .l-container__cont,
  .l-container__cont--post {
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
  }
}

.l-container__inner,
.l-container__inner--sp-bottom,
.l-container__inner--sp-bottom-lg,
.l-container__inner--tech {
  padding-right: 6%;
  padding-left: 300px;
  max-width: 980px;
  margin-right: 0;
  margin-left: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 1536px) {
  .l-container__inner,
  .l-container__inner--sp-bottom,
  .l-container__inner--sp-bottom-lg,
  .l-container__inner--tech {
    padding-left: 240px;
    padding-right: 80px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 1200px) {
  .l-container__inner,
  .l-container__inner--sp-bottom,
  .l-container__inner--sp-bottom-lg,
  .l-container__inner--tech {
    padding-left: calc(1 * min(300px, 25vw));
    max-width: 72.15vw;
  }
}
@media screen and (max-width: 1024px) {
  .l-container__inner,
  .l-container__inner--sp-bottom,
  .l-container__inner--sp-bottom-lg,
  .l-container__inner--tech {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    max-width: 980px;
    padding-left: 4.8%;
    padding-right: 4.8%;
  }
}
@media screen and (max-width: 599px) {
  .l-container__inner,
  .l-container__inner--sp-bottom,
  .l-container__inner--sp-bottom-lg,
  .l-container__inner--tech {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.l-container__inner--wide-sp-bottom-lg,
.l-container__inner--wide {
  max-width: 1060px;
  padding-left: 300px;
  margin-right: 0;
  margin-left: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 1536px) {
  .l-container__inner--wide-sp-bottom-lg,
  .l-container__inner--wide {
    margin-right: auto;
    margin-left: auto;
    padding-left: 240px;
    padding-right: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .l-container__inner--wide-sp-bottom-lg,
  .l-container__inner--wide {
    padding-left: 4.8%;
    padding-right: 4.8%;
  }
}

@media screen and (max-width: 1024px) {
  .l-container__wrap--post {
    padding-top: 6.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 820px) {
  .l-container__wrap--post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 3.75rem;
  }
}
.l-container__wrap--post .l-container__nav--post {
  min-width: 300px;
}
@media screen and (max-width: 1024px) {
  .l-container__wrap--post .l-container__nav--post {
    z-index: 10;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    max-width: initial;
    min-width: 210px;
    width: initial;
    margin-left: 20px;
    padding-top: 120px;
    margin-top: -120px;
  }
}
@media screen and (max-width: 820px) {
  .l-container__wrap--post .l-container__nav--post {
    min-width: initial;
    width: 100%;
    margin-top: 5rem;
    padding: 0;
  }
}
@media screen and (max-width: 599px) {
  .l-container__wrap--post .l-container__nav--post {
    position: relative;
    max-width: initial;
    margin: auto;
    top: auto;
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-container__wrap--post .l-container__cont--post {
    margin-left: auto;
  }
}
@media screen and (max-width: 820px) {
  .l-container__wrap--post .l-container__cont--post {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .l-container__wrap--post .l-container__cont--post {
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  .l-container__wrap--post .l-container__cont--post .l-container__inner {
    padding-bottom: 0;
  }
}
.l-container__wrap__bg {
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-container__wrap__bg img.bg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: -10;
}

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

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

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

.c-flex--circle-img {
  gap: 3.125rem;
}
@media screen and (max-width: 599px) {
  .c-flex--circle-img {
    gap: 1.875rem;
  }
}
.c-flex--circle-img .c-flex-circle {
  width: 200px;
  overflow: hidden;
  border-radius: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 599px) {
  .c-flex--circle-img .c-flex-circle {
    margin: 0 auto;
  }
}
.c-flex--circle-img .c-flex-circle img {
  width: 100%;
  display: block;
}

/* FlexBox サイズごと
----------------------------------------------------------------- */
.c-flex--xsm,
.c-flex--sm,
.c-flex--md-sm,
.c-flex--md,
.c-flex--lg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.c-flex--xsm {
  gap: 10px 10px;
}
.c-flex--xsm .c-flex-3clm {
  width: calc((100% - 20px) / 3);
}
.c-flex--xsm .c-flex-2clm {
  width: calc((100% - 10px) / 2);
}
@media screen and (max-width: 820px) {
  .c-flex--xsm .c-flex-5clm-sp {
    width: calc((100% - 40px) / 5);
  }
}
@media screen and (max-width: 599px) {
  .c-flex--xsm .c-flex-3clm,
  .c-flex--xsm .c-flex-2clm {
    width: 100%;
  }
}

.c-flex--sm {
  gap: 3.75rem 1.25rem;
}
.c-flex--sm .c-flex-5clm,
.c-flex--sm .c-flex-5clm-sp {
  width: calc((100% - 80px) / 5);
}
.c-flex--sm .c-flex-4clm {
  width: calc((100% - 60px) / 4);
}
.c-flex--sm .c-flex-3clm {
  width: calc((100% - 40px) / 3);
}
.c-flex--sm .c-flex-2clm {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 820px) {
  .c-flex--sm .c-flex-5clm-sp {
    width: calc((100% - 40px) / 5);
  }
}
@media screen and (max-width: 599px) {
  .c-flex--sm .c-flex-5clm,
  .c-flex--sm .c-flex-4clm,
  .c-flex--sm .c-flex-3clm,
  .c-flex--sm .c-flex-2clm {
    width: 100%;
  }
  .c-flex--sm .c-flex-5clm-sp {
    width: calc((100% - 20px) / 5);
  }
}

.c-flex--md-sm {
  gap: 2.5rem 1.875rem;
}
.c-flex--md-sm .c-flex-2clm {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 599px) {
  .c-flex--md-sm .c-flex-2clm {
    width: 100%;
  }
}

.c-flex--md {
  gap: 3.75rem 2.5rem;
}
@media screen and (max-width: 599px) {
  .c-flex--md {
    gap: 1.875rem;
  }
}
.c-flex--md .c-flex-3clm {
  width: calc((100% - 80px) / 3);
}
.c-flex--md .c-flex-2clm {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 599px) {
  .c-flex--md .c-flex-3clm,
  .c-flex--md .c-flex-2clm {
    width: 100%;
  }
}

.c-flex--lg {
  gap: 3.75rem 3.75rem;
}
.c-flex--lg .c-flex-3clm {
  width: calc((100% - 120px) / 3);
}
.c-flex--lg .c-flex-2clm {
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 599px) {
  .c-flex--lg .c-flex-3clm,
  .c-flex--lg .c-flex-2clm {
    width: 100%;
  }
}

/* 画像が端についている類のflexを使ったレイアウト
----------------------------------------------------------------- */
.c-flex-img__wrap,
.c-flex-img__wrap--space-top,
.c-flex-img__wrap--re,
.c-flex-img__wrap--busi,
.c-flex-img__wrap--busi-re,
.c-flex-img__wrap--effo,
.c-flex-img__wrap--effo-re,
.c-flex-img__wrap--white {
  position: relative;
}
.c-flex-img__wrap .c-flex-img__inner,
.c-flex-img__wrap--space-top .c-flex-img__inner,
.c-flex-img__wrap--re .c-flex-img__inner,
.c-flex-img__wrap--busi .c-flex-img__inner,
.c-flex-img__wrap--busi-re .c-flex-img__inner,
.c-flex-img__wrap--effo .c-flex-img__inner,
.c-flex-img__wrap--effo-re .c-flex-img__inner,
.c-flex-img__wrap--white .c-flex-img__inner {
  max-width: 900px;
  width: 100%;
}
.c-flex-img__wrap .c-flex-img,
.c-flex-img__wrap--space-top .c-flex-img,
.c-flex-img__wrap--re .c-flex-img,
.c-flex-img__wrap--busi .c-flex-img,
.c-flex-img__wrap--busi-re .c-flex-img,
.c-flex-img__wrap--effo .c-flex-img,
.c-flex-img__wrap--effo-re .c-flex-img,
.c-flex-img__wrap--white .c-flex-img {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap .c-flex-img,
  .c-flex-img__wrap--space-top .c-flex-img,
  .c-flex-img__wrap--re .c-flex-img,
  .c-flex-img__wrap--busi .c-flex-img,
  .c-flex-img__wrap--busi-re .c-flex-img,
  .c-flex-img__wrap--effo .c-flex-img,
  .c-flex-img__wrap--effo-re .c-flex-img,
  .c-flex-img__wrap--white .c-flex-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-flex-img__wrap .c-flex-img .c-flex-img__2clm--wide,
.c-flex-img__wrap--space-top .c-flex-img .c-flex-img__2clm--wide,
.c-flex-img__wrap--re .c-flex-img .c-flex-img__2clm--wide,
.c-flex-img__wrap--busi .c-flex-img .c-flex-img__2clm--wide,
.c-flex-img__wrap--busi-re .c-flex-img .c-flex-img__2clm--wide,
.c-flex-img__wrap--effo .c-flex-img .c-flex-img__2clm--wide,
.c-flex-img__wrap--effo-re .c-flex-img .c-flex-img__2clm--wide,
.c-flex-img__wrap--white .c-flex-img .c-flex-img__2clm--wide {
  width: calc(44.3396226415%);
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap .c-flex-img .c-flex-img__2clm--wide,
  .c-flex-img__wrap--space-top .c-flex-img .c-flex-img__2clm--wide,
  .c-flex-img__wrap--re .c-flex-img .c-flex-img__2clm--wide,
  .c-flex-img__wrap--busi .c-flex-img .c-flex-img__2clm--wide,
  .c-flex-img__wrap--busi-re .c-flex-img .c-flex-img__2clm--wide,
  .c-flex-img__wrap--effo .c-flex-img .c-flex-img__2clm--wide,
  .c-flex-img__wrap--effo-re .c-flex-img .c-flex-img__2clm--wide,
  .c-flex-img__wrap--white .c-flex-img .c-flex-img__2clm--wide {
    width: 100%;
  }
}
.c-flex-img__wrap .c-flex-img .c-flex-img__2clm,
.c-flex-img__wrap--space-top .c-flex-img .c-flex-img__2clm,
.c-flex-img__wrap--re .c-flex-img .c-flex-img__2clm,
.c-flex-img__wrap--busi .c-flex-img .c-flex-img__2clm,
.c-flex-img__wrap--busi-re .c-flex-img .c-flex-img__2clm,
.c-flex-img__wrap--effo .c-flex-img .c-flex-img__2clm,
.c-flex-img__wrap--effo-re .c-flex-img .c-flex-img__2clm,
.c-flex-img__wrap--white .c-flex-img .c-flex-img__2clm {
  width: calc(47.9591836735%);
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap .c-flex-img .c-flex-img__2clm,
  .c-flex-img__wrap--space-top .c-flex-img .c-flex-img__2clm,
  .c-flex-img__wrap--re .c-flex-img .c-flex-img__2clm,
  .c-flex-img__wrap--busi .c-flex-img .c-flex-img__2clm,
  .c-flex-img__wrap--busi-re .c-flex-img .c-flex-img__2clm,
  .c-flex-img__wrap--effo .c-flex-img .c-flex-img__2clm,
  .c-flex-img__wrap--effo-re .c-flex-img .c-flex-img__2clm,
  .c-flex-img__wrap--white .c-flex-img .c-flex-img__2clm {
    width: 100%;
  }
}
.c-flex-img__wrap .c-flex-img .c-flex-img__2clm--sm,
.c-flex-img__wrap--space-top .c-flex-img .c-flex-img__2clm--sm,
.c-flex-img__wrap--re .c-flex-img .c-flex-img__2clm--sm,
.c-flex-img__wrap--busi .c-flex-img .c-flex-img__2clm--sm,
.c-flex-img__wrap--busi-re .c-flex-img .c-flex-img__2clm--sm,
.c-flex-img__wrap--effo .c-flex-img .c-flex-img__2clm--sm,
.c-flex-img__wrap--effo-re .c-flex-img .c-flex-img__2clm--sm,
.c-flex-img__wrap--white .c-flex-img .c-flex-img__2clm--sm {
  width: calc(47.7777777778%);
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap .c-flex-img .c-flex-img__2clm--sm,
  .c-flex-img__wrap--space-top .c-flex-img .c-flex-img__2clm--sm,
  .c-flex-img__wrap--re .c-flex-img .c-flex-img__2clm--sm,
  .c-flex-img__wrap--busi .c-flex-img .c-flex-img__2clm--sm,
  .c-flex-img__wrap--busi-re .c-flex-img .c-flex-img__2clm--sm,
  .c-flex-img__wrap--effo .c-flex-img .c-flex-img__2clm--sm,
  .c-flex-img__wrap--effo-re .c-flex-img .c-flex-img__2clm--sm,
  .c-flex-img__wrap--white .c-flex-img .c-flex-img__2clm--sm {
    width: 100%;
  }
}
.c-flex-img__wrap .c-flex-img__2clm-img,
.c-flex-img__wrap .c-flex-img__2clm-img--md,
.c-flex-img__wrap .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--space-top .c-flex-img__2clm-img,
.c-flex-img__wrap--space-top .c-flex-img__2clm-img--md,
.c-flex-img__wrap--space-top .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--re .c-flex-img__2clm-img,
.c-flex-img__wrap--re .c-flex-img__2clm-img--md,
.c-flex-img__wrap--re .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--busi .c-flex-img__2clm-img,
.c-flex-img__wrap--busi .c-flex-img__2clm-img--md,
.c-flex-img__wrap--busi .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--busi-re .c-flex-img__2clm-img,
.c-flex-img__wrap--busi-re .c-flex-img__2clm-img--md,
.c-flex-img__wrap--busi-re .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--effo .c-flex-img__2clm-img,
.c-flex-img__wrap--effo .c-flex-img__2clm-img--md,
.c-flex-img__wrap--effo .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--effo-re .c-flex-img__2clm-img,
.c-flex-img__wrap--effo-re .c-flex-img__2clm-img--md,
.c-flex-img__wrap--effo-re .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--white .c-flex-img__2clm-img,
.c-flex-img__wrap--white .c-flex-img__2clm-img--md,
.c-flex-img__wrap--white .c-flex-img__2clm-img--sm {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(51.8867924528%);
  z-index: 3;
  border-radius: 1.25rem;
  overflow: hidden;
}
.c-flex-img__wrap .c-flex-img__2clm-img img,
.c-flex-img__wrap .c-flex-img__2clm-img--md img,
.c-flex-img__wrap .c-flex-img__2clm-img--sm img,
.c-flex-img__wrap--space-top .c-flex-img__2clm-img img,
.c-flex-img__wrap--space-top .c-flex-img__2clm-img--md img,
.c-flex-img__wrap--space-top .c-flex-img__2clm-img--sm img,
.c-flex-img__wrap--re .c-flex-img__2clm-img img,
.c-flex-img__wrap--re .c-flex-img__2clm-img--md img,
.c-flex-img__wrap--re .c-flex-img__2clm-img--sm img,
.c-flex-img__wrap--busi .c-flex-img__2clm-img img,
.c-flex-img__wrap--busi .c-flex-img__2clm-img--md img,
.c-flex-img__wrap--busi .c-flex-img__2clm-img--sm img,
.c-flex-img__wrap--busi-re .c-flex-img__2clm-img img,
.c-flex-img__wrap--busi-re .c-flex-img__2clm-img--md img,
.c-flex-img__wrap--busi-re .c-flex-img__2clm-img--sm img,
.c-flex-img__wrap--effo .c-flex-img__2clm-img img,
.c-flex-img__wrap--effo .c-flex-img__2clm-img--md img,
.c-flex-img__wrap--effo .c-flex-img__2clm-img--sm img,
.c-flex-img__wrap--effo-re .c-flex-img__2clm-img img,
.c-flex-img__wrap--effo-re .c-flex-img__2clm-img--md img,
.c-flex-img__wrap--effo-re .c-flex-img__2clm-img--sm img,
.c-flex-img__wrap--white .c-flex-img__2clm-img img,
.c-flex-img__wrap--white .c-flex-img__2clm-img--md img,
.c-flex-img__wrap--white .c-flex-img__2clm-img--sm img {
  width: 100%;
}
@media screen and (min-width: 1401px) {
  .c-flex-img__wrap .c-flex-img__2clm-img,
  .c-flex-img__wrap .c-flex-img__2clm-img--md,
  .c-flex-img__wrap .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--space-top .c-flex-img__2clm-img,
  .c-flex-img__wrap--space-top .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--space-top .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--re .c-flex-img__2clm-img,
  .c-flex-img__wrap--re .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--busi .c-flex-img__2clm-img,
  .c-flex-img__wrap--busi .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--busi .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--busi-re .c-flex-img__2clm-img,
  .c-flex-img__wrap--busi-re .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--busi-re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--effo .c-flex-img__2clm-img,
  .c-flex-img__wrap--effo .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--effo .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--effo-re .c-flex-img__2clm-img,
  .c-flex-img__wrap--effo-re .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--effo-re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--white .c-flex-img__2clm-img,
  .c-flex-img__wrap--white .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--white .c-flex-img__2clm-img--sm {
    width: 550px;
  }
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap .c-flex-img__2clm-img,
  .c-flex-img__wrap .c-flex-img__2clm-img--md,
  .c-flex-img__wrap .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--space-top .c-flex-img__2clm-img,
  .c-flex-img__wrap--space-top .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--space-top .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--re .c-flex-img__2clm-img,
  .c-flex-img__wrap--re .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--busi .c-flex-img__2clm-img,
  .c-flex-img__wrap--busi .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--busi .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--busi-re .c-flex-img__2clm-img,
  .c-flex-img__wrap--busi-re .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--busi-re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--effo .c-flex-img__2clm-img,
  .c-flex-img__wrap--effo .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--effo .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--effo-re .c-flex-img__2clm-img,
  .c-flex-img__wrap--effo-re .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--effo-re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--white .c-flex-img__2clm-img,
  .c-flex-img__wrap--white .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--white .c-flex-img__2clm-img--sm {
    width: 100%;
    position: relative;
    margin-top: 2.5rem;
  }
}
.c-flex-img__wrap .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--space-top .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--re .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--busi .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--busi-re .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--effo .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--effo-re .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--white .c-flex-img__2clm-img--sm {
  width: calc(47.9591836735%);
}
@media screen and (min-width: 1401px) {
  .c-flex-img__wrap .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--space-top .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--busi .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--busi-re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--effo .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--effo-re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--white .c-flex-img__2clm-img--sm {
    width: 470px;
  }
}
@media screen and (max-width: 820px) {
  .c-flex-img__wrap .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--space-top .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--busi .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--busi-re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--effo .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--effo-re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--white .c-flex-img__2clm-img--sm {
    width: 46%;
  }
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--space-top .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--busi .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--busi-re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--effo .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--effo-re .c-flex-img__2clm-img--sm,
  .c-flex-img__wrap--white .c-flex-img__2clm-img--sm {
    width: 100%;
  }
}
.c-flex-img__wrap .c-flex-img__2clm-img--md,
.c-flex-img__wrap--space-top .c-flex-img__2clm-img--md,
.c-flex-img__wrap--re .c-flex-img__2clm-img--md,
.c-flex-img__wrap--busi .c-flex-img__2clm-img--md,
.c-flex-img__wrap--busi-re .c-flex-img__2clm-img--md,
.c-flex-img__wrap--effo .c-flex-img__2clm-img--md,
.c-flex-img__wrap--effo-re .c-flex-img__2clm-img--md,
.c-flex-img__wrap--white .c-flex-img__2clm-img--md {
  width: calc(39.2857142857%);
}
@media screen and (min-width: 1401px) {
  .c-flex-img__wrap .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--space-top .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--re .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--busi .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--busi-re .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--effo .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--effo-re .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--white .c-flex-img__2clm-img--md {
    width: 550px;
  }
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--space-top .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--re .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--busi .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--busi-re .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--effo .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--effo-re .c-flex-img__2clm-img--md,
  .c-flex-img__wrap--white .c-flex-img__2clm-img--md {
    width: 100%;
  }
}

.c-flex-img__wrap--space-top {
  padding-top: 2.5rem;
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap--space-top {
    background-color: var(--back);
    border-radius: 1.25rem;
    padding: 1.875rem 1.25rem;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap--space-top .c-flex-img__box--wide {
    padding: 0;
    background-color: initial;
    border-radius: 0;
  }
}

.c-flex-img__box--wide,
.c-flex-img__box {
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .c-flex-img__box--wide,
  .c-flex-img__box {
    padding: 1.875rem;
  }
}
@media screen and (max-width: 599px) {
  .c-flex-img__box--wide,
  .c-flex-img__box {
    padding: 1.25rem;
    background-color: var(--back);
    border-radius: 15px;
    padding: 0;
    background-color: initial;
  }
}
.c-flex-img__box--wide::before,
.c-flex-img__box::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--back);
  width: 91.8%;
  height: 100%;
  z-index: 2;
  border-radius: 1.25rem;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .c-flex-img__box--wide::before,
  .c-flex-img__box::before {
    width: 100%;
    content: none;
  }
}

.c-flex-img__box--wide {
  padding: 2.5rem 0 2.5rem 2.5rem;
}
@media screen and (max-width: 820px) {
  .c-flex-img__box--wide {
    padding: 1.875rem 0 1.875rem 1.875rem;
  }
}
@media screen and (max-width: 599px) {
  .c-flex-img__box--wide {
    padding: 1.25rem;
    background-color: var(--back);
    border-radius: 15px;
  }
}

@media screen and (max-width: 599px) {
  .c-flex-img__box--sp__wrap {
    background-color: var(--back);
    border-radius: 1.25rem;
    padding: 1.875rem 1.25rem;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 599px) and (max-width: 599px) {
  .c-flex-img__box--sp__wrap {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .c-flex-img__box--sp__wrap .c-flex-img__box {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 599px) {
  .c-flex-img__wrap--white {
    background-color: var(--white);
    border-radius: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap--white .c-flex-img {
    padding-top: 0 !important;
  }
}

.c-flex-img__wrap--re .c-flex-img,
.c-flex-img__wrap--busi-re .c-flex-img,
.c-flex-img__wrap--effo-re .c-flex-img {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c-flex-img__wrap--re .c-flex-img__2clm-img,
.c-flex-img__wrap--re .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--busi-re .c-flex-img__2clm-img,
.c-flex-img__wrap--busi-re .c-flex-img__2clm-img--sm,
.c-flex-img__wrap--effo-re .c-flex-img__2clm-img,
.c-flex-img__wrap--effo-re .c-flex-img__2clm-img--sm {
  right: auto;
  left: 0;
}
.c-flex-img__wrap--re .c-flex-img__box::before,
.c-flex-img__wrap--busi-re .c-flex-img__box::before,
.c-flex-img__wrap--effo-re .c-flex-img__box::before {
  left: auto;
  right: 0;
}

.c-flex-img__wrap--busi,
.c-flex-img__wrap--busi-re {
  background-color: initial;
  padding: 0;
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap--busi,
  .c-flex-img__wrap--busi-re {
    background-color: var(--back);
    border-radius: 15px;
    padding: 1.875rem 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap--busi .c-flex-img__box,
  .c-flex-img__wrap--busi-re .c-flex-img__box {
    padding: 0;
  }
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap--busi .c-flex-img__box::before,
  .c-flex-img__wrap--busi-re .c-flex-img__box::before {
    content: none;
  }
}

.c-flex-img__wrap--effo,
.c-flex-img__wrap--effo-re {
  padding-top: 2.5rem;
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap--effo,
  .c-flex-img__wrap--effo-re {
    background-color: var(--back);
    border-radius: 1.25rem;
    padding: 1.875rem 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .c-flex-img__wrap--effo > .c-card--md,
  .c-flex-img__wrap--effo-re > .c-card--md {
    padding: 0;
  }
}

/*-==========================================================================
グリッドレイアウト
==========================================================================*/
/* グリッド
----------------------------------------------------------------- */
.c-grid--xsm,
.c-grid--sm,
.c-grid--md-sm,
.c-grid--md,
.c-grid--lg,
.c-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .c-grid--xsm,
  .c-grid--sm,
  .c-grid--md-sm,
  .c-grid--md,
  .c-grid--lg,
  .c-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-grid--xsm {
  gap: 10px 10px;
}
.c-grid--xsm .c-grid-3clm {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 820px) {
  .c-grid--xsm .c-grid-3clm {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .c-grid--xsm .c-grid-3clm {
    width: 100%;
  }
}

.c-grid--sm {
  gap: 3.75rem 1.25rem;
}
@media screen and (max-width: 599px) {
  .c-grid--sm {
    gap: 1.875rem;
  }
}
.c-grid--sm .c-grid-5clm {
  width: calc((100% - 80px) / 5);
}
.c-grid--sm .c-grid-4clm {
  width: calc((100% - 60px) / 4);
}
.c-grid--sm .c-grid-3clm {
  width: calc((100% - 40px) / 3);
}
.c-grid--sm .c-grid-2clm {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 820px) {
  .c-grid--sm .c-grid-5clm,
  .c-grid--sm .c-grid-4clm,
  .c-grid--sm .c-grid-3clm {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .c-grid--sm .c-grid-5clm,
  .c-grid--sm .c-grid-4clm,
  .c-grid--sm .c-grid-3clm,
  .c-grid--sm .c-grid-2clm {
    width: 100%;
  }
  .c-grid--sm .c-grid-5clm-sp {
    width: calc((100% - 20px) / 2);
  }
}

.c-grid--md-sm {
  gap: 3.75rem 1.875rem;
}
.c-grid--md-sm .c-grid-3clm {
  width: calc((100% - 60px) / 3);
}
.c-grid--md-sm .c-grid-2clm {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 1024px) {
  .c-grid--md-sm .c-grid-3clm {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .c-grid--md-sm .c-grid-3clm,
  .c-grid--md-sm .c-grid-2clm {
    width: 100%;
  }
}

.c-grid--md {
  gap: 3.75rem 2.5rem;
}
.c-grid--md .c-grid-4clm {
  width: calc((100% - 120px) / 4);
}
.c-grid--md .c-grid-3clm {
  width: calc((100% - 80px) / 3);
}
.c-grid--md .c-grid-2clm {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 820px) {
  .c-grid--md .c-grid-4clm,
  .c-grid--md .c-grid-3clm {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .c-grid--md .c-grid-4clm,
  .c-grid--md .c-grid-3clm,
  .c-grid--md .c-grid-2clm {
    width: 100%;
  }
}

.c-grid--lg {
  gap: 3.75rem 3.75rem;
}
.c-grid--lg .c-grid-3clm {
  width: calc((100% - 120px) / 3);
}
.c-grid--lg .c-grid-2clm {
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 820px) {
  .c-grid--lg .c-grid-3clm {
    width: calc((100% - 60px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .c-grid--lg .c-grid-3clm,
  .c-grid--lg .c-grid-2clm {
    width: 100%;
  }
  .c-grid--lg .c-grid-2clm-sp {
    width: calc((100% - 20px) / 2);
  }
}

.c-grid .c-grid-5clm {
  width: 20%;
}
.c-grid .c-grid-4clm {
  width: 25%;
}
.c-grid .c-grid-3clm {
  width: calc(100%/3);
}
.c-grid .c-grid-2clm {
  width: 50%;
}
@media screen and (max-width: 599px) {
  .c-grid .c-grid-5clm,
  .c-grid .c-grid-4clm,
  .c-grid .c-grid-3clm,
  .c-grid .c-grid-2clm {
    width: 100%;
  }
}

/* ==========================================================================
リスト
=========================================================================*/
.c-list-num,
.c-list-num--brackets {
  counter-reset: item;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list-num li,
.c-list-num--brackets li {
  position: relative;
  padding-left: 1.9375rem;
  counter-increment: item;
}
.c-list-num li:before,
.c-list-num--brackets li:before {
  content: "" attr(data-zenkaku) ".";
  position: absolute;
  font-weight: 700;
  left: 0;
}

.c-list-num--brackets {
  counter-reset: item;
}
.c-list-num--brackets li {
  padding-left: 3rem;
  counter-increment: item;
}
@media screen and (max-width: 599px) {
  .c-list-num--brackets li {
    padding-left: 2.5rem;
  }
}
.c-list-num--brackets li:before {
  content: "（" attr(data-zenkaku) "）";
}
@media screen and (max-width: 599px) {
  .c-list-num--brackets li:before {
    left: -6px;
  }
}

.c-list-num--brackets-divider {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list-num--brackets-divider li {
  border-bottom: 1px solid var(--lightgray);
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.c-list-num--brackets-divider li:before {
  content: counter(number);
  counter-increment: number;
  position: absolute;
  display: inline-block;
  color: var(--main);
  font-family: "Montserrat", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-left: -rem(32);
}

.c-list-dot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.c-list-dot li {
  padding-left: 10px;
  font-weight: 500;
  position: relative;
}
.c-list-dot li:before {
  content: "";
  color: var(--sub);
  font-weight: 700;
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background-color: var(--main);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 14px;
}
.c-list-dot li ul {
  margin-top: 3px;
  margin-left: 3px;
}
.c-list-dot li ul li {
  font-weight: normal;
  padding-left: 13px;
}
.c-list-dot li ul li:before {
  content: "";
  color: var(--sub);
  width: 8px;
  height: 2px;
  background-color: var(--main);
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 16px;
}

/* ==========================================================================
テーブル
=========================================================================*/
.c-tb-pattern1 tr {
  border-bottom: 1px solid var(--black-100);
}
.c-tb-pattern1 tr th,
.c-tb-pattern1 tr td {
  padding: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 820px) {
  .c-tb-pattern1 tr th,
  .c-tb-pattern1 tr td {
    padding: 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .c-tb-pattern1 tr th,
  .c-tb-pattern1 tr td {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-tb-pattern1 tr th {
  font-weight: 700;
  vertical-align: top;
  width: 18.5%;
  padding-left: 1.25rem;
}
@media screen and (max-width: 599px) {
  .c-tb-pattern1 tr th {
    width: 100%;
    padding-left: 10px;
    padding-bottom: 5px;
  }
}
.c-tb-pattern1 tr td {
  padding-right: 1.25rem;
}
@media screen and (max-width: 599px) {
  .c-tb-pattern1 tr td {
    padding-top: 0;
  }
}

.c-tb-pattern2 tr {
  border-bottom: 1px solid var(--white);
}
.c-tb-pattern2 tr:first-child {
  border-top: 1px solid var(--white);
}
.c-tb-pattern2 tr th,
.c-tb-pattern2 tr td {
  line-height: 2;
  padding: 1.25rem;
}
@media screen and (max-width: 599px) {
  .c-tb-pattern2 tr th,
  .c-tb-pattern2 tr td {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-tb-pattern2 tr th {
  font-weight: 700;
  vertical-align: top;
  width: 21.3%;
}
@media screen and (max-width: 820px) {
  .c-tb-pattern2 tr th {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .c-tb-pattern2 tr th {
    width: 100%;
    padding-bottom: 5px;
  }
}
.c-tb-pattern2 tr td {
  padding-left: 10px;
}
@media screen and (max-width: 820px) {
  .c-tb-pattern2 tr td {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 599px) {
  .c-tb-pattern2 tr td {
    padding-top: 0;
  }
}

.c-tb-pattern3 tr {
  border-bottom: 1px solid var(--back);
}
.c-tb-pattern3 tr:last-child {
  border-bottom: none;
}
.c-tb-pattern3 tr th,
.c-tb-pattern3 tr td {
  line-height: 2;
  padding: 1.25rem;
}
@media screen and (max-width: 599px) {
  .c-tb-pattern3 tr th,
  .c-tb-pattern3 tr td {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-tb-pattern3 tr th {
  font-weight: 700;
  vertical-align: top;
  width: 21.3%;
}
@media screen and (max-width: 599px) {
  .c-tb-pattern3 tr th {
    width: 100%;
    padding-bottom: 5px;
  }
}
.c-tb-pattern3 tr td {
  padding-left: 10px;
}
@media screen and (max-width: 599px) {
  .c-tb-pattern3 tr td {
    padding-top: 0;
  }
}

/* ==========================================================================
ナビ
=========================================================================*/
.c-page-nav {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 220px;
}
@media screen and (max-width: 1200px) {
  .c-page-nav {
    width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .c-page-nav {
    width: 100%;
    margin: auto;
    padding: 3.75rem 0 5rem;
  }
}
@media screen and (max-width: 599px) {
  .c-page-nav {
    padding: 3.75rem 0;
  }
}
.c-page-nav .c-page-nav__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  padding-left: 1.25rem;
}
@media screen and (max-width: 1200px) {
  .c-page-nav .c-page-nav__wrap {
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .c-page-nav .c-page-nav__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 0;
    gap: 1.25rem 3%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .c-page-nav .c-page-nav__wrap {
    gap: 1.5rem 1.25rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 599px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu {
    max-width: initial;
    width: 100%;
  }
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a {
  display: block;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 100px;
  background-color: var(--black-200);
  background-image: url(/resource/images/ico_arrow_under_white.svg);
  background-repeat: no-repeat;
  background-size: 8px auto;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 1024px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a:after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a:after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a:after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a:after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a:after {
    width: 20px;
    height: 20px;
    background-size: 6px auto;
    top: calc(50% - 2px);
  }
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a span,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a span,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a span,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a span,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a span {
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  line-height: 1.4;
  letter-spacing: 0.025em;
  padding-left: 15px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 1024px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a span,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a span,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a span,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a span,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a span {
    padding-right: 20px;
  }
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a span::after, .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a span::before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a span::after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a span::before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a span::after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a span::before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a span::after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a span::before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a span::after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a span::before {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_en_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  top: 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: -6px;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a span::after, .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a span::before,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a span::after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a span::before,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a span::after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a span::before,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a span::after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a span::before,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a span::after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a span::before {
    width: 11px;
    height: 11px;
    top: 13px;
  }
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a span::after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a span::after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a span::after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a span::after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a span::after {
  background-image: url(/resource/images/ico_en_orange.svg);
  opacity: 0;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a.is-active:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a.is-active:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a.is-active:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a.is-active:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a.is-active:after {
  background-color: var(--main);
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a.is-active span::before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a.is-active span::before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a.is-active span::before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a.is-active span::before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a.is-active span::before {
  opacity: 1;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a.non-active,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a.non-active,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a.non-active,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a.non-active,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a.non-active {
  color: colors(gray) !important;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a.non-active span:before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a.non-active span:before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a.non-active span:before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a.non-active span:before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a.non-active span:before {
  content: none;
}
@media screen and (max-width: 1024px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a {
    background-size: 5px 1px;
    background-image: -webkit-linear-gradient(left, var(--black-200) 2px, transparent 3px);
    background-image: linear-gradient(to right, var(--black-200) 2px, transparent 3px);
    background-repeat: repeat-x;
    background-position: left bottom;
    padding-bottom: 10px;
  }
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a span::after, .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a span::before,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a span::after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a span::before,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a span::after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a span::before,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a span::after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a span::before,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a span::after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a span::before {
    content: "";
    background-image: url(/resource/images/ico_en_green.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
    margin-right: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-top: -6px;
    left: 0;
    top: 13px;
    position: absolute;
    display: block;
    opacity: 1;
  }
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a span::after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a span::after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a span::after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a span::after,
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a span::after {
    opacity: 0;
  }
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a:hover:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a:hover:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a:hover:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a:hover:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a:hover:after {
  background-color: var(--sub);
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a:hover span::before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a:hover span::before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a:hover span::before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a:hover span::before,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a:hover span::before {
  opacity: 0;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a:hover span:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a:hover span:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a:hover span:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a:hover span:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a:hover span:after {
  opacity: 1;
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a:hover.is-active:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a:hover.is-active:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a:hover.is-active:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a:hover.is-active:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a:hover.is-active:after {
  background-color: var(--sub);
}
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm a:hover.is-active span:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm a:hover.is-active span:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm a:hover.is-active span:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm a:hover.is-active span:after,
.c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu a:hover.is-active span:after {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm {
    width: 31.31313%;
  }
}
@media screen and (max-width: 599px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--5clm {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm {
    width: 22.72727%;
  }
}
@media screen and (max-width: 599px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--4clm {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm {
    width: 31.31313%;
  }
}
@media screen and (max-width: 599px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--3clm {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm {
    width: 48.48484%;
  }
}
@media screen and (max-width: 599px) {
  .c-page-nav .c-page-nav__wrap .c-page-nav__wrap__menu--2clm {
    width: 100%;
  }
}

.c-nav-contact__wrap {
  background: var(----gradation-green, linear-gradient(0deg, rgba(51, 51, 51, 0.1) 0%, rgba(51, 51, 51, 0.1) 100%), linear-gradient(90deg, #00BE70 0%, #018B63 51.74%, #026F69 100%));
  background-size: auto auto;
  background-color: var(--main);
  border-radius: 1.25rem;
  position: relative;
  padding: 3.75rem 0 5rem;
  margin-bottom: 20px;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .c-nav-contact__wrap {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 599px) {
  .c-nav-contact__wrap {
    padding: 2.5rem 0 5rem;
    margin-bottom: 10px;
    border-radius: 15px;
  }
}
.c-nav-contact__wrap::after {
  content: "";
  display: block;
  display: inline-block;
  position: absolute;
  right: 20px;
  bottom: 0;
  background-image: url(/resource/images/en_contact.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 48px;
  height: 291px;
}
@media screen and (max-width: 1400px) {
  .c-nav-contact__wrap::after {
    right: 1.4285714286vw;
    width: 3.4285714286vw;
    height: 20.7857142857vw;
  }
}
@media screen and (max-width: 1024px) {
  .c-nav-contact__wrap::after {
    width: 46px;
    height: 284px;
    -webkit-transform: rotate(-90deg) translate(100%, 0) scale(1, 1);
            transform: rotate(-90deg) translate(100%, 0) scale(1, 1);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    right: 0;
    bottom: 17px;
  }
}
@media screen and (max-width: 599px) {
  .c-nav-contact__wrap::after {
    content: "";
    width: 36px;
    height: 231px;
    -webkit-transform: rotate(-90deg) translate(100%, 0) scale(1, 1);
            transform: rotate(-90deg) translate(100%, 0) scale(1, 1);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    right: 0;
    bottom: 23px;
  }
}

.c-nav-contact__cont--flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  gap: 1.875rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 599px) {
  .c-nav-contact__cont--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}
.c-nav-contact__cont--flex .c-nav-contact__cont__clm {
  width: calc(100%/2);
}
@media screen and (max-width: 599px) {
  .c-nav-contact__cont--flex .c-nav-contact__cont__clm {
    width: 100%;
  }
}

.c-nav-contact__cont__clm {
  background-color: var(--white);
  padding: 2.125rem 1.875rem;
  border-radius: 15px;
}
@media screen and (max-width: 820px) {
  .c-nav-contact__cont__clm {
    padding: 2.125rem 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .c-nav-contact__cont__clm {
    padding: 1.875rem 15px;
  }
}
.c-nav-contact__cont__clm .c-btn-main {
  margin-top: 2.5rem;
}
@media screen and (max-width: 599px) {
  .c-nav-contact__cont__clm .c-btn-main {
    margin-top: 1.875rem;
  }
}

.c-nav-contact__cont__ttl {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4375rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.c-nav-contact__cont__ttl span {
  width: 45px;
  height: 45px;
}
.c-nav-contact__cont__ttl span img {
  width: 100%;
  height: 100%;
}

.c-nav-footer__wrap {
  background-color: var(--back);
  padding: 4.375rem 0 5rem;
  margin-bottom: 1.25rem;
  border-radius: 1.25rem;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 599px) {
  .c-nav-footer__wrap {
    padding: 2.5rem 0;
    margin-bottom: 10px;
    border-radius: 15px;
  }
}
.c-nav-footer__wrap .c-nav-footer__cont,
.c-nav-footer__wrap .c-nav-footer__cont--effo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 10px;
}
@media screen and (max-width: 820px) {
  .c-nav-footer__wrap .c-nav-footer__cont,
  .c-nav-footer__wrap .c-nav-footer__cont--effo {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
  }
}
@media screen and (max-width: 599px) {
  .c-nav-footer__wrap .c-nav-footer__cont,
  .c-nav-footer__wrap .c-nav-footer__cont--effo {
    grid-template-columns: 1fr;
    gap: 30px 10px;
  }
}
.c-nav-footer__wrap .c-nav-footer__cont .c-card-img,
.c-nav-footer__wrap .c-nav-footer__cont--effo .c-card-img {
  border-radius: 10px;
  height: 153px;
  padding: 1.25rem 0 0 15px;
}
@media screen and (max-width: 820px) {
  .c-nav-footer__wrap .c-nav-footer__cont .c-card-img,
  .c-nav-footer__wrap .c-nav-footer__cont--effo .c-card-img {
    height: 167px;
    padding: 1.25rem 0 0 1.25rem;
  }
}
.c-nav-footer__wrap .c-nav-footer__cont .c-card-img .c-ttl-ico,
.c-nav-footer__wrap .c-nav-footer__cont--effo .c-card-img .c-ttl-ico {
  color: var(--white);
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.375rem;
  padding-left: 16px;
}
@media screen and (max-width: 820px) {
  .c-nav-footer__wrap .c-nav-footer__cont .c-card-img .c-ttl-ico,
  .c-nav-footer__wrap .c-nav-footer__cont--effo .c-card-img .c-ttl-ico {
    font-size: 1.4375rem;
  }
}
.c-nav-footer__wrap .c-nav-footer__cont .c-card-img .c-ttl-ico:before,
.c-nav-footer__wrap .c-nav-footer__cont--effo .c-card-img .c-ttl-ico:before {
  width: 12px;
  height: 12px;
  top: 11px;
  background-image: url(/resource/images/ico_en_white.svg);
  background-size: 12px auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.c-nav-footer__wrap .c-nav-footer__cont .c-card-img .c-ttl-ico:after,
.c-nav-footer__wrap .c-nav-footer__cont--effo .c-card-img .c-ttl-ico:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 12px;
  height: 12px;
  top: 11px;
  background-image: url(/resource/images/ico_en_orange.svg);
  background-repeat: no-repeat;
  background-size: 12px auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.c-nav-footer__wrap .c-nav-footer__cont .c-card-img .c-card-img__btn-green,
.c-nav-footer__wrap .c-nav-footer__cont--effo .c-card-img .c-card-img__btn-green {
  width: 55px;
  height: 55px;
  bottom: -20px;
  right: -20px;
  background-size: 10px auto;
  background-position: 14px 14px;
}
@media screen and (max-width: 820px) {
  .c-nav-footer__wrap .c-nav-footer__cont .c-card-img .c-card-img__btn-green,
  .c-nav-footer__wrap .c-nav-footer__cont--effo .c-card-img .c-card-img__btn-green {
    background-size: 14px auto;
  }
}
.c-nav-footer__wrap .c-nav-footer__cont .c-card-img:hover .c-ttl-ico:before,
.c-nav-footer__wrap .c-nav-footer__cont--effo .c-card-img:hover .c-ttl-ico:before {
  opacity: 0;
}
.c-nav-footer__wrap .c-nav-footer__cont .c-card-img:hover .c-ttl-ico:after,
.c-nav-footer__wrap .c-nav-footer__cont--effo .c-card-img:hover .c-ttl-ico:after {
  opacity: 1;
}
.c-nav-footer__wrap .c-nav-footer__cont--effo {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 820px) {
  .c-nav-footer__wrap .c-nav-footer__cont--effo {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .c-nav-footer__wrap .c-nav-footer__cont--effo {
    grid-template-columns: 1fr;
  }
}
.c-nav-footer__wrap .c-nav-footer__cont--effo .c-card-img {
  height: 183px;
}
@media screen and (max-width: 820px) {
  .c-nav-footer__wrap .c-nav-footer__cont--effo .c-card-img {
    height: 187px;
  }
}

/* ==========================================================================
パンくずリスト
=========================================================================*/
.c-breadcrumb__wrap {
  background-color: var(--white);
  border-radius: 1.25rem 0 1.25rem 0;
  padding: 14.5px 20px 13.5px 30px;
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 20;
}
@media screen and (max-width: 820px) {
  .c-breadcrumb__wrap {
    right: 14px;
    padding: 11px 15px 10px 20px;
  }
}
@media screen and (max-width: 599px) {
  .c-breadcrumb__wrap {
    right: 10px;
    padding: 8px 15px 6px 20px;
    border-radius: 15px 0 15px 0;
  }
}

.c-breadcrumb__cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .c-breadcrumb__cont {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.c-breadcrumb__cont .c-breadcrumb__cont__list {
  color: var(--black-600);
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.015em;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .c-breadcrumb__cont .c-breadcrumb__cont__list {
    font-size: 11px;
  }
}
@media screen and (max-width: 599px) {
  .c-breadcrumb__cont .c-breadcrumb__cont__list {
    font-size: 10px;
  }
}
.c-breadcrumb__cont .c-breadcrumb__cont__list a {
  color: var(--black-600);
  text-decoration: underline;
}
.c-breadcrumb__cont .c-breadcrumb__cont__list a:hover {
  color: var(--main);
  text-decoration: none;
}
.c-breadcrumb__cont .c-breadcrumb__cont__list:nth-child(n+2) {
  padding-left: 24px;
  position: relative;
}
.c-breadcrumb__cont .c-breadcrumb__cont__list:nth-child(n+2):before {
  content: "";
  width: 1px;
  height: 10px;
  border: 0px;
  background-color: var(--black-200);
  position: absolute;
  top: 0;
  left: 12px;
  bottom: 0;
  margin: auto;
}

/* ==========================================================================
フォーム
=========================================================================*/
/* 電話番号
----------------------------------------------------------------- */
.c-form-tel a[href^="tel:"],
.c-form-tel--sm a[href^="tel:"] {
  font-family: "Montserrat", sans-serif;
  font-size: 3.6875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  display: inline-block;
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .c-form-tel a[href^="tel:"],
  .c-form-tel--sm a[href^="tel:"] {
    pointer-events: auto;
    font-size: 2rem;
  }
}
.c-form-tel img,
.c-form-tel--sm img {
  margin-right: 10px;
  width: 45px;
  vertical-align: baseline;
}
@media screen and (max-width: 820px) {
  .c-form-tel img,
  .c-form-tel--sm img {
    width: 40px;
  }
}
@media screen and (max-width: 599px) {
  .c-form-tel img,
  .c-form-tel--sm img {
    width: 30px;
    vertical-align: text-bottom;
  }
}

@media screen and (max-width: 599px) {
  .c-form-tel--sm {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .c-form-tel--sm img {
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-bottom: -6px;
  }
}

.c-form-tel__info {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 15px;
}
@media screen and (max-width: 599px) {
  .c-form-tel__info {
    letter-spacing: 0;
  }
}

/* メールフォーム　入力>確認>完了のnav
----------------------------------------------------------------- */
ul.c-form-nav {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.875rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 599px) {
  ul.c-form-nav {
    gap: 1.25rem;
  }
}
ul.c-form-nav::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  background-color: var(--back);
  aspect-ratio: 2/300;
  max-width: 1px;
  width: 100%;
  max-width: 300px;
  height: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
ul.c-form-nav li {
  display: block;
  background-color: var(--back);
  position: relative;
  max-width: 100px;
  height: 100px;
  width: 100%;
  border-radius: 100px;
  color: var(--black-400);
  font-size: 1.1875rem;
  line-height: 1.4;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  aspect-ratio: 1;
}
@media screen and (max-width: 599px) {
  ul.c-form-nav li {
    max-width: 80px;
    height: 80px;
    font-size: 1rem;
  }
}
ul.c-form-nav li span {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  font-weight: 600;
}
ul.c-form-nav li.c-form-nav__active {
  background-color: var(--main);
  color: var(--white);
}
/* 必須マーク
----------------------------------------------------------------- */
.c-form-required,
.c-form-required--privacy {
  position: relative;
}
@media screen and (max-width: 599px) {
  .c-form-required,
  .c-form-required--privacy {
    text-align: center;
  }
}
.c-form-required::after,
.c-form-required--privacy::after {
  content: "必須";
  display: inline-block;
  background-color: var(--sub);
  border-radius: 15px;
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  width: 44px;
  padding: 2px 0 3px;
  text-align: center;
  margin-left: 14px;
  margin-top: -6px;
  vertical-align: middle;
}

@media screen and (max-width: 599px) {
  .c-form-required--privacy::after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: 0;
    top: auto;
    bottom: -30px;
  }
}

/* フォーム
----------------------------------------------------------------- */
.c-form-wrap {
  padding: 3.75rem 2.5rem;
  background-color: var(--white);
  border-radius: 1.25rem;
}
@media screen and (max-width: 599px) {
  .c-form-wrap {
    padding: 2.5rem 15px;
  }
}
.c-form-wrap table {
  font-size: 1rem;
}
@media screen and (max-width: 599px) {
  .c-form-wrap table tr:first-child th {
    padding-top: 0;
  }
}
.c-form-wrap table tr th,
.c-form-wrap table tr td {
  padding: 1.25rem 0;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .c-form-wrap table tr th,
  .c-form-wrap table tr td {
    display: block;
  }
}
.c-form-wrap table tr th {
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
  position: relative;
  width: 26.66666%;
  padding-right: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .c-form-wrap table tr th {
    padding: 1.25rem 0 0;
    width: 100%;
  }
}
.c-form-radio,
.c-form-checkbox {
  display: inline-block;
  border: 1px solid var(--black-200);
  background-color: var(--white);
  margin: -4px 10px 0 0;
  height: 20px;
  width: 20px;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.c-form-radio:not(:disabled),
.c-form-checkbox:not(:disabled) {
  cursor: pointer;
}

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

.c-form-checkbox {
  background-color: var(--white);
  border: 1px solid var(--back);
  position: relative;
}
.c-form-checkbox:checked:before {
  content: "";
  background-image: url(/resource/images/ico_form_cheaked.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 17px;
  display: block;
  position: absolute;
  left: 4px;
  top: 1px;
}
.c-form-radio-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 14px;
}

.c-form-input,
.c-form-select,
.c-form-textarea {
  display: inline-block;
  background-color: var(--back);
  border: 1px solid var(--back);
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1rem;
  vertical-align: middle;
  padding: 4px 8px;
  max-width: 660px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .c-form-input,
  .c-form-select,
  .c-form-textarea {
    max-width: 100%;
  }
}

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

.c-form-privacy {
  background-color: var(--back);
  padding: 2.5rem;
  border-radius: 15px;
}
@media screen and (max-width: 599px) {
  .c-form-privacy {
    padding: 30px 15px 3.75rem;
  }
}
.c-form-privacy .c-form-privacy-panel {
  background-color: var(--white);
  font-size: 14px;
  line-height: 2;
  height: 180px;
  margin-top: 1.875rem;
  padding: 1.5rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .c-form-privacy .c-form-privacy-panel {
    padding: 1.25rem 15px;
  }
}

.c-form-privacy-checkbox {
  cursor: pointer;
  font-weight: 700;
  line-height: 2;
}

/* ==========================================================================
ボタン
=========================================================================*/
.c-btn-main,
.c-btn-main--win,
.c-btn-pdf--win,
.c-btn-main--white {
  text-align: center;
  max-width: 290px;
  width: 100%;
}
.c-btn-main a,
.c-btn-main button,
.c-btn-main--win a,
.c-btn-main--win button,
.c-btn-pdf--win a,
.c-btn-pdf--win button,
.c-btn-main--white a,
.c-btn-main--white button {
  position: relative;
  display: block;
  color: var(--white);
  background-color: var(--main);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
}
.c-btn-main a span,
.c-btn-main button span,
.c-btn-main--win a span,
.c-btn-main--win button span,
.c-btn-pdf--win a span,
.c-btn-pdf--win button span,
.c-btn-main--white a span,
.c-btn-main--white button span {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  position: absolute;
  background-color: var(--white);
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-main a span::before, .c-btn-main a span::after,
.c-btn-main button span::before,
.c-btn-main button span::after,
.c-btn-main--win a span::before,
.c-btn-main--win a span::after,
.c-btn-main--win button span::before,
.c-btn-main--win button span::after,
.c-btn-pdf--win a span::before,
.c-btn-pdf--win a span::after,
.c-btn-pdf--win button span::before,
.c-btn-pdf--win button span::after,
.c-btn-main--white a span::before,
.c-btn-main--white a span::after,
.c-btn-main--white button span::before,
.c-btn-main--white button span::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(/resource/images/ico_arrow_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  height: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.c-btn-main a span::after,
.c-btn-main button span::after,
.c-btn-main--win a span::after,
.c-btn-main--win button span::after,
.c-btn-pdf--win a span::after,
.c-btn-pdf--win button span::after,
.c-btn-main--white a span::after,
.c-btn-main--white button span::after {
  opacity: 0;
  background-image: url(/resource/images/ico_arrow_orange.svg);
}
.c-btn-main a:hover,
.c-btn-main button:hover,
.c-btn-main--win a:hover,
.c-btn-main--win button:hover,
.c-btn-pdf--win a:hover,
.c-btn-pdf--win button:hover,
.c-btn-main--white a:hover,
.c-btn-main--white button:hover {
  background-color: var(--sub);
}
.c-btn-main a:hover span,
.c-btn-main button:hover span,
.c-btn-main--win a:hover span,
.c-btn-main--win button:hover span,
.c-btn-pdf--win a:hover span,
.c-btn-pdf--win button:hover span,
.c-btn-main--white a:hover span,
.c-btn-main--white button:hover span {
  right: 0.9375rem;
}
.c-btn-main a:hover span::before,
.c-btn-main button:hover span::before,
.c-btn-main--win a:hover span::before,
.c-btn-main--win button:hover span::before,
.c-btn-pdf--win a:hover span::before,
.c-btn-pdf--win button:hover span::before,
.c-btn-main--white a:hover span::before,
.c-btn-main--white button:hover span::before {
  opacity: 0;
}
.c-btn-main a:hover span::after,
.c-btn-main button:hover span::after,
.c-btn-main--win a:hover span::after,
.c-btn-main--win button:hover span::after,
.c-btn-pdf--win a:hover span::after,
.c-btn-pdf--win button:hover span::after,
.c-btn-main--white a:hover span::after,
.c-btn-main--white button:hover span::after {
  opacity: 1;
}

.c-btn-pdf--win a span,
.c-btn-main--win a span {
  width: 22px;
  height: 22px;
  display: block;
}
.c-btn-pdf--win a span::before, .c-btn-pdf--win a span::after,
.c-btn-main--win a span::before,
.c-btn-main--win a span::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(/resource/images/ico_win_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 9px;
  height: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.c-btn-pdf--win a span::after,
.c-btn-main--win a span::after {
  opacity: 0;
  background-image: url(/resource/images/ico_win_orange.svg);
}
.c-btn-pdf--win a:hover span,
.c-btn-main--win a:hover span {
  right: 1.25rem;
}
.c-btn-pdf--win a:hover span::before,
.c-btn-main--win a:hover span::before {
  opacity: 0;
}
.c-btn-pdf--win a:hover span::after,
.c-btn-main--win a:hover span::after {
  opacity: 1;
}

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

.c-btn-pdf--win {
  max-width: initial;
}
.c-btn-pdf--win a,
.c-btn-pdf--win button {
  text-indent: 5px;
  border-radius: 10px;
  height: 106px;
  text-align: left;
  font-size: 1.1875rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 4.375rem;
  letter-spacing: 0;
  text-indent: 0;
}
@media screen and (max-width: 820px) {
  .c-btn-pdf--win a,
  .c-btn-pdf--win button {
    padding-left: 50px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 599px) {
  .c-btn-pdf--win a,
  .c-btn-pdf--win button {
    font-size: 1rem;
    padding-left: 2.5rem;
    height: 86px;
  }
}
.c-btn-pdf--win a span,
.c-btn-pdf--win button span {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 599px) {
  .c-btn-pdf--win a span,
  .c-btn-pdf--win button span {
    width: 20px;
    height: 20px;
    right: 15px;
  }
}
.c-btn-pdf--win a span::before, .c-btn-pdf--win a span::after,
.c-btn-pdf--win button span::before,
.c-btn-pdf--win button span::after {
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 599px) {
  .c-btn-pdf--win a span::before, .c-btn-pdf--win a span::after,
  .c-btn-pdf--win button span::before,
  .c-btn-pdf--win button span::after {
    width: 9px;
    height: 10px;
  }
}
.c-btn-pdf--win a .pdf,
.c-btn-pdf--win button .pdf {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 820px) {
  .c-btn-pdf--win a .pdf,
  .c-btn-pdf--win button .pdf {
    left: 15px;
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 599px) {
  .c-btn-pdf--win a .pdf,
  .c-btn-pdf--win button .pdf {
    left: 15px;
    width: 20px;
    height: 20px;
  }
}
.c-btn-pdf--win a .pdf img,
.c-btn-pdf--win button .pdf img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.c-btn-pdf--win a .txt,
.c-btn-pdf--win button .txt {
  color: var(--white);
  line-height: 1.4;
  font-size: 11px;
  font-weight: 700;
  text-indent: -11px;
  padding-left: 11px;
}

.c-btn-main--ex {
  max-width: initial;
  width: 100%;
}
.c-btn-main--ex a {
  width: 100%;
  display: block;
  background-color: var(--main);
  border-radius: 10px;
  color: var(--white);
  height: 122px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 599px) {
  .c-btn-main--ex a {
    height: 180px;
  }
}
.c-btn-main--ex a .c-btn-main--ex__txt__wrap {
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-btn-main--ex a .c-btn-main--ex__img {
  margin-right: 10px;
  width: 32px;
}
@media screen and (max-width: 599px) {
  .c-btn-main--ex a .c-btn-main--ex__img {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 30px;
    margin: 0;
  }
}
.c-btn-main--ex a .c-btn-main--ex__txt {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .c-btn-main--ex a .c-btn-main--ex__txt {
    margin-top: 20px;
  }
}
.c-btn-main--ex a .c-btn-main--large__txt-lg {
  font-size: 1.4375rem;
}
.c-btn-main--ex a .c-btn-main--large__txt-md {
  font-size: 1rem;
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .c-btn-main--ex a .c-btn-main--large__txt-md {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: block;
  }
}
.c-btn-main--ex a .c-btn-main--large__txt-sm {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .c-btn-main--ex a .c-btn-main--large__txt-sm {
    display: block;
    text-align: center;
  }
}
.c-btn-main--ex a span.win {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  position: absolute;
  background-color: var(--white);
  right: 3.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/resource/images/ico_win_green.svg);
  background-size: 15px auto;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .c-btn-main--ex a span.win {
    width: 30px;
    height: 30px;
    background-size: 12px auto;
    right: 15px;
    bottom: 15px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: auto;
  }
}
.c-btn-main--ex a:hover {
  background-color: var(--sub);
}
.c-btn-main--ex a:hover span.win {
  background-image: url(/resource/images/ico_win_orange.svg);
}

.c-btn-card,
.c-btn-card--tmb {
  width: 100%;
  position: relative;
}
.c-btn-card .c-btn-card__ttl,
.c-btn-card--tmb .c-btn-card__ttl {
  margin-bottom: 8px;
}
.c-btn-card .c-btn-card__txt,
.c-btn-card--tmb .c-btn-card__txt {
  color: var(--gray);
}
.c-btn-card .c-btn-card__txt span,
.c-btn-card--tmb .c-btn-card__txt span {
  color: var(--sub);
}
.c-btn-card a,
.c-btn-card--tmb a {
  position: relative;
  display: block;
  background-color: var(--white);
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 95px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  padding: 2.0625rem 2.5rem;
  padding-left: 60px;
}
@media screen and (max-width: 820px) {
  .c-btn-card a,
  .c-btn-card--tmb a {
    height: 72px;
    font-size: 1.1875rem;
    padding: 1.25rem;
    padding-left: 40px;
  }
}
@media screen and (max-width: 599px) {
  .c-btn-card a,
  .c-btn-card--tmb a {
    font-size: 1rem;
    padding: 20px 15px 20px 40px;
  }
}
.c-btn-card a::before, .c-btn-card a::after,
.c-btn-card--tmb a::before,
.c-btn-card--tmb a::after {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_en_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
@media screen and (max-width: 820px) {
  .c-btn-card a::before, .c-btn-card a::after,
  .c-btn-card--tmb a::before,
  .c-btn-card--tmb a::after {
    width: 12px;
    height: 12px;
    left: 24px;
    margin-top: 1px;
  }
}
@media screen and (max-width: 599px) {
  .c-btn-card a::before, .c-btn-card a::after,
  .c-btn-card--tmb a::before,
  .c-btn-card--tmb a::after {
    width: 10px;
    height: 10px;
    left: 25px;
  }
}
.c-btn-card a::after,
.c-btn-card--tmb a::after {
  background-image: url(/resource/images/ico_en_orange.svg);
  opacity: 0;
}
.c-btn-card a span,
.c-btn-card--tmb a span {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 100px;
  position: absolute;
  background-color: var(--main);
  right: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/resource/images/ico_arrow_white.svg);
  background-size: 12px auto;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  .c-btn-card a span,
  .c-btn-card--tmb a span {
    width: 24px;
    height: 24px;
    right: 1.25rem;
    background-size: 10px auto;
    -webkit-transition: 0.1s !important;
    transition: 0.1s !important;
  }
}
@media screen and (max-width: 599px) {
  .c-btn-card a span,
  .c-btn-card--tmb a span {
    right: 15px;
    background-size: 9px auto;
  }
}
.c-btn-card a:hover::before,
.c-btn-card--tmb a:hover::before {
  opacity: 0;
}
.c-btn-card a:hover::after,
.c-btn-card--tmb a:hover::after {
  opacity: 1;
}
.c-btn-card a:hover span,
.c-btn-card--tmb a:hover span {
  right: 1.5625rem;
  background-color: var(--sub);
}
@media screen and (max-width: 599px) {
  .c-btn-card a:hover span,
  .c-btn-card--tmb a:hover span {
    right: 10px;
  }
}

.c-btn-thumb .c-btn-thumb__img {
  border-radius: 15px;
  height: 272px;
  overflow: hidden;
}
.c-btn-thumb .c-btn-thumb__img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  scale: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-btn-thumb .c-btn-thumb__cap {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 15px;
}
.c-btn-thumb .c-btn-thumb_body {
  margin-top: 15px;
}
.c-btn-thumb .c-btn-thumb__ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-thumb:hover .c-btn-thumb__img img {
  scale: 1.1;
  opacity: 0.8;
}
.c-btn-thumb:hover .c-btn-thumb__ttl {
  color: var(--main);
}

.c-btn-thumb__tag {
  border: 1px solid var(--main);
  border-radius: 100px;
  display: inline-block;
  font-size: 12px;
  color: var(--main);
  font-weight: 700;
  position: relative;
  line-height: 1.4;
  padding: 4px 12px 5px;
}
.c-btn-thumb__tag::before {
  content: "";
  display: inline-block;
  background-color: var(--main);
  width: 4px;
  height: 4px;
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 100px;
  vertical-align: middle;
  margin-top: -4px;
}
@media screen and (max-width: 820px) {
  .c-btn-thumb__tag::before {
    margin-top: -2px;
  }
}

.c-btn-card-tmb1,
.c-btn-card-tmb2 {
  padding: 0;
}
.c-btn-card-tmb1 .c-btn-card-tmb-mask,
.c-btn-card-tmb2 .c-btn-card-tmb-mask {
  overflow: hidden;
  height: 194px;
}
.c-btn-card-tmb1 .c-btn-card-tmb-mask img,
.c-btn-card-tmb2 .c-btn-card-tmb-mask img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.c-btn-card-tmb1 .c-btn-card-tmb__txt,
.c-btn-card-tmb2 .c-btn-card-tmb__txt {
  font-size: 14px;
}
.c-btn-card-tmb1 .c-btn-card-tmb__txt span,
.c-btn-card-tmb2 .c-btn-card-tmb__txt span {
  color: var(--sub);
}

.c-btn-card-tmb2 {
  border: 1px solid var(--lightgray);
}
.c-btn-card-tmb2 .c-btn-card-tmb2-mask {
  height: 164px;
}

.c-btn-bnr {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  width: 100%;
  display: block;
  border-radius: 1.25rem;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media screen and (max-width: 599px) {
  .c-btn-bnr {
    border-radius: 0.625rem;
  }
}
.c-btn-bnr img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  border-radius: inherit;
}
.c-btn-bnr .c-btn-bnr__btn,
.c-btn-bnr .c-btn-bnr__btn--win,
.c-btn-bnr .c-btn-bnr__btn--win--yellow {
  display: block;
  width: 95px;
  height: 95px;
  position: absolute;
  bottom: -35px;
  right: -35px;
  background-image: url(/resource/images/ico_arrow_white.svg);
  background-size: 18px auto;
  background-position: 24px 24px;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--main);
  border-radius: 100px;
}
@media screen and (max-width: 599px) {
  .c-btn-bnr .c-btn-bnr__btn,
  .c-btn-bnr .c-btn-bnr__btn--win,
  .c-btn-bnr .c-btn-bnr__btn--win--yellow {
    width: 60px;
    height: 60px;
    bottom: -20px;
    right: -20px;
    background-size: 10px auto;
    background-position: 17px 17px;
  }
}
.c-btn-bnr .c-btn-bnr__btn--win,
.c-btn-bnr .c-btn-bnr__btn--win--yellow {
  width: 99px;
  height: 99px;
  bottom: -39px;
  right: -39px;
  background-image: url(/resource/images/ico_win_white.svg);
  background-size: 15px auto;
  background-position: 28px 28px;
}
.c-btn-bnr .c-btn-bnr__btn--win--yellow {
  background-color: #F7B10C;
}
.c-btn-bnr:hover img {
  opacity: 0.8;
}
.c-btn-bnr:hover .c-btn-bnr__btn,
.c-btn-bnr:hover .c-btn-bnr__btn--win,
.c-btn-bnr:hover .c-btn-bnr__btn--win--yellow {
  background-color: var(--sub);
}

/* ==========================================================================
カード
=========================================================================*/
.c-card--sm,
.c-card--md-sm,
.c-card--md,
.c-card--md-lg,
.c-card--lg,
.c-card--xlg {
  border-radius: 15px;
}

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

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

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

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

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

.c-card--xlg {
  padding: 3.75rem 5rem;
}
@media screen and (max-width: 1024px) {
  .c-card--xlg {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .c-card--xlg {
    padding: 1.25rem 1.25rem;
  }
}

/* 帯見出しがある2段組みのカード
----------------------------------------------------------------- */
.c-card-belt,
.c-card-belt--sm,
.c-card-belt--md-sm,
.c-card-belt--md {
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (max-width: 599px) {
  .c-card-belt,
  .c-card-belt--sm,
  .c-card-belt--md-sm,
  .c-card-belt--md {
    border-radius: 10px;
  }
}

.c-card-belt--sm {
  border-radius: 0.625rem;
}
.c-card-belt--sm .c-card-belt__body--white,
.c-card-belt--sm .c-card-belt__body--back {
  padding-right: 1.875rem;
  padding-bottom: 1.25rem;
  padding-left: 1.875rem;
}

.c-card-belt--md {
  border-radius: 0.625rem;
}
.c-card-belt--md .c-card-belt__body--white,
.c-card-belt--md .c-card-belt__body--back {
  padding-right: 3.75rem;
  padding-bottom: 1.25rem;
  padding-left: 3.75rem;
}
@media screen and (max-width: 599px) {
  .c-card-belt--md .c-card-belt__body--white,
  .c-card-belt--md .c-card-belt__body--back {
    padding-right: 1.25rem;
    padding-bottom: 1.875rem;
    padding-left: 1.25rem;
  }
}

.c-card-belt--md-sm .c-card-belt__body--back {
  padding-right: 1.875rem;
  padding-bottom: 1.875rem;
  padding-left: 1.875rem;
}

.c-card-belt__head--main,
.c-card-belt__head--sub {
  background-color: var(--main);
  text-align: center;
  padding: 10px;
}
@media screen and (max-width: 599px) {
  .c-card-belt__head--main,
  .c-card-belt__head--sub {
    padding: 8px;
  }
}
.c-card-belt__head--main .c-card-belt__head__ttl,
.c-card-belt__head--main .c-card-belt__head__ttl--sm,
.c-card-belt__head--sub .c-card-belt__head__ttl,
.c-card-belt__head--sub .c-card-belt__head__ttl--sm {
  line-height: 1.4;
  color: var(--white);
}
.c-card-belt__head--main .c-card-belt__head__ttl--sm,
.c-card-belt__head--sub .c-card-belt__head__ttl--sm {
  font-size: 1.1875rem;
}

.c-card-belt__head--sub {
  background-color: var(--sub);
}

.c-card-belt__body--white,
.c-card-belt__body--white--md,
.c-card-belt__body--white--sm,
.c-card-belt__body--back,
.c-card-belt__body--back--md,
.c-card-belt__body--back--sm {
  background-color: var(--white);
  padding: 2.5rem 3.75rem 3.75rem;
}
@media screen and (max-width: 820px) {
  .c-card-belt__body--white,
  .c-card-belt__body--white--md,
  .c-card-belt__body--white--sm,
  .c-card-belt__body--back,
  .c-card-belt__body--back--md,
  .c-card-belt__body--back--sm {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .c-card-belt__body--white,
  .c-card-belt__body--white--md,
  .c-card-belt__body--white--sm,
  .c-card-belt__body--back,
  .c-card-belt__body--back--md,
  .c-card-belt__body--back--sm {
    padding: 1.25rem 1.25rem 1.875rem;
  }
}
.c-card-belt__body--white .c-tb-pattern3 tr,
.c-card-belt__body--white--md .c-tb-pattern3 tr,
.c-card-belt__body--white--sm .c-tb-pattern3 tr,
.c-card-belt__body--back .c-tb-pattern3 tr,
.c-card-belt__body--back--md .c-tb-pattern3 tr,
.c-card-belt__body--back--sm .c-tb-pattern3 tr {
  border-bottom: 1px solid var(--white);
}
.c-card-belt__body--white .c-tb-pattern3 tr:last-child,
.c-card-belt__body--white--md .c-tb-pattern3 tr:last-child,
.c-card-belt__body--white--sm .c-tb-pattern3 tr:last-child,
.c-card-belt__body--back .c-tb-pattern3 tr:last-child,
.c-card-belt__body--back--md .c-tb-pattern3 tr:last-child,
.c-card-belt__body--back--sm .c-tb-pattern3 tr:last-child {
  border-top: 1px solid var(--white);
}

.c-card-belt__body--back,
.c-card-belt__body--back--md,
.c-card-belt__body--back--sm {
  background-color: var(--back);
}

.c-card-belt__body--white--sm,
.c-card-belt__body--back--sm {
  padding: 1.875rem 3.75rem 3.75rem;
}
@media screen and (max-width: 820px) {
  .c-card-belt__body--white--sm,
  .c-card-belt__body--back--sm {
    padding: 1.875rem 2.5rem 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .c-card-belt__body--white--sm,
  .c-card-belt__body--back--sm {
    padding: 1.875rem 1.25rem;
  }
}

.c-card-belt__body--white--md,
.c-card-belt__body--back--md {
  padding: 2.5rem 2.5rem 3.75rem;
}
@media screen and (max-width: 820px) {
  .c-card-belt__body--white--md,
  .c-card-belt__body--back--md {
    padding: 1.875rem 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .c-card-belt__body--white--md,
  .c-card-belt__body--back--md {
    padding: 1.25rem 1.25rem;
  }
}

.c-card-belt__body__ttl,
.c-card-belt__body__ttl--sm {
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-size: 2.25rem;
}
@media screen and (max-width: 599px) {
  .c-card-belt__body__ttl,
  .c-card-belt__body__ttl--sm {
    font-size: 1.625rem;
    letter-spacing: 0;
  }
}

.c-card-belt__body__ttl--sm {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 700;
}

/* サムネイルのあるカード
----------------------------------------------------------------- */
.c-card-thumb {
  position: relative;
  width: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-card-thumb .c-card-thumb__head {
  border-radius: 1.25rem 1.25rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .c-card-thumb .c-card-thumb__head {
    border-radius: 15px 15px 0 0;
  }
}
.c-card-thumb .c-card-thumb__head img {
  width: 100%;
  height: auto;
  display: block;
}
.c-card-thumb .c-card-thumb__body,
.c-card-thumb .c-card-thumb__body--md,
.c-card-thumb .c-card-thumb__body--lg {
  background-color: var(--white);
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 1.25rem 1.25rem 10px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 599px) {
  .c-card-thumb .c-card-thumb__body,
  .c-card-thumb .c-card-thumb__body--md,
  .c-card-thumb .c-card-thumb__body--lg {
    padding: 1.25rem 15px 10px;
    border-radius: 0 0 15px 15px;
  }
}
.c-card-thumb .c-card-thumb__body--md {
  padding: 2.5rem 3.75rem;
}
@media screen and (max-width: 820px) {
  .c-card-thumb .c-card-thumb__body--md {
    padding: 1.875rem 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .c-card-thumb .c-card-thumb__body--md {
    padding: 1.875rem 1.25rem;
  }
}
.c-card-thumb .c-card-thumb__body--lg {
  padding: 3.75rem 3.75rem 2.5rem;
}
@media screen and (max-width: 820px) {
  .c-card-thumb .c-card-thumb__body--lg {
    padding: 1.875rem 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .c-card-thumb .c-card-thumb__body--lg {
    padding: 1.875rem 1.25rem;
  }
}
.c-card-thumb .c-card-thumb__body__ttl {
  font-size: 1.25rem;
  text-align: center;
  color: var(--main);
}
.c-card-thumb .c-card-thumb__body__table tr {
  border-top: 1px solid var(--back);
}
.c-card-thumb .c-card-thumb__body__table tr:last-child {
  border-bottom: 1px solid var(--back);
}
.c-card-thumb .c-card-thumb__body__table tr th,
.c-card-thumb .c-card-thumb__body__table tr td {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .c-card-thumb .c-card-thumb__body__table tr th,
  .c-card-thumb .c-card-thumb__body__table tr td {
    display: block;
  }
}
.c-card-thumb .c-card-thumb__body__table tr th {
  padding: 15px 0 15px 10px;
  font-weight: 700;
  width: 26.8%;
}
@media screen and (max-width: 599px) {
  .c-card-thumb .c-card-thumb__body__table tr th {
    padding: 10px;
    width: 100%;
  }
}
.c-card-thumb .c-card-thumb__body__table tr td {
  padding: 15px 10px 15px 30px;
}
@media screen and (max-width: 599px) {
  .c-card-thumb .c-card-thumb__body__table tr td {
    padding: 10px;
    padding-top: 0;
  }
}

/* 見出し・小見出しがあるテキストメインのカード
----------------------------------------------------------------- */
.c-card-pattern2 {
  border: 4px solid var(--sub);
  padding: 1.5rem;
  text-align: center;
}
.c-card-pattern2 .c-card-pattern2__ttl {
  color: var(--sub);
  font-size: 1.875rem;
}
.c-card-pattern2 .c-card-pattern2__ttl span {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}
.c-card-pattern2 .c-card-pattern2__sub-ttl {
  font-size: 1.25rem;
  margin-top: 1.5rem;
}
.c-card-pattern2 .c-card-pattern2__txt {
  text-align: left;
  margin-top: 1rem;
}

/* 背景が画像のカード
----------------------------------------------------------------- */
.c-card-img {
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  height: 332px;
  padding: 1.875rem;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .c-card-img {
    border-radius: 15px;
    height: 222px;
  }
}
@media screen and (max-width: 599px) {
  .c-card-img {
    border-radius: 10px;
    padding: 1.25rem 15px;
    height: 197px;
  }
}
.c-card-img .c-card-img__btn {
  line-height: 1.4;
  padding: 13.5px 50px 13.5px 30px;
  border-radius: 1.25rem 0 0 0;
  background-color: var(--white);
  position: absolute;
  right: 0;
  bottom: 0;
  font-weight: bold;
}
@media screen and (max-width: 820px) {
  .c-card-img .c-card-img__btn {
    font-size: 14px;
    padding: 10px 40px 10px 20px;
    border-radius: 10px 0 10px 0;
  }
}
@media screen and (max-width: 599px) {
  .c-card-img .c-card-img__btn {
    font-size: 14px;
    padding: 8px 33px 8px 15px;
  }
}
.c-card-img .c-card-img__btn span {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  position: absolute;
  background-color: var(--main);
  right: 1.03125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/resource/images/ico_arrow_white.svg);
  background-size: 7px auto;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  .c-card-img .c-card-img__btn span {
    -webkit-transition: 0.1s !important;
    transition: 0.1s !important;
  }
}
@media screen and (max-width: 599px) {
  .c-card-img .c-card-img__btn span {
    width: 18px;
    height: 18px;
    background-size: 6px auto;
    right: 10px;
  }
}
.c-card-img .c-card-img__btn-green {
  width: 95px;
  height: 95px;
  position: absolute;
  bottom: -35px;
  right: -35px;
  background-image: url(/resource/images/ico_arrow_white.svg);
  background-size: 18px auto;
  background-position: 25px 26px;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--main);
  border-radius: 100px;
}
@media screen and (max-width: 820px) {
  .c-card-img .c-card-img__btn-green {
    width: 75px;
    height: 73px;
    bottom: -29px;
    right: -29px;
    background-size: 15px auto;
    background-position: 21px 18px;
    -webkit-transition: 0.1s !important;
    transition: 0.1s !important;
  }
}
@media screen and (max-width: 599px) {
  .c-card-img .c-card-img__btn-green {
    width: 60px;
    height: 60px;
    bottom: -20px;
    right: -20px;
    background-size: 12px auto;
    background-position: 16px 15px;
  }
}
.c-card-img .c-card-img__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.c-card-img .c-card-img__bg img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  scale: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card-img:hover .c-card-img__btn span {
  background-color: var(--sub);
  right: 11.5px;
}
@media screen and (max-width: 599px) {
  .c-card-img:hover .c-card-img__btn span {
    right: 8px;
  }
}
.c-card-img:hover .c-card-img__bg img {
  scale: 1.05;
  opacity: 0.8;
}
.c-card-img:hover .c-card-img__btn-green {
  background-color: var(--sub);
}

/* boxモジュール
----------------------------------------------------------------- */
.c-card-box-wrap {
  position: relative;
}
.c-card-box-wrap .c-card-box__cont {
  padding: 2.5rem 0 5rem;
  position: relative;
  z-index: 1;
}
.c-card-box-wrap .c-card-box__cont::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--back);
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 1.25rem;
  z-index: -1;
}
.c-card-box-wrap .c-card-box__inner {
  width: calc(48.2142857143%);
}
.c-card-box-wrap .c-card-box__img {
  border-radius: 1.25rem;
  overflow: hidden;
  width: calc(47.7941176471%);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
@media screen and (min-width: 1401px) {
  .c-card-box-wrap .c-card-box__img {
    max-width: 650px;
    width: 100%;
    right: 50%;
    -webkit-transform: translateX(690px);
            transform: translateX(690px);
  }
}
.c-card-box-wrap .c-card-box__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* mainカラーの小さいアイコンカード
----------------------------------------------------------------- */
.c-card-ico {
  background-color: var(--main);
  border-radius: 5px;
  padding: 15px 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (max-width: 599px) {
  .c-card-ico {
    gap: 5px;
  }
}
.c-card-ico .c-card-ico__img {
  width: 40px;
}
@media screen and (max-width: 599px) {
  .c-card-ico .c-card-ico__img {
    width: 30px;
  }
}
.c-card-ico .c-card-ico__img img {
  width: 100%;
  height: auto;
  display: block;
}
.c-card-ico .c-card-ico__ttl {
  color: var(--white);
  font-weight: 700;
  line-height: 1.6;
}

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

h2 {
  font-size: 2.5625rem;
}
@media screen and (max-width: 820px) {
  h2 {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 599px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 2.25rem;
}
@media screen and (max-width: 820px) {
  h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 2rem;
}
@media screen and (max-width: 820px) {
  h4 {
    font-size: 1.8125rem;
  }
}
@media screen and (max-width: 599px) {
  h4 {
    font-size: 1.625rem;
  }
}

h5 {
  font-size: 1.8125rem;
}
@media screen and (max-width: 820px) {
  h5 {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 599px) {
  h5 {
    font-size: 1.4375rem;
  }
}

h6 {
  font-size: 1.625rem;
}
@media screen and (max-width: 820px) {
  h6 {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 599px) {
  h6 {
    font-size: 1.3125rem;
  }
}

/* 見出し・タイトル
----------------------------------------------------------------- */
.c-ttl-main .c-ttl-main__en,
.c-ttl-main .c-ttl-main__ja,
.c-ttl-main--white .c-ttl-main__en,
.c-ttl-main--white .c-ttl-main__ja {
  display: block;
  font-weight: 700;
  line-height: 1.4;
}
.c-ttl-main .c-ttl-main__en,
.c-ttl-main--white .c-ttl-main__en {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.c-ttl-main .c-ttl-main__en::before,
.c-ttl-main--white .c-ttl-main__en::before {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_en_orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.c-ttl-main .c-ttl-main__ja,
.c-ttl-main--white .c-ttl-main__ja {
  font-size: 2.625rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 599px) {
  .c-ttl-main .c-ttl-main__ja,
  .c-ttl-main--white .c-ttl-main__ja {
    font-size: 2.25rem;
  }
}

.c-ttl-main--white .c-ttl-main__en,
.c-ttl-main--white .c-ttl-main__ja {
  color: var(--white);
}
.c-ttl-main--white .c-ttl-main__en::before {
  background-image: url(/resource/images/ico_en_white.svg);
}

.c-ttl-sub {
  position: relative;
  padding-left: 26px;
}
@media screen and (max-width: 820px) {
  .c-ttl-sub {
    padding-left: 23px;
  }
}
.c-ttl-sub .c-ttl-sub__en,
.c-ttl-sub .c-ttl-sub__ja {
  display: block;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}
.c-ttl-sub .c-ttl-sub__ja {
  font-size: 2.375rem;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  line-height: 1.2;
}
@media screen and (max-width: 820px) {
  .c-ttl-sub .c-ttl-sub__ja {
    font-size: 1.8125rem;
  }
}
.c-ttl-sub .c-ttl-sub__ja::before, .c-ttl-sub .c-ttl-sub__ja::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 15px;
  background-image: url(/resource/images/ico_en_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
@media screen and (max-width: 820px) {
  .c-ttl-sub .c-ttl-sub__ja::before, .c-ttl-sub .c-ttl-sub__ja::after {
    width: 15px;
    height: 15px;
    top: 12px;
  }
}
.c-ttl-sub .c-ttl-sub__ja::after {
  opacity: 0;
  background-image: url(/resource/images/ico_en_orange.svg);
}
.c-ttl-sub .c-ttl-sub__en {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 820px) {
  .c-ttl-sub .c-ttl-sub__en {
    font-size: 14px;
  }
}

.c-ttl-ico,
.c-ttl-ico--white {
  margin-bottom: 2.5rem;
  padding-left: 1.875rem;
  position: relative;
  width: auto;
}
@media screen and (max-width: 599px) {
  .c-ttl-ico,
  .c-ttl-ico--white {
    padding-left: 1.5rem;
    margin-bottom: 1.875rem;
  }
}
.c-ttl-ico::before, .c-ttl-ico::after,
.c-ttl-ico--white::before,
.c-ttl-ico--white::after {
  content: "";
  display: block;
  background-image: url(/resource/images/ico_en_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 17px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  .c-ttl-ico::before, .c-ttl-ico::after,
  .c-ttl-ico--white::before,
  .c-ttl-ico--white::after {
    top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .c-ttl-ico::before, .c-ttl-ico::after,
  .c-ttl-ico--white::before,
  .c-ttl-ico--white::after {
    width: 18px;
    height: 18px;
    top: 14px;
  }
}
.c-ttl-ico::after,
.c-ttl-ico--white::after {
  opacity: 0;
}

.c-ttl-ico--white {
  color: var(--white);
  font-size: 2.25rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 820px) {
  .c-ttl-ico--white {
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 599px) {
  .c-ttl-ico--white {
    font-size: 1.75rem;
  }
}
.c-ttl-ico--white::before, .c-ttl-ico--white::after {
  background-image: url(/resource/images/ico_en_white.svg);
  background-size: contain;
  width: 18px;
  height: 18px;
  top: 19px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .c-ttl-ico--white::before, .c-ttl-ico--white::after {
    top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .c-ttl-ico--white::before, .c-ttl-ico--white::after {
    top: 12px;
  }
}
.c-ttl-ico--white::after {
  background-image: url(/resource/images/ico_en_orange.svg);
  opacity: 0;
}

.c-ttl-dot::before {
  content: "";
  display: inline-block;
  background-color: var(--main);
  width: 10px;
  height: 10px;
  margin-right: 8px;
  margin-top: -10px;
  vertical-align: middle;
  border-radius: 100px;
}
@media screen and (max-width: 599px) {
  .c-ttl-dot::before {
    margin-top: -8px;
  }
}

.c-ttl-num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 820px) {
  .c-ttl-num {
    gap: 8px;
  }
}
@media screen and (max-width: 599px) {
  .c-ttl-num {
    gap: 5px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-ttl-num .c-ttl-num__ico {
  width: 30px;
  height: 30px;
  aspect-ratio: 1;
  display: inline-block;
  border-radius: 100px;
  background-color: var(--main);
  color: var(--white);
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  line-height: 2.2;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  margin-top: 8px;
}
@media screen and (max-width: 820px) {
  .c-ttl-num .c-ttl-num__ico {
    margin-top: 6px;
  }
}
@media screen and (max-width: 599px) {
  .c-ttl-num .c-ttl-num__ico {
    font-size: 0.8125rem;
    width: 24px;
    height: 24px;
    margin-top: 6px;
  }
}

.c-ttl-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 599px) {
  .c-ttl-img {
    gap: 5px;
  }
}
.c-ttl-img img {
  max-width: 30px;
  margin-top: 8px;
}
@media screen and (max-width: 599px) {
  .c-ttl-img img {
    max-width: 24px;
    margin-top: 6px;
  }
}

.c-ttl-en {
  color: var(--main);
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  font-size: 2.75rem;
  font-weight: 600;
}
.c-ttl-en .c-ttl-en__ja {
  color: var(--black-800);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: block;
  margin-top: 10px;
}

/* オレンジのマーカー
----------------------------------------------------------------- */
.c-ttl-marker,
.c-ttl-marker--gap {
  font-weight: 700;
  line-height: 2;
  font-size: 1rem;
  background-color: var(--sub);
  padding: 5px 1.25rem;
  border-radius: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--white);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 820px) {
  .c-ttl-marker,
  .c-ttl-marker--gap {
    padding: 10px 0.9375rem;
  }
}
@media screen and (max-width: 599px) {
  .c-ttl-marker,
  .c-ttl-marker--gap {
    line-height: 1.4;
  }
}
.c-ttl-marker a[href^=tel],
.c-ttl-marker--gap a[href^=tel] {
  color: var(--white) !important;
  text-decoration: none !important;
}
.c-ttl-marker a,
.c-ttl-marker--gap a {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
  /* リンククリック自体を無効にする */
  cursor: default;
}

.c-ttl-marker--gap {
  gap: 10px;
}

/* ==========================================================================
お知らせ
========================================================================== */
.c-news__article-data {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: var(--black-600);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  .c-news__article-data {
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
}

.c-news__article__cat {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  border: 1px solid var(--main);
  border: 1px solid var(--main);
  border-radius: 100px;
  padding: 5px 12px;
  position: relative;
  color: var(--main);
  background-color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  .c-news__article__cat {
    -webkit-transition: 0.1s;
    transition: 0.1s;
    font-size: 11px;
    padding: 4px 10px;
  }
}
.c-news__article__cat::before {
  content: "";
  display: inline-block;
  background-color: var(--main);
  border-radius: 100px;
  width: 4px;
  height: 4px;
  margin-right: 3px;
  vertical-align: middle;
  margin-top: -2px;
}
@media screen and (max-width: 820px) {
  .c-news__article__cat::before {
    width: 3px;
    height: 3px;
    margin-right: 2px;
    margin-top: -3px;
  }
}

/* サイド_カテゴリー・アーカイブ c-post
----------------------------------------------------------------- */
.c-post-side__wrap {
  padding: 0 1.25rem;
}
.c-post-side__wrap .c-ttl-ico {
  margin-bottom: 1.25rem;
  padding-left: 1.4375rem;
}
.c-post-side__wrap .c-ttl-ico::before {
  background-image: url(/resource/images/ico_en_orange.svg);
  width: 15px;
  height: 15px;
  margin-right: 8px;
  top: 14px;
}
.c-post-side__wrap .c-post-side__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-left: 5px;
}
.c-post-side__wrap .c-post-side__inner li a {
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.4;
}
.c-post-side__wrap .c-post-side__inner li a::before {
  content: "";
  margin-right: 8px;
  display: inline-block;
  background-color: var(--main);
  width: 5px;
  height: 5px;
  border-radius: 100px;
  vertical-align: middle;
  margin-top: -2px;
}
.c-post-side__wrap .c-post-side__inner li a:hover {
  color: var(--main);
}

/* 記事一覧
----------------------------------------------------------------- */
.c-news__wrap {
  border-radius: 15px;
  overflow: hidden;
}

.c-news__article {
  border-bottom: 3px solid var(--white);
}
.c-news__article .c-flex {
  width: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 1px;
}
@media screen and (max-width: 599px) {
  .c-news__article .c-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-news__article a.c-news__article__inner {
  padding: 2.125rem 2.5rem;
  background-color: var(--back);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .c-news__article a.c-news__article__inner {
    padding-right: 5.25rem;
  }
}
@media screen and (max-width: 820px) {
  .c-news__article a.c-news__article__inner {
    padding: 1.5rem 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .c-news__article a.c-news__article__inner {
    padding: 1.25rem 15px;
  }
}
.c-news__article a.c-news__article__inner::before, .c-news__article a.c-news__article__inner::after {
  content: "";
  display: block;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0 auto;
  background-color: var(--white);
  background-image: url(/resource/images/ico_arrow_black-400.svg);
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
@media screen and (max-width: 820px) {
  .c-news__article a.c-news__article__inner::before, .c-news__article a.c-news__article__inner::after {
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
}
@media screen and (max-width: 599px) {
  .c-news__article a.c-news__article__inner::before, .c-news__article a.c-news__article__inner::after {
    right: 20px;
  }
}
.c-news__article a.c-news__article__inner::after {
  background-image: url(/resource/images/ico_arrow_white.svg);
  background-color: var(--main);
  opacity: 0;
}
.c-news__article a.c-news__article__inner:hover {
  color: var(--hover);
  text-decoration: none;
}
.c-news__article a.c-news__article__inner:hover::before {
  opacity: 0;
}
.c-news__article a.c-news__article__inner:hover::after {
  opacity: 1;
}
.c-news__article a.c-news__article__inner .c-news__article__ttl {
  font-size: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (max-width: 820px) {
  .c-news__article a.c-news__article__inner .c-news__article__ttl {
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
}
@media screen and (max-width: 599px) {
  .c-news__article a.c-news__article__inner .c-news__article__ttl {
    width: 80%;
  }
}
.c-news__article a.c-news__article__inner:hover .c-news__article__ttl {
  color: var(--main);
}
.c-news__article a.c-news__article__inner:hover .c-news__article-data {
  color: var(--main);
}
.c-news__article a.c-news__article__inner:hover::before, .c-news__article a.c-news__article__inner:hover::after {
  right: 1.875rem;
}
@media screen and (max-width: 599px) {
  .c-news__article a.c-news__article__inner:hover::before, .c-news__article a.c-news__article__inner:hover::after {
    right: 10px;
  }
}

/* 記事 個別
----------------------------------------------------------------- */
.c-news-single .c-news__article {
  border-bottom: none;
}

.c-news__article-conts p {
  margin-bottom: 1rem;
}

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

.wp-pagenavi span,
.wp-pagenavi a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--main);
  font-family: "Montserrat", sans-serif;
  background-color: var(--back);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100px;
  aspect-ratio: 1;
}

.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;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  position: relative;
}
.wp-pagenavi a.nextpostslink::before,
.wp-pagenavi a.previouspostslink::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(/resource/images/ico_next.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6px;
  height: 12px;
}
.wp-pagenavi a.nextpostslink:hover::before,
.wp-pagenavi a.previouspostslink:hover::before {
  background-image: url(/resource/images/ico_next_white.svg);
}

.wp-pagenavi a.previouspostslink::before {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

/* ==========================================================================
アクセスセクションのスタイル
=========================================================================*/
.c-access__bg {
  position: relative;
  padding-bottom: 5rem;
}
@media screen and (max-width: 599px) {
  .c-access__bg {
    padding-bottom: 3.75rem;
  }
}
.c-access__bg::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--back);
  border-radius: 1.25rem;
  width: 94.117647%;
  height: calc(100% - 90px);
}
@media screen and (min-width: 1401px) {
  .c-access__bg::before {
    width: calc(50vw + 460px + 140px - 40px);
  }
}
@media screen and (max-width: 1024px) {
  .c-access__bg::before {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .c-access__bg::before {
    width: 100%;
    background-color: initial;
    content: none;
  }
}

.c-access-container {
  padding-right: 10%;
  padding-left: 300px;
  max-width: 920px;
  margin-right: 0;
  margin-left: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
}
@media screen and (min-width: 1401px) {
  .c-access-container {
    padding-left: 240px;
    padding-right: 120px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 1024px) {
  .c-access-container {
    padding-left: 4.8%;
    padding-right: 4.8%;
  }
}
@media screen and (max-width: 599px) {
  .c-access__bg-sp {
    background-color: var(--back);
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 15px;
    padding-bottom: 5rem;
    position: relative;
  }
}

.c-access-flex__wrap {
  position: relative;
}
.c-access-flex__wrap .c-access-flex__info {
  padding-top: 2.5rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 599px) {
  .c-access-flex__wrap .c-access-flex__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-access-flex__wrap .c-access-flex__img {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(39.2857142857%);
  z-index: 3;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (min-width: 1401px) {
  .c-access-flex__wrap .c-access-flex__img {
    width: 550px;
  }
}
@media screen and (max-width: 820px) {
  .c-access-flex__wrap .c-access-flex__img {
    width: 48%;
  }
}
@media screen and (max-width: 599px) {
  .c-access-flex__wrap .c-access-flex__img {
    width: 100%;
    top: auto;
    left: auto;
    -webkit-transform: initial;
            transform: initial;
    position: relative;
    margin-top: 2.5rem;
  }
}
.c-access-flex__wrap .c-access-flex__img img {
  width: 100%;
}

.c-access__map {
  border: 6px solid var(--white);
  border-radius: 1.25rem;
  overflow: hidden;
  margin-top: 6.25rem;
}
@media screen and (max-width: 820px) {
  .c-access__map {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 599px) {
  .c-access__map {
    margin-top: 3.75rem;
  }
}
.c-access__map iframe {
  border-radius: 1.25rem;
}
@media screen and (max-width: 820px) {
  .c-access__map iframe {
    height: 280px;
  }
}
@media screen and (max-width: 599px) {
  .c-access__map iframe {
    height: 240px;
  }
}

/* ==========================================================================
トップページ
========================================================================== */
/* ローディング
----------------------------------------------------------------- */
.p-idx-loading {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  background-color: var(--white);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
}
@media screen and (max-width: 1024px) {
  .p-idx-loading {
    height: calc(var(--vh, 1vh) * 100);
  }
}
.p-idx-loading .p-idx-loading__wrap {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  left: 50%;
  top: 50%;
  border-radius: 1.875rem;
  background-color: var(--back);
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
@media screen and (max-width: 820px) {
  .p-idx-loading .p-idx-loading__wrap {
    border-radius: 1.25rem;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
  }
}
@media screen and (max-width: 599px) {
  .p-idx-loading .p-idx-loading__wrap {
    border-radius: 0.9375rem;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.p-idx-loading .p-idx-loading__inner {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  left: 50%;
  top: 50%;
  max-width: 255px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .p-idx-loading .p-idx-loading__inner {
    max-width: initial;
    width: 60%;
  }
}
.p-idx-loading .p-idx-loading__logo {
  width: 100%;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .p-idx-loading .p-idx-loading__logo {
    margin-bottom: 0.9375rem;
  }
}
.p-idx-loading .p-idx-loading__txt {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .p-idx-loading .p-idx-loading__txt {
    font-size: 0.875rem;
  }
}

/* TOP img
----------------------------------------------------------------- */
.p-idx-top__wrap {
  margin-top: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: calc(100vh - 40px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-idx-top__wrap {
    height: calc(var(--vh, 1vh) * 100 - 40px);
  }
}
@media screen and (max-width: 820px) {
  .p-idx-top__wrap {
    margin-top: 14px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-top__wrap {
    margin-top: 10px;
    height: calc(var(--vh, 1vh) * 100 - 20px);
  }
}

.p-idx-top__catch {
  z-index: 3;
  position: absolute;
  left: 50%;
  bottom: 50%;
  -webkit-transform: translate(-46.286%, 50%);
          transform: translate(-46.286%, 50%);
  max-width: 228px;
  aspect-ratio: 228/576;
  height: 68vh;
}
@media screen and (max-width: 820px) {
  .p-idx-top__catch {
    max-width: 253px;
    -webkit-transform: translate(calc(-50% + 55px), 50%);
            transform: translate(calc(-50% + 55px), 50%);
  }
}
@media screen and (max-width: 599px) {
  .p-idx-top__catch {
    max-width: initial;
    aspect-ratio: 176/448;
    width: 46.93333%;
    -webkit-transform: translate(-39.4%, 50%);
            transform: translate(-39.4%, 50%);
  }
}
.p-idx-top__catch img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.p-idx-top__video__wrap {
  border-radius: 1.875rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .p-idx-top__video__wrap {
    border-radius: 20px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-top__video__wrap {
    border-radius: 15px;
  }
}
.p-idx-top__video__wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(/resource/images/idx_top_dot.png);
  background-repeat: repeat;
  background-size: contain;
  background-size: 32px auto;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.p-idx-top__video__wrap .p-idx-top__video video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  /*縦横幅指定*/
  width: 177.77777778vh;
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw;
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
  z-index: 0;
}
.p-idx-top__video__wrap .p-idx-top__video .p-idx-top__video__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
}

.p-idx-top__scroll {
  position: absolute;
  right: 0px;
  bottom: 0px;
  padding: 14px 0 12px 30px;
  max-width: 140px;
  width: 100%;
  border-radius: 20px 0 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--white);
  z-index: 10;
}
@media screen and (max-width: 820px) {
  .p-idx-top__scroll {
    max-width: 138px;
    padding: 10px 20px 10px 30px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-top__scroll {
    max-width: 98px;
    padding: 8px 10px 8px 15px;
  }
}
.p-idx-top__scroll::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/resource/images/ico_arrow_under_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  height: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .p-idx-top__scroll::after {
    right: 10px;
    width: 8px;
    height: 8.8px;
  }
}
.p-idx-top__scroll .p-idx-top__scroll__txt {
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 599px) {
  .p-idx-top__scroll .p-idx-top__scroll__txt {
    font-size: 14px;
  }
}
.p-idx-top__scroll .p-idx-top__scroll__txt::before {
  content: "";
  display: inline-block;
  background-image: url(/resource/images/ico_en_orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  margin-top: -1px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .p-idx-top__scroll .p-idx-top__scroll__txt::before {
    margin-right: 5px;
  }
}
.p-idx-top__scroll:hover::after {
  top: calc(50% + 2px);
  background-image: url(/resource/images/ico_arrow_under_orange.svg);
}

/* メッセージ
----------------------------------------------------------------- */
.p-idx-message__wrap {
  position: relative;
}
.p-idx-message__wrap .is-circle--orange {
  display: block;
  display: inline-block;
  position: absolute;
  top: -289px;
  right: -178px;
  width: 600px;
  height: 600px;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  .p-idx-message__wrap .is-circle--orange {
    width: 500px;
    height: 500px;
    top: -236px;
    right: -198px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-message__wrap .is-circle--orange {
    width: 350px;
    height: 350px;
    top: -166px;
    right: -165px;
  }
}
.p-idx-message__wrap .is-circle--green {
  display: block;
  display: inline-block;
  position: absolute;
  left: -260px;
  bottom: -122px;
  width: 800px;
  height: 800px;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  .p-idx-message__wrap .is-circle--green {
    width: 700px;
    height: 700px;
    left: -298px;
    bottom: -155px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-message__wrap .is-circle--green {
    width: 500px;
    height: 500px;
    left: -240px;
    bottom: -107px;
  }
}
.p-idx-message__wrap .p-idx-message__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 599px) {
  .p-idx-message__wrap .p-idx-message__inner {
    gap: 1.5rem;
  }
}
.p-idx-message__wrap .p-idx-message__inner .p-idx-message__inner__txt {
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2.2;
  text-align: center;
  font-size: 1.1875rem;
}
@media screen and (max-width: 599px) {
  .p-idx-message__wrap .p-idx-message__inner .p-idx-message__inner__txt {
    font-size: 1rem;
  }
}

/* スライド
----------------------------------------------------------------- */
.p-idx-slide__wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  overflow: hidden;
  width: 100%;
}
.p-idx-slide__wrap .p-idx-slide__img img {
  -webkit-animation: loop-images 80s linear 0.5s infinite both;
          animation: loop-images 80s linear 0.5s infinite both;
  height: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: none;
  height: 450px;
}
@media screen and (max-width: 820px) {
  .p-idx-slide__wrap .p-idx-slide__img img {
    height: 302px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-slide__wrap .p-idx-slide__img img {
    height: 234px;
  }
}

@-webkit-keyframes loop-images {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
}

@keyframes loop-images {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
}
/* お知らせ
----------------------------------------------------------------- */
.p-idx-news__wrap {
  position: relative;
  background-color: var(--back);
  border-radius: 1.25rem;
  padding: 5rem 0;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .p-idx-news__wrap {
    padding: 3.75rem 0;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-news__wrap {
    padding: 2.5rem 0;
    padding-bottom: 5rem;
  }
}
.p-idx-news__wrap::before {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  bottom: 0;
  background-image: url(/resource/images/idx_en_news.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 62px;
  height: 280px;
}
@media screen and (max-width: 1400px) {
  .p-idx-news__wrap::before {
    right: 1.4285714286vw;
    width: 4.4285714286vw;
    height: 20vw;
  }
}
@media screen and (max-width: 1024px) {
  .p-idx-news__wrap::before {
    width: 46px;
    height: 196px;
    -webkit-transform: rotate(-90deg) translate(100%, 0) scale(1, 1);
            transform: rotate(-90deg) translate(100%, 0) scale(1, 1);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    right: 0;
    bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-news__wrap::before {
    width: 42px;
    height: 182px;
    bottom: 20px;
  }
}

.p-idx-news__cont {
  border-radius: 10px;
  overflow: hidden;
}

.p-idx-news__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 820px) {
  .p-idx-news__ttl {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-news__ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.p-idx-news__wrap {
  border-radius: 10px;
  overflow: hidden;
}
.p-idx-news__wrap .c-news__article {
  border-bottom: 1px solid var(--back);
}
.p-idx-news__wrap .c-news__article::before {
  content: none;
}
.p-idx-news__wrap .c-news__article a.c-news__article__inner {
  padding: 1.875rem 2.5rem;
  background-color: var(--white);
}
@media screen and (max-width: 820px) {
  .p-idx-news__wrap .c-news__article a.c-news__article__inner {
    padding: 1.25rem 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-news__wrap .c-news__article a.c-news__article__inner {
    padding: 1.25rem;
  }
}
.p-idx-news__wrap .c-news__article a.c-news__article__inner::before, .p-idx-news__wrap .c-news__article a.c-news__article__inner::after {
  content: none;
}
.p-idx-news__wrap .c-news__article a.c-news__article__inner .c-news__article__ttl {
  width: 100%;
}

/* 会社情報
----------------------------------------------------------------- */
.p-idx-company__wrap {
  position: relative;
  z-index: 1;
}
.p-idx-company__wrap .is-circle--green {
  display: inline-block;
  position: absolute;
  right: -160px;
  top: -40px;
  width: 600px;
  height: 600px;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  .p-idx-company__wrap .is-circle--green {
    width: 500px;
    height: 500px;
    right: -198px;
    top: -60px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-company__wrap .is-circle--green {
    width: 350px;
    height: 350px;
    right: -165px;
    top: -63px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-company__wrap .c-card-box-wrap .l-container--lg {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-idx-company__wrap .p-idx-company__txt {
  width: calc(48.2142857143%);
}
@media screen and (max-width: 820px) {
  .p-idx-company__wrap .p-idx-company__txt {
    width: 100%;
  }
}
.p-idx-company__wrap .c-card-box-wrap {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .p-idx-company__wrap .c-card-box-wrap {
    margin-top: 3.125rem;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-company__wrap .c-card-box-wrap {
    margin-top: 1.875rem;
    padding-left: 20px;
    padding-right: 20px;
    background-color: var(--back);
    border-radius: 15px;
    padding-bottom: 5rem;
    padding-top: 1.875rem;
  }
}
.p-idx-company__wrap .c-card-box-wrap::after {
  content: "";
  display: block;
  display: inline-block;
  position: absolute;
  left: 20px;
  bottom: 0;
  background-image: url(/resource/images/idx_en_company.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 62px;
  height: 424px;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .p-idx-company__wrap .c-card-box-wrap::after {
    left: 0.7142857143vw;
    width: 4.4285714286vw;
    height: 30.2857142857vw;
  }
}
@media screen and (max-width: 1024px) {
  .p-idx-company__wrap .c-card-box-wrap::after {
    width: 303px;
    height: 46px;
    left: 0;
    bottom: 15px;
    background-image: url(/resource/images/idx_en_company_tbsp.svg);
  }
}
@media screen and (max-width: 599px) {
  .p-idx-company__wrap .c-card-box-wrap::after {
    width: 273px;
    height: 42px;
    bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-company__wrap .c-card-box-wrap .c-card-box__cont {
    padding: 0;
  }
}
.p-idx-company__wrap .c-card-box-wrap .c-card-box__cont::before {
  width: 86%;
}
@media screen and (max-width: 820px) {
  .p-idx-company__wrap .c-card-box-wrap .c-card-box__cont::before {
    width: 95.20202%;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-company__wrap .c-card-box-wrap .c-card-box__cont::before {
    content: none;
    padding: 0;
  }
}
.p-idx-company__wrap .c-card-box-wrap .c-card-box__cont .c-card-box__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 820px) {
  .p-idx-company__wrap .c-card-box-wrap .c-card-box__cont .c-card-box__inner {
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-company__wrap .c-card-box-wrap .c-card-box__cont .c-card-box__inner {
    width: 100%;
  }
}
.p-idx-company__wrap .c-card-box-wrap .c-card-box__img {
  top: -160px;
}
@media screen and (max-width: 820px) {
  .p-idx-company__wrap .c-card-box-wrap .c-card-box__img {
    top: -28px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-company__wrap .c-card-box-wrap .c-card-box__img {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    margin-top: 1.875rem;
    top: auto;
    right: auto;
  }
}

/* 事業内容
----------------------------------------------------------------- */
.p-idx-busi__wrap {
  position: relative;
  padding-bottom: 12.5rem;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .p-idx-busi__wrap {
    padding-bottom: 11.875rem;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-busi__wrap {
    padding-bottom: 8.75rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.p-idx-busi__wrap::before {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  bottom: 0;
  background-image: url(/resource/images/idx_en_business.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 62px;
  height: 417px;
}
@media screen and (max-width: 1400px) {
  .p-idx-busi__wrap::before {
    right: 1.4285714286vw;
    width: 4.4285714286vw;
    height: 29.7857142857vw;
  }
}
@media screen and (max-width: 1024px) {
  .p-idx-busi__wrap::before {
    width: 46px;
    height: 297px;
    -webkit-transform: rotate(-90deg) translate(100%, 0) scale(1, 1);
            transform: rotate(-90deg) translate(100%, 0) scale(1, 1);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    right: 0;
    bottom: 95px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-busi__wrap::before {
    width: 42px;
    height: 275px;
    bottom: 80px;
    right: 10px;
  }
}
.p-idx-busi__wrap .is-circle--orange {
  display: block;
  display: inline-block;
  position: absolute;
  bottom: -180px;
  left: -160px;
  width: 600px;
  height: 600px;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  .p-idx-busi__wrap .is-circle--orange {
    width: 700px;
    height: 700px;
    left: -298px;
    bottom: -354px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-busi__wrap .is-circle--orange {
    width: 500px;
    height: 500px;
    left: -260px;
    bottom: -219px;
  }
}
.p-idx-busi__wrap .c-flex {
  gap: calc(10.7142857143%);
  margin-bottom: 3.125rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 820px) {
  .p-idx-busi__wrap .c-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.p-idx-busi__wrap .c-flex .c-ttl-main {
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  text-shadow: none !important;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.p-idx-busi__wrap .c-flex p {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-idx-busi__wrap .p-idx-busi__cont .c-grid--md {
  gap: 1.875rem;
}
.p-idx-busi__wrap .p-idx-busi__cont .c-grid--md .c-grid-2clm {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 599px) {
  .p-idx-busi__wrap .p-idx-busi__cont .c-grid--md .c-grid-2clm {
    width: 100%;
  }
}
.p-idx-busi__wrap .p-idx-busi__cont .c-grid--md .c-grid-2clm:nth-child(2n) {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}
@media screen and (max-width: 820px) {
  .p-idx-busi__wrap .p-idx-busi__cont .c-grid--md .c-grid-2clm:nth-child(2n) {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
@media screen and (max-width: 599px) {
  .p-idx-busi__wrap .p-idx-busi__cont .c-grid--md .c-grid-2clm:nth-child(2n) {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@media screen and (max-width: 820px) {
  .p-idx-busi__wrap .p-idx-busi__cont .c-grid--md .c-card-img {
    height: 212px;
    padding: 1.25rem 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-busi__wrap .p-idx-busi__cont .c-grid--md .c-card-img {
    height: 226px;
    padding: 1.25rem 15px;
  }
}
.p-idx-busi__wrap .p-idx-busi__cont .c-grid--md .c-card-img:hover .c-ttl-sub .c-ttl-sub__ja::before {
  opacity: 0;
}
.p-idx-busi__wrap .p-idx-busi__cont .c-grid--md .c-card-img:hover .c-ttl-sub .c-ttl-sub__ja::after {
  opacity: 1;
}

/* 取り組み
----------------------------------------------------------------- */
.p-idx-eff__wrap {
  position: relative;
  padding-top: 5rem;
  z-index: 2;
}
@media screen and (max-width: 820px) {
  .p-idx-eff__wrap {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-eff__wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.p-idx-eff__wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  top: 0;
  background-color: var(--back);
  width: calc(86.0294117647%);
  height: calc(92.1806167401%);
  z-index: 2;
  border-radius: 1.25rem;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  .p-idx-eff__wrap::before {
    left: 14px;
    height: 100%;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-eff__wrap::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 20px);
  }
}
.p-idx-eff__wrap::after {
  content: "";
  display: block;
  display: inline-block;
  position: absolute;
  left: 50px;
  bottom: calc(7.8193832599%);
  background-image: url(/resource/images/idx_en_eff.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 62px;
  height: 382px;
}
@media screen and (max-width: 1400px) {
  .p-idx-eff__wrap::after {
    left: 2.1428571429vw;
    width: 4.4285714286vw;
    height: 27.2857142857vw;
  }
}
@media screen and (max-width: 1024px) {
  .p-idx-eff__wrap::after {
    width: 272px;
    height: 46px;
    left: 14px;
    bottom: 15px;
    background-image: url(/resource/images/idx_en_efforts_tbsp.svg);
  }
}
@media screen and (max-width: 599px) {
  .p-idx-eff__wrap::after {
    width: 224px;
    height: 42px;
    bottom: 20px;
    left: 10px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-eff__wrap .l-container--lg {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.p-idx-eff__cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}
@media screen and (max-width: 820px) {
  .p-idx-eff__cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-eff__cont {
    gap: 1.875rem;
  }
}
.p-idx-eff__cont .p-idx-eff__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 820px) {
  .p-idx-eff__cont .p-idx-eff__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-eff__cont .p-idx-eff__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}
.p-idx-eff__cont .p-idx-eff__inner .c-ttl-ico {
  font-size: 2.25rem;
  color: var(--white);
  position: absolute;
  left: 30px;
  bottom: 24px;
  margin: 0;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding-left: 26px;
}
@media screen and (max-width: 820px) {
  .p-idx-eff__cont .p-idx-eff__inner .c-ttl-ico {
    font-size: 1.625rem;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-eff__cont .p-idx-eff__inner .c-ttl-ico {
    padding-left: 20px;
    font-size: 1.8125rem;
  }
}
.p-idx-eff__cont .p-idx-eff__inner .c-ttl-ico::before, .p-idx-eff__cont .p-idx-eff__inner .c-ttl-ico::after {
  background-image: url(/resource/images/ico_en_white.svg);
  width: 18px;
  height: 18px;
  top: 17px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
@media screen and (max-width: 820px) {
  .p-idx-eff__cont .p-idx-eff__inner .c-ttl-ico::before, .p-idx-eff__cont .p-idx-eff__inner .c-ttl-ico::after {
    width: 12px;
    height: 12px;
    top: 13px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-eff__cont .p-idx-eff__inner .c-ttl-ico::before, .p-idx-eff__cont .p-idx-eff__inner .c-ttl-ico::after {
    width: 12px;
    height: 12px;
    top: 15px;
  }
}
.p-idx-eff__cont .p-idx-eff__inner .c-ttl-ico::after {
  background-image: url(/resource/images/ico_en_orange.svg);
  opacity: 0;
}
.p-idx-eff__cont .p-idx-eff__inner:first-child {
  width: calc(63.3928571429%);
}
@media screen and (max-width: 820px) {
  .p-idx-eff__cont .p-idx-eff__inner:first-child {
    width: 100%;
  }
}
.p-idx-eff__cont .p-idx-eff__inner:first-child .c-card-img {
  height: 339px;
  display: block;
}
@media screen and (max-width: 820px) {
  .p-idx-eff__cont .p-idx-eff__inner:first-child .c-card-img {
    width: 50%;
    height: 218px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-eff__cont .p-idx-eff__inner:first-child .c-card-img {
    width: 100%;
    width: 100%;
    height: 197px;
  }
}
.p-idx-eff__cont .p-idx-eff__inner:last-child {
  width: calc(33.9285714286%);
}
@media screen and (max-width: 820px) {
  .p-idx-eff__cont .p-idx-eff__inner:last-child {
    width: 100%;
  }
}
.p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img {
  height: 214px;
}
@media screen and (max-width: 820px) {
  .p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img {
    width: 33%;
    height: 143px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img {
    width: 100%;
    height: 197px;
  }
}
.p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img .c-ttl-ico {
  font-size: 1.9375rem;
}
@media screen and (max-width: 820px) {
  .p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img .c-ttl-ico {
    font-size: 1.4375rem;
    left: 15px;
    bottom: 20px;
    padding-left: 17px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img .c-ttl-ico {
    font-size: 1.8125rem;
    left: 15px;
    bottom: 20px;
    padding-left: 20px;
  }
}
.p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img .c-ttl-ico::before, .p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img .c-ttl-ico::after {
  top: 14px;
}
@media screen and (max-width: 820px) {
  .p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img .c-ttl-ico::before, .p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img .c-ttl-ico::after {
    top: 12px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img .c-ttl-ico::before, .p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img .c-ttl-ico::after {
    top: 15px;
  }
}
.p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img .c-card-img__btn-green {
  bottom: -29px;
  right: -29px;
  width: 79px;
  height: 79px;
  background-size: 16px auto;
  background-position: 20px 20px;
}
@media screen and (max-width: 820px) {
  .p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img .c-card-img__btn-green {
    width: 63px;
    height: 63px;
    background-size: 12px auto;
    background-position: 15px 15px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-eff__cont .p-idx-eff__inner:last-child .c-card-img .c-card-img__btn-green {
    width: 60px;
    height: 60px;
    bottom: -20px;
    right: -20px;
    background-size: 12px auto;
    background-position: 16px 15px;
  }
}
.p-idx-eff__cont .p-idx-eff__inner .c-card-img:hover .c-ttl-ico:before {
  opacity: 0;
}
.p-idx-eff__cont .p-idx-eff__inner .c-card-img:hover .c-ttl-ico:after {
  opacity: 1;
}

/* 採用情報
----------------------------------------------------------------- */
.p-idx-recruit__wrap {
  position: relative;
  z-index: 1;
}
.p-idx-recruit__wrap .is-circle--orange {
  content: "";
  display: block;
  position: absolute;
  bottom: -380px;
  right: -263px;
  width: 800px;
  height: 800px;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  .p-idx-recruit__wrap .is-circle--orange {
    width: 500px;
    height: 500px;
    right: -235px;
    bottom: -100px;
  }
}
@media screen and (max-width: 599px) {
  .p-idx-recruit__wrap .is-circle--orange {
    width: 350px;
    height: 350px;
    right: -185px;
    bottom: -111px;
  }
}

/* お問い合わせ
----------------------------------------------------------------- */
.c-nav-contact__wrap.p-idx-contact__wrap {
  padding: 6.25rem 0;
}
@media screen and (max-width: 820px) {
  .c-nav-contact__wrap.p-idx-contact__wrap {
    padding: 3.75rem 0 5rem;
  }
}
.c-nav-contact__wrap.p-idx-contact__wrap::after {
  width: 62px;
  height: 398px;
}
@media screen and (max-width: 1024px) {
  .c-nav-contact__wrap.p-idx-contact__wrap::after {
    width: 46px;
    height: 284px;
    -webkit-transform: rotate(-90deg) translate(100%, 0) scale(1, 1);
            transform: rotate(-90deg) translate(100%, 0) scale(1, 1);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    right: 0;
    bottom: 17px;
    content: "";
  }
}
@media screen and (max-width: 599px) {
  .c-nav-contact__wrap.p-idx-contact__wrap::after {
    width: 42px;
    height: 263px;
    bottom: 19px;
    right: 0px;
  }
}
.c-nav-contact__wrap.p-idx-contact__wrap .p-idx-contact__cont--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 820px) {
  .c-nav-contact__wrap.p-idx-contact__wrap .p-idx-contact__cont--grid {
    gap: 2rem 1.25rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .c-nav-contact__wrap.p-idx-contact__wrap .p-idx-contact__cont--grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 820px) {
  .c-nav-contact__wrap.p-idx-contact__wrap .p-idx-contact__cont--grid .c-nav-contact__cont__clm:last-child {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 599px) {
  .c-nav-contact__wrap.p-idx-contact__wrap .p-idx-contact__cont--grid .c-nav-contact__cont__clm {
    grid-column: auto;
  }
}

/* バナーエリア
----------------------------------------------------------------- */
.p-idx-bnr__wrap .p-idx-bnr__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
}
.p-idx-bnr__wrap .p-idx-bnr__flex .p-idx-bnrclm {
  max-width: 310px;
}
.p-idx-bnr__wrap .p-idx-bnr__flex a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-idx-bnr__wrap .p-idx-bnr__flex a:hover {
  opacity: 0.8;
}

/* ==========================================================================
プライバシーポリシー
========================================================================== */
/* 個人情報保護方針
----------------------------------------------------------------- */
/* 適切な取扱いに関する基本方針
----------------------------------------------------------------- */
.p-privacy-policy__wrap .c-card-belt__body--back,
.p-privacy-ident__wrap .c-card-belt__body--back {
  padding: 1.25rem 2.5rem;
}
@media screen and (max-width: 599px) {
  .p-privacy-policy__wrap .c-card-belt__body--back,
  .p-privacy-ident__wrap .c-card-belt__body--back {
    padding: 0 0.9375rem 1.25rem;
  }
}
.p-privacy-policy__wrap .c-card-belt__body--back .c-tb-pattern3 tr:last-child,
.p-privacy-ident__wrap .c-card-belt__body--back .c-tb-pattern3 tr:last-child {
  border-bottom: none;
}

/* ==========================================================================
協力会社
========================================================================== */
/* 請求書発行の手順
----------------------------------------------------------------- */
.p-partner-invoicing__wrap .p-partner-invoicing_grid {
  gap: 20px 20px;
}

/* ==========================================================================
company-about-小川工業について
========================================================================== */
/* 社長挨拶
----------------------------------------------------------------- */
.p-about-messa__name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 1236px) {
  .p-about-messa__name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-about-messa__name .c-flex {
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 287px;
}
@media screen and (max-width: 820px) {
  .p-about-messa__name .c-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-about-messa__name__pre {
  font-weight: bold;
  line-height: 2;
  width: 112px;
}

.p-about-messa__name__ja {
  font-weight: bold;
  line-height: 2;
  font-size: 1.4375rem;
}

.p-about-messa__name__en {
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-weight: 600;
  font-size: 12px;
  color: var(--black-200);
}

/* 経営理念
----------------------------------------------------------------- */
.p-about-phil__txt {
  font-size: 1.4375rem;
}
@media screen and (max-width: 820px) {
  .p-about-phil__txt {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 599px) {
  .p-about-phil__txt {
    font-size: 1rem;
  }
}

/* 経営計画
----------------------------------------------------------------- */
@media screen and (max-width: 599px) {
  .p-about-plan__wrap .c-ttl-ico {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__wrap .c-ttl-dot {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__wrap h4 {
    font-size: 1.8125rem;
  }
}
.p-about-plan__wrap .c-list-dot li {
  line-height: 1.6;
}
.p-about-plan__wrap .c-list-dot li::before {
  top: 11px;
}
@media screen and (max-width: 820px) {
  .p-about-plan__wrap .bg-back--radi--lg {
    padding: 3.75rem 0 6.25rem;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__wrap .bg-back--radi--lg {
    padding: 2.5rem 0 5rem;
  }
}
@media screen and (max-width: 820px) {
  .p-about-plan__wrap .c-card-belt .c-card-belt__head--main h5 {
    font-size: 1.8125rem;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__wrap .c-card-belt .c-card-belt__head--main h5 {
    font-size: 1.625rem;
  }
}
.p-about-plan__wrap .c-card-belt .c-card-belt__body--white--md {
  padding: 2.5rem;
}
@media screen and (max-width: 599px) {
  .p-about-plan__wrap .c-card-belt .c-card-belt__body--white--md {
    padding: 1.875rem 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__wrap .c-card-belt .c-card-belt__body--white--md .c-card--md {
    border-radius: 10px;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__wrap .c-card-belt .c-card-belt__body--white--md .c-card--sm {
    border-radius: 10px;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__wrap .c-card-belt .c-card-belt__body--white--md .c-card--sm .c-card--sm {
    border-radius: 5px;
  }
}

.p-about-plan__txt-big {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (max-width: 599px) {
  .p-about-plan__txt-big {
    font-size: 1.8125rem;
  }
}

.p-about-plan__sec__end-arrow {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .p-about-plan__sec__end-arrow {
    width: 80px;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__sec__end-arrow {
    margin-top: 20px;
  }
}

.p-about-plan__sec__end-txt {
  text-align: center;
  color: var(--main);
  font-weight: 700;
  line-height: 1.4;
  font-size: 2.25rem;
  letter-spacing: 0.025em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 599px) {
  .p-about-plan__sec__end-txt {
    font-size: 2rem;
  }
}

.p-about-plan__flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .p-about-plan__flex {
    margin: 0;
    gap: 17px;
  }
}
@media screen and (max-width: 820px) {
  .p-about-plan__flex {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__flex {
    gap: 30px;
  }
}
.p-about-plan__flex .c-list-dot {
  margin: 0 0 0 2.5rem;
  gap: 15px;
  min-width: 280px;
}
@media screen and (max-width: 1200px) {
  .p-about-plan__flex .c-list-dot {
    margin: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-about-plan__flex .c-list-dot {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__flex .c-list-dot {
    gap: 15px;
    min-width: initial;
  }
}
.p-about-plan__flex .c-list-dot li {
  font-size: 1.1875rem;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .p-about-plan__flex .c-list-dot li {
    font-size: 1rem;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__flex .c-list-dot li:before {
    top: 10px;
  }
}

.p-about-plan__flex__arrow {
  height: auto;
}
@media screen and (max-width: 820px) {
  .p-about-plan__flex__arrow {
    width: 40px;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__flex__arrow {
    width: 55px;
  }
}

.p-about-plan__flex__right {
  width: 360px;
  height: auto;
  aspect-ratio: 360/322;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 2.5rem;
}
@media screen and (max-width: 1200px) {
  .p-about-plan__flex__right {
    margin-left: 1.25rem;
  }
}
.p-about-plan__flex__right img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 820px) {
  .p-about-plan__flex__right {
    margin-left: 10px;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__flex__right {
    margin-left: 0;
    max-width: initial;
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .p-about-plan__vision__wrap .c-card--md {
    padding: 1.25rem;
  }
}

@media screen and (max-width: 599px) {
  .p-about-plan__slogan__wrap .c-card--sm {
    padding: 1.25rem 15px;
  }
}

@media screen and (max-width: 599px) {
  .p-about-rinen__wrap .c-card--sm {
    padding: 1.25rem;
  }
}
.p-about-rinen__wrap .c-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 599px) {
  .p-about-rinen__wrap .c-flex {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.p-about-rinen__wrap .c-flex .txt-main {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.p-about-rinen__wrap .c-flex .c-list-dot {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 599px) {
  .p-about-jinteki__wrap .c-card--sm {
    padding: 1.25rem;
  }
}

.p-about-jinteki__flex {
  gap: 60px;
}
@media screen and (max-width: 820px) {
  .p-about-jinteki__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 599px) {
  .p-about-jinteki__flex {
    gap: 40px;
  }
}
.p-about-jinteki__flex .p-about-jinteki__left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .p-about-jinteki__flex .p-about-jinteki__left {
    gap: 20px;
  }
}
.p-about-jinteki__flex .p-about-jinteki__left .c-card--sm {
  padding: 1.25rem;
}
.p-about-jinteki__flex .p-about-jinteki__left .c-flex {
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 599px) {
  .p-about-jinteki__flex .p-about-jinteki__left .c-flex {
    gap: 10px;
  }
}
.p-about-jinteki__flex .p-about-jinteki__left .c-flex .p-about-jinteki__left__ttl {
  color: var(--main);
  font-weight: 700;
  font-size: 1.1875rem;
  line-height: 1.4;
  width: 100px;
}
@media screen and (max-width: 599px) {
  .p-about-jinteki__flex .p-about-jinteki__left .c-flex .p-about-jinteki__left__ttl {
    width: 100%;
  }
}
.p-about-jinteki__flex .p-about-jinteki__left .c-flex .c-list-dot {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-about-jinteki__flex .p-about-jinteki__left .c-flex .c-list-dot .txt-xsm {
  font-size: 11px;
}
.p-about-jinteki__flex .p-about-jinteki__right {
  width: 38%;
}
@media screen and (max-width: 820px) {
  .p-about-jinteki__flex .p-about-jinteki__right {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}
.p-about-jinteki__flex .p-about-jinteki__right img {
  aspect-ratio: 1;
  width: 100%;
}

.p-about-plan__flex.p-about-jinteki__engagement {
  margin-left: 40px;
  margin-right: 40px;
  width: auto;
  gap: 28px;
}
@media screen and (max-width: 820px) {
  .p-about-plan__flex.p-about-jinteki__engagement {
    margin-left: 0px;
    margin-right: 0px;
    gap: 0;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__flex.p-about-jinteki__engagement {
    gap: 30px;
  }
}
.p-about-plan__flex.p-about-jinteki__engagement .c-list-dot {
  margin: 0 15px;
  gap: 10px;
  min-width: 211px;
}
@media screen and (max-width: 820px) {
  .p-about-plan__flex.p-about-jinteki__engagement .c-list-dot {
    min-width: 240px;
    margin: 0;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__flex.p-about-jinteki__engagement .c-list-dot {
    min-width: initial;
  }
}
.p-about-plan__flex.p-about-jinteki__engagement .c-list-dot li {
  font-weight: 500;
}
.p-about-plan__flex.p-about-jinteki__engagement .p-about-plan__flex__right {
  border-radius: 100%;
  background-color: var(--main);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 320px;
  aspect-ratio: 1;
  height: auto;
}
@media screen and (max-width: 820px) {
  .p-about-plan__flex.p-about-jinteki__engagement .p-about-plan__flex__right {
    width: 240px;
    max-width: 240px;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__flex.p-about-jinteki__engagement .p-about-plan__flex__right {
    max-width: initial;
    width: 100%;
  }
}
.p-about-plan__flex.p-about-jinteki__engagement .p-about-plan__flex__right p {
  color: var(--white);
  text-align: center;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1200px) {
  .p-about-plan__flex.p-about-jinteki__engagement .p-about-plan__flex__right p {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .p-about-plan__flex.p-about-jinteki__engagement .p-about-plan__flex__right p {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 820px) {
  .p-about-plan__flex.p-about-jinteki__engagement .p-about-plan__flex__right p {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__flex.p-about-jinteki__engagement .p-about-plan__flex__right p {
    font-size: 6.9vw;
  }
}

.p-about-plan__jigyou__wrap .p-about-plan__zyuuten__list {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-about-plan__jigyou__wrap .p-about-plan__zyuuten__list li.c-ttl-num {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .p-about-plan__jigyou__wrap .p-about-plan__zyuuten__list li.c-ttl-num {
    margin-top: 10px;
  }
}
.p-about-plan__jigyou__wrap .p-about-plan__zyuuten__list li.c-ttl-num:first-child {
  margin-top: 0;
}
@media screen and (max-width: 599px) {
  .p-about-plan__jigyou__wrap .p-about-plan__zyuuten__list li.c-ttl-num {
    font-size: 1.1875rem;
  }
}
.p-about-plan__jigyou__wrap .p-about-plan__zyuuten__list li.c-ttl-num .c-ttl-num__ico {
  margin-top: 4px;
}
@media screen and (max-width: 599px) {
  .p-about-plan__jigyou__wrap .p-about-plan__zyuuten__list li.c-ttl-num .c-ttl-num__ico {
    width: 20px;
    height: 20px;
  }
}
.p-about-plan__jigyou__wrap .p-about-plan__zyuuten__arrow {
  margin: 20px 0;
}
@media screen and (max-width: 599px) {
  .p-about-plan__jigyou__wrap .p-about-plan__zyuuten__arrow {
    margin: 10px 0;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__jigyou__wrap .p-about-plan__zyuuten__arrow img {
    width: 30px;
  }
}
.p-about-plan__jigyou__wrap .p-about-plan__kakujigyou__txt {
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .p-about-plan__jigyou__wrap .c-card--md {
    padding: 1.25rem;
  }
}
.p-about-plan__jigyou__wrap .c-card--md .c-flex {
  gap: 2.5rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 599px) {
  .p-about-plan__jigyou__wrap .c-card--md .c-flex {
    gap: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-about-plan__jigyou__wrap .c-card--md .c-flex .p-about-plan__jigyou__ttl {
  color: var(--main);
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media screen and (max-width: 599px) {
  .p-about-plan__jigyou__wrap .c-card--md .c-flex .p-about-plan__jigyou__ttl {
    font-size: 1.625rem;
  }
}
.p-about-plan__jigyou__wrap .c-card--md .c-flex p {
  font-size: 1.1875rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .p-about-plan__jigyou__wrap .c-card--md .c-flex p {
    font-size: 1rem;
  }
}

.p-about-plan__keiei-img {
  margin-left: 80px;
  margin-right: 80px;
}
@media screen and (max-width: 820px) {
  .p-about-plan__keiei-img {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 599px) {
  .p-about-plan__keiei-img {
    margin: 0;
  }
}

@media screen and (max-width: 599px) {
  .p-about-plan__chiiki__wrap .c-card--md {
    padding: 1.25rem;
  }
}
.p-about-plan__chiiki__wrap .c-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 599px) {
  .p-about-plan__chiiki__wrap .c-flex {
    gap: 20px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-about-plan__chiiki__wrap .c-flex .p-about-plan__chiiki__ttl {
  width: 180px;
  color: var(--main);
}
@media screen and (max-width: 599px) {
  .p-about-plan__chiiki__wrap .c-flex .p-about-plan__chiiki__ttl {
    width: 100%;
  }
}
.p-about-plan__chiiki__wrap .c-flex .c-list-dot {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ==========================================================================
company-outline-会社概要
========================================================================== */
/* 会社概要
----------------------------------------------------------------- */
.p-out-over__wrap .c-tb-pattern1 .c-list-dot {
  margin-top: 10px;
}
.p-out-over__wrap .c-tb-pattern1 .c-list-dot li {
  font-weight: normal;
}

/* 沿革
----------------------------------------------------------------- */
.p-out-his__wrap .c-ttl-ico {
  margin-bottom: 1.875rem;
}

@media screen and (max-width: 599px) {
  .p-out-his__cont {
    margin-bottom: 0;
  }
}
.p-out-his__cont .c-card--sm {
  margin-bottom: 0.75rem;
  padding: 1.5rem 1.875rem;
}
@media screen and (max-width: 820px) {
  .p-out-his__cont .c-card--sm {
    padding: 1.25rem 1.875rem;
  }
}
@media screen and (max-width: 599px) {
  .p-out-his__cont .c-card--sm {
    padding: 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .p-out-his__cont .c-card--sm:last-child {
    margin-bottom: 0;
  }
}
.p-out-his__cont .c-card--sm:last-child .p-out-his__row::after {
  content: none;
}
@media screen and (max-width: 820px) {
  .p-out-his__cont .c-card--sm:nth-last-child(2) .p-out-his__row::after {
    height: 100px;
  }
}
@media screen and (max-width: 599px) {
  .p-out-his__cont .c-card--sm:nth-last-child(2) .p-out-his__row::after {
    height: 134px;
  }
}

.p-out-his__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6.12%;
  padding-left: 26px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .p-out-his__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-out-his__row::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--main);
  width: 6px;
  height: 6px;
  border-radius: 100px;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .p-out-his__row::before {
    top: 20px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-out-his__row::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  background-color: var(--black-200);
  width: 1px;
  height: 102px;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .p-out-his__row::after {
    left: 2.5px;
    height: 240%;
  }
}
@media screen and (max-width: 599px) {
  .p-out-his__row::after {
    top: 20px;
    height: 178%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-out-his__row dt {
  min-width: 210px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .p-out-his__row dt {
    min-width: 200px;
  }
}
.p-out-his__row dd p {
  line-height: 1.6;
}

.p-out-his__cont__year {
  color: var(--main);
  line-height: 2;
  font-weight: 700;
  font-size: 1.4375rem;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-out-his__cont__year .year {
  font-size: 14px;
  letter-spacing: 0;
}
.p-out-his__cont__year .p-out-his__cont__year--sm {
  font-size: 14px;
  font-weight: 500;
}

.p-out-his__cont__month {
  color: var(--main);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 2;
}

/* アクセス
----------------------------------------------------------------- */
.p-out-acc__wrap .c-card--md .c-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
.p-out-acc__wrap .c-card--md .c-flex .p-out-acc__card__txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-out-acc__wrap .c-card--md .c-flex .p-out-acc__card__img {
  max-width: 370px;
  width: 100%;
}
@media screen and (min-width: 1401px) {
  .p-out-acc__wrap .c-flex-img__wrap .c-flex-img__2clm-img {
    max-width: 540px;
  }
}
@media screen and (max-width: 599px) {
  .p-out-acc__wrap .c-flex-img__wrap .c-flex-img__2clm-img {
    max-width: initial;
  }
}

/* 支店・営業所
----------------------------------------------------------------- */
/* 関連会社
----------------------------------------------------------------- */
.p-out-off__wrap .c-card-belt__body--back,
.p-out-ass__wrap .c-card-belt__body--back {
  padding: 2.5rem;
}
@media screen and (max-width: 820px) {
  .p-out-off__wrap .c-card-belt__body--back,
  .p-out-ass__wrap .c-card-belt__body--back {
    padding: 1.875rem;
  }
}
@media screen and (max-width: 599px) {
  .p-out-off__wrap .c-card-belt__body--back,
  .p-out-ass__wrap .c-card-belt__body--back {
    padding-top: 10px;
    padding-right: 1.25rem;
    padding-bottom: 1.875rem;
    padding-left: 1.25rem;
  }
}
.p-out-off__wrap .c-tb-pattern3 tr:last-child,
.p-out-ass__wrap .c-tb-pattern3 tr:last-child {
  border-bottom: none;
}
.p-out-off__wrap .c-tb-pattern3 tr th,
.p-out-ass__wrap .c-tb-pattern3 tr th {
  line-height: 1.6;
  width: 25.5%;
  width: 98px;
  padding-right: 0;
}
@media screen and (max-width: 820px) {
  .p-out-off__wrap .c-tb-pattern3 tr th,
  .p-out-ass__wrap .c-tb-pattern3 tr th {
    width: 80px;
  }
}
@media screen and (max-width: 599px) {
  .p-out-off__wrap .c-tb-pattern3 tr th,
  .p-out-ass__wrap .c-tb-pattern3 tr th {
    width: 100%;
  }
}
.p-out-off__wrap .c-tb-pattern3 tr td,
.p-out-ass__wrap .c-tb-pattern3 tr td {
  line-height: 1.8;
}

/* ==========================================================================
company-outline-主な表彰実績
========================================================================== */
/* ページ全体
----------------------------------------------------------------- */
.p-comm .c-tb-pattern1 tr {
  border-bottom: 1px solid var(--white);
}
.p-comm .c-tb-pattern1 tr:last-child {
  border-bottom: 0px;
}
@media screen and (max-width: 599px) {
  .p-comm .c-tb-pattern1 tr:first-child th,
  .p-comm .c-tb-pattern1 tr:first-child td {
    padding-top: 0;
  }
}
.p-comm .c-tb-pattern1 tr th {
  width: 39.1%;
}
@media screen and (max-width: 599px) {
  .p-comm .c-tb-pattern1 tr th {
    width: auto;
  }
}
.p-comm .c-card-belt .c-card-belt__body--back {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 820px) {
  .p-comm .c-card-belt .c-card-belt__body--back {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .p-comm .c-card-belt .c-card-belt__body--back {
    padding-right: 1.25rem;
    padding-bottom: 1.875rem;
    padding-left: 1.25rem;
  }
}

/* 国土交通省
----------------------------------------------------------------- */
/* 埼玉
----------------------------------------------------------------- */
/* ==========================================================================
company-policy-主な表彰実績
========================================================================== */
/* 品質・環境方針
----------------------------------------------------------------- */
/* 労働安全衛生方針
----------------------------------------------------------------- */
/* コンプライアンス
----------------------------------------------------------------- */
/* ==========================================================================
business-civil engineering-土木事業
========================================================================== */
/* 施工事例
----------------------------------------------------------------- */
.p-civil-works__wrap .c-card-thumb .c-card-thumb__head {
  height: 209px;
}
@media screen and (max-width: 820px) {
  .p-civil-works__wrap .c-card-thumb .c-card-thumb__head {
    height: auto;
  }
}
.p-civil-works__wrap .c-card-thumb .c-card-thumb__body {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  padding: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* 表彰実績
----------------------------------------------------------------- */
/* ==========================================================================
business-construction-建設事業
========================================================================== */
/* 施工事例
----------------------------------------------------------------- */
.p-const-works__list {
  gap: 1.25rem 1.25rem;
}

/* システム建築について
----------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .p-const-system__wrap .l-container__inner--sp-bottom-lg {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .p-const-system__wrap .c-flex-img__wrap {
    padding: 0;
    background-color: initial;
  }
}
@media screen and (max-width: 599px) {
  .p-const-system__wrap .c-flex-img__wrap .c-flex-img__box {
    padding: 30px 15px;
    padding-top: 78%;
    margin-top: 0;
  }
  .p-const-system__wrap .c-flex-img__wrap .c-flex-img__box:before {
    content: "";
  }
}
@media screen and (max-width: 599px) {
  .p-const-system__wrap .c-flex-img__wrap .c-flex-img__2clm-img--sm {
    position: absolute;
    top: 140px;
    left: 50%;
    margin: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 90%;
  }
}

/* 表彰実績バナー
----------------------------------------------------------------- */
/* ==========================================================================
建築施工事例-一覧ページ
========================================================================== */
/* ==========================================================================
建築施工事例-個別ページ
========================================================================== */
.mySwiper_thumb {
  width: 100%;
  aspect-ratio: 980/550;
}
.mySwiper_thumb .swiper-wrapper {
  width: 100%;
}
.mySwiper_thumb .swiper-wrapper .p-const-works__thumb.swiper-slide {
  border-radius: 1.25rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .mySwiper_thumb .swiper-wrapper .p-const-works__thumb.swiper-slide {
    border-radius: 15px;
  }
}
.mySwiper_thumb .swiper-wrapper .p-const-works__thumb.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: initial;
  border: none;
}

.mySwiper_thumbs {
  width: 100%;
  max-width: initial;
  margin-top: 2.5rem;
}
@media screen and (max-width: 599px) {
  .mySwiper_thumbs {
    margin-top: 1.25rem;
  }
}
.mySwiper_thumbs .swiper-wrapper .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 237.25/133;
}
@media screen and (max-width: 599px) {
  .mySwiper_thumbs .swiper-wrapper .swiper-slide {
    border-radius: 6px;
  }
}
.mySwiper_thumbs .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;
}
.mySwiper_thumbs .swiper-wrapper .swiper-slide:hover img {
  opacity: 0.8;
}

.p-const-works_detail .c-tb-pattern2 tr {
  border-bottom: 1px solid var(--black-100);
}
.p-const-works_detail .c-tb-pattern2 tr:first-child {
  border-top: 1px solid var(--black-100);
}

/* ==========================================================================
business-system Construction-システム建築
========================================================================== */
/* システム建とは
----------------------------------------------------------------- */
.p-sys-yess__wrap .c-card-thumb .c-card-thumb__body {
  padding: 2.5rem;
}
@media screen and (max-width: 599px) {
  .p-sys-yess__wrap .c-card-thumb .c-card-thumb__body {
    padding: 1.25rem;
  }
}

/* yess建築とは
----------------------------------------------------------------- */
.p-sys-about__wrap {
  height: 100%;
  width: 100%;
  aspect-ratio: 1360/460;
}
@media screen and (min-width: 1401px) {
  .p-sys-about__wrap {
    aspect-ratio: initial;
  }
}
@media screen and (max-width: 1200px) {
  .p-sys-about__wrap {
    aspect-ratio: initial;
  }
}
.p-sys-about__wrap .l-container__inner--sp-bottom-lg {
  height: 100%;
}
@media screen and (min-width: 1401px) {
  .p-sys-about__wrap .l-container__inner--sp-bottom-lg {
    height: 460px;
  }
}
@media screen and (max-width: 1024px) {
  .p-sys-about__wrap .l-container__inner--sp-bottom-lg {
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 820px) {
  .p-sys-about__wrap .l-container__inner--sp-bottom-lg {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .p-sys-about__wrap .l-container__inner--sp-bottom-lg {
    padding-bottom: 90px;
  }
}
.p-sys-about__wrap .c-flex-img__wrap .c-flex-img__2clm--sm {
  width: calc(45.7446808511%);
}
@media screen and (max-width: 599px) {
  .p-sys-about__wrap .c-flex-img__wrap .c-flex-img__2clm--sm {
    width: 100%;
  }
}
.p-sys-about__wrap .c-flex-img__wrap .c-flex-img__2clm-img--sm {
  width: calc(50%);
}
@media screen and (max-width: 599px) {
  .p-sys-about__wrap .c-flex-img__wrap .c-flex-img__2clm-img--sm {
    width: 100%;
  }
}

/* 主な特徴
----------------------------------------------------------------- */
@media screen and (max-width: 820px) {
  .p-sys-features__wrap.bg-back--radi {
    padding-bottom: 6.25rem;
  }
}
@media screen and (max-width: 599px) {
  .p-sys-features__wrap.bg-back--radi {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 820px) {
  .p-sys-features__wrap.bg-back--radi .c-card--md-lg {
    padding: 1.875rem;
  }
}
@media screen and (max-width: 599px) {
  .p-sys-features__wrap.bg-back--radi .c-card--md-lg {
    padding: 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .p-sys-features__wrap.bg-back--radi .c-card--md-lg .c-ttl-num .c-ttl-num__ico {
    width: 24px;
    height: 24px;
    margin-top: 6px;
  }
}
.p-sys-features__wrap.bg-back--radi .c-card--md-lg .c-flex--center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 599px) {
  .p-sys-features__wrap.bg-back--radi .c-card--md-lg .c-flex--center {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.25rem;
  }
}

/* お問い合わせ
----------------------------------------------------------------- */
.p-sys-contact__wrap .c-card--lg .c-flex {
  gap: 5rem;
}
@media screen and (max-width: 820px) {
  .p-sys-contact__wrap .c-card--lg .c-flex {
    gap: 40px;
  }
}
.p-sys-contact__wrap .c-card--lg .c-flex .txt-main {
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .p-sys-contact__wrap .c-card--lg .c-flex .txt-main {
    margin-top: 0;
  }
}
.p-sys-contact__wrap .c-tb-pattern2 tr {
  border-top: none;
}
.p-sys-contact__wrap .c-tb-pattern2 tr:last-child {
  border-bottom: none;
}
.p-sys-contact__wrap .c-tb-pattern2 .c-btn-main {
  max-width: 160px;
}
.p-sys-contact__wrap .c-tb-pattern2 .c-btn-main a {
  font-size: 12px;
  height: 43px;
  line-height: 1;
}
.p-sys-contact__wrap .c-tb-pattern2 .c-btn-main a span {
  width: 16px;
  height: 16px;
  background-size: 6px auto;
  right: 12px;
}
.p-sys-contact__wrap .c-tb-pattern2 .c-btn-main:hover a span {
  right: 10px;
}

/* もっと詳しくお知りになりたい方
----------------------------------------------------------------- */
@media screen and (max-width: 599px) {
  .p-sys-more__wrap .c-flex--sm {
    gap: 30px;
  }
}
.p-sys-more__wrap .c-flex--sm .c-flex-3clm a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-sys-more__wrap .c-flex--sm .c-flex-3clm a:hover img {
  opacity: 0.7;
}

/* ==========================================================================
business-Housing & Renovation - 住宅・リフォーム
========================================================================== */
/* 小川ホームズのこだわり
----------------------------------------------------------------- */
.p-housing-commit__wrap .c-grid--md {
  gap: 1.875rem 2.5rem;
}
.p-housing-commit__wrap .c-card-belt .c-card-belt__body--white {
  padding-right: 1.5625rem;
  padding-bottom: 1.625rem;
  padding-left: 1.875rem;
}

/* OGAWA HOMES
----------------------------------------------------------------- */
/* ==========================================================================
business-materials - 生コン・アスコン
========================================================================== */
/* 共通スタイル
----------------------------------------------------------------- */
.p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex,
.p-materials .c-card-belt--md .c-card-belt__body--white .c-flex {
  gap: 1.875rem;
}
@media screen and (max-width: 599px) {
  .p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex,
  .p-materials .c-card-belt--md .c-card-belt__body--white .c-flex {
    gap: 10px;
  }
}
.p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex .c-card-belt__body__ttl--sm,
.p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-card-belt__body__ttl--sm {
  margin-top: 8px;
}
@media screen and (max-width: 820px) {
  .p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex .c-card-belt__body__ttl--sm,
  .p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-card-belt__body__ttl--sm {
    width: 25%;
  }
}
@media screen and (max-width: 599px) {
  .p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex .c-card-belt__body__ttl--sm,
  .p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-card-belt__body__ttl--sm {
    width: 100%;
  }
}
.p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex .c-tb-pattern3 tr,
.p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-tb-pattern3 tr {
  border-bottom: 1px solid var(--black-100);
}
.p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex .c-tb-pattern3 tr:last-child,
.p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-tb-pattern3 tr:last-child {
  border-bottom: none;
}
.p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex .c-tb-pattern3 tr th,
.p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex .c-tb-pattern3 tr td,
.p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-tb-pattern3 tr th,
.p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-tb-pattern3 tr td {
  padding: 0.625rem;
}
@media screen and (max-width: 599px) {
  .p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex .c-tb-pattern3 tr th,
  .p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex .c-tb-pattern3 tr td,
  .p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-tb-pattern3 tr th,
  .p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-tb-pattern3 tr td {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex .c-tb-pattern3 tr th,
.p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-tb-pattern3 tr th {
  line-height: 1.4;
  width: 60px;
}
@media screen and (max-width: 599px) {
  .p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex .c-tb-pattern3 tr th,
  .p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-tb-pattern3 tr th {
    width: 100%;
  }
}
.p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex .c-tb-pattern3 tr td,
.p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-tb-pattern3 tr td {
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .p-materials .c-card-belt--sm .c-card-belt__body--white .c-flex .c-tb-pattern3 tr td,
  .p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-tb-pattern3 tr td {
    padding-top: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-materials .c-card-belt--md .c-card-belt__body--white {
    padding: 20px 1.875rem;
  }
}
.p-materials .c-card-belt--md .c-card-belt__body--white .c-flex {
  gap: 2.5rem;
}
@media screen and (max-width: 599px) {
  .p-materials .c-card-belt--md .c-card-belt__body--white .c-flex {
    gap: 10px;
  }
}
.p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-tb-pattern3 {
  width: 80%;
}
.p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-tb-pattern3 th {
  width: 11.5894%;
}
@media screen and (max-width: 599px) {
  .p-materials .c-card-belt--md .c-card-belt__body--white .c-flex .c-tb-pattern3 th {
    width: 100%;
  }
}

/* 生コンクリート
----------------------------------------------------------------- */
@media screen and (max-width: 820px) {
  .p-materials-concrete__wrap .c-flex-img__box .c-flex-img__2clm--sm .p-materials-concrete__2clm {
    width: calc(47.7777777778%);
  }
}
@media screen and (max-width: 599px) {
  .p-materials-concrete__wrap .c-flex-img__box .c-flex-img__2clm--sm .p-materials-concrete__2clm {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .p-materials-concrete__wrap .c-flex-img__box .c-flex-img__2clm--sm {
    width: 91%;
  }
}
@media screen and (max-width: 599px) {
  .p-materials-concrete__wrap .c-flex-img__box .c-flex-img__2clm--sm {
    width: 100%;
  }
}
.p-materials-concrete__wrap .c-ttl-ico {
  margin-bottom: auto;
}
@media screen and (max-width: 599px) {
  .p-materials-concrete__wrap .c-ttl-ico {
    margin-bottom: 1.875rem;
  }
}
.p-materials-concrete__wrap .c-grid--md {
  gap: 1.875rem 2.5rem;
}
.p-materials-concrete__wrap .c-card-belt .c-card-belt__body--white {
  padding-right: 1.5625rem;
  padding-bottom: 1.625rem;
  padding-left: 1.875rem;
}
@media screen and (max-width: 599px) {
  .p-materials-concrete__wrap .c-card-belt .c-card-belt__body--white {
    padding-right: 1.25rem;
    padding-bottom: 1.875rem;
    padding-left: 1.25rem;
  }
}

/* アスファルト合材再生路盤材
----------------------------------------------------------------- */
/* アスファルト殻・コンクリート殻の受け入れ
----------------------------------------------------------------- */
/* アクセス
----------------------------------------------------------------- */
/* ==========================================================================
community-地域とともに
========================================================================== */
/* 地域の暮らしを災害から守る
----------------------------------------------------------------- */
/* 社会貢献活動
----------------------------------------------------------------- */
.p-effo-cont__wrap .c-ttl-ico {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .p-effo-cont__wrap .c-ttl-ico {
    margin-bottom: 1.875rem;
  }
}
.p-effo-cont__wrap .c-flex-img__box {
  padding: 3.75rem;
}
@media screen and (max-width: 599px) {
  .p-effo-cont__wrap .c-flex-img__box {
    padding: 1.25rem;
    background-color: var(--back);
    border-radius: 15px;
  }
}

/* 環境への取り組み
----------------------------------------------------------------- */
.p-effo-attp__wrap .c-ttl-img {
  margin-top: 2px;
}
@media screen and (max-width: 599px) {
  .p-effo-attp__wrap .c-ttl-img {
    margin-top: 0;
  }
}

/* ==========================================================================
technology - 技術の研鑽
========================================================================== */
/* 私たちが目指す建設の未来
----------------------------------------------------------------- */
@media screen and (max-width: 820px) {
  .p-tech-future__wrap .c-card--md {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 599px) {
  .p-tech-future__wrap .c-card--md {
    padding: 30px 20px;
  }
}
.p-tech-future__wrap .c-flex--center {
  gap: 2.5rem;
}
@media screen and (max-width: 599px) {
  .p-tech-future__wrap .c-flex--center {
    gap: 0.625rem;
  }
}
.p-tech-future__wrap .c-flex--center .c-ttl-dot {
  min-width: 200px;
}

/* 現場で活きる技術
----------------------------------------------------------------- */
@media screen and (max-width: 599px) {
  .p-tech-tech__wrap .c-card-img .c-ttl-ico--white {
    margin-bottom: 4.375rem;
  }
}
.p-tech-tech__wrap .c-card-img:hover .c-ttl-ico--white::before {
  opacity: 0;
}
.p-tech-tech__wrap .c-card-img:hover .c-ttl-ico--white::after {
  opacity: 1;
}

/* ==========================================================================
BIM / CIM / ICT
========================================================================== */
/*  BIM/CIM ICT共通
----------------------------------------------------------------- */
.p-tech-flow__wrap .c-flex-img__wrap--effo-re {
  margin-top: 2.5rem;
}
@media screen and (max-width: 599px) {
  .p-tech-flow__wrap .c-flex-img__wrap--effo-re {
    margin-top: 3.75rem;
  }
}
.p-tech-flow__wrap .c-flex-img__wrap--effo {
  margin-top: 2.5rem;
}
@media screen and (max-width: 599px) {
  .p-tech-flow__wrap .c-flex-img__wrap--effo {
    margin-top: 3.75rem;
  }
}
.p-tech-flow__wrap .c-flex-img__wrap--effo:first-child {
  margin-top: 0;
}
.p-tech-flow__wrap .c-flex-img__wrap--effo:last-child {
  margin-top: 2.5rem;
}
@media screen and (max-width: 599px) {
  .p-tech-flow__wrap .c-flex-img__wrap--effo:last-child {
    margin-top: 3.75rem;
  }
}

/* BIM/CIMとは
----------------------------------------------------------------- */
.p-tech-bimcim-about__wrap .p-tech-bimcim-about__img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 860/380;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .p-tech-bimcim-about__wrap .p-tech-bimcim-about__img {
    border-radius: 15px;
  }
}
.p-tech-bimcim-about__wrap .p-tech-bimcim-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-tech-bimcim-about__wrap .p-tech-bimcim-about__tag {
  color: var(--white);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 1.625rem;
  line-height: 1.4;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  padding: 5px 20px;
  border-radius: 20px 0 15px 0;
  background-color: var(--main);
}
@media screen and (max-width: 599px) {
  .p-tech-bimcim-about__wrap .p-tech-bimcim-about__tag {
    border-radius: 10px 0 10px 0;
    font-size: 1.125rem;
    padding: 5px 15px 2px;
  }
}

/*導入による効果 / ICT施工の流れと特長
----------------------------------------------------------------- */
/* 活用事例
----------------------------------------------------------------- */
.p-tech-ex__wrap .c-card-thumb .p-tech__tag {
  background-color: var(--sub);
  color: var(--white);
  font-size: 1.625rem;
  line-height: 1.4;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  padding: 9px 30px 9px;
  border-radius: 40px;
  position: absolute;
  left: 30px;
  top: -20px;
  height: 53px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .p-tech-ex__wrap .c-card-thumb .p-tech__tag {
    font-size: 1.25rem;
    height: auto;
    padding: 5px 20px 5px;
  }
}
@media screen and (max-width: 599px) {
  .p-tech-ex__wrap .c-card-thumb .c-card-thumb__body--lg .c-flex--md {
    gap: 0 0;
  }
}
.p-tech-ex__wrap .c-card-thumb .c-card-thumb__body--lg .c-flex--md .c-flex-2clm:last-child {
  margin-top: -1px;
}
.p-tech-ex__wrap .c-card-thumb .c-card-thumb__body--lg .c-card--md .txt-main {
  font-size: 1.4375rem;
}
@media screen and (max-width: 599px) {
  .p-tech-ex__wrap .c-card-thumb .c-card-thumb__body--lg .c-card--md .c-card--sm {
    padding: 20px 15px;
  }
}

.p-bimcim__youtube {
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.p-bimcim__youtube iframe {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
business-civil engineering-土木事業
========================================================================== */
@media screen and (max-width: 599px) {
  .p-enviro .c-ttl-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: center;
  }
}
.p-enviro .c-ttl-img img {
  margin-top: 5px;
}
@media screen and (max-width: 599px) {
  .p-enviro .c-ttl-img img {
    max-width: 30px;
  }
}

/* DX
----------------------------------------------------------------- */
.p-enviro-dx__wrap .c-ttl-num {
  position: relative;
  padding-left: 45px;
}
@media screen and (max-width: 599px) {
  .p-enviro-dx__wrap .c-ttl-num {
    padding-left: 40px;
  }
}
.p-enviro-dx__wrap .c-ttl-num .c-ttl-num__ico {
  width: 35px;
  height: 35px;
  font-size: 1.3125rem;
  line-height: 1;
  position: absolute;
  left: 0;
  top: -2px;
}
@media screen and (max-width: 820px) {
  .p-enviro-dx__wrap .c-ttl-num .c-ttl-num__ico {
    width: 35px;
    height: 35px;
    top: -1px;
  }
}
@media screen and (max-width: 599px) {
  .p-enviro-dx__wrap .c-ttl-num .c-ttl-num__ico {
    font-size: 1.125rem;
    width: 30px;
    height: 30px;
    margin-top: 7px;
  }
}
.p-enviro-dx__wrap .c-flex-img__wrap--effo {
  margin-top: 3.75rem;
}
.p-enviro-dx__wrap .c-flex-img__wrap--effo:first-child {
  margin-top: 2.5rem;
}
.p-enviro-dx__wrap .c-flex-img__wrap--effo-re {
  margin-top: 3.75rem;
}

/* 女性の活躍を応援
----------------------------------------------------------------- */
.p-enviro-empowering__wrap .c-ttl-ico {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .p-enviro-empowering__wrap .c-ttl-ico {
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 820px) {
  .p-enviro-empowering__wrap .c-flex-img__wrap--effo > .c-card--md {
    width: 91.8%;
  }
}
@media screen and (max-width: 599px) {
  .p-enviro-empowering__wrap .c-flex-img__wrap--effo > .c-card--md {
    width: 100%;
  }
}

/* ==========================================================================
business-civil engineering-土木事業
========================================================================== */
/* 研修内容の一例
----------------------------------------------------------------- */
.p-trai-philosophy__wrap .c-grid--sm {
  gap: 20px 20px;
}
@media screen and (max-width: 599px) {
  .p-trai-philosophy__wrap .c-grid--sm {
    gap: 15px;
  }
}

/*  アクセス
----------------------------------------------------------------- */
.p-trai-acc__wrap .c-access-flex__info {
  min-height: calc(332px);
}
@media screen and (max-width: 820px) {
  .p-trai-acc__wrap .c-access-flex__info {
    min-height: initial;
  }
}

/* ==========================================================================
sdgs
========================================================================== */
/* 基本的な取り組み
----------------------------------------------------------------- */
.p-sdgs-attempt__wrap h6.txt-main {
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .p-sdgs-attempt__wrap .c-grid--xsm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-sdgs-attempt__wrap .p-sdgs-attempt__ico {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 599px) {
  .p-sdgs-attempt__wrap .p-sdgs-attempt__ico {
    aspect-ratio: 1;
    width: 48%;
    height: auto;
  }
}

/* SDGsに関する取り組みを社内コンペで募集
----------------------------------------------------------------- */
@media screen and (max-width: 599px) {
  .p-sdgs-ideas__wrap .c-flex-img__box {
    background-color: var(--white);
    border-radius: 15px;
  }
}
.p-sdgs-ideas__wrap .c-flex-img__box:before {
  background-color: var(--white);
}
@media screen and (max-width: 599px) {
  .p-sdgs-ideas__wrap .c-flex-img__box:before {
    content: none;
  }
}
.p-sdgs-ideas__wrap .p-sdgs-ideas__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 599px) {
  .p-sdgs-ideas__wrap .p-sdgs-ideas__ttl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-sdgs-ideas__wrap .p-sdgs-ideas__ttl .p-sdgs-ideas__ttl__tag {
  background-color: var(--sub);
  border-radius: 50px;
  color: var(--white);
  line-height: 1;
  font-size: 1rem;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 11px 15px;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 15px;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 42px;
}
@media screen and (max-width: 820px) {
  .p-sdgs-ideas__wrap .p-sdgs-ideas__ttl .p-sdgs-ideas__ttl__tag {
    height: 36px;
    padding: 8px 12px 5px 10px;
    margin-right: 0;
  }
}
.p-sdgs-ideas__wrap .p-sdgs-ideas__ttl .p-sdgs-ideas__ttl__tag img {
  margin-right: 3px;
}
@media screen and (max-width: 820px) {
  .p-sdgs-ideas__wrap .p-sdgs-ideas__ttl .p-sdgs-ideas__ttl__tag img {
    width: 18px;
  }
}
/*-==========================================================================
テキスト
==========================================================================*/
.txt-en {
  font-family: "Montserrat", sans-serif;
}

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

.txt-semibold {
  font-weight: 600 !important;
}

.txt-medium {
  font-weight: 500 !important;
}

.txt-regular {
  font-weight: 400 !important;
}

.txt-base {
  font-size: 1rem;
  line-height: 2;
}

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

.txt-xsm {
  font-size: 12px;
  line-height: 2;
}

.txt-sm {
  font-size: 14px;
  line-height: 2;
}

.txt-md {
  font-size: 1.125rem;
  line-height: 2;
}

.txt-lg {
  font-size: 1.4375rem;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  .txt-lg {
    font-size: 1.125rem;
  }
}

.txt-link,
.txt-link--arrow,
.txt-link--win {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}
.txt-link:hover,
.txt-link--arrow:hover,
.txt-link--win:hover {
  color: var(--main);
  text-decoration: none;
}

.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: 599px) {
  .txt-center--sp-left {
    text-align: left !important;
  }
}

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

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

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

.txt-silver {
  color: #d4d4d4 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.txt-shadow {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.txt-lead {
  font-size: 1rem;
  text-align: left;
}

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

.radi15 {
  border-radius: 0.9375rem;
}

.radi20 {
  border-radius: 1.25rem;
}

.radi30 {
  border-radius: 1.875rem;
}

.radi-map15 {
  border: 4px solid var(--white);
  border-radius: 0.9375rem;
}
.radi-map15 iframe {
  border-radius: 0.9375rem;
}

/*-==========================================================================
boder
==========================================================================*/
/*-==========================================================================
背景
==========================================================================*/
.bg-white {
  background-color: #fff !important;
}

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

.bg-silver {
  background-color: #d4d4d4 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-back--radi,
.bg-back--radi--lg {
  background-color: var(--back);
  border-radius: 1.25rem;
  padding: 5rem 0;
}
@media screen and (max-width: 820px) {
  .bg-back--radi,
  .bg-back--radi--lg {
    padding: 3.75rem 0 5rem;
  }
}
@media screen and (max-width: 599px) {
  .bg-back--radi,
  .bg-back--radi--lg {
    padding: 2.5rem 0 5rem;
  }
}

.bg-back--radi--lg {
  padding: 5rem 0 6.25rem;
}
@media screen and (max-width: 599px) {
  .bg-back--radi--lg {
    padding: 3.75rem 0 5rem;
  }
}

.bg-back--tech {
  position: relative;
  z-index: 1;
}
.bg-back--tech::after {
  content: "";
  background-color: var(--back);
  border-radius: 1.25rem;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 121px);
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .bg-back--tech::after {
    height: calc(100% + 40px);
  }
}

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

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

.margin-remove {
  margin: 0 !important;
}

.margin-remove-top {
  margin-top: 0 !important;
}

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

.margin-xxsm-top {
  margin-top: 15px;
}

.margin-xsm-top {
  margin-top: 1rem;
}
@media screen and (max-width: 820px) {
  .margin-xsm-top {
    margin-top: 0.875rem;
  }
}
@media screen and (max-width: 599px) {
  .margin-xsm-top {
    margin-top: 0.625rem;
  }
}

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

.margin-md-sm-top--sp-mdsm {
  margin-top: 1.875rem;
}
@media screen and (max-width: 599px) {
  .margin-md-sm-top--sp-mdsm {
    margin-top: 1.875rem;
  }
}

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

.margin-md-top--sp-lg {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .margin-md-top--sp-lg {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .margin-md-top--sp-lg {
    margin-top: 3.75rem;
  }
}

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

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

.margin-lg-top {
  margin-top: 3.75rem;
}
@media screen and (max-width: 599px) {
  .margin-lg-top {
    margin-top: 2.5rem;
  }
}

.margin-lg-top--sp-lg {
  margin-top: 3.75rem;
}

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

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

.margin-xxxlg-top {
  margin-top: 7.5rem;
}
@media screen and (max-width: 820px) {
  .margin-xxxlg-top {
    margin-top: 6.25rem;
  }
}
@media screen and (max-width: 599px) {
  .margin-xxxlg-top {
    margin-top: 5rem;
  }
}

.margin-xxxlg-bottom {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 820px) {
  .margin-xxxlg-bottom {
    margin-bottom: 6.25rem;
  }
}
@media screen and (max-width: 599px) {
  .margin-xxxlg-bottom {
    margin-bottom: 5rem;
  }
}

/* パディング
----------------------------------------------------------------- */
.padding-remove {
  padding: 0 !important;
}

.padding-sm {
  padding: 1.25rem;
}

.padding-md {
  padding: 2.5rem;
}

.padding-lg {
  padding: 3.75rem;
}
@media screen and (max-width: 599px) {
  .padding-lg {
    padding: 2.5rem;
  }
}

.padding-sm-top {
  padding-top: 1.25rem;
}

.padding-md-sm-top {
  padding-top: 1.875rem;
}

.padding-md-top {
  padding-top: 2.5rem;
}

.padding-lg-top {
  padding-top: 3.75rem;
}
@media screen and (max-width: 820px) {
  .padding-lg-top {
    padding-top: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .padding-lg-top {
    padding-top: 2.5rem;
  }
}

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

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

.padding-xxxlg-top {
  padding-top: 7.5rem;
}
@media screen and (max-width: 820px) {
  .padding-xxxlg-top {
    padding-top: 6.25rem;
  }
}
@media screen and (max-width: 599px) {
  .padding-xxxlg-top {
    padding-top: 6.25rem;
  }
}

.padding-sm-bottom {
  padding-bottom: 1.25rem;
}

/*-==========================================================================
特定の画面幅で表示・非表示するクラス（CSSの順番の上書きの関係で、utilityフォルダには置かず、こちらに記載)
==========================================================================*/
/* xpc以上*/
@media screen and (min-width: 1401px) {
  .visible-more-xpc {
    display: block;
  }
}
@media screen and (max-width: 1400px) {
  .visible-more-xpc {
    display: none !important;
  }
}

/* xpcのみ*/
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .visible-xpc {
    display: block;
  }
}
@media screen and (max-width: 1200px), (min-width: 1401px) {
  .visible-xpc {
    display: none !important;
  }
}

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

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

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

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

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

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

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

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

/* tbのみ*/
@media screen and (min-width: 600px) and (max-width: 820px) {
  .visible-tb {
    display: block;
  }
}
@media screen and (max-width: 599px), (min-width: 821px) {
  .visible-tb {
    display: none !important;
  }
}

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

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

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

/*-==========================================================================
その他
==========================================================================*/
.hover-none {
  pointer-events: none;
}

.position-re {
  position: relative;
}/*# sourceMappingURL=main.css.map */