@charset "UTF-8";
/*=====================================/
/  mixin
/======================================*/
/*=====================================/
/  カラー管理
/======================================*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  初期設定                                                   */
html {
  height: 100%;
}
@media screen and (min-width: 1020.02px) {
  html {
    font-size: 6.25%;
  }
}
@media screen and (min-width: 768.02px) and (max-width: 1020px) {
  html {
    font-size: 0.0980392157vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.2666666667vw;
  }
}

body {
  height: 100%;
  background-color: #fff;
  color: #333333;
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16rem;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: normal;
  text-rendering: optimizeSpeed;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.body-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.main {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (min-width: 768.02px) {
  .no-pc {
    display: none !important;
  }
}

@media screen and (max-width: 1366rem) and (min-width: 640rem) {
  .no-tab {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .no-sp {
    display: none !important;
  }
}

.dib {
  display: inline-block;
}

.form-reset {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
a:hover {
  opacity: 0.6;
}

/*=====================================/
/  z-index                              
/~=====================================*/
.header {
  z-index: 9000;
  position: relative;
}
.header__main {
  z-index: 10;
}

/*=====================================/
/  ヘッダー
/======================================*/
.header {
  width: 100%;
  background: #fff;
}
.header__top {
  height: 50rem;
  background: #FFEBEB;
  text-align: center;
  line-height: 50rem;
  font-size: 14rem;
  color: #C83030;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .header__top {
    line-height: 1.25;
    font-size: 12rem;
    display: grid;
    place-items: center;
  }
}

/*=====================================/
/  グローバルメニュー
/======================================*/
.global-nav {
  padding: 15rem 0;
  height: 100rem;
}
@media screen and (max-width: 768px) {
  .global-nav {
    height: auto;
  }
}
.global-nav__list {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media screen and (max-width: 768px) {
  .global-nav__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 6rem 0;
  }
}
@media screen and (max-width: 768px) {
  .global-nav__list.inner {
    padding-inline: 0;
  }
}
.global-nav__item + .global-nav__item {
  border-left: 1rem solid #D8D8D8;
}
@media screen and (max-width: 768px) {
  .global-nav__item:nth-of-type(5) {
    border-left: none;
  }
}
.global-nav__item-link {
  padding-top: 18rem;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6rem;
  font-size: 15rem;
  line-height: 1.75;
  font-weight: bold;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .global-nav__item-link {
    font-size: 12rem;
    gap: 4rem;
  }
}
.global-nav__item-link:hover {
  opacity: 0.6;
}
.global-nav__item-link::before {
  content: "";
  display: block;
  background: no-repeat center/contain;
}
.global-nav__item:nth-of-type(1) .global-nav__item-link::before {
  width: 21.96rem;
  height: 21.59rem;
  background-image: url(../img/common/menu-icon01.svg);
}
.global-nav__item:nth-of-type(2) .global-nav__item-link::before {
  width: 21.96rem;
  height: 21.59rem;
  background-image: url(../img/common/menu-icon02.svg);
}
.global-nav__item:nth-of-type(3) .global-nav__item-link::before {
  width: 21.96rem;
  height: 21.59rem;
  background-image: url(../img/common/menu-icon03.svg);
}
.global-nav__item:nth-of-type(4) .global-nav__item-link::before {
  width: 21.96rem;
  height: 21.59rem;
  background-image: url(../img/common/menu-icon04.svg);
}
.global-nav__item:nth-of-type(5) .global-nav__item-link::before {
  width: 21.96rem;
  height: 21.59rem;
  background-image: url(../img/common/menu-icon05.svg);
}
.global-nav__item:nth-of-type(6) .global-nav__item-link::before {
  width: 21.96rem;
  height: 21.59rem;
  background-image: url(../img/common/menu-icon06.svg);
}
.global-nav__item:nth-of-type(7) .global-nav__item-link::before {
  width: 21.96rem;
  height: 21.59rem;
  background-image: url(../img/common/menu-icon07.svg);
}
.global-nav__item:nth-of-type(8) .global-nav__item-link::before {
  width: 21.96rem;
  height: 21.59rem;
  background-image: url(../img/common/menu-icon08.svg);
}

/*=====================================/
/  フッター
/======================================*/
.footer {
  height: 50rem;
  background: #282828;
}
.footer__copyright {
  line-height: 50rem;
  color: #fff;
  text-align: center;
  font-size: 12rem;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 11rem;
  }
}

/*=====================================/
/  共通パーツ
/======================================*/
.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}

.inner {
  width: 88.785046729%;
  max-width: 1020rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding-inline: 15rem;
  }
}

.sec__deco::after {
  content: "";
  display: block;
  width: 100%;
  height: 5rem;
  background: url(../img/common/sec-deco.svg) no-repeat center/cover;
}

/*=====================================/
/  ローディング
/======================================*/
.loading {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: auto;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  z-index: 9999;
}
.loading--js-loaded {
  opacity: 0;
  pointer-events: none;
}

/*=====================================/
/  ページトップ
/======================================*/
#page_top {
  width: 50rem;
  height: 50rem;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #282828;
  opacity: 0.6;
  z-index: 10;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 25rem;
  color: #fff;
  position: absolute;
  width: 25rem;
  height: 34rem;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*=====================================/
/  アニメーション
/======================================*/
.js-focus {
  -webkit-transition: opacity 0.8s 0.6s ease-out, -webkit-filter 0.8s 0.6s ease-out;
  transition: opacity 0.8s 0.6s ease-out, -webkit-filter 0.8s 0.6s ease-out;
  transition: opacity 0.8s 0.6s ease-out, filter 0.8s 0.6s ease-out;
  transition: opacity 0.8s 0.6s ease-out, filter 0.8s 0.6s ease-out, -webkit-filter 0.8s 0.6s ease-out;
  -webkit-filter: blur(10rem);
          filter: blur(10rem);
  opacity: 0;
}
.js-focus.visible {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}

.js-up {
  opacity: 0;
  -webkit-transform: translateY(100rem);
          transform: translateY(100rem);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.js-up.visible {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.js-left {
  opacity: 0;
  -webkit-transform: translateX(-100rem);
          transform: translateX(-100rem);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.js-left.visible {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.js-right {
  opacity: 0;
  -webkit-transform: translateX(100rem);
          transform: translateX(100rem);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.js-right.visible {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}