@charset "utf-8";

/* ------------------------------
 Basic Elements
------------------------------ */

body{
	background-color: #46515d;
	/*font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;*/
	font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
	-webkit-font-smoothing: antialiased;
	min-width: 320px;
}

a {
	color: #0a5aaa;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a,
a img,
a:before,
a:after {
	transition: all 0.2s ease-in-out;
}
a img:hover {
	opacity: 0.85;
}

img {
	max-width: 100%;
}

/* ------------------------------
 Utility
------------------------------ */
.inner {
	max-width: 1000px;
	margin: auto;
}

a.arrow,
ul.arrow a {
	position: relative;
	padding-left: 16px;
	color: #000;
}
ul.arrow {
	list-style-type: none;
	padding-left: .25rem !important;
}
ul.arrow li {
	margin: 8px 0;
}
a.arrow.arrow-r,
ul.arrow.arrow-r a {
	padding-left: 0;
	padding-right: 16px;
}
a.arrow::before,
ul.arrow a::before {
	position: absolute;
	content: "";
	display: inline-block;
	left: 2px;
	width: 8px;
	height: 8px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
	top: 50%;
	bottom: 50%;
	margin: auto;
}
.arrow-r a::before{
	left: auto;
	right: 2px;
}
a.arrow.arrow-r::before,
ul.arrow.arrow-r a::before{
	left: auto;
	right: 15px;
}
a.arrow:hover,
ul.arrow a:hover {
	color: #0a5aaa;
	text-decoration: none;
}
a.arrow:hover::before,
ul.arrow a:hover::before{
	border-color: #0a5aaa;
}

.text-color-main {
	color: #0a5aaa !important;
}
.text-color-sub {
	color: #a84f9a !important;
}
.text-color-alt {
	color: #0080F6 !important;
}
.text-color-gray {
	color: #666 !important;
}
.text-color-white {
	color: #fff !important;
}
.text-color-red {
	color: #ce3541 !important;
}
.bg-color-main {
	background-color: #0a5aaa !important;
}
.bg-color-sub {
	background-color: #a84f9a !important;
}
.bg-color-alt {
	background-color: #0080F6 !important;
}
.bg-color-sky-blue {
	background-color: #e1effb !important;
}
.bg-color-light-sky-blue {
	background-color: #eff8ff !important;
}
.bg-color-gray {
	background-color: #F1F1F180 !important;
}
.bg-color-light-gray {
	background-color: #eee !important;
}
.bg-color-haze-white {
	background-color: #f7f7f7 !important;
}
.bg-color-white {
	background-color: #fff !important;
}
.bg-color-system1 {
	background-color: #eceae7;
}
.bg-color-system2 {
	background-color: #e5e2df;
}

.header-1 {
	text-align: center;
	position: relative;
	margin-bottom: 2rem;
}
.header-1::after {
	content: '';
	display: block;
	height: 5px;
	width: 150px;
	background-color: #0a5aaa;
	position: absolute;
	margin: auto;
	left: calc(50% - 75px);
	bottom: -15px;
}

.header-2 {
	color: #444;
}
.header-2 span {
	padding: 6px 10px 3px 10px;
	background: linear-gradient(transparent 60%, #d3ccc2 60%);
}
.header-2.prefix-01::before,
.header-2.prefix-02::before {
	font-size: 3.8rem;
	display: inline-block;
	color: #0a5aaa;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-style: italic;
	margin-right: 10px;
}
.header-2.prefix-01::before {
	content: '01';
}
.header-2.prefix-02::before {
	content: '02';
}

.box {
	border-radius: 5px;
	padding: 20px 25px;
	background-color: #fff;
}
.box-rounded {
	border-radius: 15px;
	padding: 20px 25px;
	background-color: #fff;
	box-shadow: 1px 1px 10px #ddd;
}

/* overwrite Bootstrap */
.page-link {
	color: #0a5aaa;
}
.active>.page-link, .page-link.active {
	background-color: #0a5aaa;
	border-color: #0a5aaa;
}

.btn {
	background-color: #ccc;
	border-color: #ccc;
	color: #666 !important;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}
.btn:hover {
	background-color: #ccc;
	border-color: #ccc;
	color: #666;
	opacity: 60%;
	text-decoration: none;
}
.btn:active {
	opacity: 100%;
	color: #fff !important;
	background-color: #ccc !important;
	border-color: #ccc !important;
	text-decoration: none;
}
.btn.btn-rounded {
	border-radius: 50px;
	padding: 10px 20px;
}
.btn.arrow {
	position: relative;
	background-color: #fff;
	border: 2px solid #0a5aaa;
	padding: 10px 25px 10px 35px;
	color: #0a5aaa !important;
}
.btn.arrow::before{
	position: absolute;
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	transform: rotate(45deg);
	top: 50%;
	bottom: 50%;
	margin: auto;
	border-top: 1px solid #0a5aaa;
	border-right: 1px solid #0a5aaa;
	left: 12px;
}
.btn.arrow.arrow-r {
	padding: 10px 35px 10px 25px;
}
.btn.arrow.arrow-r::before{
	left: auto;
	right: 15px;
}

.btn.btn-m {
	padding: 10px 40px;
}
.btn.btn-m.arrow {
	padding: 10px 50px 10px 60px;
}
.btn.btn-m.arrow.arrow-r {
	padding: 10px 60px 10px 50px;
}

.btn.btn-blue {
	background-color: #0a5aaa;
	border-color: #0a5aaa;
	color: #fff !important;
}
.btn.btn-blue.arrow::before{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.btn.btn-navy {
	background-color: #24405e;
	border-color: #24405e;
	color: #fff !important;
}
.btn.btn-navy.arrow::before{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.badge.required {
	background-color: #0a5aaa;
}
.badge.no-required {
	background-color: #7f7f7f;
}


i.ico-movie {
	display: inline-block;
	width: 24px;
	height: 18px;
	position: relative;
	vertical-align: sub;
}

i.ico-movie::after,
i.ico-movie::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	margin: auto;
}
i.ico-movie::before {
	width: 24px;
	height: 18px;
	background: linear-gradient(#de2924 0%, #c2181e 100%);
	border-radius: 6px;
	left: 0;
	margin: auto;
}
i.ico-movie::after {
	background: #ffffff;
	height: calc(tan(60deg)* 6px / 2);
	width: 6px;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	left: 10px;
	transform: rotate(90deg);
}

.glass a {
	position: relative;
	display: block;
	/*overflow: hidden;*/
}
/*.glass a::before,*/
.glass a::after {
	content: '';
	position: absolute;
	display: block;
}
/*
.glass a::before {
	width: 38px;
	height: 38px;
	right: -6px;
	bottom: -6px;
	background-color: rgba(255, 255, 255, 0.76);
	border-radius: 100px;
}
*/
.glass a::after {
	content: '';
	width: 20px;
	height: 20px;
	right: 5px;
	bottom: 5px;
	background-image: url("../img/icon_search_plus.png");
	background-size: contain;
}

/* ------------------------------
 Structure
------------------------------ */
#header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
#header img.site-logo {
	width: 80px;
	position: absolute;
	top: 15px;
	left: 85px;
	z-index: 1;
}
#header .nav {
	padding-right: 5px;
}
#header .nav .nav-item {
	margin: 10px 5px;
}

.navigation {
	min-width: 250px;
	padding: 140px 0 0 0;
	background-color: #fff;
}
.navigation .navbar-nav {
	padding: 10px 0 10px 5px;
}
.navigation .navbar-nav li {
	padding: 10px;
}
.navigation .bol-products-information {
	background-color: #0a5aaa;
	color: #fff;
}
.navigation .bol-products-information .header {
	padding: 20px 15px;
}
.navigation .bol-products-information .navbar-nav {
	padding: 0 0 30px 5px;
}
.navigation .bol-products-information .navbar-nav li a {
	/*padding: 10px 10px 10px 16px;*/
	color: #fff;
	display: block;
}
.navigation .bol-products-information .navbar-nav.arrow li a::before{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
.navigation .bol-products-information .navbar-nav.arrow li a:hover {
	color: #ddebff;
}
.navigation .bol-products-information .navbar-nav.arrow li a:hover::before{
	border-top: 1px solid #ddebff;
	border-right: 1px solid #ddebff;
}
.navigation .msp-logo{
	width: 200px;
}

#sp-navigation {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	padding: 0;
	z-index: 99;
	overscroll-behavior: contain;
	overflow: scroll;
}
/* Windows Chrome Edge 対応 */
#sp-navigation::-webkit-scrollbar {
	display:none;
}
#sp-navigation.show {	/* 表示時のみheightをセットすることでスムーズにアニメーションさせる */
	height: 100vh;
}
.navbar-toggler {
	z-index: 100;
	position: fixed;
	top: 10px;
	right: 12px;
	border: none;
	height: 40px;
	width: 40px;
	padding: 0;
}
.navbar-toggler.collapsed {
	position: absolute;
}
.navbar-toggler:focus {
	box-shadow: none;
}
.navbar-toggler .navbar-toggler-bar,
.navbar-toggler .navbar-toggler-bar::before,
.navbar-toggler .navbar-toggler-bar::after {
	width: 24px;
	height: 2px;
	background-color: #24405e;
	display: block;
	position: absolute;
	margin: auto;
	/*left: calc(50% - 12px);*/
	left: 0;
	right: 0;
	transition: all 0.2s ease-in-out;
}
.navbar-toggler .navbar-toggler-bar {
	top: calc(50% - 1px);
	visibility: hidden;
}
.navbar-toggler .navbar-toggler-bar::before,
.navbar-toggler .navbar-toggler-bar::after {
	content: '';
	visibility: visible;
}
.navbar-toggler .navbar-toggler-bar::before {
	top: 1px;
	transform: rotate(135deg);
}
.navbar-toggler .navbar-toggler-bar::after {
	bottom: -1px;
	transform: rotate(-135deg);
}
.navbar-toggler.collapsed .navbar-toggler-bar,
.navbar-toggler.collapsed .navbar-toggler-bar::before,
.navbar-toggler.collapsed .navbar-toggler-bar::after {
	visibility: visible;
	transform: rotate(0deg);
}
.navbar-toggler.collapsed .navbar-toggler-bar::before {
	top: -8px;
}
.navbar-toggler.collapsed .navbar-toggler-bar::after {
	bottom: -8px;
}
.no-header-navi .navbar-toggler .navbar-toggler-bar,
.no-header-navi .navbar-toggler .navbar-toggler-bar::before,
.no-header-navi .navbar-toggler .navbar-toggler-bar::after {
	background-color: #fff;
}
.no-header-navi .navbar-toggler.collapsed .navbar-toggler-bar,
.no-header-navi .navbar-toggler.collapsed .navbar-toggler-bar::before,
.no-header-navi .navbar-toggler.collapsed .navbar-toggler-bar::after {
	background-color: #24405e;
}

