@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "source-han-sans-japanese", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  position: relative;
}

a {
  display: block;
  color: var(--base-color);
  text-decoration-line: none;
}
a :hover {
  opacity: 1;
  transition: 0.4s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}
a img {
  margin-bottom: 1rem;
}
a img:hover {
  opacity: 0.8;
}

/*CSSアニメーション（フェードイン）
-------------------------------------*/
/* フェードインさせる要素 */
.scroll_fadein {
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 2s; /* 動きを滑らかに */
  display: flex;
}

/* フェードイン用のクラス */
.fadeIn {
  opacity: 1;
}

/*CSSアニメーション（スライドイン）
-------------------------------------*/
.effect {
  display: inline-block;
  padding: 4px 20px;
  position: relative;
}
.effect span {
  opacity: 0;
}

.effect span,
.effect span::after {
  animation-delay: var(--animation-delay, 4s); /* アニメーションの開始タイミング */
  animation-iteration-count: var(--iterations, 1); /* 再生される回数 */
  animation-duration: var(--duration, 800ms); /* 完了するまでの所要時間 */
  animation-fill-mode: both; /* 実行の前後 */
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1); /* タイミングの指定 */
}

.effect.scroll-in span {
  opacity: 1;
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 700ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  white-space: nowrap;
}
.effect.scroll-in span .effect.scroll-in span::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
/*CSSアニメーション（スライドループ）
-------------------------------------*/
.loopSlide {
  display: flex;
  width: 100vw;
  height: 622px;
  overflow: hidden;
}
.loopSlide img {
  width: auto;
  height: 100%;
}
.loopSlide img:first-child {
  animation: slide1 60s -30s linear infinite;
}
.loopSlide img:last-child {
  animation: slide2 60s linear infinite;
}

.loopSlide_sp {
  display: flex;
  width: 100vw;
  height: 200x;
  overflow: hidden;
}
.loopSlide_sp img {
  width: auto;
  height: 100%;
}
.loopSlide_sp img:first-child {
  animation: slide1 60s -30s linear infinite;
}
.loopSlide_sp img:last-child {
  animation: slide2 60s linear infinite;
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@media screen and (max-width: 1200px) {
  /* 1200pxまでの幅の場合に適用される(タブレット) */
  .loopSlide {
    margin: 10% 0 6% 0;
    height: 422px;
  }
}
@media screen and (max-width: 736px) {
  /* 736pxまでの幅の場合に適用される(スマホ) */
  .loopSlide {
    margin: 10% 0 8% 0;
    height: 422px;
  }
}
/*標準ボタン
-------------------------------------*/
.button a {
  background: #ffffff;
  border-radius: 9999px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 6% auto;
  width: 90%;
  padding: 10px 0;
  text-decoration: none;
  color: #333;
  line-height: 1.8;
  font-size: 1.3rem;
  transition: 0.3s ease-in-out;
  font-weight: bold;
}

.button a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.button a:hover {
  background: #333;
  color: #FFF;
}

.button a:hover:after {
  right: 1.4rem;
}

/*SP標準ボタン
-------------------------------------*/
.button_sp a {
  background: #ffffff;
  border-radius: 9999px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 6% auto;
  width: 45%;
  text-decoration: none;
  color: #333;
  line-height: 1.8;
  padding: 2% 0;
  font-size: 1.3rem;
  transition: 0.3s ease-in-out;
  font-weight: bold;
}

.button_sp a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.button_sp a:hover {
  background: #333;
  color: #FFF;
}

.button_sp a:hover:after {
  right: 1.4rem;
}

/*CSSアニメーション（下から上にフェードイン）
-------------------------------------*/
/*text animetions*/
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0px);
  }
}
.anime-up.displayed span {
  animation: showText 1s backwards;
  display: inline-block;
}

.anime-up.displayed > span {
  overflow: hidden;
}

.anime-up.displayed > span > span {
  animation: showTextFromBottom 0.5s backwards;
}

