@charset "UTF-8";
/* Setting
****************************************************************************/
/* reset
****************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@600&family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@700&display=swap");
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  padding: 0;
  margin: 0;
}

/*
table {
	border-collapse: collapse;
	border-spacing:0;
}
*/
fieldset, img {
  border: 0;
}

img {
  vertical-align: bottom;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-weight: normal;
  font-style: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
}

.clearfix {
  zoom: 1;
  /*for IE 5.5-7*/
  position: relative;
  /*for preview*/
}

.clearfix:after {
  /*for modern browser*/
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  display: inline-table;
  /**/
  display: block;
  /**/
}

hr {
  display: none;
}

/* Common
****************************************************************************/
body {
  background-color: #fff;
  color: #000;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  outline: none;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
}

.fontBarlow {
  font-family: 'Barlow Semi Condensed', sans-serif;
}

.fontRoboto {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.res-pc {
  display: block !important;
}

@media only screen and (max-width: 767px) {
  .res-pc {
    display: none !important;
  }
}

.res-sp {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .res-sp {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 0;
  }
}

#contentWrapper {
  position: relative;
  font-size: 3.46667vw;
}

@media print, only screen and (min-width: 768px) {
  #contentWrapper {
    font-size: 16px;
    overflow-x: hidden;
  }
}

#contentWrapper img {
  max-height: 100%;
  max-width: 100%;
  -webkit-transition: opacity 1.5s ease-out;
  -o-transition: opacity 1.5s ease-out;
  transition: opacity 1.5s ease-out;
}

@media only screen and (max-width: 767px) {
  .container {
    background-size: contain;
  }
}

.container article {
  margin: 0 auto;
}

.container a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.container a:hover {
  opacity: 0.8;
}

.container sup {
  font-size: 50%;
  top: 0.5em;
  vertical-align: text-top;
}

.container .inline-block {
  display: inline-block;
}

/* navi
****************************************************************************/
.navBtn {
  position: fixed;
  top: 4vw;
  right: 4vw;
  background: #fff;
  width: 37px;
  height: 37px;
  z-index: 25;
  text-align: center;
  cursor: pointer;
  border: 1px solid #013ca6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media print, only screen and (min-width: 768px) {
  .navBtn {
    display: none;
  }
}

.navBtn .menu-trigger,
.navBtn .menu-trigger span {
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.navBtn .menu-trigger {
  position: relative;
  width: 22px;
  height: 14px;
}

.navBtn .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #013ca6;
  border-radius: 2px;
}

.navBtn .menu-trigger span:nth-of-type(1) {
  top: 0;
}

.navBtn .menu-trigger span:nth-of-type(2) {
  top: 6px;
}

.navBtn .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.navBtn.close .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  -ms-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}

.navBtn.close .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

.navBtn.close .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-5px) rotate(45deg);
  -ms-transform: translateY(-5px) rotate(45deg);
  transform: translateY(-5px) rotate(45deg);
}

#over {
  background: #ffffff;
  background-size: 100% auto;
  width: 100vw;
  height: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  overflow-y: scroll;
  -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  -o-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

@media print, only screen and (min-width: 768px) {
  #over {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  #over.active {
    height: 100vh;
  }
}

#over nav {
  margin-bottom: 13.33333vw;
}

#over nav ul {
  padding: 26.66667vw 0 0;
}

#over nav ul li {
  font-size: 5.86667vw;
  font-weight: bold;
  margin-bottom: 12vw;
  clear: both;
  text-align: center;
}

#over nav ul li a {
  color: #013ca6;
  border-bottom: 1.33333vw solid #ffff00;
  text-align: center;
}

#over .snsList {
  width: 32vw;
  margin: 0 auto 10vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media print, only screen and (min-width: 768px) {
  #over .snsList {
    width: 125px;
  }
}

#over .snsList a {
  width: 12vw;
  display: block;
}

@media print, only screen and (min-width: 768px) {
  #over .snsList a {
    width: 50px;
  }
}