#content {
	background-color: #f7f6f4;
	width: 100%;
	padding: 80px 0 0 0;
	min-height: 50vh;
}

#news .header {
	color: #444;
	font-size: 0.9rem;
	border-right: 1px solid #ddd;
	padding-right: 10px;
}
#news .header::before {
	content: 'NEWS';
	font-size: 2.6rem;
	margin-bottom: 5px;
	display: block;
	color: #0a5aaa;
	font-family: "Helvetica Neue", Arial, sans-serif;
}

#delivery .header {
	color: #444;
	font-size: 0.8rem;
	position: relative;
}
#delivery .header::before {
	content: 'DELIVERY DATE';
	font-size: 1.25rem;
	margin-bottom: 5px;
	display: block;
	color: #0a5aaa;
	font-family: "Helvetica Neue", Arial, sans-serif;
}
#delivery figure {
	width: 120px;
	height: 120px;
	margin: auto;
}

#included_tools .header {
	color: #444;
}
#included_tools ul.movie {
	list-style-type: none;
}
#included_tools ul.movie li {
	margin: 12px 0;
}
#included_tools ul.movie li a {
	position: relative;
	padding: 5px 0 5px 45px;
}
#included_tools ul.movie li a::after,
#included_tools ul.movie li a::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	margin: auto;
}
#included_tools ul.movie li a::before {
	width: 30px;
	height: 20px;
	background: linear-gradient(#de2924 0%, #c2181e 100%);
	border-radius: 6px;
}
#included_tools ul.movie li a::after {
	background: #ffffff;
	height: calc(tan(60deg)* 8px / 2);
	width: 8px;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	left: 12px;
	transform: rotate(90deg);
}