/*CSSアニメーション（浮遊）
-------------------------------------*/
/* 回転するアニメーション */
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* このクラスをつけると回転を無限に繰り返します */
.anime-fuwafuwa {
  animation: 5.5s fuwafuwa infinite;
}

/*スライダー（slick）ボタンデザイン
-------------------------------------*/
.arrow_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 20px 0 0;
  position: relative;
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: solid 2px #333;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  z-index: 1;
}

.next-arrow {
  top: 36%;
  right: 2%;
}

.prev-arrow {
  transform: rotate(180deg);
  margin-right: 20px;
  top: 36%;
  left: 1%;
}

.prev-arrow::before,
.next-arrow::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px solid #000000;
  border-top: 3px solid #000000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}

/*各デバイス間の表示・非表示
-------------------------------------*/
.pc_none {
  display: none;
}

@media screen and (max-width: 720px) {
  /* 720pxまでの幅の場合に適用される(スマホ) */
  .sp_none {
    display: none;
  }
  .pc_none {
    display: block;
  }
  .meter-banner, .meter-banner2 {
    display: none;
  }
  #page_list {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  /* 1200pxまでの幅の場合に適用される(タブレット横) */
  .meter-banner {
    display: none;
  }
}
h1 {
  display: none;
  opacity: 0;
}

header {
  width: 100%;
  background-color: #000;
  background-size: cover;
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: block;
  position: relative;
  /* overlay */
}
header .logo {
  margin: 1% 0 0 1%;
}
header .logo2 {
  margin: 1% 0 0 1%;
}
header .header__container {
  display: flex;
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
}
header .overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
}

.glitch {
  color: white;
  left: 20px;
  right: 0;
  top: 31%;
  width: 130px;
  writing-mode: vertical-rl;
  font-size: 3rem;
  position: absolute;
  height: 600px;
  line-height: 4.2rem;
  margin: auto;
}

@keyframes noise-anim {
  0% {
    clip: rect(12px, 9999px, 80px, 0);
  }
  5% {
    clip: rect(87px, 9999px, 20px, 0);
  }
  10% {
    clip: rect(71px, 9999px, 78px, 0);
  }
  15% {
    clip: rect(64px, 9999px, 28px, 0);
  }
  20% {
    clip: rect(96px, 9999px, 25px, 0);
  }
  25% {
    clip: rect(70px, 9999px, 67px, 0);
  }
  30% {
    clip: rect(75px, 9999px, 3px, 0);
  }
  35% {
    clip: rect(60px, 9999px, 92px, 0);
  }
  40% {
    clip: rect(81px, 9999px, 95px, 0);
  }
  45% {
    clip: rect(84px, 9999px, 39px, 0);
  }
  50% {
    clip: rect(80px, 9999px, 34px, 0);
  }
  55% {
    clip: rect(29px, 9999px, 21px, 0);
  }
  60% {
    clip: rect(19px, 9999px, 17px, 0);
  }
  65% {
    clip: rect(13px, 9999px, 88px, 0);
  }
  70% {
    clip: rect(32px, 9999px, 20px, 0);
  }
  75% {
    clip: rect(98px, 9999px, 17px, 0);
  }
  80% {
    clip: rect(88px, 9999px, 88px, 0);
  }
  85% {
    clip: rect(38px, 9999px, 91px, 0);
  }
  90% {
    clip: rect(80px, 9999px, 16px, 0);
  }
  95% {
    clip: rect(47px, 9999px, 53px, 0);
  }
  100% {
    clip: rect(42px, 9999px, 91px, 0);
  }
}
.glitch:after {
  content: attr(data-text);
  position: absolute;
  right: 0;
  text-shadow: -1px 0 red;
  top: 0;
  color: white;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim 2s infinite linear alternate-reverse;
}

