@charset "utf-8";

/* 
LocationMind Website
stylesheet common
202005
*/

html, body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  background: #fff;
}

a {
  text-decoration: none;
}

/* coming soon */
a.cs, .cs a {
  color: #ccc;
  background: #999;
  cursor: default;
  pointer-events: none;
}

canvas{
  display: block;
  vertical-align: bottom;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media only screen and (max-width:768px) {
  html, body {
    font-size: 14px;
  }
}

.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
	background: #005BAC;
	animation: AnimationName 5s ease infinite;
	z-index:10000;
}
 
.loader,
.loader:before,
.loader:after {
  background: #ffffff;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 0.5rem;
  height: 1.5rem;
}
.loader {
  color: #ffffff;
  text-indent: -9999em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

.wrapper {
  opacity: 0
}

/* header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  z-index: 3;
}
header h1 {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 250px;
  height: 60px;
}
header nav {
  position: absolute;
  top: 55px;
  right: 15px;
  display: block;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
header nav li {
  margin-left: 1.5rem;
}
header nav li:last-of-type {
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid #fff;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.btn_menu,
.btn_menu span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.btn_menu {
	position: fixed;
  top: 0;
  right: 0;
  display: none;
  width: 85px;
  height: 85px;
  background: #005BAC;
	cursor: pointer;
	z-index: 101;
}
.btn_menu .inbox {
  position: relative;
  width: 40px;
  height: 28px;
  margin: 26px auto;
}
.btn_menu span {
  position: absolute;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #fff;
}
.btn_menu span:nth-of-type(1) {
  top: 0;
}
.btn_menu span:nth-of-type(2) {
  top: 12px;
}
.btn_menu span:nth-of-type(3) {
  bottom: 0;
}

.btn_menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
  transform: translateY(12px) rotate(-45deg);
}
.btn_menu.active span:nth-of-type(2) {
  opacity: 0;
}
.btn_menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
  transform: translateY(-12px) rotate(45deg);
}

.navPanel {
	position: fixed;
	top: 0;
	left: 101%;
	width: 100%;
	height: 100vh;
	background: #005BAC;
	z-index: 100;
	transition: .25s;
}
.navPanel.open {
	left: 0;
}

.navPanel nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 90%;
	margin: 50px auto 20px;
}

.navPanel nav a {
	display: block;
	width: 100%;
	padding: 0 2em;
	box-sizing: border-box;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	line-height: 40px;
}

nav .cs a {
  background: none !important;
  opacity: .5;
}

@media only screen and (max-width:1100px) {
  header nav {
    display: none;
  }
  .btn_menu {
    display: block;
  }

}

@media only screen and (max-width:768px) {
  header {
    height: 50px;
  }
  header h1 {
    top: 10px;
    left: 10px;
    width: 167px;
    height: 40px;
  }
  .btn_menu {
    width: 50px;
    height: 50px;
  }
  .btn_menu .inbox {
    position: relative;
    width: 30px;
    height: 22px;
    margin: 14px auto;
  }
  .btn_menu span {
    position: absolute;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: #fff;
  }
  .btn_menu span:nth-of-type(2) {
    top: 10px;
  }
  .btn_menu.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .btn_menu.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
}


/* article */
article {
  position: relative;
  z-index: 2;
}

section {
  background: #fff;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7% 0;
}

@media only screen and (max-width:768px) {
  .inner {
    padding: 12% 0;
  }
}


/* footer */
footer {
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

footer .site-info {
  padding: 10px;
  background: #005BAC;
}
footer .sns {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}
footer .sns a {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 10px 0 0;
}
footer .copyright {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding-left: 1rem;
  color: #fff;
  font-size: 10px;
  text-align: right;
}

footer .copyright a {
  color: #fff;
  text-decoration: none;
}

.pagetop {
  position: fixed;
  bottom: 75px;
  right: 25px;
  display: none;
  width: 60px;
  height: 60px;
  background: url("../img/common/pagetop.svg") center center no-repeat;
  background-size: auto;
  z-index: 10;
}

@media only screen and (max-width:768px) {
  footer .sns {
    justify-content: center;
  }

  footer .sns a {
    margin: 0 3%;
  }

  footer .copyright {
    font-size: 9px;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    padding-left: 0;
    margin: 4% 0 0 0;
    text-align: center;
  }

  .pagetop {
    bottom: 70px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

.-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  margin: 2rem auto 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  transition: 0.3s;
}

.-btn:after {
  content: "";
  position: absolute;
  top: 13px;
  right: 15px;
  width: 22px;
  height: 14px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}

.-btn-blue {
  background-color: #005BAC;
  color: #fff;
  border: #005BAC 1px solid;
}

.-btn-blue:after {
  background-image: url("../img/common/btn_arrow_white.svg");
}

.-btn-blue:hover {
  background: #fff;
  color: #005BAC;
}

.-btn-blue:hover:after {
  background-image: url("../img/common/btn_arrow_blue.svg");
}

.-btn-yellow {
  background-color: #FFEF42;
  color: #000;
  border: #FFEF42 1px solid;
}

.-btn-yellow:hover {
  background: #F4E964;
  color: #000;
  border: #F4E964 1px solid;
}

.-btn-white {
  background-color: #fff;
  color: #005BAC;
  border: #fff 1px solid;
}

.-btn-white:after {
  background-image: url("../img/common/btn_arrow_blue.svg");
}

.-btn-white:hover {
  background: #005BAC;
  color: #fff;
}

.-btn-white:hover:after {
  background-image: url("../img/common/btn_arrow_white.svg");
}

/* pc - sp 切り替え */

.-pc {
  display: block;
}

.-sp {
  display: none;
}

@media only screen and (max-width:768px) {

  .-pc {
    display: none;
  }
  
  .-sp {
    display: block;
  }

  .clear {
    display: none;
  }
}

/* バナー */
.banner {
  background-color: #081E3B;
  text-align: center;
  color: #fff;
}

.banner .inner {
  padding: 60px 0;
}

.banner .main-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 24px;
}

.banner .sub-copy {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.5;
  margin-bottom: 16px;
}

.banner .sub-copy::before {
  content: none;
}

.banner .sub-copy .emphasis {
  background:linear-gradient(transparent 90%, #FFEF42 60%);
}

.banner p:not(:last-child) {
  font-size: 14px;
  letter-spacing: .04em;
  line-height: 2;
  margin-bottom: 32px;
}

.banner a {
  max-width: 250px;
}

@media only screen and (max-width:768px) {
  .clear {
    display: none;
  }

  .banner .inner {
    padding: 48px 0;
  }

  .banner p {
    text-align: left;
  }
}