#over .snsList a img {
  width: 100%;
  height: auto;
}

/* header
****************************************************************************/
header {
  position: fixed;
  width: 100%;
  z-index: 10;
  background: #ffffff;
  -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  -o-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 50;
  top: 0;
}

@media print, only screen and (min-width: 768px) {
  header {
    height: 104px;
  }
}

@media print, screen and (max-width: 1440px) and (min-width: 768px) {
  header {
    height: 7.22222vw;
  }
}

header.headerShow {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

header #headerInner {
  padding: 4vw 4vw 3.73333vw;
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 60;
}

@media print, only screen and (min-width: 768px) {
  header #headerInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

@media print, screen and (max-width: 1440px) and (min-width: 768px) {
  header #headerInner {
    padding: 0 2.08333vw;
  }
}

header #headerInner h1 {
  position: absolute;
  top: 6.26667vw;
  left: 23.86667vw;
  width: 52.4vw;
  line-height: 1;
}

@media print, only screen and (min-width: 768px) {
  header #headerInner h1 {
    position: relative;
    top: auto;
    left: auto;
    width: 296px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 37px;
  }
}

@media print, screen and (max-width: 1440px) and (min-width: 768px) {
  header #headerInner h1 {
    width: 20.55556vw;
    margin-right: 2.56944vw;
  }
}

@media print, only screen and (min-width: 768px) {
  header #headerInner h1 img {
    width: 100%;
    height: auto;
  }
}

header #headerInner p.logo {
  width: 12.26667vw;
  margin: 0;
}

@media print, only screen and (min-width: 768px) {
  header #headerInner p.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 70px;
    margin-right: 94px;
  }
}

@media print, screen and (max-width: 1440px) and (min-width: 768px) {
  header #headerInner p.logo {
    width: 4.86111vw;
    margin-right: 6.52778vw;
  }
}

@media print, only screen and (min-width: 768px) {
  header #headerInner p.logo img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 767px) {
  header #headerInner #headNav {
    display: none;
  }
}

header #headerInner #headNav nav {
  height: 100%;
}

header #headerInner #headNav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

header #headerInner #headNav nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 32px;
}

@media print, screen and (max-width: 1440px) and (min-width: 768px) {
  header #headerInner #headNav nav ul li {
    margin-right: 2.22222vw;
    font-size: 1.11111vw;
  }
}

header #headerInner #headNav nav ul li a {
  color: #013ca6;
}

/* footer
****************************************************************************/
footer {
  display: none;
  text-align: center;
  padding: 10.66667vw 0;
}

@media print, only screen and (min-width: 768px) {
  footer {
    padding: 60px 0;
  }
}

@media print, screen and (max-width: 1440px) and (min-width: 768px) {
  footer {
    padding: 4.16667vw 0;
  }
}

footer p {
  color: #555555;
  font-size: 2.53333vw;
}

@media print, only screen and (min-width: 768px) {
  footer p {
    font-size: 13px;
    letter-spacing: .25em;
  }
}

/* anime
****************************************************************************/
.slideBox, .slideBoxTitle {
  display: inline-block;
  margin: 0 0 2% 0;
  overflow: hidden;
}

.slideBox .slideBoxInner, .slideBoxTitle .slideBoxInner {
  width: inherit;
  height: inherit;
  opacity: 0;
}

.slideBox .slideBoxFade, .slideBoxTitle .slideBoxFade {
  opacity: 0;
}

.slideBox .slideBoxInner.isPlay {
  -webkit-animation-name: play;
  animation-name: play;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
}

.slideBox .slideBoxInner.isPlay:before {
  -webkit-animation-name: maskOut;
  animation-name: maskOut;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #013ca6;
}

.slideBox .slideBoxFade.isPlay {
  -webkit-animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1s forwards;
  animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1s forwards;
}

.slideBoxTitle .slideBoxFade.isPlay {
  -webkit-animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) 0s forwards;
  animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) 0s forwards;
}

