@charset "UTF-8";
@import url(sanitize.css);
/* //////////////////////////////
Base
////////////////////////////// */

html {
	overflow-y: scroll;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	text-rendering: auto;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",
		"Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	position: relative;
	letter-spacing: 0.025em;
	margin: 0;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.47059;
	background-color: #fff;
	color: #333;
	font-style: normal;
}
a {
	text-decoration: none;
	color: #00818a;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}
a:hover,
a:active {
	color: #fe0000;
	cursor: pointer;
	opacity: 0.75;
}
::placeholder {
	color: #999;
	font-size: 1em;
}
img {
	width: auto;
	max-width: 100%;
	height: auto;
	-webkit-align-self: flex-start;
	align-self: flex-start;
	vertical-align: top;
}
a img {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
ul,
ol,
dl,
li,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}
h1,
h2,
h3,
h4 {
	font-weight: bold;
}
li {
	list-style: none;
}
figure {
	margin: 0;
	padding: 0;
}
.sp {
	display: none;
}
:focus {
	outline: none;
}
.tablet {
	display: none;
}
.sp {
	display: none;
}
@media screen and (max-width: 1024px) {
	body {
		letter-spacing: 0.1em;
		font-size: 16px;
	}
	.tablet {
		display: inherit;
	}
	.pc {
		display: none;
	}
}
@media screen and (max-width: 480px) {
	body {
		font-size: 14px;
		letter-spacing: 0.1em;
	}
	.sp {
		display: inherit;
	}
	.tablet {
		display: none;
	}
	.pc {
		display: none;
	}
}

/*============================
#header
============================*/
#header {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0);
	z-index: 50;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-ms-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}
#header.fixed {
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
}
#header .inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding: 0 0 10px;
}
#header .inner .logo {
	width: 25%;
	padding: 10px 0 0;
}
#header .inner .logo img {
}
#header .inner .sns-icon {
	margin: 0 auto 0 20px;
	padding: 10px 0 0;
}
#header .inner .sns-icon ul {
	display: flex;
	align-items: center;
	height: 100%;
}
#header .inner .sns-icon ul li {
	width: 30px;
	margin: 0 5px 0 0;
}
#header .inner .sns-icon ul li a {
}
#header .inner .sns-icon ul li a img {
}
#header .inner .navi-area {
	max-width: 70%;
	text-align: right;
}
#header .inner .navi-area .header-link {
	background: #00818a;
	padding: 0 20px;
	border-radius: 0 0 20px 20px;
	display: inline-block;
	margin: 0 0 10px auto;
}
#header .inner .navi-area .header-link ul {
	padding: 0px 0px 7px;
}
#header .inner .navi-area .header-link ul li {
	font-size: 14px;
	display: inline-block;
	padding: 2px 10px;
	border-right: 1px solid #fff;
}
#header .inner .navi-area .header-link ul li:last-child {
	border: none;
}
#header .inner .navi-area .header-link ul li a {
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	position: relative;
	display: block;
	padding: 0 0 0 20px;
}
#header .inner .navi-area .header-link ul li a::before {
	content: "";
	width: 15px;
	height: 15px;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	left: 0;
}
#header .inner .navi-area .header-link ul li:nth-child(1) a::before {
	background-image: url(../img/header-cart.png);
}
#header .inner .navi-area .header-link ul li:nth-child(2) a::before {
	background-image: url(../img/header-login.png);
}
#header .inner .navi-area .header-link ul li:nth-child(3) a::before {
	background-image: url(../img/header-login.png);
}
#header .inner .navi-area .header-navi {
}
#header .inner .navi-area .header-navi ul {
}
#header .inner .navi-area .header-navi ul li {
	display: inline-block;
	font-size: 16px;
	margin: 0 10px 0 0;
}
#header .inner .navi-area .header-navi ul li a {
	color: #000;
}
#header .inner .navi-area .header-navi ul li.contact {
}
#header .inner .navi-area .header-navi ul li.contact a {
	display: block;
	background: #ff5800;
	color: #fff;
	padding: 2px 10px;
	border-radius: 5px;
}
#header .inner .navi-area .header-navi ul li.language {
}
#header .inner .navi-area .header-navi ul li.language a {
}