#products-list .box-rounded {
	position: relative;
	padding-bottom: 80px;
}

#products-list .set {
	padding: 5px 15px;
	background-color: #46515d;
	border-radius: 100px;
	color: #fff;
}

#products-list a.btn.movie.arrow {
	border:1px solid #c2181e;
	color: #c2181e !important;
	background-color: #fff;
	font-size: 0.85rem;
	border-radius: var(--bs-btn-border-radius);
}
#products-list a.btn.movie.arrow::before {
	border-top: 1px solid #c2181e;
	border-right: 1px solid #c2181e;
	left: auto;
	right: 8px;
}
#products-list a.btn.movie.arrow.arrow-r {
	padding: 8px 16px 8px 10px;
}

#products-list .order-form {
	padding: 10px 20px;
	background-color: #f6f6f6;
	overflow: hidden;
	border-radius: 0 0 15px 15px;
	bottom: 0;
	left: 0;
	position: absolute;
	width: 100%;
}

#order-history {
}

#sitemap {
	padding: 20px 20px 20px 270px;
	background-color: #f7f6f4;
}
#sitemap .header {
	color: #444;
	border-bottom: 1px solid #bcc5d0;
}
#sitemap ul {
	list-style: none;
}
#sitemap ul.arrow ul a {
	padding-left: 0.3rem;
}
#sitemap ul.arrow ul a::before {
	display: none;
}
#sitemap ul li {
	margin: 8px 0;
}

