@charset "UTF-8";

body,
div,
p,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
caption,
tr,
td,
th,
address,
header,
footer,
nav,
main,
article,
section,
aside,
figure,
figcaption {
	margin: 0;
	padding: 0;
}

body,
div,
p,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
address,
header,
footer,
nav,
main,
article,
section,
aside,
figure,
figcaption {
	display: block;
}

body,
div,
p,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
caption,
tr,
td,
th,
address,
header,
footer,
nav,
main,
article,
section,
aside,
figure,
figcaption,
img,
span,
a {
	box-sizing: border-box;
}

ul,
ol {
	list-style-type: none;
}

img {
	border: none;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
}

a {
	zoom: 1;
	text-decoration: none;
	color: #333;
	transition: opacity 0.7s;
	display: block;
}

a:hover {
	opacity: 0.8;
}

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

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}
input[type="text"],
input[type="email"],
textarea,
input[type="submit"]{-webkit-appearance:none; border-radius:0; }


/* -------------------------------------

common

------------------------------------- */
html {
  scroll-behavior: smooth;
}

:root {
	--key: #0075C1;
	--gray: #6F6F6F;
}

body {
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	line-height: 1.6;
}

.page {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	body {
		font-size: min(4vw,16px);
	}
}
@media screen and (min-width: 769px) {
	body {
		font-size: 18px;
	}
}

/* -------------------------------------

header

------------------------------------- */

/* ttls ----------------------*/
.ttls {
	line-height: 1;
	.companyname {
		color: var(--key);
		font-weight: 700;
	}
}
@media screen and (max-width: 768px) {
	.ttls {
		padding: 20px 15px 10px;
		#logo {
			width: min(42.5vw,171px);
			margin-bottom: 10px;
    }
		.companyname {
			font-size: min(5vw,20px);
		}
	}
}
@media screen and (min-width: 769px) {
	.ttls {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: 65px;
		margin-bottom: 30px;
		#logo {
			width: 265px;
    }
		.companyname {
			font-size: min(3vw,27px);
		}
	}
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
	.ttls {
		padding-left: 15px;
		padding-right: 20px;
	}
}
/* h1 ----------------------*/
h1 {
	background: var(--key);
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
}
@media screen and (max-width:768px) {
	h1 {
		font-size: min(4.5vw,18px);
		padding: 1.15em 15px 1.3em;
	}
}
@media screen and (min-width:769px) {
	h1 {
		font-size: 27px;
		padding: 1.1em 45px 1.2em;
	}
}

/* -------------------------------------

main

------------------------------------- */
main {
	.lead {
		border-bottom: 1px solid var(--gray);
		line-height: 2;
			a {
				display: inline;
				color: #2365B1;
			}
	}
}
@media screen and (max-width:768px) {
	main {
		padding: 0 15px 60px;
		.lead {
			padding: 30px 0;
		}
	}
}
@media screen and (min-width:769px) {
	main {
		padding: 0 50px 65px;
		.lead {
			text-align: center;
			padding: 50px 0;
			span {
				display: inline-block;
			}
			a:hover {
				text-decoration: underline;
			}
		}
	}
}

.complate__box {
	padding-top: 50px;
}
.complate__box .btn a {
	font-family: "Noto Sans JP", sans-serif;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: min(4.5vw,18px);
	text-align: center;
	color: #FFF;
	font-weight: 700;
	width: 286px;
	height: 70px;
	border-radius: 150px;
	background: var(--key);
	cursor: pointer;
	transition: all .3s;
	box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
	position: relative;
	&::after {
		content: "";
		display: block;
		aspect-ratio: 1/1;
		width: 10px;
		clip-path: polygon(0 50%, 100% 0%, 100% 100%);
		background: #fff;
		position: absolute;
		left: 30px;
		top: 50%;
		transform: translateY(-50%);
	}
}
.b-notes {
	margin: 50px 0;
	font-size: min(4vw,16px);
	font-weight: 400;
	a {
		display: inline;
		color: #2365B1;
		&:hover {
			text-decoration: underline;
		}
	}
}
@media screen and (max-width:768px) {
	.b-notes {
		margin-bottom: 30px;
	}
}

.agreeBox {
	&+p {
		
	}
}
.smf-placeholder[data-name="checkagree"] {
	.smf-checkboxes-control__control {
		text-align: center;
	}
}

.agreeBox {
	text-align: center;
	margin-bottom: 10px !important;
	&+p {
		text-align: center;
		font-size: min(3.5vw,14px);
		font-weight: 400;
	}
}

