 /*
Theme Name: 
Theme URI: NA
Author: T.Oka
Author URI: NA
Description: NA
Version: 1.0.0
*/
@charset "UTF-8";
html {
	margin: 0 !important;
	padding: 0 !important;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	padding: 0;
	background: #fff;
	position: relative;
}
main{
	display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 93vh;
}
ul {
	list-style: none;
 	margin-bottom: 0;
 	padding: 0 !important;
}
h1 {
	margin: 0;
	padding: 0;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	height: auto;
}
.heading {
	width: 100%;
	padding: 80px;
	padding-left: 15%;
	padding-right: 15%;
}
.heading h2 {
	text-align: left;
	font: normal normal bold 70px/88px Noto Serif JP;
	letter-spacing: 0px;
	color: #171C61;
	text-transform: uppercase;
	margin: 0;
}
.heading h3{
	text-align: left;
	font: normal normal normal 16px/48px Noto Sans JP;
	letter-spacing: 0px;
	color: #0F0F0F;
	margin: 0 0 40px 0;
	font-weight: 500;
}
.heading h4 {
	text-align: left;
	font: normal normal bold 20px/30px Jost;
	letter-spacing: 0px;
	color: #3F63F7;
	text-transform: uppercase;
	margin: 0 0 4px 0;
}
.heading h5 {
	text-align: left;
	font: normal normal bold 26px/39px Noto Serif JP;
	letter-spacing: 0px;
	color: #171C61;
	text-transform: uppercase;
	margin: 0 0 10px 0;
}
.heading p {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #0F0F0F;
	margin: 0;
}
a {
	display: inline-block;
}
a:hover {
	opacity: 0.8;
}
figure {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}
img {
	width: 100%;
	height: auto;
	display: block;
}
@media screen and (max-width: 1080px) {
	.sp {
		display: block;
	}
	.pc {
		display: none;
 	}
 	.heading {
		padding-top: 80px;
		padding-left: 5.33%;
		padding-right: 5.33%;
		text-align: center;
	}
	.heading h2 {
		font: normal normal bold 50px/63px Noto Serif JP;
	}
	.heading h3 {
		font-size: 14px;
	}
}
/* header */
header {
	width: 96.66%;
	position: fixed;	
  top: 1.667vw;
  left: 1.667vw;
	z-index: 4;
}
.header {
	display: flex;
	width: 100%;
	height: 60px;
	justify-content: space-between;
	align-items: center;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 0px 10px #00000029;
	border-radius: 30px;
}
a.logo {
	width: 130px;
	height: 40px;
	margin: 11px 0 10px 2.5vw;
}
ul.menu  {
	display: flex;
	line-height: 60px;
	height: 60px;
	margin: 0;
}
li.list_entry {
	width: fit-content;
	height: auto;
	line-height: 60px;
	margin: 0;
	align-items: center;
	display: flex;
}
.menu li a.header_text {
	text-align: left;
	font: normal normal bold 14px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #000000;
	text-decoration: none;
	margin-right: 2.5vw;
}
a.header_contact {
	width: 140px;
	height: auto;
	margin: 0 2.5vw 0 0;
}
@media screen and (max-width: 1080px) {
	header {
		width: 100%;
		height: auto;
		position: fixed;	
	  top: 0;
		left: 0;
		z-index: 999;
	}
	.header_sp {
		position: fixed;
		width: 100%;
		background: #fff;
		height: 50px;
		display: flex;
		justify-content: space-between;
		z-index: 999;
	}
	a.logo {
	width: 120px;
	height: 36px;
	margin: 7px 0 7px 2.667vw;
	}
	.drawer__button {
		position: relative;
		width: 50px;
		height: 50px;
		border: none;
		cursor: pointer;
		background: #3F63F7 0% 0% no-repeat padding-box;
	}
	.drawer__button > span {
		display: block;
		position: absolute;
		top: 40%;
		left: 50%;
		width: 25px;
		height: 2px;
		background: #fff;
		transform: translateX(-50%);
	}
	.drawer__button::after {
		display: block;
		content: "MENU";
		text-align: center;
		font: normal normal bold 10px/28px Noto Sans JP;
		letter-spacing: 0px;
		color: #FFFFFF;
		text-transform: uppercase;
		padding-top: 25px;
	}
	.drawer__button > span:first-child {
		transform: translate(-50%, calc(-50% - 0.5rem));
		transition: transform 0.3s ease;
	}
	.drawer__button > span:nth-child(2) {
		transform: translate(-50%, -50%);
		transition: opacity 0.3s ease;
	}
	.drawer__button > span:last-child {
		transform: translate(-50%, calc(-50% + 0.5rem));
		transition: transform 0.3s ease;
	}
	.drawer__button.active > span:first-child {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.drawer__button.active > span:nth-child(2) {
		opacity: 0;
	}
	.drawer__button.active > span:last-child {
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.drawer__nav {
		position: fixed;
		top: 50px;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		transition: opacity 0.3s ease;
		opacity: 0;
		visibility: hidden;
	}
	.drawer__nav.active {
		opacity: 1;
		visibility: visible;
	}
	.drawer__nav__inner {
		position: relative;
		width: 100%;
		height: 100%;
		background: #fff 0% 0% no-repeat padding-box;
		padding: 0;
		margin: -1px 0 0 auto;
		overflow: scroll;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		text-align: center;
	}
	.drawer__nav.active .drawer__nav__inner {
		transform: translateX(0);
	}
	.drawer__nav__menu {
		list-style: none;
		padding-left: 0;
		margin-top: 100px;
	}
	.drawer__nav__item {
		margin-bottom: 20px;
	}
	.drawer__nav__link {
		text-align: center;
		font: normal normal bold 18px/26px Noto Sans JP;
		letter-spacing: 0px;
		color: #0F0F0F;
		text-decoration: none;
		line-height: 36px;
	}
	a.header_contact {
		background: #004096 0% 0% no-repeat padding-box;
		border-radius: 25px;
		margin-right: 0;
		padding: 6px 12px;
		line-height: 36px;
	}
	a.header_now {
		margin-right: 0;
		padding: 6px 12px;
		line-height: 36px;
	}
	body.active {
		height: 100%;
		overflow: hidden;
	}
}

/* fv */
.fv {
	position: relative;
	background: #FAFAFA 0% 0% no-repeat padding-box;
	height: 68.917vw;
}
.fv_img1 {
	width: 67%;
	top: 16%;
	position: absolute;
	right: 0;
}
.fv_block {
	bottom: 11%;
	left: 11.6%;
	position: absolute;
}
.fv_h1 {
		font-family: 'Noto Serif JP';
		font-size: 5.167vw;
		font-weight: 700;
		line-height: 1.3;
		color: #0F0F0F;
		margin: 0 0 3.333vw 0;

}
.fv_text1 {
		font-family: 'Noto Serif JP';
		font-size: 1.333vw;
    color: #C0C9DB;
    margin: 0;
}
/* .fv img.fv_bg {
	height: 100vh;
}
.fv h1 {
	position: absolute;
	width: 65.75%;
	height: auto;
	top:30%;
	left: 15%;
	margin: 0;
} */
@media screen and (max-width: 1080px) {
	/* .fv h1 {
		left: 5.33%;
	} */
	.fv {
		height: 120vw;
	}
	.fv_img1 {
		width: 89%;
		top: 22%;
	}
	.fv_block {
		left: 7%;
	}
	.fv_h1 {
		font-size: 8.533vw;		
	}
	.fv_text1 {
		font-size: 4vw;
	}

}
/* about */
#about {
	background: #FFFFFF 0% 0% no-repeat padding-box;
}
.about_block {
	background: #FAFAFA 0% 0% no-repeat padding-box;
	mix-blend-mode: multiply;
	border-radius: 10px;
	padding: 20px;
	margin: 0 0 20px 0;
}
@media screen and (max-width: 1080px) {
}
/* message */
#message {
	background: #FAFAFA 0% 0% no-repeat padding-box;
}
.content_wrapper {
	display: flex;
	align-items: stretch;
	margin: 0 0 80px 0;
}
.content_img {
	width: 41.6%;
	height: auto;
  flex-direction: column;
}
.content_text {
	width: 53.5%;
	height: auto;
  flex-direction: column;
  display: flex;
  margin-left: 3.57%;
}
.content_text h4 {
	text-align: left;
	font: normal normal bold 24px/36px Noto Serif JP;
	letter-spacing: 0px;
	color: #171C61;	
	margin: 0 0 20px 0;
}
.content_text p {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #0F0F0F;
	margin: 0 0 20px 0;
}
.content_text a {
	width: 45%;
}
.swap .content_img{
	order: 2;
}
.swap .content_text {
	order: 1;
  margin-left: 0;
  margin-right: 3.57%;
}
@media screen and (max-width: 1080px) {
	.content_wrapper {
		display: block;
	}
	.content_img {
		width: 100%;
	}
	.content_text {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-top: 40px;
	}
	.content_text a {
		width: 63%;
		margin: 0 auto;
	}
}
/* what */
#what {
	background: #FFFFFF 0% 0% no-repeat padding-box;
}
/* service */
#service {
	background: #FAFAFA 0% 0% no-repeat padding-box;
}
.service_area {
	width: 100%;
	display: flex;
}