@media screen and (max-width: 1024px) {
	#header {
	}
	#header .inner {
		padding: 0px 10px 10px;
	}
	#header .inner .logo {
		width: 35%;
	}
	#header .inner .logo img {
	}
	#header .inner .sns-icon {
	}
	#header .inner .sns-icon ul {
	}
	#header .inner .sns-icon ul li {
	}
	#header .inner .sns-icon ul li a {
	}
	#header .inner .sns-icon ul li a img {
	}
	#header .inner .navi-area {
	}
	#header .inner .navi-area .header-link {
	}
	#header .inner .navi-area .header-link ul {
	}
	#header .inner .navi-area .header-link ul li {
	}
	#header .inner .navi-area .header-link ul li a {
	}
	#header .inner .navi-area .header-navi {
	}
	#header .inner .navi-area .header-navi ul {
	}
	#header .inner .navi-area .header-navi ul li {
	}
	#header .inner .navi-area .header-navi ul li a {
		font-size: 14px;
	}
	#header .inner .navi-area .header-navi ul li.contact {
	}
	#header .inner .navi-area .header-navi ul li.contact a {
	}
	#header .inner .navi-area .header-navi ul li.language {
	}
	#header .inner .navi-area .header-navi ul li.language a {
	}
}
@media screen and (max-width: 480px) {
	#header {
		height: 55px;
	}
	#header .inner {
		padding: 10px;
	}
	#header .inner .logo {
		width: 200px;
		padding: 0;
	}
	#header .inner .logo img {
	}
	#header .inner .sns-icon {
		padding: 0;
	}
	#header .inner .sns-icon ul {
	}
	#header .inner .sns-icon ul li {
		width: 25px;
	}
	#header .inner .sns-icon ul li a {
	}
	#header .inner .sns-icon ul li a img {
	}
	#header .inner .navi-area {
		display: none;
	}
	#header .inner .navi-area .header-link {
	}
	#header .inner .navi-area .header-link ul {
	}
	#header .inner .navi-area .header-link ul li {
	}
	#header .inner .navi-area .header-link ul li a {
	}
	#header .inner .navi-area .header-navi {
	}
	#header .inner .navi-area .header-navi ul {
	}
	#header .inner .navi-area .header-navi ul li {
	}
	#header .inner .navi-area .header-navi ul li a {
	}
	#header .inner .navi-area .header-navi ul li.contact {
	}
	#header .inner .navi-area .header-navi ul li.contact a {
	}
	#header .inner .navi-area .header-navi ul li.language {
	}
	#header .inner .navi-area .header-navi ul li.language a {
	}
}

/*============================
main
============================*/
#main {
	padding: 80px 0 0;
	min-height: calc(100vh - 172px);
}
.inner {
	max-width: 1400px;
	margin: 0 auto;
}
a.link-button {
	text-align: center;
	display: block;
}
a.link-button span {
	display: inline-block;
	background: #f3eded;
	color: #000;
	padding: 14px 30px;
	box-shadow: 0 3px 0px #666;
	position: relative;
	top: 0px;
	border-radius: 3px;
	font-weight: bold;
	letter-spacing: 0.15em;
	transition: all 0.25s;
	font-size: 0.8rem;
}
/* a.link-button span::after {
	content: "";
	background-image: url(../img/common-link-arrow2.png);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	width: 8px;
	height: 14px;
	position: absolute;
	right: 10px;
	top: calc(50% - 7px);
} */
a.link-button:hover {
	opacity: 1;
}
a.link-button:hover span {
	color: #000;
	opacity: 1;
	box-shadow: 0 0 0px #666;
	position: relative;
	top: 3px;
}
a.link-button:hover span::after {
	background-image: url(../img/common-link-arrow2.png);
}
@media screen and (max-width: 1024px) {
	#main {
	}
	.inner {
	}
	a.link-button {
	}
	a.link-button span {
		padding: 10px 20px;
		font-size: 1rem;
	}
}
@media screen and (max-width: 480px) {
	#main {
		padding: 55px 0 0;
	}
	.inner {
	}
	a.link-button {
	}
	a.link-button span {
	}
}

/*============================
animation
============================*/
.js-fadein {
	opacity: 0;
	visibility: hidden;
	transform: translateY(40px);
	transition: all 1s;
}
.js-fadein.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}

