@charset "UTF-8";
/*================================================
 *  ベース
 ================================================*/
/* id & class
基本：Block__Element--Modifier
ID・クラス名の区切り：Block-Block,Element-Element,Modifier-Modifier　例：Block__Element-Element--Modifier
追加：-class 例：Block__Element--Modifier -class
※Block：大枠となる独立した要素
※Element：Blockを構成する要素
※Modifier：BlockやElementをスタイリングするもの
※追加：メインクラスに追加又は特定要素に対してのみ意味を持ち単体では意味を持たないクラス
*/
/* font-size
ベース：62.5%
1rem=10px
*/
/*================================================
 *  reset
 ================================================*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: 400;
}

body {
  line-height: 1;
}

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

article, aside, details, figcaption, figure, footer, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/*================================================
 *  変数の定義
 ================================================*/
/*
google = #1A0DAB
Yahoo! = #000D99
*/
/*================================================
 *  関数の定義
 ================================================*/
/*
マップ型で定義されていない値が呼び出された時はエラーを返す

@include responsive(md) {}
*/
/*
桁数（デフォルト0)
round-decimal(0.333)    => 0
round-decimal(0.333, 1) => 0.3
round-decimal(0.333, 2) => 0.33
round-decimal(0.666)    => 1
round-decimal(0.666, 1) => 0.7
round-decimal(0.666, 2) => 0.67
*/
/*
第1引数に指定したいピクセル値を指定、第2引数に基準となるルートのfont-size値（デフォルトでは10px）を指定
font-size: rem(36);
font-size: rem(36, 12);
*/
/*
第1引数に指定したいピクセル値を指定、第2引数に基準となる画面幅（デザインカンプの横幅）を指定
width: vw(40);
width: vw(40, 1920);
*/
/*
第1引数に最小文字サイズ、第2引数に最大文字サイズ、第3引数に最小文字の画面幅
round-decimal（小数点以下の桁数と丸め）で桁数と丸め処理
font-size: clampVw(14, 18, 768);
*/
/*
引数に何行で省略するかを指定
@include line-clamp(1);
@include line-clamp(2);
*/
/* 英語フォント読込 */
/*================================================
 *  基本要素
 ================================================*/
html {
  height: 100%;
  /* ブラウザデフォルト16pxの62.5% = 10px */
  font-size: 62.5%;
  /* ブラウザデフォルト16pxの75% = 12px */
  /* ブラウザデフォルト16pxの87.5% = 14px */
}
html.-large {
  font-size: 75%;
}
html.-xlarge {
  font-size: 87.5%;
}

@media (min-width: 1024px) {
  body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 1.6rem;
    line-height: 1.45;
    color: #000000;
    word-break: break-all;
    -webkit-text-size-adjust: 100%;
  }
  body.no-scroll {
    /* when modal active */
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    /* Other browsers */
    overscroll-behavior: none;
  }
}
@media (max-width: 1023px) {
  body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 1.4rem;
    line-height: 1.45;
    color: #000000;
    word-break: break-all;
    -webkit-text-size-adjust: 100%;
  }
  body.no-scroll {
    /* when modal active */
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    /* Other browsers */
    overscroll-behavior: none;
  }
}

a {
  color: #000000;
  cursor: pointer;
  text-decoration: none;
}
a:link {
  color: #000000;
}
a:hover {
  color: #000000;
  opacity: 0.8;
}
a:active {
  color: #000000;
}
a:visited {
  color: #000000;
}
a.-tel {
  pointer-events: none;
  color: #000000;
}
@media (max-width: 1023px) {
  a.-tel {
    pointer-events: auto;
    color: #000000;
  }
}
a.-underline {
  text-decoration: underline;
}
a.-no-opacity:hover {
  opacity: 1;
}
a.-pdf {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-decoration: underline;
}
a.-pdf::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 4px;
  background-image: url("../img/icon/Icon-PDF.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}

p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}

img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  vertical-align: bottom;
  flex-shrink: 0;
}

img[src$=".svg"] {
  width: auto;
}

hr {
  width: 100%;
  margin: 16px 0;
  border: none;
  border-bottom: 1px solid #ABABAB;
}
hr.-dotted {
  border-bottom: 1px dotted #ABABAB;
}
hr:last-child {
  margin-bottom: 0;
}

