@charset "UTF-8";
/* CSS Document */
/* btn ----------------------------*/
/* btnarea */
.btnarea {
	display: flex;
}
.btnarea.btn-center {
	justify-content: center;
}
.btnarea.btn-right {
	justify-content: flex-end;
}

.btn {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 100%;
	cursor: pointer;
	overflow: hidden;
}

/* ボタンの幅：デザイン案に合わせて編集 */
.btnW-s {
	max-width: 200px;
}
.btnW-m {
	max-width: 320px;
}
.btnW-sm {
	max-width: 420px;
}
.btnW-l {
	max-width: 420px;
}
.btnW-ll {
	max-width: 1300px;
}
@media (max-width: 480px) {
	.btnW-s,.btnW-m,.btnW-l {
		max-width: none;
	}
}

/* ボタンの高さ：デザイン案に合わせて編集 */
.btnH-s {
	height: 80px;
}
.btnH-m {
	height: 95px;
}
.btnH-l {
	height: 333px;
}
@media (max-width: 480px) {
	.has-arrow.btnH-s,
	.has-arrow.btnH-m {
		height: 75px;
	}
}

/* ボタンの色 */
.btn.btn-sty01 {
	border-bottom: 5px solid #000; /* 枠線の設定 */
	color: #000;				   /* 文字色 */
	overflow: visible;
}
.btn.btn-sty02 {
	background-color: transparent;	/* 背景色 */
	color: #000; 				  /* 文字色 */
	overflow: visible;
}

/* ボタン矢印：デザイン案に合わせて編集 */
.box-arrow {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	margin-left: auto;
	border-radius: 50%;
	background-color: #000;
	overflow: hidden;
	transform: translateY(-50%);
	transition: all ease 0.28s;
}
.btn-sty02 .box-arrow {
	right: auto;
	left: 0;
	transform: translateY(-50%) rotate(180deg);
}
.box-arrow.arrow-ss {
	width: 41px;
	height: 41px;
}
.box-arrow.arrow-s {
	width: 52px;
	height: 52px;
}
.box-arrow.arrow-m {
	width: 65px;
	height: 65px;
}
.box-arrow.arrow-ll {
	right: 3.3%;
	width: 88px;
	height: 88px;
}

.btn-arrow {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.arrow-ss .btn-arrow {
	width: 15px;
	height: 15px;
}
.arrow-s .btn-arrow {
	width: 15px;
	height: 15px;
}
.arrow-m .btn-arrow {
	width: 18px;
	height: 18px;
}
.arrow-ll .btn-arrow {
	width: 25px;
	height: 25px;
}

.btn-arrow::before,
.btn-arrow::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transition: right ease 0.28s;
}

.btn-arrow::before {
	right: 1px;
	width: 64%;
	height: 64%;
	border-style: solid solid none none;
	border-color: #fff #fff transparent transparent;
	border-width: 2px 2px 0 0;
	transform: translateY(-50%) rotate(45deg);
}
.arrow-ss .btn-arrow::before {
	border-width: 1.5px 1.5px 0 0;
}
.arrow-ll .btn-arrow::before {
	border-width: 3px 3px 0 0;
}

.btn-arrow::after {
	top: 50%;
	left: 50%;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transform: translate(-50%, -50%);
}
.arrow-ll .btn-arrow::after {
	height: 3px;
}

a.btn:hover .box-arrow,
button.btn:hover .box-arrow {
	transform: translateY(-50%) scale(1.3);
}
a.btn:hover .btn-arrow,
button.btn:hover .btn-arrow {
	animation: anm-arrow 0.28s ease forwards;
}
a.btn.btn-sty02:hover .box-arrow,
button.btn.btn-sty02:hover .box-arrow {
	transform: translateY(-50%) rotate(180deg) scale(1.3);
}
@keyframes anm-arrow {
	from { left: -100%; }
	to { left: 50%; }
}

@media (max-width: 768px) {
	.box-arrow.arrow-ll {
		width: 70px;
		height: 70px;
	}
	.arrow-ll .btn-arrow {
		width: 20px;
		height: 20px;
	}
	.arrow-ll .btn-arrow::before {
		border-width: 2px 2px 0 0;
	}
	.arrow-ll .btn-arrow::after {
		height: 2px;
	}
}
@media (max-width: 480px) {
	.box-arrow.arrow-ll,
	.box-arrow.arrow-l,
	.box-arrow.arrow-m,
	.box-arrow.arrow-s {
		width: 50px;
		height: 50px;
	}
	.arrow-ll .btn-arrow,
	.arrow-l .btn-arrow,
	.arrow-m .btn-arrow,
	.arrow-s .btn-arrow {
		width: 14px;
		height: 14px;
	}
}

