@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%;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	font-family: "Noto Sans JP", sans-serif,"Noto Sans", sans-serif;
	font-size:1.6rem;
}

main{
	margin-top: 110px;
}

.container{
	overflow: hidden;
}

h1,h2,h3,h4,h5,h6,.bold {
  font-family: "Noto Sans JP", sans-serif,"Noto Sans", 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;
	transition: .5s;
}

a:hover{
	opacity: .7;
}

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

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

p{
	color: #2e3037;
}

/*--- 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 {
  position: fixed;
  z-index: 100;
  width: 100%;
	background-color: #fff;
}

header .inner {
	width: 100%;
	max-width: 98%;
	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: 50%;
}
header nav ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 50px;
}
header nav ul li a{
	color: #2e3037;
	text-decoration: none;
	font-weight: 400;
}

header nav ul .btn-area{
	position: relative;
	width: auto;
	margin-top: 0;
	margin-left: 0;
	line-height: unset;

}

header nav ul .btn-area:hover{
	opacity: .7;
}


header nav ul .btn-area .-btn{
	width: auto;
	color: #fff;
	font-weight: normal;
	padding: 10px 25px;
}

header nav ul .btn-area .-btn::after{
	content: none;
}


#nav_toggle{
	display: none;
}

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

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

header .inner .head-logo img{
  width: 54%;
  height: auto;
}
header nav{
	display: none;
	position: absolute;
	top:72px;
	width: 100%;
	height: 100%;
	background-image: url(../../common/images/nav-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	left: 0;
	z-index: 100;
	position: fixed;
	align-content: center;
}
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;
	margin: 10px 0;
}
header nav ul li a{
	font-size: 22px;
	color: #2e3037;
	display: inline-block;
	line-height: 2.5;
}

.header_privacy a{
	font-size: 1.2rem;
}

/*開閉ボタン*/
#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: 2px;
	background: #2e3037;
	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(145deg);
	-moz-transform: rotate(145deg);
	transform: rotate(145deg);
}
.open #nav_toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open #nav_toggle span:nth-child(3) {
	top: 12px;
	-webkit-transform: rotate(-145deg);
	-moz-transform: rotate(-145deg);
	transform: rotate(-145deg);
}
}


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

.txt_en{
	display: block;
	font-family: "Noto Sans", sans-serif;
	font-size: 3.4rem;
	font-weight: 400;
	line-height: 1.0;
	letter-spacing: 4px;
	position: relative;
	color: #2e3037;
}

.txt_ja{
	display: block;
	line-height: 1.0;
	letter-spacing: 2px;
	margin: 15px 0 0;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #2e3037;
}

.btn-area {
  text-align: center;
	margin-top: 60px;
	position: relative;
}

.btn-area .-btn{
  color: #fff;
  background: #2e3037;
	overflow: hidden;
  padding: 30px;
  width: 400px;
	border-radius: 50px;
	position: relative;
	z-index: 1;
	transition: .5s;
	cursor: pointer;
}

.btn-area .-btn::after {
	content: '';
	background-image: url('/common/images/contact-arrow.svg');
  background-repeat: no-repeat;
	display: inline-block;
  width: 15px;
  height: 15px;
  transform: none;
	position: absolute;
  right: 20%;
  top: 32px;
	left: unset !important;
	background-color: unset !important;
}

.btn-area .-btn:hover {
	opacity: .7;
}

.btn-area .-btn:hover::before {
	transform: scaleX(1);
	opacity: .7;
}

.btn-area .-btn:hover::after {
	transform: scaleX(1);
}


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

.txt_en{
	font-size: 3.0rem;
}

.txt_ja{
	margin: 15px 0 0;
}

.ttl01 .txt_en::after{
	bottom: -20px;
}
.btn-area .-btn::after {
  right: 10%;
  top: 32px;
}
}
/*--- page-top 設定 --- */
.page-top {

}
.page-top a {
  text-align: center;
  display: flex;
  transition: .5s;
  align-items: center;
	gap: 10px;
	font-size: 1.3rem;
	justify-content: center;
}

.page-top a img{
	width:  13px;
	height: auto;
	padding: 18px 0;
	transform: rotate(-90deg);
}

.page-top a:hover {
  text-decoration: none;
	opacity: .7;
}

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

@media screen and (max-width:768px){
.page-top {
	display: block;
}

.page-top a {
    width: auto;
		justify-content: center;
}

}

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

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

footer .sec_contact .bg-img img{
	width: 100%;
	display: block;
}

footer .sec_contact::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  z-index: -1;
	background-size: cover;
	background-image: url(../../common/images/footer-bg.png);
	background-repeat: no-repeat;
}

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

footer .sec_contact .inner .contact-ttl{
	font-size: 12rem;
	text-align: center;
	font-weight: 100;
	color: #2e3037;
}

footer .sec_contact .inner .desc{
	font-size: 1.5rem;
	font-weight: 400;
	margin: 30px 0 0;
	text-align: center;
}

footer .sec_contact .inner .contact-btn{
	color: #fff;
	background: #2e3037;
	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::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform-origin: left center;
	z-index: -1;
	background-size: cover;
	background-image: url(../../common/images/footer-bg_sp.png);
	background-repeat: no-repeat;
}
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: 7rem;
	width: 100%;
}

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

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

.footer_bottom{
	color: #2e3037;
	padding: 40px 2% 30px;
	margin: 0 auto;
}

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

.footer_bottom .area01 .company{
  display: flex;
  align-items: center;
  font-style: normal;
  width: 100%;
  max-width: 500px;
  margin: 60px auto 20px;
  justify-content: center;
  gap: 70px;
}

.footer_bottom .area01 .company a{
	padding: 0;
	transition: .5s;
}


.footer_bottom .area01 .company a::after{
	content: none;
}

.footer_bottom .area01 .company a:hover{
	opacity: 0.7s;
}

.footer_bottom .area01 .company .logo-img{
	width: 100%;
}

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

.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 1.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;
	margin-bottom: 30px;
}

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

.footer_bottom .area01{
	display: block;
	margin: 20px auto 0;
}

.btn-area .-btn{
  width: 300px;
}

header nav ul .btn-area .-btn {
	background: unset;
	color: #2e3037;
	border-radius: unset;
}

header nav ul .btn-area::before{
  content: none;
}

.btn-area .-btn::before {
	content: none;
}

.footer_bottom .area01 .company{
	justify-content: space-around;
	width: 100%;
	min-width: 200px;
	gap: 15px;
	flex-direction: column;
	margin: 30px auto 20px;
}

.footer_bottom .area01 .company .logo-img{
	width: 50vw;
	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: 50px auto 0;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 40px;
}

.footer_bottom .site-map li a{
	font-size: 1.6rem;
}

.copy{
	margin-bottom: 100px;
}
}
