@charset "UTF-8";
/* フォント関連
------------------------------ */
/* 配色
------------------------------ */
/* コンテンツ関連
------------------------------ */
/* 便利
------------------------------ */
/* --------------------------------------------------
  共通(element,id,class)
-------------------------------------------------- */
/*  elements
------------------------------ */
html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-family: "Helvetica Neue", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", meiryo, sans-serif;
  font-family: 'Lato', "Noto Sans Japanese";
  font-size: 16px;
  color: #000;
  letter-spacing: 2px;
  line-height: 1;
}

body * {
  box-sizing: border-box;
  font-weight: 300;
}

li {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
  outline: none;
  transition: 0.4s;
}

img,
svg {
  vertical-align: bottom;
}

/*  id,class
------------------------------ */
#wrap {
  overflow: hidden;
  min-width: 320px;
  text-align: center;
}

/* fonts ---------- */
.wf-lato {
  font-family: 'Lato', sans-serif;
}

.ta-l {
  text-align: left !important;
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.fw-b {
  font-weight: bold;
}

span.strong {
  color: #ff4040;
}

span.bold {
  font-weight: bold;
}

/* animate ---------- */
.hide {
  opacity: 0;
}

.js-fadeIn .fadeObj {
  transition: 0.4s;
  opacity: 0;
}
.js-fadeIn .fadeObj.filter {
  opacity: 1;
  height: 0 !important;
}

.js-fadeIn.show .fadeObj {
  opacity: 1;
}
.js-fadeIn.show .fadeObj.filter {
  height: 100% !important;
}
.js-fadeIn.show .fadeObj.order_01 {
  transition-delay: 0.4s;
  opacity: 1;
}

.js-slideIn {
  position: relative;
  overflow: hidden;
}
.js-slideIn .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  background: #e8edef;
}
.js-slideIn .fadeObj {
  transition: 0.7s;
  opacity: 0;
}

.js-slideIn.show .bg {
  animation: slide 0.7s forwards;
}
.js-slideIn.show .fadeObj {
  transition-delay: 0.4s !important;
  opacity: 1;
}

@keyframes slide {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
/* --------------------------------------------------
  header
-------------------------------------------------- */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  height: 100px;
  padding: 0 30px;
  opacity: 0;
}
#header * {
  color: #fff;
}
#header .logo a img {
  width: 198px;
  height: 100%;
}
#header #g-nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#header #g-nav ul li {
  margin: 0 25px;
}
#header #g-nav ul li a {
  position: relative;
  font-size: 14px;
}
#header #g-nav ul li a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: .2s;
}
#header #g-nav ul li a.active::after {
  width: 100%;
  opacity: 1;
}
#header .trigger {
  display: none;
}
#header #sp-nav {
  display: none;
}

body.sub #header {
  opacity: 0;
}
body.sub #header #g-nav ul li a:not(.active) {
  opacity: .7;
}

@media screen and (min-width: 961px) {
  #header #g-nav ul li a:hover::after {
    width: 100%;
    opacity: 1;
  }
  #header #sp-nav {
    display: none !important;
  }

  body.sub #header #g-nav ul li a:not(.active):hover {
    opacity: 1;
  }
}
@media screen and (max-width: 960px) {
  #header {
    width: 100%;
    height: 80px;
    padding: 0;
  }
  #header * {
    color: #fff;
  }
  #header .logo {
    position: relative;
    z-index: 5;
  }
  #header .logo a {
    padding: 0 20px;
  }
  #header .logo a img {
    width: 198px;
  }
  #header #g-nav {
    display: none;
  }
  #header .trigger {
    box-sizing: content-box;
    display: block;
    position: relative;
    z-index: 5;
    width: 30px;
    height: 80px;
    padding: 0 20px;
    transition: 0.4s;
  }
  #header .trigger i {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    margin: auto;
    background: #fff;
    transition: .25s;
  }
  #header .trigger i:nth-child(1) {
    top: -20px;
  }
  #header .trigger i:nth-child(3) {
    bottom: -20px;
  }
  #header .trigger.fixed {
    position: fixed;
    top: -80px;
    right: 0;
  }
  #header .trigger.fixed.show {
    top: 0;
    background: #011e2b;
  }
  #header .trigger.active i:nth-child(1) {
    top: 0;
    transform: rotate(45deg);
  }
  #header .trigger.active i:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
  }
  #header .trigger.active i:nth-child(3) {
    bottom: 0;
    transform: rotate(-45deg);
  }
  #header #sp-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: #011e2b;
    width: 100%;
    height: 100vh;
  }
  #header #sp-nav > svg {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    margin: auto;
    width: 320px;
    height: 320px;
    margin-top: 20px;
    fill: rgba(255, 255, 255, 0.1);
  }
  #header #sp-nav ul {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    height: calc(100% - $headerHeighSp);
    margin: 40px auto 0;
  }
  #header #sp-nav ul li {
    margin-bottom: 40px;
  }
  #header #sp-nav ul li a {
    font-size: 30px;
    opacity: .7;
  }
  #header #sp-nav ul li a.active {
    opacity: 1;
  }
  #header #sp-nav ul li:last-child {
    margin-bottom: 0;
  }
}
/* --------------------------------------------------
  contents
-------------------------------------------------- */
#contents {
  position: relative;
}
#contents > section {
  position: relative;
}
#contents .filter {
  display: block;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(73, 78, 81, 0.4);
}

