@charset "UTF-8";
/*----------
	リニューアル前用 base
----------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=M+PLUS+Rounded+1c:wght@500;700;800;900&display=swap");
/*----------
	リニューアル前用 リセット
----------*/
/* Reset */
header *, header::before,
header *::before,
header *::after,
footer *,
footer::before,
footer *::before,
footer *::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;
}
header article,
header aside,
header details,
header figcaption,
header figure,
header picture,
header main,
header footer,
header header,
header hgroup,
header menu,
header nav,
header section,
footer article,
footer aside,
footer details,
footer figcaption,
footer figure,
footer picture,
footer main,
footer footer,
footer header,
footer hgroup,
footer menu,
footer nav,
footer section {
	display: block;
}
header ul,
header ol,
footer ul,
footer ol {
	list-style: none;
}
header blockquote,
header q,
footer blockquote,
footer q {
	quotes: none;
}
header blockquote::before,
header blockquote::after,
header q::before,
header q::after,
footer blockquote::before,
footer blockquote::after,
footer q::before,
footer q::after {
	content: none;
}
header table,
footer table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}
header button,
footer button {
	font-family: inherit;
}

/*----------
	vars
----------*/
:root {
	/* color */
	--color-prim: #0075c2;
	--color-txt: #333;
	--color-txt-caption: #777;
	--color-link: #0075c2;
	--color-hover: #0075c2;
	--color-hover-light: #007AE6;
	--color-border: #DDDDDD;
	--color-bg-blue: #E8F4FF;
	--color-bg-gray: #F7F7F7;
	--color-red: #E64040;
	/* font family */
	--font-sans: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", Meiryo, sans-serif;
	--font-mplus: "M PLUS Rounded 1c", serif;
	/* line height */
	--line-height-s: 1.4;
	--line-height-m: 1.6;
	--line-height-l: 1.8;
	/* icons */
	--icon-pause: "";
	--icon-search: "";
	--icon-modal: "";
	--icon-blank: "";
	--icon-pdf: "";
	--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-close: "";
	--icon-minus: "";
	--icon-plus: "";
}

html.is-locked {
	position: absolute;
	overflow: hidden;
}

body.is-locked {
	overflow: hidden;
}

header,
footer {
	position: relative;
	width: 100%;
	background-color: #fff;
	font-size: 16px;
	text-align: left;
	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) {
	header,
	footer {
		font-size: 14px;
	}
}
header a,
footer a {
	text-decoration: none;
	color: var(--color-link);
}
@media (min-width: 768px), print {
	header a:hover,
	footer a:hover {
		text-decoration: none;
	}
}
header img,
footer img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
header sup,
footer sup {
	vertical-align: top;
	font-size: 0.7em;
}
header sub,
footer sub {
	vertical-align: baseline;
	font-size: 0.7em;
}
header input[type=text],
header textarea,
header select,
footer input[type=text],
footer textarea,
footer select {
	font-family: inherit;
	font-size: 16px;
}

/*----------
	main header
----------*/
@media print {
	header {
		display: none;
	}
}

