@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap);
/* Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
	font-weight: inherit;
	font-size: inherit;
	font-style: inherit;
	-webkit-tap-highlight-color: transparent;
}

article,
aside,
details,
figcaption,
figure,
picture,
main,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ul,
ol {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

button {
	font-family: inherit;
}

/*----------
	vars
----------*/
:root {
	/* color */
	--color-prim: #D52128;
	--color-seco: #3063B5;
	--color-txt: #222;
	--color-txt-caption: #777;
	--color-txt-caption-v2: #6F7579;
	--color-txt-link: #0062B1;
	--color-txt-hover: #D52128;
	--color-txt-hover-v2: #FA8800;
	--color-border: #E6E6E6;
	--color-bg: #F6F6F6;
	--color-caution: #DE5252;
	--color-cv: #FA8800;
	--color-red: #D52128;
	--color-prim-rgb: 213, 33, 40;
	--color-seco-rgb: 48, 99, 181;
	--color-txt-rgb: 34, 34, 34;
	--color-txt-caption-rgb: 119, 119, 119;
	--color-txt-caption-v2-rgb: 111, 117, 121;
	--color-txt-link-rgb: 0, 98, 177;
	--color-txt-hover-rgb: 213, 33, 40;
	--color-txt-hover-v2-rgb: 250, 136, 0;
	--color-border-rgb: 230, 230, 230;
	--color-bg-rgb: 246, 246, 246;
	--color-caution-rgb: 222, 82, 82;
	--color-cv-rgb: 250, 136, 0;
	--color-red-rgb: 213, 33, 40;
	/* font family */
	--font-sans: "Noto Sans JP", "ヒラギノ角ゴシック", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Hiragino Sans, "メイリオ", Meiryo, sans-serif;
	--font-serif: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	/* line height */
	--line-height-xs: 1.2;
	--line-height-s: 1.4;
	--line-height-m: 1.6;
	--line-height-l: 1.8;
	/* icons */
	--icon-access: "";
	--icon-alert: "";
	--icon-arrow1-b: "";
	--icon-arrow1-l: "";
	--icon-arrow1-r: "";
	--icon-arrow1-t: "";
	--icon-arrow2-b: "";
	--icon-arrow2-l: "";
	--icon-arrow2-r: "";
	--icon-arrow2-t: "";
	--icon-arrow3-r: "";
	--icon-blank: "";
	--icon-bookmark: "";
	--icon-calendar: "";
	--icon-cart: "";
	--icon-check: "";
	--icon-circle: "";
	--icon-circle_border: "";
	--icon-close: "";
	--icon-doc: "";
	--icon-download: "";
	--icon-excel: "";
	--icon-exclamation: "";
	--icon-first: "";
	--icon-global: "";
	--icon-humberger: "";
	--icon-last: "";
	--icon-locked: "";
	--icon-mail: "";
	--icon-minus: "";
	--icon-new: "";
	--icon-pdf: "";
	--icon-phone: "";
	--icon-pinch-in: "";
	--icon-pinch-out: "";
	--icon-play: "";
	--icon-plus: "";
	--icon-powerpoint: "";
	--icon-print: "";
	--icon-question: "";
	--icon-right_angle: "";
	--icon-rss: "";
	--icon-search: "";
	--icon-stop: "";
	--icon-swipe: "";
	--icon-to-top: "";
	--icon-unlocked: "";
	--icon-url: "";
	--icon-word: "";
	--icon-zip: "";
}

/*----------
	base
----------*/
html {
	width: 100%;
	font-size: 62.5%;
	background-color: #fff;
}
html.is-locked {
	overflow: hidden;
}

