@charset "UTF-8";
/* =========================================================

  PC共通スタイル

  -基本
    -CSS変数
    -フォント関連
    -リンク
    -画像
    -段落
    -リスト
    -定義リスト
    -テーブル

  -サイト全体枠

  -ヘッダー
    -マイページボタン
    -買い物かごボタン
    -ハンバーガーメニューボタン
    -ヘッダー上共通バナー

  -グローバルナビ

  -コンテナ枠
    -パンくず
    -メインコンテンツ

  -フッター
    -フッターナビ
    -SNS
    -コピーライト
    -トップへ戻るボタン

  -コンポーネント（中身省略）

  -フォーム
    -フォームレイアウト
    -フォーム矢印
    -エラーメッセージ
    -インプット
    -ラジオボタン、チェックボックス
    -セレクトボックス
    -テキストエリア

========================================================= */
/* ---------------------------------------------------------

基本

--------------------------------------------------------- */
/* CSS変数
--------------------------------------- */
:root {
	--contents_width: 100vw;
}
@media screen and (min-width: 768px) {
	:root {
		--contents_width: 464px;
	}
}

/* フォント関連
--------------------------------------- */
html {
	/* 10px = 1remにする為の指定 */
	font-size: 62.5%;
}

body {
	font-family: "YakuHanJPs_Noto", "Roboto", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #222222;
	font-size: 1.4em; /*chromeのバグ回避（rem指定するとbodyをルートとして解釈してしまう）*/
	line-height: 2;
	letter-spacing: 0.06em;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* 赤色指定されたフォント要素を、カラー定義の赤にする */
font[color*="#FF0000"] {
	color: #CB0005;
}

/* リンク
--------------------------------------- */
a,
a:visited {
	color: #222222;
	text-decoration: none;
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover,
a:active {
	color: #AAAAAA;
	opacity: 0.8;
}

/* IE11にのみ適用 */
@media all and (-ms-high-contrast: none) {
	*::-ms-backdrop, a {
		-ms-transition: none;
		transition: none;
	}
}
/* 画像
--------------------------------------- */
img {
	max-width: 100%;
}

/* ブランド画像ボケ対策（chromeのみ） */
img[src*="/img/common/brand/brandlist_ttl"] {
	image-rendering: -webkit-optimize-contrast;
}

/* 段落
--------------------------------------- */
main * + p {
	margin-top: 20px;
}

/* リスト
--------------------------------------- */
main * + ul,
main * + ol {
	margin-top: 20px;
}
main li {
	margin-bottom: 5px;
	line-height: inherit;
}
main li:last-child {
	margin-bottom: 0;
}

/* 定義リスト
--------------------------------------- */
main * + dl {
	margin-top: 20px;
}
main dd + dt {
	margin-top: 15px;
}
main dt + dd {
	margin-top: 5px;
}

/* テーブル
--------------------------------------- */
main * + table {
	margin-top: 20px;
}
main table {
	margin-bottom: 20px;
}

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

サイト全体枠

--------------------------------------------------------- */
/* 通常ページ
--------------------------------------- */
#wrapper {
	width: 100%;
	min-width: 1040px;
}

/* ポップアップページ
--------------------------------------- */
#popup_wrapper {
	width: 100%;
}

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

ヘッダー

--------------------------------------------------------- */
#header {
	position: relative;
	z-index: 200000;
	background-color: #FFFFFF;
	border-bottom: 1px solid #DDDDDD;
}
#header.is_fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200000;
	width: 100%;
}

.h_row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 1040px;
	margin-right: auto;
	margin-left: auto;
}

/* サイトロゴ
--------------------------------------- */
.h_logo {
	margin: 0 150px 2px 0;
}

.h_logo img {
	max-height: 35px;
}

/* フリーワード検索
--------------------------------------- */
.h_search {
	margin: 0 10px 0;
}
.h_search .aui_word_search_input {
	width: 280px;
}

/* レンズナビ
--------------------------------------- */
.h_lens_nav > ul {
	display: flex;
}
.h_lens_nav > ul > li {
	padding: 0 10px;
}
.h_lens_nav .menu_title {
	position: relative;
	display: inline-block;
	padding: 44px 0 22px;
	font-size: 1.4rem;
	vertical-align: baseline;
	cursor: pointer;
}
.h_lens_nav .menu_title::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #CB0005;
	-webkit-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.h_lens_nav .menu_contents {
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	border-bottom: 1px solid #DDDDDD;
	background-color: #ffffff;
	-webkit-transform-origin: top center;
	        transform-origin: top center;
	-webkit-transform: translate(0, 100%) scaleY(0.5);
	        transform: translate(0, 100%) scaleY(0.5);
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}
.h_lens_nav .menu_contents > .inner {
	width: 1040px;
	margin: auto;
	opacity: 0;
	-webkit-transform: translateY(-100%);
	        transform: translateY(-100%);
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}
.h_lens_nav > ul > li:hover .menu_title::after {
	width: 100%;
}
.h_lens_nav > ul > li:hover > .menu_contents {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(0, 100%) scaleY(1);
	        transform: translate(0, 100%) scaleY(1);
}
.h_lens_nav > ul > li:hover > .menu_contents > .inner {
	opacity: 1;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}
.h_lens_nav .menu_type .inner {
	padding: 14px 0;
}
.h_lens_nav .menu_type .inner ul {
	display: flex;
}
.h_lens_nav .menu_type .inner li {
	flex: 1;
}
.h_lens_nav .menu_type .inner li a {
	display: block;
	padding: 18px 0;
	text-align: center;
}
.h_lens_nav .menu_maker .inner {
	padding: 20px 0;
}
.h_lens_nav .menu_maker .inner ul {
	display: flex;
	flex-wrap: wrap;
	width: 900px;
	margin: auto;
}
.h_lens_nav .menu_maker .inner li {
	width: 20%;
}
.h_lens_nav .menu_maker .inner li a {
	display: block;
	padding: 14px 0 14px 40px;
}
.h_lens_nav .menu_maker .inner li a:hover {
	opacity: 0.6;
}
.h_lens_nav .menu_maker .inner li img {
	max-height: 26px;
}
.h_lens_nav .menu_series .inner {
	display: flex;
	width: 980px;
	padding: 22px 0;
}
.h_lens_nav .menu_series .series_block {
	flex: 1;
	padding: 0 0 0 30px;
}
.h_lens_nav .menu_series .series_block p {
	padding: 6px 0;
	font-weight: bold;
}
.h_lens_nav .menu_series .series_block ul {
	display: flex;
	flex-wrap: wrap;
}
.h_lens_nav .menu_series .series_block li {
	flex: 0 1 auto;
}
.h_lens_nav .menu_series .series_block .col2 li {
	width: 50%;
}
.h_lens_nav .menu_series .series_block .col3 li {
	width: 33.3333%;
}
.h_lens_nav .menu_series .series_block li a {
	display: block;
	padding: 6px 0;
}

/* ユーティリティ
--------------------------------------- */
.h_utility_nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

/* ----- 注文履歴ボタン ----- */
.h_btn_mporder {
	margin: 0 10px;
	padding: 44px 0 22px;
}

/* ----- マイページボタン ----- */
.h_btn_mypage {
	margin: 0 10px;
	padding: 44px 0 22px;
}

/* ----- 買い物かごボタン ----- */
.h_btn_cart {
	position: relative;
	margin: 5px 0 0 5px;
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.h_btn_cart a {
	display: inline-block;
}
.h_btn_cart svg[class*=aui_icon] {
	width: 3.6rem;
	height: 3.6rem;
	vertical-align: -5px;
	fill: #222222;
}
.h_btn_cart .cart_badge {
	display: inline-block;
	position: absolute;
	top: -0.3rem;
	right: -0.6rem;
	min-width: 2rem;
	min-height: 2rem;
	padding: 0;
	border-radius: 50%;
	background-color: #CB0005;
	font-size: 1.2rem;
	color: #FFFFFF;
	line-height: 2rem;
	text-align: center;
	letter-spacing: 0;
}
.h_btn_cart .cart_empty {
	display: none;
}
.h_btn_cart:hover {
	opacity: 0.8;
}

/* ヘッダー上共通バナー
--------------------------------------- */
#header_banner {
	text-align: center;
}
#header_banner .h_banner {
	display: block;
	height: 72px;
}
#header_banner .h_banner img {
	max-height: 100%;
}
#header_banner .h_text_banner {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	min-height: 50px;
	padding: 8px 0;
	color: #ffffff;
	background-color: #CB0005;
	text-align: center;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.4;
	letter-spacing: 0.14em;
}
#header_banner .h_text_banner::after {
	content: "";
	width: 12px;
	height: 12px;
	margin-left: 10px;
	border-top: 3px solid #ffffff;
	border-right: 3px solid #ffffff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#header_banner .h_rakuten_banner {
	text-align: center;
}
#header_banner .h_rakuten_banner iframe {
	max-width: 100%;
	margin: 10px auto 0;
}

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

コンテナ枠

--------------------------------------------------------- */
#container {
	width: 100%;
}

/* パンくず
--------------------------------------- */
#plist {
	margin: 24px auto;
	width: 1040px;
	overflow: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}
#plist ul {
	margin: auto;
	padding: 0;
	font-size: 0; /* liの間のスペースを消す為 */
	vertical-align: baseline;
}
#plist li {
	display: inline-block;
	position: relative;
	margin: auto 0 auto auto;
	padding-bottom: 0;
	font-size: 1.2rem;
	line-height: 1.4;
	vertical-align: baseline;
}
#plist li a {
	color: #AAAAAA;
}
#plist li::after {
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	margin: 0 1.5rem;
	border-top: 1px solid #AAAAAA;
	border-right: 1px solid #AAAAAA;
	vertical-align: 0.2rem;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#plist li:last-child::after {
	display: none;
}

/* メインコンテンツ
--------------------------------------- */
#main_contents {
	width: 100%;
}

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

フッター

--------------------------------------------------------- */
#footer {
	width: 100%;
	margin: 120px 0 0 0;
	padding: 105px 0;
	background-color: #F6F6F6;
}

.f_row {
	display: flex;
	width: 1040px;
	margin-right: auto;
	margin-left: auto;
}

/* フッターナビ
--------------------------------------- */
.f_nav {
	display: flex;
	width: 800px;
}
.f_nav .f_nav_box {
	flex: 1;
	padding: 0 0 0 40px;
}
.f_nav .f_nav_box_ttl {
	margin: 0 0 28px 0;
	font-weight: bold;
	font-size: 14px;
	letter-spacing: 0.2em;
}
.f_nav li {
	margin: 0 0 15px 0;
}

/* SNS
--------------------------------------- */
.f_sns {
	width: 240px;
	text-align: center;
}
.f_sns .f_sns_box_ttl {
	margin: 0 0 20px 0;
	font-weight: bold;
	font-size: 14px;
	letter-spacing: 0.2em;
}
.f_sns ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0 2px;
}
.f_sns svg[class*=aui_icon] {
	width: 4.2rem;
	height: 4.2rem;
}
.f_sns img[class*=aui_icon] {
	width: 4.2rem;
	height: 4.2rem;
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.f_sns img[class*=aui_icon]:hover {
	opacity: 0.5;
}

/* コピーライト
--------------------------------------- */
.f_copy {
	width: 100%;
	padding: 40px 0 0;
	text-align: center;
}
.f_copy_text {
	font-size: 1.2rem;
}

/* トップへ戻るボタン
--------------------------------------- */
#page_top_button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 5%;
	bottom: 25px;
	z-index: 1000;
	width: 64px;
	height: 64px;
	background-color: #666666;
	border-radius: 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(-30px);
	        transform: translateY(-30px);
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#page_top_button span {
	display: none;
}
#page_top_button::before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	margin-top: 8px;
	border-top: solid 2px #FFFFFF;
	border-right: solid 2px #FFFFFF;
	-webkit-transform: rotate(315deg);
	        transform: rotate(315deg);
}
#page_top_button.is_visible {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0px);
	        transform: translateY(0px);
}
#page_top_button.is_visible:hover {
	background-color: #222222;
	-webkit-transform: translateY(-15px);
	        transform: translateY(-15px);
}

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

コンポーネント

- 汎用性が高い最小単位のパーツ

--------------------------------------------------------- */
/* コンテナ固定幅
--------------------------------------- */
.aui_fixed_container {
	width: 1040px;
	margin-right: auto;
	margin-left: auto;
}

/* コンテナ固定幅　幅950pxの旧ページに使用
--------------------------------------- */
.aui_fixed_container_950 {
	width: 950px;
	margin-right: auto;
	margin-left: auto;
}

/* コンテナ固定幅　左メニュー付きの旧ページに使用
--------------------------------------- */
.aui_fixed_container_710 {
	width: 710px;
	margin-right: auto;
	margin-left: auto;
}