.service_block {
	width: 48%;
	margin-right: 3.8%;
}
.white_area {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	padding: 20px;
	border-radius: 0px 0px 10px 10px;
}
.service_block:last-child {
	margin-right: 0;
}
.service_block h4 {
	text-align: center;
	font: normal normal bold 24px/30px Noto Serif JP;
	letter-spacing: 0px;
	color: #171C61;
	margin: 0;
}
.service_block h5 {
	text-align: center;
	font-size: 12px;
	font-family: Jost;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0px;
	color: #C0C9DB;
	text-transform: uppercase;
	margin: 0;
}
.service_block p {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #0F0F0F;
	margin: 10px 0 0 0;
}
@media screen and (max-width: 1080px) {
	.service_area {
		display: block;
	}
	.service_block {
		width: 100%;
		margin: 0 0 40px 0;
	}
}

/* strengths */
#strengths {
	background: #FAFAFA 0% 0% no-repeat padding-box;
}
h4.strengths_h4 {
	text-align: left;
	font: normal normal normal 40px/30px Noto Serif JP;
	letter-spacing: 0px;
	color: #C0C9DB;
	text-transform: uppercase;
	margin: 0 0 4px 0;
}
h5.strengths_h5 {
	text-align: left;
	font: normal normal bold 26px/33px Noto Serif JP;
	letter-spacing: 0px;
	color: #171C61;
	margin: 0 0 10px 0;
}
@media screen and (max-width: 1080px) {
}
/* company */
#company {
	background: #FFFFFF 0% 0% no-repeat padding-box;
}
.company_block {
	padding: 0 0 20px 0;
	border-bottom: 1px solid #F2F2F2;
	margin: 0 0 20px 0;
}
.company_block h4 {
	text-align: left;
	font: normal normal bold 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #171C61;
	margin: 0 0 4px 0;
}
.company_block p {
	text-align: left;
	font: normal normal normal 16px/24px Noto Sans JP;
	letter-spacing: 0px;
	color: #0F0F0F;
	margin: 0;
}


