/* CSS Document */
/* layout */
/*=================================
	Initialization of style
===================================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

 .fade-in{
	opacity: 0;
	animation: fadeIn 0.5s forwards 0.5s; /* 1秒後にフェードイン */
  }

  .fade-in2{
	opacity: 0;
	animation: fadeIn 0.5s forwards 1.5s; /* 1秒後にフェードイン */
  }

 .slide-in-left {
	opacity: 0;
	transform: translateX(-100%);
	animation: slideInLeft 0.5s forwards 1.5s; /* フェードイン後に左からスライドイン */
  }
  
  .slide-in-right {
	opacity: 0;
	transform: translateX(100%);
	animation: slideInRight 0.5s forwards 1.5s; /* フェードイン後に右からスライドイン */
  }
  
  @keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
  }
  
  @keyframes slideInLeft {
	from {
	  opacity: 0;
	  transform: translateX(-100%);
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
  }
  
  @keyframes slideInRight {
	from {
	  opacity: 0;
	  transform: translateX(100%);
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
  }

  .fade-up {
	opacity: 0;
	animation-name: fadeinup;
	animation-duration: 1.6s;
	animation-delay: .4s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
  }
  @keyframes fadeinup {
	0% {
	  opacity: 0;
	  transform: translateY(20px);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }

  @keyframes fadeLeftToRight {
	0% {
	  opacity: 0;
	  clip-path: inset(0 100% 0 0); /* 全部隠す（左から） */
	}
	100% {
	  opacity: 1;
	  clip-path: inset(0 0 0 0); /* 全表示 */
	}
  }
  
  .animate__fadeLeftToRight {
	animation-name: fadeLeftToRight;
	animation-duration: 1.5s;
	animation-delay: 0.5s;
	animation-fill-mode: both;
  }

  @keyframes zoomBlurFadeUp {
	0% {
	  opacity: 0;
	  transform: scale(0.95) translateY(0);
	  filter: blur(4px);
	}
	100% {
	  opacity: 1;
	  transform: scale(1) translateY(0);
	  filter: blur(0);
	}
  }
  
  .animate__zoomBlurFadeUp {
	animation-name: zoomBlurFadeUp;
	animation-duration: 4.0s;
	animation-delay: 1.5s;
	animation-fill-mode: both;
	animation-timing-function: ease-out;
  }

body {
	margin: 0;
	padding: 0;
	color:#333;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size:16px;
	line-height:150%;
	width:100%;
}

div,h1,h2,h3,h4,h5,h6,p,dl,dt,dd,ul,ol,li,form {
	margin: 0;
	padding: 0;
}

img, a img {
	border:none;
	vertical-align:bottom;
	width: 100%;
}

/* List_group */
ul,ol,li {list-style:none;}

/* inline-style */

a,
a:link,
a:visited {text-decoration:none; color:black;}
a:hover,
a:active {text-decoration:underline; color:black;}

small {font-size:14px;color: #221f15;}

/* table */
table {
  width:100%;
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
}


/* blockgroup */

.bold{
	font-weight: bold;
}

.small{
	font-size: 80%;
}

.big{
	font-size: 120%;
}
.clear {
	clear:both;
	visibility:hidden;
}

.right{
	text-align: right;
}

.center{
	text-align: center;
}

.errorMessage,
.attention{
	color: #ff211b;
}

.blue{
	color: #2466c2;
}

.ore{
	color: #ff6600;
}

.red{
	color:#FF0000;
}
.mt0{
	margin-top: 0px !important;
}
.mt10{
	margin-top: 10px;
}
.mt20{
	margin-top: 20px;
}
.mt40{
	margin-top: 40px;
}
.mb0{
	margin-bottom: 0px !important;
}
.mb5{
	margin-bottom: 5px;
}
.mb10{
	margin-bottom: 10px !important;
}
.mb15{
	margin-bottom: 15px;
}
.mb20{
	margin-bottom: 20px;
}
.mb30{
	margin-bottom: 30px;
}
.mb40{
	margin-bottom: 40px !important;
}
.mr10{
	margin-right: 10px;
}
.mr20{
	margin-right: 20px;
}
.ml10{
	margin-left: 10px;
}
.ml20{
	margin-left: 20px;
}
.pt0{
	padding-top: 0px !important;
}
.pt10{
	padding-top: 10px;
}
.pt20{
	padding-top: 20px;
}
.pb0{
	padding-bottom: 0px !important;
}
.pb10{
	padding-bottom: 10px;
}
.pb20{
	padding-bottom: 20px;
}
.pb30{
	padding-bottom: 30px;
}
.pr10{
	padding-right: 10px;
}
.pr20{
	padding-right: 20px;
}
.pl10{
	padding-left: 10px;
}
.pl20{
	padding-left: 20px !important;
}

/*=============================
	wow.js
===============================*/

.wow {
  visibility: hidden;
}

.box {
  animation-fill-mode: forwards;
}

.br-sp {
	display: none;
}

/*=============================
	Layout-Base
===============================*/
#wrap {
	max-width: 1280px;
	margin: 0px auto;
}

/* header
-------------------------*/
#header_wrap {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	overflow: hidden;
	box-sizing: border-box;
	background-color: transparent; /* 初期状態は透明 */
  	box-shadow: none; /* 初期状態では影なし */
}


/* CSSコード */
header {
    top: 0;
	height: 80px;
    width: 100%;
    max-width:1280px;
    z-index: 1000;
    position: fixed;
    background-color: transparent; /* 初期状態は透明 */
    box-shadow: none; /* 初期状態では影なし */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.8); /* スクロール時の背景を半透明に変更 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* スクロール時の影 */
}

.logo {
  float: left;
  width: 90px;
  position: fixed;
  left: calc(100vw / 2 - 600px);
  top: 30px;
}

/* ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: calc(100vw / 2 - 580px);
  top:40px;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 50px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

.drawer_open span{
	width: 35px;
	margin-left:0px;
}
.drawer_open span:before{
	width: 50px;
    margin-left: -15px;
}
.drawer_open span:after {
	width: 20px;
	margin-left:15px
}


/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 10px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 10px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
  margin-left:0px;
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
  margin: 0 0 0 auto;
  margin-left:0px;
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
  margin-left:0px;
  width:50px;
}
  
/* メニューのデザイン*/
.nav_content {
	width: 1000px;
	height: 100%;
	position: fixed;
	top: 0%;
	left: 100%; /* メニューを画面の外に飛ばす */
	z-index: 99;
	background: rgb(255, 255, 255);
	transition: .5s;
	text-align: left;
	font-weight: bold;
	line-height: 30px;
	padding: 20px;
	box-sizing: border-box;

	line-height: 30px;
	font-family: Montserrat;
	font-style: normal;
	font-weight: normal;
	font-size: 26px;
	overflow-y: scroll;
}

.extra-layer {
	position: absolute;
    top: -15px;
    bottom: -15px;
    left: -20px;
    right: -10px;
    background: transparent;
    z-index: -2;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
	left: 65%;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  width: 1000px;
  padding: 0;
  margin-top:100px;
  margin-left: 70px;
}

.nav_item {
	margin:25px 0;
  }

.nav_item a {
  color: #333;
  text-decoration: none;
}

.nav_item img{
	width: 300px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  bottom: 0;/* メニューを画面に入れる */
  
}

/* main_contents
-------------------------*/
article{
	width: 100%;
	padding: 150px;
	overflow: hidden;
	box-sizing: border-box;
}


/* content
-------------------------*/


/* footer
-------------------------*/
#footer_wrap{
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

footer{
	background: #EDF1FB;
	padding: 120px 120px 0;
	box-sizing: border-box;
	color:grey;
}

footer .text{
	float: left;
	margin-top:70px;
}

footer .text h6{
	font-family: 'Noto Sans Myanmar', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
	margin-bottom: 0px;
	letter-spacing: -3.0px;
}

footer .text p{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
	margin-bottom: 50px;
}

footer .text .oto{
	overflow: hidden;
	font-family: Futura;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
}

footer .text .oto_contact{
	border: 1px solid #333;
	background: #fff;
	border-radius: 10px;
	text-align: center;
	width: 280px;
	height:70px;
	margin-bottom:20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .text .oto_contact img{
	width:30px;
	height:30px;
	margin-bottom: 5px;
}

footer .text .oto_contact a{
	float : right;
	font-size:18px;
	margin-left:10px;
	color:grey;
	font-family: Futura;
	font-weight: 500;
}


footer .f_right{
	width:320px;
	float: right;
}

footer .f_right .f_menu{
	overflow: hidden;
	padding-bottom: 10px;
	margin-bottom: 10px;
	line-height: 30px;
	font-family: Futura;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
	border-bottom: 1px solid gray;
}

footer li{
	width:120px;
}

footer .f_menu2{
	margin-top:25px;
}

footer .f_menu a{
	color:gray !important;
	font-family: Futura;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
}

footer .f_menu2 a{
	color:gray !important;
	font-family: Futura;
	font-weight: 500;
    font-size: 15px;
}

footer .f_right .f_menu .left{
	float: left;
}

footer .f_right .f_fu{
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size:26px;
}

footer .f_right .f_sns{
	margin-top: 20px;
	margin-bottom: 45px;
}


footer .f_right .f_banar{
	border-bottom: 1px solid #333;
	display:grid
}

footer .f_right .f_sns-icon{
	width:33px;
	height:33px;
	margin-right:20px;
}

footer .f_right .f_banar img{
	width:250px;
	height:50px;
	margin-bottom:20px
}


footer .f_right p{
	clear: both;
}
.copy{
	text-align: center;
	padding: 20px 0;
	clear: both;
	font-family: Futura;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
}

.br-sp {
	display: none;
}

a.backBtn {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 240px;
    height: 65px;
	padding: 20px 20px;
	text-align: center;
	font-family: Futura;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	color: rgba(33, 33, 33, 1);
	letter-spacing: 0.69px;
	border: 2px solid rgba(33, 33, 33, 1);
	border-radius: 100vh;
	transition: 0.5s;
}
a.backBtn:hover {
	color: #fff;
	background: gray;
}

.backBtnArea{
	margin-top: 10px;
	display: flex;
	justify-content: center;
	padding-bottom: 100px;
}


/* pagetop
-------------------------*/
.backtotop {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9000;
    display: none;
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
	/* 959px以下に適用されるCSS（タブレット用） */

}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
	/* 959px以下に適用されるCSS（タブレット用） */

	.logo {
		left: calc(100vw / 2 - 400px);
	}

	.drawer_open {
		right: calc(100vw / 2 - 340px);
	}

	footer {
		padding: 120px 50px 0;
	}

	footer .text{
		margin-top:0px;
	}

	.nav_content {
		font-size:24px;
	}

	.nav_list {
		margin-top: 40px;
		margin-left: 20px;
	}

	.nav_item {
		margin: 20px 0;
	}
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
	/* 767px以下に適用されるCSS（スマホ横用） */

	.logo {
		left: calc(100vw / 2 - 300px);
	}

	.drawer_open {
		right: calc(100vw / 2 - 280px);
	}

	footer {
		padding: 120px 30px 0;
	}

	footer .text{
		margin-top:0px;
	}

	footer .text h6 {
		font-size: 28px;
	}

	footer .text p {
		font-size: 12px;
	}

	footer .text .oto_contact{
		width:200px;
		height:70px;
	}

	footer .text .oto_contact a{
		font-size:14px;
	}

	.nav_content {
		font-size:20px;
	}

	.nav_list {
		margin-top: 30px;
		margin-left: 20px;
	}

	.nav_item {
		margin: 20px 0;
	}
	
}
@media (max-width: 480px){

	header {
		height:60px;
	}

	.logo {
		width: 61px;
		left: 20px;
		top: 20px;
	}

	/* ハンバーガーアイコンの設置スペース */
	.drawer_open {
		display: flex;
		justify-content: center;
		align-items: center;
		position: fixed;
		top:30px;
		right: 15%;
		z-index: 100;/* 重なり順を一番上にする */
		cursor: pointer;
	}



	#drawer_input:checked ~ .nav_content {
		left: 0%;
	}

	/* メニューのデザイン*/
	.nav_content {
		line-height: 42px;
		font-family: Montserrat;
		font-style: normal;
		font-weight: 500;
		font-size: 28px;
	}

	/* メニュー黒ポチを消す */
	.nav_list {
		margin-top:10px;
		margin-left: 50px;
	}

	.nav_item img{
		width: 240px;
	}


	article{
		width: 100%;
		margin: 0px auto 0;
		padding: 70px 30px;
		box-sizing: border-box;
	}

	.btn{
		border-radius: 30px;
		background: #333;
		color: #fff;
		text-align: center;
		width: 200px;
		margin: 70px auto 0;
		clear: both;
	}
	.btn a{
		color: #fff !important;
		padding: 15px;
		box-sizing: border-box;
		display: block;
	}
	
	h3{
		font-size: 60px;
		font-weight: bold;
		margin-bottom: 30px;
		text-align: center;
	}
	
	footer{
		background: #EDF1FB;
		padding: 60px 0px 0;
		box-sizing: border-box;
	}
	
	footer .text{
		float: none;
		margin-top: 0px;
	}
	
	footer .text h6{
		font-weight: bold;
		font-size: 32px;
		margin-bottom: 5px;
		text-align: center;
	}
	
	footer .text p{
		text-align:center;
		font-size: 12px;
		font-weight: bold;
		margin-bottom: 25px;
	}
	
	footer .text .oto{
		overflow: hidden;
		font-size: 10px;
		justify-content: center;
        display: grid;
	}
	
	footer .text .oto div{
		float: left;
		text-align: center;
	}

	footer .text .oto_contact{
		width:240px;
		height:70px;
	}

	footer .text .oto_contact a{
		font-size:16px;
	}


	footer .text .oto div:nth-child(2){
		margin-right: 0%;
	}
	 footer .text .oto div a{
		 padding: 12px 10px;
		 display: block;
	}

	footer .f_right{
		float: none;
		margin-top: 50px;
		width:100%;
	}

	footer .f_right .f_fu{
		display: block;
    	text-align: center;
		font-size: 20px;
	}

	footer .f_right .f_sns{
		display: block;
    	text-align: center;
	}

	footer .f_right .f_sns-icon {
		width: 40px;
		height: 40px;
		margin: 10px;
	}
	
	footer .f_right .f_menu{
		font-size: 14px;
		margin: 50px 25px 0;
	}

	footer .f_menu a{
		font-family: Futura;
		font-size: 15px;
		font-weight: 500;
	}

	footer .f_menu .mr20{
		margin-right: 30px;
	}
	
	footer .f_menu2{
		font-size: 14px;
		margin: 5px 25px 0;
	}

	footer .f_menu2 a{
		font-family: Futura;
		font-size: 15px;
		font-weight: 500;
	}
	
	footer .f_right .f_menu .left{
		float: left;
	}

	footer .f_right .f_banar{
		margin: 0px 25px 0;
	}
	
	.f_logo{
		width: 180px;
		margin-top: 100px;
		margin-bottom: 20px;
	}

	.copy{
		text-align: center;
		padding: 20px 0;
		clear: both;
		margin-top:50px;
	}
	img, a img {
		border: none;
		vertical-align: middle;
		width: 100%;
	}
	.sp_none{
		display: none;
	}
	
	.br-sp {
		display: inline;
	  }
	
	  .br-sp::after {
		content: "\A";  /* 改行 */
		white-space: pre;
	  }

	.br-pc {
		display: none;
	}

	.sp_white{
		padding-top:25px;
		padding-bottom: 5px;
		background: white;
	}
}

@media (min-width: 480px){
	.pc_none{
		display: none;
	}
}
