@charset "UTF-8";
/* CSS Document */
*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */

  box-sizing: inherit;
}

html {
  box-sizing: border-box;
/*	ress copy  */
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
	background-repeat: no-repeat;
	font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
	scroll-behavior: smooth;
}

body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.9rem;
/*	text-align: center;*/
	background-color: #FFFFFF;
}
@media(max-width:768px){
	body {
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
}
a {
	color: #333333;
	text-decoration: none;
}

a:hover {
  opacity: 0.5;
}

ul, ol {
	list-style: none;
}
img {
	max-width: 100%;
	height: auto;
}
h2 {
	font-family:  "游明朝体" ,  "游明朝" , YuMincho ,  "ヒラギノ明朝 Pro" ,  "ヒラギノ明朝 Pro" ,  "MS P明朝" ,  "MS P明朝" , serif;	
}
/*	コンテンツ幅　*/
	
.inner {
	margin: 0 auto;
	width: min(81.2%,1110px);
}
@media(max-width:768px){
	.sp-inner {
		margin: 0 auto;
		width: max(88.5%,300px);
	}
}
	
/*  CVボタン　　*/
	
.cv__btn_big {
	display: block;
	margin: 0 auto 80px;
	height: 80px;
  max-width: 450px;
  border-radius: 50px;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
  padding: 5px 20px;
  text-align: center;
	line-height: 70px;
	font-size: 28px;
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	position: relative;
}
.cv__btn.cv__btn-gradient {
  background: linear-gradient(90deg, rgba(250,169,74,80%) 20%, rgba(250,247,190,1) 40%, rgba(250,248,170,1) 50%, rgba(255,247,223,1) 60%, rgba(250,169,74,80%) 90% );
  background-size: 200% 100%;
  border: none;
}
.cv__btn:hover {
  background-position: 100% 0;
}
.cv__btn::after {
	content: '';
	background-image: url(../images/icon_arrow-thin.svg);
	display: block;
	width: 13px;
	height: 25px;
	background-size: cover;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}
	
.cv__btn:hover::after {
	opacity: 0.5;
}
.cv__btn a {
	display: block;
	width: 100%;
	height: 100%;
}
@media(max-width:768px){
	.cv__btn_big {
		margin: 0 auto 40px;
		height: 60px;
		max-width: 260px;
		line-height: 50px;
		font-size: 20px;
	}
	.cv__btn::after {
			display: none;
	}
}
	
/* h2 共通見出し　英語/日本語ver.　*/
	
.h2-title {
	text-align: center;	
}	
.english-title {
	position: relative;
	margin-bottom: 50px;
	font-size: 3.8rem;
	font-family: "游明朝体" ,  "游明朝" , YuMincho ,  "ヒラギノ明朝 Pro" ,  "ヒラギノ明朝 Pro" ,  "MS P明朝" ,  "MS P明朝" , serif;
}
.english-title::after {    /*見出し区切り線*/
	background-color: #333333; 
  border-radius: 5px; 
  content: "";
  height: 1px; 
  left: 50%; 
  position: absolute;
	bottom: -28px;  
  transform: translateX(-50%); 
  width: 80px; 
}
.h2-title h2 {
	font-size: 2.8rem;
	font-weight: normal;
	margin-bottom:60px ;
}                         
@media(max-width:768px){
		.english-title {
			margin-bottom: 20px;
			font-size: 2.2rem;
	}
		.english-title::after {    /*見出し区切り線*/		
			border-radius: 5px; 
			left: 50%; 
			bottom: -13px;  
			transform: translateX(-50%); 
			width: 50px; 
	}
		.h2-title h2 {
			font-size: 1.8rem;
			margin-bottom:40px ;
	}                         
}

/*　ヘッダー　*/

.header {
	position: sticky;
	z-index: 9999;
	top: 0;
	height: 110px;
	margin:0 auto;
	background-color: #FFFFFF;
}
.header__top  {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: min(94%,1366px);
	margin: 5px auto;
}
.header__logo {
	width: 200px;
	height: 70px;
	padding-top: 7px;
}
 
/*ヘッダーボタン*/

.header__btn {
	display: inline-block;
	position: relative;
	width: 240px;
	height: 40px;
  padding: 5px 20px 5px 10px;
  border-radius: 50px;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
  text-align: center;
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.header__btn.header__btn-gradient {
  background: linear-gradient(90deg, rgba(250,169,74,80%) 20%, rgba(250,247,190,1) 40%, rgba(250,248,170,1) 50%, rgba(255,247,223,1) 60%, rgba(250,169,74,80%) 90% );
  background-size: 200% 100%;
  border: none;
	margin-top: 10px;
}
.header__btn:hover {
  background-position: 100% 0;
}
.header__btn::after {
	content: '';
	background-image: url("../images/icon_arrow.svg");
	display: block;
	position: absolute;
	right: 12px;
  top: 19px;
  width: 8px;    
	height: 15px;  
	background-size: cover;
	transform: translateY(-50%);
}
.header__btn:hover::after {
	opacity: 0.5;
}
.header__btn a {
	display: block;
	width: 100%;
	height: 100%;
}
	 input#drpdwn {
		display: none;
	}

/* ヘッダー下段*/
.header__nav {
	width: min(94%,1110px);
	margin-bottom: 5px;
	margin: 0 auto;
}
.header__nav ul {
	display: flex;
	align-items: center;
	font-size: 1.6rem;
}
.header__nav ul li {
	flex-grow: 1;
  text-align: center;
	border-left: 1px solid #CECECE;
}
.header__nav ul li:last-child {
	border-right: 1px solid #CECECE;
}

@media(min-width:769px){
	.mainnav {
		display: none;
	}
}
@media(max-width:768px){
	.header {
		height: 60px;
	}
	.header__logo {
		width: 160px;
		height: 50px;
	}	
	.header__btn {
		display: inline-block;
		width: 100px;
		margin-right: 50px;
		border-radius: 50px;
		padding: 8px 15px;
	}
	.header__btn span {
		display: none;
	}
	.header__btn::after {
		display: none;
	}

/*ハンバーガーボタン*/

	.header__nav {
		display: none;
	}
	
/*ナビのスタイル*/
	

	nav.mainnav{
	position: fixed;
	z-index: 12;
	top: 0;
	right: 0;
	background: rgb(9,25,40,0.8);
	text-align: center;
	width: 100%;
	height: 100%;
	display: none;
	}

	nav.mainnav ul{
	width: 100%;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	}

	nav.mainnav ul li{
	font-size: 24px;
	list-style-type: none;
	width: 100%;
	padding-bottom: 0px;
	}

	nav.mainnav ul li:last-child{
	padding-bottom: 0;
	}

	nav.mainnav ul li a{
	display: block;
	color: #fff;
	padding: 15px 0;
	font-weight: bold;
	font-size: 18px;
	}

	.navbtn {
	position: absolute;
	right:5px;
	top: 9px;
	width: 45px;
	height: 45px;
	cursor: pointer;
	z-index: 13;
	display: block;
	}

	.navbtn span {
	display: block;
	position: absolute;
	width: 30px;
	border-bottom: solid 4px #C1C1C1;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
	left: 6px;
	}

	.navbtn span:nth-child(1) {
	top: 9px;
	}

	.navbtn span:nth-child(2) {
	top: 20px;
	}

	.navbtn span:nth-child(3) {
	top: 31px;
	}

	.navbtn.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
	border-bottom: solid 3px #C1C1C1;
	}
	
	.navbtn.active span:nth-child(2),
	.navbtn.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	border-bottom: solid 3px #C1C1C1;
	}

}




