@charset "UTF-8";
/* CSS Document */
h2{
	text-align: center;
	margin-bottom: 100px;
	font-size:32px;
	font-weight: bold;
}
h3{
	font-size: 18px;
	font-weight: 100;
	line-height: 1.8rem;
}

p{
	font-size: 15px;
	line-height: 1.5rem;
	text-align: justify;
}
a {
  text-decoration: none;
}
li{
	list-style: none;
}

.c-header.c-hamburger-menu{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.c-header {
  	align-items: center;
  	background-color: white; 
  	box-sizing: border-box;
  	display: flex;
  	justify-content: space-between;
  	padding: 1.5rem 2rem; 
  	width: 100%;
}

.c-header__logo {
  color: #000; 
  min-width: 80px; 
  text-decoration: none;
}

.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-header__list-item {
  list-style: none;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.c-header__list-link {
  color: #000; 
  display: block;
  margin-right: 20px; 
  text-decoration: none;
  padding: 10px 0px; 
}

.c-header__list-link:hover {
  filter: opacity(0.6); 
}
.c-hamburger-menu {
  position: relative;
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #000; 
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; 
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}
.c-hamburger-menu__button-mark {
  background-color: #000; 
  display: block;
  height: 1px; 
  width: 20px; 
}

.h2-wrapper{
	position: relative;
}
.h2-jp{
	font-size:clamp(1.406rem, 1.19rem + 1.08vw, 2rem);
}
.h2-eng{
	position: absolute;
	top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
	opacity: 0.1;
	
	font-weight: bold;
	letter-spacing: 0.15rem;
	font-size:clamp(2.813rem, 2.244rem + 2.84vw, 4.375rem);
}

.content-header{
	width: 100%;
	margin-top: 80px;
	
}
.content-header-bg img{
	width:100%;
	max-width: 1920px;
	vertical-align: middle;
}







/*-----------------------------------------------
company
-------------------------------------------------*/
.h2-jp-company{
	margin-bottom: 50px;	
	font-size:clamp(1.406rem, 1.19rem + 1.08vw, 2rem);
}
.content-company{
	margin-top: 80px;
	padding: 100px 0;
	background-color: #fff;
}
.content-company-inner{
	max-width: 1050px;
	margin:0 auto;
	padding-left: 10px;
	padding-right: 10px;
}

.company-wrapper{
	max-width: 960px;
	margin: 0 auto 60px auto;
}

table.company-table{
	max-width: 1920px;
	width: 100%;
	margin: 80px auto;
	font-size: 15px;
	line-height: 1.5;
	
}


.company-table tr th{
	border-top: 1px solid #000572;
    border-bottom: 1px solid #000572;
	padding: 20px;
	text-align: left;
	width: 200px;
	font-weight: normal;
	vertical-align: middle;
}
.company-table tr td{
	border-top: 1px solid #BDBDBD;
    border-bottom: 1px solid #BDBDBD;
	padding: 20px;
	font-weight: normal;
	
}

/*-----------------------------------------------
footer
-------------------------------------------------*/
#footer{
	padding: 50px 0 10px 0;
	background-color: #cccccc;
}
#footer a{
	font-size: 14px;
	color: #000;
}
.footer-inner{
	max-width: 1050px;
	margin: 0 auto;
	padding: 0 20px;
}
.footer-link-wrap{
	display: flex;
	justify-content: center;
}
.footer-link{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 2rem;
}
.footer-link li{
	padding: 0 4rem;
	position: relative;
}
.footer-link li:nth-child(n+2)::before{
	content: "|";
	position: absolute;
	left: -0.15rem;
	color: #000;
}

.footer-adobe{
	display: flex;
	max-width: 1050px;
	justify-content: center;
	align-items: center;
	color: #000;
	margin:  40px auto;
}
.footer-adobe-text{
	margin-left: 30px;
}

.footer-adobe-text h3{
	font-size: 14px;
	font-weight: bold;
}

.footer-adobe-text p{
	font-size: 12px;
}

.footer-adobe img{
	width: 100%;
}

.copy-right p{
	font-size: 12px;
	text-align: center;
}







/*-----------------------------------------------
SP_767
-------------------------------------------------*/
@media screen and (max-width: 767px){
	
	h2{
		margin-bottom: 50px;
	}
	.c-header__list-item{
		height: 200px;
	}


/*-----------------------------------------------
hamburger-menu_SP
-------------------------------------------------*/
	.c-hamburger-menu__button {
    	align-items: center;
    	appearance: none;
    	background-color: transparent;
    	border: none;
    	cursor: pointer;
    	display: flex;
    	flex-direction: column;
    	gap: 5px; /* カスタマイズしてください */
    	height: 32px; /* カスタマイズしてください */
    	justify-content: center;
    	width: 32px; /* カスタマイズしてください */
	}
	.c-hamburger-menu__list {
    	background-color: #fffffff7; /* カスタマイズしてください */
    	display: flex;
    	flex-direction: column;
    	left: 0;
    	padding: 2rem; /* カスタマイズしてください */
    	position: absolute;
    	transform: translateX(-100%);
    	top: 100%;
    	width: 100%;
		height: 500px;
	}

	#hamburger:checked ~ .c-hamburger-menu__list {
    	transform: translateX(0%);
    	transition: 0.3s;
		align-items:center;
	}
	
	#hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    	transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
    	transform-origin: 0%; /* カスタマイズしてください */
	}
	#hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    	opacity: 0;
	}
	#hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    	transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    	transform-origin: 0%; /* カスタマイズしてください */
	}	  	
	.c-header__list-link{
	margin-right: 0;
	}	

/*-----------------------------------------------
company_SP
-------------------------------------------------*/
	table.company-table{
		font-size: 14px;
	}
}

/*-----------------------------------------------
SP_428
-------------------------------------------------*/
@media screen and (max-width: 428px){
	.c-header{
		padding: 1.5rem 1rem;
	}

	svg{
		width: 70%;
	}
	.footer-link li{
	font-size: 12px;
	padding: 0.5rem 2rem;
		text-align: center;
	}
	.footer-link li:nth-child(n+2)::before{
	display: none;
	}
	.footer-adobe{
		flex-direction: column;
	}
	.footer-link{
		flex-direction: column;
	}
}