@charset "utf-8";
html {
  font-size: 62.5%;
}
body {
  color: #333;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 10px;
  font-size: 1.0rem;
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
  -webkit-text-size-adjust: 100%; /* sp 横表示対応 */
  word-wrap: break-word; /* 英文自動折り返し */
}
@media all and (-ms-high-contrast:none) {
  body {
    font-family: "メイリオ", Meiryo, sans-serif;
  }
}
.c-wrap {
  overflow: hidden;
}
*, *:before, *:after {
  box-sizing: border-box;
}
main {
  display: block;
}
fieldset {
  display: contents;
}
label {
  display: inline-block;
}
a[href^="tel:"]:hover {
  cursor: default;
  opacity: 1.0;
}
a {
  opacity: 1;
  text-decoration: none;
  color: #000;
}
a:not(#pageTop) {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
}
img, iframe, video {
  max-width: 100%;
  vertical-align: bottom;
}
img {
  height: auto;
}
table th, table td {
  word-break: break-all;
}
figure a {
  display: inline-block;
}
/*------------------------------------------------------------
     common
------------------------------------------------------------ */
.c-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 139px;
}
.pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-wrap {
    padding-top: 95px;
  }
  .pc-none {
    display: block;
  }
  img.pc-none {
    display: inline;
  }
  .sp-none {
    display: none;
  }
}
/* font
------------------------------------------------------------ */
.c-font__eng {
  font-family: Arial, 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}