.arrow-left .btn-arrow {
	left: auto;
	right: 3px;
	transform: translateY(-50%);
}
.arrow-left .btn-arrow::before,
.arrow-left .btn-arrow::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transition: right ease 0.28s;
}
.arrow-left .btn-arrow::before {
	border-color: currentColor currentColor transparent transparent;
}
.arrow-left .btn-arrow::after {
	background-color: currentColor;
}

/* 外部リンクアイコン：デザイン案に合わせて編集 */
.btn-exit::before,
.btn-exit:after {
	content: "";
	display: block;
	border-color: currentColor;
	position: absolute;
	top: 50%;
}
.btn-exit::before {
	width: 12px;
	height: 10px;
	border: 2px solid;
	right: 30px;
	margin-top: -7px;
}
.btn-exit::after {
	width: 11px;
	height: 9px;
	border-left: 1px solid;
	border-bottom: 1px solid;
	right: 33px;
	margin-top: -4px;
}
@media (max-width: 480px) {
	.btn-exit::before {
		right: 15px;
	}
	.btn-exit::after {
		right: 18px;
	}
}

/* ボタン内容 */
.btn-cont {
	display: flex;
	align-items: center;
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	/* padding: 0 30px; */
	line-height: 1.2;
	transform: translateY(-50%);
}
.btn-sty01.has-arrow.btnW-s .btn-cont {
	padding-right: 65px;
}
.btn-sty01.has-arrow.btnW-m .btn-cont {
	padding-right: 75px;
}
.btn-sty01.has-arrow.btnW-l .btn-cont {
	padding-right: 75px;
}
.btn-sty01.has-arrow.btnW-ll .btn-cont {
	padding-right: calc(90px + 5%);
}
.btn-sty02.has-arrow.btnW-s .btn-cont {
	padding-left: 65px;
}
.btn-sty02.has-arrow.btnW-m .btn-cont {
	padding-left: 75px;
}
.btn-sty02.has-arrow.btnW-l .btn-cont {
	padding-left: 75px;
}
.btn-exit .btn-cont {
	padding: 0 50px 0 30px;
}

@media (max-width: 768px) {
	.has-arrow.btnW-ll .btn-cont {
		padding-right: calc(70px + 5%);
	}
}
@media (max-width: 480px) {
	.has-arrow.btnW-ll .btn-cont {
		padding-right: calc(50px + 5%);
	}
	.btn-sty01.has-arrow.btnW-l .btn-cont,
	.btn-sty01.has-arrow.btnW-m .btn-cont,
	.btn-sty01.has-arrow.btnW-s .btn-cont {
		padding-right: calc(50px + 5%);
	}
	.btn-exit .btn-cont {
		padding-right: 30px;
	}
}

/* ボタンアイコン */
.btn-icon {
	display: block;
	padding-right: 10px;
}
.btn-icon .icon {
	width: 40px;
	height: auto;
}

/* ボタンテキスト */
.btn-txt {
	display: block;
}

/* footer ----------------------------*/
.site-footer .f-content {
	border-bottom: 1px solid #000;
}
@media (max-width: 991px) {
	.site-footer .fcont-left {
		width: 100%;
		order: 2;
	}
	.site-footer .fcont-right {
		width: 100%;
		order: 1;
	}
}

/* お問合せボタン */
.site-footer .btn-contact {
	display: block;
}
.site-footer .btn-contact .btn {
	background-color: #d0dd00;
}
.site-footer .btn-contact .btn-cont {
	position: static;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 5%;
	transform: none;
}

