@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;
	-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: 16px;
	color: var(--text-black);
	background: #FFFFFF;
	font-family: 'Noto sans japanese', sans-serif, Tahoma, Verdana, Arial, sans-serif;
}

#wrapper {
	min-width: 601px;
}

figure {
	margin: 0;
}

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;
}

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;
}

body *::-webkit-scrollbar {
	height: .5rem;
	background: var(--bg-gray);
	border-radius: .25rem;
}

body *::-webkit-scrollbar-thumb {
	background: var(--gray100);
	border-radius: .25rem;
}

button {
	cursor: pointer;
	border: none;
	outline: none;
}

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

.cursor-pointer {
	cursor: pointer;
	transition: opacity .3s;
}

.cursor-pointer:hover {
	opacity: .7;
}

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

: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-orange: var(--orange);
	--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-blue {
	background: var(--blue100);
	border-radius: 50%;
	padding: .2rem;
}

.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%;
}

/*  */

.my-2 {
	margin: 2rem 0;
}

/*  */

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

.content_flex {
	display: flex;
	gap: 1rem;
}

.con-left {
	flex: 0 0 280px;
	overflow: hidden;
}

.con-main {
	flex: 1 1 900px;
	overflow: hidden;
}

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

.content__item {
	margin: 4rem 0;
}


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

.textbox__item {
	font-size: 1.2rem;
}

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

/*  */

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

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

/* 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;
	margin-left: 1rem;
}

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

.scroll__item_radius-all {
	border-radius: 16px;
	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: 80%;
	/*  */
	margin: auto;
}

/*  */

.general-content {
	border-radius: 16px;
	overflow: hidden;
	/*  */
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: calc(320px - 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: 60px;
	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: 1.2rem;
	font-weight: bold;
}

.double-color-content__date {}

/*  */

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

.repair-type__list {
	display: flex;
	gap: 1rem;
	padding: 1rem 0;
}

.repair-type__item {
	flex: 1 0 180px;
}

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

}

.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: 90px;
	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: 1.2rem;
	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: 1.4rem;
	border-bottom: 1px solid;
}


/*  */

.official-btn {
	width: 100%;
	max-width: 300px;
	min-width: 100px;
	height: 3rem;
	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: 1.2rem;
	font-weight: bold;
}

.official-btn_center {
	margin: auto;
}

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

.official-btn_lg {
	height: 4rem;
}

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


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

/* header */
header {
	height: 80px;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	/*  */
	max-width: 1200px;
	margin: auto;
}

.header-inner__logo {
	height: 80px;
}

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

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

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

/*  */

.head-fix-nav {
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	height: 100%;
	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: .8rem;
	/*  */
	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;
	gap: 1rem;
	/*  */
	padding: 1rem;
	width: 100%;
	aspect-ratio: 3/2;
}

.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: 1rem;
}

.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: 1rem;
	transform: rotate(-90deg);
}


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

.bread-list {}

.bread-list a {}


/* 左固定メニュー------------------------------------------------------ */
.menu-left {
	width: 100%;
	max-width: 280px;
}


.menu-left_fixed {
	position: fixed;
	top: 1rem;
}


.menu-left__shop-name {
	position: relative;
	/*  */
	display: flex;
	align-items: center;
	justify-content: center;
	/*  */
	border-radius: 16px 0 0 0;
	background: var(--bg-blue);
	color: var(--text-white);
	font-size: 1.4rem;
	font-weight: bold;
}

.menu-left__shop-name::after {
	content: "";
	display: block;
	width: 12px;
	height: 100%;
	/*  */
	background: var(--bg-yellow);
	/*  */
	position: absolute;
	right: 0;
}

.menu-left__shop-link {}

.menu-left__item {
	height: 4rem;
}

.menu-left__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/*  */
	padding: 1rem;
	/*  */
	width: 100%;
	height: 100%;
	/*  */
	border-bottom: 1px solid var(--border-gray);
	/*  */
	font-size: 1.2rem;
	/*  */
	background: var(--bg-white);
}

/* 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: 230px;
	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 {}

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

.shop-list__item {
	flex: 0 0 calc(25% - 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 calc(33.3% - 1rem);
}

.our-service__link {}

.our-service__image {
	width: 100%;
}

.colorful_boxes {
	margin-top: 9rem;
}

.colorful-boxes__list {
	display: flex;
	gap: 1rem;
}

.colorful-box {
	flex: 0 0 calc(33.3% - 1rem);
	position: relative;
	border-radius: 16px;
}

.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 4rem;
	padding-top: 90px;
}

.colorful-box__img {
	display: block;
	margin: auto;
	width: 80%;
	aspect-ratio: 16/9;
	object-fit: cover;
	/*  */
	position: absolute;
	top: -45%;
	left: 0;
	right: 0;
	/*  */
	background: var(--bg-gray);
	border-radius: 8px;
}

.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: 1rem;
	/*  */
	margin: auto;
	/*  */
	transform: rotate(-90deg);
}

.correspond {
	margin-bottom: 2rem;
}

.points {
	margin-top: 4rem;
	margin-bottom: 2rem;
}

.points__list {
	display: flex;
	gap: 1rem;
}

.points__item {
	flex: 0 0 calc(20% - 1rem);
}

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

.numbering__number {
	position: absolute;
	left: 0;
	right: 0;
	top: -1.5rem;
	/*  */
	width: 3rem;
	height: 3rem;
	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 {}

.customers {}

.customers__inner {}

.customers__list {
	position: relative;
	/*  */
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	row-gap: 2rem;
}

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

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

.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;
	/*  */
	margin-top: 1rem;
}

.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: 2rem;
}

.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;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	/*  */
	padding: 1rem;
	/*  */
	color: var(--text-black);
}

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

.articles__from {
	flex: 1 0 10%;
	/*  */
	padding: .5rem;
	/*  */
	border-radius: 999px;
	text-align: center;
}

.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__st {
	flex: 1 0 60%;
}

.articles__icon {
	flex: 0 0 10%;
}

.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;
	justify-content: center;
	gap: 1rem;
}

.other-form__label {}

.other-form__select {}

.other-form__button {
	font-size: 1rem;
	padding: .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;
}

.form-table__tr {}

.alist-title {
	padding: 1rem;
	width: 30%;
}

.hissu {
	float: right;
	font-size: .8rem;
	padding: 0 .4rem;
	color: #fff;
	background: var(--red);
}

.alist-desc {
	padding: 1rem;
}

.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;
}

.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: 2rem 1rem;

}

.footer__inner_flex {
	display: flex;
	gap: 6rem;
}

.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;
	gap: 1rem;
}

.banner-group__item {}

.banner-group__img {
	height: 100px;
}

/*  */

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

.bottom-nav {
	display: flex;
	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;
	top: 70%;
	transform: translateY(-50%);
}

.fix-nav__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: .2rem;
	/*  */
	color: var(--text-white);
	/*  */
	width: 80px;
	height: 80px;
}

.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 {
	height: 40px;
	/*  */
	background: var(--bg-gray);
}

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

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

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

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