/*  共通・visual
------------------------------ */
#visual.cmn {
  position: relative;
  height: 384px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#visual.cmn .hgroup {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 10%;
  margin-bottom: 10px;
  color: #fff;
}
#visual.cmn .hgroup h1 {
  font-size: 50px;
  letter-spacing: 0.15em;
}
#visual.cmn .hgroup p {
  position: relative;
  padding-left: 20px;
  margin-left: 20px;
}
#visual.cmn .hgroup p::before {
  content: '/';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transform: translateX(-50%);
  margin: auto;
}

@media screen and (max-width: 600px) {
  #visual.cmn {
    height: 295px;
  }
  #visual.cmn .hgroup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    right: 0;
    left: 0;
    margin: auto;
  }
  #visual.cmn .hgroup h1 {
    margin-bottom: 10px;
    font-size: 40px;
  }
  #visual.cmn .hgroup p {
    font-size: 12px;
    padding-left: 10px;
    margin-left: 10px;
  }
}
/*  改行
------------------------------ */
br.sp,
br.tb {
  display: none;
}

@media screen and (max-width: 960px) {
  br.tb {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  br.sp {
    display: block;
  }
}
/* --------------------------------------------------
  footer
-------------------------------------------------- */
#footer {
  position: relative;
  padding: 40px 0;
  background: #181d24;
}
#footer * {
  color: #fff;
}
#footer #page-top {
  display: block;
  position: absolute;
  top: 0;
  right: 40px;
  padding: 70px 10px 10px;
}
#footer #page-top span {
  display: block;
  transform: rotate(-90deg);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
}
#footer #page-top::before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 40px;
  background: #fff;
  animation: pageTop .7s infinite;
}
@keyframes pageTop {
  0% {
    top: 10px;
  }
  90% {
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 0;
  }
}
#footer #f-nav {
  margin-bottom: 40px;
}
#footer #f-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer #f-nav ul li {
  margin: 0 30px;
}
#footer #f-nav ul li a {
  position: relative;
  font-size: 12px;
  font-weight: bold;
}
#footer #f-nav ul li a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: .2s;
}
#footer #f-nav ul li a.active::after {
  width: 100%;
  opacity: 1;
}
#footer .sns {
  margin-bottom: 120px;
}
#footer .sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .sns ul li {
  margin: 0 8px;
}
#footer .sns ul li a {
  display: block;
}
#footer .sns ul li a svg {
  width: 32px;
  height: 32px;
}
#footer .logo {
  margin-bottom: 120px;
}
#footer .logo a img {
  width: 198px;
}
#footer #copyright small {
  font-size: 12px;
}

body.sub #footer {
  opacity: 1;
}
body.sub #footer #f-nav ul li a:not(.active) {
  opacity: .7;
}

@media screen and (min-width: 961px) {
  #footer #f-nav ul li a:hover::after {
    width: 100%;
    opacity: 1;
  }

  body.sub #footer #f-nav ul li a:not(.active):hover {
    opacity: 1;
  }
}
@media screen and (max-width: 960px) {
  #footer {
    padding: 40px 0;
    background: #181d24;
  }
  #footer #page-top {
    right: 0;
  }
  #footer #f-nav ul {
    display: flex;
    flex-direction: column;
  }
  #footer #f-nav ul li {
    margin: 0 0 30px;
  }
  #footer #f-nav ul li:last-child {
    margin-bottom: 0;
  }
  #footer .sns {
    margin-bottom: 60px;
  }
  #footer .logo {
    margin-bottom: 60px;
  }
  #footer .logo a img {
    width: 198px;
  }
  #footer #copyright small {
    font-size: 12px;
  }
}
