@charset "utf-8";

/* CSS Document */
@import url(https://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;
}

body {
	font-size: 14px;
	background: #FFFFFF;
	font-family: Meiryo, Tahoma, Verdana, Arial, sans-serif;
}

#wrapper {
	min-width: 320px;
	max-width: 600px;
	margin: 0 auto;
	padding-top: 72px;
}

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 {
	cursor: pointer;
	border: none;
	outline: none;
}


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

.sp-br {
	display: block;
}

.cursor-pointer {
	cursor: pointer;
}

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

:root {
	--blue100: #186ADF;
	--blue50: #62AAFF;
	--blue30: #A0D7FF;
	/*  */
	--gray100: #D9CDB6;
	--gray70: #EAE6DD;
	--gray50: #F5F5F5;
	/*  */
	--green: #00B900;
	--yellow: #FFBC39;
	--orange: #FF6636;
	--red: #FF3E3E;
	--white: #fff;
	--black: #353535;

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

	--bg-white: var(--white);
	--bg-gray: var(--gray70);
	--bg-blue: var(--blue100);
	--bg-orange: var(--orange);
	--bg-yellow: var(--yellow);
	--bg-green: var(--green);

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

	--text-black: var(--black);
	--text-white: var(--white);
	--text-blue: var(--blue100);
	--text-red: var(--red);
	--text-green: var(--green);
	--text-yellow: var(--yellow);

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

	--border-black: var(--black);
	--border-gray: var(--gray100);
	--border-orange: var(--orange);
	--border-white: var(--white);
	--border-yellow: var(--white);
}