.slideBox, .slideBoxTitle {
  display: inline-block;
  margin: 0 0 2% 0;
  overflow: hidden;
}

.slideBox .slideOut, .slideBoxTitle .slideOut {
  width: inherit;
  height: inherit;
}

.slideBox .slideOut:before, .slideBoxTitle .slideOut:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.slideBox .slideOut.isPlay:before, .slideBoxTitle .slideOut.isPlay:before {
  -webkit-animation-name: maskOut;
  animation-name: maskOut;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
}

.slideOutBox {
  position: relative;
  display: inline-block;
  margin: 0 0 2% 0;
  overflow: hidden;
}

.slideOutBox .slideOut {
  width: inherit;
  height: inherit;
}

.slideOutBox .slideOut:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.slideOutBox .slideOut.isPlay:before {
  -webkit-animation-name: maskOut;
  animation-name: maskOut;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes play {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes play {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes maskOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
  }
}

@keyframes maskOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
  }
}

.fadein-left {
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: translateX(-40px);
  -ms-transform: translateX(-40px);
  transform: translateX(-40px);
  opacity: 0;
}

.fadein-left.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.fancybox-button--zoom {
  display: none !important;
}

/* notfound
****************************************************************************/
.notfound {
  text-align: center;
}

.notfound #navBtn {
  display: none;
}

.notfound #contentWrapper {
  min-height: 100vh;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*←全て含めてmin-height:100vhに*/
}

@media print, only screen and (min-width: 768px) {
  .notfound #contentWrapper {
    padding-bottom: 304px;
    /*←footerの高さ*/
  }
}

.notfound #content-main {
  padding-top: 20vw;
}

@media print, only screen and (min-width: 768px) {
  .notfound #content-main {
    padding-top: 100px;
    padding-bottom: 160px;
  }
}

.notfound #content-main h2 {
  font-size: 15.2vw;
}

@media print, only screen and (min-width: 768px) {
  .notfound #content-main h2 {
    font-size: 140px;
  }
}

@media print, screen and (max-width: 1440px) and (min-width: 768px) {
  .notfound #content-main h2 {
    font-size: 10vw;
  }
}

.notfound #content-main p {
  font-weight: bold;
}

.notfound #content-main p.sub {
  margin-top: -2.66667vw;
  margin-bottom: 6.66667vw;
  font-size: 6vw;
}

@media print, only screen and (min-width: 768px) {
  .notfound #content-main p.sub {
    font-size: 54px;
    margin-top: -20px;
    margin-bottom: 50px;
  }
}

@media print, screen and (max-width: 1440px) and (min-width: 768px) {
  .notfound #content-main p.sub {
    font-size: 3.85714vw;
    margin-top: -1.42857vw;
    margin-bottom: 3.57143vw;
  }
}

.notfound #content-main p.txt {
  font-size: 4vw;
  margin-bottom: 13.33333vw;
}

@media print, only screen and (min-width: 768px) {
  .notfound #content-main p.txt {
    font-size: 18px;
    margin-bottom: 80px;
  }
}

@media print, screen and (max-width: 1440px) and (min-width: 768px) {
  .notfound #content-main p.txt {
    font-size: 1.28571vw;
    margin-bottom: 5.71429vw;
  }
}

.notfound #content-main p.btn {
  width: 60vw;
  font-size: 3.73333vw;
  background: #268300;
  margin: 0 auto;
}

@media print, only screen and (min-width: 768px) {
  .notfound #content-main p.btn {
    width: 21.42857vw;
    font-size: 18px;
  }
}

@media print, screen and (max-width: 1440px) and (min-width: 768px) {
  .notfound #content-main p.btn {
    font-size: 1.28571vw;
  }
}

.notfound #content-main p.btn a {
  color: #fff;
  display: block;
  padding: 2.66667vw 0;
}

@media print, only screen and (min-width: 768px) {
  .notfound #content-main p.btn a {
    padding: 1.07143vw 0;
  }
}

.notfound footer {
  width: 100%;
  position: absolute;
  bottom: 0;
}