@media (max-width: 640px) {
	.site-footer .btn-contact .ttl-en {
		line-height: 1.2;
	}
	.site-footer .btn-contact .ttl-jp {
		padding-bottom: 15px;
		font-size: 2.0rem;
		line-height: 1.2;
	}
	.site-footer .btn-contact .btn-cont {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}
@media (max-width: 480px) {
	.site-footer .btn-contact .btn-cont {
		padding: 30px 5%;
	}
	.site-footer .btn-contact .ttl-jp {
		font-size: 1.8rem;
	}
	.site-footer .btn-contact .txt-desc {
		line-height: 1.3;
	}

	.site-footer .btn-contact .box-arrow {
		top: 35px;
		right: 5%;
		transform: none;
	}
	.site-footer .btn-contact a.btn:hover .box-arrow {
		transform: scale(1.3);
	}
}


/* ナビゲーション */
.site-footer .f-nav {
/*	display: table;*/
}
.site-footer .f-nav.nav-center {
	text-align: center;
}
.site-footer .f-nav.nav-right {
	text-align: right;
}
.site-footer .f-nav .list {
	letter-spacing: -0.4em;
}
.site-footer .f-nav .list li {
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0.08em;
}
.site-footer .f-nav .list li a {
	white-space: nowrap;
	padding: 5px 10px;
}
.site-footer .f-nav .list li a:hover {
	background-color: rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
	.site-footer .f-nav {
		display: block;
	}
	.site-footer .f-nav.nav-center,
	.site-footer .f-nav.nav-right {
		text-align: left;
	}
	.site-footer .f-nav .list li {
		width: 100%;
		border-top: 1px solid currentColor;
	}
	.site-footer .f-nav .list li:last-child {
		border-bottom: 1px solid currentColor;
	}
	.site-footer .f-nav .list li a {
		display: block;
		padding: 10px 0;
		white-space: normal;
		position: relative;
	}
	.site-footer .f-nav .list li a::before {
		content: "";
		display: block;
		width: 8px;
		height: 8px;
		border-top: 1px solid currentColor;
		border-right: 1px solid currentColor;
		position: absolute;
		right: 5px;
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
	}
}

/* サイトマップ */
.site-footer .f-sitemap .fbox-list {
	padding: 0 5px;
}
.site-footer .f-sitemap .fbox-list:first-child {
	padding-left: 0;
}
.site-footer .f-sitemap .fbox-list:last-child {
	padding-right: 0;
}
.site-footer .f-sitemap a:hover {
	color: #009966;
}
.site-footer .f-sitemap .flist-ttl {
	position: relative;
	display: block;
	padding: 3px 5px;
	font-weight: 600;
}
.site-footer .f-sitemap .f-submenu {
	font-size: 1.4rem;
}
.site-footer .f-sitemap a {
	position: relative;
}
.site-footer .f-sitemap a .btn-arrow {
	display: none;
}

@media (max-width: 991px){
	.site-footer .f-sitemap .fbox-list {
		width: 100%;
		padding: 0;
		border-top: 1px solid #ccc;
	}
	.site-footer .f-sitemap .fbox-list:last-child {
		border-bottom: 1px solid #ccc;
	}
	.site-footer .f-sitemap .flist-ttl {
		padding: 10px 30px 10px 0;
	}
	.site-footer .f-sitemap .f-submenu li a {
		display: block;
		padding: 10px 15px;
	}
	.site-footer .f-sitemap a .btn-arrow {
		display: block;
	}
}

/* 会社情報 */
.site-footer .f-info > * {
	display: block;
}
.site-footer .f-info .fbox-cname > *,
.site-footer .f-info .fbox-cdetail > * {
	display: block;
}

.f-info a:hover {
	opacity: 0.7;
}
.f-bottom a:hover {
	color: #009966;
}

.copyright {
	font-family: arial, sans-serif;
}

@media (max-width: 768px) {
	.copyright {
		padding-top: 10px;
	}
}


/* toTop ----------------------------*/
#toTop {
	z-index: 999;
	display: none;
	position: fixed;
	bottom: 0;
	right: 0;
	width: 65px;
	height: 65px;
	color: #fff;
	text-align: center;
	background: #009267;
	cursor: pointer;
	overflow: hidden;
	animation: toTop-animation 0.3s ease forwards;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

#toTop .btn-arrow::before {
	top: 1px;
	right: 3px;
	transform: rotate(-45deg);
}
#toTop .btn-arrow::after {
	left: 50%;
	width: 2px;
	height: 17px;
	transform: translate(-50%, -50%);
}

#toTop .btn-arrow {
	/* transition: all 0.28s ease; */
}
#toTop:hover .btn-arrow {
	/* top: 35%; */
	animation: anm-arrow-toTop 0.3s ease forwards;
}
@keyframes anm-arrow-toTop {
	from { top: 100%; }
	to { top: 50%; }
}

@media screen and (max-width: 480px) {
	#toTop {
		width: 50px;
		height: 50px;
	}
}

@keyframes toTop-animation {
	from{
		opacity: 0;
		transform: translateY(101%);
		-webkit-transform: translateY(101%);
	}
	to{
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
	}
}
@-webkit-keyframes toTop-animation {
	from {
		opacity: 0;
		-webkit-transform: translateY(101%);
		transform: translateY(101%);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

/* 共通アニメーション
========================= */
/* fade in ----------------------------------------*/
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : 800ms;
}
.fadein.activein {
	opacity : 1;
	transform : translate(0, 0px);
}
.fade-rgh {
	opacity : 0;
	transform : translate(30px, 0);
	transition : 800ms;
}
.fade-rgh.activein {
	opacity : 1;
	transform : translate(0, 0px);
}


/* show order ----------------------------------------*/
#showOrder01 .order-box {
	transform: translateX(-10%);
	opacity: 0;
	transition : 100ms;
}


