@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:700');

*,
*::before,
*::after {box-sizing: border-box;}
ol, ul {list-style: none;}
html {font-size: 62.5%;}

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size:1.6rem;
}

.container{
	overflow: hidden;
}

h1,h2,h3,h4,h5,h6,.bold {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}

.hidden{ display: none; }
.pc-non{ display: none; }
.sp-non{ display: inline-block; }
@media screen and (max-width:768px){
.pc-non{ display: inline-block; }
.sp-non{ display: none; }
}
	
a {
	color: inherit;
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 3px 0;
}

a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

a:hover::after {
  transform: scale(1, 1);
}

/*--- loader --- */
.loader-wrap {
	position: fixed;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}
.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.5em solid rgba(90, 90, 90, 0.2);
  border-right: 0.5em solid rgba(90, 90, 90, 0.2);
  border-bottom: 0.5em solid rgba(90, 90, 90, 0.2);
  border-left: 0.5em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-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);
  }
}

/*--- header --- */
header .inner {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto; 
	padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .inner .head-logo img{
	width: 218px;
	height: auto;
}

/*--- nav ---*/
header nav{
	width: 38%;
}
header nav ul{
	display: flex;
	justify-content: space-between;
}
header nav ul li a{
	color: #000;
	text-decoration: none;
}


#nav_toggle{
	display: none;
}

.head-logo a::after {
	background: none;
}

/*--- SP nav ---*/
@media screen and (max-width:768px){
header{
  border-bottom: 1px solid #e0e0e0;
}
header .inner{
	padding: 10px;
	
}

header .inner .head-logo img{
  width: 54%;
  height: auto;
}
header nav{
	width: 100%;
	display: none;
	position: absolute;
	top:72px;
	width: 100%;
	background: #2857a4;
	left: 0;
	z-index: 100;
}
header nav ul{
	display: block;
	margin: 0 auto;
	width: 90%;
}
header nav ul li{
	margin: 10px auto;
	text-align: center;
}
header nav ul li:last-child{
	border: none;
}
header nav ul li a{
	color: #fff;
	display: inline-block;
	line-height: 2.5;
}

/*開閉ボタン*/
#nav_toggle{
	display: block;
	width: 40px;
	height: 40px;
	position: relative;
	top: 4px;
	z-index: 100;
}
#nav_toggle div {
	position: relative;
}
#nav_toggle span{
	display: block;
	height: 3px;
	background: #000;
	position:absolute;
	width: 100%;
	left: 0;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;	
}
#nav_toggle span:nth-child(1){
	top:0px;
}
#nav_toggle span:nth-child(2){
	top:12px;
}
#nav_toggle span:nth-child(3){
	top:24px;
}

/*開閉ボタンopen時*/
.open #nav_toggle span:nth-child(1) {
	top: 12px;
   -webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
}
.open #nav_toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open #nav_toggle span:nth-child(3) {
	top: 12px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
}


/*--- 共通見出し設定 --- */
.ttl01{
	text-align: center;
	margin: 90px auto 110px;
}

.txt_en{
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 3.4rem;
	line-height: 1.0;
	letter-spacing: 4px;
	position: relative;
}

.txt_ja{
	display: block;
	line-height: 1.0;
	letter-spacing: 2px;
	margin: 50px 0 0;
}

.ttl01 .txt_en:after{
	content: '';
	background: url(../images/dot01.png) no-repeat;
	background-size: 100% 100%;
	width: 28px;
	height: 6px;
	position: absolute;
	bottom: -25px;
	left: 50%;
	margin-left: -14px;
}

@media screen and (max-width:768px){
.ttl01{
	margin: 60px auto 70px;
}

.txt_en{
	font-size: 3.0rem;
}

.txt_ja{
	margin: 40px 0 0;
}

.ttl01 .txt_en::after{
	bottom: -20px;
}
}
/*--- page-top 設定 --- */
.page-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
}
.page-top a {
    background: rgba(231, 37, 52 ,.8);
    text-decoration: none;
    color: #fff;
    width: 60px;
		height: 60px;
    text-align: center;
    display: block;
    border-radius: 50%;
		transition: background ease .4s;
}

.page-top a img{
	width:  18px;
	height: auto;
	padding: 18px 0;
}

.page-top a:hover {
    text-decoration: none;
		background: rgba(231, 37, 52 ,1.0);
}

.page-top a::after {
  background: none;
}