/*============================
#footer
============================*/
.common-area {
	background: #00818a;
}
.common-area .inner {
}
.common-area .inner .link {
	display: flex;
	justify-content: space-between;
	padding: 50px 0px;
	flex-wrap: wrap;
}
.common-area .inner .link figure {
	background: #fff;
	width: calc(50% - 20px);
	overflow: hidden;
	height: auto;
	position: relative;
}
.common-area .inner .link figure img {
	width: 50%;
	float: left;
}
.common-area .inner .link figure figcaption {
	text-align: center;
	color: #00818a;
	font-weight: bold;
	padding: 20px;
	font-size: 1.5rem;
	width: 50%;
	float: right;
}
.common-area .inner .link figure a.link-button {
	position: absolute;
	bottom: 40px;
	right: 0;
	width: 50%;
}
.common-area .inner .link figure a.link-button span {
	width: auto;
}
.link-banner {
	padding: 40px 0 10px;
}
.link-banner ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.link-banner ul li {
	width: calc(100% / 5 - 10px);
	margin: 0 auto 20px;
	padding: 0 10px;
}
.link-banner ul li:nth-child(3n) {
	margin: 0 0 20px 0;
}
.link-banner ul li a {
	display: block;
	font-size: 0.9rem;
	text-align: justify;
	line-height: 1.5;
}
.link-banner ul li a img {
	display: block;
	width: 100%;
	margin: 0 0 5px;
}
#footer {
	background: rgba(0, 129, 138, 0.7);
}
#footer .inner {
}
#footer .inner ul {
	padding: 20px 0;
	text-align: center;
}
#footer .inner ul li {
	display: inline-block;
	margin: 0 20px;
}
#footer .inner ul li a {
	color: #fff;
	font-size: 1rem;
}
#footer .copyright {
	background: rgb(0, 129, 138);
	padding: 20px 0;
}
#footer .copyright .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#footer .copyright .inner ul {
}
#footer .copyright .inner ul li {
	margin: 0 10px 0 0;
}
#footer .copyright .inner ul li a {
	font-size: 0.8rem;
}
#footer .copyright small {
	color: #fff;
	font-size: 0.8rem;
}
@media screen and (max-width: 1024px) {
	.common-area {
	}
	.common-area .inner {
	}
	.common-area .inner .link {
	}
	.common-area .inner .link figure {
	}
	.common-area .inner .link figure img {
	}
	.common-area .inner .link figure figcaption {
	}
	.common-area .inner .link figure a.link-button {
	}
	.common-area .inner .link figure a.link-button span {
	}
	.link-banner {
		overflow: hidden;
	}
	.link-banner ul {
	}
	.link-banner ul li {
	}
	.link-banner ul li a {
	}
	.link-banner ul li a img {
	}
	#footer {
	}
	#footer .inner {
	}
	#footer .inner ul {
	}
	#footer .inner ul li {
	}
	#footer .inner ul li a {
	}
	#footer .copyright {
	}
	#footer .copyright .inner {
		padding: 0 10px;
	}
	#footer .copyright .inner ul {
		text-align: left;
	}
	#footer .copyright .inner ul li {
	}
	#footer .copyright .inner ul li a {
	}
	#footer .copyright small {
	}
}
@media screen and (max-width: 480px) {
	.common-area {
	}
	.common-area .inner {
	}
	.common-area .inner .link {
	}
	.common-area .inner .link figure {
	}
	.common-area .inner .link figure img {
	}
	.common-area .inner .link figure figcaption {
	}
	.common-area .inner .link figure a.link-button {
	}
	.common-area .inner .link figure a.link-button span {
	}
	.link-banner {
		padding: 0;
	}
	.link-banner ul {
	}
	.link-banner ul li {
	}
	.link-banner ul li a {
	}
	.link-banner ul li a img {
	}
	#footer {
	}
	#footer .inner {
	}
	#footer .inner ul {
		display: none;
	}
	#footer .inner ul li {
	}
	#footer .inner ul li a {
	}
	#footer .copyright {
		text-align: center;
	}
	#footer .copyright .inner {
		display: block;
	}
	#footer .copyright .inner ul {
		padding: 0;
		margin: 0 0 10px;
	}
	#footer .copyright .inner ul li {
	}
	#footer .copyright .inner ul li a {
	}
	#footer .copyright small {
		font-size: 0.6rem;
	}
}