/* heading
------------------------------------------------------------ */
.c-heading {
  margin-bottom: 40px;
  text-align: center;
  color: #AD8A1F;
  font-size: 40px;
  font-size: 4.0rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.c-heading::after {
  content: "";
  display: block;
  width: 350px;
  max-width: 100%;
  height: 1px;
  background-color: #AD8A1F;
  margin: 10px auto 0;
  opacity: .5;
}
/* btn
------------------------------------------------------------ */
.c-btn {
  display: inline-block;
  min-width: 120px;
  padding-right: 20px;
  padding-bottom: 7px;
  position: relative;
  color: #AD8A1F;
  font-family: Arial, 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.c-btn:hover {
  opacity: 1;
}
.c-btn__arrow {
  display: block;
  width: 100%;
  height: 14px;
  border-right: 1px solid #AD8A1F;
  border-bottom: 1px solid #AD8A1F;
  transform: skewX(40deg);
  transform-origin: bottom right;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: .3s;
  pointer-events: none;
}
.c-btn:hover .c-btn__arrow {
  width: 110%;
}
.c-ancher {
  padding-top: 150px;
  margin-top: -150px;
  pointer-events: none;
}
/* container
------------------------------------------------------------ */
.c-container {
  width: 100%;
  max-width: 940px;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}
.c-container__large {
  max-width: 1058px;
}
/* pagetop
------------------------------------------------------------ */
.c-pagetop {
  display: block;
  width: 60px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(133, 0, 0, 1) 0%, rgba(133, 0, 0, 1) 33%, rgba(223, 5, 21, 1) 100%);
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 999;
}
.c-pagetop::before {
  content: "";
  display: block;
  width: 47%;
  height: 47%;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: translateY(-25%) rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
}
/* video
------------------------------------------------------------ */
.c-video {
  position: relative;
}
.c-video-frame {
  width: 100%;
}
.c-video-pause {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .3s;
}
.c-video.is-pause .c-video-pause {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-video-pause__btn {
  width: 258px;
  max-width: 70%;
  padding: 0;
  background: none;
  border: none;
  position: absolute;
  right: 0;
  bottom: 70px;
  left: 0;
  margin: auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-video-pause__btn {
    bottom: 0;
  }
}
/*------------------------------------------------------------
     header
------------------------------------------------------------ */
.c-header {
  width: 100%;
  padding: 20px 0 30px;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.c-header-band {
  position: relative;
  margin-bottom: 20px;
  text-align: right;
}
.c-header-band::before {
  content: "";
  display: block;
  width: calc(100% - 317px);
  height: 20px;
  background: linear-gradient(45deg, rgba(255, 225, 0, 1) 0%, rgba(255, 225, 0, 1) 30%, rgba(223, 5, 21, 1) 92%, rgba(223, 5, 21, 1) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c-header-band__group-logo {
  display: inline-block;
  padding: 0 20px;
  background-color: #FFF;
  position: relative;
  z-index: 2;
}
.c-header-contents {
  display: flex;
  align-items: center;
  padding: 0 28px;
}
.c-header__logo {
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .c-header {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .c-header-band {
    margin-bottom: 5px;
  }
  .c-header-band::before {
    width: calc(100% - 168px);
    height: 10px;
  }
  .c-header-band__group-logo {
    padding: 0 20px 0 10px;
  }
  .c-header-band__group-logo img {
    width: 138px;
  }
  .c-header-contents {
    padding: 0 20px;
  }
  .c-header__logo {
    padding-left: 0;
  }
  .c-header__logo img {
    width: 210px;
  }
}
/* nav
------------------------------------------------------------ */
.c-global-nav {
  margin-left: auto;
}
.c-global-nav__group {
  display: flex;
  align-items: center;
  margin: 0 -15px;
}
.c-global-nav__group-item {
  padding: 0 15px;
}
.c-global-nav__link {
  display: block;
  padding-left: 15px;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
}
.c-global-nav__link::before {
  content: "";
  display: block;
  width: .5em;
  height: .5em;
  border-top: 1px solid #DF0515;
  border-right: 1px solid #DF0515;
  transform: rotate(45deg);
  position: absolute;
  top: .3em;
  left: 0;
}
.c-global-nav-btn {
  display: none;
  width: 40px;
  height: 40px;
  background-color: #DF0515;
  border: none;
  position: relative;
  cursor: pointer;
}
.c-global-nav-btn-bar__group {
  width: 62.5%;
  height: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c-global-nav-btn-bar__item {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FFF;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.c-global-nav-btn-bar__item-top {
  bottom: auto;
}
.c-global-nav-btn-bar__item-bottom {
  top: auto;
}
.c-global-nav-btn.is-active .c-global-nav-btn-bar__item-top, .c-global-nav-btn.is-active .c-global-nav-btn-bar__item-bottom {
  top: 0;
  bottom: 0;
}
.c-global-nav-btn.is-active .c-global-nav-btn-bar__item-top {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-global-nav-btn.is-active .c-global-nav-btn-bar__item-bottom {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-global-nav-btn.is-active .c-global-nav-btn-bar__item-middle {
  width: 0%;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .c-global-nav__menu {
    display: none;
    width: 100%;
    padding: 30px 20px;
    background-color: rgba(255,255,255,.9);
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
  }
  .c-global-nav-btn {
    display: block;
  }
  .c-global-nav__group {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .c-global-nav__group-item:not(:last-child) {
    margin-bottom: 15px;
  }
}
/*------------------------------------------------------------
     main
------------------------------------------------------------ */
.c-main {
  flex: 1;
  padding-bottom: 120px;
  background-image: url("../img/common/bg.png");
  background-size: 100% auto;
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .c-main {
    background-image: url("../img/common/bg@sp.png");
  }
}
/*------------------------------------------------------------
     footer
------------------------------------------------------------ */
.c-footer {
  overflow: hidden;
}
.c-footer-nav {
  padding: 20px 0;
  background-color: #FFF;
}
.c-footer-nav__group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -15px;
}
.c-footer-nav__group-item {
  padding: 0 15px;
}
.c-footer-nav__link {
  display: block;
  padding-left: 15px;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
}
.c-footer-nav__link::before {
  content: "";
  display: block;
  width: .5em;
  height: .5em;
  border-top: 1px solid #DF0515;
  border-right: 1px solid #DF0515;
  transform: rotate(45deg);
  position: absolute;
  top: .3em;
  left: 0;
}
.c-footer-main {
  padding: 40px 0 30px;
  background-color: #3C3C3C;
}
.c-footer-mainnav__group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.c-footer-mainnav__group-item {
  padding: 5px 30px;
  border-right: 1px solid #707070;
  border-left: 1px solid #707070;
  margin: 0 -0.5px;
}
.c-footer-mainnav__link {
  color: #FFF;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: .05em;
}
.c-footer__copyright {
  display: block;
  margin-top: 30px;
  text-align: center;
  color: #C0C0C0;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .05em;
}
@media screen and (max-width: 767px) {
  .c-footer-nav {
    padding: 20px 0;
  }
  .c-footer-nav__group {
    margin-top: -10px;
    margin-bottom: -10px;
  }
  .c-footer-nav__group-item {
    width: 100%;
    padding: 10px 15px;
  }
  .c-footer-main {
    padding: 15px 0 30px;
  }
  .c-footer-mainnav__group-item {
    width: 100%;
    padding: 5px 0;
    border: none;
  }
  .c-footer__copyright {
    text-align: left;
  }
}
/* pankuzu
------------------------------------------------------------ */
.c-pankuzu {
  margin: 20px 0 60px;
}
.c-pankuzu__text {
  padding: 0 15px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .05em;
}
@media screen and (max-width: 767px) {
  .c-pankuzu__text {
    padding: 0;
  }
}
/*==========================================================
      Target Devices # Tablet MobilePC #
============================================================ */
@media screen and (max-width: 1023px) { /* コンテンツ幅に合わせて変更 */
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  img.pc {
    display: none;
  }
  img.sp {
    display: inline;
  }
  .br_pc {
    display: none;
  }
  .br_sp {
    display: block;
  }
  .pc_speace {
    display: none;
  }
  .sp_speace {
    display: block;
  }
}
/*==========================================================
      Target Devices # Smart Phone and Tablet #
============================================================ */
@media screen and (max-width: 767px) {
  .spt {
    display: block;
  }
  img.spt {
    display: inline;
  }
}
/*==========================================================
      Target Devices # Smart Phone Only #
============================================================ */
@media screen and (max-width: 479px) {
  .spo {
    display: block;
  }
  img.spo {
    display: inline;
  }
}