:root {
	/* common */
	--color-danger: #c71a15;
	--color-danger-light: #FFF8F8;
	/*--color-danger-light: #e8f0fe;*/
	--color-info: #034693;
	--bg-color-title: #8B8B8B;
	/* breadcrumbs */
	--color-bc-off: #eee;
	/* sizes */
	--form-padding: 15px;
	--resp-padding: 15px;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: black;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

main {
	margin-bottom: auto;
}

.container {
	margin: auto;
	padding: 0 15px;
	max-width: 1000px;
}

header {
	margin-bottom: 30px;	/* 40px */
	padding: 5px 0 10px 0;	/*30px 0 20px 0 */
	box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
.header-logo {
	width: 240px;
	height: auto;
}

footer {
	margin: 0px 0 0 0;	/*30px 0 0 0*/
	padding: 23px 0 25px;
	background-color: #EAEDF1;
	color: #3E3737;
	text-align: center;
	line-height: 1.6;
	font-size: 13px;
}

footer a {
	color: inherit;
	text-decoration: underline;
	font-size: 20px;
}

a {
	color: black;
	text-decoration: underline;
}

.icon-play3::before {
	content: "▶";
	padding: 0 5px;
	color: #0074FF;
}

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

.text-right {
	text-align: right;
}

.text-danger {
	/*color: var(--color-danger);*/
	color: red;
}

.underline {
	font-style: normal;
	/* text-decoration: underline; */
	border-bottom: 3px solid yellow;
}

.bg-theme {
	background-color: var(--select-back);
	padding: 30px 0px 20px 0px !important;	/* add 2022/03/29 */
}

h1 {
	margin-bottom: 25px;
	font-size: 24px;
	font-weight: bold;
}

/* cart contact block */
.container-cart-contact {
	padding: var(--form-padding);
	border: 2px dotted #425A8D;
	border-radius: var(--form-padding);
}
.cart-contact {
	display: flex;
	gap: var(--form-padding);
	justify-content: center;
	align-items: center;
}
.cart-contact-phone {
	display: flex;
	align-items: center;
	color: #425A8D;
	font-size: 30px;
	font-weight: bold;
}
.cart-contact-phone img {
	height: 1em;
}

.cart-complete.container-cart-contact {
	display: flex;
	gap: var(--form-padding);
	width: 100%;	/*80% 20220411 */
	margin: auto;
	font-size: 16px;
}
.cart-contact-page-left,
.cart-contact-page-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1 1 50%;
	line-height: 1.5em;
}
.container-cart-contact .button {
	font-size: inherit;
}


/* === form */
.container-form {
/*	max-width: 850px;*/
	margin: auto;
}

input[type=radio]:disabled+label {
	opacity: 50%;
}

input[type=text].input-ivory {
	padding: 6px 7px;
	border: 1px solid #ccc;
	background: #fff;
	font-size: 1.4rem;
	background-color: #F4F4ED;
}

.coupon-choice-line {
	opacity: 1;
	transition: opacity ease 0.2s;
}
.coupon-choice-line.disabled {
	opacity: 0.5;
}
.coupon-choice-line.disabled select:disabled {
	opacity: 1;
}

.form-flex {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.form-group {
	display: flex;
	/* margin-bottom: var(--form-padding); */
	padding-bottom: var(--form-padding);
	border-bottom: 1px solid lightgrey;
}
.form-group.padded {
	padding-top: var(--form-padding);
	padding-bottom: var(--form-padding);
}

.form-group>:first-child {
	width: 350px;	/* edit okabe 2022/04/03 from 250px */
	flex-shrink: 0;
	padding-left: var(--form-padding);
}
.form-group>:last-child {
	flex-grow: 1;
	padding-right: var(--form-padding);
}

label {
	font-weight: normal;
}
label.form-label {
	font-weight: bold;
}
.form-label.required {
	color: inherit;
}
.form-label.required::after {
	content: "※";
	margin-left: 0.5em;
	/*color: var(--color-danger);*/
	color: red;
}

.required {
	color: var(--color-danger);
}

button,
input[type=submit],
input[type=button] {
	cursor: pointer;

	background: #EBEBEB;
	color: #565656;
	border: 1px solid #676767;
}

.form-group button,
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=number],
.form-group select,
.form-group textarea {
	margin: 0;
}

.form-group input[type=text]:required,
.form-group input[type=email]:required,
.form-group input[type=number]:required,
.form-group select:required,
.form-group textarea:required {
	background-color: var(--color-danger-light);
}

.form-group input[type=text].disabled,
.form-group input[type=email].disabled,
.form-group input[type=number].disabled,
.form-group select.disabled,
.form-group textarea.disabled {
	background-color: #f5f5f5;
	/* border-color: #ddd; */
	color: gray;
}

.delivery-inline,
.choice-inline-nwr,
.choice-inline {
	display: flex;
	flex-direction: row;
	gap: 1em;
}
.delivery-inline,
.choice-inline label {
	display: inline;
	margin: 0;
}

.form-group input[type=text],
.choice-inline input[type=radio],
.choice-inline input[type=checkbox] {
	margin-bottom: 0;
}

.choice-payment {
	padding-bottom: var(--form-padding);
}

.block-em {
	background-color: #eee;
	padding: var(--form-padding);
	border-radius: var(--form-padding);
}

.block-em.only-creditcard,
.block-em.only-banktransfer,
.block-em.only-deliverydate {
	margin-top: var(--form-padding);
}

.block-em input[type=text],
.block-em select {
	background-color: white;
}

.delivery-group {
	margin: 0;
}
.delivery-group dd {
	margin: 0;
}

/* address */
.address-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 0;
}
.address-group dt {
	width: 35%;
	margin: 0;
	padding: 0;
}
.address-group dd {
	width: 60%;
	margin: 0;
	padding: 0;
}

