@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: #121212;
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  body.wrap {
    overflow: hidden;
  }
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  #screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(18, 18, 18, 0.6);
    z-index: 200;
  }
}
@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
.guidance {
  left: -999px;
  position: absolute;
  width: 990px;
}

img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  opacity: 0.7;
  text-decoration: none !important;
}

.NotoSans {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.NotoSerif {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* ▼ タイトル
--------------------------------------- */
#site_title {
  overflow: hidden;
}

h1.title {
  background: #999;
  padding: 20px 10px;
  margin-bottom: 30px;
  color: #fff;
  overflow: hidden;
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: visible;
}
header .header_inner {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
header .online {
  position: fixed;
  top: 15px;
  right: 70px;
  z-index: 2000;
}

.menu {
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2000;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .menu {
    width: 60px;
    height: 60px;
  }
}
.menu .icon {
  display: block;
  width: 30px;
  height: 2px;
  border-top: 2px solid #696969;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .menu .icon {
    left: 15px;
  }
}
.menu .icon::before, .menu .icon::after {
  content: "";
  width: 30px;
  border-top: 2px solid #696969;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
.menu .icon::before {
  top: -11px;
}
.menu .icon::after {
  bottom: -9px;
}
.menu .icon.active {
  border-color: transparent;
}
.menu .icon.active::before {
  border-color: #ECECEC;
  -webkit-transform: rotate(-145deg);
          transform: rotate(-145deg);
  top: -2px;
  right: 0;
}
.menu .icon.active::after {
  border-color: #ECECEC;
  -webkit-transform: rotate(145deg);
          transform: rotate(145deg);
  bottom: 0;
  right: 0;
}

/* グローバルナビゲーション */
#gnav {
  background: #333;
  display: block !important;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  float: none;
  width: 375px;
  height: 100vh;
  max-height: 100vh;
  padding: 70px 30px 100px;
  margin: 0;
  color: #ECECEC;
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  overflow: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
#gnav.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#gnav .h_nav li a {
  display: block;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  #gnav {
    width: 320px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  margin-top: 20px;
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .menu_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }
}

/* ▼ パンくず
--------------------------------------- */
#path {
  margin-bottom: 10px;
  font-size: 14px;
  overflow: hidden;
}
#path li {
  float: left;
}
#path li:not(:last-child):after {
  content: "〉";
  margin-left: 10px;
  color: #333;
}

/* ▼ システム
--------------------------------------- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ▼▼▼ フッター
===================================== */
footer {
  width: 100%;
  background: #333;
  padding: 20px 0;
  clear: both;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 20px;
  }
}

#footer_inner {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  width: 60px;
  height: 60px;
  background: #000;
  bottom: 0;
  right: 0;
  z-index: 2000;
  position: fixed;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 50px;
    height: 50px;
  }
}
.pagetop::after {
  content: "";
  width: 11px;
  height: 11px;
  border-left: #FFF 1px solid;
  border-top: #FFF 1px solid;
  position: absolute;
  top: calc(50% - 3px);
  right: calc(50% - 6px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ▼ コピーライト
--------------------------------------- */
#copyright {
  text-align: center;
  font-size: 12px;
  color: #ECECEC;
}

/* ▼▼▼ 404
====================================================== */
#not_found {
  padding: 8vw 20px;
}
@media screen and (max-width: 767px) {
  #not_found {
    padding: 100px 20px 60px;
  }
}
#not_found p {
  font-size: 14px;
  text-align: center;
}
#not_found p.arial {
  margin-bottom: 10px;
  font-size: 42px;
  font-family: "Arial", "メイリオ";
}
@media screen and (max-width: 767px) {
  #not_found p.arial {
    margin-bottom: 10px;
    font-size: 39px;
  }
}
#not_found p.arial + p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #not_found p.arial + p {
    ont-size: 17px;
  }
}
#not_found p.txt {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #not_found p.txt {
    line-height: 1.6;
  }
}
#not_found .top_btn a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ccc;
}