/* カラム
--------------------------------------- */
.aui_columns {
	display: flex;
	flex-wrap: wrap;
}
.aui_columns > * {
	margin-bottom: 0;
}
.aui_columns.is_nowrap {
	flex-wrap: nowrap;
}
.aui_columns.is_h_between {
	justify-content: space-between;
}
.aui_columns.is_h_center {
	justify-content: center;
}
.aui_columns.is_v_center {
	align-items: center;
}
.aui_columns.is_spacing_xs > * {
	margin-top: 16px;
	margin-left: 16px;
}
.aui_columns.is_spacing_sm > * {
	margin-top: 24px;
	margin-left: 24px;
}
.aui_columns.is_spacing_md > * {
	margin-top: 40px;
	margin-left: 40px;
}
.aui_columns.is_spacing_lg > * {
	margin-top: 48px;
	margin-left: 48px;
}
.aui_columns.is_spacing_xl > * {
	margin-top: 68px;
	margin-left: 68px;
}
.aui_columns:not([class*=is_col]) > * {
	margin-top: 0;
}
.aui_columns.is_col_fixed > * {
	flex: 1;
	margin-top: 0;
}
.aui_columns > *:first-child {
	margin-left: 0;
}
.aui_columns.is_col2 > * {
	width: calc(100% / 2);
}
.aui_columns.is_col2.is_spacing_xs > * {
	width: calc((100% - 16px * 1) / 2);
}
.aui_columns.is_col2.is_spacing_sm > * {
	width: calc((100% - 24px * 1) / 2);
}
.aui_columns.is_col2.is_spacing_md > * {
	width: calc((100% - 40px * 1) / 2);
}
.aui_columns.is_col2.is_spacing_lg > * {
	width: calc((100% - 48px * 1) / 2);
}
.aui_columns.is_col2.is_spacing_xl > * {
	width: calc((100% - 68px * 1) / 2);
}
.aui_columns.is_col2 > *:nth-child(2n+1) {
	margin-left: 0;
}
.aui_columns.is_col2 > *:not(:nth-child(n+3)) {
	margin-top: 0;
}
.aui_columns.is_col3 > * {
	width: calc(100% / 3);
}
.aui_columns.is_col3.is_spacing_xs > * {
	width: calc((100% - 16px * 2) / 3);
}
.aui_columns.is_col3.is_spacing_sm > * {
	width: calc((100% - 24px * 2) / 3);
}
.aui_columns.is_col3.is_spacing_md > * {
	width: calc((100% - 40px * 2) / 3);
}
.aui_columns.is_col3.is_spacing_lg > * {
	width: calc((100% - 48px * 2) / 3);
}
.aui_columns.is_col3.is_spacing_xl > * {
	width: calc((100% - 68px * 2) / 3);
}
.aui_columns.is_col3 > *:nth-child(3n+1) {
	margin-left: 0;
}
.aui_columns.is_col3 > *:not(:nth-child(n+4)) {
	margin-top: 0;
}
.aui_columns.is_col4 > * {
	width: calc(100% / 4);
}
.aui_columns.is_col4.is_spacing_xs > * {
	width: calc((100% - 16px * 3) / 4);
}
.aui_columns.is_col4.is_spacing_sm > * {
	width: calc((100% - 24px * 3) / 4);
}
.aui_columns.is_col4.is_spacing_md > * {
	width: calc((100% - 40px * 3) / 4);
}
.aui_columns.is_col4.is_spacing_lg > * {
	width: calc((100% - 48px * 3) / 4);
}
.aui_columns.is_col4.is_spacing_xl > * {
	width: calc((100% - 68px * 3) / 4);
}
.aui_columns.is_col4 > *:nth-child(4n+1) {
	margin-left: 0;
}
.aui_columns.is_col4 > *:not(:nth-child(n+5)) {
	margin-top: 0;
}
.aui_columns.is_col5 > * {
	width: calc(100% / 5);
}
.aui_columns.is_col5.is_spacing_xs > * {
	width: calc((100% - 16px * 4) / 5);
}
.aui_columns.is_col5.is_spacing_sm > * {
	width: calc((100% - 24px * 4) / 5);
}
.aui_columns.is_col5.is_spacing_md > * {
	width: calc((100% - 40px * 4) / 5);
}
.aui_columns.is_col5.is_spacing_lg > * {
	width: calc((100% - 48px * 4) / 5);
}
.aui_columns.is_col5.is_spacing_xl > * {
	width: calc((100% - 68px * 4) / 5);
}
.aui_columns.is_col5 > *:nth-child(5n+1) {
	margin-left: 0;
}
.aui_columns.is_col5 > *:not(:nth-child(n+6)) {
	margin-top: 0;
}

/* 見出し
--------------------------------------- */
/* ----- 見出し1（各ページの見出し等） ----- */
.aui_title_01 {
	margin: 40px 0 84px;
	text-align: center;
	line-height: 1.5;
}
.aui_title_01.en {
	font-size: 2.6rem;
	font-weight: 400;
	letter-spacing: 0.35rem;
}
.aui_title_01.ja {
	font-size: 2.2rem;
	font-weight: 400;
	letter-spacing: 0.3rem;
}

/* ----- 見出し2（各セクションの見出し等） ----- */
.aui_title_02 {
	margin: 62px 0 40px;
	text-align: center;
}
.aui_title_02 img {
	margin-bottom: 2px;
	width: 1.8rem;
	vertical-align: bottom;
}
.aui_title_02 .en {
	display: block;
	margin: 0 0 1.4rem 0;
	font-size: 3.2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.42rem;
}
.aui_title_02 .ja {
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.224rem;
}

/* ----- 見出し3（グレー下線付きタイプ） ----- */
.aui_title_03 {
	margin: auto auto 30px auto;
	padding: 14px 0;
	border-bottom: 1px solid #D5D5D5;
	line-height: 1.2;
	letter-spacing: 0.15rem;
}
.aui_title_03.en {
	font-size: 1.8rem;
	font-weight: 700;
}
.aui_title_03.ja {
	font-size: 1.7rem;
	font-weight: 700;
}

/* ----- 見出し4（グレー背景付きタイプ） ----- */
.aui_title_04 {
	margin: auto auto 30px auto;
	padding: 16px 20px;
	background-color: #F6F6F6;
	line-height: 1.2;
	letter-spacing: 0.15rem;
}
.aui_title_04.en {
	font-size: 1.8rem;
	font-weight: 700;
}
.aui_title_04.ja {
	font-size: 1.6rem;
	font-weight: 700;
}

/* ----- 見出し5（太文字） ----- */
.aui_title_05 {
	margin: auto auto 30px auto;
	padding: 14px 0;
	line-height: 1.2;
	letter-spacing: 0.15rem;
}
.aui_title_05.en {
	font-size: 1.8rem;
	font-weight: 700;
}
.aui_title_05.ja {
	font-size: 1.7rem;
	font-weight: 700;
}

/* ボタン
--------------------------------------- */
.aui_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 1rem;
	border: 1px solid #CCCCCC;
	background-color: #FFFFFF;
	font-family: inherit;
	font-size: 1.4rem;
	line-height: 1.6;
	letter-spacing: 0.1em;
	text-align: center;
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}
.aui_button:hover {
	border-color: #666666;
	background-color: #666666;
	color: #FFFFFF;
	opacity: 1;
}
.aui_button.hover_opacity:hover {
	border-color: #CCCCCC;
	background-color: #FFFFFF;
	color: #222222;
	opacity: 0.7;
}
.aui_button.is_primary {
	border-color: #CB0005;
	background-color: #CB0005;
	color: #FFFFFF;
}
.aui_button.is_primary:hover {
	border-color: #CB0005;
	background-color: transparent;
	color: #CB0005;
}
.aui_button.is_primary.hover_opacity:hover {
	border-color: #CB0005;
	background-color: #CB0005;
	color: #FFFFFF;
}
.aui_button.is_primary_outline {
	border-color: #CB0005;
	color: #CB0005;
}
.aui_button.is_primary_outline:hover {
	border-color: #CB0005;
	background-color: #CB0005;
	color: #FFFFFF;
}
.aui_button.is_primary_outline.hover_opacity:hover {
	border-color: #CB0005;
	background-color: #FFFFFF;
	color: #CB0005;
}
.aui_button.is_gray {
	border-color: #EEEEEE;
	background-color: #EEEEEE;
}
.aui_button.is_gray:hover {
	border-color: #EEEEEE;
	background-color: transparent;
	color: #666666;
}
.aui_button.is_gray.hover_opacity:hover {
	border-color: #EEEEEE;
	background-color: #EEEEEE;
	color: #222222;
}
.aui_button.is_dark {
	border-color: #666666;
	background-color: #666666;
	color: #FFFFFF;
}
.aui_button.is_dark:hover {
	border-color: #666666;
	background-color: transparent;
	color: #666666;
}
.aui_button.is_dark.hover_opacity:hover {
	border-color: #666666;
	background-color: #666666;
	color: #FFFFFF;
}
.aui_button.is_black {
	border-color: #222222;
	background-color: #222222;
	color: #FFFFFF;
}
.aui_button.is_black:hover {
	border-color: #222222;
	background-color: transparent;
	color: #222222;
}
.aui_button.is_black.hover_opacity:hover {
	border-color: #222222;
	background-color: #222222;
	color: #FFFFFF;
}
.aui_button.is_liquid {
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
}
.aui_button.is_half {
	width: 50%;
	padding-left: 10px;
	padding-right: 10px;
}
.aui_button.is_xl {
	width: 420px;
}
.aui_button.is_lg {
	width: 300px;
}
.aui_button.is_md {
	width: 242px;
}
.aui_button.is_sm {
	width: 160px;
}
.aui_button.is_xhigh {
	height: 72px;
	padding-top: 0;
	padding-bottom: 0;
}
.aui_button.is_high {
	height: 62px;
	padding-top: 0;
	padding-bottom: 0;
}
.aui_button.is_low {
	height: 48px;
	padding-top: 0;
	padding-bottom: 0;
}
.aui_button.is_disabled {
	color: #AAAAAA;
	background-color: #F6F6F6;
	pointer-events: none;
}
.aui_button.is_line {
	position: relative;
	padding-left: 70px;
	padding-right: 15px;
	border-color: #00c300;
	border-radius: 7px;
	background-color: #00c300;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' d='M77,46.185C77,34.1,64.888,24.274,50,24.274S23,34.1,23,46.185c0,10.831,9.6,19.9,22.58,21.617.88.19,2.077.58,2.379,1.331a5.551,5.551,0,0,1,.087,2.442s-.316,1.905-.385,2.311c-.117.682-.542,2.67,2.339,1.455s15.549-9.155,21.214-15.675h0C75.126,55.375,77,51.02,77,46.185Zm-36.526,6.45a.526.526,0,0,1-.525.526H32.382a.522.522,0,0,1-.363-.147l-.007-.007L32,53a.525.525,0,0,1-.147-.363h0V40.872a.526.526,0,0,1,.526-.526h1.894a.525.525,0,0,1,.526.526v9.343h5.146a.526.526,0,0,1,.525.526Zm4.566,0a.526.526,0,0,1-.526.525H42.62a.526.526,0,0,1-.526-.525V40.872a.527.527,0,0,1,.526-.526h1.894a.527.527,0,0,1,.526.526Zm13.036,0a.526.526,0,0,1-.526.525H55.656a.543.543,0,0,1-.135-.018l-.007,0-.036-.011-.016-.006-.025-.011-.026-.012-.015-.008-.032-.02,0,0a.5.5,0,0,1-.134-.13l-5.4-7.29v6.987a.526.526,0,0,1-.526.525H47.407a.526.526,0,0,1-.526-.525V40.872a.527.527,0,0,1,.526-.526h1.912l.027,0,.028,0,.022,0,.031.007.018,0,.031.01.017.006.03.013.017.008.028.016.016.009.027.019.014.01.028.024.01.009.031.032,0,0c.014.017.028.034.041.053l5.391,7.281V40.872a.526.526,0,0,1,.526-.526H57.55a.527.527,0,0,1,.526.526Zm10.457-9.87a.525.525,0,0,1-.525.526H62.863v1.989h5.145a.525.525,0,0,1,.525.526V47.7a.525.525,0,0,1-.525.526H62.863v1.989h5.145a.525.525,0,0,1,.525.526v1.894a.525.525,0,0,1-.525.526H60.442a.52.52,0,0,1-.363-.147l-.008-.007L60.064,53a.52.52,0,0,1-.147-.363h0V40.873h0a.525.525,0,0,1,.145-.362l.009-.01.006-.005a.522.522,0,0,1,.365-.149h7.566a.525.525,0,0,1,.525.527Z'/%3E%3C/svg%3E");
	background-size: auto 76px;
	background-position: -11px center;
	background-repeat: no-repeat;
	color: #FFFFFF;
}
.aui_button.is_line::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 56px;
	width: 1px;
	height: 100%;
	background-color: #00b300;
	transition: background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.aui_button.is_line:hover {
	border-color: #00e000;
	background-color: #00e000;
	color: #FFFFFF;
}
.aui_button.is_line:hover::after {
	background-color: #00c900;
}
.aui_button.is_line:active {
	border-color: #00b300;
	background-color: #00b300;
	color: #FFFFFF;
}
.aui_button.is_line:active::after {
	background-color: #009800;
}
.aui_button.is_line.is_disabled {
	color: #ffffff;
	border-color: #c6c6c6;
	background-color: #c6c6c6;
	pointer-events: none;
}
.aui_button.is_line.is_disabled::after {
	background-color: #b5b5b5;
}
.aui_button.is_line.is_xhigh {
	padding-left: 87px;
	background-size: auto 96px;
	background-position: -12px center;
}
.aui_button.is_line.is_xhigh::after {
	left: 72px;
}
.aui_button.is_line.is_high {
	padding-left: 77px;
	background-size: auto 84px;
	background-position: -11px center;
}
.aui_button.is_line.is_high::after {
	left: 62px;
}
.aui_button.is_line.is_low {
	padding-left: 63px;
	background-size: auto 66px;
	background-position: -9px center;
}
.aui_button.is_line.is_low::after {
	left: 48px;
}

/* アイコン
--------------------------------------- */
svg[class*=aui_icon] {
	display: inline-block;
	width: 24px;
	height: 24px;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}

svg.aui_icon_search {
	fill: #aaaaaa;
}

svg.aui_icon_member_ol {
	fill: #aaaaaa;
}

svg.aui_icon_cart {
	fill: #aaaaaa;
}