@keyframes noise-anim-2 {
  0% {
    clip: rect(49px, 9999px, 20px, 0);
  }
  5% {
    clip: rect(20px, 9999px, 72px, 0);
  }
  10% {
    clip: rect(44px, 9999px, 75px, 0);
  }
  15% {
    clip: rect(100px, 9999px, 53px, 0);
  }
  20% {
    clip: rect(4px, 9999px, 56px, 0);
  }
  25% {
    clip: rect(139px, 9999px, 39px, 0);
  }
  30% {
    clip: rect(148px, 9999px, 117px, 0);
  }
  35% {
    clip: rect(119px, 9999px, 21px, 0);
  }
  40% {
    clip: rect(93px, 9999px, 27px, 0);
  }
  45% {
    clip: rect(47px, 9999px, 109px, 0);
  }
  50% {
    clip: rect(102px, 9999px, 76px, 0);
  }
  55% {
    clip: rect(106px, 9999px, 102px, 0);
  }
  60% {
    clip: rect(123px, 9999px, 130px, 0);
  }
  65% {
    clip: rect(102px, 9999px, 102px, 0);
  }
  70% {
    clip: rect(60px, 9999px, 128px, 0);
  }
  75% {
    clip: rect(39px, 9999px, 69px, 0);
  }
  80% {
    clip: rect(25px, 9999px, 95px, 0);
  }
  85% {
    clip: rect(39px, 9999px, 18px, 0);
  }
  90% {
    clip: rect(108px, 9999px, 142px, 0);
  }
  95% {
    clip: rect(62px, 9999px, 107px, 0);
  }
  100% {
    clip: rect(106px, 9999px, 51px, 0);
  }
}
.glitch:before {
  content: attr(data-text);
  position: absolute;
  left: 61px;
  text-shadow: 1px 0 blue;
  top: 0;
  color: white;
  overflow: hidden;
  clip: rect(0, 600px, 0, 0);
  animation: noise-anim-2 4s infinite linear alternate-reverse;
}

.glitch2 {
  color: white;
  right: 50%;
  top: 31%;
  width: 130px;
  writing-mode: vertical-rl;
  font-size: 2.8rem;
  position: absolute;
  height: 600px;
  line-height: 4.2rem;
  margin: auto;
}

@keyframes noise-anim {
  0% {
    clip: rect(4px, 9999px, 36px, 0);
  }
  5% {
    clip: rect(23px, 9999px, 59px, 0);
  }
  10% {
    clip: rect(59px, 9999px, 37px, 0);
  }
  15% {
    clip: rect(98px, 9999px, 97px, 0);
  }
  20% {
    clip: rect(79px, 9999px, 3px, 0);
  }
  25% {
    clip: rect(82px, 9999px, 97px, 0);
  }
  30% {
    clip: rect(38px, 9999px, 33px, 0);
  }
  35% {
    clip: rect(63px, 9999px, 69px, 0);
  }
  40% {
    clip: rect(29px, 9999px, 35px, 0);
  }
  45% {
    clip: rect(49px, 9999px, 4px, 0);
  }
  50% {
    clip: rect(72px, 9999px, 87px, 0);
  }
  55% {
    clip: rect(73px, 9999px, 96px, 0);
  }
  60% {
    clip: rect(66px, 9999px, 77px, 0);
  }
  65% {
    clip: rect(14px, 9999px, 100px, 0);
  }
  70% {
    clip: rect(91px, 9999px, 46px, 0);
  }
  75% {
    clip: rect(81px, 9999px, 63px, 0);
  }
  80% {
    clip: rect(96px, 9999px, 89px, 0);
  }
  85% {
    clip: rect(87px, 9999px, 54px, 0);
  }
  90% {
    clip: rect(55px, 9999px, 89px, 0);
  }
  95% {
    clip: rect(57px, 9999px, 95px, 0);
  }
  100% {
    clip: rect(52px, 9999px, 33px, 0);
  }
}
.glitch2:after {
  content: attr(data-text);
  position: absolute;
  left: 51%;
  text-shadow: -1px 0 red;
  top: 0;
  color: white;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim 2s infinite linear alternate-reverse;
}