sup {
  font-size: 64%;
  vertical-align: top;
}

sub {
  font-size: 64%;
  vertical-align: bottom;
}

@media (min-width: 1024px) {
  main {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  main {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  section {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  section {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  article {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  article {
    width: 100%;
  }
}

/*================================================
 *  カスタムエレメント Prefix：element
 ================================================*/
.element__align-left {
  text-align: left !important;
}

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

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

.element__justify-content-flex-start {
  justify-content: flex-start !important;
}

.element__justify-content-center {
  justify-content: center !important;
}

.element__justify-content-flex-end {
  justify-content: flex-end !important;
}

.element__font-weight {
  font-weight: bold !important;
}

.element__align-item-center {
  align-items: center !important;
}

.element__font-weight-500 {
  font-weight: 500 !important;
}

.element__font-weight-700 {
  font-weight: 700 !important;
}

.element__color {
  color: #000000;
}

.element__color-red {
  color: red;
}

.element__color-black {
  color: black;
}

.element__color-white {
  color: white;
}

/*================================================
 *  共通 Prefix：
 ================================================*/
@media (min-width: 1024px) {
  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin-bottom: 48px;
  }
  .breadcrumb > li {
    display: flex;
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .breadcrumb > li::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    margin: 0 8px;
    background-image: url("../img/base/angle-right.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 14px;
  }
  .breadcrumb > li > a {
    color: #000000;
  }
  .breadcrumb > li:last-child::after {
    display: none;
  }
}
@media (max-width: 1023px) {
  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
  }
  .breadcrumb > li {
    display: flex;
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .breadcrumb > li::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    margin: 0 4px;
    background-image: url("../img/base/angle-right.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 14px;
  }
  .breadcrumb > li > a {
    color: #000000;
  }
  .breadcrumb > li:last-child::after {
    display: none;
  }
}

/*================================================
 *  コンテナー Prefix：
 ================================================*/
@media (min-width: 1024px) {
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto 64px;
    padding: 0 32px;
  }
  .container.-full {
    max-width: 100%;
  }
  .container:last-child {
    margin-bottom: 0;
  }
  main > .container:first-child {
    margin-top: 48px;
  }
}
@media (max-width: 1023px) {
  .container {
    width: 100%;
    margin: 0 auto 48px;
    padding: 0 16px;
  }
  .container:last-child {
    margin-bottom: 0;
  }
  main > .container:first-child {
    margin-top: 24px;
  }
}

/*================================================
 *  見出し Prefix：
 ================================================*/
@media (min-width: 1024px) {
  .headline {
    margin-bottom: 32px;
    font-size: 3.2rem;
    font-weight: 700;
  }
  .headline:last-child {
    margin-bottom: 0;
  }
  section > .headline {
    padding-bottom: 16px;
    border-bottom: 1px solid #000000;
  }
}
@media (max-width: 1023px) {
  .headline {
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 700;
  }
  .headline:last-child {
    margin-bottom: 0;
  }
  section > .headline {
    padding-bottom: 8px;
    border-bottom: 1px solid #000000;
  }
}

@media (min-width: 1024px) {
  .heading {
    margin-bottom: 12px;
    font-size: 2.4rem;
    font-weight: 700;
    color: #3D3D3D;
  }
  .heading:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .heading {
    margin-bottom: 12px;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .heading:last-child {
    margin-bottom: 0;
  }
}

/*================================================
 *  リスト Prefix：
 ================================================*/
@media (min-width: 1024px) {
  .list__disc {
    width: 100%;
    margin-bottom: 32px;
    list-style: none;
    counter-reset: disc;
  }
  .list__disc > li {
    position: relative;
    margin-bottom: 1em;
    padding-left: 1.9em;
  }
  .list__disc > li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 2px;
    z-index: 100;
    width: 1.9em;
    font-weight: bold;
    text-align: center;
  }
  .list__disc:last-child {
    margin-bottom: 0;
  }
  .list__disc:last-child > li:last-child {
    margin-bottom: 0;
  }
  .list__disc li .list__disc, .list__square li .list__disc, .list__number li .list__disc, .list__asterisk li .list__disc {
    margin-bottom: 24px !important;
  }
}
@media (max-width: 1023px) {
  .list__disc {
    width: 100%;
    margin-bottom: 24px;
    list-style: none;
    counter-reset: disc;
  }
  .list__disc > li {
    position: relative;
    margin-bottom: 1em;
    padding-left: 1.9em;
  }
  .list__disc > li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 2px;
    z-index: 100;
    width: 1.9em;
    font-weight: bold;
    text-align: center;
  }
  .list__disc:last-child {
    margin-bottom: 0;
  }
  .list__disc:last-child > li:last-child {
    margin-bottom: 0;
  }
  .list__disc li .list__disc, .list__square li .list__disc, .list__number li .list__disc, .list__asterisk li .list__disc {
    margin-bottom: 24px !important;
  }
  .list__disc li .list__disc > li, .list__square li .list__disc > li, .list__number li .list__disc > li, .list__asterisk li .list__disc > li {
    padding-left: 0;
  }
  .list__disc li .list__disc > li::before, .list__square li .list__disc > li::before, .list__number li .list__disc > li::before, .list__asterisk li .list__disc > li::before {
    position: static;
  }
  .list__disc li .list__disc > li > p, .list__square li .list__disc > li > p, .list__number li .list__disc > li > p, .list__asterisk li .list__disc > li > p {
    display: inline;
  }
  .list__disc li .list__disc > li > p::after, .list__square li .list__disc > li > p::after, .list__number li .list__disc > li > p::after, .list__asterisk li .list__disc > li > p::after {
    content: "";
    display: inline-block;
    width: 100%;
    margin-bottom: 1em;
  }
  .list__disc li .list__disc > li > p:last-child::after, .list__square li .list__disc > li > p:last-child::after, .list__number li .list__disc > li > p:last-child::after, .list__asterisk li .list__disc > li > p:last-child::after {
    display: none;
  }
}

@media (min-width: 1024px) {
  .list__square {
    width: 100%;
    margin-bottom: 24px;
    list-style: none;
  }
  .list__square > li {
    position: relative;
    margin-bottom: 1em;
    padding-left: 1.9em;
  }
  .list__square > li::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    content: "■";
    width: 1.9em;
    text-align: center;
  }
  .list__square.-rhombus > li::before {
    content: "◇";
    width: 1.9em;
    text-align: center;
  }
  .list__square:last-child {
    margin-bottom: 0;
  }
  .list__square:last-child > li:last-child {
    margin-bottom: 0;
  }
  .list__disc li .list__square, .list__square li .list__square, .list__number li .list__square, .list__asterisk li .list__square {
    margin-bottom: 24px !important;
  }
}
@media (max-width: 1023px) {
  .list__square {
    width: 100%;
    margin-bottom: 24px;
    list-style: none;
  }
  .list__square > li {
    position: relative;
    margin-bottom: 1em;
    padding-left: 1.9em;
  }
  .list__square > li::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    content: "■";
    width: 1.9em;
    text-align: center;
  }
  .list__square.-rhombus > li::before {
    content: "◇";
    width: 1.9em;
    text-align: center;
  }
  .list__square:last-child {
    margin-bottom: 0;
  }
  .list__square:last-child > li:last-child {
    margin-bottom: 0;
  }
  .list__disc li .list__square, .list__square li .list__square, .list__number li .list__square, .list__asterisk li .list__square {
    margin-bottom: 24px !important;
  }
  .list__disc li .list__square > li, .list__square li .list__square > li, .list__number li .list__square > li, .list__asterisk li .list__square > li {
    padding-left: 0;
  }
  .list__disc li .list__square > li::before, .list__square li .list__square > li::before, .list__number li .list__square > li::before, .list__asterisk li .list__square > li::before {
    position: static;
  }
  .list__disc li .list__square > li > p, .list__square li .list__square > li > p, .list__number li .list__square > li > p, .list__asterisk li .list__square > li > p {
    display: inline;
  }
  .list__disc li .list__square > li > p::after, .list__square li .list__square > li > p::after, .list__number li .list__square > li > p::after, .list__asterisk li .list__square > li > p::after {
    content: "";
    display: inline-block;
    width: 100%;
    margin-bottom: 1em;
  }
  .list__disc li .list__square > li > p:last-child::after, .list__square li .list__square > li > p:last-child::after, .list__number li .list__square > li > p:last-child::after, .list__asterisk li .list__square > li > p:last-child::after {
    display: none;
  }
}

@media (min-width: 1024px) {
  .list__number {
    width: 100%;
    margin-bottom: 24px;
    list-style: none;
    counter-reset: number;
  }
  .list__number > li {
    position: relative;
    width: 100%;
    margin-bottom: 1em;
    padding-left: 1.9em;
  }
  .list__number > li::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    content: counter(number) ".";
    counter-increment: number;
    width: 1.9em;
    text-align: center;
  }
  dl .list__number, li .list__number {
    margin-bottom: 24px;
  }
  dl .list__number > li, li .list__number > li {
    margin-bottom: 1em;
  }
  .list__number.-parentheses > li {
    padding-left: 2.8em;
  }
  .list__number.-parentheses > li::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    content: "( " counter(number) " )";
    counter-increment: number;
    width: 2.8em;
  }
  .list__number:first-child {
    margin-top: 0;
  }
  .list__number:last-child {
    margin-bottom: 0;
  }
  .list__number:last-child > li:last-child {
    margin-bottom: 0;
  }
  .list__disc li .list__number, .list__square li .list__number, .list__number li .list__number, .list__asterisk li .list__number {
    margin-bottom: 24px !important;
  }
}
@media (max-width: 1023px) {
  .list__number {
    width: 100%;
    margin-bottom: 24px;
    list-style: none;
    counter-reset: number;
  }
  .list__number > li {
    position: relative;
    width: 100%;
    margin-bottom: 1em;
    padding-left: 1.9em;
  }
  .list__number > li::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    content: counter(number) ".";
    counter-increment: number;
    width: 1.9em;
    text-align: center;
  }
  dl .list__number, li .list__number {
    margin-bottom: 24px;
  }
  dl .list__number > li, li .list__number > li {
    margin-bottom: 1em;
  }
  .list__number.-parentheses > li {
    padding-left: 2.8em;
  }
  .list__number.-parentheses > li::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    content: "( " counter(number) " )";
    counter-increment: number;
    width: 2.8em;
  }
  .list__number:first-child {
    margin-top: 0;
  }
  .list__number:last-child {
    margin-bottom: 0;
  }
  .list__number:last-child > li:last-child {
    margin-bottom: 0;
  }
  .list__disc li .list__number, .list__square li .list__number, .list__number li .list__number, .list__asterisk li .list__number {
    margin-bottom: 24px !important;
  }
  .list__disc li .list__number > li, .list__square li .list__number > li, .list__number li .list__number > li, .list__asterisk li .list__number > li {
    padding-left: 0;
  }
  .list__disc li .list__number > li::before, .list__square li .list__number > li::before, .list__number li .list__number > li::before, .list__asterisk li .list__number > li::before {
    position: static;
  }
  .list__disc li .list__number > li > p, .list__square li .list__number > li > p, .list__number li .list__number > li > p, .list__asterisk li .list__number > li > p {
    display: inline;
  }
  .list__disc li .list__number > li > p::after, .list__square li .list__number > li > p::after, .list__number li .list__number > li > p::after, .list__asterisk li .list__number > li > p::after {
    content: "";
    display: inline-block;
    width: 100%;
    margin-bottom: 1em;
  }
  .list__disc li .list__number > li > p:last-child::after, .list__square li .list__number > li > p:last-child::after, .list__number li .list__number > li > p:last-child::after, .list__asterisk li .list__number > li > p:last-child::after {
    display: none;
  }
}