#footer {
	padding: 20px;
	background-color: #46515d;	/* fixme: bodyで指定しているが念の為 */
	font-size: .9rem;
}
#footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#footer ul li {
	margin-right: 30px;
}
#footer ul li:last-child {
	margin-right: 0;
}
#footer ul.arrow a::before{
	border-top: 1px solid #b2b6ba;
	border-right: 1px solid #b2b6ba;
}

#footer a {
	color: #b2b6ba;
	text-decoration: none;
}
#footer a:hover {
	color: #fff;
}
#footer ul.arrow a:hover::before{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
#footer address {
	color: #b2b6ba;
	margin: 0;
	padding: 0;
}

/* Spiral Seal */
.spiralSeal {
	width: 100%;
	margin: 10px 0 0 0;
	overflow: hidden;
}
.spiralSeal tr td.description {
	display: table-cell;
	text-align: left;
	overflow: auto;
	font-size:11px;
	padding:5px;
}
.spiralSeal tr td.img {
	display: table-cell;
	margin-left: 0px;
	margin-right: 0px;
	padding:5px;
	overflow: auto;
	text-align: center;
}


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {

}

/*
XX-Large devices (larger desktops)
No media query since the xxl breakpoint has no upper bound on its width
*/

@media only screen and (min-width: 768px) {

}

/*
 For Tablet
 */
@media only screen and (max-width: 992px) {
	.inner {
		max-width: 860px;
	}

	#header {
		background-color: rgba(255, 255, 255, 0.9);
		backdrop-filter: blur(3px);
		-webkit-backdrop-filter: blur(3px);
		height: 60px;
		position: fixed;
		z-index: 100;
	}
	#header img.site-logo {
		width: 38px;
		top: 5px;
		left: 10px;
	}

	#header .nav {
		padding-right: 60px;
	}

	#sitemap {
		padding: 20px;
	}

}

/*
 For Mobile Device
 */
@media only screen and (max-width: 767px) {
	.header-2.prefix-01,
	.header-2.prefix-02 {
		position: relative;
		padding-top: 5rem;
	}
	.header-2.prefix-01::before,
	.header-2.prefix-02::before {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
	}

	#sitemap {
		--bs-gutter-x: 1.5rem;
		padding-right: calc(var(--bs-gutter-x)* .5);
		padding-left: calc(var(--bs-gutter-x)* .5);
	}

	#news .header {
		font-size: 1rem;
	}
	#news .header::before {
		font-size: 1.2rem;
	}

	#delivery ul {
		border-top: 1px solid #ddd;
	}
	#delivery figure {
		width: 50px;
		height: 50px;
		margin: auto 10px auto 0;
	}

	#footer ul li {
		margin-right: 10px;
	}
}

@media only screen and (max-width: 380px) {
	#header .nav {
		display: none;
	}

}