.l-mainheader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 10001;
	text-align: left;
}
.l-mainheader.pos-absolute {
	position: absolute;
}
.l-mainheader.pos-absolute.is-scrollup .l-mainnav__sub, .l-mainheader.pos-absolute.is-scrolldown .l-mainnav__sub {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0s, visibility 0s;
}
.l-mainheader__nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 1;
}
.l-mainheader__nav.is-open {
	display: block;
}
.l-mainheader__inner {
	z-index: 2;
}
.l-mainheader__inner {
	width: 100%;
	height: 70px;
	padding: 0 20px;
}
.l-mainheader__nav {
	height: 100vh;
	background-color: #fff;
	overflow: auto;
}
.l-mainheader__nav.is-open {
	display: block;
	background-color: #fff;
	padding-top: 106px;
	padding-bottom: 150px;
}
.l-mainheader__logo {
	width: 180px;
	padding-top: 13px;
}
.l-mainheader__search {
	position: absolute;
	top: 20px;
	right: auto;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	height: 56px;
	z-index: 3;
}
.l-mainheader__search__input {
	width: 100%;
	padding-right: 40px;
	padding-left: 22px;
	border: 1px solid var(--color-border);
	border-radius: 28px;
	color: var(--color-txt);
	font-size: 1.6rem;
	font-size: 16px;
	font-weight: normal;
	line-height: 54px;
	cursor: pointer;
}
.l-mainheader__search .icon-search {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 17px;
	height: 16px;
}
.l-mainheader__navtoggle {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
}
.l-mainheader__navtoggle__inner {
	position: relative;
	display: block;
	width: 24px;
	height: 2px;
	margin: 0 auto;
}
.l-mainheader__navtoggle__bartop, .l-mainheader__navtoggle__barmiddle, .l-mainheader__navtoggle__barbottom {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--color-txt);
	border-radius: 4px;
	transition: all 0.15s linear;
}
.l-mainheader__navtoggle__bartop {
	transform: translateY(-10px) rotate(0deg);
}
.l-mainheader__navtoggle__barbottom {
	transform: translateY(10px) rotate(0deg);
}
.l-mainheader__navtoggle.is-open .l-mainheader__navtoggle__bartop {
	opacity: 0;
}
.l-mainheader__navtoggle.is-open .l-mainheader__navtoggle__barmiddle {
	transform: translateY(0) rotate(45deg);
}
.l-mainheader__navtoggle.is-open .l-mainheader__navtoggle__barbottom {
	transform: translateY(0) rotate(-45deg);
}
.l-mainheader__layer {
	display: none;
}

.l-mainheader.is-scrollup {
	position: fixed;
	animation: scrollupSP 0.5s forwards;
}

@keyframes scrollupSP {
	from {
		transform: translateY(-70px);
	}
	to {
		transform: translateY(0);
	}
}

.l-mainheader.is-scrolldown {
	position: fixed;
	animation: scrolldownSP 0.5s forwards;
}


@keyframes scrolldownSP {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-70px);
	}
}

/*----------
	main footer
----------*/
@media print {
	footer {
		display: none;
	}
}

.l-mainfooter {
	margin-top: 20px;
	background: #fff;
	border-top: 2px solid var(--color-prim);
}
.l-mainfooter__inner {
	max-width: 1260px;
	margin: 0 auto;
	padding-bottom: 30px;
}
.l-mainfooter__backhead {
	position: fixed;
	bottom: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	z-index: 15;
}
.l-mainfooter__backhead.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.l-mainfooter__backhead > a {
	display: grid;
	place-content: center;
	height: 100%;
	background-color: #848484;
	border-radius: 100%;
	color: inherit;
}
.l-mainfooter__backhead i {
	display: inline-block;
	color: #fff;
	font-size: 14px;
}
.l-mainfooter__logo {
	padding: 30px 20px 24px;
}
.l-mainfooter__logo img {
	display: block;
	max-width: 200px;
	margin: auto;
}
.l-mainfooter__copyright {
	margin-top: 30px;
	text-align: center;
	font-size: 11px;
	color: var(--color-txt-caption);
}
.l-mainfooter__information {
	padding: 40px 20px 0;
}
.l-mainfooter__contact__inner {
	display: grid;
	place-content: center;
	width: 100%;
	height: 60px;
	background-color: var(--color-bg-blue);
	border-radius: 10px;
}
.l-mainfooter__contact__inner > p {
	display: inline;
	position: relative;
	padding-left: 60px;
	color: var(--color-txt);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}
.l-mainfooter__contact__inner > p::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 50px;
	height: 38px;
	background: url(/assets/images/common/icon_contact.svg) no-repeat 0 0;
	background-size: cover;
}
.l-mainfooter__sns {
	display: grid;
	place-content: center;
	place-items: center;
	gap: 26px 0;
	margin-top: 40px;
}

.l-fnav-main {
	border-top: 1px solid var(--color-border);
}
.l-fnav-main__item {
	border-bottom: 1px solid var(--color-border);
}
.l-fnav-main__item > a {
	display: block;
	padding: 16px 20px 15px;
	color: var(--color-txt);
	font-size: 16px;
	font-weight: 700;
	line-height: var(--line-height-l);
}

.l-fnav-sub__items {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 18px;
	margin-top: 30px;
}
.l-fnav-sub__item {
	font-size: 12px;
	line-height: 1;
	color: var(--color-txt);
}
.l-fnav-sub__item > a {
	color: inherit;
}
.l-fnav-sub__item > a > span {
	display: block;
	padding: 0 20px;
}