@media (min-width: 1024px) {
  .list__asterisk {
    width: 100%;
    margin-bottom: 24px;
    list-style: none;
  }
  .list__asterisk > li {
    position: relative;
    width: 100%;
    margin-bottom: 1em;
    padding-left: 1.9em;
  }
  .list__asterisk > li::before {
    position: absolute;
    top: 0;
    left: 2px;
    z-index: 100;
    content: "※";
    width: 1.9em;
    text-align: center;
  }
  .list__asterisk:first-child {
    margin-top: 0;
  }
  .list__asterisk:last-child {
    margin-bottom: 0;
  }
  .list__asterisk:last-child > li:last-child {
    margin-bottom: 0;
  }
  .list__disc li .list__asterisk, .list__square li .list__asterisk, .list__number li .list__asterisk, .list__asterisk li .list__asterisk {
    margin-bottom: 24px !important;
  }
  .list__asterisk.-notes {
    font-size: 1.6rem;
  }
  .list__asterisk.-notes > li {
    margin-bottom: 0.5em;
  }
}
@media (max-width: 1023px) {
  .list__asterisk {
    width: 100%;
    margin-bottom: 24px;
    list-style: none;
  }
  .list__asterisk > li {
    position: relative;
    width: 100%;
    margin-bottom: 1em;
    padding-left: 1.9em;
  }
  .list__asterisk > li::before {
    position: absolute;
    top: 0;
    left: 2px;
    z-index: 100;
    content: "※";
    width: 1.9em;
    text-align: center;
  }
  .list__asterisk:first-child {
    margin-top: 0;
  }
  .list__asterisk:last-child {
    margin-bottom: 0;
  }
  .list__asterisk:last-child > li:last-child {
    margin-bottom: 0;
  }
  .list__disc li .list__asterisk, .list__square li .list__asterisk, .list__number li .list__asterisk, .list__asterisk li .list__asterisk {
    margin-bottom: 24px !important;
  }
  .list__disc li .list__asterisk > li, .list__square li .list__asterisk > li, .list__number li .list__asterisk > li, .list__asterisk li .list__asterisk > li {
    padding-left: 0;
  }
  .list__disc li .list__asterisk > li::before, .list__square li .list__asterisk > li::before, .list__number li .list__asterisk > li::before, .list__asterisk li .list__asterisk > li::before {
    position: static;
  }
  .list__disc li .list__asterisk > li > p, .list__square li .list__asterisk > li > p, .list__number li .list__asterisk > li > p, .list__asterisk li .list__asterisk > li > p {
    display: inline;
  }
  .list__disc li .list__asterisk > li > p::after, .list__square li .list__asterisk > li > p::after, .list__number li .list__asterisk > li > p::after, .list__asterisk li .list__asterisk > li > p::after {
    content: "";
    display: inline-block;
    width: 100%;
    margin-bottom: 1em;
  }
  .list__disc li .list__asterisk > li > p:last-child::after, .list__square li .list__asterisk > li > p:last-child::after, .list__number li .list__asterisk > li > p:last-child::after, .list__asterisk li .list__asterisk > li > p:last-child::after {
    display: none;
  }
  .list__asterisk.-notes {
    font-size: 1.4rem;
  }
  .list__asterisk.-notes > li {
    margin-bottom: 0.5em;
  }
}