body {
	font-size: 1.6rem;
	line-height: var(--line-height-l);
	font-family: var(--font-sans);
	letter-spacing: 0;
	color: var(--color-txt);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
@media (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
}
@media print {
	body {
		min-width: 1240px;
		zoom: 0.8;
	}
}
body.is-locked {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: var(--color-txt-link);
}
@media (min-width: 768px), print {
	a:hover {
		text-decoration: none;
	}
}

img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

sup {
	vertical-align: top;
	font-size: 0.7em;
}

sub {
	vertical-align: baseline;
	font-size: 0.7em;
}

input[type=text],
textarea,
select {
	font-family: inherit;
	font-size: 1.6rem;
}

/*----------
	main header
----------*/
.l-mainheader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	z-index: 999;
}
.l-mainheader__layer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 120;
	height: 0;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s, visibility 0.4s;
}
.l-mainheader__layer.is-active, .l-mainheader__layer.is-pc-active, .l-mainheader__layer.is-pc-cat-active {
	height: auto;
	pointer-events: all;
	opacity: 1;
	visibility: visible;
	height: 100vh;
}
.l-mainheader__layer.is-pc-active {
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}
.l-mainheader__layer.is-active {
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}
@media (min-width: 1025px) {
	.l-mainheader__layer.is-active {
		z-index: 1000;
	}
}
.l-mainheader__layer.is-pc-cat-active {
	background: rgba(0, 0, 0, 0);
	z-index: 1;
}
.l-mainheader__inner {
	width: 100%;
	height: 70px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 125;
	background-color: #fff;
	border-bottom: 1px solid var(--color-border);
}
.l-mainheader__logo {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	background-color: #fff;
}
.l-mainheader__logo > a {
	display: block;
	width: auto;
	height: 100%;
	padding: 5px 20px 0;
	color: #777;
	text-align: center;
	text-decoration: none;
}
.l-mainheader__logo > a > img {
	display: block;
	width: 120px;
}
.l-mainheader__logo > a > span {
	display: block;
	margin-top: 3px;
	font-size: 1rem;
	line-height: 1;
}
.l-mainheader__logintoggle {
	display: block;
	cursor: pointer;
}
.l-mainheader__login__button a {
	display: grid;
	place-content: center;
	place-items: center;
	height: 80px;
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
	font-size: 2.1rem;
	font-weight: 500;
	text-align: center;
	line-height: 1;
}
.l-mainheader__login__button a span {
	display: block;
	font-size: 1.3rem;
	margin-bottom: 10px;
}
.l-mainheader__login .l-mainheader__login__kojin .l-mainheader__login__title {
	color: #D52128;
}
.l-mainheader__login .l-mainheader__login__kojin .l-mainheader__login__button a {
	border: 1px solid #D52128;
	background-color: #D52128;
}
@media (hover: hover) {
	.l-mainheader__login .l-mainheader__login__kojin .l-mainheader__login__button a {
		transition: background-color 0.2s, color 0.2s;
	}
	.l-mainheader__login .l-mainheader__login__kojin .l-mainheader__login__button a:hover {
		background-color: #fff;
		color: #D52128;
	}
}
.l-mainheader__login .l-mainheader__login__houjin .l-mainheader__login__title {
	color: #3063B5;
}
.l-mainheader__login .l-mainheader__login__houjin .l-mainheader__login__button a {
	border: 1px solid #3063B5;
	background-color: #3063B5;
}
.l-mainheader__login .l-mainheader__login__houjin .l-mainheader__login__button--border a {
	background-color: #fff;
	border: 1px solid #3063B5;
	color: #3063B5;
}
@media (hover: hover) {
	.l-mainheader__login .l-mainheader__login__houjin .l-mainheader__login__button a {
		transition: background-color 0.2s, color 0.2s;
	}
	.l-mainheader__login .l-mainheader__login__houjin .l-mainheader__login__button a:hover {
		background-color: #fff;
		color: #3063B5;
	}
	.l-mainheader__login .l-mainheader__login__houjin .l-mainheader__login__button--border a:hover {
		background-color: #3063B5;
		color: #fff;
	}
}
@media (max-width: 1024px) {
	.l-mainheader__mainnav {
		width: 100%;
		height: calc(100vh - 70px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		position: absolute;
		top: 70px;
		left: 0;
		overflow-x: auto;
		transition: opacity 0.2s linear, visibility 0.2s linear;
	}
	.l-mainheader__mainnav__layer {
		background-color: rgba(0, 0, 0, 0.3);
	}
	.l-mainheader__mainnav__inner {
		height: 100vh;
		padding-bottom: 80px;
		background-color: #4D5357;
		overflow: auto;
	}
	.l-mainheader__mainnav.is-sp-nav-active {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	.l-mainheader__tenpo {
		display: block;
		position: absolute;
		top: 0;
		right: 120px;
		width: 60px;
		height: 70px;
	}
	.l-mainheader__tenpo a {
		height: 100%;
		color: #222;
		font-size: 0.8rem;
		font-weight: 500;
	}
	.l-mainheader__tenpo__icon {
		display: block;
		width: 28px;
		padding-top: 16px;
		margin-inline: auto;
	}
	.l-mainheader__tenpo__text {
		display: block;
		position: absolute;
		bottom: 10px;
		width: 100%;
		text-align: center;
		line-height: 1;
	}
	.l-mainheader__logintoggle {
		display: block;
		width: 60px;
		height: 70px;
		position: absolute;
		top: 0;
		right: 60px;
		cursor: pointer;
	}
	.l-mainheader__logintoggle__icon {
		display: block;
		width: 30px;
		margin-inline: auto;
		transform: translateY(-6px);
	}
	.l-mainheader__logintoggle__text {
		display: block;
		position: absolute;
		bottom: 10px;
		width: 100%;
		color: #222;
		font-size: 0.8rem;
		font-weight: 500;
		text-align: center;
		line-height: 1;
	}
	.l-mainheader__login {
		position: relative;
		width: 100%;
		background-color: #fff;
		position: absolute;
		top: 73px;
		right: 0;
		z-index: 1001;
		height: 0;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.4s, visibility 0.4s;
	}
	.l-mainheader__login__inner {
		position: relative;
		padding: 30px 20px 60px;
	}
	.l-mainheader__login__inner::before {
		content: "";
		display: block;
		position: absolute;
		top: -10px;
		right: 83px;
		width: 0;
		height: 0;
		border-style: solid;
		border-color: transparent transparent #4D5357 transparent;
		border-width: 0px 5px 8px 5px;
	}
	.l-mainheader__login__contents {
		margin-bottom: 30px;
	}
	.l-mainheader__login__block:nth-child(2) {
		margin-top: 30px;
		padding-top: 30px;
		border-top: 1px solid #DDD;
	}
	.l-mainheader__login__title {
		margin-bottom: 10px;
		font-size: 1.8rem;
		font-weight: 500;
		text-align: center;
	}
	.l-mainheader__login .l-mainheader__login__item + .l-mainheader__login__item {
		margin-top: 10px;
	}
	.l-mainheader__login__densai {
		padding: 0 22px;
	}
	.l-mainheader__login__densai a {
		display: grid;
		place-content: center;
		place-items: center;
		width: 100%;
		height: 80px;
		background-color: #fff;
		border-radius: 10px;
		overflow: hidden;
		border: 1px solid #3063B5;
		color: #3063B5;
		font-size: 2.1rem;
		font-weight: 500;
		line-height: 1;
		text-align: center;
	}
	.l-mainheader__login__densai a span {
		display: block;
		font-size: 1.3rem;
		margin-bottom: 10px;
	}
	.l-mainheader__login__button {
		padding: 0 22px;
	}
	.l-mainheader__login__button a {
		width: 100%;
	}
	.l-mainheader__login__close {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 60px;
		line-height: 60px;
		background-color: #F6F6F6;
		cursor: pointer;
	}
	.l-mainheader__login__close span {
		color: #222;
		font-size: 1.8rem;
		font-weight: 500;
	}
	.l-mainheader__login__close span::before {
		content: "";
		display: inline-block;
		position: relative;
		width: 24px;
		height: 24px;
		margin-right: 8px;
		transform: translateY(6px);
		background: url(/saga/assets/images/common/icon_close.svg) no-repeat 0 0;
		background-size: cover;
	}
	.l-mainheader__login.is-active {
		height: auto;
		pointer-events: all;
		opacity: 1;
		visibility: visible;
	}
	.l-mainheader__navtoggle {
		display: block;
		width: 60px;
		height: 70px;
		position: absolute;
		top: 0;
		right: 0;
		cursor: pointer;
	}
	.l-mainheader__navtoggle__bar {
		position: relative;
		display: block;
		width: 28px;
		height: 18px;
		margin: 0 auto;
	}
	.l-mainheader__navtoggle__bartop, .l-mainheader__navtoggle__barmiddle, .l-mainheader__navtoggle__barbottom {
		position: absolute;
		display: block;
		width: 28px;
		height: 2px;
		background-color: #222;
		border-radius: 4px;
		transition: all 0.15s linear;
	}
	.l-mainheader__navtoggle__bartop {
		transform: translateY(-8px) rotate(0deg);
	}
	.l-mainheader__navtoggle__barbottom {
		transform: translateY(8px) rotate(0deg);
	}
	.l-mainheader__navtoggle__text {
		display: block;
		position: absolute;
		bottom: 10px;
		width: 100%;
		color: #222;
		font-size: 0.8rem;
		font-weight: 500;
		text-align: center;
	}
	.l-mainheader__navtoggle.is-sp-nav-active {
		background-color: #4D5357;
	}
	.l-mainheader__navtoggle.is-sp-nav-active .l-mainheader__navtoggle__bartop {
		opacity: 0;
	}
	.l-mainheader__navtoggle.is-sp-nav-active .l-mainheader__navtoggle__barmiddle {
		background-color: #fff;
		transform: translateY(0) rotate(45deg);
	}
	.l-mainheader__navtoggle.is-sp-nav-active .l-mainheader__navtoggle__barbottom {
		background-color: #fff;
		transform: translateY(0) rotate(-45deg);
	}
	.l-mainheader__navtoggle.is-sp-nav-active .l-mainheader__navtoggle__text {
		color: #fff;
	}
	.l-mainheader__searchtoggle {
		display: none;
	}
	.l-mainheader__search {
		padding: 20px;
	}
	.l-mainheader__search__input-wrapper {
		position: relative;
	}
	.l-mainheader__search__input {
		width: 100%;
		padding-right: 40px;
		padding-left: 20px;
		background-color: #747474;
		border-radius: 100px;
		color: #fff;
		line-height: 40px;
	}
	.l-mainheader__search__input::placeholder {
		color: #fff;
		font-size: 1.4rem;
	}
	.l-mainheader__search__submit {
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translateY(-50%);
		background: url(/saga/assets/images/common/icon_search_white.svg) no-repeat center center/cover;
		width: 16px;
		height: 16px;
		text-indent: -9999px;
	}
	.l-mainheader__search__title, .l-mainheader__search__close {
		display: none;
	}
	.l-mainheader__quicklink {
		display: none;
		padding: 30px 20px;
	}
	.l-mainheader__utility > li {
		border-top: 1px solid #616669;
	}
	.l-mainheader__utility > li > a {
		position: relative;
		display: grid;
		place-content: center start;
		min-height: 60px;
		padding: 14px 20px 14px 20px;
		color: #fff;
		font-size: 1.4rem;
		font-weight: 500;
		letter-spacing: 0.06em;
	}
	.l-mainheader__utility > li > a::after {
		font-family: iconfont !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: "\ea09";
		position: absolute;
		top: 50%;
		right: 22px;
		transform: translateY(-50%);
		display: grid;
		place-content: center;
		font-size: 1.5rem;
		font-weight: 500;
	}
	.l-mainheader__navclose {
		display: block;
		width: 100%;
		height: 50px;
		border-top: 1px solid #616669;
		color: #fff;
		font-size: 1.5rem;
		font-weight: 500;
		text-align: center;
		cursor: pointer;
	}
	.l-mainheader__navclose > span {
		display: inline-block;
	}
	.l-mainheader__navclose > span::before {
		font-family: iconfont !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: "\ea25";
		display: inline-block;
		rotate: 45deg;
		translate: 0 0.15em;
		margin-right: 8px;
	}
}
@media (min-width: 1025px) {
	.l-mainheader {
		height: 151px;
	}
	.l-mainheader__inner {
		width: 100%;
		height: 151px;
		background-color: #fff;
		translate: 0 0;
		transition: translate 0.4s ease-out;
	}
	.l-mainheader__inner::before {
		content: "";
		display: block;
		width: 100%;
		height: 60px;
		position: absolute;
		top: 0;
		left: 0;
		background-color: #4D5357;
	}
	.l-mainheader__logo > a {
		padding: 20px 50px 0 30px;
		width: 320px;
	}
	.l-mainheader__logo > a img {
		width: 240px;
	}
	.l-mainheader__logo > a > span {
		margin-top: 5px;
		color: var(--color-txt-caption);
		font-size: 1.1rem;
		text-align: center;
	}
	.l-mainheader__logintoggle {
		display: block;
		position: absolute;
		top: 80px;
		right: 30px;
		width: 170px;
		height: 50px;
		background-color: #3063B5;
		border: 1px solid #3063B5;
		border-radius: 10px;
		cursor: pointer;
		z-index: 1;
	}
	.l-mainheader__logintoggle__text {
		color: #fff;
		font-weight: 700;
		line-height: 48px;
		font-size: 1.6rem;
	}
	.l-mainheader__logintoggle::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-2px);
		right: 11px;
		width: 15px;
		height: 8px;
		background: url(/saga/assets/images/common/icon_arrow_down_white.svg) no-repeat 0 0;
		background-size: cover;
	}
	.l-mainheader__logintoggle__icon {
		display: none;
	}
	.l-mainheader__login {
		position: relative;
		width: 740px;
		background-color: #fff;
		position: absolute;
		top: 150px;
		right: 30px;
		z-index: 1001;
		height: 0;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.4s, visibility 0.4s;
	}
	.l-mainheader__login__inner {
		position: relative;
		height: 330px;
		padding: 20px 50px;
	}
	.l-mainheader__login__inner::before {
		content: "";
		display: block;
		position: absolute;
		top: -16px;
		right: 83px;
		width: 0;
		height: 0;
		border-style: solid;
		border-color: transparent transparent #fff transparent;
		border-width: 0px 10px 16px 10px;
	}
	.l-mainheader__login__contents {
		display: flex;
	}
	.l-mainheader__login__block {
		padding: 15px 0;
	}
	.l-mainheader__login__block:nth-child(2) {
		margin-left: 52px;
		padding-left: 52px;
		border-left: 1px solid #DDD;
	}
	.l-mainheader__login__title {
		margin-bottom: 20px;
		font-size: 1.8rem;
		font-weight: 500;
		text-align: center;
	}
	.l-mainheader__login__button a {
		width: 268px;
	}
	.l-mainheader__login .l-mainheader__login__item + .l-mainheader__login__item {
		margin-top: 10px;
	}
	.l-mainheader__login__densai {
		margin-top: 10px;
		text-align: center;
	}
	.l-mainheader__login__densai a {
		position: relative;
		color: #3063B5;
		font-size: 1.4rem;
	}
	.l-mainheader__login__densai a::before {
		content: "";
		display: inline-block;
		width: 18px;
		height: 18px;
		background: url(/saga/assets/images/common/icon_arrow_circle_right_border.svg) no-repeat 0 0;
		background-size: cover;
		color: #222;
		transform: translateY(3px);
		margin-right: 8px;
	}
	.l-mainheader__login__close {
		position: absolute;
		top: 10px;
		right: 8px;
		display: grid;
		place-content: center;
		width: 24px;
		height: 24px;
		cursor: pointer;
	}
	.l-mainheader__login__close::before {
		content: "";
		display: inline-block;
		position: relative;
		width: 24px;
		height: 24px;
		transform: translateY(2px);
		background: url(/saga/assets/images/common/icon_close.svg) no-repeat 0 0;
		background-size: cover;
	}
	.l-mainheader__login__close span {
		display: none;
	}
	.l-mainheader__login.is-active {
		height: auto;
		pointer-events: all;
		opacity: 1;
		visibility: visible;
	}
	.l-mainheader__tenpo {
		display: none;
	}
	.l-mainheader__navtoggle {
		display: none;
	}
	.l-mainheader__searchtoggle {
		display: grid;
		place-items: center;
		width: 40px;
		height: 40px;
		position: absolute;
		top: 10px;
		right: 30px;
		background-color: #E6E6E6;
		border-radius: 100%;
		cursor: pointer;
		z-index: 1;
	}
	.l-mainheader__searchtoggle::before {
		content: "";
		display: block;
		width: 17px;
		height: 17px;
		background: url(/saga/assets/images/common/icon_search_black.svg) no-repeat 0 0;
		background-size: cover;
		transform: translate(1px, -2px);
	}
	.l-mainheader__search {
		position: relative;
		width: 500px;
		background-color: #fff;
		position: absolute;
		top: 76px;
		right: 20px;
		z-index: 1001;
		height: 0;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.4s, visibility 0.4s;
	}
	.l-mainheader__search__inner {
		position: relative;
		display: grid;
		place-content: center;
		place-items: center;
		height: 160px;
	}
	.l-mainheader__search__inner::before {
		content: "";
		display: block;
		position: absolute;
		top: -16px;
		right: 20px;
		width: 0;
		height: 0;
		border-style: solid;
		border-color: transparent transparent #fff transparent;
		border-width: 0px 10px 16px 10px;
	}
	.l-mainheader__search__title {
		margin-bottom: 20px;
		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1;
	}
	.l-mainheader__search__input-wrapper {
		position: relative;
	}
	.l-mainheader__search__input {
		width: 368px;
		padding-right: 52px;
		padding-left: 27px;
		background-color: #F6F6F6;
		color: #666;
		line-height: 48px;
	}
	.l-mainheader__search__input::placeholder {
		color: #666;
		font-size: 1.3rem;
	}
	.l-mainheader__search__submit {
		position: absolute;
		top: 0;
		right: 0;
		display: grid;
		place-content: center;
		width: 52px;
		height: 48px;
		background: #222 url(/saga/assets/images/common/icon_search_white.svg) no-repeat center center/22px auto;
		cursor: pointer;
		text-indent: -9999px;
	}
	.l-mainheader__search__close {
		position: absolute;
		top: 10px;
		right: 8px;
		display: grid;
		place-content: center;
		width: 24px;
		height: 24px;
		cursor: pointer;
	}
	.l-mainheader__search__close::before {
		content: "";
		display: inline-block;
		position: relative;
		margin-right: 8px;
		width: 24px;
		height: 24px;
		transform: translateY(2px);
		background: url(/saga/assets/images/common/icon_close.svg) no-repeat 0 0;
		background-size: cover;
	}
	.l-mainheader__search.is-pc-active {
		height: auto;
		pointer-events: all;
		opacity: 1;
		visibility: visible;
	}
	.l-mainheader__quicklink {
		display: none;
	}
	.l-mainheader__utility {
		display: flex;
		justify-content: flex-end;
		height: 60px;
		padding-top: 12px;
		position: absolute;
		top: 0;
		right: 90px;
		z-index: 1;
	}
	.l-mainheader__utility::before {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 1px;
		height: 12px;
		background-color: #DDDDDD;
	}
	.l-mainheader__utility > li {
		margin-left: 20px;
	}
	.l-mainheader__utility > li > a {
		display: block;
		position: relative;
		text-decoration: none;
		font-size: 1.4rem;
		line-height: 36px;
		color: #fff;
	}
	.l-mainheader__navclose {
		display: none;
	}
	.l-mainheader__layer {
		background-color: rgba(0, 0, 0, 0.5);
	}
	.l-mainheader.pc-megamenu-active .l-mainheader__layer {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
		cursor: pointer;
	}
}
@media (hover: hover) {
	.l-mainheader__utility > li > a {
		transition: color 0.2s;
	}
	.l-mainheader__utility > li > a:hover {
		color: #D52128;
	}
	.l-mainheader__logintoggle {
		transition: background-color 0.2s;
	}
	.l-mainheader__logintoggle__text {
		transition: color 0.2s;
	}
	.l-mainheader__logintoggle:hover {
		background-color: #fff;
	}
	.l-mainheader__logintoggle:hover .l-mainheader__logintoggle__text {
		color: #3063B5;
	}
	.l-mainheader__logintoggle:hover::after {
		background: url(/saga/assets/images/common/icon_arrow_down_blue.svg) no-repeat 0 0;
	}
	.l-mainheader__login__densai a {
		transition: color 0.2s;
	}
	.l-mainheader__login__densai a:hover {
		color: #D52128;
	}
	.l-mainheader__searchtoggle {
		transition: background-color 0.2s;
	}
	.l-mainheader__searchtoggle:hover {
		background-color: #fff;
	}
	.l-mainheader__searchtoggle:hover::before {
		background-image: url(/saga/assets/images/common/icon_search_blue.svg);
	}
}
@media (min-width: 1025px) and (max-width: 1360px) {
	.l-mainheader {
		height: 131px;
	}
	.l-mainheader__inner {
		height: 131px;
	}
	.l-mainheader__inner::before {
		height: 40px;
	}
	.l-mainheader__logo > a {
		padding: 20px 20px 0 20px;
		width: 220px;
	}
	.l-mainheader__logo > a img {
		width: 180px;
	}
	.l-mainheader__utility {
		height: 40px;
		padding-top: 0;
		right: 75px;
	}
	.l-mainheader__utility > li {
		margin-left: 20px;
	}
	.l-mainheader__utility > li > a {
		font-size: 1.2rem;
		line-height: 40px;
		color: #fff;
	}
	.l-mainheader__logintoggle {
		top: 60px;
	}
	.l-mainheader__login {
		top: 130px;
	}
	.l-mainheader__search {
		top: 40px;
	}
	.l-mainheader__searchtoggle {
		top: 5px;
		width: 30px;
		height: 30px;
	}
	.l-mainheader__search {
		top: 60px;
	}
}
@media print {
	.l-mainheader {
		display: none;
	}
}

.l-mainheader.is-scrollup {
	position: fixed;
	animation: scrollupSP 0.5s forwards;
}
@media (min-width: 768px), print {
	.l-mainheader.is-scrollup {
		min-width: 100%;
		animation: scrollupPC 0.5s forwards;
	}
}

