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

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --font-jost: 'Jost', 'Noto Sans JP', sans-serif;
  --font-noto: 'Noto Sans JP', sans-serif;
  --color-txt: #2c2c2c;
}

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

body {
  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(0, 0, 0, 0.8);
    z-index: 200;
  }
}
@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  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 {
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}

.container {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.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 {
  --header-height: 70px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 2000;
}

.h_container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--header-height) 0 20px;
  position: relative;
}
.h_logo {
  width: 235px;
  max-width: 100%;
  position: relative;
  z-index: 2000;
}

.menu {
  --menu-icon-width: 33px;
  display: block;
  width: var(--header-height);
  height: var(--header-height);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2000;
}
.menu .icon {
  display: block;
  width: calc(var(--menu-icon-width) * 0.8);
  height: 1px;
  background: var(--color-txt);
  position: absolute;
  top: 36px;
  right: calc((var(--header-height) - var(--menu-icon-width)) / 2);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .icon::before, .menu .icon::after {
  content: "";
  width: var(--menu-icon-width);
  height: 1px;
  background: var(--color-txt);
  position: absolute;
  transition: all 0.3s;
  right: 0;
}
.menu .icon::before {
  top: -8px;
}
.menu .icon::after {
  bottom: -8px;
}
.menu .icon span:before {
  content: "MENU";
  color: var(--color-txt);
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  right: calc(var(--menu-icon-width) / 2);
  bottom: -20px;
  transform: translate(50%, 100%);
  -webkit-transform: translate(50%, 100%);
}
.menu .icon.active {
  background: transparent;
}
.menu .icon.active::before {
  transform: rotate(-135deg);
  top: 0;
}
.menu .icon.active::after {
  transform: rotate(135deg);
  bottom: 0;
}
.menu .icon.active span:before {
  content: "CLOSE";
}

/* グローバルナビゲーション */
#gnav {
  overflow: hidden;
  display: block !important;
  transition: 0.5s ease-in-out;
  float: none;
  width: 100%;
  height: 100vh;
  padding-top: var(--header-height);
  margin: 0;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  -moz-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
#gnav.open {
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.gnav_inner {
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.gnav_menu_list {
  display: grid;
  grid-template-columns: repeat(1, 100%);
  gap: 20px;
}
.gnav_menu_link {
  display: block;
}
.gnav_menu_txt {
  display: block;
  color: var(--color-txt);
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.gnav_menu_txt_ib {
  display: inline-block;
}
.gnav_menu_en {
  display: block;
  color: #969696;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-jost);
}
.gnav_btn_list {
  --popup_menu_icon_width: 44px;
  --popup_menu_arrow_width: 22px;
  display: grid;
  grid-template-columns: repeat(1, 100%);
  gap: 15px;
  width: 234px;
  max-width: 100%;
  margin: 65px auto 0;
  padding: 0;
}
.gnav_btn_link {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  height: 58px;
  padding: 0 15px;
  border-radius: 29px;
  background: var(--color-txt);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.gnav_btn_txt {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.gnav_btn_arrow {
  display: block;
  width: var(--popup_menu_arrow_width);
  height: var(--popup_menu_arrow_width);
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.gnav_btn_arrow::after {
  --size: 5px;
  content: "";
  display: block;
  width: var(--size);
  height: var(--size);
  border-top: 1px solid var(--color-txt);
  border-right: 1px solid var(--color-txt);
  position: absolute;
  top: 50%;
  left: calc(50% - var(--size) / 4);
  transform: translate(-50%, -50%) rotate(45deg);
}
.gnav_sub_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.gnav_sub_item:not(:last-child) {
  padding-right: 10px;
  border-right: 1px solid var(--color-txt);
}
.gnav_sub_link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-txt);
  text-decoration: none;
}
.gnav_sub_link::after {
  content: "";
  display: block;
  width: 11px;
  height: 17px;
  background: url("../../common/img/icon_side_blank.svg") no-repeat center center/10px 10px;
}
.gnav_sub_link:hover {
  opacity: 1 !important;
}
.gnav_sub_txt {
  display: block;
  color: var(--color-txt);
  font-size: 11px;
  font-weight: 600;
}

.sns_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 45px;
}
.sns_link {
  --size: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  background: #000;
  border-radius: 50%;
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#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;
}

/* ▼ コピーライト
--------------------------------------- */
.copy {
  margin-top: 20px;
  color: #969696;
  font-size: 11px;
  font-weight: 400;
  text-align: center;
}