/*================================================
 *  header
 ================================================*/
/* @media (min-width: 1024px) {
  header {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  header {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .header__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .header__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 32px;
    height: 100px;
  }
}
@media (max-width: 1023px) {
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 16px;
    height: 80px;
  }
}

@media (min-width: 1024px) {
  .header__logo {
    width: 200px;
  }
  .header__logo a:hover {
    opacity: 1;
  }
}
@media (max-width: 1023px) {
  .header__logo {
    width: 120px;
  }
  .header__logo a:hover {
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .header__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: calc(100% - 200px);
    height: 100%;
  }
}
@media (max-width: 1023px) {
  .header__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: calc(100% - 120px);
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .header__nav--list {
    display: flex;
  }
  .header__nav--list > li {
    padding-right: 16px;
  }
  .header__nav--list > li > a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 200px;
    padding: 8px;
    margin-bottom: 4px;
    border: 1px solid #000000;
    color: #000000;
    transition: all 0.2s ease-out;
  }
  .header__nav--list > li > a:hover {
    background-color: #000000;
    color: white;
  }
  .header__nav--list > li > a:active {
    transform: translate(0, 2px);
  }
  .header__nav--list > li:last-child {
    padding-right: 0;
  }
}
@media (max-width: 1023px) {
  .header__nav--list {
    display: flex;
  }
  .header__nav--list > li {
    padding-right: 16px;
  }
  .header__nav--list > li > a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 160px;
    padding: 4px;
    margin-bottom: 4px;
    border: 1px solid #000000;
    color: #000000;
    transition: all 0.2s ease-out;
  }
  .header__nav--list > li > a:hover {
    background-color: #000000;
    color: white;
  }
  .header__nav--list > li > a:active {
    transform: translate(0, 2px);
  }
  .header__nav--list > li:last-child {
    padding-right: 0;
  }
} */