/* === buttons */

._left-triangle::before {
	content: "▶";
	margin-right: 1em;
	color: inherit;
}

.button.button-outline {
	display: inline-block;
	width: auto;
	height: auto;
	padding: 10px 20px;
	color: black;
	border: 2px solid #034693;
	border-radius: 3px;
	background-color: #fff;
	-webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
	transition: all .3s cubic-bezier(.165, .84, .44, 1);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.8rem;
}
.button.button-outline:hover {
	color: white;
	background-color: #034693;
	border-color: #034693;
}

.cart-check-accept {
	display: flex;
	gap: 15px;
	align-items: center;
}

.fancy-check {
	display: inline-block !important;
	/* position: relative; */
	min-width: 30px;	/* width */
	height: 30px;
	margin: 0;
	cursor: pointer;
	transition: all 0.15s ease-out 0s;
	color: #fff;
	border: none;
	outline: none;
	background-color: #d7cbcb;
	-webkit-appearance: none;
	appearance: none;
}
.fancy-check:checked {
	background-color: #da3c41;
}
.fancy-check:checked::before {
	content: '✔';
	position: absolute;
	font-size: 20px;
	line-height: 30px;;
	width: 30px;
	height: 30px;
	text-align: center;
}

.cart-sub-btns-group {
	display: flex;
	gap: 15px;
	flex-wrap: wrap-reverse;
	justify-content: center;
	align-items: center;
}

.button.button-outline.btn-cart-back-empty {
	padding: 20px;
	font-size: 2rem;
	padding-bottom: 15px;
	display: inline-block;
}

.button.button-outline.btn-cart-back-full:hover {
	color: inherit;
	background-color: inherit;
}

.button-small {
  font-size: .8rem;
  height: 2.8rem;
  line-height: 2.8rem;
  padding: 0 1.5rem;
}

.button-cart-delete {
	margin: 0;
	padding: 5px 1em;
	line-height: 1;
	height: auto;
	background-color: #FF8E00;
	border: none;
}

.btn-cart-submit {
	display: inline-block;
	width: auto;
	height: auto;
	padding: 20px;
	text-decoration: none;
	font-weight: 700;
	font-size: 2rem;
	color: white;
	background-color: #034693;
	border: none;
	border-radius: 0;
	-webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
	transition: all .3s cubic-bezier(.165, .84, .44, 1);
}
.btn-cart-submit:hover {
	background-color: #59b1eb;
}

.btn-cart-submit:disabled {
	background-color: grey;
}

.btn-cart-submit:disabled:hover {
	background-color: grey;
}

/* === tables */
th {
	text-align: center;
}

.table-cart {
	margin: 0 0 5px 0;
}
.table-cart th {
	padding: 2px;
	background-color: var(--bg-color-title);
	color: white;
	font-size: 14px;
}
.table-cart th:nth-child(n + 2) {
	border-left: 1px dotted white;
}

.table-cart td {
	padding: 5px;
	font-size: 13px;
}

.table-cart select {
	width: 45px;
	height: auto;
	margin: 0;
	padding: 5px 1em;
	background-position: 25px center;
}

.table-cart tr:nth-child(n+2) td {
	border-top: 1px solid #DCDCDC;
}
.table-cart td:nth-child(n+2) {
	border-left: 1px dotted #DCDCDC;
}
.table-cart .cart-kazu,
.table-cart .cart-gender {
	text-align: center;
}

/* cart */
.cart-total-line {
	margin: 0 0 30px;
	display: flex;
	gap: 1em;
	justify-content: flex-end;
}

.cart-total-label {
	font-size: large;
	font-weight: bold;
}

.cart-total-amount {
	font-size: large;
	font-weight: bold;
}

/* === coupon */
.coupon-area {
	margin: auto;
	padding: 20px;
	border: 3px solid #034693;
}

#couponcode {
	max-width: 35em;
}