@keyframes noise-anim-2 {
  0% {
    clip: rect(23px, 9999px, 136px, 0);
  }
  5% {
    clip: rect(96px, 9999px, 1px, 0);
  }
  10% {
    clip: rect(104px, 9999px, 107px, 0);
  }
  15% {
    clip: rect(118px, 9999px, 80px, 0);
  }
  20% {
    clip: rect(1px, 9999px, 27px, 0);
  }
  25% {
    clip: rect(60px, 9999px, 144px, 0);
  }
  30% {
    clip: rect(98px, 9999px, 4px, 0);
  }
  35% {
    clip: rect(83px, 9999px, 134px, 0);
  }
  40% {
    clip: rect(117px, 9999px, 4px, 0);
  }
  45% {
    clip: rect(43px, 9999px, 65px, 0);
  }
  50% {
    clip: rect(55px, 9999px, 82px, 0);
  }
  55% {
    clip: rect(58px, 9999px, 38px, 0);
  }
  60% {
    clip: rect(106px, 9999px, 5px, 0);
  }
  65% {
    clip: rect(91px, 9999px, 57px, 0);
  }
  70% {
    clip: rect(149px, 9999px, 108px, 0);
  }
  75% {
    clip: rect(132px, 9999px, 102px, 0);
  }
  80% {
    clip: rect(36px, 9999px, 75px, 0);
  }
  85% {
    clip: rect(60px, 9999px, 117px, 0);
  }
  90% {
    clip: rect(50px, 9999px, 50px, 0);
  }
  95% {
    clip: rect(117px, 9999px, 28px, 0);
  }
  100% {
    clip: rect(85px, 9999px, 3px, 0);
  }
}
.glitch2:before {
  content: attr(data-text);
  position: absolute;
  left: 64px;
  text-shadow: 1px 0 blue;
  top: 0;
  color: white;
  overflow: hidden;
  clip: rect(0, 600px, 0, 0);
  animation: noise-anim-2 4s infinite linear alternate-reverse;
}

.rss_sub_box {
  width: 820px;
  height: 62px;
  background: #000000;
  border-radius: 45px;
  position: absolute;
  z-index: 1;
  opacity: 0.8;
  color: #fff;
  margin: auto;
  bottom: 6%;
  right: 0;
  left: 0;
  display: flex;
}
.rss_sub_box h3 {
  font-size: 19px;
  font-weight: bold;
  padding: 2.8% 3% 0 4%;
  border-right: rgba(255, 255, 255, 0.4392156863) solid 1px;
}
.rss_sub_box dl {
  font-size: 17px;
  display: flex;
  width: 100%;
  margin: 2.8% 1%;
  font-weight: bold;
  color: #eff300;
}
.rss_sub_box dt {
  margin: 0 4% 0;
}

/* sub_page */
.header_sub {
  width: 100%;
  background-size: cover;
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: block;
  position: relative;
}

.kv_img_company {
  background-image: url(../img/company/kv.png);
}

.kv_img_new-graduate {
  background-image: url(../img/recruit/kv_new-graduate.png);
}

.kv_img_mid-career {
  background-image: url(../img/recruit/kv_mid-career.png);
}

.kv_img_mid-career2 {
  background-image: url(../img/recruit/kv_mid-career2.png);
}

/* single_page */
.header_sub_news {
  width: 100%;
  background-image: url(../img/news/kv.png);
  background-size: cover;
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: block;
  position: relative;
}

.header_sub_interview {
  width: 100%;
  background-image: url(../img/interview/kv.png);
  background-size: cover;
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: block;
  position: relative;
}

#page_list {
  width: 100%;
  background-color: #1d2327;
  color: #ffffff;
  padding: 1% 0;
}

.logo {
  margin: 1% 0 0 1%;
}

.header__container {
  display: flex;
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
}