/*================================================
 * footer Prefix：
 ================================================*/
/* @media (min-width: 1024px) {
  footer {
    position: -webkit-sticky;
    position: sticky;
    top: 100vh;
    width: 100%;
  }
}
@media (max-width: 1023px) {
  footer {
    position: -webkit-sticky;
    position: sticky;
    top: 100vh;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .footer__wrapper {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .footer__wrapper {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .footer__container {
    width: 100%;
    padding: 96px 32px 24px;
    margin: 0 auto;
  }
}
@media (max-width: 1023px) {
  .footer__container {
    width: 100%;
    padding: 64px 16px 16px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .footer__nav {
    width: 100%;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #000000;
  }
  .footer__nav:first-child {
    margin-top: 0;
  }
}
@media (max-width: 1023px) {
  .footer__nav {
    width: 100%;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #000000;
  }
  .footer__nav:first-child {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .footer__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
  }
  .footer__menu:last-child {
    margin-bottom: 0;
  }
  .footer__menu > li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.4rem;
  }
  .footer__menu > li > a {
    color: #000000;
    text-decoration: underline;
  }
  .footer__menu > li::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    background-color: gray;
    margin: 0 16px;
  }
  .footer__menu > li::after:last-child {
    padding-right: 0;
  }
  .footer__menu > li:last-child::after {
    display: none;
  }
}
@media (max-width: 1023px) {
  .footer__menu {
    width: 100%;
    margin-bottom: 32px;
  }
  .footer__menu > li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.4rem;
  }
  .footer__menu > li::before {
    content: "";
    display: block;
    width: 24px;
    height: 14px;
    background-image: url("../img/base/angle-right.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 14px;
  }
  .footer__menu > li > a {
    width: calc(100% - 24px);
    color: #000000;
  }
  .footer__menu > li:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .copyright {
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .copyright {
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .sns__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 32px;
  }
  .sns__list > li {
    padding: 8px 16px;
  }
  .sns__list:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .sns__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 32px;
  }
  .sns__list > li {
    padding: 8px 10px;
  }
  .sns__list:last-child {
    margin-bottom: 0;
  }
} */

