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

body {
  margin: 0;
}

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

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

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

[hidden],
template {
  display: none;
}

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

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

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

pre {
  overflow: auto;
}

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

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

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

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;
  --white-rgb: 255,
  255,
  255;
  --lightgray: #e9e9e9;
  --lightgray-rgb: 233,
  233,
  233;
  --silver: #d4d4d4;
  --silver-rgb: 212,
  212,
  212;
  --gray: #808080;
  --gray-rgb: 128,
  128,
  128;
  --black: #262626;
  --black-rgb: 38,
  38,
  38;
  --black-800: #5C5C5C;
  --black-800-rgb: 92,
  92,
  92;
  --black-600: #858585;
  --black-600-rgb: 133,
  133,
  133;
  --black-400: #ADADAD;
  --black-400-rgb: 173,
  173,
  173;
  --black-200: #D6D6D6;
  --black-200-rgb: 214,
  214,
  214;
  --black-100: #EBEBEB;
  --black-100-rgb: 235,
  235,
  235;
  --main: #1c89b9;
  --main-rgb: 28,
  137,
  185;
  --sub: #1a5977;
  --sub-rgb: 26,
  89,
  119;
  --navy: #002060;
  --navy-rgb: 0,
  32,
  96;
  --hover: #008969;
  --hover-rgb: 0,
  137,
  105;
  --back: #f2f2f2;
  --back-rgb: 242,
  242,
  242;
  --selection_txt: #525252;
  --selection_txt-rgb: 82,
  82,
  82;
  --selection_bg: #ffd0c4;
  --selection_bg-rgb: 255,
  208,
  196;
  --tomato: #ef423b;
  --tomato-rgb: 239,
  66,
  59;
}

/*-==========================================================================
rem変換関数
==========================================================================*/
/*-==========================================================================
vw変換
==========================================================================*/
/*-==========================================================================
mixin
==========================================================================*/
/*-==========================================================================
独自mixinを定義
==========================================================================*/
/*-==========================================================================
ブレイクポイント
==========================================================================*/
/* less_than_xx */
/* more_than_xx */
/* ==========================================================================
汎用CSS
========================================================================== */
/* サイト全体のフォントサイズや色に関する設定
----------------------------------------------------------------- */
html {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-justify: inter-ideograph;
  vertical-align: baseline;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Noto Sans Japanese", Lato, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Zen Kaku Gothic New", sans-serif;
}

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

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