@keyframes scrollupSP {
	from {
		transform: translateY(-70px);
	}
	to {
		transform: translateY(0);
	}
}
@keyframes scrollupPC {
	from {
		transform: translateY(-151px);
	}
	to {
		transform: translateY(0);
	}
}
.l-mainheader.is-scrolldown {
	position: fixed;
	animation: scrolldownSP 0.5s forwards;
}
@media (min-width: 768px), print {
	.l-mainheader.is-scrolldown {
		min-width: 100%;
		animation: scrolldownPC 0.5s forwards;
	}
}

@keyframes scrolldownSP {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-70px);
	}
}
@keyframes scrolldownPC {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-151px);
	}
}
/*----------
	global nav
----------*/
@media (min-width: 1025px) {
	.l-mainnav {
		width: 100%;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.l-mainnav__global {
		display: flex;
		justify-content: flex-end;
		margin-right: 194px;
	}
	.l-mainnav__global__top > a {
		display: grid;
		place-items: center;
		width: 100%;
		height: 60px;
		position: relative;
		background: transparent;
		text-decoration: none;
		color: #fff;
		font-weight: 400;
		font-size: 1.4rem;
		transition: color 0.2s;
		padding: 0 24px;
	}
	.l-mainnav__global__top button {
		display: none;
	}
	.l-mainnav__global > li.current .l-mainnav__global__top {
		background-color: var(--color-prim);
	}
	.l-mainnav__global > li.current .l-mainnav__global__top > a {
		font-weight: 700;
		pointer-events: none;
	}
	.l-mainnav__category {
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		height: 90px;
		background-color: #fff;
	}
	.l-mainnav__category.visible {
		display: block;
	}
	.l-mainnav__category > ul {
		display: flex;
		justify-content: center;
		align-items: stretch;
	}
	.l-mainnav__category > ul > li {
		flex: 0 0 auto;
		position: relative;
	}
	.l-mainnav__category__top > a {
		display: grid;
		place-items: center;
		width: 100%;
		height: 90px;
		padding: 10px 40px;
		position: relative;
		background-color: #fff;
		text-decoration: none;
		font-size: 2rem;
		font-weight: 700;
		color: var(--color-text);
		z-index: 1;
	}
	.l-mainnav__category__top > a::after {
		content: "";
		display: block;
		width: calc(100% - 80px);
		height: 4px;
		position: absolute;
		bottom: 0;
		left: 50%;
		translate: -50% 0;
		background-color: #D52128;
		transition: scale 0.2s ease-out;
		scale: 0 0;
	}
	.l-mainnav__category__top > a.is-pc-cat-active {
		color: var(--color-prim);
	}
	.l-mainnav__category__top > a.is-pc-cat-active::after {
		scale: 1 1;
	}
	.l-mainnav__category > li:not(:has(.l-mainnav__sub)) .l-mainnav__category__top > a::after {
		display: none;
	}
	.l-mainnav__sub {
		position: fixed;
		top: 150px;
		left: 0;
		z-index: 130;
		width: 100%;
		padding: 40px 80px 90px;
		background-color: #fff;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.4s, visibility 0.4s;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	}
	.l-mainnav__sub::before {
		content: "";
		display: block;
		width: 100%;
		height: 20px;
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
		position: absolute;
		top: -20px;
		left: 0;
	}
	.l-mainnav__sub__inner {
		width: 1200px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 280px 1fr;
		gap: 0 30px;
	}
	.l-mainnav__sub a {
		text-decoration: none;
		color: var(--color-text);
		font-size: 1.6rem;
		line-height: var(--lh-s);
		font-weight: 500;
	}
	.l-mainnav__sub__upper {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
	.l-mainnav__sub__upper > li > a {
		display: grid;
		place-items: center start;
		min-height: 64px;
		padding: 0 20px;
		border: 1px solid #D52128;
		border-radius: 6px;
	}
	.l-mainnav__sub__upper > li > a span {
		position: relative;
		padding-left: 28px;
		font-weight: 400;
		font-size: 1.6rem;
		line-height: 1.57;
	}
	.l-mainnav__sub__upper > li > a span::before {
		font-family: iconfont !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: "\ea05";
		display: inline-block;
		position: absolute;
		top: 5px;
		left: 0;
		color: #D52128;
	}
	.l-mainnav__sub__lower {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		padding-top: 20px;
		margin-top: 20px;
		border-top: 1px solid #DDD;
	}
	.l-mainnav__sub__lower > li > a {
		display: grid;
		min-height: 64px;
		place-items: center start;
		border-radius: 6px;
		background-color: #FFEFEF;
	}
	.l-mainnav__sub__lower > li > a span {
		position: relative;
		padding: 0 20px;
		font-weight: 400;
		font-size: 1.6rem;
		line-height: 1.57;
	}
	.l-mainnav__sub__lower > li > a span::before {
		font-family: iconfont !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: "\ea05";
		display: inline-block;
		color: #D52128;
		transform: translateY(3px);
		margin-right: 8px;
	}
	.l-mainnav__sub__top {
		grid-column: 1/2;
		grid-row: 1/3;
	}
	.l-mainnav__sub__top > a {
		display: block;
	}
	.l-mainnav__sub__top > a figure {
		overflow: hidden;
	}
	.l-mainnav__sub__top > a > span {
		position: relative;
		display: inline-block;
		margin-top: 20px;
		font-size: 1.8rem;
		font-weight: 500;
	}
	.l-mainnav__sub__top > a > span::before {
		font-family: iconfont !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: "\ea05";
		display: inline-block;
		color: inherit;
		transform: translateY(3px);
		margin-right: 8px;
	}
	.l-mainnav__sub__close {
		width: auto;
		height: 40px;
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		padding: 0 20px;
		font-size: 1.8rem;
		font-weight: 500;
		text-align: center;
		line-height: 1;
		cursor: pointer;
		transition: opacity 0.4s;
	}
	.l-mainnav__sub__close > span {
		display: inline-block;
	}
	.l-mainnav__sub__close > span::before, .l-mainnav__sub__close > span::after {
		content: "";
		display: inline-block;
		position: absolute;
		top: calc(50% + 2px);
		left: 0;
		width: 1px;
		height: 17px;
		background: #4D5357;
	}
	.l-mainnav__sub__close > span::before {
		transform: translateY(-50%) rotate(45deg);
	}
	.l-mainnav__sub__close > span::after {
		transform: translateY(-50%) rotate(-45deg);
	}
	.l-mainnav__sub.is-pc-cat-active {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
}
@media (hover: hover) {
	.l-mainnav__global__top > a {
		transition: all 0.2s;
	}
	.l-mainnav__global__top > a:hover {
		color: #fff;
		font-weight: 500;
		background-color: #D52128;
	}
	.l-mainnav__category__top > a {
		transition: color 0.2s;
	}
	.l-mainnav__category__top > a::after {
		scale: 0 0;
	}
	.l-mainnav__category__top > a:hover {
		color: var(--color-prim);
	}
	.l-mainnav__category__top > a:hover::after {
		scale: 1 1;
	}
	.l-mainnav__sub {
		transition: opacity 0.4s, visibility 0.4s;
	}
	.l-mainnav__sub__upper > li > a {
		transition: background-color 0.2s, color 0.2s;
	}
	.l-mainnav__sub__upper > li > a span::before {
		transition: color 0.2s;
	}
	.l-mainnav__sub__upper > li > a:hover {
		background-color: #D52128;
		color: #fff;
	}
	.l-mainnav__sub__upper > li > a:hover span {
		font-weight: 500;
	}
	.l-mainnav__sub__upper > li > a:hover span::before {
		color: #fff;
	}
	.l-mainnav__sub__lower > li > a {
		transition: background-color 0.2s, color 0.2s;
	}
	.l-mainnav__sub__lower > li > a span::before {
		transition: color 0.2s;
	}
	.l-mainnav__sub__lower > li > a:hover {
		background-color: #D52128;
		color: #fff;
	}
	.l-mainnav__sub__lower > li > a:hover span {
		font-weight: 500;
	}
	.l-mainnav__sub__lower > li > a:hover span::before {
		color: #fff;
	}
	.l-mainnav__sub__top > a img {
		transform: scale(1);
		transition: transform 0.3s;
	}
	.l-mainnav__sub__top > a > span {
		transition: color 0.2s;
	}
	.l-mainnav__sub__top > a > span::after {
		translate: 0 0;
		transition: translate 0.2s;
	}
	.l-mainnav__sub__top > a:hover img {
		transform: scale(1.1);
	}
	.l-mainnav__sub__top > a:hover > span {
		color: var(--color-prim);
	}
	.l-mainnav__sub__top > a:hover > span::after {
		translate: 4px 0;
	}
	.l-mainnav__sub__close:hover {
		opacity: 0.6;
	}
}
@media (min-width: 1025px) and (max-width: 1360px) {
	.l-mainnav {
		position: absolute;
		top: 0;
	}
	.l-mainnav__global {
		margin-right: 167px;
	}
	.l-mainnav__global__top > a {
		height: 40px;
		font-size: 1.2rem;
		padding: 0 10px;
	}
	.l-mainnav__category {
		top: 40px;
	}
	.l-mainnav__category__top > a {
		padding: 10px 30px;
		font-size: 1.8rem;
	}
	.l-mainnav__category__top > a::after {
		width: calc(100% - 60px);
	}
	.l-mainnav__sub {
		top: 130px;
	}
	.l-mainnav__sub__inner {
		width: 100%;
	}
}
@media (min-width: 1025px) and (max-width: 1140px) {
	.l-mainnav__category__top > a {
		padding: 10px 20px;
		font-size: 1.6rem;
	}
	.l-mainnav__category__top > a::after {
		width: calc(100% - 40px);
	}
}
/*----------
	global nav
----------*/
@media (max-width: 1024px) {
	.l-mainnav {
		margin-top: -1px;
	}
	.l-mainnav__global__top {
		position: relative;
		border-top: 1px solid #616669;
	}
	.l-mainnav__global__top > a {
		display: grid;
		place-content: center start;
		min-height: 60px;
		padding: 14px 20px 14px 20px;
		color: #fff;
		font-size: 1.4rem;
		font-weight: 500;
		letter-spacing: 0.06em;
	}
	.l-mainnav__global__top > a::after {
		font-family: iconfont !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: "\ea09";
		position: absolute;
		top: 50%;
		right: 22px;
		transform: translateY(-50%);
		display: grid;
		place-content: center;
		font-size: 1.5rem;
		font-weight: 500;
	}
	.l-mainnav__global__top:has(.l-mainnav__toggle) > a {
		padding-right: 50px;
	}
	.l-mainnav__global__top:has(.l-mainnav__toggle) > a::after {
		content: "";
		font-family: iconfont !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: "\ea25";
		display: block;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		font-size: 1.6rem;
		font-weight: 500;
		line-height: 22px;
		scale: 1 1;
		color: #fff;
	}
	.is-sp-global-active .l-mainnav__category {
		height: auto;
		pointer-events: all;
		opacity: 1;
		visibility: visible;
	}
	.is-sp-global-active .l-mainnav__global__top a::after {
		content: var(--icon-minus);
		font-size: 2.1rem;
		right: 18px;
	}
	.l-mainnav__category {
		height: 0;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.4s, visibility 0.4s;
	}
	.l-mainnav__category__top {
		position: relative;
		background-color: #E6E6E6;
		border-bottom: 1px solid #fff;
	}
	.l-mainnav__category__top > a {
		position: relative;
		display: grid;
		place-content: center start;
		min-height: 48px;
		padding: 14px 20px 14px 20px;
		color: #222;
		font-size: 1.2rem;
		font-weight: 500;
		line-height: 1.4;
		letter-spacing: 0.06em;
	}
	.l-mainnav__category__top:has(.l-mainnav__toggle) > a {
		padding-right: 50px;
	}
	.l-mainnav__category__top:has(.l-mainnav__toggle) > a::after {
		content: "";
		font-family: iconfont !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: "\ea25";
		display: block;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		font-size: 1.6rem;
		font-weight: 500;
		line-height: 22px;
		scale: 1 1;
		color: #222;
	}
	.l-mainnav__sub {
		height: 0;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.4s, visibility 0.4s;
		border: 1px solid var(--color-text);
		border-top: none;
		background-color: #fff;
		overflow: hidden;
	}
	.l-mainnav__sub__upper, .l-mainnav__sub__lower {
		padding-left: 0;
		padding-right: 0;
	}
	.l-mainnav__sub__upper > li, .l-mainnav__sub__lower > li {
		border-bottom: 1px solid #E6E6E6;
	}
	.l-mainnav__sub__upper > li > a, .l-mainnav__sub__lower > li > a {
		display: grid;
		place-content: center start;
		min-height: 48px;
		padding: 14px 20px;
		color: #222;
		font-size: 1.2rem;
		line-height: 1.4;
		letter-spacing: 0.06em;
	}
	.l-mainnav__sub__top {
		padding-left: 0;
		padding-right: 0;
		border-bottom: 1px solid #E6E6E6;
	}
	.l-mainnav__sub__top > a {
		display: grid;
		place-content: center start;
		min-height: 48px;
		padding: 14px 20px;
		color: #222;
		font-size: 1.2rem;
		line-height: 1.4;
	}
	.l-mainnav__sub__top figure {
		display: none;
	}
	.l-mainnav__sub__close {
		display: none;
	}
	.is-sp-cat-active .l-mainnav__sub {
		height: auto;
		pointer-events: all;
		opacity: 1;
		visibility: visible;
	}
	.is-sp-cat-active .l-mainnav__category__top a::after {
		content: var(--icon-minus);
		font-size: 2.1rem;
		right: 18px;
	}
}
/*----------
	main footer
----------*/
@media print {
	footer {
		display: none;
	}
}

.l-mainfooter {
	border-top: 1px solid #e6E6E6;
	background: #fff;
	color: #4D5357;
}
@media (min-width: 768px), print {
	.l-mainfooter {
		min-width: 1280px;
	}
}
.l-mainfooter__upper {
	padding-block: 30px;
}
@media (min-width: 768px), print {
	.l-mainfooter__upper {
		padding-block: 60px;
	}
}
.l-mainfooter__upper-inner {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
@media (min-width: 768px), print {
	.l-mainfooter__upper-inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}
@media (max-width: 767px) {
	.l-mainfooter__backhead a {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-size: 1.6rem;
		font-weight: bold;
		background-color: #4D5357;
		height: 60px;
	}
	.l-mainfooter__backhead a span::before {
		content: "";
		display: inline-block;
		margin-right: 10px;
		width: 12px;
		height: 8px;
		background-color: #fff;
		clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
		transform: translateY(-2px);
	}
	.l-mainfooter__backhead a i {
		position: absolute;
		right: 15px;
		bottom: 2px;
		display: block;
		width: 56px;
		height: 80px;
		background: url(/saga/assets/images/common/footer_ebisu.png) no-repeat center center/contain;
	}
}
@media (min-width: 768px), print {
	.l-mainfooter__backhead {
		position: relative;
		max-width: 1280px;
		margin-inline: auto;
	}
	.l-mainfooter__backhead a {
		position: fixed;
		bottom: 40px;
		right: 40px;
		width: 80px;
		z-index: 9999;
		transition: transform 0.3s;
	}
	.l-mainfooter__backhead a span {
		position: relative;
		width: 60px;
		height: 60px;
		margin-inline: auto;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		border: 2px solid #222;
		border-radius: 50%;
		background-color: #ffffff;
		font-size: 1.2rem;
		line-height: 1.3;
		font-weight: bold;
		color: #222;
		z-index: 1;
	}
	.l-mainfooter__backhead a span::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		border-style: solid;
		border-width: 8px 4px 0 4px;
		border-color: #222 transparent transparent;
		translate: -50% 100%;
	}
	.l-mainfooter__backhead a span::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		border-style: solid;
		border-width: 3.5px 1.8px 0 1.8px;
		border-color: #ffffff transparent transparent;
		translate: -50% 100%;
	}
	.l-mainfooter__backhead a i {
		margin-top: 10px;
		display: block;
		width: 80px;
		height: 115px;
		background: url(/saga/assets/images/common/footer_ebisu.png) no-repeat center center/contain;
	}
	.l-mainfooter__backhead a:hover {
		transform: translateY(-20px);
	}
}
.l-mainfooter__lower {
	border-top: 1px solid #e6E6E6;
}
.l-mainfooter__lower-inner {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	max-width: 960px;
	padding-block: 20px 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media (min-width: 768px), print {
	.l-mainfooter__lower-inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}
@media (min-width: 768px), print {
	.l-mainfooter__lower-inner {
		flex-direction: row;
		align-items: flex-start;
		gap: 50px;
		padding: 30px 0;
	}
}
.l-mainfooter__logo > img {
	display: block;
	max-width: 200px;
	margin: auto;
}
.l-mainfooter__trade {
	font-size: 1.4rem;
}
@media (min-width: 768px), print {
	.l-mainfooter__trade dl {
		display: flex;
	}
}
.l-mainfooter__copyright {
	background-color: #F2F2F2;
	padding: 14px 20px;
	text-align: center;
	font-size: 1.2rem;
	color: #777;
}
@media (min-width: 768px), print {
	.l-mainfooter__copyright {
		padding-block: 18px;
	}
}

.l-fnav-main__items {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media (min-width: 768px), print {
	.l-fnav-main__items {
		flex-direction: row;
		justify-content: center;
		gap: 0;
	}
}
.l-fnav-main__item {
	line-height: 1;
}
.l-fnav-main__item a {
	color: inherit;
	font-size: 1.6rem;
	font-weight: 600;
}
@media (min-width: 768px), print {
	.l-fnav-main__item a {
		font-size: 1.8rem;
		font-weight: 700;
	}
	.l-fnav-main__item a > span {
		display: block;
		padding: 0 20px;
	}
}
@media (min-width: 768px), print {
	.l-fnav-main__item + .l-fnav-main__item {
		border-left: 1px solid currentColor;
	}
}
@media (min-width: 768px), print {
	.l-fnav-main__item > a {
		transition: color 0.2s;
	}
	.l-fnav-main__item > a:hover {
		color: var(--color-txt-hover);
	}
}

.l-fnav-sub {
	margin-top: 32px;
}
@media (min-width: 768px), print {
	.l-fnav-sub {
		margin-top: 40px;
		max-width: 960px;
		margin-inline: auto;
	}
}
.l-fnav-sub__items {
	display: inline-block;
}
@media (min-width: 768px), print {
	.l-fnav-sub__items {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px 0;
	}
}
.l-fnav-sub__item {
	display: inline;
	font-size: 1.2rem;
	line-height: 1;
}
@media (min-width: 768px), print {
	.l-fnav-sub__item {
		font-size: 1.4rem;
	}
}
.l-fnav-sub__item > a {
	color: inherit;
}
.l-fnav-sub__item:not(:last-child)::after {
	content: "|";
	padding: 0 12px;
}
@media (min-width: 768px), print {
	.l-fnav-sub__item:not(:last-child)::after {
		padding: 0 20px;
	}
}
@media (min-width: 768px), print {
	.l-fnav-sub__item > a {
		transition: color 0.2s;
	}
	.l-fnav-sub__item > a:hover {
		color: var(--color-txt-hover);
	}
}

/*----------
	main content
----------*/
.l-content {
	width: 100%;
	position: relative;
	overflow-x: hidden;
	padding-top: 70px;
	padding-bottom: 80px;
}
@media (min-width: 768px), print {
	.l-content {
		padding-bottom: 120px;
		min-width: 1280px;
	}
}
@media (min-width: 1025px) and (max-width: 1360px) {
	.l-content {
		padding-top: 130px;
	}
}
@media (min-width: 1361px) {
	.l-content {
		padding-top: 150px;
	}
}

.l-structure--double {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
@media (min-width: 768px), print {
	.l-structure--double {
		padding-left: 40px;
		padding-right: 40px;
	}
}
.l-structure--double .l-structure__side {
	margin-top: 40px;
}
@media (min-width: 768px), print {
	.l-structure--double {
		display: flex;
	}
	.l-structure--double .l-structure__main {
		flex: 1;
	}
	.l-structure--double .l-structure__side {
		width: 23.1666666667%;
		margin-left: 2.5%;
		margin-top: 0;
		padding: 0;
	}
}

.l-section {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
@media (min-width: 768px), print {
	.l-section {
		padding-left: 40px;
		padding-right: 40px;
	}
}
.l-section--gapless {
	padding-left: 0;
	padding-right: 0;
}

.l-sidenav {
	padding: 24px 24px 40px;
	border-radius: 3px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.l-sidenav__title {
	margin-bottom: 25px;
	line-height: 1.2;
	font-weight: bold;
	border-bottom: 2px solid var(--color-prim);
}
.l-sidenav__title > a {
	display: block;
	color: inherit;
}
.l-sidenav__title > span,
.l-sidenav__title > a > span {
	display: block;
	padding-bottom: 13px;
}
.l-sidenav__item {
	line-height: 1.2;
}
.l-sidenav__item:not(:last-child) {
	margin-bottom: 20px;
}
.l-sidenav__item > a {
	display: block;
	color: inherit;
}
.l-sidenav__item > span,
.l-sidenav__item > a > span {
	display: block;
}
@media (min-width: 768px), print {
	.l-sidenav__title > a {
		transition: color 0.2s;
	}
	.l-sidenav__title > a:hover {
		color: var(--color-txt-hover);
	}
	.l-sidenav__item > a {
		transition: color 0.2s;
	}
	.l-sidenav__item > a:hover {
		color: var(--color-txt-hover);
	}
}

.l-breadcrumb__list {
	display: inline-flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	font-size: 1.2rem;
	line-height: 1.2;
}
.l-breadcrumb__list > li {
	display: block;
}
.l-breadcrumb__list > li > a {
	text-decoration: none;
	color: var(--color-txt-caption);
}
.l-breadcrumb__list > li + li::before {
	content: ">";
	display: inline-block;
	margin: 0 8px;
}
.l-breadcrumb__list > li:last-child > a {
	pointer-events: none;
	font-weight: bold;
	color: var(--color-txt);
}
@media (max-width: 767px) {
	.l-breadcrumb__inner {
		padding-block: 12px;
		width: 100%;
		overflow-x: auto;
	}
	.l-breadcrumb__list {
		width: 100%;
		max-width: 1280px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 20px;
		padding-right: 20px;
		width: auto;
		max-width: none;
	}
}
@media (max-width: 767px) and (min-width: 768px), print and (max-width: 767px) {
	.l-breadcrumb__list {
		padding-left: 40px;
		padding-right: 40px;
	}
}
@media (min-width: 768px), print {
	.l-breadcrumb__inner {
		padding-block: 24px;
		width: 100%;
		max-width: 1280px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 768px) and (min-width: 768px), print and (min-width: 768px), print and (min-width: 768px), print {
	.l-breadcrumb__inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}
@media (min-width: 768px), print {
	.l-breadcrumb__list {
		display: block;
		white-space: normal;
	}
	.l-breadcrumb__list > li {
		display: inline;
	}
	.l-breadcrumb__list > li > a:hover {
		text-decoration: underline;
	}
}

.l-localnav {
	background: var(--color-bg);
}
.l-localnav__inner {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 30px;
	padding-bottom: 40px;
}
@media (min-width: 768px), print {
	.l-localnav__inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}
.l-localnav__categories + .l-localnav__categories {
	margin-top: 20px;
}
.l-localnav__category + .l-localnav__category {
	margin-top: 20px;
}
.l-localnav__item--featured {
	padding-bottom: 12px;
	border-bottom: 1px solid var(--color-border);
}
.l-localnav__item + .l-localnav__item {
	margin-top: 20px;
}
.l-localnav__thumb {
	margin-bottom: 10px;
}
@media (min-width: 768px), print {
	.l-localnav__inner {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
		padding-top: 50px;
		padding-bottom: 50px;
		overflow: hidden;
	}
	.l-localnav__categories {
		display: flex;
		align-items: flex-start;
	}
	.l-localnav__categories--regular {
		flex: 1;
	}
	.l-localnav__categories--featured {
		margin-right: 112px;
	}
	.l-localnav__categories + .l-localnav__categories {
		margin-top: 0;
	}
	.l-localnav__category {
		flex: 1 1 auto;
		max-width: 250px;
		margin-right: 30px;
	}
	.l-localnav__category--featured {
		margin-right: 35px;
	}
	.l-localnav__category:last-child {
		margin-right: 0;
	}
	.l-localnav__category + .l-localnav__category {
		margin-top: 0;
	}
	.l-localnav__item--featured {
		padding-bottom: 0;
		border-bottom: none;
	}
	.l-localnav__item > a {
		transition: color 0.2s;
	}
	.l-localnav__item > a:hover {
		color: var(--color-txt-hover);
	}
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
	.l-localnav__categories--featured {
		margin-bottom: 40px;
	}
	.l-localnav__categories--regular {
		flex: 1 0 auto;
		width: 100%;
	}
}

.l-contactset {
	background: var(--color-bg);
	margin-top: 80px;
	margin-bottom: -80px;
}
@media (min-width: 768px), print {
	.l-contactset {
		margin-top: 120px;
		margin-bottom: -120px;
	}
}
.l-contactset__inner {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	padding-block: 40px;
}
@media (min-width: 768px), print {
	.l-contactset__inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}
@media (min-width: 768px), print {
	.l-contactset__inner {
		padding-block: 50px 60px;
	}
}
.l-contactset__lead {
	line-height: var(--line-height-s);
	text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
}
@media (min-width: 768px), print {
	.l-contactset__lead {
		font-size: 2.8rem;
	}
}
.l-contactset__items {
	margin-top: 20px;
}
@media (min-width: 768px), print {
	.l-contactset__items {
		margin-top: 30px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
.l-contactset__item {
	padding: 30px 20px;
	text-align: center;
}
@media (min-width: 768px), print {
	.l-contactset__item {
		padding: 46px 20px;
	}
}
.l-contactset__item--tel {
	color: #fff;
	background-color: var(--color-seco);
}
.l-contactset__item--location {
	background-color: #fff;
}
.l-contactset__tel-description {
	line-height: var(--line-height-s);
	font-weight: bold;
	font-size: 1.6rem;
}
@media (min-width: 768px), print {
	.l-contactset__tel-description {
		font-size: 1.8rem;
	}
}
.l-contactset__tel-number {
	display: inline-flex;
	align-items: center;
	font-weight: bold;
	white-space: nowrap;
	font-size: 3.2rem;
	gap: 8px;
}
@media (min-width: 768px), print {
	.l-contactset__tel-number {
		font-size: 4rem;
		gap: 10px;
	}
}
.l-contactset__tel-number svg {
	flex: 0 0 56px;
}
@media (min-width: 768px), print {
	.l-contactset__tel-number svg {
		flex: 0 0 70px;
	}
}
.l-contactset__tel-detail {
	font-size: 1.2rem;
}
@media (min-width: 768px), print {
	.l-contactset__tel-detail {
		font-size: 1.3rem;
	}
}
.l-contactset__location-description {
	line-height: var(--line-height-s);
	font-weight: bold;
	font-size: 1.6rem;
}
@media (min-width: 768px), print {
	.l-contactset__location-description {
		font-size: 1.8rem;
	}
}
.l-contactset__location-button {
	margin-top: 20px;
	margin-inline: auto;
	max-width: 275px;
}
@media (min-width: 768px), print {
	.l-contactset__location-button {
		max-width: 390px;
	}
}

.l-bg-section {
	background-color: var(--color-bg);
	padding-block: 60px;
}
@media (min-width: 768px), print {
	.l-bg-section {
		padding-block: 80px;
	}
}
.l-bg-section__inner {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
@media (min-width: 768px), print {
	.l-bg-section__inner {
		padding-left: 40px;
		padding-right: 40px;
	}
}

/*----------
	components default margin
	コンポーネント間デフォルトマージン設定
----------*/
.l-default-margin > [class^=c-],
.l-default-margin > [class^=g-],
.l-default-margin > [class^=p-] {
	margin-top: 30px;
}
@media (min-width: 768px), print {
	.l-default-margin > [class^=c-],
	.l-default-margin > [class^=g-],
	.l-default-margin > [class^=p-] {
		margin-top: 40px;
	}
}
.l-default-margin > [class^=c-heading] + * {
	margin-top: 0 !important;
}
.l-default-margin > .c-separator {
	margin-top: 20px;
	margin-bottom: 20px;
}
@media (min-width: 768px), print {
	.l-default-margin > .c-separator {
		margin-top: 40px;
		margin-bottom: 40px;
	}
}
.l-default-margin > .c-heading-secondary {
	margin-top: 80px;
	margin-bottom: 40px;
}
@media (min-width: 768px), print {
	.l-default-margin > .c-heading-secondary {
		margin-top: 120px;
		margin-bottom: 50px;
	}
}
.l-default-margin > .c-heading-tertiary {
	margin-top: 60px;
	margin-bottom: 30px;
}
@media (min-width: 768px), print {
	.l-default-margin > .c-heading-tertiary {
		margin-top: 80px;
		margin-bottom: 40px;
	}
}
.l-default-margin > .c-heading-quaternary {
	margin-top: 40px;
	margin-bottom: 20px;
}
@media (min-width: 768px), print {
	.l-default-margin > .c-heading-quaternary {
		margin-top: 60px;
		margin-bottom: 30px;
	}
}
.l-default-margin > .c-heading-quinary {
	margin-top: 20px;
	margin-bottom: 15px;
}
@media (min-width: 768px), print {
	.l-default-margin > .c-heading-quinary {
		margin-top: 40px;
		margin-bottom: 20px;
	}
}
.l-default-margin > .c-heading-point {
	margin-top: 60px;
	margin-bottom: 30px;
}
@media (min-width: 768px), print {
	.l-default-margin > .c-heading-point {
		margin-top: 80px;
		margin-bottom: 40px;
	}
}
.l-default-margin > .c-heading-icon {
	margin-top: 60px;
	margin-bottom: 20px;
}
@media (min-width: 768px), print {
	.l-default-margin > .c-heading-icon {
		margin-top: 80px;
		margin-bottom: 40px;
	}
}
.l-default-margin > .c-text + .c-text {
	margin-top: 20px;
}

/*----------
	margin
----------*/
/* 汎用マージン */
.u-mt-xs {
	margin-top: 10px !important;
}
@media (min-width: 768px), print {
	.u-mt-xs {
		margin-top: 20px !important;
	}
}

.u-mt-s {
	margin-top: 20px !important;
}
@media (min-width: 768px), print {
	.u-mt-s {
		margin-top: 30px !important;
	}
}

.u-mt-m {
	margin-top: 30px !important;
}
@media (min-width: 768px), print {
	.u-mt-m {
		margin-top: 40px !important;
	}
}

.u-mt-l {
	margin-top: 50px !important;
}
@media (min-width: 768px), print {
	.u-mt-l {
		margin-top: 60px !important;
	}
}

.u-mt-xl {
	margin-top: 60px !important;
}
@media (min-width: 768px), print {
	.u-mt-xl {
		margin-top: 80px !important;
	}
}

.u-mt-xxl {
	margin-top: 80px !important;
}
@media (min-width: 768px), print {
	.u-mt-xxl {
		margin-top: 120px !important;
	}
}

.u-mt-none {
	margin-top: 0 !important;
}
@media (min-width: 768px), print {
	.u-mt-none {
		margin-top: 0 !important;
	}
}

/* パーツ用マージン */
.u-mt-1 {
	margin-top: 1px !important;
}

.u-mb-1 {
	margin-bottom: 1px !important;
}

.u-ml-1 {
	margin-left: 1px !important;
}

.u-mr-1 {
	margin-right: 1px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-1 {
		margin-top: 1px !important;
	}
	.u-pc-mb-1 {
		margin-bottom: 1px !important;
	}
	.u-pc-ml-1 {
		margin-left: 1px !important;
	}
	.u-pc-mr-1 {
		margin-right: 1px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-1 {
		margin-top: 1px !important;
	}
	.u-sp-mb-1 {
		margin-bottom: 1px !important;
	}
	.u-sp-ml-1 {
		margin-left: 1px !important;
	}
	.u-sp-mr-1 {
		margin-right: 1px !important;
	}
}
.u-mt-2 {
	margin-top: 2px !important;
}

.u-mb-2 {
	margin-bottom: 2px !important;
}

.u-ml-2 {
	margin-left: 2px !important;
}

.u-mr-2 {
	margin-right: 2px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-2 {
		margin-top: 2px !important;
	}
	.u-pc-mb-2 {
		margin-bottom: 2px !important;
	}
	.u-pc-ml-2 {
		margin-left: 2px !important;
	}
	.u-pc-mr-2 {
		margin-right: 2px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-2 {
		margin-top: 2px !important;
	}
	.u-sp-mb-2 {
		margin-bottom: 2px !important;
	}
	.u-sp-ml-2 {
		margin-left: 2px !important;
	}
	.u-sp-mr-2 {
		margin-right: 2px !important;
	}
}
.u-mt-3 {
	margin-top: 3px !important;
}

.u-mb-3 {
	margin-bottom: 3px !important;
}

.u-ml-3 {
	margin-left: 3px !important;
}

.u-mr-3 {
	margin-right: 3px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-3 {
		margin-top: 3px !important;
	}
	.u-pc-mb-3 {
		margin-bottom: 3px !important;
	}
	.u-pc-ml-3 {
		margin-left: 3px !important;
	}
	.u-pc-mr-3 {
		margin-right: 3px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-3 {
		margin-top: 3px !important;
	}
	.u-sp-mb-3 {
		margin-bottom: 3px !important;
	}
	.u-sp-ml-3 {
		margin-left: 3px !important;
	}
	.u-sp-mr-3 {
		margin-right: 3px !important;
	}
}
.u-mt-4 {
	margin-top: 4px !important;
}

.u-mb-4 {
	margin-bottom: 4px !important;
}

.u-ml-4 {
	margin-left: 4px !important;
}

.u-mr-4 {
	margin-right: 4px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-4 {
		margin-top: 4px !important;
	}
	.u-pc-mb-4 {
		margin-bottom: 4px !important;
	}
	.u-pc-ml-4 {
		margin-left: 4px !important;
	}
	.u-pc-mr-4 {
		margin-right: 4px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-4 {
		margin-top: 4px !important;
	}
	.u-sp-mb-4 {
		margin-bottom: 4px !important;
	}
	.u-sp-ml-4 {
		margin-left: 4px !important;
	}
	.u-sp-mr-4 {
		margin-right: 4px !important;
	}
}
.u-mt-8 {
	margin-top: 8px !important;
}

.u-mb-8 {
	margin-bottom: 8px !important;
}

.u-ml-8 {
	margin-left: 8px !important;
}

.u-mr-8 {
	margin-right: 8px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-8 {
		margin-top: 8px !important;
	}
	.u-pc-mb-8 {
		margin-bottom: 8px !important;
	}
	.u-pc-ml-8 {
		margin-left: 8px !important;
	}
	.u-pc-mr-8 {
		margin-right: 8px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-8 {
		margin-top: 8px !important;
	}
	.u-sp-mb-8 {
		margin-bottom: 8px !important;
	}
	.u-sp-ml-8 {
		margin-left: 8px !important;
	}
	.u-sp-mr-8 {
		margin-right: 8px !important;
	}
}
.u-mt-12 {
	margin-top: 12px !important;
}

.u-mb-12 {
	margin-bottom: 12px !important;
}

.u-ml-12 {
	margin-left: 12px !important;
}

.u-mr-12 {
	margin-right: 12px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-12 {
		margin-top: 12px !important;
	}
	.u-pc-mb-12 {
		margin-bottom: 12px !important;
	}
	.u-pc-ml-12 {
		margin-left: 12px !important;
	}
	.u-pc-mr-12 {
		margin-right: 12px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-12 {
		margin-top: 12px !important;
	}
	.u-sp-mb-12 {
		margin-bottom: 12px !important;
	}
	.u-sp-ml-12 {
		margin-left: 12px !important;
	}
	.u-sp-mr-12 {
		margin-right: 12px !important;
	}
}
.u-mt-16 {
	margin-top: 16px !important;
}

.u-mb-16 {
	margin-bottom: 16px !important;
}

.u-ml-16 {
	margin-left: 16px !important;
}

.u-mr-16 {
	margin-right: 16px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-16 {
		margin-top: 16px !important;
	}
	.u-pc-mb-16 {
		margin-bottom: 16px !important;
	}
	.u-pc-ml-16 {
		margin-left: 16px !important;
	}
	.u-pc-mr-16 {
		margin-right: 16px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-16 {
		margin-top: 16px !important;
	}
	.u-sp-mb-16 {
		margin-bottom: 16px !important;
	}
	.u-sp-ml-16 {
		margin-left: 16px !important;
	}
	.u-sp-mr-16 {
		margin-right: 16px !important;
	}
}
.u-mt-20 {
	margin-top: 20px !important;
}

.u-mb-20 {
	margin-bottom: 20px !important;
}

.u-ml-20 {
	margin-left: 20px !important;
}

.u-mr-20 {
	margin-right: 20px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-20 {
		margin-top: 20px !important;
	}
	.u-pc-mb-20 {
		margin-bottom: 20px !important;
	}
	.u-pc-ml-20 {
		margin-left: 20px !important;
	}
	.u-pc-mr-20 {
		margin-right: 20px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-20 {
		margin-top: 20px !important;
	}
	.u-sp-mb-20 {
		margin-bottom: 20px !important;
	}
	.u-sp-ml-20 {
		margin-left: 20px !important;
	}
	.u-sp-mr-20 {
		margin-right: 20px !important;
	}
}
.u-mt-24 {
	margin-top: 24px !important;
}

.u-mb-24 {
	margin-bottom: 24px !important;
}

.u-ml-24 {
	margin-left: 24px !important;
}

.u-mr-24 {
	margin-right: 24px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-24 {
		margin-top: 24px !important;
	}
	.u-pc-mb-24 {
		margin-bottom: 24px !important;
	}
	.u-pc-ml-24 {
		margin-left: 24px !important;
	}
	.u-pc-mr-24 {
		margin-right: 24px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-24 {
		margin-top: 24px !important;
	}
	.u-sp-mb-24 {
		margin-bottom: 24px !important;
	}
	.u-sp-ml-24 {
		margin-left: 24px !important;
	}
	.u-sp-mr-24 {
		margin-right: 24px !important;
	}
}
.u-mt-28 {
	margin-top: 28px !important;
}

.u-mb-28 {
	margin-bottom: 28px !important;
}

.u-ml-28 {
	margin-left: 28px !important;
}

.u-mr-28 {
	margin-right: 28px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-28 {
		margin-top: 28px !important;
	}
	.u-pc-mb-28 {
		margin-bottom: 28px !important;
	}
	.u-pc-ml-28 {
		margin-left: 28px !important;
	}
	.u-pc-mr-28 {
		margin-right: 28px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-28 {
		margin-top: 28px !important;
	}
	.u-sp-mb-28 {
		margin-bottom: 28px !important;
	}
	.u-sp-ml-28 {
		margin-left: 28px !important;
	}
	.u-sp-mr-28 {
		margin-right: 28px !important;
	}
}
.u-mt-32 {
	margin-top: 32px !important;
}

.u-mb-32 {
	margin-bottom: 32px !important;
}

.u-ml-32 {
	margin-left: 32px !important;
}

.u-mr-32 {
	margin-right: 32px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-32 {
		margin-top: 32px !important;
	}
	.u-pc-mb-32 {
		margin-bottom: 32px !important;
	}
	.u-pc-ml-32 {
		margin-left: 32px !important;
	}
	.u-pc-mr-32 {
		margin-right: 32px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-32 {
		margin-top: 32px !important;
	}
	.u-sp-mb-32 {
		margin-bottom: 32px !important;
	}
	.u-sp-ml-32 {
		margin-left: 32px !important;
	}
	.u-sp-mr-32 {
		margin-right: 32px !important;
	}
}
.u-mt-36 {
	margin-top: 36px !important;
}

.u-mb-36 {
	margin-bottom: 36px !important;
}

.u-ml-36 {
	margin-left: 36px !important;
}

.u-mr-36 {
	margin-right: 36px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-36 {
		margin-top: 36px !important;
	}
	.u-pc-mb-36 {
		margin-bottom: 36px !important;
	}
	.u-pc-ml-36 {
		margin-left: 36px !important;
	}
	.u-pc-mr-36 {
		margin-right: 36px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-36 {
		margin-top: 36px !important;
	}
	.u-sp-mb-36 {
		margin-bottom: 36px !important;
	}
	.u-sp-ml-36 {
		margin-left: 36px !important;
	}
	.u-sp-mr-36 {
		margin-right: 36px !important;
	}
}
.u-mt-40 {
	margin-top: 40px !important;
}

.u-mb-40 {
	margin-bottom: 40px !important;
}

.u-ml-40 {
	margin-left: 40px !important;
}

.u-mr-40 {
	margin-right: 40px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-40 {
		margin-top: 40px !important;
	}
	.u-pc-mb-40 {
		margin-bottom: 40px !important;
	}
	.u-pc-ml-40 {
		margin-left: 40px !important;
	}
	.u-pc-mr-40 {
		margin-right: 40px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-40 {
		margin-top: 40px !important;
	}
	.u-sp-mb-40 {
		margin-bottom: 40px !important;
	}
	.u-sp-ml-40 {
		margin-left: 40px !important;
	}
	.u-sp-mr-40 {
		margin-right: 40px !important;
	}
}
.u-mt-44 {
	margin-top: 44px !important;
}

.u-mb-44 {
	margin-bottom: 44px !important;
}

.u-ml-44 {
	margin-left: 44px !important;
}

.u-mr-44 {
	margin-right: 44px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-44 {
		margin-top: 44px !important;
	}
	.u-pc-mb-44 {
		margin-bottom: 44px !important;
	}
	.u-pc-ml-44 {
		margin-left: 44px !important;
	}
	.u-pc-mr-44 {
		margin-right: 44px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-44 {
		margin-top: 44px !important;
	}
	.u-sp-mb-44 {
		margin-bottom: 44px !important;
	}
	.u-sp-ml-44 {
		margin-left: 44px !important;
	}
	.u-sp-mr-44 {
		margin-right: 44px !important;
	}
}
.u-mt-48 {
	margin-top: 48px !important;
}

.u-mb-48 {
	margin-bottom: 48px !important;
}

.u-ml-48 {
	margin-left: 48px !important;
}

.u-mr-48 {
	margin-right: 48px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-48 {
		margin-top: 48px !important;
	}
	.u-pc-mb-48 {
		margin-bottom: 48px !important;
	}
	.u-pc-ml-48 {
		margin-left: 48px !important;
	}
	.u-pc-mr-48 {
		margin-right: 48px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-48 {
		margin-top: 48px !important;
	}
	.u-sp-mb-48 {
		margin-bottom: 48px !important;
	}
	.u-sp-ml-48 {
		margin-left: 48px !important;
	}
	.u-sp-mr-48 {
		margin-right: 48px !important;
	}
}
.u-mt-52 {
	margin-top: 52px !important;
}

.u-mb-52 {
	margin-bottom: 52px !important;
}

.u-ml-52 {
	margin-left: 52px !important;
}

.u-mr-52 {
	margin-right: 52px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-52 {
		margin-top: 52px !important;
	}
	.u-pc-mb-52 {
		margin-bottom: 52px !important;
	}
	.u-pc-ml-52 {
		margin-left: 52px !important;
	}
	.u-pc-mr-52 {
		margin-right: 52px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-52 {
		margin-top: 52px !important;
	}
	.u-sp-mb-52 {
		margin-bottom: 52px !important;
	}
	.u-sp-ml-52 {
		margin-left: 52px !important;
	}
	.u-sp-mr-52 {
		margin-right: 52px !important;
	}
}
.u-mt-56 {
	margin-top: 56px !important;
}

.u-mb-56 {
	margin-bottom: 56px !important;
}

.u-ml-56 {
	margin-left: 56px !important;
}

.u-mr-56 {
	margin-right: 56px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-56 {
		margin-top: 56px !important;
	}
	.u-pc-mb-56 {
		margin-bottom: 56px !important;
	}
	.u-pc-ml-56 {
		margin-left: 56px !important;
	}
	.u-pc-mr-56 {
		margin-right: 56px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-56 {
		margin-top: 56px !important;
	}
	.u-sp-mb-56 {
		margin-bottom: 56px !important;
	}
	.u-sp-ml-56 {
		margin-left: 56px !important;
	}
	.u-sp-mr-56 {
		margin-right: 56px !important;
	}
}
.u-mt-60 {
	margin-top: 60px !important;
}

.u-mb-60 {
	margin-bottom: 60px !important;
}

.u-ml-60 {
	margin-left: 60px !important;
}

.u-mr-60 {
	margin-right: 60px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-60 {
		margin-top: 60px !important;
	}
	.u-pc-mb-60 {
		margin-bottom: 60px !important;
	}
	.u-pc-ml-60 {
		margin-left: 60px !important;
	}
	.u-pc-mr-60 {
		margin-right: 60px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-60 {
		margin-top: 60px !important;
	}
	.u-sp-mb-60 {
		margin-bottom: 60px !important;
	}
	.u-sp-ml-60 {
		margin-left: 60px !important;
	}
	.u-sp-mr-60 {
		margin-right: 60px !important;
	}
}
.u-mt-64 {
	margin-top: 64px !important;
}

.u-mb-64 {
	margin-bottom: 64px !important;
}

.u-ml-64 {
	margin-left: 64px !important;
}

.u-mr-64 {
	margin-right: 64px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-64 {
		margin-top: 64px !important;
	}
	.u-pc-mb-64 {
		margin-bottom: 64px !important;
	}
	.u-pc-ml-64 {
		margin-left: 64px !important;
	}
	.u-pc-mr-64 {
		margin-right: 64px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-64 {
		margin-top: 64px !important;
	}
	.u-sp-mb-64 {
		margin-bottom: 64px !important;
	}
	.u-sp-ml-64 {
		margin-left: 64px !important;
	}
	.u-sp-mr-64 {
		margin-right: 64px !important;
	}
}
.u-mt-68 {
	margin-top: 68px !important;
}

.u-mb-68 {
	margin-bottom: 68px !important;
}

.u-ml-68 {
	margin-left: 68px !important;
}

.u-mr-68 {
	margin-right: 68px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-68 {
		margin-top: 68px !important;
	}
	.u-pc-mb-68 {
		margin-bottom: 68px !important;
	}
	.u-pc-ml-68 {
		margin-left: 68px !important;
	}
	.u-pc-mr-68 {
		margin-right: 68px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-68 {
		margin-top: 68px !important;
	}
	.u-sp-mb-68 {
		margin-bottom: 68px !important;
	}
	.u-sp-ml-68 {
		margin-left: 68px !important;
	}
	.u-sp-mr-68 {
		margin-right: 68px !important;
	}
}
.u-mt-72 {
	margin-top: 72px !important;
}

.u-mb-72 {
	margin-bottom: 72px !important;
}

.u-ml-72 {
	margin-left: 72px !important;
}

.u-mr-72 {
	margin-right: 72px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-72 {
		margin-top: 72px !important;
	}
	.u-pc-mb-72 {
		margin-bottom: 72px !important;
	}
	.u-pc-ml-72 {
		margin-left: 72px !important;
	}
	.u-pc-mr-72 {
		margin-right: 72px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-72 {
		margin-top: 72px !important;
	}
	.u-sp-mb-72 {
		margin-bottom: 72px !important;
	}
	.u-sp-ml-72 {
		margin-left: 72px !important;
	}
	.u-sp-mr-72 {
		margin-right: 72px !important;
	}
}
.u-mt-76 {
	margin-top: 76px !important;
}

.u-mb-76 {
	margin-bottom: 76px !important;
}

.u-ml-76 {
	margin-left: 76px !important;
}

.u-mr-76 {
	margin-right: 76px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-76 {
		margin-top: 76px !important;
	}
	.u-pc-mb-76 {
		margin-bottom: 76px !important;
	}
	.u-pc-ml-76 {
		margin-left: 76px !important;
	}
	.u-pc-mr-76 {
		margin-right: 76px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-76 {
		margin-top: 76px !important;
	}
	.u-sp-mb-76 {
		margin-bottom: 76px !important;
	}
	.u-sp-ml-76 {
		margin-left: 76px !important;
	}
	.u-sp-mr-76 {
		margin-right: 76px !important;
	}
}
.u-mt-80 {
	margin-top: 80px !important;
}

.u-mb-80 {
	margin-bottom: 80px !important;
}

.u-ml-80 {
	margin-left: 80px !important;
}

.u-mr-80 {
	margin-right: 80px !important;
}

@media (min-width: 768px), print {
	.u-pc-mt-80 {
		margin-top: 80px !important;
	}
	.u-pc-mb-80 {
		margin-bottom: 80px !important;
	}
	.u-pc-ml-80 {
		margin-left: 80px !important;
	}
	.u-pc-mr-80 {
		margin-right: 80px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-80 {
		margin-top: 80px !important;
	}
	.u-sp-mb-80 {
		margin-bottom: 80px !important;
	}
	.u-sp-ml-80 {
		margin-left: 80px !important;
	}
	.u-sp-mr-80 {
		margin-right: 80px !important;
	}
}
.u-mx-auto {
	margin-inline: auto !important;
}

@media (min-width: 768px), print {
	.u-pc-mx-auto {
		margin-inline: auto !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mx-auto {
		margin-inline: auto !important;
	}
}
@media (max-width: 767px) {
	.u-sp--mx-20 {
		margin-inline: -20px !important;
	}
}
/*----------
	padding
----------*/
.u-pt-4 {
	padding-top: 4px !important;
}

.u-pb-4 {
	padding-bottom: 4px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-4 {
		padding-top: 4px !important;
	}
	.u-pc-pb-4 {
		padding-bottom: 4px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-4 {
		padding-top: 4px !important;
	}
	.u-sp-pb-4 {
		padding-bottom: 4px !important;
	}
}
.u-pt-8 {
	padding-top: 8px !important;
}

.u-pb-8 {
	padding-bottom: 8px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-8 {
		padding-top: 8px !important;
	}
	.u-pc-pb-8 {
		padding-bottom: 8px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-8 {
		padding-top: 8px !important;
	}
	.u-sp-pb-8 {
		padding-bottom: 8px !important;
	}
}
.u-pt-12 {
	padding-top: 12px !important;
}

.u-pb-12 {
	padding-bottom: 12px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-12 {
		padding-top: 12px !important;
	}
	.u-pc-pb-12 {
		padding-bottom: 12px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-12 {
		padding-top: 12px !important;
	}
	.u-sp-pb-12 {
		padding-bottom: 12px !important;
	}
}
.u-pt-16 {
	padding-top: 16px !important;
}

.u-pb-16 {
	padding-bottom: 16px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-16 {
		padding-top: 16px !important;
	}
	.u-pc-pb-16 {
		padding-bottom: 16px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-16 {
		padding-top: 16px !important;
	}
	.u-sp-pb-16 {
		padding-bottom: 16px !important;
	}
}
.u-pt-20 {
	padding-top: 20px !important;
}

.u-pb-20 {
	padding-bottom: 20px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-20 {
		padding-top: 20px !important;
	}
	.u-pc-pb-20 {
		padding-bottom: 20px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-20 {
		padding-top: 20px !important;
	}
	.u-sp-pb-20 {
		padding-bottom: 20px !important;
	}
}
.u-pt-24 {
	padding-top: 24px !important;
}

.u-pb-24 {
	padding-bottom: 24px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-24 {
		padding-top: 24px !important;
	}
	.u-pc-pb-24 {
		padding-bottom: 24px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-24 {
		padding-top: 24px !important;
	}
	.u-sp-pb-24 {
		padding-bottom: 24px !important;
	}
}
.u-pt-28 {
	padding-top: 28px !important;
}

.u-pb-28 {
	padding-bottom: 28px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-28 {
		padding-top: 28px !important;
	}
	.u-pc-pb-28 {
		padding-bottom: 28px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-28 {
		padding-top: 28px !important;
	}
	.u-sp-pb-28 {
		padding-bottom: 28px !important;
	}
}
.u-pt-32 {
	padding-top: 32px !important;
}

.u-pb-32 {
	padding-bottom: 32px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-32 {
		padding-top: 32px !important;
	}
	.u-pc-pb-32 {
		padding-bottom: 32px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-32 {
		padding-top: 32px !important;
	}
	.u-sp-pb-32 {
		padding-bottom: 32px !important;
	}
}
.u-pt-36 {
	padding-top: 36px !important;
}

.u-pb-36 {
	padding-bottom: 36px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-36 {
		padding-top: 36px !important;
	}
	.u-pc-pb-36 {
		padding-bottom: 36px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-36 {
		padding-top: 36px !important;
	}
	.u-sp-pb-36 {
		padding-bottom: 36px !important;
	}
}
.u-pt-40 {
	padding-top: 40px !important;
}

.u-pb-40 {
	padding-bottom: 40px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-40 {
		padding-top: 40px !important;
	}
	.u-pc-pb-40 {
		padding-bottom: 40px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-40 {
		padding-top: 40px !important;
	}
	.u-sp-pb-40 {
		padding-bottom: 40px !important;
	}
}
.u-pt-44 {
	padding-top: 44px !important;
}

.u-pb-44 {
	padding-bottom: 44px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-44 {
		padding-top: 44px !important;
	}
	.u-pc-pb-44 {
		padding-bottom: 44px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-44 {
		padding-top: 44px !important;
	}
	.u-sp-pb-44 {
		padding-bottom: 44px !important;
	}
}
.u-pt-48 {
	padding-top: 48px !important;
}

.u-pb-48 {
	padding-bottom: 48px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-48 {
		padding-top: 48px !important;
	}
	.u-pc-pb-48 {
		padding-bottom: 48px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-48 {
		padding-top: 48px !important;
	}
	.u-sp-pb-48 {
		padding-bottom: 48px !important;
	}
}
.u-pt-52 {
	padding-top: 52px !important;
}

.u-pb-52 {
	padding-bottom: 52px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-52 {
		padding-top: 52px !important;
	}
	.u-pc-pb-52 {
		padding-bottom: 52px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-52 {
		padding-top: 52px !important;
	}
	.u-sp-pb-52 {
		padding-bottom: 52px !important;
	}
}
.u-pt-56 {
	padding-top: 56px !important;
}

.u-pb-56 {
	padding-bottom: 56px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-56 {
		padding-top: 56px !important;
	}
	.u-pc-pb-56 {
		padding-bottom: 56px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-56 {
		padding-top: 56px !important;
	}
	.u-sp-pb-56 {
		padding-bottom: 56px !important;
	}
}
.u-pt-60 {
	padding-top: 60px !important;
}

.u-pb-60 {
	padding-bottom: 60px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-60 {
		padding-top: 60px !important;
	}
	.u-pc-pb-60 {
		padding-bottom: 60px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-60 {
		padding-top: 60px !important;
	}
	.u-sp-pb-60 {
		padding-bottom: 60px !important;
	}
}
.u-pt-64 {
	padding-top: 64px !important;
}

.u-pb-64 {
	padding-bottom: 64px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-64 {
		padding-top: 64px !important;
	}
	.u-pc-pb-64 {
		padding-bottom: 64px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-64 {
		padding-top: 64px !important;
	}
	.u-sp-pb-64 {
		padding-bottom: 64px !important;
	}
}
.u-pt-68 {
	padding-top: 68px !important;
}

.u-pb-68 {
	padding-bottom: 68px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-68 {
		padding-top: 68px !important;
	}
	.u-pc-pb-68 {
		padding-bottom: 68px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-68 {
		padding-top: 68px !important;
	}
	.u-sp-pb-68 {
		padding-bottom: 68px !important;
	}
}
.u-pt-72 {
	padding-top: 72px !important;
}

.u-pb-72 {
	padding-bottom: 72px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-72 {
		padding-top: 72px !important;
	}
	.u-pc-pb-72 {
		padding-bottom: 72px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-72 {
		padding-top: 72px !important;
	}
	.u-sp-pb-72 {
		padding-bottom: 72px !important;
	}
}
.u-pt-76 {
	padding-top: 76px !important;
}

.u-pb-76 {
	padding-bottom: 76px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-76 {
		padding-top: 76px !important;
	}
	.u-pc-pb-76 {
		padding-bottom: 76px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-76 {
		padding-top: 76px !important;
	}
	.u-sp-pb-76 {
		padding-bottom: 76px !important;
	}
}
.u-pt-80 {
	padding-top: 80px !important;
}

.u-pb-80 {
	padding-bottom: 80px !important;
}

@media (min-width: 768px), print {
	.u-pc-pt-80 {
		padding-top: 80px !important;
	}
	.u-pc-pb-80 {
		padding-bottom: 80px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-pt-80 {
		padding-top: 80px !important;
	}
	.u-sp-pb-80 {
		padding-bottom: 80px !important;
	}
}
.u-px-10 {
	padding-inline: 10px !important;
}

.u-py-10 {
	padding-block: 10px !important;
}

@media (min-width: 768px), print {
	.u-pc-px-10 {
		padding-inline: 10px !important;
	}
	.u-pc-py-10 {
		padding-block: 10px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-px-10 {
		padding-inline: 10px !important;
	}
	.u-sp-py-10 {
		padding-block: 10px !important;
	}
}
.u-px-20 {
	padding-inline: 20px !important;
}

.u-py-20 {
	padding-block: 20px !important;
}

@media (min-width: 768px), print {
	.u-pc-px-20 {
		padding-inline: 20px !important;
	}
	.u-pc-py-20 {
		padding-block: 20px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-px-20 {
		padding-inline: 20px !important;
	}
	.u-sp-py-20 {
		padding-block: 20px !important;
	}
}
.u-px-30 {
	padding-inline: 30px !important;
}

.u-py-30 {
	padding-block: 30px !important;
}

@media (min-width: 768px), print {
	.u-pc-px-30 {
		padding-inline: 30px !important;
	}
	.u-pc-py-30 {
		padding-block: 30px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-px-30 {
		padding-inline: 30px !important;
	}
	.u-sp-py-30 {
		padding-block: 30px !important;
	}
}
.u-px-40 {
	padding-inline: 40px !important;
}

.u-py-40 {
	padding-block: 40px !important;
}

@media (min-width: 768px), print {
	.u-pc-px-40 {
		padding-inline: 40px !important;
	}
	.u-pc-py-40 {
		padding-block: 40px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-px-40 {
		padding-inline: 40px !important;
	}
	.u-sp-py-40 {
		padding-block: 40px !important;
	}
}
.u-px-50 {
	padding-inline: 50px !important;
}

.u-py-50 {
	padding-block: 50px !important;
}

@media (min-width: 768px), print {
	.u-pc-px-50 {
		padding-inline: 50px !important;
	}
	.u-pc-py-50 {
		padding-block: 50px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-px-50 {
		padding-inline: 50px !important;
	}
	.u-sp-py-50 {
		padding-block: 50px !important;
	}
}
.u-px-60 {
	padding-inline: 60px !important;
}

.u-py-60 {
	padding-block: 60px !important;
}

@media (min-width: 768px), print {
	.u-pc-px-60 {
		padding-inline: 60px !important;
	}
	.u-pc-py-60 {
		padding-block: 60px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-px-60 {
		padding-inline: 60px !important;
	}
	.u-sp-py-60 {
		padding-block: 60px !important;
	}
}
.u-px-70 {
	padding-inline: 70px !important;
}

.u-py-70 {
	padding-block: 70px !important;
}

@media (min-width: 768px), print {
	.u-pc-px-70 {
		padding-inline: 70px !important;
	}
	.u-pc-py-70 {
		padding-block: 70px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-px-70 {
		padding-inline: 70px !important;
	}
	.u-sp-py-70 {
		padding-block: 70px !important;
	}
}
.u-px-80 {
	padding-inline: 80px !important;
}

.u-py-80 {
	padding-block: 80px !important;
}

@media (min-width: 768px), print {
	.u-pc-px-80 {
		padding-inline: 80px !important;
	}
	.u-pc-py-80 {
		padding-block: 80px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-px-80 {
		padding-inline: 80px !important;
	}
	.u-sp-py-80 {
		padding-block: 80px !important;
	}
}
.u-px-90 {
	padding-inline: 90px !important;
}

.u-py-90 {
	padding-block: 90px !important;
}

@media (min-width: 768px), print {
	.u-pc-px-90 {
		padding-inline: 90px !important;
	}
	.u-pc-py-90 {
		padding-block: 90px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-px-90 {
		padding-inline: 90px !important;
	}
	.u-sp-py-90 {
		padding-block: 90px !important;
	}
}
.u-px-100 {
	padding-inline: 100px !important;
}

.u-py-100 {
	padding-block: 100px !important;
}

@media (min-width: 768px), print {
	.u-pc-px-100 {
		padding-inline: 100px !important;
	}
	.u-pc-py-100 {
		padding-block: 100px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-px-100 {
		padding-inline: 100px !important;
	}
	.u-sp-py-100 {
		padding-block: 100px !important;
	}
}
/*----------
	display
----------*/
@media (max-width: 767px) {
	.u-pc-v {
		display: none !important;
	}
}

@media (min-width: 768px), print {
	.u-sp-v {
		display: none !important;
	}
}

.u-block {
	display: block !important;
}

.u-flex {
	display: flex !important;
}

.u-inline-flex {
	display: inline-flex !important;
}

.u-flex-row {
	flex-direction: row !important;
}

.u-flex-col {
	flex-direction: column !important;
}

.u-items-center {
	align-items: center !important;
}

.u-items-start {
	align-items: flex-start !important;
}

@media (min-width: 768px), print {
	.u-pc-flex-row {
		flex-direction: row !important;
	}
	.u-pc-flex-col {
		flex-direction: column !important;
	}
	.u-pc-items-center {
		align-items: center !important;
	}
	.u-pc-items-start {
		align-items: flex-start !important;
	}
}
@media (max-width: 767px) {
	.u-sp-flex-row {
		flex-direction: row !important;
	}
	.u-sp-flex-col {
		flex-direction: column !important;
	}
	.u-sp-items-center {
		align-items: center !important;
	}
	.u-sp-items-start {
		align-items: flex-start !important;
	}
}
.u-gap-5 {
	gap: 5px !important;
}

@media (min-width: 768px), print {
	.u-pc-gap-5 {
		gap: 5px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-gap-5 {
		gap: 5px !important;
	}
}
.u-gap-10 {
	gap: 10px !important;
}

@media (min-width: 768px), print {
	.u-pc-gap-10 {
		gap: 10px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-gap-10 {
		gap: 10px !important;
	}
}
.u-gap-15 {
	gap: 15px !important;
}

@media (min-width: 768px), print {
	.u-pc-gap-15 {
		gap: 15px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-gap-15 {
		gap: 15px !important;
	}
}
.u-gap-20 {
	gap: 20px !important;
}

@media (min-width: 768px), print {
	.u-pc-gap-20 {
		gap: 20px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-gap-20 {
		gap: 20px !important;
	}
}
.u-gap-25 {
	gap: 25px !important;
}

@media (min-width: 768px), print {
	.u-pc-gap-25 {
		gap: 25px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-gap-25 {
		gap: 25px !important;
	}
}
.u-gap-30 {
	gap: 30px !important;
}

@media (min-width: 768px), print {
	.u-pc-gap-30 {
		gap: 30px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-gap-30 {
		gap: 30px !important;
	}
}
.u-gap-35 {
	gap: 35px !important;
}

@media (min-width: 768px), print {
	.u-pc-gap-35 {
		gap: 35px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-gap-35 {
		gap: 35px !important;
	}
}
.u-gap-40 {
	gap: 40px !important;
}

@media (min-width: 768px), print {
	.u-pc-gap-40 {
		gap: 40px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-gap-40 {
		gap: 40px !important;
	}
}
.u-gap-45 {
	gap: 45px !important;
}

@media (min-width: 768px), print {
	.u-pc-gap-45 {
		gap: 45px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-gap-45 {
		gap: 45px !important;
	}
}
.u-gap-50 {
	gap: 50px !important;
}

@media (min-width: 768px), print {
	.u-pc-gap-50 {
		gap: 50px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-gap-50 {
		gap: 50px !important;
	}
}
/*----------
	bg
----------*/
.u-bg-prim {
	background-color: var(--color-prim) !important;
}

.u-bg-seco {
	background-color: var(--color-seco) !important;
}

.u-bg-color {
	background-color: var(--color-bg) !important;
}

.u-bg-white {
	background-color: #fff !important;
}

.u-bg-ultra-light-blue {
	background-color: #F0FAFF !important;
}

.u-bg-light-blue {
	background-color: #DEF5FF !important;
}

/*----------
	text
----------*/
@media (max-width: 767px) {
	.u-pcbr {
		display: none;
	}
}

@media (min-width: 768px), print {
	.u-spbr {
		display: none;
	}
}

.u-txt-center {
	text-align: center !important;
}

@media (min-width: 768px), print {
	.u-txt-pccenter {
		text-align: center !important;
	}
}

.u-txt-right {
	text-align: right !important;
}

.u-txt-left {
	text-align: left !important;
}

@media (min-width: 768px), print {
	.u-pc-txt-center {
		text-align: center !important;
	}
	.u-pc-txt-right {
		text-align: right !important;
	}
	.u-pc-txt-left {
		text-align: left !important;
	}
}
.u-txt-normal {
	font-weight: normal !important;
}

.u-txt-medium {
	font-weight: 500 !important;
}

.u-txt-bold {
	font-weight: bold !important;
}

.u-txt-strike {
	text-decoration: line-through !important;
}

.u-txt-indent-1em {
	text-indent: -1em;
	padding-left: 1em;
}

.u-txt-indent-1-2em {
	text-indent: -1.2em;
	padding-left: 1.2em;
}

.u-txt-indent-2em {
	text-indent: -2em;
	padding-left: 2em;
}

.u-txt-indent-none {
	text-indent: 0;
}

.u-txt-marker {
	font-weight: bold;
	background-image: linear-gradient(transparent 80%, #FFF7A6 80%);
}

.u-txt-prim {
	color: var(--color-prim) !important;
}

.u-txt-seco {
	color: var(--color-seco) !important;
}

.u-txt-default {
	color: var(--color-txt) !important;
}

.u-txt-white {
	color: #fff !important;
}

.u-txt-red {
	color: var(--color-red) !important;
}

.u-txt-caution {
	color: var(--color-caution) !important;
}

.u-txt-caption {
	color: var(--color-txt-caption) !important;
}

.u-line-height-l {
	line-height: var(--line-height-l) !important;
}

.u-line-height-m {
	line-height: var(--line-height-m) !important;
}

.u-line-height-s {
	line-height: var(--line-height-s) !important;
}

.u-line-height-xs {
	line-height: var(--line-height-xs) !important;
}

.u-hover-underline:hover {
	text-decoration: underline !important;
}

/* 文中リンク */
.u-txt-link {
	text-decoration: underline;
	color: var(--color-txt-link);
}
@media (min-width: 768px), print {
	.u-txt-link {
		transition: color 0.2s;
	}
	.u-txt-link:hover {
		color: var(--color-txt-hover);
	}
}
.u-txt-link .icon-blank {
	color: var(--color-txt);
	font-size: 1.2rem;
	padding-inline: 8px 4px;
}
@media (min-width: 768px), print {
	.u-txt-link .icon-blank {
		font-size: 1.4rem;
	}
}

/*----------
	vertical-align
----------*/
.u-align-top {
	vertical-align: top !important;
}

.u-align-middle {
	vertical-align: middle !important;
}

.u-align-bottom {
	vertical-align: bottom !important;
}

/*----------
	font-size
----------*/
/* 文字サイズ */
@media (min-width: 768px), print {
	.u-pc-fz-10 {
		font-size: 1rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-10 {
		font-size: 1rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-11 {
		font-size: 1.1rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-11 {
		font-size: 1.1rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-12 {
		font-size: 1.2rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-12 {
		font-size: 1.2rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-13 {
		font-size: 1.3rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-13 {
		font-size: 1.3rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-14 {
		font-size: 1.4rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-14 {
		font-size: 1.4rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-15 {
		font-size: 1.5rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-15 {
		font-size: 1.5rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-16 {
		font-size: 1.6rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-16 {
		font-size: 1.6rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-17 {
		font-size: 1.7rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-17 {
		font-size: 1.7rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-18 {
		font-size: 1.8rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-18 {
		font-size: 1.8rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-19 {
		font-size: 1.9rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-19 {
		font-size: 1.9rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-20 {
		font-size: 2rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-20 {
		font-size: 2rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-21 {
		font-size: 2.1rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-21 {
		font-size: 2.1rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-22 {
		font-size: 2.2rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-22 {
		font-size: 2.2rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-23 {
		font-size: 2.3rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-23 {
		font-size: 2.3rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-24 {
		font-size: 2.4rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-24 {
		font-size: 2.4rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-25 {
		font-size: 2.5rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-25 {
		font-size: 2.5rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-26 {
		font-size: 2.6rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-26 {
		font-size: 2.6rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-27 {
		font-size: 2.7rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-27 {
		font-size: 2.7rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-28 {
		font-size: 2.8rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-28 {
		font-size: 2.8rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-29 {
		font-size: 2.9rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-29 {
		font-size: 2.9rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-30 {
		font-size: 3rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-30 {
		font-size: 3rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-31 {
		font-size: 3.1rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-31 {
		font-size: 3.1rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-32 {
		font-size: 3.2rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-32 {
		font-size: 3.2rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-33 {
		font-size: 3.3rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-33 {
		font-size: 3.3rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-34 {
		font-size: 3.4rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-34 {
		font-size: 3.4rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-35 {
		font-size: 3.5rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-35 {
		font-size: 3.5rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-36 {
		font-size: 3.6rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-36 {
		font-size: 3.6rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-37 {
		font-size: 3.7rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-37 {
		font-size: 3.7rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-38 {
		font-size: 3.8rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-38 {
		font-size: 3.8rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-39 {
		font-size: 3.9rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-39 {
		font-size: 3.9rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-40 {
		font-size: 4rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-40 {
		font-size: 4rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-41 {
		font-size: 4.1rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-41 {
		font-size: 4.1rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-42 {
		font-size: 4.2rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-42 {
		font-size: 4.2rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-43 {
		font-size: 4.3rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-43 {
		font-size: 4.3rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-44 {
		font-size: 4.4rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-44 {
		font-size: 4.4rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-45 {
		font-size: 4.5rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-45 {
		font-size: 4.5rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-46 {
		font-size: 4.6rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-46 {
		font-size: 4.6rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-47 {
		font-size: 4.7rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-47 {
		font-size: 4.7rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-48 {
		font-size: 4.8rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-48 {
		font-size: 4.8rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-49 {
		font-size: 4.9rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-49 {
		font-size: 4.9rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-50 {
		font-size: 5rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-50 {
		font-size: 5rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-51 {
		font-size: 5.1rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-51 {
		font-size: 5.1rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-52 {
		font-size: 5.2rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-52 {
		font-size: 5.2rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-53 {
		font-size: 5.3rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-53 {
		font-size: 5.3rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-54 {
		font-size: 5.4rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-54 {
		font-size: 5.4rem !important;
	}
}
/*----------
	aspect-ratio
----------*/
.u-aspect-ratio-2-1 {
	aspect-ratio: 2/1 !important;
}

.u-aspect-ratio-3-2 {
	aspect-ratio: 3/2 !important;
}

/*----------
	sp-tel-link
----------*/
.u-sp-tel-link {
	color: inherit;
}
@media (min-width: 768px), print {
	.u-sp-tel-link {
		pointer-events: none;
		cursor: default;
	}
}

/*----------
	max-width
----------*/
.u-max-w-6xs {
	max-width: 160px !important; /* 10rem */
}

.u-max-w-5xs {
	max-width: 192px !important; /* 12rem */
}

.u-max-w-4xs {
	max-width: 224px !important; /* 14rem */
}

.u-max-w-3xs {
	max-width: 256px !important; /* 16rem */
}

.u-max-w-2xs {
	max-width: 288px !important; /* 18rem */
}

.u-max-w-xs {
	max-width: 320px !important; /* 20rem */
}

.u-max-w-sm {
	max-width: 384px !important; /* 24rem */
}

.u-max-w-md {
	max-width: 448px !important; /* 28rem */
}

.u-max-w-lg {
	max-width: 512px !important; /* 32rem */
}

.u-max-w-xl {
	max-width: 576px !important; /* 36rem */
}

.u-max-w-2xl {
	max-width: 672px !important; /* 42rem */
}

.u-max-w-3xl {
	max-width: 768px !important; /* 48rem */
}

.u-max-w-4xl {
	max-width: 896px !important; /* 56rem */
}

.u-max-w-5xl {
	max-width: 1024px !important; /* 64rem */
}

.u-max-w-6xl {
	max-width: 1152px !important; /* 72rem */
}

.u-max-w-7xl {
	max-width: 1280px !important; /* 80rem */
}

.u-max-w-full {
	max-width: 100% !important;
}

.u-max-w-100px {
	max-width: 100px !important;
}

.u-max-w-200px {
	max-width: 200px !important;
}

.u-max-w-300px {
	max-width: 300px !important;
}

.u-max-w-400px {
	max-width: 400px !important;
}

.u-max-w-500px {
	max-width: 500px !important;
}

.u-max-w-600px {
	max-width: 600px !important;
}

.u-max-w-700px {
	max-width: 700px !important;
}

.u-max-w-800px {
	max-width: 800px !important;
}

.u-max-w-900px {
	max-width: 900px !important;
}

.u-max-w-1000px {
	max-width: 1000px !important;
}

@media (max-width: 767px) {
	.u-sp-max-w-6xs {
		max-width: 160px !important; /* 10rem */
	}
	.u-sp-max-w-5xs {
		max-width: 192px !important; /* 12rem */
	}
	.u-sp-max-w-4xs {
		max-width: 224px !important; /* 14rem */
	}
	.u-sp-max-w-3xs {
		max-width: 256px !important; /* 16rem */
	}
	.u-sp-max-w-2xs {
		max-width: 288px !important; /* 18rem */
	}
	.u-sp-max-w-xs {
		max-width: 320px !important; /* 20rem */
	}
	.u-sp-max-w-sm {
		max-width: 384px !important; /* 24rem */
	}
	.u-sp-max-w-md {
		max-width: 448px !important; /* 28rem */
	}
	.u-sp-max-w-lg {
		max-width: 512px !important; /* 32rem */
	}
	.u-sp-max-w-xl {
		max-width: 576px !important; /* 36rem */
	}
	.u-sp-max-w-2xl {
		max-width: 672px !important; /* 42rem */
	}
	.u-sp-max-w-3xl {
		max-width: 768px !important; /* 48rem */
	}
	.u-sp-max-w-4xl {
		max-width: 896px !important; /* 56rem */
	}
	.u-sp-max-w-5xl {
		max-width: 1024px !important; /* 64rem */
	}
	.u-sp-max-w-6xl {
		max-width: 1152px !important; /* 72rem */
	}
	.u-sp-max-w-7xl {
		max-width: 1280px !important; /* 80rem */
	}
	.u-sp-max-w-full {
		max-width: 100% !important;
	}
	.u-sp-max-w-100px {
		max-width: 100px !important;
	}
	.u-sp-max-w-200px {
		max-width: 200px !important;
	}
	.u-sp-max-w-300px {
		max-width: 300px !important;
	}
	.u-sp-max-w-400px {
		max-width: 400px !important;
	}
	.u-sp-max-w-500px {
		max-width: 500px !important;
	}
	.u-sp-max-w-600px {
		max-width: 600px !important;
	}
	.u-sp-max-w-700px {
		max-width: 700px !important;
	}
	.u-sp-max-w-800px {
		max-width: 800px !important;
	}
	.u-sp-max-w-900px {
		max-width: 900px !important;
	}
	.u-sp-max-w-1000px {
		max-width: 1000px !important;
	}
}
/*----------
	min-width
----------*/
.u-min-w-6xs {
	min-width: 160px !important; /* 10rem */
}

.u-min-w-5xs {
	min-width: 192px !important; /* 12rem */
}

.u-min-w-4xs {
	min-width: 224px !important; /* 14rem */
}

.u-min-w-3xs {
	min-width: 256px !important; /* 16rem */
}

.u-min-w-2xs {
	min-width: 288px !important; /* 18rem */
}

.u-min-w-xs {
	min-width: 320px !important; /* 20rem */
}

.u-min-w-sm {
	min-width: 384px !important; /* 24rem */
}

.u-min-w-md {
	min-width: 448px !important; /* 28rem */
}

.u-min-w-lg {
	min-width: 512px !important; /* 32rem */
}

.u-min-w-xl {
	min-width: 576px !important; /* 36rem */
}

.u-min-w-2xl {
	min-width: 672px !important; /* 42rem */
}

.u-min-w-3xl {
	min-width: 768px !important; /* 48rem */
}

.u-min-w-4xl {
	min-width: 896px !important; /* 56rem */
}

.u-min-w-5xl {
	min-width: 1024px !important; /* 64rem */
}

.u-min-w-6xl {
	min-width: 1152px !important; /* 72rem */
}

.u-min-w-7xl {
	min-width: 1280px !important; /* 80rem */
}

.u-min-w-full {
	min-width: 100% !important;
}

.u-min-w-narrow-section {
	min-width: 1000px !important;
}

/*----------
	border-radius
----------*/
.u-rounded-2 {
	border-radius: 2px !important;
}

.u-rounded-4 {
	border-radius: 4px !important;
}

.u-rounded-6 {
	border-radius: 6px !important;
}

.u-rounded-8 {
	border-radius: 8px !important;
}

.u-rounded-10 {
	border-radius: 10px !important;
}

.u-rounded-20 {
	border-radius: 20px !important;
}

.u-rounded-30 {
	border-radius: 30px !important;
}

.u-rounded-none {
	border-radius: 0 !important;
}

.u-rounded-full {
	border-radius: calc(infinity * 1px) !important;
}
/*# sourceMappingURL=common.css.map */