/*================================================
 *  inview　Prefix：fade
 ================================================*/
.fade {
  transition: all 0.4s ease-out;
  opacity: 0;
}
.fade.active {
  opacity: 1;
}
.fade.delay {
  transition-delay: 0.2s;
}
.fade.delay.sp-only {
  transition-delay: 0s;
}
.fade.delay2 {
  transition-delay: 0.4s;
}
.fade.delay2.sp-only {
  transition-delay: 0s;
}
.fade.delay3 {
  transition-delay: 0.6s;
}
.fade.delay3.sp-only {
  transition-delay: 0s;
}

@media (min-width: 1024px) {
  .fade__vertical {
    transition: all 0.8s ease-out;
    transform: translate(0, 64px);
    opacity: 0;
  }
}
@media (max-width: 1023px) {
  .fade__vertical {
    transition: all 0.8s ease-out;
    transform: translate(0, 32px);
    opacity: 0;
  }
}
.fade__vertical.active {
  transform: translate(0, 0);
  opacity: 1;
}
.fade__vertical.delay {
  transition-delay: 0.2s;
}
.fade__vertical.delay2 {
  transition-delay: 0.4s;
}
.fade__vertical.delay3 {
  transition-delay: 0.6s;
}
.fade__vertical.delay4 {
  transition-delay: 0.8s;
}
.fade__vertical.delay4 {
  transition-delay: 1s;
}
.fade__vertical.-animation-img {
  transition-delay: 2s;
}

/*================================================
 *  上書き
 ================================================*/
/* @media (min-width: 1024px) {
  main {
    max-width: 990px;
    margin: 0 auto;
  }
}
@media (max-width: 1023px) {
  main {
    max-width: 990px;
    margin: 0 auto;
  }
} */

@media (min-width: 1024px) {
  section.-fv {
    padding: 48px 32px;
  }
  section.-business {
    padding: 48px 32px;
  }
  section.-document {
    padding: 48px 32px;
  }
  section.-company {
    padding: 48px 32px;
  }
  section:last-child {
    padding-bottom: 0;
  }
}
@media (max-width: 1023px) {
  section.-fv {
    padding: 32px 16px;
    background-color: #FAFAFA;
  }
  section.-business {
    padding: 32px 16px;
  }
  section.-document {
    padding: 32px 16px;
  }
  section.-company {
    padding: 32px 16px;
  }
  section:last-child {
    padding-bottom: 0;
  }
}