/* 共通スタイル
========================= */
.top-border {
	border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.bef-blu,
.bef-grn,
.bef-ygr,
.aft-yel {
	position: relative;
}
.bef-blu::before {
	content: url('../img/common/bg-point_blu.svg');
	z-index: -1;
	position: absolute;
}
.bef-grn::before {
	content: url('../img/common/bg-point_grn.svg');
	z-index: -1;
	position: absolute;
}
.bef-ygr::before {
	content: url('../img/common/bg-point_ygr.svg');
	z-index: -1;
	position: absolute;
}
.aft-yel::after {
	content: url('../img/common/bg-point_yel.svg');
	z-index: -1;
	position: absolute;
}


/* label ------------------------ */
.grn-label {
	padding: 0.07em 0.2em;
	background-color: #009966;
}
.yel-label {
	display: inline;
	padding-bottom: 2px;
	line-height: 1.0;
	background-image: linear-gradient(transparent 58%, #e5f300 58%);
}

/* sec-privacy ------------------------------ */
#sec-privacy .wrap {
	max-width: 850px;
	margin: 0 auto;
}

#sec-privacy .box-privacy p {
	margin-bottom: 1em;
}

#sec-privacy .box-privacy h2 {
	margin-bottom: 0.5em;
	font-weight: bold;
}
#sec-privacy .box-privacy h2:not(:first-of-type) {
	margin-top: 2.0em;
}

#sec-privacy .box-privacy ul {
	margin-left: 1.5em;
	list-style-type: disc;
}

#sec-privacy .box-privacy dl dt {
	font-weight: bold;
}

@media (max-width: 480px) {
	#sec-privacy .box-privacy h2 {
		margin-bottom: 0;
	}
}

/* sec-products ------------------------------ */
@media (min-width: 992px) {
	#sec-products .t-amazon.max-991 {
		display: none;
	}
}
@media (max-width: 991px) {
	#sec-products .t-amazon.min-992 {
		display: none;
	}
}
#sec-products .list-item {
	flex-wrap: nowrap;
	justify-content: start;
	width: 100%;
}

#sec-products .list-item .box-img {
	transition: all ease 0.28s;
}
#sec-products .list-item .box-img .no-img {
	/* No Image */
	position: relative;
	text-align: center;
	background-color: #f3f3f3;
}
#sec-products .list-item .box-img .no-img .txt {
	/* No Image */
	opacity: 0.2;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	padding: 0 0.5em;
	line-height: 1.3;
	transform: translateY(-50%);
}
#sec-products .list-item .box-txt {
	flex: 1 1 auto;
	max-width: 625px;
	padding-left: 5%;
	transition: all ease 0.28s;
}
#sec-products .list-item .box-txt .ttl-intro {
	line-height: 1.3;
}
#sec-products .list-item .t-no {
	margin-bottom: 10px;
}
#sec-products .list-item .tbl-price {
	display: table;
	table-layout: auto;
	width: 100%;
	border-bottom: solid 1px #cccccc;
}
#sec-products .list-item .tbl-price .tbl-ttl,
#sec-products .list-item .tbl-price .tbl-data {
	display: table-cell;
	vertical-align: middle;
}

#sec-products .list-item .tbl-price .tbl-ttl.t-length {
	vertical-align: top;
}

#sec-products .list-item .tbl-price .tbl-ttl .f-sz13 {
	white-space: nowrap;
}
#sec-products .list-item .tbl-price .tbl-data {
	text-align: right;
}
#sec-products .list-item .tbl-price .tbl-data .price {
	padding-left: 0.5em;
}
#sec-products .list-item .tbl-price .tbl-ttl > span,
#sec-products .list-item .tbl-price .tbl-data > span {
	display: inline-block;
	vertical-align: middle;
}

#sec-products .list-item .tbl-price .tbl-data > span.t-price {
	position: relative;
    top: -10px;
}

/* sec-productnote ------------------------------ */
#sec-productnote .top-border {
	border-color: rgba(0, 0, 0, 0.15);
}
#sec-productnote ul li {
	line-height: 2.2;
	padding-left: 1em;
	text-indent: -1em;
}

#sec-productnote ul li::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 0.5em;
	background-color: #009267;
	border-radius: 50%;
}

@media (max-width: 768px) {
	#sec-productnote ul li {
		line-height: 2.0;
	}
}