.header_h3 {
  text-align: center;
  color: #ffffff;
  font-size: 6vh;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 80%;
  height: 8rem;
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.hamburger {
  background-color: #000000;
  border-radius: 45px;
  width: 65px;
  height: 65px;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  right: 2%;
  top: 18px;
  z-index: 99999;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  position: absolute;
  content: "";
  width: 36px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.5s;
  padding: -14%;
}

.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

input[type=checkbox]:checked + .hamburger span {
  background-color: transparent;
}

input[type=checkbox]:checked + .hamburger span::before {
  top: 0;
  transform: rotate(45deg);
}

input[type=checkbox]:checked + .hamburger span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ===============================================
メニューのスタイリング
=============================================== */
.nav {
  position: fixed;
  width: 100%;
  text-align: center;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: #000000;
  color: #fff;
  padding: 10% 0;
  transition: all 0.5s;
  z-index: 999;
}

.nav__item a {
  display: block;
  font-size: 20px;
  padding: 40px 0 40px 0;
  text-transform: uppercase;
}

.nav__item a:hover {
  color: #000000;
  background-color: #fff;
}

input[type=checkbox]:checked ~ .nav {
  right: 0;
}

/* ===============================================
/*レスポンシブ関連▼
  =============================================== */
@media screen and (max-width: 1200px) {
  /* 1200pxまでの幅の場合に適用される(タブレット) */
  .tb_none {
    display: none;
  }
  .rss_sub_box {
    width: 96%;
  }
  .header_sub .header_h3 {
    font-size: 6vh;
  }
}
@media screen and (max-width: 736px) {
  /* 736pxまでの幅の場合に適用される(スマホ) */
  /*デバイス事のコンテンツ非表示
  -------------------------------------*/
  .sp_none {
    display: none;
  }
  .pc_none {
    display: block;
  }
  /*ヘッダー
  -------------------------------------*/
  header {
    width: 100%;
    background-size: cover;
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  header h1 {
    display: none;
  }
  header .header_h3 {
    font-size: 5vh;
  }
  header .header__container {
    display: flex;
    position: unset;
  }
  .header__container .logo {
    width: 72%;
    z-index: 2;
    top: 28px;
    position: absolute;
    margin: 0 0 0 3%;
  }
  .head {
    position: relative;
    display: flex;
    height: 100vh;
  }
  .head .recruit_fix_bnr {
    position: absolute;
    bottom: 12%;
    right: 2%;
    z-index: 1;
  }
  .head .recruit_fix_bnr .sp_movie {
    background-size: cover;
  }
  .kv_img_company {
    background-image: url(../img/company/kv_sp.png);
  }
  .kv_img_new-graduate {
    background-image: url(../img/recruit/kv_new-graduate_sp.png);
  }
  .kv_img_mid-career {
    background-image: url(../img/recruit/kv_mid-career_sp.png);
  }
  .kv_img_mid-career2 {
    background-image: url(../img/recruit/kv_mid-career2_sp.png);
  }
  .header_sub_news {
    background-image: url(../img/news/news_kv_sp.png);
  }
  .header_sub_interview {
    background-image: url(../img/interview/kv_sp.png);
  }
  .telbox {
    margin-left: auto;
    font-size: 3rem;
    left: 32%;
    padding: 1rem 0 0 0;
  }
  .menu {
    background-color: var(--back-color);
  }
  .hamburger {
    right: 4%;
  }
  .glitch {
    top: 24%;
    color: white;
    writing-mode: vertical-rl;
    font-size: 2.8rem;
    position: absolute;
    height: 600px;
    line-height: 4.2rem;
    left: 0;
    right: 0;
    margin: auto;
  }
  /*サブヘッダー▼
  -------------------------------------*/
  .header_sub .header__container {
    position: unset;
  }
  .header_sub .header_h3 {
    font-size: 5vh;
  }
  /*スクロールアニメーション▼
  -------------------------------------*/
  .scroll-downs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: -80%;
    left: 0;
    margin: auto;
    width: 34px;
    height: 55px;
  }
  .mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
  }
  .scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    animation-iteration-count: infinite;
  }
  @keyframes scroll {
    0% {
      opacity: 0;
    }
    10% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(15px);
      opacity: 0;
    }
  }
  .head, #sec01, #sec01_2, #sec02, #sec03, #sec04, #sec05, #sec06, #sec07 {
    width: 100%;
  }
  nav .nav_sp {
    display: block;
  }
  .header__container {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: inherit;
    color: #fff;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .header__logo a {
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
  }
}
.meter-banner {
  position: fixed;
  margin: 15px 20px;
  z-index: 998;
  bottom: 0;
  right: 0px;
  width: 400px;
  height: 141px;
  background: url(../img/bnr_fix01.png);
  background-size: cover;
}
.meter-banner .button_box {
  position: absolute;
  bottom: 0%;
  left: 3%;
  display: flex;
}
.meter-banner .button_box a {
  margin: 0 1%;
}

