@charset "UTF-8";
/* ************************************** _
タイトル：navi.css
概要：ナビゲーション用css
更新：2022.08.03
_ ************************************** */
/* =========================================================================
   CSS変数の定義  _custom-property

   サイトの基本的な色指定は、CSS変数の値として設定する。
============================================================================ */
:root {
  --color__White: #fff;
  --color__WhiteAlpha: 255,255,255;
  --color__Black: #333;
  --color__BlackAlpha: 51,51,51;
  --color__BlackL: #404040;
  --color__Primary: #c3002f;
  --color__PrimaryHover: #d40031;
  --color__Secondary: #ff887c;
  --color__Bg: #eee;
  --color__BgSub: #ffedeb;
  --color__Gradation: linear-gradient(90deg, var(--color__Primary) 0%, var(--color__Secondary) 100%);
  --color__Line: #999;
  --color__LineL: #ccc;
  --color__Link: #3688BA;
  --color__LinkHover: #23527c;
  --color__Interview_m: #900101;
}

/* Imported Styles
---------------------------------------------------------------------------- */
/* =========================================================================
    _layout-setting
============================================================================ */
/* 初期化
---------------------------------------------------------------------------- */
html,
body {
  overflow: initial;
}

/* header
---------------------------------------------------------------------------- */
.layout--header {
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, var(--color__White)), color-stop(20%, rgba(var(--color__WhiteAlpha), 0.9)));
  background: -webkit-linear-gradient(left, var(--color__White) 20%, rgba(var(--color__WhiteAlpha), 0.9) 20%);
  background: linear-gradient(to right, var(--color__White) 20%, rgba(var(--color__WhiteAlpha), 0.9) 20%);
  height: 100px;
  margin: 0;
  padding: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
}

.layout--header .facade {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
  margin: 0 auto;
  position: relative;
  padding: 0 30px;
  max-width: 1800px;
  width: 100%;
}

.layout--header .brandName {
  background-color: var(--color__White, #fff);
  height: 100px;
  margin-left: 0;
  margin-right: 30px;
  max-width: 275px;
  padding: 10px 10px 10px 0;
  position: relative;
  width: 275px;
}

.layout--header .brandName a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  width: 100%;
}

.layout--header .brandName a:hover, .layout--header .brandName a:active, .layout--header .brandName a:focus {
  text-decoration: none;
}

.layout--header .brandName a:hover .brandLogo, .layout--header .brandName a:active .brandLogo, .layout--header .brandName a:focus .brandLogo {
  opacity: 0.7;
}

.layout--header .brandName a .brandLogo {
  max-height: 45px;
  max-width: 275px;
  -webkit-transition: 0.4s opacity;
  transition: 0.4s opacity;
  width: 100%;
}

@media screen and (min-width: 2000px) {
  .layout--header {
    background: -webkit-gradient(linear, left top, right top, color-stop(25%, var(--color__White)), color-stop(25%, rgba(var(--color__WhiteAlpha), 0.9)));
    background: -webkit-linear-gradient(left, var(--color__White) 25%, rgba(var(--color__WhiteAlpha), 0.9) 25%);
    background: linear-gradient(to right, var(--color__White) 25%, rgba(var(--color__WhiteAlpha), 0.9) 25%);
  }
}

@media screen and (max-width: 1024px) {
  .layout--header {
    height: 90px;
  }
  .layout--header .facade {
    height: 90px;
    padding: 0 20px;
    max-width: 100%;
    width: 100%;
  }
  .layout--header .brandName {
    height: 90px;
    margin-right: 25px;
    padding: 5px 10px 5px 0;
  }
}

@media screen and (max-width: 736px) {
  .layout--header {
    height: 60px;
  }
  .layout--header .facade {
    height: 60px;
    padding: 0 15px;
  }
  .layout--header .brandName {
    height: 60px;
    margin-right: 20px;
    max-width: 210px;
    width: 210px;
  }
  .layout--header .brandName a {
    height: 50px;
  }
  .layout--header .brandName a .brandLogo {
    max-height: 35px;
    max-width: 210px;
    width: 100%;
  }
}

