@charset "UTF-8";
/* Reset
------------------------------------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

address, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: normal;
  text-align: left;
}

legend {
  display: none;
}

img, fieldset {
  border: 0;
}

li {
  list-style-type: none;
}

/* HTML5
------------------------------------------------------------*/
article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
  margin: 0;
  padding: 0;
}

/* scrollbug for FF
------------------------------------------------------------*/
html {
  overflow-y: scroll;
}

/* Fonts
------------------------------------------------------------*/
body, button, input, select, textarea {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

/* Form
------------------------------------------------------------*/
button, input, select, textarea {
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Media
------------------------------------------------------------*/
object, embed {
  vertical-align: top;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
}

/* link
------------------------------------------------------------*/
a {
  color: #002f7b;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
a > img {
  transition: opacity .3s ease-out;
}
a > img:hover {
  opacity: .6;
}

/* loader
------------------------------------------------------------*/
#loader {
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
}
#loader div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loaderIcon {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: auto;
  position: relative;
  text-indent: -9999em;
  border-top: 5px solid #f0f6f8;
  border-right: 5px solid #f0f6f8;
  border-bottom: 5px solid #f0f6f8;
  border-left: 5px solid #a3b5c0;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.2s infinite linear;
  animation: load8 1.2s infinite linear;
}
.loaderIcon::after {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* @include xxx(); */
* {
  box-sizing: border-box;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 500;
  min-width: 1200px;
  color: #111;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

@font-face {
  font-family: 'maka';
  src: url(../font/maka.woff) format("opentype");
}
/* header
------------------------------------------------------------*/
header {
  width: 100%;
  padding-left: 2vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
header * {
  transition: .3s;
}
header .logo {
  margin-top: 20px;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #111;
  text-decoration: none;
}
header .logo:hover {
  opacity: .6;
}
header .logo p {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  padding-left: 1.5vw;
  letter-spacing: 1px;
}
header .logo p span {
  font-size: 1.4rem;
  color: #009ed2;
  display: block;
}

/* nav
------------------------------------------------------------*/
nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
nav .gNav {
  padding-right: 3vh;
  margin-bottom: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
nav .gNav > li {
  position: relative;
}
nav .gNav > li > a {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 3vh 1vw;
  display: block;
  color: #111;
  text-decoration: none;
}
nav .gNav > li.ac > a {
  color: #009ed2;
}
nav .gNav > li:hover > a {
  background: #f2f3f4;
}
nav .exArea {
  position: relative;
}
nav .exArea .ctaBtnArea a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  background: #0092cd;
  padding: 3vh 4vw;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 1px;
  transition: .3s;
}
nav .exArea .ctaBtnArea a:hover {
  opacity: .6;
}
nav .exArea .subBtnArea {
  width: 100%;
  position: absolute;
  top: calc(100% + 20px);
}
nav .exArea .subBtnArea a {
  font-size: 1.4rem;
  background: #fff;
  padding: 5px;
  margin-right: 20px;
  display: block;
  border: 1px solid #333;
  text-align: center;
  transition: .3s;
  color: #111;
  text-decoration: none;
}
nav .exArea .subBtnArea a[href^="http"]::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../img/i_outLink.svg);
  background-size: contain;
  margin-left: 8px;
  display: inline-block;
  position: relative;
  transition: .3s;
}
nav .exArea .subBtnArea a:hover {
  color: #fff;
  background: #333;
}
nav .exArea .subBtnArea a:hover[href^="http"]::after {
  background-image: url(../img/i_outLink_wt.svg);
}
nav .exArea .snsBtnArea {
  width: 100%;
  position: absolute;
  top: calc(100% + 70px);
}
nav .exArea .snsBtnArea ul {
  margin-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
nav .exArea .snsBtnArea ul li:not(:last-of-type) {
  margin-right: 1vw;
}
nav .subNav {
  width: max-content;
  background: #000;
  padding: 1vh 0;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  left: 50%;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: .3s;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
nav .subNav::before {
  content: "";
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #000 transparent;
  display: block;
  position: absolute;
  bottom: 100%;
  left: calc(50% - 10px);
}
nav .subNav li:not(:last-of-type) {
  border-right: 1px solid #ddd;
}
nav .subNav li a {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  padding: 0 1vw;
  text-decoration: none;
  transition: .3s;
}
nav .subNav li a:hover {
  opacity: .6;
}
@media all and (-ms-high-contrast: none) {
  nav .subNav {
    min-width: 20vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
nav .gNav > li:hover > .subNav {
  opacity: 1;
  visibility: visible;
}

#menuBtn {
  display: none;
}

header.scroll {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header.scroll .logo {
  margin-top: 0;
}
header.scroll .logo img {
  max-width: 200px;
}

/* ページトップへ
------------------------------------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  right: 3vw;
  bottom: 5vh;
  z-index: 100;
}
.pagetop a {
  line-height: 50px;
  width: 50px;
  background: #fff;
  display: block;
  text-align: center;
  border-radius: 50%;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
  -webkit-transition: .3s;
  transition: .3s;
}
.pagetop a span {
  width: 12px;
  height: 12px;
  border-left: 2px solid;
  border-top: 2px solid;
  display: inline-block;
  position: relative;
  top: 4px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: .3s;
  transition: .3s;
}
.pagetop a:hover {
  background: #000;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}
.pagetop a:hover span {
  color: #fff;
}

/* footer
------------------------------------------------------------*/
footer {
  font-size: 1.4rem;
  color: #fff;
  background: #000;
  padding: 8vh 0;
  text-align: center;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer .logo {
  margin-bottom: 3vh;
  display: inline-block;
}
footer .txtArea {
  margin-bottom: 8vh;
}
footer .linkArea {
  margin-bottom: 4vh;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer .linkArea .box:not(:last-of-type) {
  margin-right: 5vw;
}
footer .linkArea .box p a {
  font-weight: 600;
}
footer .linkArea .box ul li a {
  font-size: 1.2rem;
}
footer .subLinkArea {
  margin-bottom: 8vh;
}
footer .subLinkArea ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer .subLinkArea ul li:not(:last-of-type) {
  margin-right: 3vw;
}
footer .subLinkArea ul li a {
  font-size: 1.2rem;
  font-weight: 600;
}
footer .subLinkArea ul li a::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 10px;
  display: inline-block;
  border-top: 1px solid;
  border-right: 1px solid;
  position: relative;
  top: -2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
footer .copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #ccc;
  letter-spacing: 1px;
}

@media screen and (max-width: 480px) {
  * {
    -webkit-appearance: none;
  }

  body {
    min-width: inherit;
  }

  /* header
  ------------------------------------------------------------*/
  header {
    padding: 15px 5%;
  }
  header .logo {
    margin-top: 0;
  }
  header .logo img {
    max-width: 120px;
  }
  header.scroll {
    background: #fff;
  }
  header.scroll .logo img {
    max-width: 120px;
  }

  /* nav
  ------------------------------------------------------------*/
  nav {
    width: 60vw;
    height: 100vh;
    background: #fff;
    display: block;
    position: fixed;
    top: 0;
    right: -60vw;
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    z-index: 100;
  }
  nav::after {
    content: "";
    width: 40vw;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: -40vw;
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    z-index: -1;
  }
  nav.ac {
    right: 0;
  }
  nav.ac::after {
    background: rgba(0, 0, 0, 0.3);
    left: 0;
  }
  nav .gNav {
    padding: 12vh 0 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  nav .gNav li {
    flex-basis: 100%;
  }
  nav .gNav li:not(:last-of-type) {
    margin-right: 0;
  }
  nav .gNav li a {
    padding: 1vh 5vw;
    display: block;
  }
  nav .exArea {
    padding: 0 5vw;
  }
  nav .exArea > *:not(:last-of-type) {
    margin-bottom: 2vh;
  }
  nav .exArea .ctaBtnArea a {
    font-size: 1.6rem;
    padding: 2vh 2vw;
    display: block;
    text-align: center;
  }
  nav .exArea .subBtnArea {
    position: static;
  }
  nav .exArea .subBtnArea a {
    padding: 1vh 1vw;
    margin-right: 0;
  }
  nav .exArea .snsBtnArea {
    position: static;
  }
  nav .exArea .snsBtnArea ul {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  nav .exArea .snsBtnArea ul li:not(:last-of-type) {
    margin-right: 5vw;
  }
  nav .subNav {
    display: none;
  }

  #menuBtn {
    width: 24px;
    height: 22px;
    background: #000;
    display: block;
    border-top: 10px solid #fff;
    border-bottom: 10px solid #fff;
    position: fixed;
    top: 24px;
    right: 5%;
    transition: .3s;
    z-index: 1000;
  }
  #menuBtn::before, #menuBtn::after {
    content: "";
    width: 24px;
    height: 2px;
    background: #000;
    position: absolute;
    right: 0;
    transition: all .3s;
  }
  #menuBtn::before {
    top: -9px;
  }
  #menuBtn::after {
    bottom: -9px;
  }
  #menuBtn.ac {
    background: #fff;
  }
  #menuBtn.ac::before {
    top: 0;
    right: 0;
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #menuBtn.ac::after {
    bottom: 0;
    right: 0;
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  /* footer
  ------------------------------------------------------------*/
  footer {
    padding: 5vh 0;
  }
  footer .txtArea {
    margin-bottom: 0;
  }
  footer .linkArea {
    padding-bottom: 3vh;
    margin-bottom: 5vh;
    border-bottom: 1px dotted #ccc;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .linkArea .box {
    flex-basis: 100%;
    padding-top: 3vh;
    margin-top: 3vh;
    border-top: 1px dotted #ccc;
  }
  footer .linkArea .box:not(:last-of-type) {
    margin-right: 0;
  }
  footer .linkArea .box p {
    margin-bottom: 1vh;
  }
  footer .linkArea .box ul {
    margin-left: 3vw;
  }
  footer .subLinkArea {
    margin-bottom: 5vh;
  }
  footer .subLinkArea ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .subLinkArea ul li {
    flex-basis: 50%;
    text-align: left;
  }
  footer .subLinkArea ul li:not(:last-of-type) {
    margin-right: 0;
  }
  footer .copy {
    font-size: 1rem;
    letter-spacing: 0;
  }
}
