@charset "UTF-8";
/* -----------------------------------------------
common css 共通クラス
--------------------------------------------------
0. Foundation
   0-1. Base
   0-2. Config
        0-2-1. font family
        0-2-2. color management
        0-2-3. lightbox
1. Layout
   1-1.  .l-wrapper
   1-2.  .l-main
   1-3.  .l-container
   1-4.  .l-header
   1-5.  .l-footer
   1-6.  .l-nav
        1-6-1. .globalNav
        1-6-2. .footerNav
   1-7.  .l-mark
        1-7-1. .mark
   1-8.  .l-loader
   1-9.  .l-state
   1-10. .l-sns
   1-11. .l-scroll
   1-12. .l-stalker
   1-13. .l-banner
2. Object
   2-1. Component
        2-1-1.  Wrap      [***Wrap]
        2-1-2.  Mod       [mod-***]
        2-1-3.  Table     [tbl-***]
        2-1-4.  Title     [ttl-***]
        2-1-5.  Headings  [hdg-***]
        2-1-6.  Paragraph [prg-***]
        2-1-7.  Nav       [nav-***]
        2-1-8.  List      [lst-***]
        2-1-9.  Button    [btn-***]
        2-1-10. Link      [lnk-***]
        2-1-11. Icon      [ico-***]
        2-1-12. Label     [lbl-***]
        2-1-13. Form      [frm-***]
        2-1-14. Media     [mda-***]
        2-1-15. Card      [crd-***]
        2-1-16. Pagination
        2-1-17. Breadcrumbs
        2-1-18. Sns       [sns-***]
   2-2. Animation [act-***]
   2-3. OverLayerConfig [z-index]
   2-4. Order [flex-order]
-------------------------------------------------- */
/*====================================================================================
 [0. Foundation]
====================================================================================*/
/* -----------------------------------------------
/* 0-0. import
-------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@700&display=swap");
* {
  font-family: inherit;
}

/* -----------------------------------------------
/* 0-1. Base
-------------------------------------------------- */
body {
  width: 100%;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.8;
  background-color: #fff;
  color: #4c4c4c;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body.is-fix {
  position: fixed;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  body.is-fix {
    position: static;
  }
}
a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: break-all;
  color: #4c4c4c;
  text-decoration: underline;
  -webkit-transition: opacity 0.1s ease-in-out 0s;
  transition: opacity 0.1s ease-in-out 0s;
  /*-webkit-tap-highlight-color: transparent;*/
  /*
  &:hover,
  &:active {
      outline-width: 0;
      text-decoration: none;
  }
  &:focus {
      outline-width: 0;
      text-decoration: none;
  }
  */
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

li img, li a, li a img {
  vertical-align: bottom;
}

[role=button] {
  cursor: pointer;
}

/* -----------------------------------------------
/* 0-2. Config
-------------------------------------------------- */
/* 0-2-1.  font family
-------------------------------------------------- */
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Noto Sans CJK JP Regular"), url(../../../fonts/NotoSansJP-Regular.woff2) format("woff2"), url(../../../fonts/NotoSansJP-Regular.woff) format("woff"), url(../../../fonts/NotoSansJP-Regular.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Noto Sans CJK JP Bold"), url(../../../fonts/NotoSansJP-Bold.woff2) format("woff2"), url(../../../fonts/NotoSansJP-Bold.woff) format("woff"), url(../../../fonts/NotoSansJP-Bold.otf) format("opentype");
}
.u-ff-noto {
  font-family: "Noto Sans Japanese", sans-serif;
}

.u-ff-jost {
  font-family: "Jost", sans-serif;
}

.u-ff-yugo {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}

.u-ff-lato {
  font-family: Lato, sans-serif;
}

.u-ff-roboto {
  font-family: "Roboto", sans-serif;
}

.u-ff-catamaran {
  font-family: "Catamaran", sans-serif;
}

.u-ff-fjalla {
  font-family: "Fjalla One", sans-serif;
  letter-spacing: 1px;
}

.u-ff-oswald {
  font-family: "Oswald", sans-serif;
}

/* 0-2-2.  color management
-------------------------------------------------- */
/* base-color */
.color-white {
  color: #fff;
}

.color-gray {
  color: #999;
}

.color-black {
  color: #111;
}

/* thema-color */
.color-blue {
  color: #050e5f;
}

.color-indigo {
  color: #6610f2;
}

.color-purple {
  color: #6f42c1;
}

.color-pink {
  color: #e83e8c;
}

.color-red {
  color: #e9463c;
}

.color-orange {
  color: #e9473c;
}

.color-yellow {
  color: #ffc107;
}

.color-green {
  color: #28a745;
}

.color-teal {
  color: #20c997;
}

.color-cyan {
  color: #17a2b8;
}

.color-main {
  color: #fff;
}

.color-sub1 {
  color: #888;
}

.color-sub2 {
  color: #555;
}

.color-sub3 {
  color: #000;
}

/* 0-2-3.  lightbox */
a[data-lightbox=lb] {
  position: relative;
  text-decoration: none !important;
  pointer-events: none;
}

@media (min-width: 768px) {
  a[data-lightbox=lb] {
    pointer-events: auto;
  }
}
a[data-lightbox=lb]::after {
  display: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.5);
  font-family: "FontAwesome 5 Free", "fontAwesome";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-rendering: auto;
  line-height: 1;
  content: "";
  color: #fff;
  text-decoration: none !important;
}

@media (min-width: 768px) {
  a[data-lightbox=lb]::after {
    display: inline-block;
  }
}
/*====================================================================================
 [1. Layout]
====================================================================================*/
/* -----------------------------------------------
/* 1-1.  .l-wrapper
-------------------------------------------------- */
.l-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

/* -----------------------------------------------
/* 1-2.  .l-main
-------------------------------------------------- */
.l-main {
  margin-top: 60px;
}

@media (min-width: 1025px) {
  .l-main {
    margin-top: 130px;
  }
}
/* -----------------------------------------------
/* 1-3.  .l-container
-------------------------------------------------- */
.l-container {
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
}

.l-container--fluid {
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
  position: relative;
}

.l-container + .l-container {
  margin-top: 120px;
}

@media (min-width: 768px) {
  .l-container + .l-container {
    margin-top: 180px;
  }
}
/* -----------------------------------------------
/* 1-4.  .l-header
-------------------------------------------------- */
.l-header {
  width: 100%;
  height: 60px;
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
}

.l-header.is-fixed {
  -webkit-box-shadow: 0 0.3rem 0.75rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.3rem 0.75rem rgba(0, 0, 0, 0.1);
  height: 100px;
}

@media (max-width: 374px) {
  .l-header {
    height: 60px;
  }
}
@media (min-width: 1025px) {
  .l-header {
    height: 130px;
    margin: 0 auto;
  }
}
.header__content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-left: 20px;
  position: relative;
}

@media (min-width: 1366px) {
  .header__content {
    padding-right: 75px;
    padding-left: 75px;
  }
}
.logo {
  height: 100%;
}

@media (min-width: 1025px) {
  .logo {
    position: static;
    height: 130px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    top: auto;
    left: auto;
    margin-left: 0;
    margin-right: auto;
  }

  .l-header.is-fixed .logo {
    height: 100%;
  }
}
.logo::after {
  content: "";
  position: absolute;
  height: calc(100% - 12px);
  width: calc(100vw - 14px);
  top: 6px;
  left: 6px;
  z-index: -1;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 768px) {
  .logo::after {
    height: calc(100% - 20px);
    width: calc(100vw - 20px);
    top: 10px;
    left: 10px;
  }
}
@media (min-width: 1025px) {
  .logo::after {
    display: none;
  }
}
.logo__hdg {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  height: 100%;
  line-height: 1;
}

.logo__lnk {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
}

.logo__img {
  width: 130px;
  max-height: 100%;
}

@media (min-width: 1025px) {
  .logo__img {
    width: 130px;
  }
}
@media (min-width: 1400px) {
  .logo__img {
    width: 210px;
  }
}
.logo__img .cls-1 {
  fill: #ff5638;
}

.logo__img .cls-2 {
  fill: #1e2753;
}

/* -----------------------------------------------
/* 1-5.  .l-footer
-------------------------------------------------- */
.l-footer {
  margin-top: 0;
}

.l-footer .footerNav.l-container {
  max-width: calc(1400px + 60px);
}

/* pagetop */
.pagetop {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin: 0 0 10px;
  position: absolute;
}

@media (min-width: 1025px) {
  .pagetop {
    margin: 0 0 20px;
  }
}
.pagetop__lnk {
  display: block;
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  color: #050e5f;
}

.pagetop__ico {
  margin-bottom: -5px;
  font-size: 2.4rem;
}

@media (min-width: 1025px) {
  .pagetop__ico {
    font-size: 4.8rem;
  }
}
/* try */
.try-footer {
  border-top: 1px solid #ededed;
  background-color: #fff;
  text-align: center;
  margin-top: 90px;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .try-footer {
    margin-top: 180px;
    margin-bottom: 0;
    padding-top: 75px;
    padding-bottom: 120px;
  }
}
.try__message {
  font-size: 4.6vw;
  font-weight: bold;
  color: #131313;
}

@media (min-width: 1025px) {
  .try__message {
    font-size: 4.8rem;
  }
}
.try__image {
  width: 80%;
  max-width: 525px;
}

@media (min-width: 768px) {
  .try__image {
    width: 100%;
  }
}
/* banner */
.banner-footer {
  width: 50%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

@media (min-width: 768px) {
  .banner-footer {
    /*height: 480px;*/
  }
}
.banner-footer .icon-right {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.2;
}

@media (min-width: 768px) {
  .banner-footer .icon-right {
    right: -20px;
  }
}
@media (min-width: 1200px) {
  .banner-footer .icon-right {
    right: -25px;
  }
}
@media (min-width: 1500px) {
  .banner-footer .icon-right {
    right: -60px;
  }
}
.banner-footer .icon-right svg {
  fill: #fff;
  width: 50px;
  height: 50px;
}

@media (min-width: 768px) {
  .banner-footer .icon-right svg {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1200px) {
  .banner-footer .icon-right svg {
    width: 150px;
    height: 150px;
  }
}
@media (min-width: 1500px) {
  .banner-footer .icon-right svg {
    width: 300px;
    height: 300px;
  }
}
.banner-footer--requirement {
  background-color: #1d2652;
}

.banner-footer--entry {
  background-color: #fe5637;
}

.banner-footer__en,
.banner-footer__jp {
  display: block;
  color: #fff;
}

.banner-footer__en {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
}

@media (min-width: 576px) {
  .banner-footer__en {
    font-size: 3.2rem;
  }
}
@media (min-width: 768px) {
  .banner-footer__en {
    font-size: 4.2rem;
  }
}
@media (min-width: 992px) {
  .banner-footer__en {
    font-size: 5.2rem;
  }
}
.banner-footer__jp {
  font-size: 1.2rem;
  font-weight: bold;
}

@media (min-width: 576px) {
  .banner-footer__jp {
    font-size: 1.6rem;
  }
}
/* copy */
.copy {
  padding: 0 0 20px;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 1.3px;
  text-align: center;
  background-color: #131313;
  color: #7a7a7a;
}

@media (min-width: 768px) {
  .copy {
    border-top: none;
  }
}
@media (min-width: 1025px) {
  .copy {
    padding: 0 0 20px;
    font-size: 1.2rem;
  }
}
.copy a {
  color: #7a7a7a;
}

/* -----------------------------------------------
/* 1-6.  .l-nav
-------------------------------------------------- */
.l-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  visibility: hidden;
}

@media (min-width: 1025px) {
  .l-nav {
    position: static;
    height: 100%;
  }
}
.l-nav--footer {
  background-color: #131313;
}

.l-nav--footer * {
  color: #7a7a7a;
}

@media (min-width: 1200px) {
  .l-nav--footer {
    padding: 120px 0 80px;
  }
}
/* 1-6-1. .globalNav
-------------------------------------------------- */
.globalNav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  width: 100%;
}