.f-common-wrap {
  overflow: clip;
}

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;
}
a:hover {
  text-decoration: none;
}

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

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(--main);
  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;
  }
}
/* ==========================================================================
ヘッダー
========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1010;
  width: 100vw;
  background-color: var(--white);
  -webkit-box-shadow: 0px 0px 20px rgba(var(--main-rgb), 0.1);
          box-shadow: 0px 0px 20px rgba(var(--main-rgb), 0.1);
}

.l-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 1280px) {
  .l-header {
    height: 80px;
  }
}

.l-header-logo {
  position: relative;
  max-width: 117px;
  width: 100%;
}
@media screen and (max-width: 428px) {
  .l-header-logo {
    width: 75%;
  }
}
.l-header-logo a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header-logo a img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header-logo a:hover img {
  opacity: 0.7;
}

/* 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: 4.2vw;
}
@media screen and (max-width: 1024px) {
  .l-header-nav {
    display: none;
  }
}
.l-header-nav .l-header-nav-pattern1-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: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2.8vw;
  line-height: 100px;
}
@media screen and (max-width: 1280px) {
  .l-header-nav .l-header-nav-pattern1-main {
    line-height: 80px;
  }
}
.l-header-nav .l-header-nav-pattern1-main .l-header-nav-pattern1-main__menu {
  position: relative;
}
.l-header-nav .l-header-nav-pattern1-main .l-header-nav-pattern1-main__menu a {
  display: block;
  text-align: center;
}
.l-header-nav .l-header-nav-pattern1-main .l-header-nav-pattern1-main__menu a .en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--main);
}
.l-header-nav .l-header-nav-pattern1-main .l-header-nav-pattern1-main__menu a .ja {
  font-size: 12px;
  display: block;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
}
.l-header-nav .l-header-nav-pattern1-main .l-header-nav-pattern1-main__menu a:hover {
  opacity: 0.7;
}
.l-header-nav .l-header-nav-pattern1-main .l-header-nav-pattern1-main__menu a:hover .ja {
  color: var(--main);
}
.l-header-nav .l-header-nav-contact {
  max-width: 160px;
  width: 100%;
}
.l-header-nav .l-header-nav-contact a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.02em;
  height: 55px;
  border-radius: 50px;
  color: var(--white);
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #0088D5), to(#113C73));
  background: -webkit-linear-gradient(left, #0088D5 50%, #113C73 100%);
  background: linear-gradient(90deg, #0088D5 50%, #113C73 100%);
  background-size: 200%;
  background-position: right;
}
.l-header-nav .l-header-nav-contact a:hover {
  background-position: left;
}

/* ドロワーメニュー
----------------------------------------------------------------- */
.l-toggle {
  display: none;
  width: 80px;
  height: 80px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .l-toggle {
    display: block;
  }
}
.l-toggle::before, .l-toggle::after {
  content: "";
  display: block;
  background-image: url(/resource/images/menu_open.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: background-image 0.1s linear;
  transition: background-image 0.1s linear;
}
.l-toggle::after {
  background-image: url(/resource/images/menu_close.svg);
  opacity: 0;
}

body.open {
  overflow: hidden;
}
body.open .l-toggle::before {
  opacity: 0;
}
body.open .l-toggle::after {
  opacity: 1;
}

.l-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
}
.l-drawer .l-drawer-body {
  position: absolute;
  width: 100%;
  height: 100%;
  margin-top: 80px;
  padding-bottom: 100px;
  background-color: var(--main);
  background-color: var(--back);
}
.l-drawer .l-drawer-body .l-drawer-nav-main {
  position: relative;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 40px;
  padding-bottom: 100px;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu {
  color: var(--white);
  line-height: 1.6;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu a {
  padding: 1.875rem 10%;
  display: block;
  position: relative;
}
@media screen and (max-width: 428px) {
  .l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu a {
    padding: 10px 10%;
  }
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu a .en {
  font-family: "Cormorant Garamond", serif;
  color: var(--main);
  font-size: 1.75rem;
  display: block;
  font-weight: 700;
}
@media screen and (max-width: 428px) {
  .l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu a .en {
    font-size: 1.375rem;
  }
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu a .ja {
  font-size: 1.125rem;
  display: block;
  font-weight: 500;
}
@media screen and (max-width: 428px) {
  .l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu a .ja {
    font-size: 14px;
  }
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__btn {
  max-width: 320px;
  width: 100%;
  margin: 60px auto;
}
@media screen and (max-width: 428px) {
  .l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__btn {
    margin: 40px auto;
  }
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.02em;
  height: 70px;
  border-radius: 50px;
  color: var(--white);
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #0088D5), to(#113C73));
  background: -webkit-linear-gradient(left, #0088D5 50%, #113C73 100%);
  background: linear-gradient(90deg, #0088D5 50%, #113C73 100%);
  background-size: 200%;
  background-position: right;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__btn a:hover {
  background-position: left;
}

/* ==========================================================================
フッター
========================================================================== */
.l-footer {
  background-color: #eaeaea;
}

.l-footer-logo {
  text-align: center;
  padding: 40px 0 50px;
}
.l-footer-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(var(--black-rgb), 0.8);
}
.l-footer-logo a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 428px) {
  .l-footer-logo a {
    font-size: 1.125rem;
  }
}
.l-footer-logo p {
  font-size: 1rem;
}
@media screen and (max-width: 428px) {
  .l-footer-logo p {
    font-size: 14px;
  }
}

/* コピーライト
----------------------------------------------------------------- */
.l-copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  padding: 13.5px 0 20px;
}
@media screen and (max-width: 428px) {
  .l-copyright {
    font-size: 10px;
  }
}

/* ==========================================================================
ページタイトル
=========================================================================*/
.l-page-title {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  height: 345px;
}
@media screen and (max-width: 428px) {
  .l-page-title {
    height: 300px;
  }
}
.l-page-title::before {
  content: "";
  display: block;
  background-color: rgba(var(--white-rgb), 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.l-page-title .l-page-title-inner {
  padding-top: 160px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
}
.l-page-title .l-page-title-inner .l-page-title-jp {
  color: var(--sub);
  font-size: 1.5rem;
  text-align: center;
  margin-top: 14px;
}
.l-page-title .l-page-title-inner .l-page-title-en {
  color: var(--main);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 4rem;
  text-align: center;
  line-height: 1.6;
  border-bottom: 1px solid var(--sub);
}

/* ==========================================================================
セクション
=========================================================================*/
.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: 428px) {
  .l-sec-lg {
    padding: 3.75rem 0;
  }
}

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

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

.l-sec-xxlg-remove-top {
  padding: 0 0 8.75rem;
}
@media screen and (max-width: 428px) {
  .l-sec-xxlg-remove-top {
    padding: 0 0 8.75rem;
  }
}

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

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

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

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

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

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

/* FlexBox サイズごと
----------------------------------------------------------------- */
.c-flex--sm,
.c-flex--md,
.c-flex--lg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: no-wrap;
      -ms-flex-wrap: no-wrap;
          flex-wrap: no-wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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: 834px) {
  .c-flex--sm .c-flex-5clm-sp {
    width: calc((100% - 40px) / 5);
  }
}
@media screen and (max-width: 428px) {
  .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 {
  gap: 3.75rem 2.5rem;
}
@media screen and (max-width: 428px) {
  .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: 428px) {
  .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: 428px) {
  .c-flex--lg .c-flex-3clm,
  .c-flex--lg .c-flex-2clm {
    width: 100%;
  }
}

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

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

.c-grid--md {
  gap: 3.75rem 2.5rem;
}

.c-grid--lg {
  gap: 3.75rem 3.75rem;
}

.c-grid {
  gap: 0;
}

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

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

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

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

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

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

/* ==========================================================================
テーブル
=========================================================================*/
.c-tb-pattern1 tr {
  border-bottom: 1px solid var(--lightgray);
}
.c-tb-pattern1 tr:first-child {
  border-top: 1px solid var(--lightgray);
}
.c-tb-pattern1 tr th,
.c-tb-pattern1 tr td {
  padding: 1rem;
}
@media screen and (max-width: 428px) {
  .c-tb-pattern1 tr th,
  .c-tb-pattern1 tr td {
    line-height: 1.7;
  }
}
.c-tb-pattern1 tr th {
  font-weight: 700;
  text-align: center;
  vertical-align: top;
  width: 30%;
}
@media screen and (max-width: 428px) {
  .c-tb-pattern1 tr th {
    text-align: left;
  }
}

.c-tb-pattern2 {
  border: 1px solid var(--gray);
  font-size: 1rem;
}
@media screen and (max-width: 428px) {
  .c-tb-pattern2 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 428px) {
  .c-tb-pattern2 tr {
    border-top: 1px solid var(--gray);
  }
  .c-tb-pattern2 tr:first-child {
    border: none;
  }
}
.c-tb-pattern2 tr th,
.c-tb-pattern2 tr td {
  border: 1px solid var(--gray);
  padding: 10px;
}
@media screen and (max-width: 428px) {
  .c-tb-pattern2 tr th,
  .c-tb-pattern2 tr td {
    display: block;
    border: none;
    line-height: 1.7;
  }
}
.c-tb-pattern2 tr th {
  background-color: var(--back);
  font-weight: 400;
  vertical-align: center;
  width: 154px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 428px) {
  .c-tb-pattern2 tr th {
    width: 100%;
    padding: 1rem;
  }
}
.c-tb-pattern2 tr td dl {
  margin: 0;
}
.c-tb-pattern2 tr td dl dt {
  color: var(--sub);
  font-weight: 700;
  float: left;
  width: 50px;
  min-width: 50px;
}
.c-tb-pattern2 tr td dl dd {
  margin-left: 50px;
}
.c-tb-pattern2 tr td ul li {
  padding-left: 1em;
  position: relative;
}
.c-tb-pattern2 tr td ul li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

.c-tb-pattern3 {
  overflow: auto;
}
@media screen and (max-width: 428px) {
  .c-tb-pattern3 {
    max-height: 445px;
  }
}
.c-tb-pattern3::-webkit-scrollbar {
  width: 8px;
  background: var(--lightgray);
}
.c-tb-pattern3::-webkit-scrollbar:horizontal {
  height: 8px;
  background: var(--lightgray);
}
.c-tb-pattern3::-webkit-scrollbar-thumb {
  background: var(--main);
  border-radius: 4px;
}
.c-tb-pattern3::-webkit-scrollbar-thumb:horizontal {
  background: var(--main);
  border-radius: 4px;
}
.c-tb-pattern3 table {
  width: 100%;
  min-width: 720px;
}
.c-tb-pattern3 table th,
.c-tb-pattern3 table td {
  border: solid 1px var(--silver);
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 700;
}
.c-tb-pattern3 table th {
  color: var(--main);
  background-color: var(--lightgray);
}
.c-tb-pattern3 table td {
  font-weight: 400;
  padding: 0.5rem 1.5rem;
}
.c-tb-pattern3 table .first {
  background-color: var(--whitesmoke);
  font-weight: 700;
}

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

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

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

.c-modal-cont-inner {
  position: relative;
}
.c-modal-cont-inner .c-modal-close {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  line-height: 0;
  position: absolute;
  top: -rem(24);
  right: 0;
}

.c-modal-open {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-modal-open:hover {
  opacity: 0.7;
}
.c-modal-open:before {
  content: "+";
  display: block;
  color: var(--main);
  background-color: var(--white);
  width: 1rem;
  height: 1rem;
  text-align: center;
  line-height: 0.8;
  padding: 4px;
  position: absolute;
  top: 2px;
  left: 2px;
}

/* ==========================================================================
ナビ
=========================================================================*/
.c-page-nav {
  margin-top: 2.5rem;
}
.c-page-nav .c-page-nav-wrap {
  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;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem 1.25rem;
}
@media screen and (max-width: 834px) {
  .c-page-nav .c-page-nav-wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu {
  background-color: var(--whitesmoke);
  max-width: 229px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 428px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu {
    max-width: initial;
    width: 98%;
  }
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a {
  display: block;
  color: var(--main);
  line-height: 3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 428px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a {
    line-height: 3rem;
  }
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-right: solid 1px var(--main);
  border-bottom: solid 1px var(--main);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 40%;
  right: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a:hover {
  color: var(--white);
  background-color: var(--hover);
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a:hover:after {
  border-color: var(--white);
}

.c-page-nav-tag {
  margin: auto;
}
.c-page-nav-tag .c-page-nav-tag-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  text-align: center;
  gap: 4px 4px;
}
.c-page-nav-tag .c-page-nav-tag-wrap .c-page-nav-tag-wrap__menu {
  display: inline-block;
  background-color: var(--main);
}
.c-page-nav-tag .c-page-nav-tag-wrap .c-page-nav-tag-wrap__menu a {
  display: block;
  color: var(--white);
  line-height: 3;
  padding: 0 3rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-page-nav-tag .c-page-nav-tag-wrap .c-page-nav-tag-wrap__menu a:hover {
  opacity: 0.7;
}

.c-related-nav {
  background-color: var(--whitesmoke);
  padding: 3.75rem 0;
}
@media screen and (max-width: 428px) {
  .c-related-nav {
    padding: 2.5rem 0;
  }
}
.c-related-nav .c-related-nav__ttl {
  color: var(--main);
  border-left: 4px solid var(--main);
  line-height: 1.5;
  padding-left: 12px;
}

.c-related-tmb {
  position: relative;
}
.c-related-tmb .c-related-tmb__ttl {
  text-align: center;
  color: var(--main);
  background-color: var(--white);
  background-image: url(/resource/images/ico_arrow_right_main.svg);
  background-size: 10px auto;
  background-position: center right 22px;
  background-repeat: no-repeat;
  font-size: 14px;
  font-weight: 700;
  line-height: 3.375;
}
.c-related-tmb a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-related-tmb a:hover {
  background-color: rgba(var(--white), 0.3);
}

/* ==========================================================================
パンくずリスト
=========================================================================*/
.c-breadcrumb,
.c-breadcrumb-ft {
  font-size: 12px;
  line-height: 32px;
}
@media screen and (max-width: 1024px) {
  .c-breadcrumb,
  .c-breadcrumb-ft {
    font-size: 10px;
  }
}
.c-breadcrumb .c-breadcrumb-wrap,
.c-breadcrumb-ft .c-breadcrumb-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .c-breadcrumb .c-breadcrumb-wrap,
  .c-breadcrumb-ft .c-breadcrumb-wrap {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list {
  color: var(--gray);
  white-space: nowrap;
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list a,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list a {
  color: var(--gray);
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img {
  width: 10px;
  vertical-align: baseline;
}
@media screen and (max-width: 1024px) {
  .c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img,
  .c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img {
    width: 9px;
  }
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2),
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2) {
  padding-left: 1rem;
  position: relative;
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2):before,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2):before {
  content: "";
  width: 3px;
  height: 3px;
  border: 0px;
  border-top: solid 1px var(--gray);
  border-right: solid 1px var(--gray);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 5px;
  bottom: 0;
  margin: auto;
}

.c-breadcrumb-ft .c-breadcrumb-wrap {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* ==========================================================================
メールフォーム
=========================================================================*/
/* 入力>確認>完了のnav
----------------------------------------------------------------- */
ul.p-contact-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;
}
ul.p-contact-nav::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  background-color: var(--main);
  background-color: var(--gray);
  aspect-ratio: 1/360;
  max-width: 1px;
  width: 100%;
  max-width: 300px;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
ul.p-contact-nav li {
  display: block;
  border: 1px solid var(--gray);
  background-color: var(--white);
  border-radius: 100%;
  position: relative;
  max-width: 100px;
  height: 100px;
  width: 100%;
}
ul.p-contact-nav li.p-contact-nav__active {
  border: 2px solid var(--main);
  color: var(--main);
}
ul.p-contact-nav li.p-contact-nav__active div {
  color: var(--main);
}
ul.p-contact-nav li.p-contact-nav__active div .en {
  color: var(--main);
}
ul.p-contact-nav li div {
  position: absolute;
  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;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: var(--gray);
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
}
ul.p-contact-nav li div span.en {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

/* フォーム
----------------------------------------------------------------- */
.c-form-wrap table.c-form-table {
  font-size: 1rem;
}
.c-form-wrap table.c-form-table tr {
  border-bottom: 1px solid var(--lightgray);
}
.c-form-wrap table.c-form-table tr:first-child {
  border-top: 1px solid var(--lightgray);
}
.c-form-wrap table.c-form-table tr th,
.c-form-wrap table.c-form-table tr td {
  padding: 1.25rem 0;
}
@media screen and (max-width: 1024px) {
  .c-form-wrap table.c-form-table tr th,
  .c-form-wrap table.c-form-table tr td {
    display: block;
  }
}
.c-form-wrap table.c-form-table tr th {
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  position: relative;
  width: 44%;
}
@media screen and (max-width: 1024px) {
  .c-form-wrap table.c-form-table tr th {
    padding: 1.25rem 0 0;
    width: 100%;
  }
}
.c-form-wrap table.c-form-table tr th.c-form-required:after {
  content: "必須";
  display: inline-block;
  background-color: var(--main);
  border-radius: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  width: 44px;
  text-align: center;
  margin-left: 14px;
  vertical-align: middle;
  padding-bottom: 1px;
}
@media screen and (max-width: 1024px) {
  .c-form-wrap table.c-form-table tr td {
    padding: 8px 0 1.25rem 0;
  }
}
.c-form-wrap div.c-form-required {
  position: relative;
}
@media screen and (max-width: 428px) {
  .c-form-wrap div.c-form-required {
    text-align: center;
  }
}
.c-form-wrap div.c-form-required::after {
  content: "必須";
  display: inline-block;
  background-color: var(--main);
  border-radius: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  line-height: 21px;
  width: 44px;
  text-align: center;
  margin-left: 14px;
}
@media screen and (max-width: 1024px) {
  .c-form-wrap div.c-form-required::after {
    top: 0.35rem;
    margin-left: 0.2rem;
  }
}
@media screen and (max-width: 428px) {
  .c-form-wrap div.c-form-required::after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: 0;
    top: auto;
    bottom: -30px;
  }
}

.c-form-radio,
.c-form-checkbox {
  display: inline-block;
  border: 3px solid var(--silver);
  margin: -4px 8px 0 0;
  height: 24px;
  width: 24px;
  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(--main);
}

.c-form-checkbox {
  background-color: var(--white);
  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: 19px;
  display: block;
  position: absolute;
  left: 1px;
  top: -3px;
}
@media screen and (max-width: 834px) {
  .c-form-checkbox:checked:before {
    top: -5px;
  }
}

.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(--silver);
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  vertical-align: middle;
  padding: 4px 8px;
  max-width: 480px;
  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: 40px;
}

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

.c-form-privacy {
  background-color: var(--back);
  margin-top: 2.5rem;
  padding: 2.5rem 3.75rem;
}
@media screen and (max-width: 428px) {
  .c-form-privacy {
    padding: 1.875rem 5% 3.125rem;
  }
}
.c-form-privacy .c-form-privacy-panel {
  background-color: var(--white);
  border: 1px solid var(--silver);
  font-size: 14px;
  height: 180px;
  margin-top: 1rem;
  padding: 2rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 428px) {
  .c-form-privacy .c-form-privacy-panel {
    padding: 1.25rem;
  }
}
.c-form-privacy .c-form-privacy-panel .c-list-num li {
  margin-top: 20px;
}
.c-form-privacy .c-form-privacy-panel .c-tb-pattern2 tr {
  font-size: 14px;
}
.c-form-privacy .c-form-privacy-panel .c-tb-pattern2 tr th {
  width: 20%;
}
@media screen and (max-width: 428px) {
  .c-form-privacy .c-form-privacy-panel .c-tb-pattern2 tr th {
    width: 100%;
  }
}
.c-form-privacy .c-form-privacy-panel .c-tb-pattern2 tr th,
.c-form-privacy .c-form-privacy-panel .c-tb-pattern2 tr td {
  display: table-cell;
  padding: 8px;
}
@media screen and (max-width: 428px) {
  .c-form-privacy .c-form-privacy-panel .c-tb-pattern2 tr th,
  .c-form-privacy .c-form-privacy-panel .c-tb-pattern2 tr td {
    display: block;
  }
}

.c-form-privacy-checkbox {
  cursor: pointer;
  font-weight: 500;
}

.p-contact-not-sale-txt {
  text-align: center;
}
.p-contact-not-sale-txt p {
  color: var(--main);
  border-bottom: 2px solid var(--main);
  display: inline-block;
  margin: 0 auto;
  font-weight: 700;
}

.p-contact-not-sale-cheackbox {
  border: 2px solid var(--main);
  padding: 2rem 0;
  font-size: 1rem;
}
@media screen and (max-width: 428px) {
  .p-contact-not-sale-cheackbox {
    padding: 2.5rem 0 3.125rem;
  }
}

.c-form-btn-flex {
  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;
  gap: 40px;
}
@media screen and (max-width: 428px) {
  .c-form-btn-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;
    gap: 30px;
  }
}

.c-form-errm-wrap p {
  text-align: center;
}

/* ==========================================================================
ボタン
=========================================================================*/
.c-btn-main,
.c-btn-main--big,
.c-btn-main--white {
  text-align: center;
  max-width: 290px;
  width: 100%;
}
.c-btn-main a,
.c-btn-main button,
.c-btn-main--big a,
.c-btn-main--big button,
.c-btn-main--white a,
.c-btn-main--white button {
  display: block;
  border-radius: 50px;
  color: var(--white);
  background-color: var(--navy);
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 4.5;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-main a:hover,
.c-btn-main button:hover,
.c-btn-main--big a:hover,
.c-btn-main--big button:hover,
.c-btn-main--white a:hover,
.c-btn-main--white button:hover {
  background-color: var(--main);
}

.c-btn-main--big {
  max-width: 420px;
}
.c-btn-main--big a,
.c-btn-main--big button {
  font-size: 1.625rem;
  line-height: 80px;
  font-weight: 500;
}

.c-btn-main--white a,
.c-btn-main--white button {
  border: 1px solid var(--sub);
  color: var(--sub);
  background-color: var(--white);
}
.c-btn-main--white a:hover,
.c-btn-main--white button:hover {
  color: var(--white);
  border: 1px solid var(--main);
  background-color: var(--main);
}

.c-btn-card,
.c-btn-card--tmb {
  border: 2px solid var(--lightgray);
  padding: 2rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-btn-card,
  .c-btn-card--tmb {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 428px) {
  .c-btn-card,
  .c-btn-card--tmb {
    padding: 1.875rem;
  }
}
.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: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-card a:hover,
.c-btn-card--tmb a:hover {
  background-color: rgba(var(--white), 0.4);
}

.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-pdf {
  text-align: left;
  line-height: 1;
  text-indent: -35.2px;
  padding-left: 35.2px;
}
.c-btn-pdf a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 35px;
  vertical-align: middle;
  background: url(/resource/images/ico_pdf.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 8px;
}
.c-btn-pdf a span {
  color: var(--black);
  font-size: 1rem;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.2;
  position: relative;
  top: -8px;
}
.c-btn-pdf:hover {
  opacity: 0.6;
}

/* ==========================================================================
カード
=========================================================================*/
.c-card,
.c-card--sm,
.c-card--md,
.c-card--lg {
  border: 1px solid var(--lightgray);
}

.c-card {
  padding: 1rem;
}

.c-card--sm {
  padding: 1.25rem;
}

.c-card--md {
  padding: 2.5rem;
}

.c-card--lg {
  padding: 3.75rem;
}

.c-card-pattern1 {
  border: 1px solid rgba(var(--main-rgb), 0.2);
}
.c-card-pattern1 .c-card-pattern1-head {
  background-color: rgba(var(--main-rgb), 0.2);
  text-align: center;
  padding: 2rem 1rem;
}
.c-card-pattern1 .c-card-pattern1-head .c-card-pattern1-head__ttl {
  color: var(--main);
}
.c-card-pattern1 .c-card-pattern1__txt {
  padding: 2.5rem;
}
.c-card-pattern1 .c-card-pattern1__txt--sm {
  padding: 1.5rem;
}

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

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

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

h3 {
  font-size: 1.625rem;
}
@media screen and (max-width: 834px) {
  h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 428px) {
  h3 {
    font-size: 1.375rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media screen and (max-width: 834px) {
  h4 {
    font-size: 1.8125rem;
  }
}
@media screen and (max-width: 428px) {
  h4 {
    font-size: 1.5rem;
  }
}

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

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

/* 見出し・タイトル
----------------------------------------------------------------- */
.c-ttl-main-bg {
  background-color: var(--main);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.75rem 5%;
}
@media screen and (max-width: 428px) {
  .c-ttl-main-bg {
    padding: 2.5rem 5%;
  }
}

.c-ttl-main {
  color: var(--white);
  text-align: center;
}
.c-ttl-main span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
}

.c-ttl-sub {
  color: var(--main);
  border-bottom: 1px solid var(--main);
  padding-bottom: 8px;
}

/* ==========================================================================
トップページ
========================================================================== */
/* FV
----------------------------------------------------------------- */
.p-idx-slide__wrap {
  width: 100%;
  height: calc(100vh - 100px);
  position: relative;
  background-image: url(/resource/images/topimage1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 100px;
}
@media screen and (max-width: 1280px) {
  .p-idx-slide__wrap {
    margin-top: 80px;
    height: calc(100vh - 80px);
  }
}
@media screen and (max-width: 834px) {
  .p-idx-slide__wrap {
    background-position: 10%;
  }
}
.p-idx-slide__wrap .p-idx-slide__catch-area {
  position: absolute;
  left: 0%;
  top: 35%;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 428px) {
  .p-idx-slide__wrap .p-idx-slide__catch-area {
    top: 24%;
  }
}
.p-idx-slide__wrap .p-idx-slide__catch {
  width: 100%;
  background-color: rgba(var(--white-rgb), 0.9);
  padding: 30px 0 34px;
  font-size: 4rem;
  text-align: center;
  color: var(--sub);
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 428px) {
  .p-idx-slide__wrap .p-idx-slide__catch {
    font-size: 2.5rem;
    line-height: 1.4;
    padding: 20px 0 24px;
  }
}
.p-idx-slide__wrap .p-idx-slide__catch img {
  max-width: 100%;
}
.p-idx-slide__wrap .p-idx-slide__sub-catch {
  margin-top: 1.875rem;
}
@media screen and (max-width: 834px) {
  .p-idx-slide__wrap .p-idx-slide__sub-catch {
    margin-top: 2.5rem;
  }
}
.p-idx-slide__wrap .p-idx-slide__sub-catch p {
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.7;
  color: var(--sub);
  font-weight: 500;
  text-shadow: 0 0 5px var(--white), 0 0 5px var(--white), 0 0 5px var(--white), 0 0 5px var(--white);
}
@media screen and (max-width: 834px) {
  .p-idx-slide__wrap .p-idx-slide__sub-catch p {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-slide__wrap .p-idx-slide__sub-catch p {
    font-size: 1.25rem;
    font-weight: 600;
  }
}
.p-idx-slide__wrap .p-idx-slide__scroll {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  gap: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-idx-slide__wrap .p-idx-slide__scroll p {
  color: var(--sub);
  font-size: 1.625rem;
  text-shadow: 0 0 5px var(--white), 0 0 5px var(--white), 0 0 5px var(--white), 0 0 5px var(--white);
}
@media screen and (max-width: 428px) {
  .p-idx-slide__wrap .p-idx-slide__scroll p {
    font-size: 1.125rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-slide__wrap .p-idx-slide__scroll span img {
    width: 14px;
  }
}

.p-idx-fv__under {
  display: block;
  height: 80px;
  width: 100vw;
  background-color: var(--back);
}

.p-idx-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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.5rem;
}
.p-idx-ttl .p-idx-ttl__en {
  font-size: 4.625rem;
  display: block;
  border-bottom: 1px solid var(--sub);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
}
@media screen and (max-width: 428px) {
  .p-idx-ttl .p-idx-ttl__en {
    font-size: 3.375rem;
  }
}
.p-idx-ttl .p-idx-ttl__en .small {
  font-size: 3.375rem;
  display: block;
  text-align: center;
}
@media screen and (max-width: 428px) {
  .p-idx-ttl .p-idx-ttl__en .small {
    font-size: 2.5rem;
  }
}
.p-idx-ttl .p-idx-ttl__ja {
  font-size: 1.75rem;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 428px) {
  .p-idx-ttl .p-idx-ttl__ja {
    font-size: 1.5rem;
  }
}

.p-idx-txt {
  font-size: 1.125rem;
}
@media screen and (max-width: 428px) {
  .p-idx-txt {
    font-size: 1rem;
  }
}

.p-idx-txt--md {
  font-size: 1.875rem;
}
@media screen and (max-width: 428px) {
  .p-idx-txt--md {
    font-size: 1.625rem;
  }
}

/* message
----------------------------------------------------------------- */
.p-idx-message__wrap {
  padding: 3.75rem 0 0;
}
.p-idx-message__wrap .p-idx-message__cont {
  padding: 50px 0 100px;
  position: relative;
}
@media screen and (max-width: 428px) {
  .p-idx-message__wrap .p-idx-message__cont {
    padding: 20px 0 0px;
  }
}
.p-idx-message__wrap .p-idx-message__cont .p-idx-message__cont__bg {
  background-image: url(/resource/images/idx_message_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 428px) {
  .p-idx-message__wrap .p-idx-message__cont .p-idx-message__cont__bg {
    width: 150%;
  }
}
.p-idx-message__wrap .p-idx-message__txt {
  font-size: 1.5rem;
  text-align: center;
  line-height: 2.2;
}
@media screen and (max-width: 834px) {
  .p-idx-message__wrap .p-idx-message__txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 428px) {
  .p-idx-message__wrap .p-idx-message__txt {
    font-size: 1.25rem;
  }
}

/* Our VISION
----------------------------------------------------------------- */
.p-idx__vision {
  padding: 8.75rem 0;
}
@media screen and (max-width: 428px) {
  .p-idx__vision {
    padding-bottom: 6.25rem;
  }
}

/* Our MISSION
----------------------------------------------------------------- */
.p-idx__mission {
  padding-bottom: 8.75rem;
}
@media screen and (max-width: 428px) {
  .p-idx__mission {
    padding-bottom: 6.25rem;
  }
}

/* Our VALUE
----------------------------------------------------------------- */
.p-idx__value {
  padding-bottom: 8.75rem;
}
@media screen and (max-width: 428px) {
  .p-idx__value {
    padding-bottom: 6.25rem;
  }
}

/* ABOUT US
----------------------------------------------------------------- */
.p-idx__about {
  padding-bottom: 8.75rem;
}
@media screen and (max-width: 428px) {
  .p-idx__about {
    padding-bottom: 6.25rem;
  }
}

/* AFFILIATED COMPANIES
----------------------------------------------------------------- */
.p-idx__aff {
  padding-bottom: 8.75rem;
}
@media screen and (max-width: 428px) {
  .p-idx__aff {
    padding-bottom: 6.25rem;
  }
}

/* お問い合わせエリア
----------------------------------------------------------------- */
.p-idx-contact__wrap {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 60px 0 70px;
}
.p-idx-contact__wrap .c-btn-main--big {
  margin-top: 1.875rem;
}

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

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

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

.txt-exbold {
  font-weight: 800 !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: 834px) {
  .txt-lead {
    line-height: 2;
  }
}
@media screen and (max-width: 428px) {
  .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: 428px) {
  .txt-lg {
    font-size: 1.125rem;
  }
}

.txt-link,
.txt-link--arrow,
.txt-link--win {
  text-decoration: underline;
  color: var(--sub);
}
.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: 428px) {
  .txt-center--sp-left {
    text-align: left !important;
  }
}

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

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

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

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

.txt-gray {
  color: #808080 !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: #1c89b9 !important;
}

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

.txt-navy {
  color: #002060 !important;
}

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

.txt-back {
  color: #f2f2f2 !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;
}

/* 電話番号
----------------------------------------------------------------- */
.txt-tel {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .txt-tel {
    font-size: 1.875rem;
  }
}
.txt-tel img {
  margin-right: 4px;
  width: 21px;
  vertical-align: baseline;
}
@media screen and (max-width: 1024px) {
  .txt-tel img {
    width: 14px;
  }
}
.txt-tel a[href^="tel:"] {
  color: var(--main);
  display: inline-block;
  pointer-events: none;
}
@media screen and (max-width: 428px) {
  .txt-tel a[href^="tel:"] {
    pointer-events: auto;
  }
  .txt-tel a[href^="tel:"]:hover {
    color: var(--hover);
  }
}

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

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

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

.bg-gray {
  background-color: #808080 !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: #1c89b9 !important;
}

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

.bg-navy {
  background-color: #002060 !important;
}

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

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

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

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

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

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

/* ==========================================================================
マージン・パディング
=========================================================================*/
/* マージン
----------------------------------------------------------------- */
.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: 0.625rem;
}

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

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

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

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

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

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

/* パディング
----------------------------------------------------------------- */
.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: 428px) {
  .padding-lg {
    padding: 2.5rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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