/*----------
	main navigation
----------*/
.l-mainnav {
	background: #fff;
}
.l-mainnav__item.is-hierarichical.is-open .l-mainnav__cattop > button::after {
	content: var(--icon-minus);
}
.l-mainnav__item.is-hierarichical.is-open .l-mainnav__sub {
	height: auto;
	opacity: 1;
	pointer-events: visible;
}
.l-mainnav__cattop {
	position: relative;
	border-top: 1px solid var(--color-border);
}
.l-mainnav__cattop > button {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 100%;
	z-index: 1;
	cursor: pointer;
}
.l-mainnav__cattop > button::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background-color: #fff;
	border: 1px solid var(--color-link);
	border-radius: 100%;
}
.l-mainnav__cattop > button::after {
	content: var(--icon-plus);
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	display: grid;
	place-content: center;
	width: 24px;
	height: 24px;
	color: var(--color-link);
	font-size: 1.2rem;
	font-size: 12px;
	font-weight: 500;
	line-height: 22px;
}
.l-mainnav__cattop > a {
	display: block;
	padding: 14px 50px 14px 20px;
	color: inherit;
	font-size: 1.6rem;
	font-size: 16px;
	font-weight: 500;
}
.l-mainnav__sub {
	height: 0;
	position: relative;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s linear;
}
.l-mainnav__sub-close {
	display: none;
}
.l-mainnav__close {
	display: block;
	width: 134px;
	height: 50px;
	border: 1px solid var(--color-border);
	border-radius: 25px;
	margin: 40px auto 100px;
	color: var(--color-txt);
	font-size: 1.6rem;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	line-height: 48px;
}
.l-mainnav__close > i {
	margin-left: 10px;
	color: var(--color-link);
	transform: translateY(0.1em);
}

.l-megamenu {
	width: 100%;
	padding: 16px 20px 7px 36px;
	background-color: var(--color-bg-blue);
}

.l-megamenu__categorytop a {
	color: var(--color-txt);
	font-size: 1.6rem;
	font-size: 16px;
	font-weight: 400;
}
.l-megamenu__categorytop i {
	position: relative;
	top: 0.1em;
	color: var(--color-link);
	margin-right: 5px;
}
.l-megamenu__block {
	padding: 16px 22px 17px;
	border-bottom: 1px solid var(--color-border);
}
.l-megamenu__block:last-of-type {
	border-bottom: none;
}

/*----------
	個別パーツ設定
----------*/
/* 商品・キャンペーン */
.l-megamenu__productitem__inner {
	position: relative;
	display: block;
	width: 100%;
	padding-left: 20px;
	color: var(--color-txt);
}
.l-megamenu__productitem__inner::before {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-arrow2-r);
	display: inline-block;
	position: absolute;
	top: 0.4em;
	left: 0;
	color: var(--color-link);
	font-size: 1.2rem;
	font-size: 12px;
	line-height: 1;
}
.l-megamenu__productitem__inner[target=_blank] {
	position: relative;
	padding-left: 20px;
}
.l-megamenu__productitem__inner[target=_blank]::before {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-blank);
	display: inline-block;
	position: absolute;
	top: 0.35em;
	left: 0;
	color: var(--color-link);
	font-size: 1.4rem;
	font-size: 14px;
	line-height: 1;
}
.l-megamenu__productitem__image {
	display: none;
}
.l-megamenu__productitem__text {
	font-size: 1.4rem;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}