.meter-banner-close {
  font-weight: bold;
  position: absolute;
  top: -10px;
  left: 386px;
  z-index: 99999;
  padding: 4px 8px;
  border: none;
  background-color: #f8f8f8;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
}

.meter-banner2 {
  position: fixed;
  right: 0;
  top: 22%;
}

.meter-banner-close2 {
  font-weight: bold;
  position: absolute;
  top: -2%;
  left: 18%;
  z-index: 99999;
  padding: 4px 8px;
  border: none;
  background-color: #f8f8f8;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
}

#footer {
  width: 100%;
  background-color: #0a0a0a;
  position: relative;
}
#footer .wrap {
  width: 1200px;
  margin: 0 auto;
  padding: 3% 0 2% 0;
}
#footer .content_box {
  display: flex;
  margin: 0 0 3% 0;
}
#footer .content_box ul {
  width: 680px;
  color: white;
}
#footer .content_box ul li {
  margin: 2% 8% 2% 0;
  padding: 6% 0 3% 0;
  border-top: solid 1px #393939;
}
#footer .company_site {
  width: 100%;
  background-color: #252525;
  margin-bottom: 1%;
}
#footer .company_site h4 {
  font-size: 2rem;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
#footer .company_site .wrap {
  width: 1200px;
  margin: 0 auto;
}
#footer .company_site .company_site_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 4% auto 2% auto;
}
#footer .logo {
  width: 44%;
}
#footer .copyright {
  text-align: center;
  color: white;
  padding-bottom: 1%;
}

/* ===============================================
/*レスポンシブ関連▼
  =============================================== */
@media screen and (max-width: 1200px) {
  /* 1200pxまでの幅の場合に適用される(タブレット) */
  #footer .wrap {
    width: 100%;
  }
  #footer .logo {
    width: 66%;
  }
  #footer .company_site .wrap {
    width: 64%;
    padding-top: 6%;
  }
  #footer .company_site .wrap .company_site_box {
    width: 100%;
    margin: 6% auto;
  }
}
@media screen and (max-width: 736px) {
  /* 736pxまでの幅の場合に適用される(スマホ) */
  #footer {
    width: 100%;
    text-align: center;
    background-color: #0a0a0a;
    color: white;
    width: 100%;
    padding: 4% 0;
  }
  #footer .wrap {
    width: 100%;
    margin: 0 0 8% 0;
  }
  #footer .content_box {
    display: block;
  }
  #footer .content_box .logo {
    width: 80%;
    margin: 3% auto 8% auto;
  }
  #footer .content_box ul {
    width: 100%;
    margin: 0 auto;
  }
  #footer .content_box ul li {
    margin: 6% 0;
    border: unset;
  }
  #footer .copyright {
    margin: 2% 0 0 0;
    padding: 2% 0 0 0;
  }
  #footer .company_site h4 {
    font-size: 1.5rem;
    margin: 5% 0 10% 0;
  }
  #footer .company_site img {
    width: 98%;
  }
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

img {
  vertical-align: top;
}