@charset "UTF-8";

/* ユーティリティー */

body {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  /*background-color:#ea6d93;*/
  -webkit-text-size-adjust: 100%;
  /*font-feature-settings: "palt";*/
  position: relative;
}

body.fixed {
    overflow-y: hidden;
}


/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 3s;
  background-color: #003C60;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
  /*width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;*/
  width:174px;
  height:172px;
  margin: 200px auto;
  animation: sk-scaleout 3s infinite ease-in-out;
}
/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}


main {
  /*overflow-x: hidden;*/
  overflow: visible;
}
article {
  position: relative;
  z-index: 2;
}

a {
  color: #fff;
  zoom: 1;
  text-decoration: none;
  transition: opacity 0.7s;
  display: block;
}

a:hover {
  opacity: 0.8;
}

.fgo {
	font-family: "Noto Sans JP", sans-serif;
}

.fmin {
  font-family: "Noto Serif JP", serif;
}
/*R400,M500,SB600,B700,BK900*/

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.page {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

.img {
  width: 100%;
  height: auto;
  display:block;
}

.img_cnt {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
}
.img_cvr {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}


a.sptel {
  cursor: default;
  pointer-events: none;
}

.nolink {
  pointer-events: none;
  cursor: default;
}

.sp {
  display: none;
}

img[src*="_sp"] {
  display: none;
}

.spbr {
  display: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}


/* -------------------------------------
header
------------------------------------- */
header {
	position:relative;
}
header #head nav {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	z-index: 3;
}
header #head.fixed nav {
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:auto;
	z-index:5;
}
header nav {
	/*width:62.7%;*/
	padding:21px 0;
	margin:0 auto;
	transition: all 0.4s;	
}
header #head.fixed nav {
	background-color:#003C60;
	padding:10px 0;
}

header nav .nav_logo {
	display:none;
}
header nav #gnav {
	/*width:100%;*/
	width:62.7%;
	display:table;
}
header nav #gnav li {
	text-align:center;
	display:table-cell;
	border-right:4px solid #fff;
}
header nav #gnav li:first-child {
	border-left:4px solid #fff;
}
header nav #gnav li a {
	font-size:20px;
	font-weight:600;
	letter-spacing:0.18em;
	line-height:1;
	padding:4px 1.8vw;
}
header nav #gnav li img {
	max-width:130px;
}

header .head_top a#menu_btn {
display:none;
  width: 60px;
  height: 60px;
  background:url(../imgs/menu_open.svg) center center no-repeat;
  position: fixed;
  right:2vw;
  bottom: 0;
  /*top: calc(100svh - 80px);*/
  z-index:5;
  transition: all 0.4s;
}
header .head_top a#menu_btn.active {
  background-image:url(../imgs/menu_close.svg);
}


/*header .head_top a#menu_btn,
header .head_top a#menu_btn span {
  display: inline-block;
  transition: all 0.4s;
}*/

/*header .head_top a#menu_btn {
display:none;
  width: 49px;
  height: 49px;
  position: absolute;
  right:10px;
  top:10px;
  z-index:5;
}*/


/*header .head_top a#menu_btn span {
  width: 36px;
  height: 2px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #003C60;
  position: absolute;
  left: 0;
  right: 0;
}

header .head_top a#menu_btn span:nth-of-type(1) {
  top: 15px;
}

header .head_top a#menu_btn span:nth-of-type(2) {
  top: 24px;
}

header .head_top a#menu_btn span:nth-of-type(3) {
  top: 32px;
}

header.fixed .head_top a#menu_btn {
  background-color: rgba(0, 0, 0, 0.5);
}

header.active .head_top a#menu_btn.active {
  background-color: transparent;
  opacity: 1;
}

header .head_top a#menu_btn.active span {
  background-color: #fff;
}

header .head_top a#menu_btn.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-315deg);
}

header .head_top a#menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}

header .head_top a#menu_btn.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(315deg);
}

header.fixed .head_top a#menu_btn {
  background-color: rgba(0, 0, 0, 0.5);
}
header.fixed .head_top a#menu_btn span,
header.active .head_top a#menu_btn span {
  background-color: #fff;
}*/


/* -------------------------------------
footer
------------------------------------- */
footer {
 text-align: center;
 padding: 40px 0 60px;
 background-color: #003C60;
}
footer .ftop {
 display: flex;
 flex-wrap:wrap;
 align-items: center;
 justify-content: center;
 max-width: 780px;
 margin: 0 auto 22px;
 padding-bottom: 22px;
 border-bottom: 1px solid #fff;
}
footer .ftop .fname {
 font-size: 25px;
 line-height: 1;
 display: flex;
 align-items:center;
 margin-right: 1em;
 margin-bottom:5px;
}
footer .ftop .fname span {
 display: inline-block;
 vertical-align:middle;
}
footer .ftop .fname span.lin {
 font-size: 17px;
 margin-right: 15px;
 padding: 5px 7px 3px;
 border: 1px solid #fff;
}
footer .ftop p {
 font-size: 18px;
 display: flex;
}
footer .ftop .add:after {
 content: "/";
 display: inline-block;
}
footer .ftop a.sptel {
}