.l-megamenu__productitem + .l-megamenu__productitem {
	margin-top: 10px;
}
/* 画像セット */
.l-megamenu__imagelink__inner.u-pc-v {
	display: none;
}
.l-megamenu__imagelink__inner.u-sp-v {
	display: block;
}
.l-megamenu__imagelink__title {
	position: relative;
	padding-left: 20px;
	color: var(--color-txt);
	font-size: 1.4rem;
	font-size: 14px;
	font-weight: 400;
	line-height: var(--line-height-m);
}
.l-megamenu__imagelink__title::before {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-arrow2-r);
	display: inline-block;
	position: absolute;
	top: 0.5em;
	left: 0;
	color: var(--color-link);
	font-size: 1.2rem;
	font-size: 12px;
	line-height: 1;
}
.l-megamenu__imagelink__title[target=_blank] {
	position: relative;
	padding-left: 20px;
}
.l-megamenu__imagelink__title[target=_blank]::before {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-blank);
	display: inline-block;
	position: absolute;
	top: 0.35em;
	left: 0;
	color: var(--color-link);
	font-size: 1.4rem;
	font-size: 14px;
	line-height: 1;
}
.l-megamenu__imagelink__content {
	padding-right: 0;
	padding-left: 0;
}
.l-megamenu__imagelink__image {
	display: none;
}
.l-megamenu__imagelink + .l-megamenu__imagelink {
	margin-top: 10px;
}
/* アイコン画像セット */
.l-megamenu__iconitem__inner {
	display: block;
	position: relative;
	width: 100%;
	padding-left: 20px;
	color: var(--color-txt);
}
.l-megamenu__iconitem__inner::before {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-arrow2-r);
	display: inline-block;
	position: absolute;
	top: 0.5em;
	left: 0;
	color: var(--color-link);
	font-size: 1.2rem;
	font-size: 12px;
	line-height: 1;
}
.l-megamenu__iconitem__inner[target=_blank] {
	position: relative;
	padding-left: 20px;
}
.l-megamenu__iconitem__inner[target=_blank]::before {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-blank);
	display: inline-block;
	position: absolute;
	top: 0.35em;
	left: 0;
	color: var(--color-link);
	font-size: 1.4rem;
	font-size: 14px;
	line-height: 1;
}
.l-megamenu__iconitem__image {
	display: none;
}
.l-megamenu__iconitem__text {
	font-size: 1.4rem;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}
.l-megamenu__iconitem + .l-megamenu__iconitem {
	margin-top: 10px;
}
/* 汎用ボタン */
.l-megamenu-button__inner {
	position: relative;
	display: block;
	width: 100%;
	color: var(--color-txt);
}
.l-megamenu-button__inner > span {
	padding: 0 0 0 20px;
	text-align: center;
	font-size: 1.4rem;
	font-size: 14px;
	font-weight: 400;
	line-height: var(--line-height-s);
	color: inherit;
}
.l-megamenu-button i {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 1.2rem;
	font-size: 12px;
	color: var(--color-link);
}
.l-megamenu-button + .l-megamenu-button {
	margin-top: 10px;
}
/* テキストリンク */
.l-megamenu__link {
	margin: 0 -22px;
}
.l-megamenu__link > a {
	display: block;
	position: relative;
	color: var(--color-txt);
	font-size: 1.4rem;
	font-size: 14px;
	line-height: var(--line-height-m);
}
.l-megamenu__link + .l-megamenu__link {
	margin-top: 10px;
}

.l-subnav {
	background-color: #fff;
	border-top: 1px solid var(--color-border);
	padding: 40px 20px 0;
}
.l-subnav__item {
	color: var(--color-txt);
	font-size: 1.4rem;
	font-size: 14px;
}
.l-subnav__item a {
	color: inherit;
}
.l-subnav__item + .l-subnav__item {
	margin-top: 10px;
}
/*----------
	button container
----------*/
.g-megamenu-container {
	margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
	.g-megamenu-container--3up, .g-megamenu-container--4up {
		grid-template-columns: repeat(2, 1fr);
	}
}

/*----------
	margin
----------*/
/* 汎用マージン */
.u-mt-xs {
	margin-top: 16px !important;
}

.u-mb-xs {
	margin-bottom: 16px !important;
}

.u-mt-s {
	margin-top: 24px !important;
}

.u-mb-s {
	margin-bottom: 24px !important;
}

.u-mt-m {
	margin-top: 32px !important;
}

.u-mb-m {
	margin-bottom: 32px !important;
}

.u-mt-l {
	margin-top: 48px !important;
}

.u-mb-l {
	margin-bottom: 48px !important;
}

.u-mt-xl {
	margin-top: 64px !important;
}

.u-mb-xl {
	margin-bottom: 64px !important;
}

.u-mt-xxl {
	margin-top: 80px !important;
}

.u-mb-xxl {
	margin-bottom: 80px !important;
}

.u-mt-none {
	margin-top: 0 !important;
}

.u-mb-none {
	margin-bottom: 0 !important;
}

/* ----------
マージンバリエーションその他（必要に応じて）
----------*/
/* 10px倍数 */
.u-mt-10 {
	margin-top: 10px !important;
}

.u-mt-20 {
	margin-top: 20px !important;
}