/* -------------------------------------

form layout

------------------------------------- */

.smf-form {
	.req {
			display: inline-block;
			color: #FF383C;
			border: 1px solid;
			font-size: min(3.5vw,14px);
			line-height: 1;
			font-weight: 400;
			padding: .3em .55em .4em .5em;
			margin-left: .8em;
			transform: translateY(-.3em);
		}
	.smf-item__col--label {
		display: flex;
		align-items: center;
		border-left: 5px solid var(--key);
		line-height: 1;
		padding: .2em 0 .2em .8em;
		.smf-item__description {
			display: inline-block;
			color: #FF383C;
			border: 1px solid;
			font-size: min(3.5vw,14px);
			line-height: 1;
			font-weight: 400;
			padding: .3em .55em .4em .5em;
			margin-left: .8em;
			transform: translateY(-.3em);
		}
	}
	.smf-text-control {
		display: inline-block;
	}
	.smf-control-description {
		display: inline-block;
		padding-left: .5em;
	}
	.b-nameBox {
		.smf-item__controls {
			display: flex;	
		}
		.smf-text-control,
		input {
			width: 100%;
		}
	}
}

@media screen and (max-width:768px) {
	.smf-form {
		.wp-block-snow-monkey-forms-item {
			margin-top: 40px;
		}
		.smf-item__col--label {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 14px;
		}
		.b-nameBox {
			.smf-placeholder {
				width: calc( ( 100% - 10px ) / 2 );
				& +.smf-placeholder {
					margin-left: 10px;
				}
			}
		}
	}
}
@media screen and (min-width:769px) {
	.smf-form {
		.wp-block-snow-monkey-forms-item {
			margin-top: 54px;
		}
		.smf-item__col--label {
			margin-bottom: 18px;
		}
		.b-nameBox {
			.smf-placeholder {
				width: calc( ( 100% - 20px ) / 2 );
				& +.smf-placeholder {
					margin-left: 20px;
				}
			}
		}
	}
}


/* -------------------------------------

form parts

------------------------------------- */

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea {
	font-size: inherit;
	font-family: "Noto Sans JP", sans-serif;
	display: inline-block;
	vertical-align: middle;
	/*! width: 100%; */
	padding: 12px 10px;
	border: 1px solid #9D9D9D !important;
	background-color: #FFF;
	box-sizing: border-box;
	border-radius: 8px !important;
	box-shadow: none;
	transition: background-color 0.3s;
	-webkit-appearance: none;
}
textarea {
	width: 100%;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
	border-color: var(--key) !important;
	background: #ebf4fa;
	outline: 0;
}

textarea {
	min-height: 220px;
}

.smf-select-control {
	overflow: hidden;
	padding: 12px 10px;
	border: 1px solid #9D9D9D;
	border-radius: 8px;
	background-color: #FFF;
	position: relative;
	box-sizing: border-box;
	.smf-select-control__toggle {
		display: none !important;
	}
}

.smf-select-control select {
	font-size: inherit;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1;
	text-overflow: ellipsis;
	width: 100%;
	border: none;
	background: transparent;
	background-image: none;
	outline: none;
	cursor: pointer;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	position: relative;
	z-index: 1;
	border: 0 !important;
	padding: 0 2em 0 .3em !important;
}

.smf-select-control select::-ms-expand {
	display: none;
}

.smf-select-control::before {
	content: '';
	aspect-ratio: 1.3/1;
	width: .9em;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: #9D9D9D;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	z-index: 2;
}

.smf-checkboxes-control__control,
.smf-radio-buttons-control__control {
	.smf-label {
		margin-bottom: 5px;
	}
	input{
		display: none !important;
		&:checked {
			&+span {
				&::before {
					border-color: var(--key);
				}
				&::after {
					opacity: 1;
				}
			}
		}
	}
		.smf-checkbox-control__label,
		.smf-radio-button-control__label {
			font-size: inherit;
			display: inline-block;
			position: relative;
			cursor: pointer;
			&::before,
			&::after {
				content: "";
				display: block;
				aspect-ratio: 1/1;
				position: absolute;
			}
			&::before {
				width: 1.4em;
			}
		}
}

/* radio ---------*/
.smf-radio-buttons-control__control {
	margin-bottom: .5em;
	margin-right: 1em;
	label {
		.smf-radio-button-control__label {
			padding-left: 1.9em;
			&::before {
				top: .2em;
				left: 0;
				border: 1px solid var(--gray);
				background-color: #FFF;
				border-radius: 50%
			}
			&::after {
				width: .8em;
				border-radius: 50%;
				background: var(--key);
				top: .55em;
				left: .3em;
				transition: opacity 0.3s, transform 0.3s;
				opacity: 0;
			}
		}
	}
}