@media (min-width: 1025px) {
  .globalNav {
    position: static;
    top: 0;
    height: 100%;
  }
}
.globalNav__content {
  width: 100%;
}

.globalNav__bg {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}

@media (min-width: 1025px) {
  .globalNav__bg {
    top: 0;
  }
}
[class*=globalNav__line] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

[class*=globalNav__line]::after, [class*=globalNav__line]::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 10000;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.globalNav__line--col::after, .globalNav__line--col::before {
  width: 100%;
  height: 6px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  left: 0;
  background-color: #e9473c;
}

@media (min-width: 768px) {
  .globalNav__line--col::after, .globalNav__line--col::before {
    height: 10px;
  }
}
.globalNav__line--col::before {
  top: 0;
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

.globalNav__line--col::after {
  bottom: 0;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

body.is-fix .globalNav__line--col::after,
body.is-fix .globalNav__line--col::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.globalNav__line--row::after, .globalNav__line--row::before {
  width: 6px;
  height: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  top: 0;
  background-color: #e9473c;
}

@media (min-width: 768px) {
  .globalNav__line--row::after, .globalNav__line--row::before {
    width: 10px;
  }
}
.globalNav__line--row::before {
  left: 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.globalNav__line--row::after {
  right: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

body.is-fix .globalNav__line--row::after,
body.is-fix .globalNav__line--row::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* gNav sNav */
.gNav__lnk--item,
.gNav__txt--item,
.gNav__lnk--sub {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  height: 45px;
  position: relative;
  font-weight: 700;
  padding-left: 15px;
}

/* gNav */
.gNav {
  opacity: 0;
  visibility: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: 100%;
  height: 100%;
  padding-top: 40px;
  padding-right: 40px;
  padding-left: 40px;
}

@media (min-width: 768px) {
  .gNav {
    padding: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .gNav {
    padding: 40px 12.5%;
  }
}
@media (min-width: 1025px) {
  .gNav {
    opacity: 1;
    visibility: visible;
    height: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
    -ms-flex-align: end;
    -webkit-box-align: end;
            align-items: flex-end;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    padding: 0;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
.flgSp .gNav,
.flgTab .gNav {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.gNav__main {
  display: none;
}

@media (min-width: 1025px) {
  .gNav__main {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -ms-flex-align: end;
    -webkit-box-align: center;
            align-items: center;
  }
}
.gNav__main li {
  width: 25%;
}

@media (min-width: 1025px) {
  .gNav__main li {
    width: 74px;
  }
}
@media (min-width: 1280px) {
  .gNav__main li {
    width: 108px;
  }
}
@media (min-width: 1550px) {
  .gNav__main li {
    width: 140px;
  }
}
@media (min-width: 1850px) {
  .gNav__main li {
    width: 200px;
  }
}
.gNav__item {
  border-bottom: 1px solid #e5e6e6;
  line-height: 1;
}

@media (min-width: 1025px) {
  .gNav__item {
    font-size: 1.6rem;
    padding: 0;
    height: auto;
    display: block;
    border: none;
    position: relative;
    margin-left: 5px;
  }
}
@media (min-width: 1025px) {
  .gNav__item + .gNav__item {
    margin-left: 5px;
  }
}
@media (min-width: 1366px) {
  .gNav__item + .gNav__item {
    margin-left: 5px;
  }
}
.gNav__lnk--item,
.gNav__txt--item {
  color: #131313;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

@media (min-width: 1025px) {
  .gNav__lnk--item,
.gNav__txt--item {
    margin-bottom: 55px;
    padding: 0;
    position: relative;
    height: auto;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }

  .l-header.is-fixed .gNav__lnk--item, .l-header.is-fixed .gNav__txt--item {
    margin-bottom: 40px;
  }
}
.gNav__lnk--item .icon-triangle,
.gNav__txt--item .icon-triangle {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: none;
}

.gNav__lnk--item .icon-triangle::after,
.gNav__txt--item .icon-triangle::after {
  content: "";
  display: block;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #fff;
  border-left: 6px solid transparent;
}

.gNav__item.is-subNavActive .gNav__lnk--item .icon-triangle, .gNav__item.is-subNavActive .gNav__txt--item .icon-triangle {
  opacity: 1;
  visibility: visible;
}

.gNav__buttons {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100vw;
  margin-top: 60px;
  margin-right: auto;
  margin-left: -40px;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 1025px) {
  .gNav__buttons {
    width: auto;
    height: 100%;
    margin-top: 0;
    margin-left: 20px;
    padding-right: 0;
    padding-left: 0;
    position: relative;
    top: auto;
    left: auto;
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 1400px) {
  .gNav__buttons {
    margin-left: 40px;
  }
}
.gNav__buttons .btn {
  padding: 10px;
  line-height: 1.5;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1025px) {
  .gNav__buttons .btn {
    font-size: 1.8rem;
    padding: 10px 40px;
    height: 80px;
  }
}
.gNav__item--buttons {
  margin-right: 10px;
  margin-left: 10px;
  width: 38%;
  max-width: 300px;
}

@media (min-width: 1025px) {
  .gNav__item--buttons {
    width: auto;
    max-width: auto;
  }
}
/* humbergerMenu */
.gNav__humbergerMenu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.humbergerMenu {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  margin-top: 60px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #dedede;
  counter-reset: number;
}

@media (min-width: 1025px) {
  .humbergerMenu {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    margin-top: 60px;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.humbergerMenu__lnk,
.humbergerMenu__txt {
  font-weight: 700;
  color: #131313;
  line-height: 1;
  margin-top: 40px;
  padding-left: 30px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .humbergerMenu__lnk,
.humbergerMenu__txt {
    padding: 0;
    min-height: 40px;
  }
}
@media (min-width: 1025px) {
  .humbergerMenu__lnk,
.humbergerMenu__txt {
    margin-top: 0;
    margin-bottom: 60px;
  }
}
@media (min-width: 1366px) {
  .humbergerMenu__lnk,
.humbergerMenu__txt {
    margin-top: 0;
  }
}
.humbergerMenu__lnk *,
.humbergerMenu__txt * {
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  .humbergerMenu__lnk *,
.humbergerMenu__txt * {
    font-size: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .humbergerMenu__lnk *,
.humbergerMenu__txt * {
    font-size: 3rem;
  }
}
.humbergerMenu__lnk .easingUpTxt,
.humbergerMenu__txt .easingUpTxt {
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: inline-block;
}

.humbergerMenu__lnkGroup > [class*=humbergerMenu__]:first-child {
  position: relative;
}

.humbergerMenu__lnkGroup > [class*=humbergerMenu__]:first-child::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-size: 1.2rem;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: #666;
  position: absolute;
  left: 0;
  top: 52%;
  -webkit-transform: translateY(-52%);
          transform: translateY(-52%);
}

@media (min-width: 768px) {
  .humbergerMenu__lnkGroup > [class*=humbergerMenu__]:first-child::before {
    display: none;
  }
}
.humbergerMenu__lnk::after {
  bottom: -7px;
  background-color: #131313;
}

.humbergerMenu__lnk .btn-circle--right {
  font-family: "Noto Sans Japanese", sans-serif;
}

.humbergerMenu__txt + .humbergerMenu__child,
.humbergerMenu__lnk + .humbergerMenu__child {
  margin-top: 10px;
  margin-left: 30px;
}

@media (min-width: 768px) {
  .humbergerMenu__txt + .humbergerMenu__child,
.humbergerMenu__lnk + .humbergerMenu__child {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .humbergerMenu__txt + .humbergerMenu__child,
.humbergerMenu__lnk + .humbergerMenu__child {
    margin-top: -30px;
    margin-left: 0;
  }
}
.humbergerMenu__child {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 1025px) {
  .humbergerMenu__child {
    display: block;
  }
}
.humbergerMenu__item:first-child .humbergerMenu__lnk {
  margin-top: 0;
}

@media (min-width: 1025px) {
  .humbergerMenu__item + .humbergerMenu__item {
    margin-left: 100px;
  }
}
@media (min-width: 1025px) {
  .humbergerMenu__item:nth-child(2) {
    position: absolute;
    top: 150px;
    left: 0;
    margin-left: 0;
  }
}
@media (min-width: 1500px) {
  .humbergerMenu__item:nth-child(2) {
    position: static;
    margin-left: 100px;
  }
}
@media (min-width: 1025px) {
  .humbergerMenu__lnkGroup + .humbergerMenu__lnkGroup {
    margin-top: 60px;
  }
}
.humbergerMenu__lnk,
.humbergerMenu__lnk--child,
.humbergerMenu__txt {
  position: relative;
  overflow: hidden;
}

.humbergerMenu__lnk--child {
  font-size: 1.2rem;
  display: inline-block;
}

@media (min-width: 768px) {
  .humbergerMenu__lnk--child {
    font-size: 1.6rem;
  }
}
.humbergerMenu__lnk--child .easingUpTxt {
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: inline-block;
}

.humbergerMenu__item--child {
  display: table;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
}

.humbergerMenu__item--child::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background-color: #4c4c4c;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: act-linelink-black-out 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  animation: act-linelink-black-out 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  -webkit-transform-origin: right;
          transform-origin: right;
}

.humbergerMenu__item--child:hover::before {
  -webkit-animation: act-linelink-black-over 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  animation: act-linelink-black-over 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
}

.humbergerMenu__item--child::after {
  content: "/";
  margin-right: 10px;
  margin-left: 10px;
}

@media (min-width: 1025px) {
  .humbergerMenu__item--child::after {
    display: none;
  }
}
.humbergerMenu__item--child:last-child::after {
  display: none;
}

body:not(.flgPc) .humbergerMenu__item--child::before {
  display: none;
}

@media (min-width: 1025px) {
  .humbergerMenu__item--child + .humbergerMenu__item--child {
    margin-top: 20px;
    margin-right: 0;
  }
}
.gNav__sns--humbergerMenu {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 50px;
}

@media (min-width: 1025px) {
  .gNav__sns--humbergerMenu {
    position: fixed;
    right: 75px;
    bottom: 40px;
    margin-bottom: 0;
  }
}
.gNav__sns--humbergerMenu .sns-facebook {
  margin-right: 60px;
}

.gNav__sns--humbergerMenu svg {
  margin-right: 20px;
}

.gNav__copy--humbergerMenu {
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (min-width: 1025px) {
  .gNav__copy--humbergerMenu {
    margin: 0;
    position: fixed;
    bottom: 40px;
    left: 40px;
  }
}
.subNav {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  background-color: #fff;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media (min-width: 1025px) {
  .subNav {
    width: 100vw;
    max-width: 270px;
    position: absolute;
    top: 100%;
    left: -30px;
    -webkit-box-shadow: 0 12px 17px -12px rgba(0, 0, 0, 0.6);
            box-shadow: 0 12px 17px -12px rgba(0, 0, 0, 0.6);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-bottom: 5px;
  }
}
.subNav.is-subNavActive {
  opacity: 1;
  visibility: visible;
}

.subNav .icon-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  display: none;
}

.subNav .icon-close svg {
  width: 100%;
  height: 100%;
  fill: #131313;
}

body.flgiOs .subNav .icon-close {
  display: block;
}

@media (min-width: 1025px) {
  .sNav {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: end;
    -webkit-box-align: end;
            align-items: flex-end;
  }
}
.sNav--list {
  margin-right: auto;
  line-height: 1.8;
  width: 100%;
}

.subNav__index {
  margin-right: 60px;
  max-width: 26%;
  min-width: 180px;
}

.subNav__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 25px;
}

.subNav__txt {
  line-height: 1.8;
  font-size: 1.4rem;
}

.sNav__thumb {
  width: 100%;
  margin-bottom: 15px;
  display: block;
}

.sNav__thumb img {
  width: 100%;
}

.sNav__item {
  padding: 20px 45px;
}

.sNav__item + .sNav__item {
  border-top: 1px solid #e5e5e5;
}

.sNav__txt--item,
.sNav__lnk--item {
  position: relative;
  padding-left: 30px;
}

@media (min-width: 1025px) {
  .sNav__txt--item,
.sNav__lnk--item {
    display: inline-block;
    height: auto;
    padding-left: 0;
  }
}
.sNav__txt--item::before {
  background-color: #dedede;
}

.sNav__item--child .sNav__lnk--item {
  padding-left: 45px;
}

@media (min-width: 1025px) {
  .sNav__item--child .sNav__lnk--item {
    padding-left: 0;
  }
}
.gNav__lnk--txt,
.sNav__lnk--item .sNav__txt {
  position: relative;
}

.gNav__lnk--txt::after,
.sNav__lnk--item .sNav__txt::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #4c4c4c;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: act-linelink-black-out 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  animation: act-linelink-black-out 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  -webkit-transform-origin: right;
          transform-origin: right;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.gNav__item.is-active .gNav__lnk--txt::after, .gNav__item.is-active .sNav__lnk--item .sNav__txt::after {
  width: 100%;
}

.gNav__lnk--txt:hover::after,
.sNav__lnk--item .sNav__txt:hover::after {
  -webkit-animation: act-linelink-black-over 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  animation: act-linelink-black-over 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
}

.sNav__lnk--item .sNav__txt::after {
  background-color: #e9473c;
}

@media (min-width: 1025px) {
  .sNav__txt--item::before {
    display: none;
  }
}
.subNav__img {
  width: 35%;
  background-image: url(../common_img/img-humberger04.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 1px solid #ccc;
}

/* 1-6-2. .footerNav
-------------------------------------------------- */
.footerNav__content {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

@media (min-width: 1200px) {
  .footerNav__content {
    text-align: left;
    margin-right: 42px;
    padding-top: 0;
    padding-bottom: 0;
    float: left;
    max-width: 40%;
  }
}
@media (min-width: 1366px) {
  .footerNav__content {
    margin-right: 60px;
  }
}
.footer__sns {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .footer__sns {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
}
.footer__sns .sns-twitter__path1,
.footer__sns .sns-facebook__path1 {
  fill: #fff;
}

.footer__item--sns + .footer__item--sns {
  margin-left: 30px;
}

.footer__banner__wrap li {
  margin-bottom: 20px;
}

.footer__banner__wrap li:last-of-type {
  margin-bottom: 0;
}

.footer__banner {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .footer__banner {
    width: 287px !important;
    height: auto;
  }
}
.logo-f {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1;
  display: inline-block;
}

.footer__companyInfo {
  font-size: 1.3rem;
}

@media (min-width: 1366px) {
  .footer__companyInfo {
    font-size: 1.4rem;
  }
}
.fNav {
  margin-right: -30px;
  margin-left: -30px;
  display: none;
}

@media (min-width: 1200px) {
  .fNav {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-right: auto;
    margin-left: auto;
  }
}
.fNav__item {
  height: 100%;
}

@media (min-width: 1200px) {
  .fNav__item {
    margin-right: 40px;
    max-width: 31%;
  }
}
@media (min-width: 1366px) {
  .fNav__item {
    margin-right: 60px;
  }
}
@media (min-width: 1440px) {
  .fNav__item {
    margin-right: 80px;
  }
}
@media (min-width: 1200px) {
  .fNav__item:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .fNav__item--child:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media (min-width: 1200px) {
  .fNav__item--content {
    line-height: 1;
  }
}
@media (min-width: 1200px) {
  .fNav__item--content:not(:last-child) {
    margin-bottom: 10px;
  }
}
.fNav__txt,
.fNav__lnk--child,
.fNav__lnk--content {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px 60px 30px 30px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 1.3px;
  border-top: 1px solid #48565c;
}

@media (min-width: 1200px) {
  .fNav__txt,
.fNav__lnk--child,
.fNav__lnk--content {
    padding: 0;
    border-top: none;
    display: inline;
  }
}
.fNav__txt,
.fNav__lnk--child {
  font-weight: 700;
  color: #fff;
}

@media (min-width: 1200px) {
  .fNav__txt,
.fNav__lnk--child {
    font-size: 1.4rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
@media (min-width: 1366px) {
  .fNav__txt,
.fNav__lnk--child {
    font-size: 1.5rem;
  }
}
.fNav__lnk--child::after,
.fNav__lnk--content::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: act-linelink-black-out 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  animation: act-linelink-black-out 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  -webkit-transform-origin: right;
  transform-origin: right;
}

.fNav__lnk--child:hover::after,
.fNav__lnk--content:hover::after {
  -webkit-animation: act-linelink-black-over 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  animation: act-linelink-black-over 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
}

.fNav__lnk--child::after {
  background-color: #fff;
}

.fNav__lnk--content::after {
  background-color: #7a7a7a;
}

.fNav__txt {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

@media (min-width: 1200px) {
  .fNav__txt {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    height: auto;
  }
}
.fNav__txt::after {
  content: "";
  display: block;
  font-family: "themify";
  color: #fff;
  margin-left: auto;
  margin-right: 0;
}

@media (min-width: 1200px) {
  .fNav__txt::after {
    display: none;
  }
}
.fNav__txt.is-active::after {
  content: "";
}

.fNav__content {
  display: none;
}

@media (min-width: 1200px) {
  .fNav__content {
    display: block !important;
    margin-top: 20px;
    margin-bottom: 60px;
  }
}
.fNav__lnk--content {
  padding-left: 25px;
}

@media (min-width: 1200px) {
  .fNav__lnk--content {
    font-size: 1.2rem;
    display: inline-block;
    width: auto;
    vertical-align: top;
    padding-left: 0;
    text-indent: -5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
/* -----------------------------------------------
/* 1-7.  .l-mark
-------------------------------------------------- */
.l-mark {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  overflow: hidden;
  font-size: 24px;
  text-decoration: none;
  vertical-align: middle;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .l-mark {
    display: none;
  }
}
@media (min-width: 1366px) {
  .l-mark::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    -webkit-transform: translate(-50%, -45%) scale(0.7);
            transform: translate(-50%, -45%) scale(0.7);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #111;
    border-radius: 50%;
    opacity: 0;
  }
}
@media (min-width: 1366px) {
  .l-mark:hover::after {
    opacity: 1;
    -webkit-transform: translate(-50%, -45%) scale(1);
            transform: translate(-50%, -45%) scale(1);
  }
}
/* 1-7-1. .mark
-------------------------------------------------- */
.mark {
  margin-top: 3px;
}

.mark > * {
  position: relative;
  text-decoration: none;
}

.mark > i {
  will-change: transform;
}

.markMenu {
  position: relative;
  width: 100%;
  height: 1.8rem;
}

.markMenu__top,
.markMenu__bottom {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-left: calc((100% - 28px) / 2);
  width: 28px;
  height: 2px;
  background-color: #111;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
          transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.mark.is-active .markMenu__top, .mark.is-active .markMenu__bottom {
  background-color: #3c3c3c;
}

.l-mark.is-fixed .markMenu__top, .l-mark.is-fixed .markMenu__bottom {
  background-color: #111;
}

.markMenu__top {
  margin-top: -3px;
}

.mark.is-active .markMenu__top {
  margin-top: -6px;
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

.markMenu__bottom {
  margin-top: 3px;
}

.mark.is-active .markMenu__bottom {
  margin-top: 8px;
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

/* -----------------------------------------------
/* 1-8.  .l-loader
-------------------------------------------------- */
.l-loader {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fff;
}

/* -----------------------------------------------
/* 1-9.  .l-state
-------------------------------------------------- */
body.is-fix .l-header {
  position: fixed;
  top: 0;
  left: 0;
}

body.is-fix .header__content::before {
  display: none;
}

body.is-fix .l-nav {
  visibility: visible;
  position: fixed;
  height: auto;
}

body.is-fix .logo.bgwhite::after {
  visibility: visible;
  opacity: 1;
}

body.is-fix .globalNav__bg {
  opacity: 1;
  visibility: visible;
}

body.is-fix .gNav {
  opacity: 1;
  visibility: visible;
  overflow: auto;
  background-color: #fff;
}

body.is-fix .gNav__main {
  display: none;
}

body.is-fix .gNav__buttons {
  opacity: 1;
  visibility: visible;
}

body.is-fix .gNav__humbergerMenu {
  opacity: 1;
  visibility: visible;
  position: relative;
}

body.is-fix .easingUpTxt {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body.is-fix .humbergerMenu__child .easingUpTxt {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

@media (min-width: 1025px) {
  body.is-fix .l-main {
    margin-top: 0;
  }

  body.is-fix .l-header {
    position: fixed;
  }

  body.is-fix .l-nav {
    position: static;
    height: 100%;
  }

  body.is-fix .gNav {
    padding: 0;
    overflow: inherit;
  }

  body.is-fix .gNav__main {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }

  body.is-fix .gNav__humbergerMenu,
body.is-fix .globalNav__line--col,
body.is-fix .globalNav__line--row,
body.is-fix .globalNav__bg {
    display: none;
  }
}
body.is-subNavActive .gNav__item.is-subNavActive .gNav__lnk--item::after,
body.is-subNavActive .gNav__item.is-subNavActive .gNav__txt--item::after {
  opacity: 1;
  -webkit-transform: translateX(-50%) scale(1.1);
          transform: translateX(-50%) scale(1.1);
  border: 1px solid #fff;
}

body.is-subNavActive .gNav__item.is-subNavActive .gNav__lnk--item::before,
body.is-subNavActive .gNav__item.is-subNavActive .gNav__txt--item::before {
  background-color: #fff;
}

body.is-subNavActive .globalNav__bg {
  opacity: 1;
  visibility: visible;
}

body.is-modal-staff {
  position: fixed;
}

body.is-loaded .ttl-pageHeader__item {
  visibility: visible;
}

body.is-loaded .ttl-pageHeader__en::after,
body.is-loaded .ttl-pageHeader__jp::after {
  -webkit-animation: act-pageHeader 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  animation: act-pageHeader 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
}

body.is-loaded .modal-staff.is-active {
  visibility: visible;
  opacity: 1;
}

/* -----------------------------------------------
/* 1-10. .l-sns
-------------------------------------------------- */
.l-sns {
  width: 120px;
  position: absolute;
  right: 0;
  top: 25%;
  display: none;
}

.page-index .l-sns {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (min-width: 1200px) {
  .l-sns {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
  }
}
.l-sns .sns-facebook,
.l-sns .sns-twitter {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

.l-sns .sns-facebook svg,
.l-sns .sns-twitter svg {
  margin-bottom: 20px;
}

.l-sns .sns-facebook {
  margin-bottom: 60px;
}

/* -----------------------------------------------
/* 1-11. .l-scroll
-------------------------------------------------- */
.l-scroll {
  display: none;
  z-index: 20;
}

.l-scroll {
  display: block;
  position: fixed;
  right: calc((120px - 42px) / 2);
  bottom: 45px;
}

.l-scroll .btn-circle__arrow {
  width: 50px;
  height: 50px;
}

@media (min-width: 768px) {
  .l-scroll {
    right: calc((120px - 60px) / 2);
    bottom: 45px;
  }

  .l-scroll .btn-circle__arrow {
    width: 60px;
    height: 60px;
  }
}
.l-scroll .btn-circle__arrow .btn-circle__border:first-of-type {
  fill: #fff;
}

.l-scroll .btn-circle__icon svg {
  width: 34px;
  height: 34px;
}

.l-scroll .btn-circle__icon svg:last-of-type {
  position: absolute;
  stroke: #fff;
  opacity: 0.4;
  z-index: -1;
}

@-webkit-keyframes scrollLine {
  0% {
    top: 0;
    height: 0;
  }
  25% {
    top: 0;
    height: 75px;
  }
  25.1% {
    top: 0;
    height: 75px;
  }
  50% {
    top: 0;
    height: 75px;
  }
  100% {
    top: 75px;
    height: 0;
  }
}
@keyframes scrollLine {
  0% {
    top: 0;
    height: 0;
  }
  25% {
    top: 0;
    height: 75px;
  }
  25.1% {
    top: 0;
    height: 75px;
  }
  50% {
    top: 0;
    height: 75px;
  }
  100% {
    top: 75px;
    height: 0;
  }
}
/* -----------------------------------------------
/* 1-12. .l-stalker
-------------------------------------------------- */
.cursor,
.follower {
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  display: none;
}

@media (min-width: 768px) {
  .cursor,
.follower {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
}
.follower {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 8px;
  height: 8px;
  background-color: #fff;
  z-index: 0;
  -webkit-transition: width ease 0.4s, height ease 0.4s;
  transition: width ease 0.4s, height ease 0.4s;
  text-align: center;
  mix-blend-mode: exclusion;
}

.follower span {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.follower.is-active {
  width: 40px;
  height: 40px;
}

/* -----------------------------------------------
/* 1-13. .l-banner
-------------------------------------------------- */
.bannerWrap {
  margin-bottom: 0 !important;
  margin-top: 80px;
}

@media (min-width: 768px) {
  .bannerWrap {
    margin-top: 160px;
  }
}
.bannerWrap * {
  color: #fff !important;
}

.bannerList {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

@media (min-width: 992px) {
  .bannerList {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}
.bannerList__item {
  background-color: #2c2c2c;
  border-bottom: 1px solid #575757;
  width: 100%;
  position: relative;
}

.bannerList__item .ttl-banner__en {
  font-size: 3rem;
}

@media (min-width: 1200px) {
  .bannerList__item .ttl-banner__en {
    font-size: 4rem;
  }
}
@media (min-width: 1500px) {
  .bannerList__item .ttl-banner__en {
    font-size: 4.8rem;
  }
}
.bannerList__item .ttl-banner__jp {
  font-size: 1.4rem;
}

@media (min-width: 1200px) {
  .bannerList__item .ttl-banner__jp {
    font-size: 1.6rem;
  }
}
.bannerList__item::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #4c4c4c;
  position: absolute;
  top: 0;
  left: 0;
}

.bannerList__item:hover::after {
  width: 100%;
  opacity: 1;
}

.bannerList__item:first-child::after {
  display: none;
}

@media (min-width: 992px) {
  .bannerList__item:nth-child(2) {
    border-right: 1px solid #575757;
    border-left: 1px solid #575757;
  }
}
.bannerList__lnk {
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding-right: 20px;
  padding-left: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  .bannerList__lnk {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 20px;
    padding-left: 40px;
  }
}
@media (min-width: 1500px) {
  .bannerList__lnk {
    padding-right: 40px;
    padding-left: 60px;
  }
}
.bannerList__lnk.lnk-tel {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
}

.bannerList__lnk.lnk-tel .tel__number {
  font-family: "Jost", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  line-height: 1;
  letter-spacing: 2px;
}

@media (min-width: 1200px) {
  .bannerList__lnk.lnk-tel .tel__number {
    font-size: 4rem;
  }
}
@media (min-width: 1500px) {
  .bannerList__lnk.lnk-tel .tel__number {
    font-size: 4.8rem;
  }
}
.bannerList__lnk.lnk-tel .tel__number svg {
  height: 24px;
  width: 24px;
  fill: #fff;
}

@media (min-width: 1200px) {
  .bannerList__lnk.lnk-tel .tel__number svg {
    height: 40px;
    width: 40px;
  }
}
.bannerList__lnk.lnk-tel .tel__text {
  font-size: 1.4rem;
}

@media (min-width: 1200px) {
  .bannerList__lnk.lnk-tel .tel__text {
    font-size: 1.6rem;
  }
}
/*====================================================================================
 [2. Object]
====================================================================================*/
/* -----------------------------------------------
/* 2-1. Component
-------------------------------------------------- */
/* 2-1-1.  Wrap      [***Wrap]
-------------------------------------------------- */
[class*=Wrap] {
  margin-bottom: 90px;
}

@media (min-width: 1025px) {
  [class*=Wrap] {
    margin-bottom: 180px;
  }
}
.l-main section:last-of-type [class*=Wrap] {
  margin-bottom: 0;
}

/* 2-1-2.  Mod       [mod-***]
-------------------------------------------------- */
.box-scroll, .box-scroll--comment {
  height: 17em;
  background-color: #f7f7f7;
  overflow-y: auto;
  font-size: 1.2rem;
}

.box-scroll--comment {
  padding: 30px;
}

@media (min-width: 768px) {
  .box-scroll--comment {
    padding: 60px;
  }
}
.box-highlight, .box-highlight--gray, .box-highlight--white {
  background-color: #f7f9fb;
  padding: 15px;
}

@media (min-width: 768px) {
  .box-highlight, .box-highlight--gray, .box-highlight--white {
    padding: 30px;
  }
}
.box-highlight__tit {
  background-color: none;
  padding: 0;
}

.box-scroll .box-highlight__tit {
  background-color: #fff;
  padding: 30px;
}

.box-highlight--gray {
  background-color: #eee;
}

.box-highlight--white {
  background-color: #fff;
}

.box-highlight__tit {
  margin-bottom: 0.333em;
  font-size: 1.4rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .box-highlight__tit {
    margin-bottom: 0.666em;
    font-size: 1.6rem;
  }
}
/* tab */
.tab-basic {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 60px;
}

.tab-basic__item {
  position: relative;
  width: 50%;
  padding-bottom: 20px;
  font-size: 1.2rem;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  color: #999;
  outline-width: 0;
  cursor: pointer;
}

.tab-basic__item::after {
  content: "";
  display: block;
  height: 3px;
  width: 0;
  background-color: #e9473c;
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tab-basic__item.is-active {
  color: #e9473c;
}

.tab-basic__item.is-active::after {
  width: 100%;
}

.tab-basic__content, .tab-basic__content--scroll {
  display: none;
  /* margin-top: 5.55556%; */
}

.tab-basic__content.is-active, .tab-basic__content--scroll.is-active {
  display: block;
}

.tab-basic__content--scroll {
  overflow-y: scroll;
  height: 240px;
}

@media (min-width: 1025px) {
  .tab__item {
    font-size: 1.4rem;
  }
}
/* 2-1-3.  Table     [tbl-***]
-------------------------------------------------- */
.tbl-basic__table, .tbl-basic__th, .tbl-basic__td,
.tbl-basic--column__table,
.tbl-basic--column__th,
.tbl-basic--column__td {
  font-size: 1.2rem;
  border-color: #bfbfbf;
  border-style: solid;
}

.tbl-basic__table,
.tbl-basic--column__table {
  width: 100%;
  border-width: 0 1px 1px 0;
}

.tbl-basic__th, .tbl-basic__td,
.tbl-basic--column__th,
.tbl-basic--column__td {
  padding: 15px;
  border-width: 1px 0 0 1px;
}

.tbl-basic__th,
.tbl-basic--column__th {
  background-color: #efefef;
  width: 30%;
  font-weight: 500;
}

.tbl-basic__cap,
.tbl-basic--column__cap {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.tbl-basic__table, .tbl-basic__thead, .tbl-basic__tbody, .tbl-basic__tfoot, .tbl-basic__tr, .tbl-basic__td, .tbl-basic__th {
  display: block;
  width: 100%;
}

.tbl-basic--column__table {
  border-top: none;
}

.tbl-basic--column__th, .tbl-basic--column__td {
  display: block;
  width: 100%;
  word-break: break-all;
}

.tbl-basic--column__th {
  border-left: none;
  border-right: none;
  border-bottom: none;
}

.tbl-basic--column__td {
  border-left: none;
  border-right: none;
  border-bottom: none;
}

@media (min-width: 768px) {
  .tbl-basic__cap,
.tbl-basic--column__cap {
    font-size: 1.6rem;
  }

  .tbl-basic__th, .tbl-basic__td,
.tbl-basic--column__th,
.tbl-basic--column__td {
    padding: 30px;
    font-size: 1.4rem;
  }

  .tbl-basic__table {
    display: table;
  }

  .tbl-basic__thead {
    display: table-header-group;
  }

  .tbl-basic__tbody {
    display: table-row-group;
  }

  .tbl-basic__tfoot {
    display: table-footer-group;
  }

  .tbl-basic__tr {
    display: table-row;
  }

  .tbl-basic__td {
    display: table-cell;
    width: 70%;
  }

  .tbl-basic__th {
    display: table-cell;
    width: 30%;
  }

  .tbl-basic--column__th, .tbl-basic--column__td {
    display: table-cell;
  }

  .tbl-basic--column__th {
    width: 30%;
    border-bottom: 1px solid #bfbfbf;
  }

  .tbl-basic--column__td {
    border-right: 1px solid #bfbfbf;
    border-left: 1px solid #bfbfbf;
  }
}
.tbl-border,
.tbl-border--column {
  width: 100%;
}

.tbl-border__tr {
  position: relative;
  border-bottom: 1px solid #bbb;
}

@media (min-width: 768px) {
  .tbl-border__tr {
    border-bottom: none;
  }
}
.tbl-border__tr:first-child .tbl-border__th,
.tbl-border__tr:first-child .tbl-border__td {
  border: none;
}

.tbl-border__th,
.tbl-border__td {
  padding-top: 25px;
  padding-bottom: 25px;
}

@media (min-width: 768px) {
  .tbl-border__th,
.tbl-border__td {
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
  }
}
.tbl-border--column .tbl-border__th, .tbl-border--column .tbl-border__td {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .tbl-border--column .tbl-border__th, .tbl-border--column .tbl-border__td {
    display: table-cell;
    width: auto;
  }
}
.tbl-border__th {
  font-weight: bold;
  position: relative;
  width: 20%;
  min-width: 120px;
}

@media (min-width: 768px) {
  .tbl-border__th {
    min-width: 190px;
  }
}
.tbl-border__th::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
  background: #111;
}

.tbl-border--column .tbl-border__th {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .tbl-border--column .tbl-border__th {
    width: 20%;
    padding-bottom: 25px;
  }
}
.tbl-border--column .tbl-border__th::after {
  display: none;
}

@media (min-width: 768px) {
  .tbl-border--column .tbl-border__th::after {
    display: block;
  }
}
.tbl-border__td {
  padding-bottom: 0;
}

.tbl-border--column .tbl-border__td {
  padding-top: 10px;
}

@media (min-width: 768px) {
  .tbl-border--column .tbl-border__td {
    padding-top: 25px;
  }
}
.tbl-border__td:last-of-type {
  padding-bottom: 25px;
}

.tbl-background {
  width: 100%;
}

.tbl-background__tr {
  display: block;
}

@media (min-width: 768px) {
  .tbl-background__tr {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }
}
.tbl-background__tr + .tbl-background__tr {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .tbl-background__tr + .tbl-background__tr {
    margin-top: 20px;
  }
}
.tbl-background__th,
.tbl-background__td {
  background-color: #fff;
  display: block;
  width: 100%;
}

.tbl-background__th {
  margin-bottom: 1px;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

@media (min-width: 768px) {
  .tbl-background__th {
    width: 25%;
    padding: 30px 10px;
    margin-bottom: 0;
  }
}
.tbl-background__td {
  padding: 15px 24px 15px;
}

@media (min-width: 768px) {
  .tbl-background__td {
    width: 75%;
    padding: 30px 38px 30px 10px;
  }
}
/* 2-1-4.  Title     [ttl-***]
-------------------------------------------------- */
/* ttl-pageHeader */
.ttl-pageHeader {
  width: 100vw;
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  left: -30px;
  text-align: center;
}

@media (min-width: 1025px) {
  .ttl-pageHeader {
    left: calc(-1 * (((100vw - 1100px) / 2) + (60px / 2)));
    right: auto;
  }
}
@media (min-width: 1366px) {
  .ttl-pageHeader {
    text-align: left;
    right: calc(((100% - 1100px) / 2) + (60px / 2));
    left: -80px;
  }
}
.ttl-pageHeader * {
  color: #fff;
  line-height: 1;
}

.ttl-pageHeader__item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  visibility: hidden;
}

@media (min-width: 1366px) {
  .ttl-pageHeader__item {
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}
.ttl-pageHeader__en,
.ttl-pageHeader__jp {
  position: relative;
  overflow: hidden;
}

.ttl-pageHeader__en::after,
.ttl-pageHeader__jp::after {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
}

.ttl-pageHeader__en {
  font-family: "Jost", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 5px;
  margin-bottom: 5px;
}

@media (min-width: 576px) {
  .ttl-pageHeader__en {
    font-size: 4.5rem;
  }
}
@media (min-width: 768px) {
  .ttl-pageHeader__en {
    font-size: 9rem;
    margin-bottom: 15px;
  }
}
.ttl-pageHeader__jp {
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .ttl-pageHeader__jp {
    font-size: 1.8rem;
  }
}
[class*=ttl-][class*="--lv"] + *,
[class*=ttl-][class*="--lv"] + section > [class*=ttl-][class*="--lv"] {
  margin-top: 0 !important;
}

/* ttl-section */
.ttl-section--lv1,
.ttl-sectionBorder--lv1 {
  margin-bottom: 20px;
  text-align: left;
}

.ttl-section--lv2,
.ttl-sectionBorder--lv2 {
  margin-top: 60px;
  margin-bottom: 15px;
  text-align: left;
}

.ttl-section--lv3,
.ttl-sectionBorder--lv3 {
  margin-bottom: 40px;
  text-align: left;
}

.ttl-section--lv4,
.ttl-sectionBorder--lv4 {
  margin-top: 45px;
  margin-bottom: 12px;
  text-align: left;
}

.ttl-section--lv5,
.ttl-sectionBorder--lv5 {
  margin-bottom: 10px;
  text-align: left;
}

@media (min-width: 768px) {
  .ttl-section--lv1,
.ttl-sectionBorder--lv1 {
    margin-bottom: 35px;
  }

  .ttl-section--lv2,
.ttl-sectionBorder--lv2 {
    margin-top: 90px;
    margin-bottom: 25px;
  }

  .ttl-section--lv3,
.ttl-sectionBorder--lv3 {
    margin-bottom: 45px;
  }

  .ttl-section--lv4,
.ttl-sectionBorder--lv4 {
    margin-top: 60px;
    margin-bottom: 15px;
  }

  .ttl-section--lv5,
.ttl-sectionBorder--lv5 {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
[class*=ttl-section]:not([class*=__]):not([class*=Border]) .ttl-section__en {
  color: #bcc2f7;
  line-height: 1;
  z-index: -1;
  width: 100%;
  font-family: "Jost", sans-serif;
  word-wrap: break-word;
}

[class*=ttl-section]:not([class*=__]):not([class*=Border]) .ttl-section__jp {
  width: 100%;
  margin-top: -3rem;
  display: block;
}

[class*=ttl-section]:not([class*=__]):not([class*=Border]) .ttl-section__jp,
[class*=ttl-sectionBorder] .ttl-section__en,
[class*=ttl-sectionBorder] .ttl-section__jp {
  color: #111;
}

[class*=ttl-section]:not([class*=__]):not([class*=Border]) .ttl-section__en,
[class*=ttl-sectionBorder] .ttl-section__en {
  font-size: 4.3rem;
}

@media (min-width: 768px) {
  [class*=ttl-section]:not([class*=__]):not([class*=Border]) .ttl-section__en,
[class*=ttl-sectionBorder] .ttl-section__en {
    font-size: 8.8rem;
  }
}
[class*=ttl-section]:not([class*=__]):not([class*=Border]) .ttl-section__en + .ttl-section__jp,
[class*=ttl-sectionBorder] .ttl-section__en + .ttl-section__jp {
  font-size: 2.4rem;
}

@media (min-width: 768px) {
  [class*=ttl-section]:not([class*=__]):not([class*=Border]) .ttl-section__en + .ttl-section__jp,
[class*=ttl-sectionBorder] .ttl-section__en + .ttl-section__jp {
    font-size: 3.6rem;
  }
}
[class*=ttl-sectionBorder]::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #111;
  margin-top: 15px;
}

@media (min-width: 768px) {
  [class*=ttl-sectionBorder]::after {
    height: 6px;
    margin-top: 30px;
    width: 60px;
  }
}
[class*=ttl-sectionBorder].u-ta-c::after {
  margin-right: auto;
  margin-left: auto;
}

/* ttl- 共通 */
.ttl-section__jp,
.ttl-section__en, .ttl-banner__jp,
.ttl-banner__en {
  display: block;
  font-weight: 700;
  line-height: 1;
  color: #131313;
}

.ttl-section__en,
.ttl-banner__en {
  font-family: "Jost", sans-serif;
  margin-bottom: 5px;
}

.page-entry [class*=ttl-section]:not([class*=__]):not([class*=Border]) .ttl-section__en {
  color: #bcc2f7;
}

/* ttl-banner */
/* 2-1-5.  Headings  [hdg-***]
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

.hdg-1 {
  font-size: 3.2rem;
}

.hdg-2 {
  font-size: 2.4rem;
}

.hdg-3 {
  font-size: 2.4rem;
}

.hdg-4 {
  font-size: 1.8rem;
}

.hdg-5 {
  font-size: 1.6rem;
}

.hdg-6 {
  font-size: 1.4rem;
}

.hdg-7 {
  font-size: 1.2rem;
}

.hdg-8 {
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .hdg-1 {
    font-size: 3.6rem;
  }

  .hdg-2 {
    font-size: 3.2rem;
  }

  .hdg-3 {
    font-size: 3.6rem;
  }

  .hdg-4 {
    font-size: 2.1rem;
  }

  .hdg-5 {
    font-size: 1.8rem;
  }

  .hdg-6 {
    font-size: 1.6rem;
  }

  .hdg-7 {
    font-size: 1.4rem;
  }

  .hdg-8 {
    font-size: 1.2rem;
  }
}
/* 2-1-6.  Paragraph [prg-***]
-------------------------------------------------- */
.prg-xl, .prg-l, .prg-m, .prg-s, .prg-xs {
  padding-top: 15px;
}

.prg-xl p + p, .prg-l p + p, .prg-m p + p, .prg-s p + p, .prg-xs p + p {
  margin-top: 1.4rem;
}

@media (min-width: 768px) {
  .prg-xl, .prg-l, .prg-m, .prg-s, .prg-xs {
    padding-top: 30px;
  }
}
.prg-xl {
  font-size: 2rem;
  line-height: 1.2;
}

.prg-l {
  font-size: 1.8rem;
  line-height: 1.2;
}

.prg-m {
  font-size: 1.5rem;
  line-height: 1.8;
}

.prg-s {
  font-size: 1.3rem;
  line-height: 1.8;
}

.prg-xs {
  font-size: 1.1rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .prg-xl {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .prg-l {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .prg-m {
    font-size: 1.3rem;
    line-height: 1.8;
  }

  .prg-s {
    font-size: 1rem;
    line-height: 1.8;
  }

  .prg-xs {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .prg-xl {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .prg-l {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .prg-m {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .prg-s {
    font-size: 1.3rem;
    line-height: 1.8;
  }

  .prg-xs {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .prg-xl {
    font-size: 2.4rem;
  }

  .prg-l {
    font-size: 1.8rem;
  }

  .prg-m {
    font-size: 1.6rem;
  }

  .prg-s {
    font-size: 1.4rem;
  }

  .prg-xs {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}
/* 2-1-7.  Nav       [nav-***]
-------------------------------------------------- */
/* nav-category */
.nav-category {
  display: block;
}

.nav-category__item {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .nav-category__items {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    margin-right: -10px;
    margin-left: -10px;
  }

  .nav-category__item {
    width: calc(100% / 2);
    margin-bottom: 0;
    padding: 10px;
  }
}
@media (min-width: 992px) {
  .nav-category__items {
    margin-right: -30px;
    margin-left: -30px;
  }

  .nav-category__item {
    width: calc(100% / 3);
    padding: 30px;
  }
}
/* 2-1-8.  List      [lst-***]
-------------------------------------------------- */
.lst-btn {
  margin-top: 60px;
  margin-right: -30px;
  margin-left: -30px;
}

@media (min-width: 768px) {
  .lst-btn {
    margin-top: 90px;
  }
}
.lst-btn__items, .lst-btn__item {
  padding: 15px;
}

.lst-btn__items {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.lst-btn__item {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.lst-btn__item--w20per {
  padding: 15px;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
}

.lst-btn__item--w25per {
  padding: 15px;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}

.lst-btn__item--w33per {
  padding: 15px;
  -ms-flex-preferred-size: 33.3%;
  flex-basis: 33.3%;
}

.lst-btn__item--w100per {
  padding: 15px;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.lst-taggroup__item {
  margin-top: 30px;
  margin-right: 30px;
}

.lst-newsList__date {
  color: #999;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
  padding-top: 30px;
}

.lst-newsList__date:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.lst-newsList__lnk {
  display: block;
  padding-bottom: 30px;
  border-bottom: 1px solid #e7e7e7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 1025px) {
  .lst-newsList {
    margin-bottom: 60px;
  }

  .lst-newsList__date {
    margin-bottom: 15px;
  }

  .lst-newsList__lnk:hover {
    color: #111;
    border-bottom: 1px solid #111;
  }
}
.btn {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  color: #fff;
  display: inline-block;
  text-align: center;
  width: 100%;
  border-radius: 100px;
  line-height: 1;
  padding: 20px 60px;
  position: relative;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  border-style: solid;
  border-width: 2px;
  border-color: transparent;
  overflow: hidden;
}

@media (min-width: 768px) {
  .btn {
    font-size: 1.6rem;
  }
}
.btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 110%;
  margin: auto;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background-color: #fff;
}

@media (min-width: 1025px) {
  .btn:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.btn__inner {
  position: relative;
  z-index: 1;
}

.btn-large {
  font-size: 1.6rem;
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 366px;
}

@media (min-width: 768px) {
  .btn-large {
    font-size: 2.1rem;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.btn-primary {
  background-color: #2d3038;
  max-width: 600px;
}

@media (min-width: 1025px) {
  .btn-primary:hover {
    border-color: #2d3038;
    color: #2d3038;
  }
}
.btn-danger {
  background-color: #1d2652;
}

.btn-danger2 {
  background-color: #fe5637;
}

@media (min-width: 1025px) {
  .btn-danger:hover {
    border-color: #1d2652;
    color: #1d2652;
  }

  .btn-danger2:hover {
    border-color: #fe5637;
    color: #fe5637;
  }
}
/* 2-1-9.  Button    [btn-***]
-------------------------------------------------- */
/* 共通 */
/* btn-radius */
.btn-radius {
  background-color: #2c2c2c;
  display: inline-block;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  width: 90%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

.btn-radius + .btn-radius {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .btn-radius {
    width: 438px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 1.8rem;
  }

  .btn-radius + .btn-radius {
    margin-top: 24px;
  }
}
.btn-radius .btn-circle__inner {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}

.btn-radius .btn-circle__inner::before {
  content: "";
  display: block;
  height: 0;
  width: 40px;
  margin-left: 20px;
}

.btn-radius .btn-circle__arrow {
  margin-right: 20px;
  margin-left: 20px;
}

@media (min-width: 768px) {
  .btn-radius .btn-circle__arrow {
    margin-right: 30px;
    margin-left: 0;
  }
}
.btn-radius::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #4c4c4c;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50px;
}

.btn-radius:hover::after {
  width: 100%;
  opacity: 1;
}

@media (min-width: 768px) {
  .btn-radius .btn-circle__inner::before {
    margin-left: 30px;
  }
}
/* 共通 circle */
.btn-circle,
.btn-circle--right,
.btn-circle--left,
.btn-circle--down, .btn-circle.btnColor-white,
.btn-circle--right.btnColor-white,
.btn-circle--down.btnColor-white,
.btn-radius {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  color: #131313;
  display: inline-block;
}

@media (min-width: 768px) {
  .btn-circle,
.btn-circle--right,
.btn-circle--left,
.btn-circle--down, .btn-circle.btnColor-white,
.btn-circle--right.btnColor-white,
.btn-circle--down.btnColor-white,
.btn-radius {
    font-size: 1.4rem;
  }
}
a:hover .btn-circle__border:last-child,
button:hover .btn-circle__border:last-child,
[role=button]:hover .btn-circle__border:last-child {
  visibility: inherit;
  -webkit-transition: none;
  transition: none;
  -webkit-animation: btn-circle__border-in 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation: btn-circle__border-in 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.btn-circle__inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.btn-circle__arrow {
  position: relative;
  width: 30px;
  height: 30px;
  visibility: inherit;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .btn-circle__arrow {
    width: 40px;
    height: 40px;
  }
}
.btn-circle__arrow .btn-circle__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  stroke: #131313;
  stroke-width: 1px;
  fill: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.btn-circle__arrow .btn-circle__border:first-of-type {
  opacity: 0.3;
}

.btn-circle__arrow .btn-circle__border:last-of-type {
  stroke-dasharray: 125.6637056px 125.6637056px;
  stroke-dashoffset: 125.6637056px;
  visibility: hidden;
  -webkit-transition: visibility 0s 1s;
  transition: visibility 0s 1s;
  -webkit-animation: btn-circle__border-out 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: btn-circle__border-out 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-circle__icon {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.btn-circle__icon svg {
  fill: #131313;
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .btn-circle__icon svg {
    width: 24px;
    height: 24px;
  }
}
.btn-circle--right .btn-circle__arrow {
  margin-left: 10px;
}

@media (min-width: 768px) {
  .btn-circle--right .btn-circle__arrow {
    margin-left: 15px;
  }
}
.btn-circle--left .btn-circle__arrow {
  margin-right: 10px;
}

@media (min-width: 768px) {
  .btn-circle--left .btn-circle__arrow {
    margin-right: 15px;
  }
}
.btn-circle.btnColor-white,
.btn-circle--right.btnColor-white,
.btn-circle--down.btnColor-white,
.btn-radius {
  color: #fff;
}

.btn-circle.btnColor-white .btn-circle__arrow .btn-circle__border,
.btn-circle--right.btnColor-white .btn-circle__arrow .btn-circle__border,
.btn-circle--down.btnColor-white .btn-circle__arrow .btn-circle__border,
.btn-radius .btn-circle__arrow .btn-circle__border {
  stroke: #fff;
}

.btn-circle.btnColor-white .btn-circle__icon svg,
.btn-circle--right.btnColor-white .btn-circle__icon svg,
.btn-circle--down.btnColor-white .btn-circle__icon svg,
.btn-radius .btn-circle__icon svg {
  fill: #fff;
}

@-webkit-keyframes btn-circle__border-out {
  0% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    stroke-dashoffset: 0;
  }
  to {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
    stroke-dashoffset: -125.6637056px;
  }
}
@keyframes btn-circle__border-out {
  0% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    stroke-dashoffset: 0;
  }
  to {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
    stroke-dashoffset: -125.6637056px;
  }
}
@-webkit-keyframes btn-circle__border-in {
  0% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  to {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    stroke-dashoffset: 0;
  }
}
@keyframes btn-circle__border-in {
  0% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  to {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    stroke-dashoffset: 0;
  }
}
/* フォーム */
.btn-form__posi,
.btn-form__nega {
  padding: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 290px;
  height: 57px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  position: relative;
  margin: 0 auto;
  outline-width: 0;
  border-right: 50px;
}

.btn-form__posi {
  color: #fff;
  background-color: #e9473c;
}

.btn-form__posi:hover {
  background-color: #ee4237;
}

.btn-form__nega {
  color: #fff;
  padding: 0;
  background-color: #1d2652;
}

.btn-form__posi[disabled] {
  background-color: #eee;
  color: #aaa;
}

/* google map */
.btn-googlemap {
  color: #e9473c;
  font-size: 1.3rem;
  font-weight: bold;
  display: inline-block;
}

.btn-googlemap:hover {
  text-decoration: underline;
}

.btn-googlemap__inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.btn-googlemap__icon {
  display: block;
  width: 24px;
  height: 24px;
}

.btn-googlemap__icon img {
  width: 100%;
}

/* btn-trigger */
.btn-trigger {
  border-width: 1px;
  border-style: solid;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.btn-trigger.is-posi {
  border-color: #e9473c;
  color: #e9473c;
}

.btn-trigger.is-posi:hover {
  background-color: #e9473c;
  color: #fff;
}

.btn-trigger.is-nega {
  border-color: #ccc;
  background-color: #ccc;
  color: #fff;
}

/* btn-download */
.btn-download {
  border: 1px solid #efefef;
  padding: 30px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-download:hover {
  border: 1px solid #e9473c;
}

/* 2-1-10. Link      [lnk-***]
-------------------------------------------------- */
.lnk-none {
  text-decoration: none !important;
  color: inherit !important;
}

.lnk-tel {
  pointer-events: auto;
}

.lnk-fax {
  pointer-events: none;
}

.lnk-bdr {
  border-bottom: 1px solid #050e5f;
  color: #050e5f;
}

.lnk-txt {
  display: inline;
  color: #050e5f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.lnk-txt [class*=ti-] {
  margin-left: 5px;
  font-size: 1.1rem;
}

.lnk-bdr-animation {
  display: inline-block;
  position: relative;
}

.lnk-bdr-animation::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #4c4c4c;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lnk-bdr-animation:hover::after {
  -webkit-animation: act-linelink 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  animation: act-linelink 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.lnk-bdr-animation--hover {
  display: inline-block;
  position: relative;
}

.lnk-bdr-animation--hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #4c4c4c;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: act-linelink-black-out 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  animation: act-linelink-black-out 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  -webkit-transform-origin: right;
          transform-origin: right;
  position: absolute;
  bottom: -3px;
  left: 0;
}

.lnk-bdr-animation--hover:hover::after {
  -webkit-animation: act-linelink-black-over 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  animation: act-linelink-black-over 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
}

@media (min-width: 768px) {
  .lnk-tel {
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    pointer-events: none;
  }

  .js-lnkBox.is-active .lnk-txt, .lnk-txt:hover {
    color: #e9473c;
  }

  .lnk-bdr:hover {
    border-bottom: 1px solid transparent;
  }
}
/* 2-1-11. Icon      [ico-***]
-------------------------------------------------- */
.icon-trigger {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #e9473c;
  border-radius: 50%;
  position: relative;
}

.icon-trigger::before, .icon-trigger::after {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
}

.icon-trigger::after {
  width: 10px;
  height: 2px;
  top: 11px;
  left: 7px;
}

.icon-trigger::before {
  width: 2px;
  height: 10px;
  top: 7px;
  left: 11px;
}

.icon-download {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.icon-download svg {
  fill: #e9473c;
  width: 24px;
  height: 24px;
}

.icon-clock {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.icon-clock svg {
  fill: #e9463c;
  width: 24px;
  height: 24px;
}

.icon-right {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.icon-right svg {
  fill: #131313;
  width: 24px;
  height: 24px;
}

/* 2-1-12. Label     [lbl-***]
-------------------------------------------------- */
.lbl-type--blue, .lbl-type1, .lbl-taggroup1, .lbl-type--indigo, .lbl-type--purple, .lbl-type--pink, .lbl-type--red, .lbl-type--orange, .lbl-type2, .lbl-taggroup2, .lbl-type--yellow, .lbl-type--green, .lbl-type3, .lbl-taggroup3, .lbl-type--teal, .lbl-type--cyan, .lbl-type4, .lbl-taggroup4, .lbl-type--main, .lbl-type--sub1, .lbl-type--sub2, .lbl-type--sub3 {
  padding: 0.5em 0.75em;
  line-height: 1;
  display: inline-block;
  font-size: 80%;
  text-align: center;
  text-decoration: none !important;
  background-color: #e9463c;
}

.lbl-type--blue, .lbl-type1, .lbl-taggroup1 {
  border-color: #050e5f;
  color: #fff;
}

.lbl-type--indigo {
  border-color: #6610f2;
  color: #fff;
}

.lbl-type--purple {
  border-color: #6f42c1;
  color: #fff;
}

.lbl-type--pink {
  border-color: #e83e8c;
  color: #fff;
}

.lbl-type--red {
  border-color: #e9463c;
  color: #fff;
}

.lbl-type--orange, .lbl-type2, .lbl-taggroup2 {
  border-color: #e9473c;
  color: #fff;
}

.lbl-type--yellow {
  border-color: #ffc107;
  color: #fff;
}

.lbl-type--green, .lbl-type3, .lbl-taggroup3 {
  border-color: #28a745;
  color: #fff;
}

.lbl-type--teal {
  border-color: #20c997;
  color: #fff;
}

.lbl-type--cyan, .lbl-type4, .lbl-taggroup4 {
  border-color: #17a2b8;
  color: #fff;
}

.lbl-type--main {
  border-color: #fff;
  color: #fff;
}

.lbl-type--sub1 {
  border-color: #888;
  color: #fff;
}

.lbl-type--sub2 {
  border-color: #555;
  color: #fff;
}

.lbl-type--sub3 {
  border-color: #000;
  color: #fff;
}

.lbl-require, .lbl-anyitem {
  display: block;
  float: left;
  width: 4em;
  margin: 0.25em 0.5em 0;
  padding: 0.5rem;
  border-radius: 0.25em;
  font-size: 1.1rem;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .lbl-require, .lbl-anyitem {
    float: right;
  }
}
.lbl-require {
  background-color: #c00;
  color: #fff;
}

.lbl-anyitem {
  background-color: #666;
  color: #fff;
}

/* 2-1-13. Form      [frm-***]
-------------------------------------------------- */
.frm-basic input[type=text],
.frm-basic textarea,
.frm-basic select,
.frm-basic select > option {
  font-size: 1.4rem;
}

.frm-basic input[type=text]:focus,
.frm-basic textarea:focus,
.frm-basic select:focus,
.frm-basic select > option:focus {
  border-color: #999;
}

.frm-basic .frm-basic__zip {
  width: 8em;
}

.frm-basic .frm-basic__inpAge {
  width: 4.5em;
}

.frm-basic .frm-basic__issue--others {
  width: 60%;
  margin-left: 1em;
}

.frm-basic__items--hol {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.frm-basic__items--hol li + li {
  margin-left: 60px;
}

input[type=email],
input[type=tel],
input[type=text].frm-basic__inpText,
input[type=text].frm-basic__email,
input[type=text].frm-basic__zip,
textarea.frm-basic__comment,
select.frm-basic__select {
  background-color: #feffff;
  border: 1px solid #ccc;
  font-size: 1.6rem;
}

input[type=email]:focus,
input[type=tel]:focus,
input[type=text].frm-basic__inpText:focus,
input[type=text].frm-basic__email:focus,
input[type=text].frm-basic__zip:focus,
textarea.frm-basic__comment:focus,
select.frm-basic__select:focus {
  border: 1px solid #e9473c;
}

input[type=email],
input[type=tel],
input[type=text].frm-basic__inpText,
input[type=text].frm-basic__email,
input[type=text].frm-basic__zip,
select.frm-basic__select {
  height: 60px;
}

input[type=text].frm-basic__zip {
  width: auto;
  max-width: 8em;
}

.frm-basic__selectWrap {
  position: relative;
  margin-bottom: 0;
}

.frm-basic__selectWrap::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #131313;
  border-right: solid 2px #131313;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}

select.frm-basic__select {
  background-color: #fff;
}

.page-entry.completion .frm-button__items,
.page-entry.confirm .frm-button__items {
  margin-bottom: 60px;
}

.frm__lead {
  margin-bottom: 60px;
}

.frm__table {
  width: 100%;
  border-bottom: 1px solid #ddd;
  margin-top: 10px;
}

.frm__tr + .frm__tr {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .frm__tr + .frm__tr .frm__tr + .frm__tr {
    margin-top: 40px;
  }
}
.frm__tr,
.frm__th,
.frm__td {
  display: block;
}

.frm__tr {
  border-top: 1px solid #ddd;
}

@media (min-width: 768px) {
  .frm__tr {
    display: table-row;
  }
}
.frm__tr:last-child .frm__td {
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .frm__th,
.frm__td {
    display: table-cell;
  }
}
.frm__th {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
  position: relative;
}

@media (min-width: 768px) {
  .frm__th {
    width: 20%;
    min-width: 190px;
    padding-top: 60px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .frm__td {
    padding-top: 44px;
    padding-bottom: 40px;
  }
}
.frm-basic__item {
  padding-top: 3px;
  padding-bottom: 3px;
}

/* 規約 */
.frm-rules {
  margin: 30px auto 0 auto;
  text-align: center;
}

.frm-rules__body {
  font-size: 1.2rem;
}

/* ボタン */
.frm-button {
  width: auto;
  margin: 30px auto;
  font-size: 1.6rem;
  text-align: center;
}

.frm-button__items {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.frm-rules + .frm-button {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .frm-rules {
    margin: 45px auto 0 auto;
  }

  .frm-button {
    margin: 60px auto 0;
  }

  .frm-button__items {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
    margin-right: -30px;
    margin-left: -30px;
    margin-bottom: 90px;
  }
}
@media (min-width: 768px) {
  .frm-button__item {
    margin-right: 30px;
    margin-left: 30px;
  }
}
.frm-button__item + .frm-button__item {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .frm-button__item + .frm-button__item {
    margin-top: 0;
  }
}
/*
.frm-button__item.prev {
    position: relative;
}

.frm-button__item.prev::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #111;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.frm-button__item.prev:hover::after {
    -webkit-animation: act-linelink 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    animation: act-linelink 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
*/
/* 2-1-14. Media     [mda-***]
-------------------------------------------------- */
[class*=mda-] figure + figcaption {
  margin-top: 20px;
}

.mda-bottom {
  margin: 60px auto 120px;
}

@media (min-width: 768px) {
  .mda-bottom {
    margin: 120px auto 192px;
  }
}
/* 2-1-15. Card      [crd-***]
-------------------------------------------------- */
.crd {
  overflow: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  background-color: #fff;
}

.crd__img {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #000;
}

.crd__content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  height: 100%;
  min-height: 0;
  padding: 30px;
}

.crd__img {
  /*padding-top: 33.3333%;*/
  /* 3:1 */
  /*padding-top: 40%;*/
  /* 5:2 */
  /*padding-top: 50%;*/
  /* 2:1 */
  /*padding-top: 56.25%;*/
  /* 16:9; */
  padding-top: 66.66667%;
  /* 3:2 */
  /*padding-top: 75%;*/
  /* 4:3 */
  /*padding-top: 200%;*/
  /* 1:2 */
}

.crd__ttl {
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 400;
}

.crd__txt {
  margin-bottom: 30px;
  line-height: 2;
}

.crd__lnk {
  margin-top: auto;
}

@media (min-width: 576px) {
  .crd__img {
    /*padding-top: 33.3333%;*/
    /* 3:1 */
    /*padding-top: 40%;*/
    /* 5:2 */
    /*padding-top: 50%;*/
    /* 2:1 */
    /*padding-top: 56.25%;*/
    /* 16:9; */
    padding-top: 66.66667%;
    /* 3:2 */
    /*padding-top: 75%;*/
    /* 4:3 */
    /*padding-top: 200%;*/
    /* 1:2 */
  }

  .crd__ttl {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .crd {
    height: 100%;
    margin-bottom: 0;
  }

  .crd__content {
    padding: 60px;
  }
}
/* 2-1-16. Pagenation
-------------------------------------------------- */
.pagination {
  font-family: "Jost", sans-serif;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .pagination {
    margin-top: 60px;
  }
}
.pagination__items {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .pagination__items {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1;
    width: auto;
    margin-bottom: 0;
  }
}
.pagination__item {
  font-size: 1.6rem;
  color: #111;
}

.pagination__item.current, .pagination__item:hover {
  font-weight: 700;
}

.pagination__item .btn-circle__icon {
  overflow: hidden;
  position: relative;
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .pagination__item .btn-circle__icon {
    width: 24px;
    height: 24px;
  }
}
.pagination__item .btn-circle__icon .icon-list,
.pagination__item .btn-circle__icon .icon-arrow {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: all 0s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.pagination__item .btn-circle__icon .icon-list {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-animation: act-icon-list-before_out 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  animation: act-icon-list-before_out 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.pagination__item .btn-circle__icon .icon-arrow {
  opacity: 0;
  -webkit-transition-delay: 0;
          transition-delay: 0;
  -webkit-animation: act-icon-list-after_out 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  animation: act-icon-list-after_out 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

@media (min-width: 768px) {
  .pagination__item .btn-circle--left:hover .btn-circle__icon .icon-list {
    opacity: 0;
    -webkit-transition-delay: 0;
            transition-delay: 0;
    -webkit-animation: act-icon-list-before_on 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    animation: act-icon-list-before_on 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  }

  .pagination__item .btn-circle--left:hover .btn-circle__icon .icon-arrow {
    opacity: 1;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-animation: act-icon-list-after_on 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
    animation: act-icon-list-after_on 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  }
}
.pagination__item--prev.current,
.pagination__item--next.current {
  visibility: hidden;
  display: block;
}

.pagination__item--prev {
  justify-self: flex-start;
  margin-right: auto;
  margin-left: 0;
}

@media (min-width: 768px) {
  .pagination__item--prev {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0;
  }
}
.pagination__item--next {
  justify-self: flex-end;
  margin-right: 0;
  margin-left: auto;
}

@media (min-width: 768px) {
  .pagination__item--next {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
}
.pagination__arw {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  line-height: 1;
  font-weight: 700;
  color: #111;
  border: 1px solid #111;
  letter-spacing: 2px;
  width: 270px;
  height: 60px;
}

.pagination__lnk,
.pagination__txt {
  width: 40px;
  height: 40px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.pagination__lnk {
  position: relative;
}

.pagination__txt {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  line-height: 1;
}

/* 2-1-17. Breadcrumbs
-------------------------------------------------- */
.breadcrumbs {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 40px;
  padding-left: 30px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .breadcrumbs {
    bottom: 0;
    width: 100%;
    height: 50px;
  }
}
@media (min-width: 1025px) {
  .breadcrumbs {
    bottom: -60px;
    padding-left: calc(((100% - 1100px) / 2) + (60px / 2));
  }
}
.breadcrumbs * {
  color: #b2b2b2;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
}

.breadcrumb__items {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  max-width: 1100px;
  font-size: 1rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .breadcrumb__items {
    font-size: 1.2rem;
  }
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  margin: 0 15px;
  font-size: 1rem;
}

.breadcrumb__item:first-child::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* 2-1-18. Sns
-------------------------------------------------- */
.sns-facebook,
.sns-twitter {
  font-family: "Jost", sans-serif;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  line-height: 1;
}

.sns-facebook:hover,
.sns-twitter:hover {
  color: #e9473c;
}

.sns-facebook svg,
.sns-twitter svg {
  width: 29px;
}

.sns-facebook svg {
  height: 29px;
}

.sns-twitter svg {
  height: 24px;
}

.sns-facebook__path1 {
  fill: #1877f2;
}

.sns-facebook__path2 {
  fill: #fff;
}

.sns-twitter__path1 {
  fill: #1da1f2;
}

/* 2-1-19. News
-------------------------------------------------- */
.newsList {
  position: relative;
  border-bottom: 2px solid #1c1c1c;
}

.newsList .slick-arrow {
  position: absolute;
  top: -60px;
}

.newsList .slick-arrow.btn-circle--right {
  right: 0;
}

.newsList .slick-arrow.btn-circle--left {
  right: 45px;
}

.newsList__lnk {
  padding-bottom: 20px;
  position: relative;
  display: block;
}

@media (min-width: 768px) {
  .newsList__lnk {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding-bottom: 25px;
  }
}
.newsList__head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .newsList__head {
    margin-bottom: 0;
    width: 8em;
  }
}
.newsList__date {
  font-family: "Jost", sans-serif;
  letter-spacing: 2px;
}

.newsList__date {
  color: #131313;
  font-size: 1.1rem;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .newsList__date {
    font-size: 1.5rem;
  }
}
.newsList__body {
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .newsList__body {
    font-size: 1.4rem;
  }
}
/* -----------------------------------------------
/* 2-2. Animation [act-***]
-------------------------------------------------- */
@-webkit-keyframes act-linelink {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 100%;
  }
  51% {
    margin-left: 0;
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes act-linelink {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 100%;
  }
  51% {
    margin-left: 0;
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes act-linelink-black-over {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes act-linelink-black-over {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes act-linelink-black-out {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes act-linelink-black-out {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@-webkit-keyframes act-icon-list-before_on {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
            transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, -140%);
            transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, -140%);
    opacity: 0;
  }
}
@keyframes act-icon-list-before_on {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
            transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, -140%);
            transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, -140%);
    opacity: 0;
  }
}
@-webkit-keyframes act-icon-list-after_on {
  0% {
    -webkit-transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, 140%);
            transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, 140%);
    opacity: 0;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
            transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes act-icon-list-after_on {
  0% {
    -webkit-transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, 140%);
            transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, 140%);
    opacity: 0;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
            transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes act-icon-list-before_out {
  0% {
    -webkit-transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, -140%);
            transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, -140%);
    opacity: 0;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
            transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes act-icon-list-before_out {
  0% {
    -webkit-transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, -140%);
            transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, -140%);
    opacity: 0;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
            transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes act-icon-list-after_out {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
            transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, 140%);
            transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, 140%);
    opacity: 0;
  }
}
@keyframes act-icon-list-after_out {
  0% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
            transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, 140%);
            transform: matrix(1, -0.17, 0.17, 1, 0, 0) translate(0%, 140%);
    opacity: 0;
  }
}
@-webkit-keyframes act-pageHeader {
  0% {
    width: 0;
    margin-left: 0;
  }
  50% {
    width: 100%;
    margin-left: 0;
  }
  100% {
    margin-left: 100%;
  }
}
@keyframes act-pageHeader {
  0% {
    width: 0;
    margin-left: 0;
  }
  50% {
    width: 100%;
    margin-left: 0;
  }
  100% {
    margin-left: 100%;
  }
}
@-webkit-keyframes act-staffLink {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}
@keyframes act-staffLink {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}
/* -----------------------------------------------
/* 2-3. OverLayerConfig [z-index]
-------------------------------------------------- */
.l-main {
  position: relative;
  z-index: 1;
}

.l-loader {
  z-index: 100;
}

.globalNav__bg {
  z-index: -1;
}

.l-header, .globalNav__content {
  z-index: 1001;
}

.logo {
  z-index: 1002;
}

.l-mark {
  z-index: 2000;
}

.subNav {
  z-index: 1000;
}

.l-sns {
  z-index: 10;
}

.g-footer {
  position: relative;
  z-index: 1;
}

body.is-loaded .modal-staff {
  z-index: 10000;
}

/* -----------------------------------------------
/* 2-4. Order [flex-order]
-------------------------------------------------- */
/*.hoge {
    order: 1;
}*/
.col-member .card-member {
  display: block;
}

.col-member .card-member:hover {
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 6, 10, 0.2);
          box-shadow: 0px 0px 10px 5px rgba(0, 6, 10, 0.2);
}

/* -----------------------------------------------
/* pc/sp display
-------------------------------------------------- */
.pc {
  display: none;
}

.sp {
  display: block;
}

@media (min-width: 768px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}
/* -----------------------------------------------
 FCページ用ヘッダーレイアウト20230710
 -------------------------------------------------- */
.header__content.fc {
  padding: 0 20px;
}

.l-header.is-fixed {
  height: 100px;
}

.fNav__lnk--content.two-truck {
  font-size: 1.5rem;
  color: #fff;
  text-indent: 0;
}
.fNav__lnk--content.two-truck:after {
  background-color: #fff;
}

@media (min-width: 1025px) {
  .g-nav.fc {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .g-nav.fc .gNav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .g-nav.fc .gNav .gNav__buttons {
    height: auto;
    margin-top: 10px;
    margin-right: 0;
    margin-left: auto;
  }
  .g-nav.fc .gNav .gNav__buttons .gNav__item--buttons {
    max-width: none;
  }
  .g-nav.fc .gNav .gNav__buttons .gNav__item--buttons a.btn {
    height: auto;
    padding: 5px 40px;
  }
  .g-nav.fc .gNav .gNav__buttons .gNav__item--buttons a.btn .btn__inner {
    font-size: 13px;
  }
  .g-nav.fc .gNav .gNav__main {
    padding: 0 0 0 30px;
  }
  .g-nav.fc .gNav li.gNav__item {
    width: calc(100% / 8);
  }
  .g-nav.fc .gNav li.gNav__item .gNav__lnk--item .gNav__lnk--txt {
    font-size: 13px;
  }
  .g-nav.fc .gNav li.gNav__item:not(:last-of-type) {
    padding-right: 10px;
  }
  .g-nav.fc .gNav .gNav__lnk--item {
    margin-bottom: 0;
  }
}
/*=====================*/
/*20230728 開業募集地にボタン設置*/
/*=====================*/
#c-btn.opened-place.opening-place {
  background-color: #e5f4fe;
  padding: 0 0 180px;
}

/**/