/* インフォームドコンセント・検査規約 リンク + クッキー注意点 */
.cart-informed-links {
	margin-top: 60px;
}
.cart-mail-attention {
	font-size: 80%;
}

.cart-info-cookies {
	margin: 30px 0;
}

.cart-oshirase {
	margin-top: 45px;
	padding: 20px;
	border: 1px solid red;
}

.letterpack-banner {
	margin: 45px 0 0 0;
	text-align: center;
}
.letterpack-banner a {
	display: block;
	margin: auto;
	max-width: 440px;
}

/* === alerts */
.alert {
	margin: 15px 0;
	padding: 15px;
	font-size: 1.8rem;
	border: 3px solid gray;
	color: gray;
}

.alert-todo {
	border-color: magenta;
	color: magenta;
}

.alert-danger {
	color: var(--color-danger);
	border-color: var(--color-danger);
}

.alert-info {
	color: var(--color-info);
	border-color: var(--color-info);
}

.alert-cart-empty {
	margin-bottom: 60px;
}

/* === breadcrumbs */
ul.breadcrumbs {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: row;
}

ul.breadcrumbs.breadcrumbs-top {
	margin-bottom: 2em;
}
ul.breadcrumbs.breadcrumbs-bottom {
	margin-top: 2em;
}

.breadcrumbs li {
	height: 50px;
	position: relative;
	margin: 0;
	flex: 1 1;
	display: flex;
	background-color: var(--color-bc-off);
	font-size: 14px;
}

.breadcrumbs li.active {
	background-color: var(--main-color);
	color: white;
}

.breadcrumbs li::before {
	position: absolute;
	left: 0;
	content: "";
	border-left: 10px solid white;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
}
.breadcrumbs li:first-child::before {
	display: none;
}
.breadcrumbs li::after {
	position: absolute;
	right: 0;
	content: "";
	border-left: 10px solid transparent;
	border-top: 25px solid white;
	border-bottom: 25px solid white;
}
.breadcrumbs li:last-child::after {
	display: none;
}

.bread-label {
	align-self: center;
	margin: auto;
	font-weight: bold;
}

.bread-label a {
	color: inherit;
	text-decoration: underline;
}

.badge {
	display: inline-block;
	text-align: center;
	width: 1.5em;
	height: 1.5em;
	border-radius: 1em;
	background-color: gray;
	color: white;
}
.breadcrumbs li.active .badge {
	color: var(--main-color);
	background-color: white;
}

/* page titles */
.cart-confirm h2 {
	margin: calc(var(--form-padding) * 2) 0;
	padding: calc(var(--form-padding) / 2);
	background-color: #c0c0c0;
	text-align: center;
	font-size: 22px;
}


.cart-banners2 {
	display: flex;
	gap: 15px;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.cart-banners2>* {
	display: block;
	max-width: 390px;
}

/* Zeus決済 */
.zeus_payment_container {
	max-width: 500px;
	margin: 20px auto;
	padding: 20px;
	border: 2px solid #034693;
	background: #fff;
}

.zeus_payment_container select {
	display: inline;
	width: unset;
}

.zeus_payment_container input,
.zeus_payment_container select {
	border: 1px solid #034693;
}

.zeus_payment_container input[type=radio] {
	margin: 0;
	appearance: none;
}

/* add 2022/03/29 */
.lpt-w490 {
	max-width: 490px!important;
}
.lpt-w300 {
	max-width: 300px!important;
}
.lpt-w150 {
	max-width: 150px!important;
}
.lpt-w100 {
	max-width: 100px!important;
}

/* add okabe 2022/04/11 >>> */
.mail_button {
    background-color: #034693;
    margin: 10px 0 10px 0;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.mail_button a {
    color: #FFF;
    text-decoration: none!important;
    background-color: #034693;
    border: 1px solid #034693;
    margin-bottom: 2px;
}
.mt10 {
    margin-top: 10px;
}
.txt-size13x {
    font-size: 13px;
}
@media only screen and (min-width: 768px) {
	.cart-contact-page-left {
		border-right: 1px dotted black;
	}
}
@media only screen and (max-width: 768px) {
	.cart-contact-page-left {
		width: 100%;
	}
	.cart-contact-page-right {
		width: 100%;
	}
	.cart-complete.container-cart-contact {
	    display: block;
    }
	.cart-contact-page-right {
		border-top: 1px dotted black;
		margin-top: 10px;
		padding-top: 10px;
	}
	.cart-contact-phone {
		margin-top: 15px;
		margin-bottom: 15px;
	}
	.cart-contact-hoursinfo {
	    font-size: 13px;
	}
}
/* <<< */

/* add okabe 2022/04/14 >>> */
.letterpack-banner2 {
	margin: 45px 0 0 0;
	text-align: center;
}
.letterpack-banner2 a {
	display: block;
	margin: auto;
/*	max-width: 440px;*/
}
.letterpack-banner2 a {
	max-width: 570px;
	height:auto;
}
/* <<< */