/* checkbox */
.smf-checkboxes-control__control {
	input {
		&:checked {
			&+span {
				&::before {
					background: var(--key);
				}
				&::after {
					transform: rotate(40deg);
				}
			}
		}
	}
	label {
		.smf-checkbox-control__label {
			padding-left: 2.1em;
			&::before {
				width: 1.4em;
				border: 2px solid #2365B1;
				background-color: #FFF;
				border-radius: 8px;
				top: .2em;
				left: 0;
			}
			&::after {
				aspect-ratio: 8/14;
				width: .5em;
				border-bottom: 3px solid #fff;
				border-right: 3px solid #fff;
				top: .35em;
				left: .4em;
				transform: translate(-50%,-50%);
				transition: opacity 0.3s, transform 0.3s;
				opacity: 0;
			}
		}
	}
}
.agreeBox {
	input {
		&:checked {
			&+span:not(.req) {
				&::before {
					background: var(--key);
				}
				&::after {
					transform: rotate(40deg);
					opacity: 1;
				}
			}
		}
	}
	label {
		display: inline-block;
		position: relative;
		font-size: inherit;
		cursor: pointer;
		span:not(.req) {
			display: inline-block;
			padding-left: 2.1em;
			&::before,
			&::after {
				content: "";
				display: block;
				aspect-ratio: 1/1;
				position: absolute;
			}
			&::before {
				width: 1.4em;
				border: 1px solid #2365B1;
				background-color: #FFF;
				border-radius: 8px;
				top: .2em;
				left: 0;
			}
			&::after {
				aspect-ratio: 8/14;
				width: .5em;
				border-bottom: 3px solid #fff;
				border-right: 3px solid #fff;
				top: .35em;
				left: .4em;
				transform: translate(-50%,-50%);
				transition: opacity 0.3s, transform 0.3s;
				opacity: 0;
			}
		}
	}
}

.smf-action {
	text-align: center;
}
.smf-button-control__control {
	font-family: "Noto Sans JP", sans-serif;
	display: inline-block;
	vertical-align: middle;
	-webkit-appearance: none;
	font-size: min(4.5vw,18px);
	text-align: center;
	color: #FFF !important;
	font-weight: 700;
	width: 286px;
	height: 70px;
	border-radius: 150px !important;
	background: var(--key) !important;
	cursor: pointer;
	transition: all .3s;
	box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
	position: relative;
	&::after {
		content: "";
		display: block;
		aspect-ratio: 1/1;
		width: 10px;
		clip-path: polygon(0 0, 100% 50%, 0 100%);
		background: #fff;
		position: absolute;
		right: 30px;
		top: 50%;
		transform: translateY(-50%);
	}
	&:disabled {
		pointer-events: none;
		background-color: #9D9D9D !important;
	}
	&[data-action="back"],
	&.m-back {
		background: #9D9D9D !important;
		&::after {
			right: auto;
			left: 30px;
			clip-path: polygon(0 50%, 100% 0, 100% 100%);
		}
	}
}
a.smf-button-control__control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.smf-action {
	.smf-button-control {
		display: inline-block;
		margin: 5px 10px !important;
	}
}
@media screen and (max-width:768px) {
	.smf-action {
		margin-top: 40px;
	}
}
@media screen and (min-width:769px) {
	.smf-action {
		margin-top: 60px;
	}
}

/* --------------------------------

  step

-------------------------------- */

/* input */
.snow-monkey-form[data-screen="input"],
.snow-monkey-form[data-screen="invalid"],
.snow-monkey-form[data-screen="back"] {
	.lead.comfirm {
		display: none;
	}
}
/* confirm */
.snow-monkey-form[data-screen="confirm"] {
	.lead.input {
		display: none;
	}
	.smf-placeholder {
		color: var(--key);
	}
	.b-notes,
	#js-formCheck {
		display: none;
	}
}

/* complate */
.complate__box {
	em {
		display: block;
		text-align: center;
		font-style: normal;
		font-size: 1.2em;
		color: var(--key);
	}
	p+p {
		margin-top: 1.5em;
	}
	p:has(.smf-button-control) {
		text-align: center;
	}
}
@media screen and (min-width:769px) {
	.complate__box {
		text-align: center;
	}
}