/* テキストリンク
--------------------------------------- */
.aui_link {
	word-break: break-all;
	-webkit-appearance: none;
	        appearance: none;
	outline: none;
	border: none;
	background: none;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.aui_link:hover, .aui_link:active {
	opacity: 0.8;
}
.aui_link.is_type01, .aui_link.is_type01:visited {
	color: #0094E1;
}
.aui_link.is_type01:hover, .aui_link.is_type01:active {
	color: #0094E1;
}
.aui_link.is_type02, .aui_link.is_type02:visited {
	color: #AAAAAA;
}
.aui_link.is_type02:hover, .aui_link.is_type02:active {
	color: #AAAAAA;
}
.aui_link:not(.pos_left)[class*=icon_]::after {
	content: "";
	display: inline-block;
	width: 1.22em;
	height: 1.22em;
	margin: 0 0.2em;
	vertical-align: -0.2em;
}
.aui_link.pos_left[class*=icon_]::before {
	content: "";
	display: inline-block;
	width: 1.22em;
	height: 1.22em;
	margin-right: 0.2em;
	vertical-align: -0.2em;
}
.aui_link.icon_window::before, .aui_link.icon_window::after {
	background-image: url(/img/common/icon/icon_link_window.svg);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.aui_link.icon_caution::before, .aui_link.icon_caution::after {
	background-image: url(/img/common/icon/icon_link_caution.svg);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.aui_link.icon_question::before, .aui_link.icon_question::after {
	background-color: #AAAAAA;
	-webkit-mask: url("/img/common/icon/icon_question.svg") no-repeat center;
	        mask: url("/img/common/icon/icon_question.svg") no-repeat center;
	-webkit-mask-size: contain;
	        mask-size: contain;
}
.aui_link.is_type01.icon_question::before, .aui_link.is_type01.icon_question::after {
	background-color: currentColor;
}
.aui_link.icon_question_ol::before, .aui_link.icon_question_ol::after {
	background-image: url(/img/common/icon/icon_question_ol.svg);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.aui_link.icon_delete::before, .aui_link.icon_delete::after {
	background-image: url(/img/common/icon/icon_delete.svg);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.aui_link.icon_run::before, .aui_link.icon_run::after {
	background-image: url(/img/common/icon/icon_run.svg);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center center;
}

/* リンクボックスリスト
--------------------------------------- */
.aui_linkbox_list {
	display: flex;
	flex-wrap: wrap;
	border-collapse: collapse;
	width: 100%;
	margin: 0;
}
.aui_linkbox_list + .aui_linkbox_list {
	margin-top: -1px;
}
.aui_linkbox_list li {
	margin: 0;
}
.aui_linkbox_list a {
	display: block;
	position: relative;
	height: 100%;
	padding: 20px 20px;
	border: 1px solid #D5D5D5;
	border-left-width: 0;
	text-align: center;
	transition: none;
}
.aui_linkbox_list a:hover {
	opacity: 1;
	color: #FFFFFF;
	background-color: #666666;
}
.aui_linkbox_list a.is_disabled {
	color: #AAAAAA;
	background-color: #F6F6F6;
	pointer-events: none;
}
.aui_linkbox_list:not([class*=is_col]) li {
	flex: 1;
}
.aui_linkbox_list:not([class*=is_col]) li:nth-child(1) a {
	border-left-width: 1px;
}
.aui_linkbox_list.is_col2 li {
	width: 50%;
}
.aui_linkbox_list.is_col2 li:nth-child(2n+1) a {
	border-left-width: 1px;
}
.aui_linkbox_list.is_col2 li:nth-child(n+3) a {
	border-top-width: 0;
}
.aui_linkbox_list.is_col3 li {
	width: 33.3333%;
}
.aui_linkbox_list.is_col3 li:nth-child(3n+1) a {
	border-left-width: 1px;
}
.aui_linkbox_list.is_col3 li:nth-child(n+4) a {
	border-top-width: 0;
}
.aui_linkbox_list.is_col4 li {
	width: 25%;
}
.aui_linkbox_list.is_col4 li:nth-child(4n+1) a {
	border-left-width: 1px;
}
.aui_linkbox_list.is_col4 li:nth-child(n+5) a {
	border-top-width: 0;
}
.aui_linkbox_list.is_col5 li {
	width: 20%;
}
.aui_linkbox_list.is_col5 li:nth-child(5n+1) a {
	border-left-width: 1px;
}
.aui_linkbox_list.is_col5 li:nth-child(n+6) a {
	border-top-width: 0;
}
.aui_linkbox_list.is_col6 li {
	width: 16.66665%;
}
.aui_linkbox_list.is_col6 li:nth-child(6n+1) a {
	border-left-width: 1px;
}
.aui_linkbox_list.is_col6 li:nth-child(n+7) a {
	border-top-width: 0;
}
.aui_linkbox_list.is_arrow a {
	padding-left: 26px;
	padding-right: 26px;
}
.aui_linkbox_list.is_arrow a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 16px;
	width: 6px;
	height: 6px;
	margin-top: -5px;
	border-top: 1px solid #666666;
	border-right: 1px solid #666666;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.aui_linkbox_list.is_arrow :hover::after {
	border-top-color: currentColor;
	border-right-color: currentColor;
}

/* テキスト色
--------------------------------------- */
.aui_color_alert {
	color: #CB0005;
}

/* 背景色
--------------------------------------- */
.aui_bgcolor_gray {
	background-color: #F6F6F6;
}

.aui_bgcolor_white {
	background-color: #FFFFFF;
}

/* タグラベル
--------------------------------------- */
.aui_tag {
	display: inline-block;
	padding: 7px 12px;
	background-color: #222222;
	color: #FFFFFF;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.16rem;
}
.aui_tag.is_primary {
	background-color: #CB0005;
}
.aui_tag.is_gray {
	background-color: #777777;
}

/* リストマーク
--------------------------------------- */
[class*=aui_list_mark] {
	counter-reset: cnt;
}
[class*=aui_list_mark] > li {
	position: relative;
	padding-left: 1.5rem;
}

.aui_list_mark_arrow > li::after {
	display: block;
	content: "";
	position: absolute;
	top: 0.8em;
	left: 0;
	width: 0.5em;
	height: 0.5em;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.aui_list_mark_disc > li::before {
	display: block;
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1em;
}

.aui_list_mark_circle > li::before {
	display: block;
	content: "○";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1em;
}

.aui_list_mark_square > li::before {
	display: block;
	content: "■";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1em;
}

.aui_list_mark_asterisk > li::before {
	display: block;
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1em;
}

.aui_list_mark_check > li {
	padding-left: 1.8rem;
}
.aui_list_mark_check > li::before {
	display: block;
	content: "";
	position: absolute;
	top: 0.6em;
	left: 0;
	width: 2em;
	height: 0.8em;
	background: url(/img/common/icon/icon_checkmark.svg) left top no-repeat;
	background-size: contain;
	font-size: 1em;
}

.aui_list_mark_decimal > li::before {
	display: block;
	content: counter(cnt) ".";
	counter-increment: cnt;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1em;
}

.aui_list_mark_parent > li::before {
	display: block;
	content: counter(cnt) "）";
	counter-increment: cnt;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1em;
}

/* テキストマーク
--------------------------------------- */
[class*=aui_mark]:not(ul):not(ol) {
	position: relative;
	padding-left: 1.5em;
}

.aui_mark_square:not(ul):not(ol)::before {
	display: block;
	content: "■";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1em;
}

.aui_mark_disc:not(ul):not(ol) {
	position: relative;
	padding-left: 1.5em;
}
.aui_mark_disc:not(ul):not(ol)::before {
	display: block;
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1em;
}

.aui_mark_asterisk:not(ul):not(ol) {
	position: relative;
	padding-left: 1.5em;
}
.aui_mark_asterisk:not(ul):not(ol)::before {
	display: block;
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1em;
}

/* テーブル
--------------------------------------- */
.aui_table {
	width: 100%;
	border-collapse: collapse;
}
.aui_table thead, .aui_table tbody, .aui_table tr {
	vertical-align: inherit;
	padding: inherit;
}
.aui_table th, .aui_table td {
	padding: 20px 40px;
	border: 1px solid #D5D5D5;
	font-weight: normal;
	vertical-align: inherit;
}
.aui_table[class*=pv] th, .aui_table[class*=ph] th, .aui_table[class*=pt] th, .aui_table[class*=pb] th, .aui_table[class*=pl] th, .aui_table[class*=pr] th, .aui_table[class*=pv] td, .aui_table[class*=ph] td, .aui_table[class*=pt] td, .aui_table[class*=pb] td, .aui_table[class*=pl] td, .aui_table[class*=pr] td {
	padding: inherit;
}
.aui_table.cell_fixed {
	table-layout: fixed;
}
.aui_table.th_gray th {
	background-color: #F6F6F6;
}
.aui_table .cell_gray {
	background-color: #F6F6F6;
}
.aui_table .cell_pink {
	background-color: #FFEEEE;
}

/* バナー
--------------------------------------- */
.aui_banner {
	margin: 32px auto;
	text-align: center;
}
.aui_banner img {
	max-width: 100%;
}
.aui_banner a:link,
.aui_banner a:visited {
	text-decoration: none;
	color: #222;
}
.aui_banner .aui_banner_text {
	display: block;
	margin: min(2%, 8px) auto auto;
	padding: 0;
	font-size: 14px;
}

/* 枠線ボックス
--------------------------------------- */
.aui_border_box {
	padding: 10px;
	border: 1px solid #D5D5D5;
}
.aui_border_box.is_alert {
	border: 1px solid #CB0005;
	color: #CB0005;
}

/* 区切り線
--------------------------------------- */
.aui_divider {
	width: 100%;
	overflow: visible;
	text-align: inherit;
	margin: 2rem 0;
	border: 0;
	border-top: 1px solid #DDDDDD;
}
.aui_divider_top {
	border-top: 1px solid #DDDDDD;
}
.aui_divider_bottom {
	border-bottom: 1px solid #DDDDDD;
}

[class*=aui_divider].is_bold {
	border-width: 2px;
}
[class*=aui_divider].is_black {
	border-color: #222222;
}

/* ステップナビゲーション
--------------------------------------- */
.aui_step_nav {
	width: 100%;
	display: flex;
}
.aui_step_nav > li {
	position: relative;
	flex: 1;
	margin-bottom: 0;
	padding-bottom: 16px;
	color: #AAAAAA;
	font-size: 1.3rem;
	text-align: center;
	white-space: nowrap;
}
.aui_step_nav > li.active {
	border-bottom: 2px solid #CB0005;
	color: #222222;
}
.aui_step_nav > li::after {
	display: inline-block;
	content: "";
	position: absolute;
	top: 0;
	right: 0.4em;
	width: 0.6em;
	height: 0.6em;
	margin-top: 0.7em;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.aui_step_nav > li:last-child::after {
	display: none;
}
.aui_step_nav > li > * {
	display: inline-block;
	font-weight: normal;
}

/* ページネーション
--------------------------------------- */
.aui_pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
}
.aui_pagination li {
	flex: none;
	margin: 0;
}
.aui_pagination span, .aui_pagination a {
	position: relative;
	display: block;
	padding: 10px;
	color: #CCCCCC;
	line-height: 1;
}
.aui_pagination .active span {
	color: #222222;
}
.aui_pagination .prev a,
.aui_pagination .next a,
.aui_pagination .prev span,
.aui_pagination .next span {
	position: relative;
	text-indent: -9999px;
}
.aui_pagination .prev a::after,
.aui_pagination .next a::after,
.aui_pagination .prev span::after,
.aui_pagination .next span::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	width: 1rem;
	height: 1rem;
	margin-top: -0.4rem;
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.aui_pagination .prev a::after,
.aui_pagination .next a::after {
	border-top: 2px solid #222222;
	border-right: 2px solid #222222;
}
.aui_pagination .prev span::after,
.aui_pagination .next span::after {
	border-top: 2px solid #CCCCCC;
	border-right: 2px solid #CCCCCC;
}
.aui_pagination .prev a::after,
.aui_pagination .prev span::after {
	left: 0rem;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}
.aui_pagination .next a::after,
.aui_pagination .next span::after {
	right: 0rem;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.aui_pagination a:hover {
	color: #666666;
}
.aui_pagination .prev a:hover::after,
.aui_pagination .next a:hover::after {
	border-color: #666666;
}
.aui_pagination.is_left {
	justify-content: start;
}
.aui_pagination.is_right {
	justify-content: flex-end;
}

/* ツリー構造
--------------------------------------- */
/* 定義リスト
--------------------------------------- */
.aui_dlist {
	display: table;
	width: 100%;
}
.aui_dlist > dl {
	display: table-row;
	margin: 0;
	padding: 0;
}
.aui_dlist > dl > dt {
	display: table-cell;
	position: relative;
	margin-top: inherit;
	margin-bottom: inherit;
	padding-top: inherit;
	padding-right: 1rem;
	padding-bottom: inherit;
	vertical-align: middle;
}
.aui_dlist > dl > dd {
	display: table-cell;
	margin-top: inherit;
	margin-bottom: inherit;
	padding-top: inherit;
	padding-bottom: inherit;
	vertical-align: middle;
}
.aui_dlist.is_dt_fit dt {
	white-space: nowrap;
}
.aui_dlist.is_dt_fit dd {
	width: 100%;
}
.aui_dlist.is_right > dl > dd {
	text-align: right;
}
.aui_dlist.is_vtop > dl > dt, .aui_dlist.is_vtop > dl > dd {
	vertical-align: top;
}
.aui_dlist.is_colon > dl > dt {
	padding-right: 2.5rem;
}
.aui_dlist.is_colon > dl > dt::before {
	content: ":";
	position: absolute;
	top: 50%;
	right: 1rem;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	margin-top: inherit;
	margin-bottom: inherit;
	padding-top: inherit;
	padding-bottom: inherit;
}
.aui_dlist.is_colon.is_vtop > dl > dt::before {
	top: auto;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}
.aui_dlist.is_leader > dl > dt {
	padding-right: 4rem;
}
.aui_dlist.is_leader > dl > dt::before {
	content: "･･･";
	position: absolute;
	top: 50%;
	right: 0.8rem;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	margin-top: inherit;
	margin-bottom: inherit;
	padding-top: inherit;
	padding-bottom: inherit;
}
.aui_dlist.is_leader.is_vtop > dl > dt::before {
	top: auto;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}

/* アコーディオン
--------------------------------------- */
.aui_accordion {
	width: 100%;
	margin-top: 1px;
	margin-bottom: 0;
}

.aui_accordion_title {
	display: block;
	position: relative;
	margin-top: -1px;
	margin-bottom: 0;
	padding: 34px 1px;
	border-top: 1px solid #D5D5D5;
	border-bottom: 1px solid #D5D5D5;
	background-color: #FFFFFF;
	font-weight: normal;
	cursor: pointer;
}

a.aui_accordion_title {
	background-color: transparent;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.aui_accordion_content {
	overflow: hidden;
	margin-top: 0;
	margin-bottom: 0;
	padding: 30px 1px;
	background-color: #FFFFFF;
}

/* プラスアイコン */
.aui_accordion_title.icon_plus::before,
.aui_accordion_title.icon_plus::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 5px;
	width: 12px;
	height: 1px;
	background-color: #222222;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.aui_accordion_title.icon_plus::before {
	-webkit-transform: rotate(-90deg);
	        transform: rotate(-90deg);
}

/* 矢印アイコン */
.aui_accordion_title.icon_angle::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 5px;
	width: 10px;
	height: 10px;
	margin-top: -10px;
	border-top: solid 1px #222222;
	border-right: solid 1px #222222;
	-webkit-transform: rotate(135deg);
	        transform: rotate(135deg);
	transition: all 0.3s ease;
}

/* オープン状態 */
.aui_accordion_title.is_opened.icon_plus::before {
	-webkit-transform: rotate(0deg);
	        transform: rotate(0deg);
}
.aui_accordion_title.is_opened.icon_plus::after {
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
	opacity: 0;
}
.aui_accordion_title.is_opened.icon_angle::before {
	margin-top: -5px;
	-webkit-transform: rotate(315deg);
	        transform: rotate(315deg);
}

.aui_accordion_content.is_opened {
	will-change: height;
	border-bottom: 1px solid #D5D5D5;
}

/* タブ
--------------------------------------- */
.aui_tab .aui_tab_nav {
	display: flex;
	margin-bottom: 0;
	border-bottom: 1px solid #D5D5D5;
}
.aui_tab .aui_tab_nav li {
	width: 50%;
	margin-bottom: -1px;
	text-align: center;
}
.aui_tab .aui_tab_nav li a {
	display: block;
	padding: 18px 0;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: transparent;
	background-color: transparent;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.aui_tab .aui_tab_nav li.is_active a {
	border-bottom-color: #CB0005;
	color: #CB0005;
}
.aui_tab .aui_tab_content {
	position: relative;
	overflow: hidden;
}
.aui_tab .aui_tab_panel {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0;
	width: 100%;
	opacity: 0;
	-webkit-transform: translateY(30px);
	        transform: translateY(30px);
}
.aui_tab .aui_tab_panel.is_active {
	position: relative;
	z-index: 10;
	opacity: 1;
	-webkit-transform: none;
	        transform: none;
	transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
	transition: opacity 0.4s ease-out, transform 0.4s ease-out;
	transition: opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.aui_tab .aui_tab_panel.is_exiting {
	opacity: 0;
	-webkit-transform: translateY(-30px);
	        transform: translateY(-30px);
	transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
	transition: opacity 0.4s ease-out, transform 0.4s ease-out;
	transition: opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}

/* ドロワー
--------------------------------------- */
.aui_drawer {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
}
.aui_drawer::before {
	content: "";
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.88);
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	visibility: hidden;
	opacity: 0;
}
.aui_drawer .aui_drawer_content {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1;
	overflow-y: scroll;
	width: 26.7rem;
	height: 100%;
	background-color: #FFFFFF;
	-webkit-transform: translateX(100%);
	        transform: translateX(100%);
	transition: -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	-webkit-overflow-scrolling: touch;
}
.aui_drawer .aui_drawer_toggle {
	position: absolute;
	top: 1.6rem;
	right: 28.1rem;
	width: 2.4rem;
	height: 2.4rem;
	color: #FFFFFF;
	background-color: transparent;
	border: 0;
	text-indent: -9999px;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	opacity: 0;
	transition: all 0.4s ease;
	outline: none;
}
.aui_drawer .aui_drawer_toggle::before, .aui_drawer .aui_drawer_toggle::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 2.4rem;
	height: 1px;
	background-color: #FFFFFF;
}
.aui_drawer .aui_drawer_toggle::before {
	-webkit-transform: rotate(-90deg);
	        transform: rotate(-90deg);
}

/* オープン時 */
.aui_drawer.is_opened {
	pointer-events: auto;
}
.aui_drawer.is_opened::before {
	opacity: 1;
	visibility: visible;
}
.aui_drawer.is_opened .aui_drawer_content {
	-webkit-transform: translateX(0);
	        transform: translateX(0);
}
.aui_drawer.is_opened .aui_drawer_toggle {
	-webkit-transform: rotate(225deg);
	        transform: rotate(225deg);
	opacity: 1;
}

/* オープン時、背景スクロールを無効 */
html.aui_drawer_fixed {
	height: 100vh;
}

body.aui_drawer_fixed {
	position: fixed;
	width: 100%;
	height: 100vh;
}

/* スライダー/カルーセル
--------------------------------------- */
.aui_swiper {
	position: relative;
	margin-right: auto;
	padding-bottom: 42px;
	overflow: hidden;
	list-style: none;
	/* pagination and arrows horizontally */
}
.aui_swiper .swiper-slide {
	text-align: center;
}
.aui_swiper .swiper-button-prev,
.aui_swiper .swiper-button-next {
	position: absolute;
	top: 50%;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: 40px;
	margin: 0;
	padding: 0;
	background: transparent;
	line-height: 0px;
	font-size: 0px;
	cursor: pointer;
	color: transparent;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	border: none;
	outline: none;
}
.aui_swiper .swiper-button-prev {
	left: 8px;
}
.aui_swiper .swiper-button-next {
	right: 8px;
}
.aui_swiper .swiper-button-prev::after,
.aui_swiper .swiper-button-next::after {
	position: relative;
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid #222222;
	border-right: 2px solid #222222;
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.aui_swiper .swiper-button-prev::after {
	left: 0;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}
.aui_swiper .swiper-button-next::after {
	right: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.aui_swiper .swiper-button-prev:hover::after {
	border-color: #BBBBBB;
}
.aui_swiper .swiper-button-next:hover::after {
	border-color: #BBBBBB;
}
.aui_swiper .swiper-button-prev.is_circle,
.aui_swiper .swiper-button-next.is_circle {
	background-color: rgba(34, 34, 34, 0.5);
	border-radius: 50%;
	transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.aui_swiper .swiper-button-prev.is_circle::after,
.aui_swiper .swiper-button-next.is_circle::after {
	border-color: #ffffff;
}
.aui_swiper .swiper-button-prev.is_circle::after {
	left: 2px;
}
.aui_swiper .swiper-button-next.is_circle::after {
	right: 2px;
}
.aui_swiper .swiper-button-prev.is_circle:hover,
.aui_swiper .swiper-button-next.is_circle:hover {
	opacity: 0.8;
}
.aui_swiper .swiper-button-prev.swiper-button-disabled,
.aui_swiper .swiper-button-next.swiper-button-disabled {
	display: none;
}
.aui_swiper .swiper-pagination {
	width: 100%;
}
.aui_swiper .swiper-pagination-bullets {
	bottom: 0;
}
.aui_swiper .swiper-pagination-bullets .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	margin: 0 5px;
	background-color: #DDDDDD;
	opacity: 1;
}
.aui_swiper .swiper-pagination-bullets .swiper-pagination-bullet:hover {
	background-color: #BBBBBB;
}
.aui_swiper .swiper-pagination-bullets .swiper-pagination-bullet-active {
	background-color: #222222;
}
.aui_swiper .swiper-nav-horizontal {
	position: absolute;
	bottom: 0;
	left: 50%;
	display: flex;
	align-items: center;
	-webkit-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
}
.aui_swiper .swiper-nav-horizontal .swiper-button-prev,
.aui_swiper .swiper-nav-horizontal .swiper-button-next {
	position: static;
	top: 0;
	-webkit-transform: translate(0, 0);
	        transform: translate(0, 0);
	margin: 0 20px;
}
.aui_swiper .swiper-nav-horizontal .swiper-pagination {
	position: static;
}
.aui_swiper.pager_height_min {
	padding-bottom: 60px;
}

/* カード
--------------------------------------- */
.aui_card {
	padding: 0 0 32px 0;
	border: 1px solid #D5D5D5;
}
.aui_card_title {
	padding: 20px 0;
	background-color: #F6F6F6;
	font-weight: bold;
	font-size: 1.6rem;
	text-align: center;
}
.aui_card_media {
	text-align: center;
}
.aui_card_text {
	margin-top: 16px;
	padding: 0 40px;
}

/* メディア（写真 + テキスト）
--------------------------------------- */
.aui_media {
	display: flex;
	align-items: start;
}
.aui_media .aui_media_main {
	width: 166px;
	order: 0;
	margin-right: 48px;
}
.aui_media.is_gray .aui_media_main, .aui_media.is_white .aui_media_main {
	margin-top: 5px;
}
.aui_media.is_right .aui_media_main {
	order: 1;
	margin-right: 0;
	margin-left: 48px;
}
.aui_media.is_sm .aui_media_main {
	width: 120px;
	margin-right: 40px;
}
.aui_media.is_sm.is_right .aui_media_main {
	margin-right: 0;
	margin-left: 40px;
}
.aui_media.is_lg .aui_media_main {
	width: 186px;
	margin-right: 60px;
}
.aui_media.is_lg.is_right .aui_media_main {
	margin-right: 0;
	margin-left: 60px;
}
.aui_media .aui_media_object {
	position: relative;
	width: 100%;
	margin-right: 12px;
	padding: 50% 0;
}
.aui_media .aui_media_object img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 80%;
}
.aui_media .aui_media_object img.full_size {
	width: 100%;
}
.aui_media.is_gray .aui_media_object {
	background-color: #F6F6F6;
}
.aui_media.is_white .aui_media_object {
	background-color: #FFFFFF;
}
.aui_media .aui_media_content {
	flex: 1;
}

/* 動画設置（アスペクト比保持）
--------------------------------------- */
.aui_video {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
}

.aui_video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

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

コンポーネントに該当しないもの

- 最小単位ではない
- やや汎用性がある（特定のページ間で共通して使える）

--------------------------------------------------------- */
/* 商品ボックス（縦向き）
--------------------------------------- */
.aui_product_box_v {
	display: flex;
	flex-direction: column;
	height: auto;
}
.aui_product_box_v a {
	display: flex;
	width: 100%;
	flex-direction: column;
}
.aui_product_box_v p {
	margin-top: 0;
}
.aui_product_box_v .aui_product_imgbox {
	position: relative;
	width: 100%;
	margin: 0 0 18px;
	padding: 50% 0;
	background-color: #FFFFFF;
}
.aui_product_box_v .aui_product_imgbox img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	max-width: 75%;
}
.aui_product_box_v .aui_product_imgbox img.full_size {
	max-width: 100%;
}
.aui_product_box_v .aui_product_imgbox_icon {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	min-width: 68px;
	padding: 0.2em 0.5em 0;
	background-color: #CB0005;
	color: #FFFFFF;
	font-size: 1.3rem;
	line-height: 1.5;
	text-align: center;
}
.aui_product_box_v .aui_product_imgbox_icon:empty {
	display: none;
}
.aui_product_box_v .aui_product_brand_type {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
	font-size: 1.2rem;
	line-height: 1.5;
}
.aui_product_box_v .aui_product_brand img {
	height: 22px;
	vertical-align: bottom;
}
.aui_product_box_v .aui_product_label {
	font-weight: 500;
	font-size: 1rem;
	line-height: 1;
	text-align: left;
}
.aui_product_box_v .aui_product_label:empty {
	border-color: transparent;
}
.aui_product_box_v .aui_product_label > span {
	display: inline-block;
	margin-right: 4px;
	padding: 4px 6px 3px;
	text-align: center;
}
.aui_product_box_v .aui_product_label > span:last-child {
	margin-right: 0;
}
.aui_product_box_v .aui_product_label .label_red {
	color: #FFFFFF;
	background-color: #CB0005;
}
.aui_product_box_v .aui_product_label .label_1day {
	min-width: 54px;
	color: #FFFFFF;
	background-color: #3352b1;
}
.aui_product_box_v .aui_product_label .label_2week {
	min-width: 54px;
	color: #FFFFFF;
	background-color: #30c8d2;
}
.aui_product_box_v .aui_product_name {
	margin-top: 8px;
	font-size: 1.3rem;
	line-height: 1.7;
	text-align: left;
}
.aui_product_box_v .aui_product_price {
	font-weight: 700;
	margin-top: 10px;
	font-size: 1.5rem;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-align: left;
}
.aui_product_box_v .aui_product_price .zeikomi {
	font-size: 1.1rem;
}
.aui_product_box_v .aui_product_devide_price {
	color: #CB0005;
}
.aui_product_box_v .aui_product_perbox {
	font-weight: 500;
	font-size: 1.2rem;
	letter-spacing: 0.04em;
	text-align: left;
}
.aui_product_box_v .aui_yotpo_star {
	margin-top: 5px;
}
.aui_product_box_v .aui_yotpo_star .yotpo a[href] {
	pointer-events: none;
}

/* 商品ボックス（縦向き・カラコンver）
--------------------------------------- */
.aui_product_box_v.is_color_box {
	position: relative;
}
.aui_product_box_v.is_color_box .aui_product_icons_upper {
	display: flex;
	position: absolute;
	top: -22px;
	left: 0;
	z-index: 1;
	margin: 0;
}
.aui_product_box_v.is_color_box .aui_product_icons_upper > li {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 8px 0 0;
	padding: 8px 10px 5px;
	text-align: center;
	border: 1px solid #222222;
	border-radius: 2px;
	background-color: #fdbabd;
	font-size: 1.1rem;
	line-height: 1.3;
	letter-spacing: 0.06em;
}
.aui_product_box_v.is_color_box .aui_product_icons_lower {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 0;
}
.aui_product_box_v.is_color_box .aui_product_icons_lower > li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(50% - 4px);
	margin: 8px 0 0 0;
	padding: 8px 0 5px;
	border: 1px solid #222222;
	border-radius: 2px;
	background-color: #ffffff;
	font-size: 1.2rem;
	line-height: 1.3;
	letter-spacing: 0.06em;
	text-align: center;
}
.aui_product_box_v.is_color_box .aui_product_imgbox {
	margin: 0 auto 2px;
}
.aui_product_box_v.is_color_box .aui_product_name {
	margin-top: 20px;
	font-size: 1.4rem;
}
.aui_product_box_v.is_color_box .aui_product_order {
	margin: 10px 0 0 0;
}
.aui_product_box_v.is_color_box .aui_product_order_item {
	display: flex;
	align-items: center;
	flex-direction: row;
	width: 100%;
	height: 44px;
	margin: 10px 0 0 0;
	border: 1px solid #222222;
	border-radius: 2px;
	background-color: #f4f4f4;
	line-height: 1;
	letter-spacing: 0.06em;
	text-align: center;
	transition: background-color 0.2s ease;
	opacity: 1;
}
.aui_product_box_v.is_color_box .aui_product_order_item .aui_product_icon {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0px 8px 0px;
	background-color: #fdbabd;
	font-size: 1.1rem;
	line-height: 1.2;
	border-right: 1px solid #222222;
}
.aui_product_box_v.is_color_box .aui_product_order_item .aui_product_price {
	flex: 1;
	margin: 0;
	padding: 11px 10px 10px;
	font-weight: 500;
	font-size: 1.5rem;
	text-align: center;
}
.aui_product_box_v.is_color_box .aui_product_order_item .aui_product_price em {
	font-style: normal;
	font-weight: 700;
	font-size: 1.2em;
}
.aui_product_box_v.is_color_box .aui_product_order_item .aui_product_price .text_s {
	font-size: 0.9em;
	vertical-align: 0.15em;
}
.aui_product_box_v.is_color_box .aui_product_order_item:hover {
	background-color: #fff;
	opacity: 1;
	color: #222222;
}
.aui_product_box_v.is_color_box .aui_yotpo_star {
	margin-top: 16px;
}
.aui_product_box_v.is_color_box .aui_yotpo_star .yotpo .text-m {
	color: #222 !important;
}
.aui_product_box_v.is_color_box .aui_yotpo_star .yotpo a[href] {
	pointer-events: none;
}

/* 商品ボックス（横向き）
--------------------------------------- */
.aui_product_box_h {
	position: relative;
	margin-bottom: 24px;
	line-height: 1.8;
}
.aui_product_box_h::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 18px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: solid 2px #222222;
	border-right: solid 2px #222222;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	transition: all 0.3s ease;
}
.aui_product_box_h:hover::before {
	right: 12px;
}
.aui_product_box_h a {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 5px;
	background-color: #FFFFFF;
}
.aui_product_box_h a:hover {
	opacity: 1;
}
.aui_product_box_h p {
	margin-top: 0;
}
.aui_product_box_h .aui_product_imgbox {
	flex-grow: 0;
	position: relative;
	width: 30%;
	margin: 0;
	padding: 15% 0;
	background-color: #FFFFFF;
}
.aui_product_box_h .aui_product_imgbox img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.aui_product_box_h .aui_product_imgbox img.full_size {
	max-width: 100%;
}
.aui_product_box_h .aui_product_detail_box {
	width: 70%;
	padding: 16px 35px 10px 0;
}
.aui_product_box_h .aui_product_brand_type {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
	font-size: 1.2rem;
	line-height: 1.5;
}
.aui_product_box_h .aui_product_brand img {
	height: 22px;
	vertical-align: bottom;
}
.aui_product_box_h .aui_product_label {
	margin-bottom: 6px;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1;
	text-align: left;
}
.aui_product_box_h .aui_product_label:empty {
	border-color: transparent;
}
.aui_product_box_h .aui_product_label > span {
	display: inline-block;
	margin-right: 4px;
	padding: 4px 6px 3px;
	text-align: center;
}
.aui_product_box_h .aui_product_label > span:last-child {
	margin-right: 0;
}
.aui_product_box_h .aui_product_label .label_red {
	color: #FFFFFF;
	background-color: #CB0005;
}
.aui_product_box_h .aui_product_label .label_1day {
	min-width: 54px;
	color: #FFFFFF;
	background-color: #3352b1;
}
.aui_product_box_h .aui_product_label .label_2week {
	min-width: 54px;
	color: #FFFFFF;
	background-color: #30c8d2;
}
.aui_product_box_h .aui_product_name {
	margin: 0 0 3px 0;
	font-size: 1.2rem;
	line-height: 1.6;
}
.aui_product_box_h .aui_product_price_box {
	display: flex;
	align-items: baseline;
}
.aui_product_box_h .aui_product_price {
	margin-top: 0;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0em;
}
.aui_product_box_h .aui_product_perbox {
	margin-top: 0;
	font-size: 1.2rem;
	letter-spacing: 0.04em;
}
.aui_product_box_h .aui_product_devide_price {
	color: #CB0005;
}

/* 商品ラインナップ リスト
--------------------------------------- */
.aui_product_list {
	display: flex;
	flex-wrap: wrap;
	gap: 60px 40px;
}
.aui_product_list_title {
	width: 100%;
	margin: 0 auto 0;
	text-align: center;
	line-height: 1.5;
	font-size: 2.2rem;
	font-weight: 400;
	letter-spacing: 0.35rem;
}
.aui_product_list_title:nth-of-type(n+2) {
	margin-top: 20px;
	margin-bottom: 20px;
}
.aui_product_list .aui_product_box_v {
	width: calc((100% - 120px) / 4);
}
.aui_product_list .aui_product_box_v .aui_product_imgbox {
	background-color: #F6F6F6;
}
.aui_product_list .aui_product_box_v .aui_product_imgbox img[src*=".svg"] {
	max-width: 25%;
}

/* おすすめ商品（カルーセル）
--------------------------------------- */
.aui_rcmd_swiper {
	padding-bottom: 54px;
}
.aui_rcmd_swiper .aui_product_box_v .aui_product_name {
	margin-top: 0;
}
.aui_rcmd_swiper .aui_product_box_v .aui_product_price {
	margin-top: 20px;
}

/* 商品情報モーダル（商品一覧ページ用）
--------------------------------------- */
.aui_modal_product {
	color: #ffffff;
}
.aui_modal_product .aui_modal_product_subsc_head {
	text-align: center;
}
.aui_modal_product .aui_modal_product_subsc_btn {
	display: block;
	width: 100%;
	max-width: 210px;
	margin: auto;
	padding: 0.9em 0 0.8em;
	border: none;
	background-color: #ffffff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: 20px auto;
	color: #222222;
	font-weight: 700;
	font-size: calc(32 / 960 * var(--contents_width));
	letter-spacing: 0.25em;
	text-align: center;
	line-height: 1;
}
.aui_modal_product .aui_modal_product_subsc_text {
	font-size: calc(25 / 960 * var(--contents_width));
	letter-spacing: 0.25em;
	text-align: center;
}
.aui_modal_product .aui_modal_product_subsc_text .text_xl {
	font-weight: 500;
	font-size: 2.1em;
	line-height: 1.3;
}
.aui_modal_product .aui_modal_product_subsc_text .text_l {
	font-weight: 500;
	font-size: 1.6em;
}
.aui_modal_product .aui_modal_product_imgbox {
	position: relative;
	width: 100%;
	padding: 30% 0;
	background-color: #FFFFFF;
}
.aui_modal_product .aui_modal_product_imgbox img {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.aui_modal_product .aui_modal_product_brand {
	margin-top: 44px;
	font-size: 1.5rem;
}
.aui_modal_product .aui_modal_product_name {
	font-size: 1.5rem;
}
.aui_modal_product .aui_modal_product_price {
	margin-top: 12px;
	font-weight: 700;
	font-size: 1.4rem;
}
.aui_modal_product .aui_modal_product_price span {
	margin-right: 1px;
	font-weight: 500;
	font-size: 2.2rem;
	letter-spacing: 0.03em;
}
.aui_modal_product .aui_modal_product_lineup {
	margin-top: 44px;
}
.aui_modal_product .aui_modal_product_lineup li {
	display: flex;
	align-items: center;
	margin-top: 24px;
	background-color: #ffffff;
	color: #222222;
}
.aui_modal_product .aui_modal_product_lineup li a {
	display: flex;
	flex: 1;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-height: 98px;
	height: 98px;
	padding: 28px 0;
	position: relative;
}
.aui_modal_product .aui_modal_product_lineup li > a > .col:nth-of-type(1) {
	width: 25%;
	padding: 5px 0;
	border-right: 1px solid #D5D5D5;
	text-align: center;
	vertical-align: middle;
}
.aui_modal_product .aui_modal_product_lineup li > a > .col:nth-of-type(2) {
	width: 75%;
	vertical-align: middle;
	padding-left: 48px;
}
.aui_modal_product .aui_modal_product_lineup li .num_of_box {
	display: block;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: 0.2em;
}
.aui_modal_product .aui_modal_product_lineup li .num_of_box b {
	font-weight: normal;
	font-size: 2rem;
}
.aui_modal_product .aui_modal_product_lineup li .label {
	display: inline-block;
	margin-top: 6px;
	color: #CB0005;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.15em;
}
.aui_modal_product .aui_modal_product_lineup li .price {
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 1;
	letter-spacing: 0.03em;
	vertical-align: -2px;
}
.aui_modal_product .aui_modal_product_lineup li .perbox {
	font-size: 1.4rem;
	line-height: 1;
}
.aui_modal_product .aui_modal_product_lineup li .perbox .devide_price {
	color: #CB0005;
	letter-spacing: 0.04em;
}
.aui_modal_product .aui_modal_product_lineup li .point {
	color: #999999;
	line-height: 1;
}
.aui_modal_product .aui_modal_product_lineup li .point .point_val {
	margin-right: 1px;
	letter-spacing: 0.04em;
}
.aui_modal_product .aui_modal_product_lineup li .bulksale {
	display: inline-block;
	padding: 6px 15px 5px;
	margin-left: 0.3rem;
	border-radius: 2rem;
	background-color: #CB0005;
	color: #ffffff;
	font-size: 1.1rem;
	line-height: 1;
	vertical-align: 1px;
}
.aui_modal_product .aui_modal_product_lineup li .cart {
	display: inline-block;
	padding: 6px 15px 5px;
	max-width: 160px;
	background-color: #CB0005;
	color: #ffffff;
	font-size: 1.1rem;
	line-height: 1;
	text-align: center;
	vertical-align: 1px;
}
.aui_modal_product .aui_modal_product_lineup li a::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 25px;
	width: 9px;
	height: 9px;
	margin-top: -5px;
	border-top: solid 2px #222222;
	border-right: solid 2px #222222;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	transition: all 0.3s ease;
}
.aui_modal_product .aui_modal_product_cmp_bnr {
	padding: 20px 65px;
	margin: 35px 0 25px;
	background-color: #cfedfd;
}
.aui_modal_product .aui_modal_product_cmp_bnr_inner {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	grid-template-areas: "text button" "date button";
	align-items: center;
	-webkit-column-gap: 40px;
	        column-gap: 40px;
	margin: 0 auto;
}
.aui_modal_product .aui_modal_product_cmp_bnr_text,
.aui_modal_product .aui_modal_product_cmp_bnr_date {
	margin: 0;
	color: #1338a0;
	font-weight: 700;
	text-align: center;
}
.aui_modal_product .aui_modal_product_cmp_bnr_text {
	grid-area: text;
	font-size: 20px;
	line-height: 1.4;
}
.aui_modal_product .aui_modal_product_cmp_bnr_text .deco {
	position: relative;
	display: inline-block;
}
.aui_modal_product .aui_modal_product_cmp_bnr_text .deco::before,
.aui_modal_product .aui_modal_product_cmp_bnr_text .deco::after {
	position: absolute;
	top: 0.05em;
	width: 2px;
	height: 1.2em;
	background: #1338a0;
	content: "";
}
.aui_modal_product .aui_modal_product_cmp_bnr_text .deco::before {
	left: -0.7em;
	-webkit-transform: rotate(-20deg);
	        transform: rotate(-20deg);
}
.aui_modal_product .aui_modal_product_cmp_bnr_text .deco::after {
	right: -0.7em;
	-webkit-transform: rotate(20deg);
	        transform: rotate(20deg);
}
.aui_modal_product .aui_modal_product_cmp_bnr_date {
	grid-area: date;
	font-size: 18px;
	line-height: 1.2;
	margin-top: 8px;
}
.aui_modal_product .aui_modal_product_cmp_bnr_btn {
	grid-area: button;
	display: inline-block;
	width: 230px;
	padding: 6px 0;
	background-color: #1338a0;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	border-radius: 40px;
}

/* 商品情報モーダル（ショッピングカート用）
--------------------------------------- */
.aui_modal_product_cart .aui_modal_product_cart_img {
	max-height: calc(88% - 40px);
}
.aui_modal_product_cart .aui_modal_product_cart_price_box {
	margin-bottom: 32px;
	color: #000;
	line-height: 1;
}
.aui_modal_product_cart .aui_modal_product_cart_price {
	color: #333333;
	font-size: 22px;
	font-weight: bold;
	vertical-align: -1px;
}
.aui_modal_product_cart .aui_modal_product_cart_devide {
	font-size: 16px;
	color: #333333;
	font-weight: 500;
}
.aui_modal_product_cart .aui_modal_product_cart_devide_price {
	color: #cb0005;
}
.aui_modal_product_cart .aui_modal_product_cart_label {
	margin-left: 4px;
	color: #cb0005;
	font-weight: bold;
	font-size: 16px;
}
.aui_modal_product_cart .aui_modal_product_cart_detail_btn {
	position: relative;
	margin-top: 20px;
	border: 2px solid #ffffff;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	padding: 22px;
	line-height: 1;
	display: block;
	text-align: center;
}
.aui_modal_product_cart .aui_modal_product_cart_detail_btn:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 36px;
	width: 8px;
	height: 8px;
	border: 2px solid #fff;
	box-sizing: border-box;
	border-left: 0;
	border-bottom: 0;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	        transform: translate(-50%, -50%) rotate(45deg);
}
.aui_modal_product_cart .aui_modal_product_cart_select_form {
	position: relative;
	margin: 0 0 32px;
	background-color: #666666;
}
.aui_modal_product_cart .aui_modal_product_cart_select_form .aui_form_select {
	background: none;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	height: 70px;
	border: none;
	padding: 0 0 0 calc(100% - 100px);
}
.aui_modal_product_cart .aui_modal_product_cart_select_form .aui_form_select option {
	font-size: 16px;
}
.aui_modal_product_cart .aui_modal_product_cart_select_form:before {
	content: "\30BB\30C3\30C8\3092\9078\3076";
	position: absolute;
	top: 50%;
	left: 30px;
	-webkit-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	pointer-events: none;
	font-size: 16px;
}
.aui_modal_product_cart .aui_modal_product_cart_select_form:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 28px;
	-webkit-transform: translate(0, -50%) rotate(135deg);
	        transform: translate(0, -50%) rotate(135deg);
	width: 8px;
	height: 8px;
	border: 2px solid #fff;
	box-sizing: border-box;
	border-left: none;
	border-bottom: none;
}
.aui_modal_product_cart .aui_modal_product_cart_num_of_box {
	position: absolute;
	top: 50px;
	right: 48px;
	width: 102px;
}
.aui_modal_product_cart .aui_modal_product_cart_num_of_box img {
	position: static;
	-webkit-transform: inherit;
	        transform: inherit;
	width: 100%;
	height: auto;
	max-width: inherit;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox {
	margin-top: 30px;
	background-color: #fff;
	padding: 30px 50px;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox .aui_goods_data_title {
	padding: 0;
	font-weight: 500;
	font-size: 14px;
	color: #333333;
	border-bottom: 1px solid #222222;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox .aui_goods_data_content {
	margin-top: 20px;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox .aui_goods_input_form {
	color: #333333;
	width: 100%;
	margin-bottom: 0;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox .aui_goods_input_form .r_eye, .aui_modal_product_cart .aui_modal_product_cart_selectbox .aui_goods_input_form .l_eye {
	font-size: 14px;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox .aui_goods_input_form th {
	font-size: 14px;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox .aui_goods_input_form td {
	padding: 0 0 9px 17px;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox .aui_goods_input_form .aui_form_select {
	font-size: 14px;
	min-height: 50px;
	height: auto;
	box-sizing: border-box;
	border: 1px solid #d5d5d5;
	padding: 0 24px 0 16px;
	background-size: 11px auto;
	background-position: right 22px center;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox .aui_goods_input_form .aui_goods_data_value {
	display: flex;
	align-items: center;
	font-size: 14px;
	min-height: 50px;
	height: auto;
	padding: 0 16px;
	background-color: #F4F4F4;
	letter-spacing: 0.02em;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox .aui_goods_cart_btn {
	margin: 30px auto 0px;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox .aui_goods_cart_btn .aui_button {
	font-size: 16px;
	height: 70px;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox .goods_omake_title {
	margin-top: 32px;
	padding: 0;
	font-weight: 500;
	font-size: 18px;
	color: #333333;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox .goods_omake_box {
	margin: 16px 0 0 0;
	border: 0;
	font-size: 18px;
	color: #333333;
}
.aui_modal_product_cart .aui_modal_product_cart_selectbox .goods_omake_box .goods_omake_content {
	padding: 0;
	font-size: 14px;
}
.aui_modal_product_cart .aui_modal_product_cart_couponbox {
	margin-top: 42px;
	background-color: #ffffff;
	padding: 30px 100px;
}
.aui_modal_product_cart .aui_modal_product_cart_couponbox input[type*=button] {
	transition: all 0.2s ease-in;
	cursor: pointer;
	background-color: #666666;
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	line-height: 1;
	padding: 26px 20px;
	min-width: 310px;
	text-align: center;
	border: 1px solid #666666;
}
.aui_modal_product_cart .aui_modal_product_cart_couponbox input[type*=button]:hover {
	background-color: #fff;
	color: #666666;
}
.aui_modal_product_cart .aui_modal_product_cart_couponbox_in {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.aui_modal_product_cart .aui_modal_product_cart_couponbox_col {
	display: flex;
	align-items: center;
	justify-content: center;
}
.aui_modal_product_cart .aui_modal_product_cart_coupon_ttl {
	font-size: 16px;
	font-weight: 500;
	color: #333333;
	display: inline-block;
	line-height: 1;
	text-align: center;
}
.aui_modal_product_cart .aui_modal_product_cart_coupon_code {
	font-size: 48px;
	font-weight: bold;
	color: #cb0005;
	display: inline-block;
	line-height: 1;
	letter-spacing: 2px;
	margin-left: 16px;
}
.aui_modal_product_cart .aui_modal_product_cart_coupon_annotation {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 500;
	color: #333333;
	text-align: center;
	line-height: 1.5;
}

/* 商品を探すリスト
--------------------------------------- */
.aui_search_catelist {
	width: 1040px;
	margin: auto;
}
.aui_search_catelist ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}
.aui_search_catelist ul > li {
	width: calc((100% - 64px) / 5);
	margin-left: 16px;
}
.aui_search_catelist ul > li:nth-child(5n+1) {
	margin-left: 0;
}
.aui_search_catelist li {
	margin: 0;
}
.aui_search_catelist li:nth-child(n+6) {
	margin-top: 16px;
}
.aui_search_catelist li:nth-child(5n+1) {
	margin-left: 0;
}

/* メガネを探すリスト
--------------------------------------- */
.aui_search_catelist_glasses {
	width: 1040px;
	margin: auto;
}
.aui_search_catelist_glasses ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}
.aui_search_catelist_glasses li {
	flex: 0 1 auto;
	width: calc((100% - 192px) / 4);
	margin-right: 64px;
	margin-bottom: -1px;
	border-top: 1px solid #D5D5D5;
	border-bottom: 1px solid #D5D5D5;
}
.aui_search_catelist_glasses li:nth-child(4n) {
	margin-right: 0;
}
.aui_search_catelist_glasses li a {
	display: block;
	padding: 32px 0;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}
.aui_search_catelist_glasses li.square a {
	padding-left: 70px;
	background-image: url(/img/common/icon/icon_glasses_square.svg);
	background-size: 56px auto;
}
.aui_search_catelist_glasses li.oval a {
	padding-left: 70px;
	background-image: url(/img/common/icon/icon_glasses_oval.svg);
	background-size: 56px auto;
}
.aui_search_catelist_glasses li.wellington a {
	padding-left: 70px;
	background-image: url(/img/common/icon/icon_glasses_wellington.svg);
	background-size: 56px auto;
}
.aui_search_catelist_glasses li.all a {
	padding-left: 50px;
	background-image: url(/img/common/icon/icon_glasses_all.svg);
	background-position: 0.7em center;
	background-size: 28px auto;
}

/* 商品を探す メーカー＆シリーズ（モーダル ）
--------------------------------------- */
#aui_modal_maker_series {
	width: 1040px;
}
#aui_modal_maker_series .sec_title {
	position: relative;
	z-index: 1;
	margin-bottom: -1px;
	padding: 14px 0;
	border-bottom: 1px solid #222222;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.6;
	letter-spacing: 0.15rem;
}
#aui_modal_maker_series ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}
#aui_modal_maker_series li {
	flex: 0 1 auto;
	width: calc((100% - 120px) / 3);
	margin-right: 60px;
	margin-bottom: -1px;
	border-top: 1px solid #D5D5D5;
	border-bottom: 1px solid #D5D5D5;
}
#aui_modal_maker_series li:nth-child(3n) {
	margin-right: 0;
}
#aui_modal_maker_series li a {
	display: block;
	padding: 34px 0;
	font-size: 14px;
}
#aui_modal_maker_series .maker_sec {
	width: 912px;
	margin: 40px auto 60px;
}
#aui_modal_maker_series .maker_sec img {
	height: 26px;
}
#aui_modal_maker_series .maker_sec li a:hover {
	opacity: 0.7;
}
#aui_modal_maker_series .series_sec {
	width: 912px;
	margin: 40px auto 65px;
}

/* トピックス
--------------------------------------- */
.aui_topics {
	line-height: 1.8;
}
.aui_topics ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	margin-bottom: 0;
}
.aui_topics li {
	flex: 0 1 230px;
	margin: 0 40px 0 0;
	padding: 0 0 34px;
}
.aui_topics li:nth-child(4n) {
	margin-right: auto;
}
.aui_topics li a {
	display: block;
	opacity: 1;
}
.aui_topics .thumb {
	overflow: hidden;
	width: 230px;
	margin-bottom: 20px;
	aspect-ratio: 1;
	display: grid;
	place-content: center;
}
.aui_topics .thumb img {
	width: 100%;
	-webkit-transform: scale(1);
	        transform: scale(1);
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.aui_topics li a:hover .thumb img {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}
.aui_topics .text {
	margin-bottom: 0;
}
.aui_topics .more_btn_box {
	margin-top: 24px;
	margin-bottom: 0;
	text-align: center;
}

/* ランキング（スライド版）
--------------------------------------- */
.aui_ranking_swiper {
	overflow: hidden;
	padding: 20px 20px;
}
.aui_ranking_swiper .aui_swiper {
	overflow: visible;
}
.aui_ranking_swiper .aui_swiper .aui_product_imgbox {
	background-color: #F6F6F6;
}
.aui_ranking_swiper .aui_swiper .aui_product_imgbox::after {
	content: "";
	position: absolute;
	top: -22px;
	left: -6px;
	width: 36px;
	height: 50px;
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
}
.aui_ranking_swiper .aui_swiper .swiper-slide[data-swiper-slide-index="0"] .aui_product_imgbox::after {
	background-image: url(/img/common/rank/rank01.png);
}
.aui_ranking_swiper .aui_swiper .swiper-slide[data-swiper-slide-index="1"] .aui_product_imgbox::after {
	background-image: url(/img/common/rank/rank02.png);
}
.aui_ranking_swiper .aui_swiper .swiper-slide[data-swiper-slide-index="2"] .aui_product_imgbox::after {
	background-image: url(/img/common/rank/rank03.png);
}
.aui_ranking_swiper .aui_swiper .swiper-slide[data-swiper-slide-index="3"] .aui_product_imgbox::after {
	background-image: url(/img/common/rank/rank04.png);
}
.aui_ranking_swiper .aui_swiper .swiper-slide[data-swiper-slide-index="3"] .aui_product_imgbox::after {
	background-image: url(/img/common/rank/rank04.png);
}
.aui_ranking_swiper .aui_swiper .swiper-slide[data-swiper-slide-index="4"] .aui_product_imgbox::after {
	background-image: url(/img/common/rank/rank05.png);
}
.aui_ranking_swiper .aui_swiper .swiper-slide[data-swiper-slide-index="5"] .aui_product_imgbox::after {
	background-image: url(/img/common/rank/rank06.png);
}
.aui_ranking_swiper .aui_swiper .swiper-slide[data-swiper-slide-index="6"] .aui_product_imgbox::after {
	background-image: url(/img/common/rank/rank07.png);
}
.aui_ranking_swiper .aui_swiper .swiper-slide[data-swiper-slide-index="7"] .aui_product_imgbox::after {
	background-image: url(/img/common/rank/rank08.png);
}
.aui_ranking_swiper .aui_swiper .swiper-slide[data-swiper-slide-index="8"] .aui_product_imgbox::after {
	background-image: url(/img/common/rank/rank09.png);
}
.aui_ranking_swiper .aui_swiper .swiper-slide[data-swiper-slide-index="9"] .aui_product_imgbox::after {
	background-image: url(/img/common/rank/rank10.png);
}
.aui_ranking_swiper .aui_swiper .snowman_speech_bubble {
	position: relative;
	width: 100%;
	margin-top: 8px;
	padding: 5px 0 2px;
	background: linear-gradient(to right, #296cb2, #4dd896);
	color: #fff;
	font-weight: 500;
	font-size: 1.1rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-align: center;
}
.aui_ranking_swiper .aui_swiper .snowman_speech_bubble::before {
	content: "";
	position: absolute;
	top: -8px;
	left: 0;
	width: 100%;
	height: 9px;
	background: linear-gradient(to right, #296cb2, #4dd896);
	-webkit-clip-path: polygon(50% 0%, 52.5% 100%, 47.5% 100%);
	        clip-path: polygon(50% 0%, 52.5% 100%, 47.5% 100%);
}
.aui_ranking_swiper .aui_swiper .swiper-button-prev {
	top: 110px;
	left: -20px;
}
.aui_ranking_swiper .aui_swiper .swiper-button-next {
	top: 110px;
	right: -20px;
}

/* ニュース
--------------------------------------- */
.aui_news > ul {
	background-color: #FFFFFF;
	margin-bottom: 0;
	padding: 32px 64px 32px;
}
.aui_news > ul > li {
	overflow: hidden;
	margin-bottom: 0;
	padding: 20px 0;
}
.aui_news .aui_news_thumb {
	position: relative;
	float: left;
	width: 102px;
	height: 102px;
	margin: 4px 0 0 0;
	border: solid 1px #DDDDDD;
	background-color: #ffffff;
}
.aui_news .aui_news_thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}
.aui_news .aui_news_meta {
	margin: 0 0 4px 134px;
	font-size: 1.3rem;
}
.aui_news .aui_news_meta span {
	vertical-align: middle;
}
.aui_news .aui_news_label {
	color: #CB0005;
	margin-right: 4px;
	font-weight: bold;
}
.aui_news .aui_news_date {
	font-weight: bold;
	letter-spacing: 0.06em;
}
.aui_news .aui_news_sentence {
	margin: 0 0 0 134px;
	font-size: 1.3rem;
	letter-spacing: 0.12em;
}
.aui_news .aui_news_sentence a {
	-webkit-text-decoration: underline #222222;
	        text-decoration: underline #222222;
}
.aui_news .aui_news_sentence a:hover {
	-webkit-text-decoration-color: #AAAAAA;
	        text-decoration-color: #AAAAAA;
}
.aui_news .more_btn_box {
	margin-top: 64px;
	margin-bottom: 0;
	text-align: center;
}

/* YOTPO （星+レビュー件数）
--------------------------------------- */
.aui_yotpo_star .yotpo * {
	font-size: inherit !important;
}
.aui_yotpo_star .yotpo .standalone-bottomline .star-clickable {
	align-items: flex-start;
}
.aui_yotpo_star .yotpo .pull-left {
	float: none;
}
.aui_yotpo_star .yotpo .yotpo-stars {
	font-size: 1.4rem !important;
	line-height: 1;
	margin-right: 5px;
}
.aui_yotpo_star .yotpo .yotpo-stars .yotpo-icon.yotpo-icon-star,
.aui_yotpo_star .yotpo .yotpo-stars .yotpo-icon-half-star,
.aui_yotpo_star .yotpo .yotpo-stars .yotpo-icon.yotpo-icon-empty-star {
	background-image: none !important;
	margin: 0 !important;
	width: 1em !important;
	height: 1em !important;
	margin-right: 2px;
}
.aui_yotpo_star .yotpo .yotpo-icon-default-star:before,
.aui_yotpo_star .yotpo .yotpo-icon-star:before,
.aui_yotpo_star .yotpo .yotpo-icon-default-half-star:before,
.aui_yotpo_star .yotpo .yotpo-icon-half-star:before,
.aui_yotpo_star .yotpo .yotpo-icon-empty-star:before {
	color: #b79364 !important;
}
.aui_yotpo_star .yotpo .text-m {
	flex: 1;
	color: #0094E1 !important;
	font-size: 1.2rem !important;
	line-height: 1.4;
}

/* かご入力ボックス
--------------------------------------- */
/* ----- かごの見出しとフォーム大枠 ----- */
.aui_goods_data .aui_goods_data_title {
	padding-bottom: 6px;
	font-weight: 500;
	font-size: 1.45rem;
	border-bottom: 1px solid #D5D5D5;
}
.aui_goods_data .aui_goods_data_content {
	margin-top: 20px;
}

/* ----- かご入力フォーム ----- */
.aui_goods_input_form {
	width: 100%;
	margin-bottom: 0;
}
.aui_goods_input_form th {
	padding-bottom: 10px;
	width: 60px;
	font-size: 1.4rem;
	font-weight: normal;
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
}
.aui_goods_input_form td {
	padding-left: 10px;
	padding-bottom: 10px;
	font-size: 1.3rem;
}
.aui_goods_input_form .r_eye,
.aui_goods_input_form .l_eye {
	font-size: 1.4rem;
}
.aui_goods_input_form select {
	min-height: 48px;
	height: auto;
	padding: 0 36px 0 12px;
	background-size: 8px;
	background-position: 95% center;
	color: #222222;
	font-size: 1.3rem;
	letter-spacing: 0.02em;
	white-space: wrap;
}
.aui_goods_input_form .aui_goods_data_value {
	display: flex;
	align-items: center;
	min-height: 48px;
	height: auto;
	padding: 0 12px;
	background-color: #F4F4F4;
	font-size: 1.3rem;
	line-height: 1.15;
	letter-spacing: 0.02em;
	white-space: wrap;
}

/* ----- かごボタン ----- */
.aui_goods_cart_btn {
	margin: 30px auto 0px;
}
.aui_goods_cart_btn .aui_button {
	font-size: 1.5rem;
}

/* 住所テーブル
--------------------------------------- */
.aui_address_table {
	width: 100%;
	margin: 0;
}
.aui_address_table > tbody > tr {
	border-bottom: 1px solid #D5D5D5;
}
.aui_address_table > thead > tr + tr {
	border-top: none;
}
.aui_address_table > tbody > tr.border_no {
	border-top: none;
}
.aui_address_table > thead > tr > th {
	padding: 16px 0;
	background-color: #F6F6F6;
	border-right: 2px solid #FFFFFF;
	font-weight: normal;
}
.aui_address_table > thead > tr > th:last-child {
	border-right: none;
}
.aui_address_table > thead > tr > th:nth-child(1) {
	width: 16%;
}
.aui_address_table > thead > tr > th:nth-child(2) {
	width: 52%;
}
.aui_address_table > thead > tr > th:nth-child(3) {
	width: 16%;
}
.aui_address_table > thead > tr > th:nth-child(4) {
	width: 16%;
}
.aui_address_table > thead > tr > th:last-child {
	border-right: none;
}
.aui_address_table > tbody > tr > td {
	padding: 48px 0;
	vertical-align: middle;
}
.aui_address_table > tbody > tr > td:nth-child(1) {
	text-align: left;
}
.aui_address_table > tbody > tr > td:nth-child(2) {
	text-align: center;
}
.aui_address_table > tbody > tr > td:nth-child(3) {
	text-align: center;
}
.aui_address_table .addr_box {
	display: flex;
	align-items: center;
}
.aui_address_table .addr_box_button {
	position: relative;
	width: 20px;
	height: 20px;
	margin: auto 12% auto 10%;
	border: 1px solid #CCCCCC;
	border-radius: 50%;
	background-color: transparent;
	text-indent: -99999px;
}
.aui_address_table .addr_box_button::after {
	display: none;
}
.aui_address_table .addr_box.selected .addr_box_button::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #666666;
}
.aui_address_table .addr_box:hover .addr_box_button {
	border-color: #AAAAAA;
}
.aui_address_table .addr_box_text {
	width: 70%;
}

/* 注文アイテムテーブル
--------------------------------------- */
.aui_orderitem_table {
	width: 100%;
	margin: 0;
}
.aui_orderitem_table > tbody > tr + tr {
	border-top: 1px solid #D5D5D5;
}
.aui_orderitem_table > thead > tr + tr {
	border-top: none;
}
.aui_orderitem_table > tbody > tr.border_no {
	border-top: none;
}
.aui_orderitem_table > tbody > tr.border_no > td {
	padding-top: 0;
}
.aui_orderitem_table > thead > tr > th {
	padding: 16px 0;
	background-color: #F6F6F6;
	border-right: 2px solid #FFFFFF;
	font-weight: normal;
}
.aui_orderitem_table > thead > tr > th:nth-child(1) {
	width: 58%;
}
.aui_orderitem_table > thead > tr > th:nth-child(2) {
	width: 14%;
}
.aui_orderitem_table > thead > tr > th:nth-child(3) {
	width: 14%;
}
.aui_orderitem_table > thead > tr > th:nth-child(4) {
	width: 14%;
}
.aui_orderitem_table > thead > tr > th:last-child {
	border-right: none;
}
.aui_orderitem_table > tbody > tr > td, .aui_orderitem_table > tfoot > tr > td {
	padding: 46px 0 40px;
	vertical-align: middle;
}
.aui_orderitem_table > tbody > tr > td.unit_price, .aui_orderitem_table > tfoot > tr > td.unit_price {
	text-align: center;
	letter-spacing: 0.04em;
}
.aui_orderitem_table > tbody > tr > td.quantity, .aui_orderitem_table > tfoot > tr > td.quantity {
	text-align: center;
	letter-spacing: 0.04em;
}
.aui_orderitem_table > tbody > tr > td.goods_price, .aui_orderitem_table > tfoot > tr > td.goods_price {
	padding-right: 40px;
	text-align: right;
	letter-spacing: 0.04em;
}
.aui_orderitem_table .total_row {
	border-top: 1px solid #222222;
	border-bottom: 1px solid #D5D5D5;
}
.aui_orderitem_table .total_row td.total_note {
	color: #AAAAAA;
	text-align: left;
}
.aui_orderitem_table .total_row td.total_title {
	text-align: center;
}
.aui_orderitem_table .total_row td.total_value {
	padding-right: 40px;
	text-align: right;
	font-weight: 700;
	font-size: 1.6rem;
}
.aui_orderitem_table .point_row td {
	padding-bottom: 0;
}
.aui_orderitem_table .point_row td.point_note {
	color: #AAAAAA;
	text-align: left;
}
.aui_orderitem_table .point_row td.point_title {
	text-align: center;
}
.aui_orderitem_table .point_row td.point_value {
	padding-right: 40px;
	text-align: right;
	font-weight: 700;
	font-size: 1.6rem;
}
.aui_orderitem_table .point_detail_row > td {
	padding: 0 40px 0 0;
	text-align: right;
}

/* フリーワード検索
--------------------------------------- */
.aui_word_search {
	position: relative;
}
.aui_word_search .aui_word_search_input {
	padding: 0 8px 0 40px;
	border-radius: 4px;
	border: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	background-color: #F6F6F6;
}
.aui_word_search .aui_word_search_input::-ms-clear {
	visibility: hidden;
}
.aui_word_search .aui_word_search_input::-webkit-input-placeholder {
	color: #CCCCCC;
}
.aui_word_search .aui_word_search_input:-ms-input-placeholder {
	color: #CCCCCC;
}
.aui_word_search .aui_word_search_input::placeholder {
	color: #CCCCCC;
}
.aui_word_search .aui_word_search_input:-ms-input-placeholder {
	color: #CCCCCC;
}
.aui_word_search .aui_word_search_input::-ms-input-placeholder {
	color: #CCCCCC;
}
.aui_word_search .aui_word_search_button {
	position: absolute;
	top: 50%;
	left: 14px;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 0;
	background-color: transparent;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='search' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M40.707,39.293l-7.427-7.427c2.398-2.735,3.721-6.195,3.721-9.865,0-4.006-1.56-7.773-4.393-10.607s-6.6-4.394-10.606-4.394h0c-4.006,0-7.773,1.56-10.606,4.393-2.833,2.833-4.394,6.6-4.394,10.606,0,8.271,6.728,15,15,15.001,1.323,0,2.641-.174,3.917-.515,.533-.142,.851-.689,.708-1.224s-.69-.85-1.224-.708c-1.108,.295-2.253,.445-3.402,.446-7.168,0-13-5.833-12.999-13.001,0-3.472,1.353-6.737,3.808-9.192s5.72-3.807,9.192-3.807h0c3.473,0,6.737,1.353,9.192,3.808s3.807,5.72,3.807,9.193-1.353,6.736-3.808,9.192c-.391,.391-.391,1.023,0,1.414l8.1,8.1c.195,.195,.451,.293,.707,.293s.512-.098,.707-.293c.391-.391,.391-1.023,0-1.414Z' fill='%23cccccc' stroke='%23cccccc' stroke-width='2'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-appearance: none;
	        appearance: none;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.aui_word_search .aui_word_search_button:hover {
	opacity: 0.8;
}

/* お知らせ&お得なキャンペーン
--------------------------------------- */
.aui_cp_banner {
	margin: auto;
}
.aui_cp_banner .aui_cp_banner_title_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 auto min(4%, 16px);
}
.aui_cp_banner .aui_cp_banner_title {
	font-size: min(3.75vw, 17px); /*幅320px→12px、幅464px→17px*/
	letter-spacing: 0.15rem;
	line-height: 1.2;
}
.aui_cp_banner .aui_cp_banner_toggle {
	text-align: center;
}
.aui_cp_banner .aui_cp_banner_toggle_button .open_text {
	display: inline;
}
.aui_cp_banner .aui_cp_banner_toggle_button .close_text {
	display: none;
}
.aui_cp_banner .aui_cp_banner_toggle_button.is_opened .open_text {
	display: none;
}
.aui_cp_banner .aui_cp_banner_toggle_button.is_opened .close_text {
	display: inline;
}
.aui_cp_banner .aui_cp_banner_toggle_button.is_sp {
	display: none;
}
.aui_cp_banner .aui_cp_banner_wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0 40px;
}
.aui_cp_banner .aui_cp_banner_wrapper .aui_banner {
	max-width: 500px;
	margin-top: 0;
	margin-left: 0;
	margin-right: 0;
}
.aui_cp_banner .aui_cp_banner_wrapper .aui_banner:nth-of-type(n+3) {
	display: none;
}
.aui_cp_banner .aui_cp_banner_close {
	width: 100%;
}
.aui_cp_banner .aui_cp_banner_close_button {
	display: none;
}
.aui_cp_banner .aui_cp_banner_close_button.is_pc {
	margin: auto auto 40px;
}
.aui_cp_banner .aui_banner.is_opened ~ .aui_cp_banner_close .aui_cp_banner_close_button.is_pc {
	display: block;
}

/* ポイント内訳
--------------------------------------- */
.aui_point_detail .aui_accordion_title,
.aui_point_detail .aui_accordion_content {
	background-color: transparent;
	padding: 0;
	border: none;
}
.aui_point_detail .aui_accordion_content {
	height: 0;
}
.aui_point_detail table {
	background-color: #FFFFFF;
	font-weight: normal;
	border: 1px solid #D5D5D5;
	text-align: left;
	float: right;
}
.aui_point_detail table > tbody > tr.goods > td {
	padding-top: 15px;
}
.aui_point_detail table > tbody > tr:last-child > td {
	padding-bottom: 15px;
}
.aui_point_detail table > tbody > tr > td {
	padding: 1px 20px;
}
.aui_point_detail table > tbody > tr > td.type_name {
	text-align: left;
	text-indent: 1em;
}
.aui_point_detail table > tbody > tr > td.set_num,
.aui_point_detail table > tbody > tr > td.multiplier,
.aui_point_detail table > tbody > tr > td.point {
	text-align: right;
}

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

フォーム関連

<フォームの基本階層>
-フィールド
  -フィールドヘッド
    -ラベル
  -フィールドボディ
    -入力フォーム
    -グループ
      -入力フォーム

--------------------------------------------------------- */
/* フォームレイアウト
--------------------------------------- */
/* ----- テーブル形式 ----- */
.aui_form_table {
	display: table;
	width: 100%;
	border-collapse: collapse;
}
.aui_form_table > .aui_form_field {
	display: table-row;
	vertical-align: inherit;
	padding: inherit;
}
.aui_form_table > .aui_form_field > .aui_form_head,
.aui_form_table > .aui_form_field > .aui_form_body {
	display: table-cell;
	padding: 20px 40px;
	border: 1px solid #D5D5D5;
	font-weight: normal;
	vertical-align: inherit;
}
.aui_form_table[class*=pv] .aui_form_head, .aui_form_table[class*=ph] .aui_form_head, .aui_form_table[class*=pt] .aui_form_head, .aui_form_table[class*=pb] .aui_form_head, .aui_form_table[class*=pl] .aui_form_head, .aui_form_table[class*=pr] .aui_form_head, .aui_form_table[class*=pv] .aui_form_body, .aui_form_table[class*=ph] .aui_form_body, .aui_form_table[class*=pt] .aui_form_body, .aui_form_table[class*=pb] .aui_form_body, .aui_form_table[class*=pl] .aui_form_body, .aui_form_table[class*=pr] .aui_form_body {
	padding: inherit;
}
.aui_form_table.cell_fixed {
	table-layout: fixed;
}
.aui_form_table.head_gray .aui_form_head {
	background-color: #F6F6F6;
}
.aui_form_table .cell_gray {
	background-color: #F6F6F6;
}
.aui_form_table .cell_pink {
	background-color: #FFEEEE;
}

/* ----- フィールド ----- */
.aui_form_field {
	margin: 0 0 30px;
}

/* ----- フィールドヘッド ----- */
/* ----- フィールドボディ ----- */
/* フォーム矢印
--------------------------------------- */
[class*=aui_form_].is_arrow {
	background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23666666%22%20d%3D%22M256%2C298.3L256%2C298.3L256%2C298.3l174.2-167.2c4.3-4.2%2C11.4-4.1%2C15.8%2C0.2l30.6%2C29.9c4.4%2C4.3%2C4.5%2C11.3%2C0.2%2C15.5L264.1%2C380.9c-2.2%2C2.2-5.2%2C3.2-8.1%2C3c-3%2C0.1-5.9-0.9-8.1-3L35.2%2C176.7c-4.3-4.2-4.2-11.2%2C0.2-15.5L66%2C131.3c4.4-4.3%2C11.5-4.4%2C15.8-0.2L256%2C298.3z%22/%3E%3C/svg%3E");
	background-size: 10px;
	background-repeat: no-repeat;
	background-position: calc(100% - 16px) center;
	position: relative;
}
[class*=aui_form_].is_arrow::-webkit-datetime-edit {
	font-size: inherit !important;
}
[class*=aui_form_].is_arrow::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
[class*=aui_form_].is_arrow::-webkit-clear-button {
	-webkit-appearance: none;
}
[class*=aui_form_].is_arrow::-webkit-calendar-picker-indicator {
	position: absolute;
	top: 0;
	right: 10px;
	width: 20px;
	height: 15px;
	opacity: 0;
}

/* エラーメッセージ
--------------------------------------- */
.aui_form_err_msg {
	margin-bottom: 40px;
	padding: 8px 16px;
	border: 1px solid #CB0005;
	color: #CB0005;
	font-weight: 500;
}
.aui_form_err_msg font {
	color: #CB0005;
}

/* インプット
--------------------------------------- */
.aui_form_input {
	-webkit-appearance: none;
	        appearance: none;
	box-sizing: border-box;
	width: 100%;
	height: 48px;
	margin: 0;
	padding: 16px;
	background: #FFFFFF;
	border: 1px solid #D5D5D5;
	box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.05);
	border-radius: 0;
	outline: none;
	resize: vertical;
	transition: border-color 0.2s ease;
	color: #222222;
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	letter-spacing: 0.1em;
}
.aui_form_input:focus {
	border-color: #D5D5D5;
}
.aui_form_input::-webkit-input-placeholder {
	color: #AAAAAA;
	opacity: 1;
}
.aui_form_input:-ms-input-placeholder {
	color: #AAAAAA;
	opacity: 1;
}
.aui_form_input::placeholder {
	color: #AAAAAA;
	opacity: 1;
}
.aui_form_input:-ms-input-placeholder {
	color: #AAAAAA;
}
.aui_form_input::-ms-input-placeholder {
	color: #AAAAAA;
}
.aui_form_input[type=number]::-webkit-outer-spin-button, .aui_form_input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.aui_form_input[type=number] {
	-moz-appearance: textfield;
}
.aui_form_input[disabled] {
	box-shadow: none;
	cursor: not-allowed;
	color: #AAAAAA;
	background-color: #F6F6F6;
	opacity: 1;
}
.aui_form_input[disabled]::-webkit-input-placeholder {
	color: transparent;
}
.aui_form_input[disabled]:-ms-input-placeholder {
	color: transparent;
}
.aui_form_input[disabled]::placeholder {
	color: transparent;
}
.aui_form_input[disabled]:-ms-input-placeholder {
	color: transparent;
}
.aui_form_input[disabled]::-ms-input-placeholder {
	color: transparent;
}
.aui_form_input.is_gray {
	border-color: #EEEEEE;
	background-color: #EEEEEE;
}
.aui_form_input.is_xhigh {
	height: 72px;
}
.aui_form_input.is_high {
	height: 62px;
}
.aui_form_input.is_low {
	height: 40px;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop, .aui_form_input {
	line-height: 0.5;
}

/* ラジオボタン、チェックボックス
--------------------------------------- */
.aui_form_control {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
}
.aui_form_control_input {
	position: absolute;
	opacity: 0;
	-webkit-appearance: none;
	        appearance: none;
	margin: 0;
	left: 0;
	top: calc(50% - 10px);
	width: 20px;
	height: 20px;
	pointer-events: none;
}
.aui_form_control_label {
	display: flex;
	align-items: center;
	position: relative;
	color: #222222;
}
.aui_form_control_label::before, .aui_form_control_label::after {
	content: "";
	display: block;
	border: 1px solid transparent;
}
.aui_form_control_label::before {
	flex-shrink: 0;
	margin-right: 10px;
	width: 20px;
	height: 20px;
	border-color: #D5D5D5;
	box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.05);
	background: #FFFFFF;
}
.aui_form_control_label::after {
	position: absolute;
	top: calc(50% - 10px + 3px);
	left: 3px;
	width: 14px;
	height: 14px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transform: scale(0);
	        transform: scale(0);
	transition: -webkit-transform 0.2s ease;
	transition: transform 0.2s ease;
	transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.aui_form_control_input[type=radio] + .aui_form_control_label::before {
	border-radius: 100%;
}
.aui_form_control_input[type=radio] + .aui_form_control_label::after {
	background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23666666%22%20d%3D%22M256%2C464c114.9%2C0%2C208-93.1%2C208-208c0-114.9-93.1-208-208-208C141.1%2C48%2C48%2C141.1%2C48%2C256C48%2C370.9%2C141.1%2C464%2C256%2C464z%22/%3E%3C/svg%3E");
}
.aui_form_control_input[type=checkbox] + .aui_form_control_label::after {
	background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M461.6%2C109.6l-54.9-43.3c-1.7-1.4-3.8-2.4-6.2-2.4c-2.4%2C0-4.6%2C1-6.3%2C2.5L194.5%2C323c0%2C0-78.5-75.5-80.7-77.7c-2.2-2.2-5.1-5.9-9.5-5.9c-4.4%2C0-6.4%2C3.1-8.7%2C5.4c-1.7%2C1.8-29.7%2C31.2-43.5%2C45.8c-0.8%2C0.9-1.3%2C1.4-2%2C2.1c-1.2%2C1.7-2%2C3.6-2%2C5.7c0%2C2.2%2C0.8%2C4%2C2%2C5.7l2.8%2C2.6c0%2C0%2C139.3%2C133.8%2C141.6%2C136.1c2.3%2C2.3%2C5.1%2C5.2%2C9.2%2C5.2c4%2C0%2C7.3-4.3%2C9.2-6.2L462%2C121.8c1.2-1.7%2C2-3.6%2C2-5.8C464%2C113.5%2C463%2C111.4%2C461.6%2C109.6z%22/%3E%3C/svg%3E");
}
.aui_form_control_input[type=radio][disabled] + .aui_form_control_label, .aui_form_control_input[type=checkbox][disabled] + .aui_form_control_label {
	cursor: not-allowed;
	color: #2f2f2f;
}
.aui_form_control_input[type=radio][disabled] + .aui_form_control_label::before, .aui_form_control_input[type=checkbox][disabled] + .aui_form_control_label::before {
	border-color: #e2e2e2;
	background-color: #f2f2f2;
	box-shadow: none;
}
.aui_form_control_input:focus + .aui_form_control_label::before {
	border-color: #D5D5D5;
}
.aui_form_control_input:checked + .aui_form_control_label::after {
	-webkit-transform: scale(1);
	        transform: scale(1);
}
.aui_form_control_input[type=checkbox]:checked + .aui_form_control_label::before {
	background-color: #666666;
}
.aui_form_control.vat .aui_form_control_label {
	align-items: flex-start;
}
.aui_form_control.vat .aui_form_control_label::before {
	margin-top: 0.3rem;
}
.aui_form_control.vat .aui_form_control_label::after {
	top: 0.6rem;
}

/* セレクトボックス
--------------------------------------- */
.aui_form_select {
	-webkit-appearance: none;
	        appearance: none;
	box-sizing: border-box;
	padding: 16px;
	padding-right: calc(24px + 12px);
	width: 100%;
	height: 48px;
	background: #FFFFFF;
	background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23666666%22%20d%3D%22M256%2C298.3L256%2C298.3L256%2C298.3l174.2-167.2c4.3-4.2%2C11.4-4.1%2C15.8%2C0.2l30.6%2C29.9c4.4%2C4.3%2C4.5%2C11.3%2C0.2%2C15.5L264.1%2C380.9c-2.2%2C2.2-5.2%2C3.2-8.1%2C3c-3%2C0.1-5.9-0.9-8.1-3L35.2%2C176.7c-4.3-4.2-4.2-11.2%2C0.2-15.5L66%2C131.3c4.4-4.3%2C11.5-4.4%2C15.8-0.2L256%2C298.3z%22/%3E%3C/svg%3E");
	background-size: 12px;
	background-repeat: no-repeat;
	background-position: calc(100% - 16px) center;
	border: 1px solid #D5D5D5;
	box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.05);
	border-radius: 0;
	outline: 0;
	color: #AAAAAA;
	font-weight: inherit;
	font-family: inherit;
	font-size: inherit;
	line-height: 1.15;
	letter-spacing: 0.1em;
	white-space: nowrap;
}
.aui_form_select[disabled] {
	box-shadow: none;
	cursor: not-allowed;
	color: #AAAAAA;
	background-color: #F6F6F6;
	opacity: 1;
}
.aui_form_select[disabled]::-webkit-input-placeholder {
	color: transparent;
}
.aui_form_select[disabled]:-ms-input-placeholder {
	color: transparent;
}
.aui_form_select[disabled]::placeholder {
	color: transparent;
}
.aui_form_select[disabled]:-ms-input-placeholder {
	color: transparent;
}
.aui_form_select[disabled]::-ms-input-placeholder {
	color: transparent;
}
.aui_form_select:focus {
	border-color: #D5D5D5;
}
.aui_form_select::-ms-expand {
	display: none;
}
.aui_form_select.selected {
	color: #222222;
}
.aui_form_select.is_xhigh {
	height: 72px;
}
.aui_form_select.is_high {
	height: 62px;
}
.aui_form_select.is_low {
	height: 40px;
}
.aui_form_select option {
	color: #222222;
}

