@charset "UTF-8";
/*--- import -------------------------------------*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  word-break: break-word;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
  line-height: 1.6;
}

html, body {
  overflow-x: hidden;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

li {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, picture {
  vertical-align: middle;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

br {
  line-height: 0;
}

input, textarea, select, button {
  font: inherit;
}

/* safariでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*------------------------------------- import ---*/
@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSerifCJKjp-Regular.min.woff2") format("woff2"), url("../fonts/NotoSerifCJKjp-Regular.min.woff") format("woff"), url("../fonts/NotoSerifCJKjp-Regular.min.ttf") format("truetype");
}

@font-face {
  font-family: 'Noto Serif Japanese';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/NotoSerifCJKjp-Bold.min.woff2") format("woff2"), url("../fonts/NotoSerifCJKjp-Bold.min.woff") format("woff"), url("../fonts/NotoSerifCJKjp-Bold.min.ttf") format("truetype");
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka,"ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  font-weight: 500;
  position: relative;
  font-feature-settings: "palt" 1;
  color: #000;
}

body .mincho {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E","Noto Serif Japanese", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: normal;
  letter-spacing: 0.1em;
}

a {
  opacity: 1;
  transition: opacity .3s;
}

@media screen and (min-width: 751px) {
  a:hover {
    opacity: 0.8;
  }
}

.object-fit.cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.btn_to_top {
  cursor: pointer;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 1001;
  transition: none;
}

.btn_to_top.foot {
  position: absolute;
}

.pc {
  display: block;
}

.pc._inline {
  display: inline;
}

.pc._inline-block {
  display: inline-block;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .sp {
    display: block;
  }
  .sp._inline {
    display: inline;
  }
  .sp._inline-block {
    display: inline-block;
  }
}

/*------------------------------------------------------------
	modal
------------------------------------------------------------*/
#modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
}

#modal .modal_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#modal .modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#modal .modal_content .close_btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-140%);
  width: 38px;
  height: 38px;
  cursor: pointer;
}

#modal .modal_content .close_btn::before, #modal .modal_content .close_btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
}

#modal .modal_content .close_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#modal .modal_content .close_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 750px) {
  #modal .modal_content .close_btn {
    width: 6.13333vw;
    height: 6.13333vw;
  }
}

#modal .modal_area_wrapper {
  overflow: auto;
  max-width: 1080px;
}

/* -----------------------------------------------------
	header
----------------------------------------------------- */
header {
  pointer-events: none;
  position: fixed;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  top: 0;
  left: 0;
}

header .hamburger_btn {
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 66px;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
  background: #151415;
  z-index: 11;
}

@media screen and (max-width: 750px) {
  header .hamburger_btn {
    width: 35.46667vw;
    height: 12vw;
  }
}

header .hamburger_btn > div {
  position: relative;
  width: 45px;
  height: 100%;
  margin-left: 25px;
}

@media screen and (max-width: 750px) {
  header .hamburger_btn > div {
    width: 9.33333vw;
    margin-left: 4vw;
  }
}

header .hamburger_btn > div span, header .hamburger_btn > div::before, header .hamburger_btn > div::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

@media screen and (max-width: 750px) {
  header .hamburger_btn > div span, header .hamburger_btn > div::before, header .hamburger_btn > div::after {
    height: 2px;
    top: 50%;
  }
}

header .hamburger_btn > div::before {
  top: 40%;
}

@media screen and (max-width: 750px) {
  header .hamburger_btn > div::before {
    top: 35%;
  }
}

header .hamburger_btn > div::after {
  top: 60%;
}

@media screen and (max-width: 750px) {
  header .hamburger_btn > div::after {
    top: 65%;
  }
}

header .hamburger_btn .menu {
  user-select: none;
  display: block;
  width: 59px;
}

@media screen and (max-width: 750px) {
  header .hamburger_btn .menu {
    width: 11.2vw;
  }
}

header .hamburger_btn .menu._open {
  display: none;
}

header .hamburger_btn.open > div span {
  opacity: 0;
}

