@charset "utf-8";

/* 全体のリセット */
/* CSS Document */
* {
	font-family: "Noto Sans JP", sans-serif;
	color: #242424;
	margin: 0;
	padding: 0;
	line-height: 1.5;
	font-feature-settings: "palt";
}

body,h1,h2,p,ul,li {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

html {
	scroll-behavior: smooth;
}

/* ========== レイアウト・共通クラス ========== */
/* font-color */
.yellow {
	color: yellow;
}

/* bold */
.f-bold {
	font-weight: bold;
}
.pt4 {
padding-top: 4%;
}
.pb4 {
padding-bottom: 4%;
}
/* display */
@media screen and (min-width:768px) {
	.sp {
		display: none;
	}

	.pc {
		display: block;
	}
}

@media screen and (max-width:767px) {
	.sp {
		display: block;
	}

	.pc {
		display: none;
	}
}

/* ========== メイン ========== */
/* ヘッダー */
.header {
	width: 100%;
	background: #ffffff;
	border-bottom: 1px solid #cccccc;
}

.header-in{
  width:90%;
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:flex-start; 
  gap:20px;
  padding:1% 0;
}

.logo{
  margin:0;
}

.header-text{
  font-size:14px;
}

@media (max-width: 767px) {
	.logo {
		width: 100%;
		max-width: 210px;
	}
	.header-in{
  width:95%;
}

.header-text{
  font-size:2.8vw;
}
}

/* ファーストビュー */
.fv {
	width: 100%;
	background: url(../images/fv-bg.jpg) no-repeat center top;
	background-size: cover;
}

.fv-in {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
}

.cv-icon {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -20px;
	width: 470px;
	z-index: 5;
	pointer-events: none;
}

.cv-icon img {
	width: 100%;
	display: block;
}

@media (max-width: 767px) {
	.form-section.with-offset {
		padding-top: 28px;
	}

	.cv-icon {
		width: 75%;
		bottom: -20px;
		transform: translateX(-50%);
	}
}

/* フォーム */
.form-section {
	width: 100%;
	padding: 0 0 2% 0;
	letter-spacing: 0.05em;
	background-color: #ffffff;
}

.form-section .form-top-bg {
	width: 100%;
	background: url(../images/cv-ct-bg.jpg) no-repeat center center;
	background-color: #203865;
	background-size: cover;
	padding: 2% 0;
}

.form-section .form-top-bg h2 {
	max-width: 960px;
	margin: 0 auto;
}

.form-section .form-top-bg .pc {
	max-width: 684px;
	margin: 0 auto;
}

.form-section .form-top-arrow {
	max-width: 112px;
	margin: 0 auto;
}

.form-section .form-in {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.mail-form {
	margin: 0 auto;
}

.cv-main-row {
	display: flex;
	align-items: stretch;
	/* 縦方向中央に揃える */
	gap: 15px;
	/* 各要素の間隔 */
	justify-content: center;
	margin: 20px auto;
}

.cv-main-row input[type="email"] {
	width: 300px;
	height: 60px;
	padding: 0 15px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-sizing: border-box;
}

.cv-left {
	flex: 2;
	max-width: 514px;
	text-align: left;
}

.cv-input-row {
	margin-bottom: 15px;
}

.cv-input-row input[type="email"] {
	width: 100%;
	height: 82px;
	border-radius: 10px;
	padding: 0 15px;
	border: solid 2px #e4e4e4;
	font-size: 16px;
	box-sizing: border-box;
}

.consent {
	margin-top: 10px;
}

.consent label {
	display: block;
	font-size: 14px;
	margin-bottom: 6px;
}

.cv-smallt {
	font-size: 12px;
	color: #555;
}

.cv-right {
	flex: 1;
	max-width: 400px;
	text-align: left;
}

.cv-btn {
	margin-bottom: 20px;
}

.cv-btn img {
	width: 100%;
	height: auto;
	max-width: 400px;
}

.otoiawase img {
	width: 100%;
	height: auto;
	max-width: 400px;
}

.cv-arrow {
	flex: 0 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	max-width: 80px;
	padding-top: 20px;
}

.cv-arrow img {
	height: 40px;
	width: auto;
	display: block;
}

.cv-btn input[type="image"] {
	height: 99px;
	width: auto;
	display: block;
	cursor: pointer;
	animation: anime1 0.5s ease 0s infinite alternate;
	transform-origin: center;
}

@keyframes anime1 {
	from {
		transform: scale(0.9, 0.9);
	}

	to {
		transform: scale(1, 1);
	}
}

@media (max-width: 767px) {
	.form-section .form-top-bg {
		padding: 0;
	}

	.form-section h2 {
		font-size: 4.9vw;
		margin-bottom: 10px;
	}

	.form-section .form-top-arrow {
		max-width: 60px;
	}

	.cv-main-row {
		width: 90%;
		flex-direction: column;
		gap: 15px;
	}

	.cv-left,
	.cv-right {
		max-width: 100%;
	}

	.cv-input-row input[type="email"] {
		max-width: 100%;
		height: 70px;
	}

	.cv-btn input[type="image"] {
		max-width: 100%;
		height: auto;
	}

	.cv-btn img {
		max-width: 100%;
	}

	.consent label {
		font-size: 13px;
	}

	.otoiawase {
		margin-top: 10px;
	}

	.otoiawase img {
		width: 100%;
		max-width: 100%;
	}

	.cv-main-row {
		flex-direction: column;
		gap: 20px;
	}

	.cv-arrow {
		display: none;
	}
}

.block1_bg,
.block4_bg{
	position:relative;
}

.block1_bg .cv-icon,
.block4_bg .cv-icon{
	position:absolute;
	left:50%;
	top:100%;
	bottom:auto;
	transform:translate(-50%, -70%) !important;
	width:470px;
	z-index:5;
	pointer-events:none;
}

@media (max-width: 767px) {

	.block1_inner .cv-icon,
	.block4_inner .cv-icon {
		width:75%;
	top:100%;
	transform:translate(-50%, -70%);
	}
}

/* ブロック1 */
.block1_bg {
	width: 100%;
	background: url(../images/block1-bg.png) no-repeat top center;
	background-color: #fcf6e5;
	padding: 0 0 5%;
}

.block1_inner {
	max-width: 960px;
	margin: 0 auto;
}

.block1_yajirushi {
	margin: 0 auto;
	max-width: 663px;
	margin: 0 auto;
	padding: 3% 0 8% 0;
}

.block1_tokuten {
	max-width: 713px;
	margin: 0 auto;
	padding: 4% 0 1% 0;
}

@media (max-width: 767px) {
	.block1_bg {
		background: url(../images/sp/block1-bg-sp.png) no-repeat center top;
		background-size: contain;
		background-color: #fcf6e5;
		padding: 0 0 13%;
	}
		.block1_inner {
		padding: 0 2%;
	}
}

/* ブロック2 */
.block2_bg {
	width: 100%;
	background: #e8f5ff;
	background-size: contain;
	padding: 0 0 5%;
}

.block2_inner {
	max-width: 960px;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.block2_inner {
		padding: 0 2%;
	}
}

/* ブロック3 */
.block3_bg{
	width:100%;
	background:url(../images/jiseki_bg.jpg) no-repeat top center;
	background-size:cover;
	padding:5% 0;
}

.block3_inner{
	max-width:960px;
	width:90%;
	margin:0 auto;
	text-align:center;
}

/* 上下画像 */
.block3_head{
	margin:3% auto;
}
.block3_foot{
	margin:7% auto 0;
}

/* 実績iframe */
.jiseki{
	width:100%;
	max-width:900px;
	height:500px;
	margin:3% auto;
	overflow:auto;
	-webkit-overflow-scrolling: touch;
	box-shadow:0 5px 20px rgba(0,0,0,.08);
	border:2px solid #d4af37;
}

.jiseki iframe{
	width:100%;
	height:100%;
	border:none;
	display:block;
	pointer-events:auto;
	touch-action: pan-y;
}

@media (max-width: 767px) {
	
.block3_bg{
	padding:8% 0;
}

.jiseki{
	height:420px;
}
}
/* ブロック4 */
.block4_bg{
	width:100%;
	background:url(../images/support_bg.jpg) no-repeat center center;
	background-size:cover;
	aspect-ratio:1920 / 696;
	position:relative;
}

.block4_inner{
	position:relative;
	max-width:960px;
	width:90%;
	height:100%;
	margin:0 auto;
}

.block4_txt{
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
	width:70%;
	height:auto;
	display:block;
}

/* ===== SP ===== */
@media screen and (max-width:767px){

.block4_bg{
	background:url(../images/sp/support_bg_sp.jpg) no-repeat center center;
	background-size:cover;
	aspect-ratio:960 / 804;
}

.block4_txt{
	content:url(../images/sp/sup_txt_sp.png);
	width:80%;
	top:50%;
	transform:translateY(-50%);
}

}
/* フッター */
.footer {
	width: 100%;
	margin: auto;
	letter-spacing: 0.05em;
	background-color: #e8f5ff;
}

dl.info {
	padding: 3% 0;
	font-size: 14px;
	text-align: left;
	width: 75%;
	margin: 0 auto;
	line-height: 1.8em;
}

dl.info dt,
dl.info dd {
	color: #1f3866;
	margin-bottom: 10px;
}

.footer ul .list-border {
	margin: 0 0.5em;
	opacity: 0.5;
	color: #ccc;
}

.footer ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer .munecopy-bg {
	background-color: #ffffff;
}

.footer .menu-list {
	padding: 2% 0 0 0;
	display: flex;
	margin: 0 auto;
}

.footer .menu-list a {
	color: #1f3866;
}

.copy_b {
	padding: 2%;
}

.copy {
	text-align: center;
	color: #1f3866;
	font-size: 15px;
}

@media screen and (max-width:767px) {
	.footer .munecopy-bg {
		padding: 5% 0;
	}

	dl.info {
		padding: 4% 0;
		font-size: 13px;
		width: 90%;
	}

	.footer ul li {
		font-size: 13px;
	}

	.copy {
		font-size: 12px;
	}
}