/* svg */
.svg-icon {
	fill: #353535;
	stroke-miterlimit: 10;
	stroke-width: 6px;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.svg-s {
	width: 1em;
	height: 1em;
}

.svg-m {
	width: 2em;
	height: 2em;
}

.svg-l {
	width: 5em;
	height: 5em;
}

.svg-white {
	fill: var(--white);
}

.svg-blue {
	fill: var(--blue100);
}

.svg-orange {
	fill: var(--orange);
}

.svg-red {
	fill: var(--red);
}

.svg-yellow {
	fill: var(--yellow);
}

.bg-white {
	background: var(--bg-white);
	border-radius: 50%;
	padding: .2rem;
}

.bg-yellow {
	background: var(--bg-yellow);
	border-radius: 50%;
	padding: .2rem;
}

.bg-orange {
	background: var(--bg-orange);
	border-radius: 50%;
}

.bg-gray {
	background: var(--bg-gray);
	border-radius: 50%;
}

.bg-blue {
	background: var(--bg-blue);
	border-radius: 50%;
	padding: .2rem;
}

.content {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	overflow: hidden;
}

.content_flex {}

.con-left {
	display: none;
}

.con-main {
	padding: 0 12px;
}

.con-main__item {
	margin: 0 0 2rem;
}

.content__item {
	margin: 4rem 0;
	padding: 0 8px;
}


/* テキスト */
.textbox {}

.textbox__item {}

.textbox__item_important {
	color: var(--text-red);
}


/* scroll */

.scroll-row {
	position: relative;
	/*  */
	width: 100%;
	padding: 1rem;
	min-height: 320px;
	/*  */
	overflow-x: scroll;
	overflow-y: hidden;
	/*  */
	border-radius: 16px 0 0 16px;
}

.scroll-row__list {
	display: flex;
	gap: 1rem;
}

.scroll-row__item {
	flex: 0 0 200px;
}

.scroll__item_radius-all {
	border-radius: 8px;
	overflow: hidden;
}

.scroll-row_bg-blue {
	background: var(--bg-blue) !important;
}

.scroll-row_bg-yellow {
	background: var(--bg-yellow) !important;
}

.scroll-row_bg-gray {
	background: var(--bg-gray) !important;
}

.scroll-row_btn-include {
	padding-bottom: 6rem;
}

.scroll-row__inner-button {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1rem;
	/*  */
	width: 90%;
	/*  */
	margin: auto;
}

/*  */

.general-content {
	border-radius: 8px;
	overflow: hidden;
	/*  */
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: calc(240px - 2rem);
}

.general-content__image {
	flex: 1 1 50%;
	object-fit: cover;
	overflow: hidden;
}

.general-content__text-box {
	flex: 1 1 50%;
	padding: 1rem;
	overflow: hidden;
	/*  */
	font-weight: bold;
	/*  */
	background: var(--bg-white);
}

.general-content__text {}

.general-content__cate {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/*  */

.double-color-content {
	margin-top: 40px;
	position: relative;
	overflow: unset;
}

.double-color-content:nth-child(odd) {
	background: var(--bg-blue);
	color: var(--text-white);
}

.double-color-content:nth-child(even) {
	background: var(--bg-yellow);
	color: var(--text-black);
}

.double-color-content__inner {
	padding: 1rem;
}

.double-color-content__image {
	position: absolute;
	top: -40px;
	left: 0;
	right: 0;
	z-index: 9;
	/*  */
	margin: auto;
	width: 80px;
	aspect-ratio: 1/1;
	object-fit: cover;
	/*  */
	border-radius: 8px;
}

.double-color-content__st {
	padding-top: 40px;
	margin-bottom: 1rem;
	/*  */
	font-size: 1rem;
	font-weight: bold;
}

.double-color-content__date {}

/*  */

.width-max-image {
	display: block;
	margin: 1rem auto;
}

.width-max-image__item {
	width: 100%;
}

/*  */

.repair-type {
	width: 100%;
	overflow-x: scroll;
}

.repair-type__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: .5rem;
	/*  */
	padding: 1rem 0;
}

.repair-type__list:first-of-type .repair-type__item {
	flex: 0 0 100%;
}

.repair-type__list:last-of-type .repair-type__item {
	flex: 0 0 49%;
}

.repair-type__link {
	/*  */
	display: flex;
	flex-direction: column;
	align-items: center;
	/*  */
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	height: 120px;
}

.repair-type__icon {
	flex: 0 0 60%;
	/*  */
	display: flex;
	align-items: center;
	justify-content: center;
	/*  */
	width: 100%;
	/*  */
	background: var(--bg-blue);
}

.repair-type__image {
	width: 40px;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.repair-type__text {
	background: var(--bg-yellow);
	/*  */
	flex: 0 0 40%;
	width: 100%;
	/*  */
	display: flex;
	justify-content: center;
	align-items: center;
}

.repair-type__p {
	font-size: 1rem;
	font-weight: bold;
}

/*  */

.st {
	display: block;
	width: fit-content;
	margin: auto;
	margin-bottom: 2rem;
	/*  */
	text-align: center;
	font-weight: bold;
	font-size: 1.4rem;
	/*  */
	color: var(--text-blue);
}

.st::after {
	content: "";
	/*  */
	display: block;
	width: 100px;
	height: 4px;
	margin: 1rem auto 0;
	/*  */
	border-radius: 999px;
	/*  */
	background: var(--bg-yellow);
}

.sst {
	margin-bottom: 1rem;
	letter-spacing: .6px;
	font-weight: bold;
	font-size: 1rem;
	border-bottom: 1px solid;
}


/*  */

.official-btn {
	width: 100%;
	max-width: 300px;
	height: 2rem;
	border-radius: 999px;
}

.official-btn_primary {
	background: var(--bg-blue);
	color: var(--text-white);
}

.official-btn_focus {
	background: var(--bg-gray);
	color: var(--text-blue);
}

.official-btn_flex {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.official-btn__icon {}

.official-btn__arrow {
	transform: rotate(-90deg);
}

.official-btn__text {
	font-size: 1rem;
	font-weight: bold;
}

.official-btn_center {
	margin: auto;
}

.official-btn_lg {
	height: 4rem;
}

.official-btn__bottom-shadow {
	box-shadow: 0px 4px 0px #14438a;
}

.official-btn__absolute {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
}

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



/* header */
header {
	position: fixed;
	top: 0;
	z-index: 999;
	/*  */
	width: 100%;
	height: 72px;
	/*  */
	background: var(--bg-white);
}

.header-inner {
	display: flex;
	justify-content: space-between;
}

.header-inner__logo {
	height: 72px;
}

.header-inner__logo-img {
	padding: .5rem;
	height: 100%;
}

.header-inner__menu {
	height: 72px;
	background: var(--bg-blue);
}

.header-inner__menu-img {
	height: 100%;
}

/*  */

.head-fix-nav {
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	height: calc(100% - 72px);
	overflow-y: scroll;
	z-index: 9999;
	/*  */
	background: var(--bg-white);
	/*  */
	display: none;
	opacity: 0;
	transition: .3s;
}

.head-fix-nav__inner {
	width: 100%;
	max-width: 600px;
	padding: 1rem;
	margin: auto;
}

.head-fix-nav__item {
	margin-bottom: 1rem;
}

.text-nav {}

.text-nav__item {
	border-bottom: 1px solid var(--border-gray);
}

.text-nav__link {
	position: relative;
	/*  */
	display: flex;
	align-items: center;
	justify-content: center;
	/*  */
	width: 100%;
	padding: .6rem;
	/*  */
	font-weight: bold;
	color: var(--text-blue);
}

.text-nav__icon {
	position: absolute;
}

.text-nav__icon_left {
	left: 0;
	transform: rotate(90deg);
}

.text-nav__icon_right {
	right: 0;
	transform: rotate(-90deg);
}

/*  */

.box-nav {
	display: flex;
	gap: 1rem;
}

.box-nav__item {
	flex: 1 1 100%;
	border-radius: 16px;
}

.box-nav__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/*  */
	padding: .5rem;
	width: 100%;
	aspect-ratio: 3/2;
}

.box-nav__icon {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.box-nav__text {
	color: var(--text-white);
}

.box-nav__search {
	background: var(--bg-blue);
}

.box-nav__contact {
	background: var(--bg-yellow);
}

.box-nav__estimate {
	background: var(--bg-orange);
}

/*  */

.button-nav {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
}

.button-nav__item {
	flex: 1 0 40%;
}

.button-nav__link {
	position: relative;
	/*  */
	display: flex;
	align-items: center;
	justify-content: center;
	/*  */
	height: 4rem;
	width: 100%;
	padding: .5rem;
	/*  */
	border-radius: 2rem;
	/*  */
	font-weight: bold;
	/*  */
	background: var(--bg-blue);
	color: var(--text-white);

}

.button-nav__icon-right {
	position: absolute;
	right: .6rem;
	transform: rotate(-90deg);
	/*  */
	width: 1rem;
	height: 1rem;
}


/* bread */
.bread-box {
	background: var(--bg-gray);
	color: var(--text-black);
}

.bread-list {}

.bread-list a {}

/* main --------------------------------------------------------------- */

.main-hero {
	background: -webkit-gradient(linear, left top, right bottom, from(#fbe9c4), to(#f4d177));
	background: -webkit-linear-gradient(left top, #fbe9c4, #f4d177);
	background: -moz-linear-gradient(left top, #fbe9c4, #f4d177);
	background: -o-linear-gradient(left top, #fbe9c4, #f4d177);
	background: linear-gradient(to right, #fbe9c4, #f4d177);
	border-bottom: 4px solid var(--border-black);
}

.main-hero__link {}

.main-hero__picture {}

.main-hero__webp {}

.main-hero__img {
	width: 100%;
}

.reason {
	position: relative;
}

.reason__bg {
	width: 100%;
	height: 170px;
	object-fit: cover;
	/*  */
	border-radius: 16px;
	background: var(--bg-gray);
}

.reason__abs {
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	/*  */
	text-align: center;
	/*  */
	width: fit-content;
	margin: auto;
}

.reason__icon {
	display: block;
	margin-bottom: 2rem;
}

.reason__img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.reason__text-box {
	margin-bottom: 2rem;
}

.reason__text {
	display: block;
	margin-bottom: .2rem;
	width: 300px;
	/*  */
	font-size: 1.2rem;
	letter-spacing: 3;
	line-height: 2;
	/*  */
	background: #fff;
}

.shops {
	margin-bottom: 1rem;
}

.shop-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	/* width: fit-content; */
}

.shop-list__item {
	flex: 0 0 calc(50% - 1rem);
}

.shop-list__link {}

.our-service {
	margin-bottom: 2rem;
}

.our-service__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.our-service__item {
	flex: 0 0 100%;
}

.our-service__link {}

.our-service__image {
	width: 100%;
}

.colorful_boxes {}

.colorful-boxes__list {
	display: flex;
	flex-wrap: wrap;
}

.colorful-box {
	margin-top: 6rem;
	/*  */
	flex: 0 0 100%;
	/*  */
	position: relative;
	border-radius: 8px;
}

.colorful-box_blue {
	background: var(--bg-blue);
	color: var(--text-white);
}

.colorful-box_yellow {
	background: var(--bg-yellow);
	color: var(--text-white);
}

.colorful-box_orange {
	background: var(--bg-orange);
	color: var(--text-white);
}

.colorful-box__link {
	display: block;
	padding: 2rem 1rem;
	padding-top: 90px;
}

.colorful-box__img {
	display: block;
	margin: auto;
	width: 90%;
	height: 120px;
	object-fit: cover;
	/*  */
	position: absolute;
	top: -25%;
	left: 0;
	right: 0;
	/*  */
	background: var(--bg-gray);
	border-radius: 4px;
}

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

.colorful-box__st {}

.colorful-box__title {
	font-weight: bold;
	font-size: 1.4rem;
}

.colorful-box__arrow {
	position: absolute;
	left: 0;
	right: 0;
	bottom: .5rem;
	/*  */
	margin: auto;
	/*  */
	transform: rotate(-90deg);
	/*  */
	width: 1rem;
	height: 1rem;
}

.correspond {
	margin-bottom: 2rem;
}

.points {
	margin-bottom: 2rem;
}

.points__list {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}

.points__item {
	flex: 0 1 48%;
	margin-top: 2rem;
}

.numbering {
	position: relative;
	/*  */
	background: var(--bg-gray);
	color: var(--text-blue);
	/*  */
	padding: 1rem;
	/*  */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
	/*  */
	border-radius: 8px;
}

.numbering__number {
	position: absolute;
	left: 0;
	right: 0;
	top: -1.5rem;
	/*  */
	width: 2rem;
	height: 2rem;
	margin: auto;
	/*  */
	border-radius: 50%;
	/*  */
	background: var(--blue50);
	color: var(--text-white);
	/*  */
	display: flex;
	justify-content: center;
	align-items: center;
}

.numbering__text {
	text-align: center;
	font-weight: bold;
}

.numbering__point {
	font-size: 1.2rem;
}

.numbering__icon {
	width: 3rem;
	height: 3rem;
}

.customers {}

.customers__inner {}

.customers__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.customers__item {
	position: relative;
	/*  */
	flex: 0 0 calc(50% - 1rem);
	/*  */
	border-radius: 16px;
	/*  */
	background: var(--bg-gray);
	/*  */
	padding: 2rem 1rem 1rem;
	margin-top: 2rem;
}

.customers__icon {
	position: absolute;
	top: -1.5rem;
	/*  */
	width: 3rem;
	height: 3rem;
}

.customers__image {
	width: 100%;
	aspect-ratio: 16/9;
	margin-bottom: 1rem;
	overflow: hidden;
	object-fit: cover;
	/*  */
	background: var(--bg-white);
	/*  */
	border-radius: 8px;
}

.customers__voice {
	font-weight: bold;
	color: var(--text-blue);
}

.customers__cate {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.category {
	color: var(--text-yellow);
	border: solid 1px var(--text-yellow);
	background: var(--bg-white);
	padding: 0 .4rem;
}

.articles {
	border-radius: 16px;
	overflow: hidden;
}

.articles__inner {
	padding: 1rem;
}

.articles__title {
	font-size: 1.6rem;
	font-weight: bold;
	/*  */
	width: 100%;
	padding-bottom: 1rem;
	/*  */
	border-bottom: 1px solid var(--border-black);
}

.articles__list {}

.articles__item {}

.articles__link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
	/*  */
	padding: .5rem;
	/*  */
	color: var(--text-black);
	border-bottom: 1px solid var(--border-gray);
}

.articles__date {
	flex: 0 0 50%;
	text-align: center;
}

.articles__from {
	flex: 1 0 calc(50% - 1rem);
	/*  */
	padding: .2rem;
	/*  */
	border-radius: 999px;
	text-align: center;
}

.articles__st {
	flex: 1 0 60%;
	/*  */
	font-size: 1rem;
	font-weight: bold;
}

.articles__icon {
	flex: 0 0 10%;
}

.articles__item:nth-child(odd) .articles__from {
	background: var(--bg-yellow);
}

.articles__item:nth-child(even) .articles__from {
	background: var(--bg-blue);
	color: var(--text-white);
}

.articles_gray {
	background: var(--bg-gray);
	color: var(--text-orange);
}

.articles_blue {
	background: var(--blue30);
	color: var(--text-blue);
}



/* ご予約・お問い合わせ */

.form-select {
	display: flex;
	justify-content: center;
	gap: 1rem;
	/*  */
	margin: 2rem 0;
}

.form-select__item {
	width: 50%;
	max-width: 300px;
}

.form-select__btn {}

/*  */

.other-form {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1rem;
}

.other-form__label {
	flex: 0 0 100%;
}

.other-form__select {
	flex: 0 1 calc(80% - 1rem);
}

.other-form__button {
	flex: 0 0 calc(33.3% - 2rem/3);
	padding: 1rem .5rem;
	border-radius: 4px;
	background: var(--bg-blue);
	color: var(--white);
	cursor: pointer;
}

/*  */

.form-table {
	color: var(--text-black);
	width: 100%;
	border-top: 1px solid var(--gray70);
}

.form-table__body {
	transition: .3s;
}

.form-table__body:last-child {
	display: none;
	transition: .3s;
}

.form-table__tr {}

.alist-title {
	display: block;
	padding: .5rem 0;
	width: 100%;
}

.hissu {
	display: inline-block;
	margin-left: 1rem;
	padding: 0 .4rem;
	/*  */
	color: #fff;
	background: var(--red);
	font-size: .8rem;
}

.alist-desc {
	display: block;
	width: 100%;
	padding: .5rem 0;
}

.form-table input,
.form-table select,
.form-table textarea {
	width: 100%;
	border: none;
	background: var(--gray70);
}

.form-table input,
.form-table select {
	height: 3rem;
	padding: .4rem;
}

.form-table textarea {
	padding: .4rem;
}

.btn-box {
	padding: 2rem 0;
}

.privacy-check {
	display: flex;
	align-items: center;
	gap: .5rem;
	/*  */
	width: fit-content;
	margin: 0 auto 2rem;
}

.privacy-check__input {
	width: 1.4rem;
	height: 1.4rem;
}

.privacy-check__link {}

.privacy-check__text {}

/* 利用規約 */

.kiyaku-list {
	margin-bottom: 2rem;
}


/* footer ------------------------------------------------------------- */

footer {
	margin-top: 2rem;
	margin-bottom: 80px;
}

.footer__item {}

.footer__bg-blue {
	background: var(--bg-blue);
	color: var(--text-white);
}

.footer__inner {
	overflow: hidden;
	/*  */
	width: 100%;
	max-width: 1200px;
	/*  */
	margin: auto;
	padding: 1rem 0;

}

.footer__inner_flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.footer__border-bottom {
	border-bottom: 1px solid var(--bg-gray);
}

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

/*  */
.footer__navigation {}

.footer-nav {}

.footer-nav__item {}

.footer_nav__link {
	font-weight: bold;
	line-height: 2;
}

/*  */

.footer-inner__logo {
	height: 80px;
}

.footer-inner__logo-img {
	height: 100%;
}

/*  */

.banner-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.banner-group__item {}

.banner-group__img {
	height: 100px;
}

/*  */

.footer__bottom-nav {
	width: fit-content;
	margin: 0 auto 1rem;
}

.bottom-nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.bottom-nav__item {}

.bottom-nav__link {
	font-weight: bold;
	border-bottom: 1px solid;
}

/*  */

.copyright {
	display: block;
	width: fit-content;
	margin: auto;
}


/* 固定フッター */
.fix-nav {
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0;
	/*  */
	display: flex;
}

.fix-nav__item {
	flex: 1 1 30%;
	aspect-ratio: 2/1;
	/*  */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/*  */
	color: var(--text-white);
}

.fix-nav__icon {}

.fix-nav__icon_rotate-top {
	transform: rotate(180deg);
}

.fix-nav__text {
	font-weight: bold;
}

.fix-nav__access {
	background: var(--bg-blue);
}

.fix-nav__fee {
	background: var(--bg-orange);
}

.fix-nav__contact {
	background: var(--bg-yellow);
}

.fix-nav__to-top {
	flex: 1 1 20%;
	background: var(--bg-gray);
}

.fix-nav__item:first-child {
	border-radius: 8px 0 0 0;
}

.fix-nav__item:last-child {
	border-radius: 0 8px 0 0;
}



/* ヘルパー ------------------------ */

.ly_bg-blue {
	background: var(--blue30);
}