/* footer
---------------------------------------------------------------------------- */
.layout--footer {
  background-color: var(--color__BlackL);
  bottom: 0;
  color: var(--color__White, #fff);
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 5;
}

.layout--footer a:link, .layout--footer a:visited {
  color: var(--color__White, #fff);
  text-decoration: none;
}

.layout--footer a:hover, .layout--footer a:active, .layout--footer a:focus {
  color: var(--color__Link);
}

/* =========================================================================
  _nav-global
============================================================================ */
/* global Nav
---------------------------------------------------------------------------- */
.globalNav {
  background-color: var(--color__Black, #333);
  position: relative;
}

.globalNav::after {
  border-bottom: 10px solid var(--color__Black, #333);
  border-radius: 0 0 10px 10px;
  bottom: -10px;
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
}

.globalNav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
  padding: 5px 100px 0 20px;
}

.globalNav .menu .entry-btn {
  background-color: var(--color__Primary);
}

.globalNav .menu .entry-btn.type--mini {
  margin: 10px;
  width: 170px;
}

.globalNav .menu .entry-btn.type--mini a {
  color: var(--color__White, #fff);
  display: block;
  font-weight: bold;
  height: 50px;
  line-height: 50px;
  font-size: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .globalNav .menu {
    height: 90px;
    padding: 10px 80px 0 10px;
  }
  .globalNav .menu .entry-btn.type--mini {
    margin: 5px;
    width: 150px;
  }
}

@media screen and (max-width: 736px) {
  .globalNav {
    background-color: var(--color__Primary);
    border-radius: 5px;
    height: 50px;
    width: 50px;
  }
  .globalNav::after {
    display: none;
  }
  .globalNav .menu {
    display: none;
  }
}

/* メニュー
---------------------------------------------------------------------------- */
.hamburgerMenu {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: inline-block;
  height: 50px;
  margin: 0;
  padding: 2px 0 48px 0;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 48px;
}

.hamburgerMenu:focus {
  outline-style: none;
}

.hamburgerMenu::before {
  color: var(--color__White, #fff);
  content: "MENU";
  display: block;
  font-family: 'Hind', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  font-display: swap;
  left: 0;
  line-height: 1;
  position: absolute;
  text-decoration: none;
  text-align: center;
  top: 37px;
  white-space: nowrap;
  width: 100%;
}

.hamburgerMenu span {
  background-color: var(--color__White, #fff);
  border-radius: 3px;
  display: inline-block;
  left: 0;
  height: 3px;
  position: absolute;
  -webkit-transition: all .4s;
  transition: all .4s;
  width: 48px;
}

.hamburgerMenu span:nth-of-type(1) {
  top: 0;
}

.hamburgerMenu span:nth-of-type(2) {
  top: 13px;
}

.hamburgerMenu span:nth-of-type(3) {
  top: 26px;
}

.hamburgerMenu.is-active {
  z-index: 1000;
}

.hamburgerMenu.is-active::before {
  content: "CLOSE";
  top: -20px;
}

.hamburgerMenu.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

.hamburgerMenu.is-active span:nth-of-type(2) {
  opacity: 0;
}

.hamburgerMenu.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(45deg);
  transform: translateY(-15px) rotate(45deg);
}

@media screen and (max-width: 1024px) {
  .hamburgerMenu {
    right: 20px;
  }
}

@media screen and (max-width: 736px) {
  .hamburgerMenu {
    padding: 0;
    right: 0;
    top: 0;
    width: 50px;
  }
  .hamburgerMenu::before {
    font-size: 1.2rem;
    top: 37px;
    width: 100%;
  }
  .hamburgerMenu span {
    border-radius: 2px;
    height: 4px;
    left: 7px;
    width: 36px;
  }
  .hamburgerMenu span:nth-of-type(1) {
    top: 7px;
  }
  .hamburgerMenu span:nth-of-type(2) {
    top: 17px;
  }
  .hamburgerMenu span:nth-of-type(3) {
    top: 27px;
  }
  .hamburgerMenu.is-active {
    z-index: 1000;
  }
  .hamburgerMenu.is-active::before {
    content: "CLOSE";
    top: -20px;
  }
  .hamburgerMenu.is-active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .hamburgerMenu.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburgerMenu.is-active span:nth-of-type(3) {
    -webkit-transform: translateY(-15px) rotate(45deg);
    transform: translateY(-15px) rotate(45deg);
  }
}

/* mmenu 調整 */
.mm-listitem {
  text-align: left;
}

/* =========================================================================
    _nav-footer
============================================================================ */
/* 初期化（旧フッター用スタイルの打ち消し）
---------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .img-wrap-two {
    width: 95%;
    margin: 0 10px 0 10px;
  }
  .img-wrap-three {
    width: 95%;
    margin: 0 auto 0 auto;
  }
  .category-menu-wrap {
    margin: 10px 0 30px 0;
  }
  .category-menu-wrap ul {
    margin: 0 auto;
    width: 95%;
  }
  .interview-txt {
    margin: 0 10px 30px 10px;
  }
  .headline {
    margin: 0 10px 30px 10px;
  }
  .navisite-entry-wrap,
  .mid-entry-wrap {
    margin: 0 auto 20px auto;
  }
}

@media screen and (max-width: 736px) {
  ul.inner-menu {
    margin: 0 auto 1px auto;
    width: 100%;
  }
  ul.inner-menu li {
    width: calc((100% - 4px)/2);
  }
  .img-wrap-left .img {
    margin: 0 0 10px 0;
  }
  .img-wrap-left .txt {
    padding: 0 10px 0 10px;
  }
  .parag {
    padding: 0 10px 0 10px;
  }
  .deflist-wrap dl {
    margin: 0 10px 40px 10px;
  }
  .day-wrap {
    background-position: 55px top;
  }
  .day-wrap dl.time {
    margin: 0 0 0 10px;
  }
  .day-wrap .time-txt {
    left: 70px;
  }
  .day-wrap.end .time-txt {
    left: 20px;
  }
  .ruledLine {
    width: inherit;
    margin: 0 10px 40px 10px;
  }
  .guideline .img-wrap-two {
    width: inherit;
    margin: 0 10px 0 10px !important;
  }
  #mailformpro .mfp_element_submit,
  #mailformpro .mfp_element_reset,
  #mailformpro .mfp_element_button {
    margin: 30px auto 0 auto !important;
  }
}

/* footer Contact
---------------------------------------------------------------------------- */
.footerContactWrap {
  background: var(--color__Gradation);
  padding: 100px 30px;
  width: 100%;
}

.footerContact {
  background: var(--color__Black, #333);
  border-radius: 10px;
  color: var(--color__White, #fff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 50px;
  text-align: left;
  width: 100%;
}

.footerContact .btnPart {
  margin-top: -30px;
  margin-right: 50px;
  width: 320px;
}

.footerContact .btnPart .entry-btn {
  background-color: var(--color__Primary);
}

.footerContact .btnPart .entry-btn a {
  color: var(--color__White, #fff);
}

.footerContact .btnPart .entry-btn a:hover, .footerContact .btnPart .entry-btn a:active, .footerContact .btnPart .entry-btn a:focus {
  color: var(--color__White, #fff);
}

.footerContact .textPart {
  font-size: 1.4rem;
  width: calc(100% - 320px - 50px);
}

.footerContact .textPart p {
  margin-bottom: 0;
}

.footerContact .heading {
  display: block;
  font-family: 'Hind', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  font-display: swap;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  position: relative;
  width: 100%;
}

.footerContact .heading::before {
  background-color: var(--color__White, #fff);
  bottom: 0;
  content: "";
  height: 4px;
  margin: auto 0;
  position: absolute;
  top: -4px;
  width: 100%;
  z-index: 0;
}

.footerContact .heading span {
  background-color: var(--color__Black, #333);
  display: inline-block;
  padding-right: 0.75em;
  position: relative;
  z-index: 1;
}

.footerContact .newline {
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .footerContactWrap {
    padding: 70px 30px;
  }
  .footerContact {
    padding: 50px 30px;
  }
  .footerContact .btnPart {
    margin-right: 30px;
  }
  .footerContact .textPart {
    width: calc(100% - 320px - 30px);
  }
  .footerContact .heading {
    font-size: 3.7rem;
    letter-spacing: 0.05em;
  }
  .footerContact .heading span {
    padding-right: 0.5em;
  }
}

@media screen and (max-width: 736px) {
  .footerContactWrap {
    padding: 30px 20px;
  }
  .footerContact {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
    padding: 10px 15px 30px;
    width: 100%;
  }
  .footerContact .btnPart {
    margin-bottom: 30px;
    margin-top: 0;
    margin-right: 0;
    width: 100%;
  }
  .footerContact .textPart {
    width: 100%;
  }
  .footerContact .heading {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }
  .footerContact .heading::before {
    height: 2px;
    top: -4px;
  }
  .footerContact .heading span {
    padding-right: 0.5em;
  }
}

/* footer end
---------------------------------------------------------------------------- */
.footerEndWrapper {
  background-color: var(--color__Black);
  padding: 0 20px;
}

.footerEnd {
  background-color: var(--color__Black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 43px;
  line-height: 1;
  color: var(--color__White, #fff);
}

.footerEnd a {
  color: var(--color__White, #fff);
}

.footerEnd a:hover, .footerEnd a:active, .footerEnd a:focus {
  color: var(--color__Secondary);
}

.footerEnd .endLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footerEnd .endLink .item {
  font-size: 1.3rem;
  margin: 0;
  padding: 0 1.2em;
  position: relative;
}

.footerEnd .endLink .item:before {
  border-left: 1px solid var(--color__White, #fff);
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
}

.footerEnd .endLink .item:first-child:before {
  display: none;
}

.footerEnd .copy {
  font-family: 'Hind', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  font-display: swap;
  font-weight: 400;
  margin: 5px 30px 0 38px;
}

@media screen and (max-width: 1024px) {
  .footerEnd .endLink .item {
    padding: 0 1.0em;
  }
  .footerEnd .copy {
    margin: 5px 30px 0 30px;
  }
}

@media screen and (max-width: 736px) {
  .footerEnd {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 5px;
    height: auto;
  }
  .footerEnd .endLink {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
    width: 100%;
  }
  .footerEnd .endLink .item {
    font-size: 1.3rem;
    margin: 5px 0;
    padding: 0 0.75em;
  }
  .footerEnd .endLink .item:first-child:before {
    display: none;
  }
  .footerEnd .copy {
    margin: 5px auto 0 auto;
    width: 100%;
  }
}

/* =========================================================================
  _modules-button
============================================================================ */
/* ボタン 色の上書き・追加スタイル
---------------------------------------------------------------------------- */
/* ボタン */
.entry-btn {
  background: var(--color__Primary);
}

.entry-btn a {
  color: var(--color__White, #fff);
}

.entry-btn a::before {
  border-top: solid 2px var(--color__White, #fff);
  border-right: solid 2px var(--color__White, #fff);
}

.entry-btn a:hover, .entry-btn a:active, .entry-btn a:focus {
  background: var(--color__PrimaryHover);
}

.entry-btn.type--short {
  max-width: 320px;
}

@media screen and (max-width: 736px) {
  .entry-btn {
    margin: 20px auto 0 auto !important;
    width: 90%;
  }
}

/* カテゴリ内メニュー（小さい灰色ボタン） */
ul.inner-menu li,
.inner-menu li {
  background: var(--color__Bg);
}

ul.inner-menu li a,
.inner-menu li a {
  color: var(--color__Black, #333);
}

ul.inner-menu li a::before,
.inner-menu li a::before {
  border-top: solid 2px var(--color__Black, #333);
  border-right: solid 2px var(--color__Black, #333);
}

ul.inner-menu li a:hover,
.inner-menu li a:hover {
  color: var(--color__White, #fff);
  background: var(--color__Primary);
}

ul.inner-menu li a:hover::before,
.inner-menu li a:hover::before {
  border-top: solid 2px var(--color__White, #fff);
  border-right: solid 2px var(--color__White, #fff);
}

/* エントリー扉ページ　フォームへのボタン */
.entry-link li:hover {
  background-color: var(--color__Primary);
}

/* メールフォームプロ の ボタン */
#mailformpro .mfp_element_submit,
#mailformpro .mfp_element_reset,
#mailformpro .mfp_element_button,
#mfp_phase_confirm .mfp_element_submit,
#mfp_phase_confirm .mfp_element_reset,
#mfp_phase_confirm .mfp_element_button {
  background-color: var(--color__Primary);
}

#mailformpro .mfp_element_submit:hover, #mailformpro .mfp_element_submit:active, #mailformpro .mfp_element_submit:focus,
#mailformpro .mfp_element_reset:hover,
#mailformpro .mfp_element_reset:active,
#mailformpro .mfp_element_reset:focus,
#mailformpro .mfp_element_button:hover,
#mailformpro .mfp_element_button:active,
#mailformpro .mfp_element_button:focus,
#mfp_phase_confirm .mfp_element_submit:hover,
#mfp_phase_confirm .mfp_element_submit:active,
#mfp_phase_confirm .mfp_element_submit:focus,
#mfp_phase_confirm .mfp_element_reset:hover,
#mfp_phase_confirm .mfp_element_reset:active,
#mfp_phase_confirm .mfp_element_reset:focus,
#mfp_phase_confirm .mfp_element_button:hover,
#mfp_phase_confirm .mfp_element_button:active,
#mfp_phase_confirm .mfp_element_button:focus {
  background: var(--color__PrimaryHover);
}
