html {
  overflow-x: hidden;
}

/*-----------------------------------------------
ressets css
-----------------------------------------------*/
/* ============== ユーティリティー ============== */
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
/* デフォルトのマージンを削除 */
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd {
  margin: 0;
}
/* リストのスタイルを削除 */
ul[role='list'],
ol[role='list'],li {
  list-style: none;
}

/* bodyのデフォルトを設定 */
body {
  min-height: 100vh;
  line-height: 1.2;
  color: #000 !important;
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}
/* line-heightを設定 */
h1,h2,h3,h4,button,input,label {
  line-height: 1.2;
}
/* 見出しのテキスト折り返しをbalanceに設定 */
h1,h2,h3,h4 {
  text-wrap: balance;
}
/* classを持たないa要素はデフォルトのスタイルを継承 */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
  text-decoration: none;
}
/* 画像の扱いを簡単にする */
img,picture {
  max-width: 100%;
  display: block;
}
/* inputやbuttonなどのfontは継承 */
input,button,textarea,select {
  font: inherit;
}
/* textareasが小さくならないようにする */
textarea:not([rows]) {
  min-height: 10em;
}
/* ============== h1タグ（非表示・SEO対策） ============== */
h1 {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/*-----------------------------------------------
BootStrap対応
-----------------------------------------------*/
/* ============== ユーティリティー ============== */
.u-fs-10 {
  font-size: 10px !important;
}
.u-fw-b,
.bold {
  font-weight: 700 !important;
}
.u-ta-r,
.tright,
.t-right {
  text-align: right !important;
}
.u-ta-l,
.tleft,
.t-left {
  text-align: left !important;
}
.u-ta-c,
.tcenter,
.t-center {
  text-align: center !important;
}
.u-lh-1 {
  line-height: 1 !important;
}
.u-lh-xs {
  line-height: 1.2 !important;
}
.u-lh-sm {
  line-height: 1.4 !important;
}
.u-lh-md {
  line-height: 1.8 !important;
}
.u-lh-lg {
  line-height: 2.0 !important;
}
.u-lh-xl {
  line-height: 2.2 !important;
}
.u-d-n,
.u-d-n-xs {
  display: none !important;
}
.u-d-i,
.u-d-i-xs {
  display: inline !important;
}
.u-d-b,
.u-d-b-xs {
  display: block !important;
}
.u-mt-xs,
.s-mt1em {
  margin-top: 1em !important;
}
.u-mb-sm,
.u-mb1em {
  margin-bottom: 1em !important;
}
.u-mb-md,
.u-mb15em {
  margin-bottom: 1.5em !important;
}
.u-mb-lg,
.u-mb2em {
  margin-bottom: 2.0em !important;
}
.u-mb-xl,
.u-mb3em {
  margin-bottom: 3.0em !important;
}
.u-mb15 {
  margin-bottom: 15px !important;
}
.u-mb20 {
  margin-bottom: 20px !important;
}
.u-mb30 {
  margin-bottom: 30px !important;
}
.u-mb40 {
  margin-bottom: 40px !important;
}
.u-mb50 {
  margin-bottom: 50px !important;
}
@media (min-width: 544px) {
  .u-d-n-sm {
    display: none !important;
  }
  .u-d-i-sm {
    display: inline !important;
  }
  .u-d-b-sm {
    display: block !important;
  }}
@media (min-width: 768px) {
  .u-d-n-md {
    display: none !important;
  }
  .u-d-i-md {
    display: inline !important;
  }
  .u-d-b-md {
    display: block !important;
  }}
@media (min-width: 992px) {
  .u-d-n-lg {
    display: none !important;
  }
  .u-d-i-lg {
    display: inline !important;
  }
  .u-d-b-lg {
    display: block !important;
  }}
@media (min-width: 1200px) {
  .u-d-n-xl {
    display: none !important;
  }
  .u-d-i-xl {
    display: inline !important;
  }
  .u-d-b-xl {
    display: block !important;
  }}
@media screen and (max-width: 768px) {
  .modal-wrapper .modal-window {
    width: 97% !important;
    padding: 30px 10px 15px !important;
  }}
/*-----------------------------------------------
調整用共通CSS
-----------------------------------------------*/
/* ============== PC・SP 改行 ============== */
@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }}
@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }}
/* ============== PC・SP 表示切替（1110px） ============== */
@media screen and (max-width: 1111px) {
  .pc10 {
    display: none;
  }}
@media screen and (min-width: 1110px) {
  .sp10 {
    display: none;
  }}
/* ============== PC・SP 表示切替（992px） ============== */
@media screen and (max-width: 993px) {
  .pc9 {
    display: none !important;
  }}