/*================================================
 *  トップページ Prefix：
 ================================================*/
@media (min-width: 1024px) {
  .fv-container {
    width: 100%;
  }
  .fv-container > .-container {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .fv-container {
    width: 100%;
  }
  .fv-container > .-container {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .fv-eyecatch {
    height: 300px;
    background-image: url("../img/top/fv.jpg");
    background-position: center bottom 40%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media (max-width: 1023px) {
  .fv-eyecatch {
    height: 200px;
    background-image: url("../img/top/fv.jpg");
    background-position: center bottom 40%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .fv-eyecatch {
    height: 240px;
    background-position: center bottom 35%;
  }
}

@media (min-width: 1024px) {
  .business-category {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px 24px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .business-category {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .business-category > li {
    padding: 24px 12px;
    border: 1px solid gray;
  }
}
@media (max-width: 1023px) {
  .business-category {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 16px 8px;
  }
  .business-category > li {
    padding: 16px 12px;
    border: 1px solid gray;
  }
}

@media (min-width: 1024px) {
  .business-category__item {
    width: 100%;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .business-category__item {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .document-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px 16px;
    width: 100%;
    margin-bottom: 24px;
  }
  .document-list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #ABABAB;
    background-color: #F4F8F9;
  }
  .document-list > li > a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px;
  }
  .document-list > li > a > .-thumbnail {
    width: 120px;
    aspect-ratio: 16/9;
  }
  .document-list > li > a > .-thumbnail img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
  }
  .document-list > li > a > .-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 120px - 8px);
    height: 100%;
    margin-left: 8px;
    padding: 12px;
    background-color: white;
  }
  .document-list > li > a > .-container > .-headline {
    margin-bottom: 4px;
  }
  .document-list > li > a > .-container > .-headline > .-text {
    font-weight: bold;
  }
  .document-list > li > a > .-container > .-headline > .-caption {
    font-size: 1.4rem;
  }
  .document-list > li > a > .-container > .-headline:last-child {
    margin-bottom: 0;
  }
  .document-list > li > a:hover > .-container > .-headline > .-text {
    text-decoration: underline;
  }
  .document-list:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .document-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-columns: minmax(0, 1fr);
    grid-gap: 16px;
    width: 100%;
    margin-bottom: 24px;
  }
  .document-list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #ABABAB;
    background-color: #F4F8F9;
  }
  .document-list > li > a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px;
  }
  .document-list > li > a > .-thumbnail {
    width: 120px;
    aspect-ratio: 16/9;
  }
  .document-list > li > a > .-thumbnail img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
  }
  .document-list > li > a > .-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 120px - 8px);
    height: 100%;
    margin-left: 8px;
    padding: 12px;
    background-color: white;
  }
  .document-list > li > a > .-container > .-headline {
    margin-bottom: 4px;
  }
  .document-list > li > a > .-container > .-headline > .-text {
    font-weight: bold;
  }
  .document-list > li > a > .-container > .-headline > .-caption {
    font-size: 1.4rem;
  }
  .document-list > li > a > .-container > .-headline:last-child {
    margin-bottom: 0;
  }
  .document-list > li > a:hover > .-container > .-headline > .-text {
    text-decoration: underline;
  }
  .document-list:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .company__about-us {
    width: 100%;
  }
  .company__about-us > div {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .company__about-us > div > dt {
    width: 128px;
    font-weight: 500;
  }
  .company__about-us > div > dd {
    width: calc(100% - 128px);
  }
  .company__about-us > div > dd .-postcode {
    width: 100%;
  }
  .company__about-us > div > dd .-address {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 1em;
  }
  .company__about-us > div > dd .-address > span {
    display: inline-block;
  }
  .company__about-us > div:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .company__about-us {
    width: 100%;
  }
  .company__about-us > div {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .company__about-us > div > dt {
    width: 128px;
  }
  .company__about-us > div > dd {
    width: calc(100% - 128px);
  }
  .company__about-us > div > dd .-postcode {
    width: 100%;
  }
  .company__about-us > div > dd .-address {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 1em;
  }
  .company__about-us > div > dd .-address > span {
    display: inline-block;
  }
  .company__about-us > div:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .about-us__profile {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 980px;
  }
  .about-us__profile > .-img {
    width: 300px;
  }
  .about-us__profile > .-profile {
    width: calc(100% - 300px);
    padding-left: 48px;
  }
}
@media (max-width: 1023px) {
  .about-us__profile {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 980px;
  }
  .about-us__profile > .-img {
    width: 100%;
  }
  .about-us__profile > .-img > img {
    max-width: 280px;
  }
  .about-us__profile > .-profile {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .about-us__profile-name {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px;
  }
  .about-us__profile-name > .-name {
    font-size: 2.4rem;
    font-weight: 500;
  }
  .about-us__profile-name > .-sns {
    padding: 24px;
  }
  .about-us__profile-name > .-sns svg, .about-us__profile-name > .-sns img {
    max-width: 80px;
  }
}
@media (max-width: 1023px) {
  .about-us__profile-name {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 16px;
  }
  .about-us__profile-name > .-name {
    font-size: 2.4rem;
    font-weight: 500;
  }
  .about-us__profile-name > .-sns {
    padding: 24px;
  }
  .about-us__profile-name > .-sns svg, .about-us__profile-name > .-sns img {
    max-width: 80px;
  }
}

@media (min-width: 1024px) {
  .about-us__profile-career {
    margin-bottom: 48px;
  }
}
@media (max-width: 1023px) {
  .about-us__profile-career {
    margin-bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .about-us__profile-status {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .about-us__profile-status > .-status {
    margin-right: 32px;
  }
  .about-us__profile-status > .-img > svg, .about-us__profile-status > .-img > img {
    max-width: 200px;
  }
}
@media (max-width: 1023px) {
  .about-us__profile-status {
    width: 100%;
  }
  .about-us__profile-status > .-status {
    margin-bottom: 8px;
  }
  .about-us__profile-status > .-img > svg, .about-us__profile-status > .-img > img {
    max-width: 200px;
  }
}

/*================================================
 *  中小M&Aガイドライン Prefix：
 ================================================*/
@media (min-width: 1024px) {
  .dl-list {
    width: 100%;
    margin-bottom: 32px;
  }
  .dl-list > div {
    width: 100%;
    margin-bottom: 32px;
  }
  .dl-list > div > dt {
    margin-bottom: 16px;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .dl-list > div > dd {
    margin-bottom: 1em;
  }
  .dl-list > div > dd:last-child {
    margin-bottom: 0;
  }
  .dl-list > div:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .dl-list {
    width: 100%;
    margin-bottom: 24px;
  }
  .dl-list > div {
    width: 100%;
    margin-bottom: 24px;
  }
  .dl-list > div > dt {
    margin-bottom: 16px;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .dl-list > div > dd {
    margin-bottom: 1em;
  }
  .dl-list > div > dd:last-child {
    margin-bottom: 0;
  }
  .dl-list > div:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .number-table {
    display: flex;
    width: 100%;
    margin-bottom: 24px;
  }
  .number-table > .-number {
    width: 1.9em;
    text-align: center;
  }
  .number-table > .-container {
    width: calc(100% - 1.9em);
  }
  .number-table:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .number-table {
    display: flex;
    width: 100%;
    margin-bottom: 24px;
  }
  .number-table > .-number {
    width: 1.9em;
    text-align: center;
  }
  .number-table > .-container {
    width: calc(100% - 1.9em);
  }
  .number-table:last-child {
    margin-bottom: 0;
  }
}

/*================================================
 *  プライバシーポリシー Prefix：
 ================================================*/
@media (min-width: 1024px) {
  .item-dl-list {
    width: 100%;
  }
  .item-dl-list > div {
    display: flex;
    width: 100%;
  }
  .item-dl-list > div > dt {
    width: 4em;
  }
  .item-dl-list > div > dd {
    width: calc(100% - 4em);
    padding-left: 8px;
  }
}
@media (max-width: 1023px) {
  .item-dl-list {
    width: 100%;
  }
  .item-dl-list > div {
    display: flex;
    width: 100%;
  }
  .item-dl-list > div > dt {
    width: 4em;
  }
  .item-dl-list > div > dd {
    width: calc(100% - 4em);
    padding-left: 8px;
  }
}