header .hamburger_btn.open > div::before, header .hamburger_btn.open > div::after {
  background: #fff;
  top: 50%;
  width: 32px;
}

@media screen and (max-width: 750px) {
  header .hamburger_btn.open > div::before, header .hamburger_btn.open > div::after {
    top: 50%;
    width: 6.66667vw;
  }
}

header .hamburger_btn.open > div::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

header .hamburger_btn.open > div::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

header .hamburger_btn.open .menu {
  display: none;
}

header .hamburger_btn.open .menu._open {
  display: block;
}

header .hamburger_content {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
  background: #151415;
  z-index: 10;
  transition: all 0.3s;
  opacity: 0;
}

header .hamburger_content.open {
  transform: translateY(0);
  opacity: 1;
}

header .hamburger_content .menu_logo {
  margin-right: 30px;
}

@media screen and (max-width: 750px) {
  header .hamburger_content .menu_logo {
    margin-right: 0;
    margin-bottom: 8vw;
  }
  header .hamburger_content .menu_logo img {
    width: 26.93333vw;
  }
}

header .hamburger_content .menu_area {
  display: flex;
}

@media screen and (max-width: 750px) {
  header .hamburger_content .menu_area {
    display: block;
  }
}

header .hamburger_content .menu_area .main_menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 920px;
}

header .hamburger_content .menu_area .main_menu .main_menu_item {
  display: block;
  padding: 10px 30px;
  margin: 10px;
}

@media screen and (max-width: 750px) {
  header .hamburger_content .menu_area .main_menu .main_menu_item {
    padding: 0;
    margin: 0;
  }
  header .hamburger_content .menu_area .main_menu .main_menu_item img {
    width: 50.66667vw;
  }
  header .hamburger_content .menu_area .main_menu .main_menu_item + .main_menu_item {
    margin-top: 6.66667vw;
  }
}

header .hamburger_content_inner {
  max-width: 98%;
  padding: 20px;
  margin: 0 auto;
  overflow: auto;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 750px) {
  header .hamburger_content_inner {
    display: block;
    max-width: 100%;
    width: 100%;
    padding: 0 0 0 9.33333vw;
  }
}

/* -----------------------------------------------------
	footer
----------------------------------------------------- */
footer {
  background: #363636;
  padding: 20px 0;
}

@media screen and (max-width: 750px) {
  footer {
    padding: 2.66667vw;
  }
}

footer .footer_content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}

@media screen and (max-width: 750px) {
  footer .footer_content {
    display: block;
    margin-bottom: 4.66667vw;
  }
}

footer .footer_logo {
  margin-right: 35px;
}

@media screen and (max-width: 750px) {
  footer .footer_logo {
    display: none;
  }
}

footer .footer_content_info {
  display: inline-block;
  border-left: 1px solid #4e4e4e;
  padding-left: 35px;
  text-align: left;
}

@media screen and (max-width: 750px) {
  footer .footer_content_info {
    display: block;
    border-left: none;
    padding-left: 0;
  }
}

footer .footer_content_info .info_line {
  display: flex;
  padding: 5px 0;
}

@media screen and (max-width: 750px) {
  footer .footer_content_info .info_line {
    padding: 2vw 0;
  }
}

footer .footer_content_info .info_line .info_head {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  width: 105px;
  flex-shrink: 0;
}

@media screen and (max-width: 750px) {
  footer .footer_content_info .info_line .info_head {
    font-size: 2.93333vw;
    width: 19.73333vw;
  }
}

footer .footer_content_info .info_line .info_txt {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}

@media screen and (max-width: 750px) {
  footer .footer_content_info .info_line .info_txt {
    font-size: 2.93333vw;
  }
}

footer .copyright {
  font-size: 12px;
  color: #fff;
}

@media screen and (max-width: 750px) {
  footer .copyright {
    font-size: 2.66667vw;
  }
}

.ninestar_head_ttl_img {
  max-width: 600px;
  margin: 30px auto;
}

@media screen and (max-width: 750px) {
  .ninestar_head_ttl_img {
    padding: 0 4vw;
  }
}
/*# sourceMappingURL=common.css.map */