/*============================
#toggle
============================*/
#toggle {
	display: none;
}
@media screen and (max-width: 480px) {
	#toggle {
		position: fixed;
		top: 0px;
		right: 0px;
		display: flex;
		-webkit-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		z-index: 10000;
		width: 44px;
		height: 44px;
	}
	#toggle .button {
		display: block;
		width: 35px;
		height: 25px;
		position: relative;
		top: 15px;
	}
	#toggle .button span {
		width: 100%;
		height: 1px;
		display: block;
		background: #00818a;
		position: absolute;
		right: 0;
		-webkit-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	#toggle .button span:nth-child(1) {
		top: 0px;
	}
	#toggle .button span:nth-child(2) {
		top: 10px;
		width: 90%;
	}
	#toggle .button span:nth-child(3) {
		top: 20px;
		width: 70%;
	}
	#toggle.open {
	}
	#toggle.open .button {
	}
	#toggle.open .button span {
		background: #fff;
	}
	#toggle.open .button span:nth-child(1) {
		top: 10px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#toggle.open .button span:nth-child(2) {
		top: 15px;
		width: 0;
		left: 50%;
	}
	#toggle.open .button span:nth-child(3) {
		top: 10px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		width: 100%;
	}
}
/*============================
#menu
============================*/
#menu {
	display: none;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 480px) {
	#menu {
		position: fixed;
		top: 0;
		left: 0;
		background: #00818a;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		padding: 30px 0 30px;
		width: 100%;
		visibility: hidden;
		opacity: 0;
		-webkit-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		transition: all 0.3s ease;
		height: 100%;
		z-index: 9999;
	}
	#menu.open {
		visibility: visible;
		opacity: 1;
	}
	#menu ul {
		width: calc(100% - 50px);
	}
	#menu ul li {
		border-bottom: 1px dashed #fff;
		font-size: 1rem;
		padding: 10px 0;
	}
	#menu ul li a {
		display: flex;
		align-items: center;
		color: #fff;
	}
	#menu ul li a::after {
	}
	#menu ul li a i {
		display: inline-block;
		width: 10%;
	}
	#menu ul li a i img {
	}
	#menu ul li a span {
		padding: 0 0 0 20px;
		width: 90%;
		position: relative;
	}
	#menu ul li a span::after {
		content: ">";
		position: absolute;
		right: 20px;
	}
	#menu .header-link {
		padding: 0 20px;
		display: contents;
		margin: 0 auto;
	}
	#menu .header-link ul {
	}
	#menu .header-link ul li {
		width: 100%;
		font-size: 14px;
		display: inline-block;
		padding: 10px 0;
	}
	#menu .header-link ul li a {
		font-weight: bold;
		font-size: 1rem;
		position: relative;
		padding: 0 0 0 20px;
	}
	#menu .header-link ul li a::before {
		content: "";
		width: 15px;
		height: 15px;
		display: block;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		position: absolute;
		left: 0;
	}
	#menu .header-link ul li:nth-child(1) a::before {
		background-image: url(../img/header-cart.png);
	}
	#menu .header-link ul li:nth-child(2) a::before {
		background-image: url(../img/header-login.png);
	}
	#menu .header-link ul li:nth-child(3) a::before {
		background-image: url(../img/header-login.png);
	}
}

/*============================
scroll
============================*/
#scroll {
	position: fixed;
	right: 10px;
	bottom: 115px;
	opacity: 0;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-ms-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}
#scroll.view {
	opacity: 1;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-ms-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}
#scroll a {
	background: #00818a;
	color: #fff;
	display: flex;
	width: 45px;
	height: 45px;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	border-radius: 30px;
	font-weight: bold;
	opacity: 1;
}
#scroll a span {
}
@media screen and (max-width: 1024px) {
	#scroll {
	}
	#scroll a {
	}
	#scroll a span {
	}
}
@media screen and (max-width: 480px) {
	#scroll {
		bottom: 40px;
	}
	#scroll a {
	}
	#scroll a span {
	}
}

.remomee {
	display: block;
	text-align: center;
}
.remomee iframe {
	max-width: 100%;
	margin: 0 0 20px;
}

/*============================
Google reCAPTCHA
============================*/
.grecaptcha-badge {
	visibility: hidden;
}