@media screen and (min-width: 992px) {
  .sp9 {
    display: none !important;
  }}
/* ============== PC・SP 表示切替（768px） ============== */
@media screen and (max-width: 768px) {
  .pc7 {
    display: none !important;
  }}
@media screen and (min-width: 768px) {
  .sp7 {
    display: none !important;
  }}
/* ============== PC・SP 表示切替（576px） ============== */
@media screen and (max-width: 577px) {
  .pc5 {
    display: none;
  }}
@media screen and (min-width: 576px) {
  .sp5 {
    display: none;
  }}
/* ============== 余白調整 ============== */
.top_10 {
  margin-top: 10px;
}
.top_30 {
  margin-top: 30px;
}
.top_50 {
  margin-top: 50px;
}
.top_80 {
  margin-top: 80px;
}
.top_120 {
  margin-top: 120px;
}
/* ============== 位置調整 ============== */
.center {
  text-align: center;
  margin: 0 auto;
}

/*-----------------------------------------------
共通機能・挙動等
-----------------------------------------------*/
/* ============== モーダルウインドウ ============== */
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}
.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}
.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}
.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 900px;
  padding: 30px 30px 15px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}
.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  padding: 4px 10px;
}
.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}
.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}
.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}
.modal-content h3 {
  color: #000;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  border-bottom: dashed 1px #d8000f;
  margin-bottom: 16px;
}
.modal-content h3 span {
  display: block;
}
.modal-content h4 {}
.modal-content img {
  margin-bottom: 12px;
}
.modal-content p {
  color: #575757;
}
.modal-content ul {
  color: #575757;
}
.modal-content ul li {
  list-style: circle;
  margin-left: 20px;
  margin-bottom: 10px;
}
/* ============== 追従ナビ ============== */


/*-----------------------------------------------
ヘッダー
-----------------------------------------------*/
/* ============== グローバルナビ ============== */
.header {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  align-items: center;
  position: fixed;
  top: 0;
  transition: .5s;
  width: 100%;
  z-index: 999;
}
.header.hide{
  top: -80px;
}
.hd-cover {
  height: 100px;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 4px 6px;
    width: 100vw;
  }
}
/* ============== ヘッダーのスクロールでの挙動 ============== */
.site-logo {
  
}
.site-logo a {
  
}
.site-logo a img {
  height: 44px;
}
.site-logo a img:hover {
  opacity: .9;
}
.site-menu {
  display: flex;
}
.menu-main {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.menu-main li {
  margin: 0 12px;
  text-align: center;
}
.menu-main li a {
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}
.menu-main li a:hover {
  text-shadow: 0 2px 6px #0095ff;
}
.menu-main li a span {
  display: block;
  font-size: 10px;
}
.contact-btn01 {
  border: solid 1px #fff;
  display: block;
  padding: 5px 30px;
  border-radius: 4px;
  box-shadow: inset 0 0 1em rgba(255,255,255,0.4), 0 0 1em rgba(255,255,255,0.5);
}
.contact-btn01:hover {
  background: #fff;
  color: #000 !important;
  text-shadow: none !important;
}
/* ============== ハンバーガー ============== */
nav {
  display: block;
  position: fixed;
  background-color: #ffffff;
  width: 220px;
  top: 0;
  right: -300px;
  bottom: 0;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  right: 0;
  opacity: 1;
}
nav .ham-menu {
  padding: 25px;
  padding-top: 60px;
  font-family: 'Averia Serif Libre', serif;
  font-weight: 700;
}
nav .ham-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .ham-menu ul li {
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .ham-menu ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 13px 6px;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .ham-menu ul li a:hover {
  background: #e4e4e4;
}
.ham-circle {
  background: #fff;
  border-radius: 6px;
  z-index: 10;
  width: 40px;
  height: 40px;
  position: relative;
  box-shadow: 0 0 4px #575757;
}
.toggle-btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding: 17px 9px;
}
.toggle-btn span {
  position: relative;
  display: block;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: #000;
  transition: all 0.5s;
  border-radius: 4px;
}
.toggle-btn span:nth-child(1) {
  top: -5px;
}
.toggle-btn span:nth-child(2) {
  top: 0px;
}
.toggle-btn span:nth-child(3) {
  top: 5px;
}
.open .toggle-btn span {
  background-color: #000;
}
.open .toggle-btn span:nth-child(1) {
  transform: translateY(7px) rotate(-315deg);
}
.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(315deg);
}
#mask {
  display: none;
  transition: all 0.5s;
}
.open #mask {
  display: block;
  background: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

