@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
	font-family: "Yu Gothic Medium", "游ゴシック Medium", Yu Gothic, "游ゴシック体", "ヒラノギ角ゴ Pro W3", sans-serif;
	line-height: 1.7; 
	color: #432;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
}

.wrapper {
	max-width: 1100px; 
	margin: 0 auto;
	padding: 0;
}

.title {
	color: rgb(0,176,80);
	text-align: center;
	margin: 30px;
	margin-top: 70px;
}

#bg-line {
	height: 50px;
	background:white;
}

/*HEADER*/
.big-bg {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.logo{
	width: 130px;
	margin-top: 15px;
	padding-inline-end: 15px;
}

.main-nav {
	display: flex;
	font-size: 1.4rem;
	text-transform: uppercase;
	margin-top: 20px;
	list-style: none;
}

.main-nav li{
	margin-left: 36px
}

.main-nav1 {
	color: #fff;
}

.main-nav1:hover {
	color: rgb(225,238,193);
	border-bottom: solid 1.5px rgb(225,238,193);
}

.page-header {
	z-index: 1;
    background: rgb(0,176,80, 0.85);
    display: flex;
    justify-content: space-between;
	position: fixed;
	width: 100%;
	height: 75px;
    margin: 0 auto;
	padding: 0 4%;
}

.Toggle {
 display: none;	
}

/*Button*/

.Reponsive_Language_button {
	display: none;
}

.button {
	font-size: 1.2rem;
	background: #fff;
	color: rgb(0,176,80);
	border-radius: 5px;
	padding: 5px 10px;
}

.button:hover {
	background: rgb(225,238,193);
	color: rgb(0,176,80);
}


/* HOME---------------------------------------------------*/


.text{
	position: absolute;
	padding-left: 50px;
	top: 17%;
	font-size: 15px;
	text-shadow: 1px 2px 3px #000000;
  }
  
	.text h1 {
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.2;
	}

	.text span {
	font-size: 60px;
	}

#page_top{
	width: 50px;
	height: 50px;
	position: fixed;
	right: 0;
	bottom: 50px;
	background: rgb(0,176,80);
	opacity: 0.8;
	border-radius: 50%;
	margin-bottom: 20px;
  }

#page_top a{
	position: relative;
	display: block;
	width: 50px;
	height: 35px;
	text-decoration: none;
  }

#page_top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f102';
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -5px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
  }

.to-top {
	margin-right: 50px;
}

#news_jp, #news_en {
	background-image: url(../images/company/news_image.jpg);
	min-height: 40vh;
}


.about-content {
	text-align: center;
}

.address,
.mail {
	color: black;
}

.address {
	margin: 30px;
}

.mail {
	margin-top: 50px;
}

.mail a {
	font-size: 25px;
	color: black;
}

.mail a:hover {
	color: rgb(225,238,193);
}

.mail {
	display: flex;
	justify-content: center;
}

.mail_icon {
	margin: 5px 15px;
	color: rgb(0,176,80);
}

.fa-facebook:before {
    content: "\f09a";
}

.fa-facebook-messenger:before {
	content: "f39f";
}

.clear {
	display: flex;
	list-style: none;
	justify-content: center;
}

#social-icon a:hover i {
	color: rgb(225,238,193);
}

#social-icon a {
	display: block;
	padding: 0;
	color: rgb(0,176,80);
}

#social-icon i {
	width: 50px;
	height: 50px;
	margin: 10px 15px 10px 15px;
	line-height: 50px;
	text-align: center;
}

#social-icon i:before {
	padding :0px;
	line-height: 40px;
}




/*--about部分終わり--*/


/*---モバイル版--*/

@media ( max-width : 600px) {

	/* ----------------------------------------ナビゲーション始 */

	.page-header {
		height: 60px;
	}

	.Reponsive_Language_button {
		display: block;
		position: fixed;
		top: 15px;
		right: 13px;
	}

	.logo {
		margin-top: 10px;
		margin-left: 90%;
	}

	.title {
		margin: 20px 50px 50px 50px;
	}

	.text h1 {
		font-size: 30px;
	}

	.text span {
		font-size: 45px;
	}


	#page_top {
		margin: 0px;
		margin-bottom: 20px;
	}


	/*ナビメニューのスタイルを指定*/
.main-nav{
	display: none;
    position: fixed; /*表示位置を固定*/
    z-index: 2; /*重ね順を変更*/
    top: 0; /*表示位置を指定*/
    left: 0; /*表示位置を指定*/
    background: rgb(0,176,80, 0.85);/*背景を白にする*/
    color: #fff; /*文字色を黒にする*/
    text-align: center; /*テキストを中央揃え*/
    width: 100%; /*全幅表示*/
    transform: translateY(-100%); /*ナビを上に隠す*/
    transition: all 0.6s; /*アニメーションの時間を指定*/
    }
    
.main-nav ul{
    background: #ccc; /*背景をグレーにする*/
    width: 100%;
    margin: 0 auto;
    padding: 0;
    }
    
.main-nav ul li{
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #fff;
    }
    
.main-nav ul li:last-child{
    padding-bottom: 0;
    border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
    }
    
.main-nav ul li a{
    display: block; /*クリックできる領域を広げる*/
    color: #fff;
    padding: 1em 0;
    }

    /*トグルボタンが押されたときに付与するクラス*/
.main-nav.active{
	display: block;
	transform: translateY(0%);
	height: 420px;
	margin-top: 60px;
	}
	
.main-nav.active li {
	margin-top: 20px;
	margin-left: 0px;
}

    /*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
	z-index: 3;
	margin: 0px 5px;
}
 
.Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 3px #fff;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
    left: 6px;
}
 
.Toggle span:nth-child(1) {
    top: 9px;
}
 
.Toggle span:nth-child(2) {
    top: 18px;
}
 
.Toggle span:nth-child(3) {
    top: 27px;
}
 
/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* ----------------------------------------ナビゲーション終 */

	

	.mail_icon {
		margin: 5px 15px;
		color: rgb(0,176,80);
	}

	.about-content {
		text-align: center;
		padding: 5px;
	}

  }