.u-mt-30 {
	margin-top: 30px !important;
}

.u-mt-40 {
	margin-top: 40px !important;
}

.u-mt-50 {
	margin-top: 50px !important;
}

.u-mt-60 {
	margin-top: 60px !important;
}

.u-mt-70 {
	margin-top: 70px !important;
}

.u-mt-80 {
	margin-top: 80px !important;
}

.u-mt-90 {
	margin-top: 90px !important;
}

.u-mt-100 {
	margin-top: 100px !important;
}

/* 8px倍数 */
.u-mt-8 {
	margin-top: 8px !important;
}

.u-mt-16 {
	margin-top: 16px !important;
}

.u-mt-24 {
	margin-top: 24px !important;
}

.u-mt-32 {
	margin-top: 32px !important;
}

.u-mt-40 {
	margin-top: 40px !important;
}

.u-mt-48 {
	margin-top: 48px !important;
}

.u-mt-56 {
	margin-top: 56px !important;
}

.u-mt-64 {
	margin-top: 64px !important;
}

.u-mt-72 {
	margin-top: 72px !important;
}

.u-mt-80 {
	margin-top: 80px !important;
}

/* SP-PC 倍マージン double */
.u-mt-dbl8 {
	margin-top: 8px !important;
}

.u-mt-dbl16 {
	margin-top: 16px !important;
}

.u-mt-dbl24 {
	margin-top: 24px !important;
}

.u-mt-dbl32 {
	margin-top: 32px !important;
}

.u-mt-dbl40 {
	margin-top: 40px !important;
}

.u-mt-dbl48 {
	margin-top: 48px !important;
}

.u-mt-dbl56 {
	margin-top: 56px !important;
}

.u-mt-dbl64 {
	margin-top: 64px !important;
}

.u-mt-dbl72 {
	margin-top: 72px !important;
}

.u-mt-dbl80 {
	margin-top: 80px !important;
}