/*　　フッター　　*/

.footer {
	padding-top: 60px;
	padding-bottom: 30px;
	background: linear-gradient(128deg, rgba(211,223,255,1) 6%, rgba(216,227,255,1) 16%, rgba(255,255,250,1) 28%, rgba(251,243,223,1) 39%, rgba(245,228,189,1) 52%, rgba(248,214,158,1) 69%, rgba(244,177,131,1) 93%);
	position: relative;
}
.footer__logo {
	width: 200px;
	height: 60px;
	margin: 0 auto 60px;
}
.footer__nav {
	width: min(94%,1110px);
	margin: 0 auto 70px;
}
.footer__nav ul {
	display: flex;
	align-items: center;
	font-size: 1.6rem;
}
.footer__nav ul li {
	flex-grow: 1;
  text-align: center;
	border-left: 1px solid #b1b1b1;
}
.footer__nav ul li:last-child {
	border-right: 1px solid #b1b1b1;
}
.footer__btn {
	position: relative;
	margin: 0 auto 50px;
	max-width: 240px;
	height: 40px;
  padding: 5px 20px 5px 10px;
  border-radius: 50px;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
  text-align: center;
	line-height: 30px;
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.footer__btn.footer__btn-gradient {
  background: linear-gradient(90deg, rgba(250,169,74,80%) 20%, rgba(250,247,190,1) 40%, rgba(250,248,170,1) 50%, rgba(255,247,223,1) 60%, rgba(250,169,74,1) 80% );
  background-size: 200% 100%;
  border: none;
}
.footer__btn::after {
	content: url("../images/icon_arrow.svg");
	position: absolute;
  right: 12px;
  top: 5px;		
}
.footer__btn:hover {
  background-position: 100% 0;
}
.footer__btn:hover::after {
	opacity: 0.5;
}
.footer__btn a {
	display: block;
	width: 100%;
	height: 100%;
}
.footer__qr img {
	display: block;
	position: absolute;
	right: 16%;
	bottom: 80px;
}
.copy-light {
	text-align: center;
	font-size: 12px;
}

@media(max-width:768px) {	
	.footer {
		padding-top: 40px;
		padding-bottom: 25px;
	}
	.footer__logo {
		width: 160px;
		height: 50px;
		margin: 0 auto 20px;
	}
	.footer__nav {
	 	margin: 0 auto 30px;
	}
	
	.footer__nav ul {
		flex-direction: column;
	}
	.footer__nav ul li { 
		position: relative;
		margin-bottom: 20px;
		border-left: 0;
  }
	.footer__nav ul li::after {    /*見出し区切り線*/
		background-color: #b1b1b1; 
		border-radius: 5px; 
		content: "";
		height: 1px; 
		left: 50%; 
		position: absolute;
		bottom: -6px;  
		transform: translateX(-50%); 
		width: 40px; 
	}
.footer__nav ul li:last-child {
	border-right: 0;
}

	.footer__btn {
		margin-bottom: 20px;
		max-width: 220px;
	}
	.footer__qr img {
		display: none;
	}
}