/* テキストエリア
--------------------------------------- */
.aui_form_textarea {
	-webkit-appearance: none;
	        appearance: none;
	box-sizing: border-box;
	width: 100%;
	height: 192px;
	padding: 16px;
	background: #FFFFFF;
	border: 1px solid #D5D5D5;
	box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.05);
	border-radius: 0;
	outline: none;
	resize: vertical;
	transition: border-color 0.2s ease;
	color: #222222;
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	letter-spacing: 0.1em;
}
.aui_form_textarea[disabled] {
	box-shadow: none;
	cursor: not-allowed;
	color: #AAAAAA;
	background-color: #F6F6F6;
	opacity: 1;
}
.aui_form_textarea[disabled]::-webkit-input-placeholder {
	color: transparent;
}
.aui_form_textarea[disabled]:-ms-input-placeholder {
	color: transparent;
}
.aui_form_textarea[disabled]::placeholder {
	color: transparent;
}
.aui_form_textarea[disabled]:-ms-input-placeholder {
	color: transparent;
}
.aui_form_textarea[disabled]::-ms-input-placeholder {
	color: transparent;
}
.aui_form_textarea:focus {
	border-color: #D5D5D5;
}
.aui_form_textarea::-webkit-input-placeholder {
	color: #AAAAAA;
	opacity: 1;
}
.aui_form_textarea:-ms-input-placeholder {
	color: #AAAAAA;
	opacity: 1;
}
.aui_form_textarea::placeholder {
	color: #AAAAAA;
	opacity: 1;
}
.aui_form_textarea:-ms-input-placeholder {
	color: #AAAAAA;
}
.aui_form_textarea::-ms-input-placeholder {
	color: #AAAAAA;
}
.aui_form_textarea[type=number]::-webkit-outer-spin-button, .aui_form_textarea[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.aui_form_textarea[type=number] {
	-moz-appearance: textfield;
}
.aui_form_textarea.is_gray {
	border-color: #EEEEEE;
	background-color: #EEEEEE;
}/*# sourceMappingURL=pc_common.css.map */