/* contact */
#contact {
	background: #FAFAFA 0% 0% no-repeat padding-box;
}
.contact-items__wrap {
	margin-bottom: 24px;
}
.contact-items__title {
	text-align: left;
	font: normal normal bold 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #232220;
	margin-bottom: 10px;
}
.contact-items__title span {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #3F63F7;
	margin-left: 10px;
}
select.form-select {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 5px;
	width: 33%;
	height: 56px;
}
input.form-control {
	width: 100%;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 5px;
	height: 56px;
}
.btn_area {
	display: flex;
	justify-content: center;
}
.button_wrapper {
	width: 33.33%;
	margin: 0 auto;
}
.button_wrapper button {
	background: none;
	border: none;
	margin-top: 40px;
	padding-left: 0;
	padding-right: 0;
}
.validation-block {
	color: #fff;
}
textarea.form-control {
	height: 240px !important;
}

.has-error .validation-block {
	text-align: left;
	color: #D30001;
}
.consent_area {
	display: flex;
	justify-content: center;
}
.consent_area label {
	margin: 0 0 0 10px;
}
.consent_area label a {
	text-align: left;
	font: normal normal normal 16px/28px Noto Sans JP;
	letter-spacing: 0px;
	color: #171C61;
	text-decoration: none;
}
.consent_area {
	position: relative;
}
#consent-error {
  position: absolute;
  left: 50%;
  margin-top: 32px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
  color: #D30001;
  font-weight: normal;
  font-size: 16px;
}

.btn {
  font-size: 15px;
  font-weight: 400;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 8px 20px;
}
.btn01 .btn {
  background-color: #009E96;
  width: 120px;
  margin-left: 20px;
  margin-left: 15px;
  color: #fff;
}
.modal-dialog {
    max-width: 600px;
    margin: 150px auto 0;
    width: calc(100% - 40px);
}
.modal-body {
	text-align: center;
}
.modal-footer {
	display: flex;
	justify-content: center;
}
.btn.btn-md {
  padding: 8px 20px !important;
}
.btn.btn-lg {
  padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
  box-shadow: none !important;
  outline: none !important;
}
.btn-primary {
  background: #3958A7;
  color: #fff;
  border: 2px solid #3958A7;
}
.thanks_heading {
	padding: 25vh 4% 15vh 4%;
	text-align: center;
}
input[type="checkbox"] {
	width: 20px;
	height: 20px;
}
@media screen and (max-width: 1080px) {
	.button_wrapper {
		width: 89%;
	}
	input.form-control {
		width: 100%;
	}
	select.form-select {
		width: 100%;
	}
	textarea.form-control {
		width: 100%;
	}
}


/* footer */
#footer {
	background: #FAFAFA 0% 0% no-repeat padding-box;
	text-align: center;
	height: 100px;
	padding: 20px 0 40px;
}
#footer p {
	font: normal normal normal 14px/20px Noto Sans JP;
	letter-spacing: 0px;
	color: #0F0F0F;
	margin: 0;
}
.arrow_wrapper {
	width: 50px;
	height: 50px;
  position:fixed;
  right:10px;
  bottom:60px;
  cursor:pointer;
}
.cta {
	display: none;
} 
@media screen and (max-width: 960px) {
	#footer {
	}
	.cta {
		display: block;
		width: 100%;
	  position:fixed;
	  height: 50px;
	  bottom: 0;
		z-index: 3;
	}
	.cta a {
		width: 100%;
	  height: 50px;
	  text-decoration: none;
		background: #3F63F7 0% 0% no-repeat padding-box;
		text-align: center;
		font: normal normal bold 18px/18px Noto Sans JP;
		letter-spacing: 0px;
		color: #FFFFFF;
		line-height: 50px;
	}
}

.block0 {
	height: 100px;
}
h2.privacy {
	text-align: center;
	margin: 0 0 40px 0;
}