@media screen and (max-width:768px){
.page-top {
    position: fixed;
    bottom: 60px;
    right: 20px;
}

.page-top a {
    width: 55px;
		height: 55px;
}
.page-top a:hover,
.page-top a:visited,
.page-top a:active,
.page-top a:focus,
.page-top a:focus-within{
		background: rgba(231, 37, 52 ,.8);
}

}

/*--- footer .sec_contact 設定 --- */
footer .sec_contact{
	position: relative;
}

footer .sec_contact::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  margin: 3% -10% 0;
  background: #f3f3f3;
  transform-origin: left center;
  transform: rotate(-2deg);
  z-index: -1;
	/*border: 1px solid #f4f3d4;*/
}

footer .sec_contact .inner {
	display: flex;
	justify-content: space-around;
	align-items: center;
  width: 800px;
  margin: 0 auto;
  padding: 120px 0 160px;
}

footer .sec_contact .inner .text-area{
	text-align: center;
}

footer .sec_contact .inner .contact-ttl{
	font-size: 2.6rem;
}

footer .sec_contact .inner .desc{
	font-size: 1.3rem;
	margin: 20px 0 0;
}

footer .sec_contact .inner .contact-btn{
	color: #fff;
	background: #000;
	padding: 40px 90px;
}

footer .sec_contact .inner .contact-btn img{
	margin-left: 10px;
}

footer .sec_contact .inner a.contact-btn::after {
    background: none;
}

footer .sec_contact .inner a.contact-btn{
  display: inline-block;
  background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, #e72534 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: all .3s ease 0s;
  text-decoration: none;
}

footer .sec_contact .inner a.contact-btn:hover {
  background-position: -100% 0;
  color: #fff;
}

@media screen and (max-width:768px){
footer .sec_contact .inner{
	width: 100%;
	flex-wrap: wrap;
	padding: 90px 0 140px;
}

footer .sec_contact .inner .txt-area{
	text-align: center;
}

footer .sec_contact .inner .contact-ttl{
	font-size: 2.2rem;
	width: 100%;
}

footer .sec_contact .inner .desc{
	line-height: 1.5;
	margin: 10px 0 20px;
}
}

/*--- footer .footer_bottom 設定 --- */

.footer_bottom{
	color: #fff;
	background: #000;
	padding: 40px 2% 30px;
	margin: -50px 0 0;
}

.footer_bottom .area01{
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
	max-width: 900px;
	margin: 0 auto;
}

.footer_bottom .area01 .company{
	display: flex;
	align-items: center;
	font-style: normal;
	width: 50%;
	min-width: 415px;
	margin: 20px auto;
}

.footer_bottom .area01 .company a{
	padding: 0;
}

.footer_bottom .area01 .company .logo-img{
	width: 190px;
	margin-right: 20px;
}

.footer_bottom .area01 .company .address-list{
	font-size: 1.3rem;
	line-height: 1.5;
}

.footer_bottom .area01 .logo-list{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 50%;
	margin: 20px auto;
}

.footer_bottom .area01 .logo-list li{
	margin-right: 40px;
}

.footer_bottom .area01 .logo-list li .booklet{
	width: 166px;
	height: auto;
}

.footer_bottom .area01 .logo-list li .prism{
	width: 140px;
	height: auto;
}

.footer_bottom .area01 .logo-list li:last-child{
	margin-right: 0;
}

.footer_bottom .site-map{
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px auto 20px;
}

.footer_bottom .site-map li{
	margin: 0 2.8%;
}

.footer_bottom .site-map a::after,
.footer_bottom .area01 .logo-list  a::after{
  background: none;
}

.copy{
	text-align: center;
	font-size: 1.2rem;
	padding: 5px 0;
}

@media screen and (max-width:768px){
.footer_bottom{
	padding: 40px 2%;
}

.footer_bottom .area01{
	display: block;
}

.footer_bottom .area01 .company{
	justify-content: space-around;
	width: 100%;
	min-width: 200px;
}

.footer_bottom .area01 .company .logo-img{
	width: 45%;
	height: auto;
	max-width: 220px;
}

.footer_bottom .area01 .company .address-list{
	width: 50%;
}

.footer_bottom .area01 .logo-list{
	justify-content: center;
	width: 100%;
	padding: 0 2%;
	margin: 25px auto;
}

.footer_bottom .site-map{
	font-size: 1.3rem;
	justify-content: space-around;
	margin: 25px auto 0;
}
}
