@charset "utf-8";
/* CSS Document */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*設定する場合→ font-family:'Noto sans japanese', sans-serif; を追加*/
/*同時に他のWEBフォントを使う場合はhtml側に記載すること*/

html {
	scroll-behavior: smooth;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: inherit;

	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

a:hover {
	opacity: .7;
}

body {
	font-size: 14px;
	background: #FFFFFF;
	color: var(--dark-gray);
	font-family: Meiryo, Tahoma, Verdana, Arial, sans-serif;
}

#wrapper {
	min-width: 320px;
	max-width: 600px;
	margin: auto;
}

img {
	vertical-align: bottom;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
input[type=button] {
	-webkit-appearance: none;
	border: 1px solid #999999;
}

button {
	-webkit-appearance: none;
	border: none;
	cursor: pointer;
}

input[type=submit] {
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.for-sp {
	display: none !important;
}

/*共通
----------------------------------------------------------------------------------------------------*/

:root {
	/*  */
	--black: black;
	--white: white;
	--dark-gray: #3A3939;
	--gray: #D0CFCE;
	--light-gray: #F5F5F5;
	/*  */
	--green: #00B148;
	--line-green: #06C755;
	--light-green: #3AFF75;
	--pastel-green: #EFFFF0;
	/*  */
	--blue: #1F6AF6;
	--light-blue: #3A89FF;
	--pastel-blue: #EFFAFF;
	/*  */
	--scarlet: #FF3A3D;
	--mid-red: #B10300;
	--pastel-red: #FED6E3;
	--pastel-pink: #FFE6FC;
	/*  */
	--orange: #FF963A;
	--light-orange: #FCBA2B;
	--yellow: #FCEA2B;
	--pastel-yellow: #FFF8EA;
	/*  */
	--gradation1: linear-gradient(0deg, #FED6E3 0%, #CCCCFF 100%);
	--gradation2: linear-gradient(0deg, #989AFF 0%, #FED6E3 100%);
	--gradation3: linear-gradient(0deg, #FED6E3 0%, #989AFF 100%);
	--gradation4: linear-gradient(0deg, #1F6AF6 0%, #989AFF 100%);
}

/* ===  === */

.mt-1 {
	margin-top: 1em;
}

/* === Block: display === */

.d-block {
	display: block;
}


/* === Block: .flex === */
.flex {
	display: flex;
}

.flex--inline {
	display: inline-flex;
}

/*  */

.flex__item {}

.flex__item--50 {
	flex: 0 1 calc(50% - .5em/2);
}


/* === Direction: .flex--row / .flex--column === */
.flex--row {
	flex-direction: row;
}

.flex--row-reverse {
	flex-direction: row-reverse;
}

.flex--column {
	flex-direction: column;
}

.flex--column-reverse {
	flex-direction: column-reverse;
}

/* === Wrap: .flex--wrap === */
.flex--nowrap {
	flex-wrap: nowrap;
}

.flex--wrap {
	flex-wrap: wrap;
}

.flex--wrap-reverse {
	flex-wrap: wrap-reverse;
}

/* === Justify Content: 水平方向の配置 === */
.flex--justify-start {
	justify-content: flex-start;
}

.flex--justify-end {
	justify-content: flex-end;
}

.flex--justify-center {
	justify-content: center;
}

.flex--justify-between {
	justify-content: space-between;
}

.flex--justify-around {
	justify-content: space-around;
}

.flex--justify-evenly {
	justify-content: space-evenly;
}

/* === Align Items: 垂直方向の配置（単一行）=== */
.flex--align-start {
	align-items: flex-start;
}

.flex--align-end {
	align-items: flex-end;
}

.flex--align-center {
	align-items: center;
}

.flex--align-baseline {
	align-items: baseline;
}

.flex--align-stretch {
	align-items: stretch;
}

/* === Align Content: 垂直方向の配置（複数行）=== */
.flex--content-start {
	align-content: flex-start;
}

.flex--content-end {
	align-content: flex-end;
}

.flex--content-center {
	align-content: center;
}

.flex--content-between {
	align-content: space-between;
}

.flex--content-around {
	align-content: space-around;
}

.flex--content-stretch {
	align-content: stretch;
}

/* === Align Self（個別アイテム用）=== */
.flex-item--self-start {
	align-self: flex-start;
}

.flex-item--self-end {
	align-self: flex-end;
}

.flex-item--self-center {
	align-self: center;
}

.flex-item--self-stretch {
	align-self: stretch;
}

.flex-item--self-baseline {
	align-self: baseline;
}

/* === gapユーティリティ（em単位） === */
.gap--0 {
	gap: 0;
}

.gap--0_5 {
	gap: 0.5em;
}

.gap--1 {
	gap: 1em;
}

.gap--2 {
	gap: 2em;
}

.gap--3 {
	gap: 3em;
}

.gap--4 {
	gap: 4em;
}

.gap--5 {
	gap: 5em;
}

/* ==================== */

.bg-white {
	background: var(--white);
	color: var(--dark-gray);
}

/* ==================== */

.text-box {
	border-radius: .5em;
	padding: 1em;
}

.text {
	line-height: 1.7;
}

.text--sm {
	font-size: 1em;
}

.text--strong {
	font-weight: 600;
}

.text--left {
	text-align: left;
}

.text--center {
	text-align: center;
}

.text--dark {
	color: var(--dark-gray);
}

/* ==================== */

section {
	width: 100%;
	max-width: 600px;
	margin: auto;
}

.section--1 {
	position: relative;
	background: var(--gradation1);
}

.section--2 {
	background: var(--gradation2);
}

.section--3 {
	background: var(--gradation3);
}

.section--4 {
	background: var(--gradation2);
}

.section--5 {
	background: var(--pastel-blue);
}

/* ==================== */

.content {
	width: 100%;
	max-width: 600px;
	padding: 2em 1em;
	margin: 0 auto;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	gap: 2em;
}

/* ==================== */

.st-set {}

.st {
	padding: 1em 0;
	font-size: 2em;
	font-weight: 700;
	border-top: 2px solid;
	border-bottom: 2px solid;
	width: fit-content;
	margin: auto;
}

.st--light,
.sub-st--light {
	color: var(--white);
}

.sst {
	padding-bottom: .5em;
	font-size: 1.5em;
	font-weight: 600;
	text-align: center;
	border-bottom: 1px solid;
	width: fit-content;
	margin: auto;
}

.sub-st {
	text-align: center;
	font-size: 1em;
}

/* ==================== */

.alert {
	background: var(--white);
	border-radius: 0 0 .5em .5em;
	max-width: calc(600px - 2em);
	padding: 1em;
	margin: auto;

	/*  */
	box-shadow: 0 4px 4px #00000025;
}

.alert--danger {
	border-top: 8px solid var(--scarlet);
}

.alert__st {
	padding-bottom: .5em;
	font-size: 1.5em;
	font-weight: 600;
	border-bottom: 1px solid var(--gray);
}

.alert__icon {}

.alert__text {}

.alert__button {}

/* ==================== */

.btn {
	border-radius: .25em;
	padding: .5em;
}

.btn--success {
	background-color: var(--line-green);
	color: var(--white);
}

.btn--primary {
	background-color: var(--light-blue);
	color: var(--white);
}

.btn--primary-shadow {
	box-shadow: 0 4px 0 var(--blue);
}

.btn__icon {
	width: 2em;
	height: 2em;
	object-fit: contain;
}

.btn__text {
	font-weight: 600;
}

/*  */

.button-box {}

.contact-btn {
	border-radius: .5em;
	padding: 1em;
	height: 120px;
}

.contact-btn--tell {
	background: var(--white);
	box-shadow: 0 8px 0 var(--gray);
}

.contact-btn--line {
	background: var(--line-green);
	box-shadow: 0 8px 0 var(--green);
	color: var(--white);
}

.contact-btn--web {
	background: var(--light-blue);
	box-shadow: 0 8px 0 var(--blue);
	color: var(--white);
}

.contact-btn__item {}

.contact-btn__icon {
	flex: 0 1 2em;
	width: 2em;
	height: 2em;
	object-fit: contain;
}

.contact-btn__sub-text {
	font-weight: bold;
}

.contact-btn__text {
	font-weight: bold;
	font-size: 1.5em;
}

.contact-btn__span {
	font-size: 1em;
}

/* ==================== */

.card {
	background: var(--white);
	border-radius: .5em;
	overflow: hidden;
	font-size: 1.125em;
}

.card--shadow {
	box-shadow: 0 4px 4px #00000025;
}

.card--bg-danger {
	background: var(--scarlet);
	color: var(--white);
	border: 1px solid var(--scarlet);
}

.card--bg-waning {
	background: var(--light-orange);
	color: var(--white);
	border: 1px solid var(--light-orange);
}

.card--bg-success {
	background: var(--green);
	color: var(--white);
	border: 1px solid var(--green);
}

.card--danger {
	background: var(--pastel-red);
	color: var(--scarlet);
	border: 1px solid var(--scarlet);
}

.card--success {
	background: var(--pastel-green);
	color: var(--green);
	border: 1px solid var(--green);
}

.card--border-blue {
	background: var(--white);
	border: 1px solid var(--light-blue);
}

.card--pointer {
	cursor: pointer;
}

.card__head {
	font-weight: 600;
	padding: 1em 1em .5em;
}

.card__head--danger {
	background: var(--scarlet);
	color: var(--white);
}

.card__head--line {
	border-bottom: 1px solid var(--gray);
}

.card__head--waning {
	background: var(--orange);
	color: var(--white);
}

.card__head--primary {
	background: var(--blue);
	color: var(--white);
}

.card__icon {
	width: 1.25em;
	height: 1.25em;
	object-fit: contain;
}

.card__body {
	padding: 1em;
}

.card__body p {
	line-height: 1.7;
}

.card__body li {
	list-style: disc;
	margin-left: 2em;
	line-height: 1.7;
}

.card__body--left-space {
	padding-left: 3em;
}

.card__subtext {
	font-size: 1em;
}

/* ==================== */

.budge {
	display: inline-block;
	border-radius: 1em;
	padding: .25em .75em;
	font-size: .75em;
	font-weight: 600;
}

.budge--danger {
	background: var(--mid-red);
	color: var(--white);
}

.budge--red {
	background: var(--scarlet);
	color: var(--white);
}

/* ==================== */

.table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 .5em;
}

.table--primary {}

tr {}

th {
	text-align: center;
	font-weight: 600;
	background: var(--dark-gray);
	color: var(--white);
	padding: 1em;
	border-radius: .5em 0 0 .5em;
}

td {
	padding: 1em;
	background: var(--white);
	border-radius: 0 .5em .5em 0;
}

.table--primary th {
	background-color: var(--light-blue);
}

/* === form === */

.form-group {}

.form-group__label {
	display: block;
	font-weight: 600;
	margin-bottom: .5em;
}

.form-group__radio {
	padding: .5em;
	border-radius: .5em;
	background: var(--light-blue);
	color: var(--white);
	cursor: pointer;
}

.form-group__radio input {
	margin-right: .5em;
	width: 1.25em;
	height: 1.25em;
}

.form-group__custom-radio {}

.from-group {}

.form-group__input {
	width: 100%;
	height: 2.5em;
	padding: .2em;
	font-size: 1.125em;
}

.illust {
	width: fit-content;
	margin: auto;
}

.illust_src {}

.image {
	width: 100%;
	aspect-ratio: 16/7;
	border-radius: .5em;
	overflow: hidden;
}

.image__src {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*ヘッダー
----------------------------------------------------------------------------------------------------*/

.fixed-btn-set {
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 99;
}

.fixed-btn-set--bottom {
	top: auto;
	bottom: 20px;
	right: 0;
	/*適宜変更 これはコンテンツ幅の右に合わせる場合の指定です*/
}

.fixed-btn {
	border-radius: .5em 0 0 .5em;
	width: min(100px, 26vw);
	padding: 1em .5em;
}

.fixed-btn--line {
	background-color: var(--line-green);
	color: var(--white);
}

.fixed-btn--mail {
	background-color: var(--light-blue);
	color: var(--white);
}

.fixed-btn--top {
	background: var(--gradation4);
	color: var(--white);
}

.fixed-btn__icon {
	width: 2em;
	height: 2em;
	object-fit: contain;
}

.fixed-btn__text {
	font-weight: 600;
	font-size: 1em;
}

/* hero */

#hero img {
	width: 100%;
}

/*フッター
----------------------------------------------------------------------------------------------------*/
.pagetop {
	position: fixed;
	bottom: 20px;
	/*適宜変更*/
	right: calc(50% -
			/*コンテンツ幅の半分の値*/
		);
	/*適宜変更 これはコンテンツ幅の右に合わせる場合の指定です*/
	z-index: 99;
	/*適宜変更・削除*/

	display: inline-block;
	/*必要があれば適宜変更*/
}

.pagetop img {
	/*アイコンを置く場合などは適宜サイズ指定など追加。*/
}

footer {
	background: var(--dark-gray);
	color: var(--white);
	padding: 2em 0;
}

.footer__inner {
	padding: 1em;
}

.footer__item {
	padding: 1em;
	position: relative;
}

.footer__item:first-child::after {
	content: "";
	display: block;
	width: 2px;
	height: 40%;
	background: var(--gray);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}

.footer__icon {
	width: 4em;
	height: 4em;
	margin: 0 auto 1em;
}

.footer__icon-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer_st {}

.footer__icon--small {
	width: 2em;
	height: 2em;
}

.footer__bottom {}