footer #cp {
 font-size: 13px;
}


.inv_mov {
  opacity: 0;
  transition: opacity 1s, transform 1s;
}

.tl_yb {
  transform: translate(0, 60px);
}

.tl_yt {
  transform: translate(0, -60px);
}

.tl_xl {
  transform: translate(-60px, 0);
}

.tl_xr {
  transform: translate(60px, 0);
}

.tl_rol {
  transform: rotate(-10deg);
}

.tl_ror {
  transform: rotate(10deg);
}
.tl_xt_ro {
	transform: rotateX(180deg);
}
.tl_yt_ro {
	transform: rotateY(180deg);
}



.mov {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
  transition: opacity 1s, transform 1s;
}

.mov.delay100 {
  transition-delay: 100ms;
}

.mov.delay200 {
  transition-delay: 200ms;
}

.mov.delay300 {
  transition-delay: 300ms;
}

.mov.delay400 {
  transition-delay: 400ms;
}

.mov.delay500 {
  transition-delay: 500ms;
}
.mov.delay600 {
  transition-delay: 600ms;
}
.mov.delay700 {
  transition-delay: 700ms;
}


/* -------------------------------------
404 Not found
------------------------------------- */
.notfound {
	text-align: center;
	padding: 250px 0;
}
.notfound .page {
	padding-left:0;
}

.notfound .ttl {
	text-align: center;
	font-size: 32px;
	margin-bottom: 30px;
}

.notfound p {
	font-size: 16px;
	margin-bottom: 15px;
}

.notfound p strong {
	font-size: 20px;
	font-weight: bold;
	display: block;
	margin-bottom: 10px;
}

.notfound a {
	text-decoration: underline;
	display: inline-block;
}






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

}

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

}

@media screen and (max-width: 980px) {
/* -------------------------------------
header
------------------------------------- */


/* -------------------------------------
footer
------------------------------------- */

}

@media screen and (max-width: 920px) {
/* -------------------------------------
footer
------------------------------------- */

}

@media screen and (max-width: 880px) {
}

@media screen and (max-width: 800px) {
}

@media screen and (max-width: 768px) {
  a.sptel {
    cursor: pointer;
    pointer-events: auto;
  }
  
/* -------------------------------------
common
------------------------------------- */

  img[src*="_sp"] {
    display: block;
  }

  img[src*="_pc"] {
    display: none;
  }

/* -------------------------------------
header
------------------------------------- */
header {
    border-top: none;
}

header #head {
	position:fixed;
	top:0;
	left:0;
	right:0;
	z-index:5;
}
header.active #head {
	/*background-color:#fff;*/
}
header .head_top a#menu_btn {
	display:block;
}
header #head nav {
	display:none;
    width: 100%;
    height: 100vh;
    padding: 70px 0 60px;
    background-color: #003C60;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -20;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
header.active #head nav {
	display:flex;
	flex-direction: column;
	align-items:center;
	padding-top:40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
}
header nav .nav_logo {
	display:block;
	width:100%;
	padding-bottom:30px;
}
header nav .nav_logo img {
	display:block;
	max-width:263px;
	margin:0 auto;
}
header nav #gnav {
	display:block!important;
	padding-top:20px;
	position:relative;
	z-index:1;
}
header nav #gnav::before {
	content:"";
	display:block;
	width:100vw;
	height:80svh;
	background-color: #fff;
	position:absolute;
	left: 50%;
        right: 0;
        top: 0;
        z-index: -1;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
}
header nav #gnav li {
	text-align:center;
	display:block;
	border:none;
}
header nav #gnav li:first-child {
	border:none;
}
header nav #gnav li a {
	color: #003C60;
	/*font-size:18px;*/
	padding:15px 5px;
}


/* -------------------------------------
footer
------------------------------------- */
footer .ftop .fname {
    font-size: 23px;
    margin-right:0;
}
footer .ftop .fname span.lin {
	padding: 5px 5px 3px;
	margin-right:5px;
}
footer .ftop p {
    font-size: 17px;
	display:block;
}
footer .ftop .add:after {
    display:none;
}

}

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


}

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

.page {
  width: calc(100% - 30px);
}

}

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

}

@media screen and (max-width: 320px) {
/* -------------------------------------
footer
------------------------------------- */
footer .ftop .fname {
    font-size: 21px;
}

}

@media screen and (min-width: 769px) {

}