/*----------
	display
----------*/
@media (max-width: 767px) {
	.u-pc-v {
		display: none;
	}
}
@media (min-width: 768px), print {
	.u-sp-v {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.u-tab-v {
		display: block;
	}
}

@media (max-width: 1024px) {
	.u-tabpc-v {
		display: none;
	}
}

@media (min-width: 1024px) {
	.u-tabsp-v {
		display: none;
	}
}

/*----------
	text
----------*/
@media (min-width: 768px), print {
	.u-pcbr {
		display: block;
	}
}
@media (max-width: 767px) {
	.u-pcbr {
		display: none;
	}
}

@media (min-width: 768px), print {
	.u-pcsmbr {
		display: none;
	}
}
@media (max-width: 767px) {
	.u-pcsmbr {
		display: none;
	}
}
@media (min-width: 1025px) and (max-width: 1279px) {
	.u-pcsmbr {
		display: block;
	}
}

@media (min-width: 768px), print {
	.u-pcmdbr {
		display: none;
	}
}
@media (max-width: 767px) {
	.u-pcmdbr {
		display: none;
	}
}
@media (min-width: 1025px) and (max-width: 1279px) {
	.u-pcmdbr {
		display: none;
	}
}
@media (min-width: 1280px) and (max-width: 1439px) {
	.u-pcmdbr {
		display: block;
	}
}

@media (min-width: 768px), print {
	.u-tabbr {
		display: none;
	}
}
@media (max-width: 767px) {
	.u-tabbr {
		display: none;
	}
}
@media (min-width: 768px) and (max-width: 1024px) {
	.u-tabbr {
		display: block;
	}
}

@media (max-width: 1024px) {
	.u-tabpcbr {
		display: none;
	}
}

@media (min-width: 768px), print {
	.u-spbr {
		display: none;
	}
}
@media (max-width: 767px) {
	.u-spbr {
		display: block;
	}
}

.u-txt-center {
	text-align: center !important;
}

.u-txt-right {
	text-align: right !important;
}

.u-txt-left {
	text-align: left !important;
}

.u-txt-normal {
	font-weight: 400 !important;
}

.u-txt-medium {
	font-weight: 500 !important;
}

.u-txt-bold {
	font-weight: 700 !important;
}

.u-txt-italic {
	font-style: italic !important;
}

.u-txt-strike {
	text-decoration: line-through !important;
}

.u-txt-indent {
	text-indent: 1em;
}

.u-txt-marker {
	font-weight: bold;
	background-image: linear-gradient(transparent 80%, #FFF7A6 80%);
}

.u-txt-prim {
	color: var(--color-prim) !important;
}

.u-txt-txt {
	color: var(--color-txt) !important;
}

.u-txt-white {
	color: #fff !important;
}

.u-txt-red {
	color: var(--color-red) !important;
}

.u-txt-caption {
	color: var(--color-txt-caption) !important;
}

.u-txt-nowrap {
	white-space: nowrap !important;
}

/* 文中リンク */
.u-txt-link {
	text-decoration: underline;
	color: var(--color-link);
}
@media (min-width: 768px), print {
	.u-txt-link {
		transition: color 0.2s;
	}
	.u-txt-link:hover {
		color: var(--color-hover);
	}
}

/* 文字サイズ */
.u-fz-10 {
	font-size: 1rem !important;
}

.u-fz-11 {
	font-size: 1.1rem !important;
}

.u-fz-12 {
	font-size: 1.2rem !important;
}

.u-fz-13 {
	font-size: 1.3rem !important;
}

.u-fz-14 {
	font-size: 1.4rem !important;
}

.u-fz-15 {
	font-size: 1.5rem !important;
}

.u-fz-16 {
	font-size: 1.6rem !important;
}

.u-fz-17 {
	font-size: 1.7rem !important;
}

.u-fz-18 {
	font-size: 1.8rem !important;
}

.u-fz-19 {
	font-size: 1.9rem !important;
}

.u-fz-20 {
	font-size: 2rem !important;
}

.u-fz-21 {
	font-size: 2.1rem !important;
}

.u-fz-22 {
	font-size: 2.2rem !important;
}

.u-fz-23 {
	font-size: 2.3rem !important;
}

.u-fz-24 {
	font-size: 2.4rem !important;
}

.u-fz-25 {
	font-size: 2.5rem !important;
}

.u-fz-26 {
	font-size: 2.6rem !important;
}

.u-fz-27 {
	font-size: 2.7rem !important;
}

.u-fz-28 {
	font-size: 2.8rem !important;
}

/*----------
	image
----------*/
/* 角丸 */
.u-image-round {
	border-radius: 15px;
	overflow: hidden;
}

/*----------
	width
----------*/
/* 固定px */
.u-w5px {
	width: 5px !important;
}

.u-w10px {
	width: 10px !important;
}

.u-w15px {
	width: 15px !important;
}

.u-w20px {
	width: 20px !important;
}

.u-w25px {
	width: 25px !important;
}

.u-w30px {
	width: 30px !important;
}

.u-w35px {
	width: 35px !important;
}

.u-w40px {
	width: 40px !important;
}

.u-w45px {
	width: 45px !important;
}

.u-w50px {
	width: 50px !important;
}

.u-w55px {
	width: 55px !important;
}

.u-w60px {
	width: 60px !important;
}

.u-w65px {
	width: 65px !important;
}

.u-w70px {
	width: 70px !important;
}

.u-w75px {
	width: 75px !important;
}

.u-w80px {
	width: 80px !important;
}

.u-w85px {
	width: 85px !important;
}

.u-w90px {
	width: 90px !important;
}

.u-w95px {
	width: 95px !important;
}

.u-w100px {
	width: 100px !important;
}

/* 相対% */
.u-w5per {
	width: 5% !important;
}

.u-w10per {
	width: 10% !important;
}

.u-w15per {
	width: 15% !important;
}

.u-w20per {
	width: 20% !important;
}

.u-w25per {
	width: 25% !important;
}

.u-w30per {
	width: 30% !important;
}

.u-w33per {
	width: 33% !important;
}

.u-w35per {
	width: 35% !important;
}

.u-w40per {
	width: 40% !important;
}

.u-w45per {
	width: 45% !important;
}

.u-w50per {
	width: 50% !important;
}

.u-w55per {
	width: 55% !important;
}

.u-w60per {
	width: 60% !important;
}

.u-w65per {
	width: 65% !important;
}

.u-w70per {
	width: 70% !important;
}

.u-w75per {
	width: 75% !important;
}

.u-w80per {
	width: 80% !important;
}

.u-w85per {
	width: 85% !important;
}

.u-w90per {
	width: 90% !important;
}

.u-w95per {
	width: 95% !important;
}

.u-w100per {
	width: 100% !important;
}

/* override */
#wrapper {
	padding-top: 70px;
}

#wrapperside.side-menu,
.pagetop.clearfix {
	display: none;
}

.section-menu01 {
	border-bottom: 0;
}

/*----------
	compornents
----------*/
.c-icontext > a,
.c-icontext > span {
	font-size: 14px;
}
.c-icontext i[class^=icon-] {
	font-size: 14px;
}
@media (min-width: 768px), print {
	.c-icontext > a,
	.c-icontext > span {
		font-size: 16px;
	}
	.c-icontext i[class^=icon-] {
		font-size: 16px;
	}
}

/* icon */
@font-face {
	font-family: iconfont;
	src: url(/assets/fonts/iconfont.woff) format("woff"), url(/assets/fonts/iconfont.svg) format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
.icon, .icon-plus, .icon-minus, .icon-close, .icon-arrow2-t, .icon-arrow2-r, .icon-arrow2-l, .icon-arrow2-b, .icon-arrow1-t, .icon-arrow1-r, .icon-arrow1-l, .icon-arrow1-b, .icon-pdf, .icon-blank, .icon-modal, .icon-search, .icon-pause {
	display: inline-block;
	font-family: iconfont !important;
	speak: never;
	font-style: normal !important;
	font-size: inherit;
	font-weight: normal !important;
	font-variant: normal !important;
	text-transform: none;
	line-height: 1;
	color: inherit;
}
.icon-pause::before {
	content: "\e900";
}
.icon-search::before {
	content: "\e901";
}
.icon-modal::before {
	content: "\e902";
}
.icon-blank::before {
	content: "\e903";
}
.icon-pdf::before {
	content: "\e904";
}
.icon-arrow1-b::before {
	content: "\e905";
}
.icon-arrow1-l::before {
	content: "\e906";
}
.icon-arrow1-r::before {
	content: "\e907";
}
.icon-arrow1-t::before {
	content: "\e908";
}
.icon-arrow2-b::before {
	content: "\e909";
}
.icon-arrow2-l::before {
	content: "\e90a";
}
.icon-arrow2-r::before {
	content: "\e90b";
}
.icon-arrow2-t::before {
	content: "\e90c";
}
.icon-close::before {
	content: "\e90d";
}
.icon-minus::before {
	content: "\e90e";
}
.icon-plus::before {
	content: "\e910";
}

.icon-pdf {
	color: var(--color-red);
}

.icon-sns {
	display: inline-block;
	vertical-align: baseline;
	line-height: 1;
	width: 42px;
}

/* g-icon-container */
.g-icon-container {
	display: flex;
	justify-content: center;
	font-size: 0;
}
.g-icon-container__item {
	display: inline-block;
	margin-right: 20px;
}

/* c-icontext */
.c-icontext > a,
.c-icontext > span {
	display: table;
	padding-left: 20px;
	text-indent: -20px;
	color: var(--color-txt);
	font-size: 14px;
	line-height: var(--line-height-m);
}
.c-icontext i[class^=icon-] {
	text-indent: 0;
	margin-right: 4px;
	font-size: 14px;
	transform: translateY(0.05em);
	color: var(--color-link);
}
.c-icontext i[class^=icon-].icon-pdf {
	color: var(--color-red);
}
.c-icontext + .c-icontext {
	margin-top: 8px;
}
@media (min-width: 768px), print {
	.c-icontext > a,
	.c-icontext > span {
		font-size: 16px;
	}
	.c-icontext i[class^=icon-] {
		font-size: 16px;
		margin-right: 8px;
	}
	.c-icontext > a {
		transition: color 0.2s;
	}
	.c-icontext > a:hover {
		color: var(--color-hover);
		text-decoration: underline;
	}
}
.c-icontext--right > a,
.c-icontext--right > span {
	padding-right: 20px;
	text-indent: 0;
	color: var(--color-txt);
}
.c-icontext--right i[class^=icon-] {
	margin-left: 10px;
	color: var(--color-link);
}
.c-icontext--right i[class^=icon-].icon-pdf {
	color: var(--color-red);
}
@media (min-width: 768px), print {
	.c-icontext--right i[class^=icon-] {
		margin-left: 10px;
	}
}
