@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html,
body {
	height: 100%;
}

html {
	font-size: 62.5%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: normal;
	text-align: left;
	color: #000000;
	word-break: break-word;
}

input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: "Noto Sans JP", sans-serif;
	color: #000000;
	font-weight: normal;
}

textarea {
	resize: vertical;
}

select::-ms-expand {
	display: none;
}

a {
	text-decoration: none;
	color: inherit;
	outline: none;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
}
/* base
--------------------------------*/
p,
dt,
dd,
li,
th,
td,
input,
button,
textarea,
select {
	font-size: 1.6rem;
	line-height: 1.5;
}

.wrap {
	max-width: 1200px;
	width: calc(100% - 30px);
	margin: 0 auto;
}

.aligncenter {
	display: block;
	margin: 0 auto;
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
}

.tac {
	text-align: center !important;
}

.tar {
	text-align: right !important;
}

.tal {
	text-align: left !important;
}

@media screen and (min-width: 768px) {
	body {
		min-width: 1200px;
	}
}
@media screen and (max-width: 767px) {
	body {
		-webkit-text-size-adjust: 100%;
	}
	p,
	dt,
	dd,
	li,
	th,
	td,
	input,
	button,
	textarea,
	select {
		font-size: 1.4rem;
		line-height: 1.4285714286;
	}
	img {
		width: 100%;
	}
	.sp-tac {
		text-align: center !important;
	}
	.sp-tar {
		text-align: right !important;
	}
	.sp-tal {
		text-align: left !important;
	}
}
/* ---------------------------------------------
  header
-----------------------------------------------*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: #FFFFFF;
}

.header .header-top .wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 10px 15px 3px;
	width: auto;
	max-width: 1230px;
}

@media screen and (max-width: 767px) {
	.header .header-top .wrap {
		padding: 10px 10px 10px;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
}
.header .header-top .logo {
	line-height: 1;
	padding-bottom: 8px;
}

@media screen and (max-width: 767px) {
	.header .header-top .logo {
		width: 107px;
		padding-bottom: 3px;
	}
}
@media screen and (min-width: 768px) {
	.header .header-top .logo a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.header .header-top .logo a:hover {
		opacity: 0.7;
	}
}
.header .header-top .header-navi {
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	padding-top: 5px;
}

@media screen and (max-width: 767px) {
	.header .header-top .header-navi {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding-top: 0;
	}
}
@media screen and (max-width: 767px) {
	.header .header-top .name {
		font-size: 1.3rem;
		margin-bottom: 3px;
	}
}
.header .header-top .menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header .header-top .ico-form {
	display: none;
}

@media screen and (max-width: 767px) {
	.header .header-top .ico-form {
		display: block;
		width: 24px;
	}
}
.header .header-top .form {
	position: relative;
	width: 360px;
}

@media screen and (max-width: 767px) {
	.header .header-top .form {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		background: #000000;
		padding: 15px 10px;
		width: 100%;
		z-index: 101;
		height: auto;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	.header .header-top .form.is-active {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
.header .header-top .form form {
	width: 100%;
	height: 50px;
	position: relative;
}

@media screen and (max-width: 767px) {
	.header .header-top .form form {
		height: 40px;
		width: calc(100% - 40px);
	}
}
.header .header-top .form input[type=text],
.header .header-top .form input[type=number] {
	font-size: 1.5rem;
	border: 1px solid #000000;
	padding: 0 50px 0 20px;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 767px) {
	.header .header-top .form input[type=text],
	.header .header-top .form input[type=number] {
		background: #FFFFFF;
	}
}
.header .header-top .form input[type=text]::-webkit-input-placeholder, .header .header-top .form input[type=number]::-webkit-input-placeholder {
	color: #999999;
}

.header .header-top .form input[type=text]::-moz-placeholder, .header .header-top .form input[type=number]::-moz-placeholder {
	color: #999999;
}

.header .header-top .form input[type=text]:-ms-input-placeholder, .header .header-top .form input[type=number]:-ms-input-placeholder {
	color: #999999;
}

.header .header-top .form input[type=text]::-ms-input-placeholder, .header .header-top .form input[type=number]::-ms-input-placeholder {
	color: #999999;
}

.header .header-top .form input[type=text]::placeholder,
.header .header-top .form input[type=number]::placeholder {
	color: #999999;
}

.header .header-top .form button[type=submit] {
	width: 24px;
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
	.header .header-top .form button[type=submit] {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.header .header-top .form button[type=submit]:hover {
		opacity: 0.7;
	}
}
.header .header-top .form .close {
	width: 28px;
	height: 15px;
	position: absolute;
	top: 50%;
	right: 10px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: none;
}

@media screen and (max-width: 767px) {
	.header .header-top .form .close {
		display: block;
	}
}
.header .header-top .form .close span {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background: #FFFFFF;
}

.header .header-top .form .close span:nth-child(1) {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(145deg);
	transform: translateY(-50%) rotate(145deg);
}

.header .header-top .form .close span:nth-child(2) {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-145deg);
	transform: translateY(-50%) rotate(-145deg);
}

@media screen and (max-width: 767px) {
	.header .header-top .ico-navi {
		display: none;
	}
}
.header .header-top .ico-navi ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header .header-top .ico-navi ul li {
	margin-left: 34px;
}

@media screen and (min-width: 768px) {
	.header .header-top .ico-navi ul li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.header .header-top .ico-navi ul li a:hover {
		opacity: 0.7;
	}
}
.header .header-top .cart {
	margin-left: 34px;
}

@media screen and (max-width: 767px) {
	.header .header-top .cart {
		margin-left: 10px;
	}
}
.header .header-top .cart a {
	background: #E0E0E0;
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 14px;
}

@media screen and (min-width: 768px) {
	.header .header-top .cart a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.header .header-top .cart a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.header .header-top .cart a {
		padding: 6px;
		border-radius: 5px;
	}
}
.header .header-top .cart .ico-wrap {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-right: 10px;
}

@media screen and (max-width: 767px) {
	.header .header-top .cart .ico-wrap {
		margin-right: 0;
	}
}
.header .header-top .cart .ico-wrap .ico {
	width: 26px;
	margin-right: 1px;
}

@media screen and (max-width: 767px) {
	.header .header-top .cart .ico-wrap .ico {
		width: 18px;
	}
}
.header .header-top .cart .ico-wrap .num {
	font-size: 1.4rem;
	color: #FFFFFF;
	text-align: center;
	min-width: 22px;
	height: 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #008EDC;
	border-radius: 50%;
	display: inline-block;
	margin-top: -8px;
}

@media screen and (max-width: 767px) {
	.header .header-top .cart .ico-wrap .num {
		font-size: 0.9rem;
		min-width: 14px;
		height: 14px;
		margin-top: 0;
	}
}
.header .header-top .cart .price {
	color: #555555;
}

@media screen and (max-width: 767px) {
	.header .header-top .cart .price {
		display: none;
	}
}
.header .header-top .menu-trigger {
	margin-left: 34px;
	padding-top: 3px;
	position: relative;
	z-index: 100;
}

@media screen and (max-width: 767px) {
	.header .header-top .menu-trigger {
		margin-left: 12px;
	}
}
@media screen and (min-width: 768px) {
	.header .header-top .menu-trigger {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.header .header-top .menu-trigger:hover {
		opacity: 0.7;
	}
}
.header .header-top .menu-trigger .line {
	width: 41px;
	height: 25px;
	position: relative;
}

@media screen and (max-width: 767px) {
	.header .header-top .menu-trigger .line {
		width: 28px;
		height: 15px;
	}
}
.header .header-top .menu-trigger .line span {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background: #000000;
}

.header .header-top .menu-trigger .line span:nth-child(1) {
	top: 0;
}

.header .header-top .menu-trigger .line span:nth-child(2) {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.header .header-top .menu-trigger .line span:nth-child(3) {
	bottom: 0;
}

.header .header-top .menu-trigger .text {
	font-size: 1.4rem;
	text-align: center;
	font-family: "Lato", sans-serif;
}

@media screen and (max-width: 767px) {
	.header .header-top .menu-trigger .text {
		font-size: 0.9rem;
		margin: 0 -5px;
	}
}
.menu-open .header .header-top .menu-trigger span:nth-child(1) {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(135deg);
	transform: translateY(-50%) rotate(135deg);
}

@media screen and (max-width: 767px) {
	.menu-open .header .header-top .menu-trigger span:nth-child(1) {
		-webkit-transform: translateY(-50%) rotate(135deg);
		transform: translateY(-50%) rotate(135deg);
	}
}
.menu-open .header .header-top .menu-trigger span:nth-child(2) {
	opacity: 0;
}

.menu-open .header .header-top .menu-trigger span:nth-child(3) {
	top: 50%;
	bottom: auto;
	-webkit-transform: translateY(-50%) rotate(-135deg);
	transform: translateY(-50%) rotate(-135deg);
}

@media screen and (max-width: 767px) {
	.menu-open .header .header-top .menu-trigger span:nth-child(3) {
		-webkit-transform: translateY(-50%) rotate(-135deg);
		transform: translateY(-50%) rotate(-135deg);
	}
}
.menu-open .header .header-top .menu-trigger .text {
	opacity: 0;
}

.header .gnavi {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	min-height: 100vh;
	z-index: 1;
	background: #008EDC;
	padding: 70px 0;
	overflow: auto;
}

@media screen and (max-width: 767px) {
	.header .gnavi {
		padding: 60px 0 120px;
	}
}
.menu-open .header .gnavi {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.header .gnavi .flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width: 767px) {
	.header .gnavi .flex {
		display: block;
	}
}
.header .gnavi .list > li {
	margin-top: 32px;
}

.header .gnavi .list > li:first-child {
	margin-top: 0;
}

.header .gnavi .list > li:nth-of-type(2) {
	margin-top: 34px;
}

@media screen and (max-width: 767px) {
	.header .gnavi .list > li:nth-of-type(2) {
		margin-top: 50px;
	}
}
.header .gnavi .list > li > a {
	font-family: "Lato", sans-serif;
	font-size: 3rem;
	font-weight: 400;
	letter-spacing: 0.14em;
	border-bottom: 5px solid #000000;
	padding-bottom: 2px;
}

@media screen and (min-width: 768px) {
	.header .gnavi .list > li > a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.header .gnavi .list > li > a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.header .gnavi .list > li > a {
		font-size: 2.4rem;
		border-width: 3px;
	}
}
.header .gnavi .list > li .jp {
	display: block;
	font-size: 1.3rem;
	margin-top: 4px;
	letter-spacing: 0.2em;
}

.header .gnavi .list .child li {
	margin-top: 20px;
}

@media screen and (max-width: 767px) {
	.header .gnavi .list .child li {
		font-size: 1.6rem;
	}
}
.header .gnavi .list .child li a {
	letter-spacing: 0.2em;
	position: relative;
	z-index: 1;
	padding-left: 25px;
}

@media screen and (min-width: 768px) {
	.header .gnavi .list .child li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.header .gnavi .list .child li a:hover {
		opacity: 0.7;
	}
}
.header .gnavi .list .child li a::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	border: 8px solid transparent;
	border-left: 8px solid #000000;
}

@media screen and (min-width: 768px) {
	.header .gnavi .text-box {
		min-width: 380px;
	}
}
.header .gnavi .text {
	font-size: 2.4rem;
	letter-spacing: 0.2em;
	line-height: 2.7;
	font-weight: normal;
}

@media screen and (min-width: 768px) {
	.header .gnavi .text a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.header .gnavi .text a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.header .gnavi .text {
		font-size: 2.2rem;
		margin-top: 49px;
		line-height: 2.4;
	}
}
.header .gnavi .sub {
	margin-top: 40px;
}

@media screen and (min-width: 768px) {
	.header .gnavi .sub {
		margin-top: 107px;
	}
}
.header .gnavi .sub li {
	margin-top: 20px;
}

@media screen and (max-width: 767px) {
	.header .gnavi .sub li {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 767px) {
	.header .gnavi .sub li:first-child {
		margin-top: 50px;
	}
}
@media screen and (min-width: 768px) {
	.header .gnavi .sub li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.header .gnavi .sub li a:hover {
		opacity: 0.7;
	}
}
.header .gnavi .button-logout {
	margin-top: 50px;
}

@media screen and (max-width: 767px) {
	.header .gnavi .button-logout {
		margin-top: 42px;
	}
}
.header .gnavi .button-logout a {
	font-weight: 700;
	border-radius: 10px;
	border: 3px solid #000000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 250px;
	height: 70px;
}

@media screen and (min-width: 768px) {
	.header .gnavi .button-logout a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.header .gnavi .button-logout a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.header .gnavi .button-logout a {
		max-width: 200px;
		height: 50px;
		margin: 0 auto;
	}
}
/* ---------------------------------------------
  main
-----------------------------------------------*/
body.menu-open {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* title
--------------------------------*/
.headline-sec {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.headline-sec {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
.headline-sec .title {
	font-size: 3.6rem;
	line-height: 1.5;
	letter-spacing: 0.14em;
	font-family: "Lato", sans-serif;
	margin-right: 44px;
}

@media screen and (max-width: 767px) {
	.headline-sec .title {
		font-size: 2.8rem;
		margin-right: 0;
	}
}
.headline-sec .title .deco {
	border-bottom: 5px solid #008EDC;
	display: inline-block;
}

@media screen and (max-width: 767px) {
	.headline-sec.-small .deco {
		font-size: 2rem;
	}
}
.headline-sec .button {
	font-size: 2.2rem;
	font-family: "Lato", sans-serif;
}

@media screen and (max-width: 767px) {
	.headline-sec .button {
		font-size: 1.8rem;
	}
}
.headline-sec .button a {
	display: inline-block;
	position: relative;
	padding-left: 20px;
}

@media screen and (min-width: 768px) {
	.headline-sec .button a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.headline-sec .button a:hover {
		opacity: 0.7;
	}
}
.headline-sec .button a::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	border: 6px solid transparent;
	border-left: 10px solid #000000;
}

@media screen and (max-width: 767px) {
	.headline-sec .button a::before {
		top: 8px;
	}
}
/* button
--------------------------------*/
.button-border {
	max-width: 350px;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.button-border {
		max-width: 310px;
	}
}
.button-border a,
.button-border .a {
	font-size: 1.5rem;
	color: #FFFFFF;
	width: 100%;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 1px solid #FFFFFF;
	position: relative;
}

@media screen and (min-width: 768px) {
	.button-border a,
	.button-border .a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.button-border a:hover,
	.button-border .a:hover {
		opacity: 0.7;
	}
}
.button-border a::before,
.button-border .a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.button-border.-border a,
.button-border.-border .a {
	color: #000000;
	border: 1px solid #000000;
}

.button-border.-border a::before,
.button-border.-border .a::before {
	border-top-color: #000000;
	border-right-color: #000000;
}

.button-border.-black a,
.button-border.-black .a {
	color: #FFFFFF;
	background: #000000;
	border: 1px solid #000000;
}

.button-border.-red a,
.button-border.-red .a {
	color: #FFFFFF;
	background: #CC0000;
	border: 1px solid #CC0000;
}

.button-border.-gray a,
.button-border.-gray .a {
	color: #FFFFFF;
	background: #777777;
	border: 1px solid #777777;
}

.button-border.-blue a,
.button-border.-blue .a {
	color: #FFFFFF;
	background: #008EDC;
	border: 1px solid #008EDC;
}

.button-border.-blue a::before,
.button-border.-blue .a::before {
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
}

.button-border.-fav a::before {
	display: none;
}

.button-border.-fav a .ico {
	padding-left: 25px;
	position: relative;
	display: inline-block;
}

.button-border.-fav a .ico::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 22px;
	height: 21px;
	background: url("../img/ico_fav.svg") no-repeat center center/contain;
}

.button-border.-cart a::before,
.button-border.-cart .a::before {
	display: none;
}

.button-border.-cart a .ico,
.button-border.-cart .a .ico {
	padding-left: 25px;
	position: relative;
	display: inline-block;
}

.button-border.-cart a .ico::before,
.button-border.-cart .a .ico::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 22px;
	height: 21px;
	background: url("../img/ico_cart_white.svg") no-repeat center center/contain;
}

.button-border.-cancel .a {
	color: #000000;
	height: 40px;
	background: #f5f5f5;
	border-color: #a0a0a0;
}

.button-border.-cancel .a::before {
	display: none;
}

.button-border.-order a::before,
.button-border.-order .a::before {
	display: none;
}

.button-border.-not-arw a::before,
.button-border.-not-arw .a::before {
	display: none;
}

/* main-visual
--------------------------------*/
.main-visual {
	width: 100%;
	height: 550px;
	position: relative;
	padding: 114px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.main-visual {
		padding: 60px 0;
		height: 475px;
		display: block;
	}
}
@media screen and (max-width: 767px) {
	.main-visual .wrap {
		max-width: 100%;
		width: 100%;
	}
}
.main-visual .title {
	font-size: 2.8rem;
	line-height: 2;
	font-weight: 700;
	text-align: center;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 767px) {
	.main-visual .title {
		font-size: 2rem;
		line-height: 1.5;
		text-align: left;
		padding-left: 15px;
	}
}
.main-visual .title::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: url(../img//bg_mv_01.png) no-repeat center center/contain;
	width: 1306px;
	height: 378px;
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.main-visual .title::after {
		width: 1206px;
		height: 269px;
	}
}
.main-visual .bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.main-visual .bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/* top-news
--------------------------------*/
.top-news {
	padding: 20px 0;
}

.top-news .news {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	border: 1px solid #CC0000;
	background: #FFFFFF;
}

.top-news .news .title {
	color: #FFFFFF;
	background: #CC0000;
}

.top-news .news .text {
	overflow: hidden;
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.top-news .news .text .deco {
	display: inline-block;
	white-space: nowrap;
	padding-left: 100%;
	-webkit-animation-name: marquee;
	animation-name: marquee;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-duration: 30s;
	animation-duration: 30s;
}

@-webkit-keyframes marquee {
	from {
		-webkit-transform: translate(0%);
		transform: translate(0%);
	}
	99%, to {
		-webkit-transform: translate(-100%);
		transform: translate(-100%);
	}
}
@keyframes marquee {
	from {
		-webkit-transform: translate(0%);
		transform: translate(0%);
	}
	99%, to {
		-webkit-transform: translate(-100%);
		transform: translate(-100%);
	}
}
.top-news .news .title,
.top-news .news .text {
	font-size: 1.5rem;
	padding: 0.5em 1em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.top-news .news .title,
	.top-news .news .text {
		font-size: 1.4rem;
	}
}
/* osusume
--------------------------------*/
.osusume {
	padding: 70px 0;
	background: #4C6893;
}

@media screen and (max-width: 767px) {
	.osusume {
		padding: 30px 0;
	}
}
.osusume .clm1 {
	margin-top: 40px;
}

.osusume .clm1:first-child {
	margin-top: 0;
}

.osusume .clm1 li {
	margin-top: 30px;
}

.osusume .clm1 li:first-child {
	margin-top: 0;
}

@media screen and (min-width: 768px) {
	.osusume .clm1 li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.osusume .clm1 li a:hover {
		opacity: 0.7;
	}
}
.osusume .clm3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-top: 40px;
}

@media screen and (max-width: 767px) {
	.osusume .clm3 {
		display: block;
		margin-top: 0;
	}
}
.osusume .clm3:first-child {
	margin-top: 0;
}

.osusume .clm3 li {
	margin-right: 45px;
}

@media screen and (min-width: 768px) {
	.osusume .clm3 li {
		width: calc((100% - 90px) / 3);
	}
}
@media screen and (max-width: 767px) {
	.osusume .clm3 li {
		margin-right: 0;
		margin-top: 20px;
	}
}
.osusume .clm3 li:nth-child(3n) {
	margin-right: 0;
}

@media screen and (min-width: 768px) {
	.osusume .clm3 li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.osusume .clm3 li a:hover {
		opacity: 0.7;
	}
}
/* category
--------------------------------*/
.category {
	padding: 70px 0 60px;
}

@media screen and (max-width: 767px) {
	.category {
		padding: 70px 0 0;
	}
}
.category .clm3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 45px;
}

@media screen and (max-width: 767px) {
	.category .clm3 {
		margin-top: 20px;
	}
}
@media screen and (min-width: 768px) {
	.category .clm3 li {
		width: calc((100% - 210px) / 3);
		margin-right: 105px;
		position: relative;
	}
	.category .clm3 li:nth-child(3n) {
		margin-right: 0;
	}
	.category .clm3 li:nth-child(n+4) {
		margin-top: 45px;
	}
}
@media screen and (max-width: 767px) {
	.category .clm3 li {
		width: calc((100% - 26px) / 2);
		margin-right: 26px;
		position: relative;
	}
	.category .clm3 li:nth-child(2n) {
		margin-right: 0;
	}
	.category .clm3 li:nth-child(n+3) {
		margin-top: 16px;
	}
}
.category .clm3 li a {
	position: relative;
	z-index: 1;
	display: block;
}

@media screen and (min-width: 768px) {
	.category .clm3 li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.category .clm3 li a:hover {
		opacity: 0.7;
	}
}
.category .clm3 li .text-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}

.category .clm3 li .ja {
	font-size: 2.2rem;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #FFFFFF;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.category .clm3 li .ja {
		font-size: 1.8rem;
	}
}
.category .clm3 li .en {
	font-size: 1.2rem;
	font-weight: 700;
	color: #FFFFFF;
	text-align: center;
	letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
	.category .clm3 li .en {
		font-size: 1rem;
	}
}
/* information
--------------------------------*/
.information {
	padding: 60px 0 300px;
	background: url("../img/bg_information_01.jpg") no-repeat center bottom/100% auto;
}

@media screen and (max-width: 767px) {
	.information {
		padding: 60px 0 220px;
		background-size: auto 600px;
	}
}
.info-list-clm3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 45px;
}

@media screen and (max-width: 767px) {
	.info-list-clm3 {
		margin-top: 20px;
	}
}
@media screen and (min-width: 768px) {
	.info-list-clm3 li {
		width: calc((100% - 150px) / 3);
		margin-right: 75px;
		position: relative;
	}
	.info-list-clm3 li:nth-child(3n) {
		margin-right: 0;
	}
	.info-list-clm3 li:nth-child(n+4) {
		margin-top: 60px;
	}
}
@media screen and (max-width: 767px) {
	.info-list-clm3 li {
		width: calc((100% - 15px) / 2);
		margin-right: 15px;
		position: relative;
	}
	.info-list-clm3 li:nth-child(2n) {
		margin-right: 0;
	}
	.info-list-clm3 li:nth-child(n+3) {
		margin-top: 16px;
	}
}
.info-list-clm3 li a {
	position: relative;
	z-index: 1;
}

@media screen and (min-width: 768px) {
	.info-list-clm3 li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.info-list-clm3 li a:hover {
		opacity: 0.7;
	}
}
.info-list-clm3 li .text-wrap {
	margin-top: 10px;
}

.info-list-clm3 li .info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.info-list-clm3 li .date {
	margin-right: 10px;
}

@media screen and (max-width: 767px) {
	.info-list-clm3 li .date {
		font-size: 1.4rem;
	}
}
.info-list-clm3 li .tag-list {
	line-height: 1;
}

.info-list-clm3 li .tag-list .tag {
	font-size: 1rem;
	line-height: 1.4;
	color: #FFFFFF;
	border-radius: 50px;
	display: inline-block;
	text-align: center;
	background: #989898;
	padding: 0.2em 0.5em;
	min-width: 80px;
}

.info-list-clm3 li .tag-list .tag.prerelease {
	background: #6baf56;
}

.info-list-clm3 li .title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-top: 10px;
}

@media screen and (max-width: 767px) {
	.info-list-clm3 li .title {
		font-size: 1.4rem;
		line-height: 1.4285714286;
	}
}
.info-list-clm3 li .text {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin-top: 15px;
}

/* system
--------------------------------*/
.system {
	padding: 130px 0 0;
}

@media screen and (max-width: 767px) {
	.system {
		padding: 70px 0 0;
	}
}
.system .wrap {
	position: relative;
}

.system .headline {
	max-width: 730px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.system .headline .title {
	font-size: 3.6rem;
	letter-spacing: 0.1em;
	line-height: 1.2222222222;
	border-bottom: 5px solid #000000;
	padding-bottom: 8px;
	font-family: "Lato", sans-serif;
}

@media screen and (max-width: 767px) {
	.system .headline .title {
		font-size: 2.7rem;
		border-bottom-width: 4px;
		padding-bottom: 4px;
	}
}
.system .headline .ja {
	font-size: 1.5rem;
	margin-top: 8px;
}

@media screen and (max-width: 767px) {
	.system .headline .ja {
		font-size: 1.1rem;
	}
}
.system .copy {
	font-size: 3.2rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.4375;
	margin-top: 57px;
}

@media screen and (max-width: 767px) {
	.system .copy {
		font-size: 1.8rem;
		line-height: 2.5555555556;
		margin-top: 30px;
		letter-spacing: 0.05em;
	}
}
.system .text-wrap {
	margin-left: -40px;
	margin-top: 57px;
	position: relative;
	max-width: 873px;
}

@media screen and (max-width: 767px) {
	.system .text-wrap {
		margin: 5px -10px;
		max-width: calc(100% + 20px);
	}
}
.system .text {
	color: #FFFFFF;
	line-height: 2.0625;
	letter-spacing: 0.1em;
	position: absolute;
	bottom: 20px;
	right: 70px;
	max-width: 666px;
}

@media screen and (max-width: 767px) {
	.system .text {
		color: #000000;
		position: relative;
		bottom: auto;
		right: auto;
		margin: -82px 10px 0;
	}
	.system .text::before {
		position: absolute;
		top: 0;
		left: 0;
		content: attr(data-text);
		height: 6em;
		color: #FFFFFF;
		overflow: hidden;
	}
}
.system .img-position {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

@media screen and (max-width: 767px) {
	.system .img-position {
		position: relative;
		margin-top: -40px;
		max-width: 232px;
		margin-left: auto;
		margin-right: -10px;
		z-index: -1;
	}
}
/* bnr
--------------------------------*/
.bnr {
	padding: 100px 0;
}

@media screen and (max-width: 767px) {
	.bnr {
		padding: 70px 0 0;
	}
}
.bnr .clm2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
	.bnr .clm2 li {
		width: calc((100% - 40px) / 2);
		margin-right: 40px;
	}
	.bnr .clm2 li:nth-child(2n) {
		margin-right: 0;
	}
	.bnr .clm2 li:nth-child(n+3) {
		margin-top: 40px;
	}
}
@media screen and (max-width: 767px) {
	.bnr .clm2 li {
		margin-top: 20px;
	}
	.bnr .clm2 li:first-child {
		margin-top: 0;
	}
}
@media screen and (min-width: 768px) {
	.bnr .clm2 li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.bnr .clm2 li a:hover {
		opacity: 0.7;
	}
}
/* all-category
--------------------------------*/
.all-category {
	padding: 120px 0 120px;
}

@media screen and (max-width: 767px) {
	.all-category {
		padding: 70px 0 40px;
	}
}
.all-category .clm7 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 60px;
}

@media screen and (max-width: 767px) {
	.all-category .clm7 {
		margin-top: 20px;
	}
}
@media screen and (min-width: 768px) {
	.all-category .clm7 li {
		width: 114px;
		margin-right: 40px;
	}
	.all-category .clm7 li:nth-child(8n) {
		margin-right: 0;
	}
	.all-category .clm7 li:nth-child(n+9) {
		margin-top: 40px;
	}
}
@media screen and (max-width: 767px) {
	.all-category .clm7 li {
		width: calc((100% - 32px) / 3);
		margin-right: 16px;
		position: relative;
	}
	.all-category .clm7 li:nth-child(3n) {
		margin-right: 0;
	}
	.all-category .clm7 li:nth-child(n+4) {
		margin-top: 21px;
	}
}
.all-category .clm7 li a {
	display: block;
}

@media screen and (min-width: 768px) {
	.all-category .clm7 li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.all-category .clm7 li a:hover {
		opacity: 0.7;
	}
}
.all-category .clm7 li .img {
	width: 60px;
	margin: 0 auto;
}

.all-category .clm7 li .title {
	font-size: 1.4rem;
	text-align: center;
	margin-top: 5px;
}

@media screen and (max-width: 767px) {
	.all-category .clm7 li .title {
		font-size: 1.3rem;
	}
}
/* contact
--------------------------------*/
.contact {
	padding: 160px 0;
	background: url("../img/bg_contact_01.jpg") no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
	.contact {
		padding: 40px 0;
	}
}
.contact .wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

@media screen and (max-width: 767px) {
	.contact .wrap {
		display: block;
	}
}
.contact .box {
	max-width: 350px;
}

@media screen and (max-width: 767px) {
	.contact .box {
		max-width: inherit;
	}
	.contact .box + .box {
		margin-top: 95px;
	}
}
.contact .box .title {
	font-size: 2rem;
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #FFFFFF;
	text-align: center;
}

.contact .box .text {
	color: #FFFFFF;
	letter-spacing: 0.1em;
	margin-top: 15px;
}

@media screen and (max-width: 767px) {
	.contact .box .text {
		margin-top: 20px;
	}
}
.contact .box .button {
	margin-top: 35px;
}

@media screen and (max-width: 767px) {
	.contact .box .button {
		margin: 20px auto 0;
	}
}
/* header-page
--------------------------------*/
.header-page {
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.header-page .navi {
	background: #000000;
}

.header-page .navi .wrap {
	width: 100%;
}

.header-page .navi .list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width: 767px) {
	.header-page .navi .list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 767px) {
	.header-page .navi .list li {
		width: 33.333%;
		text-align: center;
	}
	.header-page .navi .list li.l {
		width: 100%;
	}
	.header-page .navi .list li.m {
		width: 42%;
	}
	.header-page .navi .list li.s {
		width: 28%;
	}
}
.header-page .navi .list a {
	color: #FFFFFF;
	padding: 8px;
	letter-spacing: 0.2em;
	display: block;
}

@media screen and (min-width: 768px) {
	.header-page .navi .list a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.header-page .navi .list a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.header-page .navi .list a {
		width: 100%;
		padding: 5px 0;
	}
}
.header-page .navi .list span {
	padding: 5px 0;
	display: inline-block;
	position: relative;
}

.header-page .navi .list span::before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: #FFFFFF;
	opacity: 0;
}

@media screen and (max-width: 767px) {
	.header-page .navi .list span::before {
		height: 2px;
	}
}
.header-page .navi .list .is-current span::before {
	opacity: 1;
}

.header-page .tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -12px;
}

.header-page .tag li {
	margin-right: 10px;
	margin-top: 12px;
}

.header-page .tag li a {
	font-size: 1.4rem;
	border: 1px solid #000000;
	display: block;
	padding: 8px 14px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

@media screen and (max-width: 767px) {
	.header-page .tag li a {
		font-size: 1.2rem;
		padding: 8px 12px;
	}
}
.header-page .tag li a:hover {
	color: #FFFFFF;
	background: #008EDC;
}

.header-page .tag li.is-current a {
	color: #FFFFFF;
	background: #008EDC;
}

.header-page .tag-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 6px;
	margin-right: -20px;
}

.header-page .tag-text li {
	margin-top: 4px;
	margin-right: 20px;
}

.header-page .tag-text li a {
	font-size: 1.4rem;
	color: #008EDC;
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
	.header-page .tag-text li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.header-page .tag-text li a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.header-page .tag-text li a {
		font-size: 1.2rem;
	}
}
.header-page .breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 25px;
}

.header-page .breadcrumb li {
	margin-top: 5px;
	font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
	.header-page .breadcrumb li {
		font-size: 1.2rem;
	}
}
.header-page .breadcrumb li::after {
	content: "/";
	display: inline-block;
	margin: 0 15px;
}

.header-page .breadcrumb li:last-child::after {
	display: none;
}

.header-page .breadcrumb li a {
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
	.header-page .breadcrumb li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.header-page .breadcrumb li a:hover {
		opacity: 0.7;
	}
}
.header-page .breadcrumb li a span {
	color: #666666;
}

.header-page .breadcrumb li span {
	color: #008EDC;
}

/* item-list
--------------------------------*/
.item-list {
	padding: 70px 0 100px;
}

@media screen and (max-width: 767px) {
	.item-list {
		padding: 60px 0 10px;
	}
}
.item-list .headline-sec {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width: 767px) {
	.item-list .headline-sec {
		display: block;
	}
}
@media screen and (max-width: 767px) {
	.item-list .headline-sec .select-wrap {
		padding: 5px 0;
		background: #EAEAEA;
		margin: 10px -15px 0;
	}
}
.item-list .headline-sec .select-wrap .select {
	width: 142px;
	height: 37px;
	border: 1px solid #555555;
	position: relative;
	background: #FFFFFF;
}

@media screen and (max-width: 767px) {
	.item-list .headline-sec .select-wrap .select {
		height: 28px;
		margin: 0 auto;
	}
}
.item-list .headline-sec .select-wrap .select::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 10px;
	border: 6px solid transparent;
	border-top: 11px solid #555555;
	margin-top: 4px;
}

@media screen and (max-width: 767px) {
	.item-list .headline-sec .select-wrap .select::before {
		border-width: 5px;
		border-top-width: 10px;
		margin-top: 3px;
	}
}
.item-list .headline-sec .select-wrap .select select {
	width: 100%;
	height: 100%;
	padding: 0 15px;
}

.item-list .clm4 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 35px;
}

@media screen and (max-width: 767px) {
	.item-list .clm4 {
		margin-top: 10px;
	}
}
@media screen and (min-width: 768px) {
	.item-list .clm4 li {
		width: calc((100% - 120px) / 4);
		margin-right: 40px;
	}
	.item-list .clm4 li:nth-child(4n) {
		margin-right: 0;
	}
	.item-list .clm4 li:nth-child(n+5) {
		margin-top: 60px;
	}
}
@media screen and (max-width: 767px) {
	.item-list .clm4 li {
		width: calc((100% - 26px) / 2);
		margin-right: 26px;
		position: relative;
	}
	.item-list .clm4 li:nth-child(2n) {
		margin-right: 0;
	}
	.item-list .clm4 li:nth-child(n+3) {
		margin-top: 30px;
	}
}
@media screen and (min-width: 768px) {
	.item-list .clm4 li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.item-list .clm4 li a:hover {
		opacity: 0.7;
	}
}
.item-list .clm4 li .text {
	font-size: 1.5rem;
	line-height: 1.6;
	margin-top: 10px;
}

@media screen and (max-width: 767px) {
	.item-list .clm4 li .text {
		font-size: 1.3rem;
		margin-top: 5px;
	}
}
.item-list .clm4 li .price dt,
.item-list .clm4 li .price dd {
	font-size: 1.5rem;
	color: #008EDC;
	display: inline;
}

.item-list .clm4 li .price dt {
	margin-left: -0.4em;
}

.item-list .clm4 li .price dd {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.item-list .clm4 li .price dd.soldout {
	color: #CC0000;
}

/* pagination
--------------------------------*/
.pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 55px;
}

@media screen and (max-width: 767px) {
	.pagination {
		margin-top: 40px;
	}
}
.pagination li {
	margin: 0 7px;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.pagination li {
		margin: 0 2px;
	}
}
.pagination li a {
	font-size: 1.8rem;
	min-width: 2em;
	display: inline-block;
}

@media screen and (min-width: 768px) {
	.pagination li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.pagination li a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.pagination li a {
		font-size: 1.6rem;
	}
}
.pagination li.is-current a {
	color: #008EDC;
	text-decoration: underline;
}

.pagination li img {
	vertical-align: middle;
	margin-top: -3px;
	width: 7px;
}

@media screen and (max-width: 767px) {
	.pagination li img {
		width: 6px;
	}
}
/* item-detail
--------------------------------*/
.item-detail {
	padding: 70px 0 100px;
	position: relative;
}

.item-detail::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background: #707070;
	max-width: 1200px;
}

@media screen and (max-width: 767px) {
	.item-detail {
		padding: 30px 0 65px;
	}
}
.item-detail .wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width: 767px) {
	.item-detail .wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}
.item-detail .clm-left {
	max-width: 500px;
	width: 41.6%;
}

@media screen and (max-width: 767px) {
	.item-detail .clm-left {
		width: auto;
		max-width: inherit;
	}
}
.item-detail .clm-right {
	max-width: 645px;
	width: 53.7%;
}

@media screen and (max-width: 767px) {
	.item-detail .clm-right {
		width: auto;
		max-width: inherit;
	}
}
.item-detail .text {
	line-height: 1.7142857143;
	margin-top: 46px;
}

@media screen and (max-width: 767px) {
	.item-detail .text {
		margin-top: 30px;
	}
}
.item-detail .link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border: 1px solid #000000;
	padding: 15px;
	margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
	.item-detail .link {
		width: 85%;
	}
}
.item-detail .link dt,
.item-detail .link dd {
	line-height: 1.7142857143;
}

.item-detail .link dd {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.item-detail .link dd a:hover {
	text-decoration: underline;
}

.item-detail .title {
	font-size: 2.4rem;
	line-height: 2;
}

@media screen and (max-width: 767px) {
	.item-detail .title {
		font-size: 1.8rem;
		margin-top: 10px;
	}
}
.item-detail .table {
	width: 100%;
	border: 1px solid #707070;
	border-collapse: collapse;
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	.item-detail .table {
		border: none;
		margin-top: 20px;
	}
}
.item-detail .table th,
.item-detail .table td {
	padding: 13px 20px;
	border-top: 1px solid #707070;
}

@media screen and (max-width: 767px) {
	.item-detail .table th,
	.item-detail .table td {
		display: block;
		width: 100%;
		border: none;
		padding: 10px 5px;
	}
}
.item-detail .table th {
	width: 130px;
	background: #EAEAEA;
}

@media screen and (max-width: 767px) {
	.item-detail .table th {
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.item-detail .table .free {
		border-top: 1px solid #707070;
	}
}
.item-detail .table .price th {
	color: #FFFFFF;
	background: #000000;
}

.item-detail .num {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 40px;
}

@media screen and (max-width: 767px) {
	.item-detail .num {
		width: 85%;
		margin: 40px auto 0;
	}
}
.item-detail .num dt {
	margin-right: 8px;
}

.item-detail .num dd .ui-spinner {
	background: #F8F8F8;
}

.item-detail .num dd .ui-spinner-button {
	border-left: 0;
}

.item-detail .num dd input {
	font-size: 1.5rem;
	width: 120px;
	height: 50px;
	margin-top: 0;
	margin-bottom: 0;
	text-align: right;
}

.item-detail .button-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	.item-detail .button-wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		margin-top: 20px;
	}
}
.item-detail .button-wrap > * {
	width: 49%;
}

@media screen and (max-width: 767px) {
	.item-detail .button-wrap > * {
		width: auto;
		margin: 20px auto 0;
		width: 85%;
		max-width: 310px;
	}
}
/* login
--------------------------------*/
.login {
	width: 100%;
	height: 100%;
	background: url(../img/bg_login.jpg) no-repeat center center/cover;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	padding-bottom: 6em;
}

.login .login-box {
	width: 500px;
	padding: 35px 20px 50px;
	background: rgba(255, 255, 255, 0.88);
	border-radius: 20px;
	max-width: calc(100% - 50px);
}

.login .login-box .logo {
	width: 158px;
	text-align: center;
	margin: 0 auto;
}

@media screen and (min-width: 768px) {
	.login .login-box .logo a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.login .login-box .logo a:hover {
		opacity: 0.7;
	}
}
.login .login-box .title {
	font-size: 2.6rem;
	letter-spacing: 0.1em;
	text-align: center;
	margin-top: 35px;
}

@media screen and (max-width: 767px) {
	.login .login-box .title {
		font-size: 2.2rem;
	}
}
.login .login-box .form {
	margin: 20px auto 0;
	max-width: 350px;
	width: 90%;
}

.login .login-box .form .user input,
.login .login-box .form .password input {
	width: 100%;
	height: 50px;
	background: #FFFFFF;
	border: 1px solid #707070;
	padding: 0 15px;
}

.login .login-box .form .password {
	margin-top: 20px;
}

.login .login-box .form .memory {
	font-size: 1.4rem;
	line-height: 1.5;
	margin-top: 17px;
	position: relative;
	display: inline-block;
}

@media screen and (max-width: 767px) {
	.login .login-box .form .memory {
		font-size: 1.3rem;
	}
}
.login .login-box .form .memory input {
	position: absolute;
	visibility: hidden;
	width: 1px;
}

.login .login-box .form .memory span {
	padding-left: 25px;
	display: inline-block;
	position: relative;
}

.login .login-box .form .memory span::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	width: 16px;
	height: 16px;
	border: 2px solid #008EDC;
	background: #FFFFFF;
}

.login .login-box .form .memory span::after {
	content: "";
	position: absolute;
	top: 7px;
	left: 3px;
	width: 9px;
	height: 6px;
	border-left: 2px solid #008EDC;
	border-bottom: 2px solid #008EDC;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	opacity: 0;
}

.login .login-box .form .memory input:checked + span::after {
	opacity: 1;
}

.login .login-box .form .link {
	font-size: 1.4rem;
	margin-top: 10px;
}

@media screen and (max-width: 767px) {
	.login .login-box .form .link {
		font-size: 1.3rem;
	}
}
.login .login-box .form .link a {
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
	.login .login-box .form .link a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.login .login-box .form .link a:hover {
		opacity: 0.7;
	}
}
.login .login-box .form .top-link {
	font-size: 1.4rem;
	margin-top: 20px;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.login .login-box .form .top-link {
		font-size: 1.3rem;
	}
}
@media screen and (min-width: 768px) {
	.login .login-box .form .top-link a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.login .login-box .form .top-link a:hover {
		opacity: 0.7;
	}
}
.login .login-box .form .button {
	margin-top: 25px;
}

.login .login-box .form .button button {
	display: block;
	color: #FFFFFF;
	font-weight: 700;
	background: #008EDC;
	width: 100%;
	height: 50px;
}

@media screen and (min-width: 768px) {
	.login .login-box .form .button button {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.login .login-box .form .button button:hover {
		opacity: 0.7;
	}
}
.login .copyright {
	font-size: 1.4rem;
	text-align: center;
	color: #FFFFFF;
	position: absolute;
	bottom: 1em;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	max-width: calc(100% - 50px);
}

@media screen and (max-width: 767px) {
	.login .copyright {
		font-size: 1.2rem;
	}
}
/* info-list
--------------------------------*/
.info-list {
	padding: 60px 0 120px;
	position: relative;
}

.info-list::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background: #707070;
	max-width: 1200px;
}

.info-list .clm3 {
	margin-top: 45px;
}

@media screen and (max-width: 767px) {
	.info-list .clm3 {
		margin-top: 20px;
	}
}
/* info-detail
--------------------------------*/
.info-detail {
	padding: 70px 0 40px;
	position: relative;
}

@media screen and (max-width: 767px) {
	.info-detail {
		padding: 60px 0 40px;
	}
}
.info-detail::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: calc(100% - 20px);
	height: 1px;
	background: #707070;
	max-width: 1200px;
}

.info-detail .article {
	max-width: 900px;
	width: 100%;
	margin: 60px auto 0;
}

.info-detail .article .title {
	font-size: 2.5rem;
	line-height: 1.5;
	margin-top: 10px;
}

@media screen and (max-width: 767px) {
	.info-detail .article .title {
		font-size: 1.8rem;
	}
}
.info-detail .article .info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 10px;
}

.info-detail .article .date {
	margin-right: 10px;
}

@media screen and (max-width: 767px) {
	.info-detail .article .date {
		font-size: 1.4rem;
	}
}
.info-detail .article .tag-list {
	line-height: 1;
}

.info-detail .article .tag-list .tag {
	font-size: 1rem;
	line-height: 1.4;
	color: #FFFFFF;
	border-radius: 50px;
	display: inline-block;
	background: #989898;
	padding: 0.2em 0.5em;
}

.info-detail .article .tag-list .tag.prerelease {
	background: #6baf56;
}

.info-detail .article .eyecatch {
	margin-top: 20px;
}

@media screen and (max-width: 767px) {
	.info-detail .article .eyecatch {
		margin-top: 15px;
	}
}
.info-detail .article .text {
	margin-top: 30px;
}

.info-detail .article .text p {
	font-size: 1.5rem;
	line-height: 1.7333333333;
}

@media screen and (max-width: 767px) {
	.info-detail .article .text p {
		font-size: 1.4rem;
		line-height: 1.8571428571;
	}
}
.info-detail .button {
	text-align: center;
	margin: 100px auto 0;
}

/* cart
--------------------------------*/
.headline-line {
	max-width: 730px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media screen and (max-width: 767px) {
	.headline-line {
		margin-bottom: 60px;
	}
}
.headline-line .title {
	font-size: 3.6rem;
	letter-spacing: 0.14em;
	line-height: 1.2222222222;
	border-bottom: 5px solid #000000;
	padding-bottom: 8px;
	font-family: "Lato", sans-serif;
}

@media screen and (max-width: 767px) {
	.headline-line .title {
		font-size: 2.7rem;
		border-bottom-width: 4px;
		padding-bottom: 4px;
	}
}
.headline-line .ja {
	font-size: 1.5rem;
	margin-top: 8px;
	letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
	.headline-line .ja {
		font-size: 1.1rem;
	}
}
.cart-box {
	margin-top: 35px;
}

@media screen and (max-width: 767px) {
	.cart-box {
		margin-top: 55px;
	}
}
.cart-box.clm2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 25px;
}

@media screen and (max-width: 767px) {
	.cart-box.clm2 {
		display: block;
		margin-top: 25px;
	}
}
.cart-box.clm2 .clm-left {
	width: 76.7%;
	max-width: 920px;
}

@media screen and (max-width: 767px) {
	.cart-box.clm2 .clm-left {
		width: auto;
		max-width: inherit;
	}
}
.cart-box.clm2 .clm-right {
	width: 21.25%;
	max-width: 255px;
	padding-top: 40px;
}

@media screen and (max-width: 767px) {
	.cart-box.clm2 .clm-right {
		padding-top: 0;
		width: auto;
		max-width: inherit;
	}
}
.cart-box.no-header .table {
	margin-top: 0;
}

.cart-box.no-header .clm-right {
	padding-top: 0;
}

.cart-box .cart-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width: 767px) {
	.cart-box .cart-header {
		display: block;
	}
}
.cart-box .cart-header .text {
	font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
	.cart-box .cart-header .text {
		font-size: 1.4rem;
	}
}
.cart-box .cart-header .text.red {
	color: #CC0000;
}

.cart-box .cart-header .sort {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

@media screen and (max-width: 767px) {
	.cart-box .cart-header .sort {
		margin-top: 20px;
	}
}
.cart-box .cart-header .sort li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 44px;
	height: 37px;
	border-radius: 5px;
	margin-left: 10px;
}

@media screen and (min-width: 768px) {
	.cart-box .cart-header .sort li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.cart-box .cart-header .sort li a:hover {
		opacity: 0.7;
	}
}
.cart-box .cart-header .sort li.is-current a {
	background: #E2E2E2;
}

.cart-box .cart-header .sort li.-ico01 img {
	width: 31px;
}

.cart-box .cart-header .sort li.-ico02 img {
	width: 23px;
}

.cart-box .table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 5px;
}

@media screen and (max-width: 767px) {
	.cart-box .table {
		margin: 5px -15px 0;
		width: calc(100% + 30px);
	}
}
@media screen and (min-width: 768px) {
	.cart-box .table th,
	.cart-box .table td {
		height: 45px;
	}
}
.cart-box .table th.img,
.cart-box .table td.img {
	width: 44px;
}

.cart-box .table th.cord,
.cart-box .table td.cord {
	width: 110px;
	text-align: center;
}

.cart-box .table th.name,
.cart-box .table td.name {
	padding-left: 25px;
}

.cart-box .table th.name a,
.cart-box .table td.name a {
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
	.cart-box .table th.name a:hover,
	.cart-box .table td.name a:hover {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.cart-box .table th.name a:hover:hover,
	.cart-box .table td.name a:hover:hover {
		opacity: 0.7;
	}
}
.cart-box .table th.price,
.cart-box .table td.price {
	text-align: right;
	width: 170px;
	padding-right: 0;
}

.cart-box .table th.price .red,
.cart-box .table td.price .red {
	color: #FF0000;
}

.cart-box .table th.num,
.cart-box .table td.num {
	width: 75px;
	text-align: right;
}

.cart-box .table th.check,
.cart-box .table td.check {
	width: 50px;
	text-align: center;
}

.cart-box .table th.trash,
.cart-box .table td.trash {
	width: 60px;
	text-align: center;
}

.cart-box .table th.stock,
.cart-box .table td.stock {
	width: 75px;
	padding-right: 0;
	text-align: right;
}

.cart-box .table th.change,
.cart-box .table td.change {
	width: 60px;
	text-align: center;
}

.cart-box .table th.subtotal,
.cart-box .table td.subtotal {
	width: 110px;
	text-align: right;
	padding: 0 10px;
}

.cart-box .table th.subtotal .red,
.cart-box .table td.subtotal .red {
	color: #FF0000;
}

@media screen and (max-width: 767px) {
	.cart-box .table thead {
		background: #E2E2E2;
	}
}
@media screen and (max-width: 767px) {
	.cart-box .table thead tr {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 10px;
	}
}
.cart-box .table thead th {
	font-size: 1.5rem;
	text-align: center;
	background: #E2E2E2;
	padding: 10px;
}

@media screen and (min-width: 768px) {
	.cart-box .table thead th {
		height: 50px;
	}
}
@media screen and (max-width: 767px) {
	.cart-box .table thead th {
		font-size: 1.4rem;
		display: inline;
		width: auto !important;
		padding: 0 !important;
	}
	.cart-box .table thead th::after {
		content: "／";
		margin: 0 3px;
	}
}
@media screen and (max-width: 767px) {
	.cart-box .table thead th.change {
		display: none;
	}
}
.cart-box .table thead th.img::after, .cart-box .table thead th.trash::after, .cart-box .table thead th.check::after, .cart-box .table thead th.change::after, .cart-box .table thead th:last-child::after {
	display: none;
}

@media screen and (max-width: 767px) {
	.cart-box .table tbody tr {
		display: block;
		padding: 9px 40px 9px 70px;
		position: relative;
	}
}
.cart-box .table tbody tr td {
	font-size: 1.5rem;
	padding: 8px 0;
	vertical-align: middle;
}

@media screen and (max-width: 767px) {
	.cart-box .table tbody tr td {
		font-size: 1.4rem;
		display: block;
		padding: 3px 0 !important;
		width: auto !important;
		text-align: left !important;
	}
}
@media screen and (max-width: 767px) {
	.cart-box .table tbody tr td.img {
		position: absolute;
		top: 10px;
		left: 15px;
		width: 44px !important;
	}
}
@media screen and (max-width: 767px) {
	.cart-box .table tbody tr td.num {
		display: inline-block;
		margin-right: 20px;
	}
}
@media screen and (max-width: 767px) {
	.cart-box .table tbody tr td.num span {
		margin-right: 5px;
	}
}
.cart-box .table tbody tr td input[type=text],
.cart-box .table tbody tr td input[type=number] {
	text-align: right;
	width: 54px;
	height: 30px;
	border-radius: 6px;
	border: 1px solid #555555;
	background: #FFFFFF;
	padding: 0 5px;
}

.cart-box .table tbody tr td input[type=number]::-webkit-outer-spin-button,
.cart-box .table tbody tr td input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.cart-box .table tbody tr td input[type=number] {
	-moz-appearance: textfield;
}

@media screen and (max-width: 767px) {
	.cart-box .table tbody tr td.check {
		display: inline-block;
		margin-top: 3px;
	}
}
.cart-box .table tbody tr td .checkbox {
	line-height: 1;
	display: inline-block;
	position: relative;
}

.cart-box .table tbody tr td .checkbox input {
	position: absolute;
	visibility: hidden;
	width: 1px;
}

.cart-box .table tbody tr td .checkbox span {
	display: inline-block;
	width: 16px;
	height: 16px;
}

.cart-box .table tbody tr td .checkbox span::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
	border: 1px solid #555555;
	background: #FFFFFF;
}

.cart-box .table tbody tr td .checkbox span::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 4px;
	width: 9px;
	height: 6px;
	border-left: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	opacity: 0;
}

.cart-box .table tbody tr td .checkbox input:checked + span::before {
	border-color: #008EDC;
	background: #008EDC;
}

.cart-box .table tbody tr td .checkbox input:checked + span::after {
	opacity: 1;
}

@media screen and (max-width: 767px) {
	.cart-box .table tbody tr td.trash {
		position: absolute;
		bottom: 10px;
		right: 15px;
	}
}
.cart-box .table tbody tr td.trash button {
	line-height: 1;
}

@media screen and (min-width: 768px) {
	.cart-box .table tbody tr td.trash button {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.cart-box .table tbody tr td.trash button:hover {
		opacity: 0.7;
	}
}
.cart-box .table tbody tr td.trash img {
	vertical-align: middle;
}

.cart-box .table tbody tr td.change button {
	font-size: 1.5rem;
	color: #008EDC;
}

@media screen and (min-width: 768px) {
	.cart-box .table tbody tr td.change button {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.cart-box .table tbody tr td.change button:hover {
		opacity: 0.7;
	}
}
.cart-box .table tbody tr:nth-child(even) {
	background: rgba(156, 196, 239, 0.19);
}

.cart-box .table.no-img tr {
	padding: 10px 15px;
}

@media screen and (max-width: 767px) {
	.cart-box .table.no-img tr {
		padding: 10px;
	}
}
.cart-box .table .total {
	background: #E2E2E2;
}

.cart-box .table .total td {
	padding: 35px 10px 10px;
}

@media screen and (max-width: 767px) {
	.cart-box .table .total td {
		padding: 10px 0px !important;
	}
}
.cart-box .table .total dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.cart-box .table .total dl dt,
.cart-box .table .total dl dd {
	font-size: 1.8rem;
	line-height: 1;
}

@media screen and (max-width: 767px) {
	.cart-box .table .total dl dt,
	.cart-box .table .total dl dd {
		font-size: 2.2rem;
	}
}
.cart-box .table .total dl dt .red,
.cart-box .table .total dl dd .red {
	color: #FF0000;
}

.cart-box .table .total dl dt {
	margin-right: 25px;
}

.cart-box .table .total dl dd {
	text-align: right;
}

.cart-box .table .total dl dd .tax {
	font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
	.cart-box .table .total dl dd .tax {
		font-size: 1.5rem;
	}
}
.cart-box .info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 50px;
}

@media screen and (max-width: 767px) {
	.cart-box .info {
		display: block;
	}
}
.cart-box .info dt,
.cart-box .info dd {
	border-top: 1px solid #707070;
	padding: 12px;
}

@media screen and (max-width: 767px) {
	.cart-box .info dt,
	.cart-box .info dd {
		border-top: 0;
		padding: 10px;
	}
}
.cart-box .info dt:last-of-type,
.cart-box .info dd:last-of-type {
	border-bottom: 1px solid #707070;
}

@media screen and (max-width: 767px) {
	.cart-box .info dt:last-of-type,
	.cart-box .info dd:last-of-type {
		border-bottom: 0;
	}
}
.cart-box .info dt {
	width: 120px;
	background: #E2E2E2;
}

@media screen and (max-width: 767px) {
	.cart-box .info dt {
		width: auto;
	}
}
.cart-box .info dd {
	width: calc(100% - 120px);
	padding-left: 32px;
}

@media screen and (max-width: 767px) {
	.cart-box .info dd {
		width: auto;
		padding-left: 10px;
	}
}
.cart-box .freetext {
	font-size: 1.5rem;
	padding: 10px;
	width: 100%;
	border: 1px solid #000000;
	margin-top: 145px;
	height: 211px;
}

@media screen and (max-width: 767px) {
	.cart-box .freetext {
		margin-top: 65px;
		height: 200px;
	}
}
.cart-box .gray-box {
	padding: 20px;
	border-radius: 10px;
	background: #E2E2E2;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 767px) {
	.cart-box .gray-box {
		padding: 30px 25px 40px;
		margin-top: 50px;
	}
}
.cart-box .gray-box + .gray-box {
	margin-top: 30px;
}

.cart-box .gray-box + .gray-box.-mtx2 {
	margin-top: 90px;
}

.cart-box .gray-box .text {
	text-align: center;
}

.cart-box .gray-box .button {
	margin-top: 10px;
}

.cart-box .gray-box .button.-cart {
	margin: 25px auto 0;
	display: block;
}

.cart-box .gray-box .button.-cancel {
	max-width: 150px;
	margin: 15px auto 0;
	display: block;
}

.cart-box .gray-box .price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 10px;
}

.cart-box .gray-box .price .red {
	color: #FF0000;
}

.cart-box .gray-box .price dt,
.cart-box .gray-box .price dd {
	font-size: 1.8rem;
	line-height: 1;
}

@media screen and (max-width: 767px) {
	.cart-box .gray-box .price dt,
	.cart-box .gray-box .price dd {
		font-size: 2.2rem;
	}
}
.cart-box .gray-box .price dd {
	text-align: right;
}

.cart-box .gray-box .price dd .tax {
	font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
	.cart-box .gray-box .price dd .tax {
		font-size: 1.5rem;
	}
}
.cart-box .gray-box .point {
	font-size: 1.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 25px;
}

.cart-box .gray-box .point input:not(.datepicker) {
	text-align: right;
	width: 54px;
	height: 30px;
	border-radius: 6px;
	border: 1px solid #555555;
	background: #FFFFFF;
	padding: 0 5px;
	margin-right: 5px;
}

.cart-box .gray-box .datepicker {
	font-size: 1.5rem;
	color: #FFFFFF;
	text-align: center;
	width: 100% !important;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 1px solid #FFFFFF;
	position: relative;
	background: #777777;
	border: 1px solid #777777;
}

@media screen and (min-width: 768px) {
	.cart-box .gray-box .datepicker {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.cart-box .gray-box .datepicker:hover {
		opacity: 0.7;
	}
}
.cart-box .gray-box .datepicker::-webkit-input-placeholder {
	text-align: center;
	color: #FFFFFF;
}

.cart-box .gray-box .datepicker::-moz-placeholder {
	text-align: center;
	color: #FFFFFF;
}

.cart-box .gray-box .datepicker:-ms-input-placeholder {
	text-align: center;
	color: #FFFFFF;
}

.cart-box .gray-box .datepicker::-ms-input-placeholder {
	text-align: center;
	color: #FFFFFF;
}

.cart-box .gray-box .datepicker::placeholder {
	text-align: center;
	color: #FFFFFF;
}

.cart-box .gray-box .datepicker::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.cart-box .gray-box .subtotal,
.cart-box .gray-box .reduction {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-bottom: 15px;
	border-bottom: 1px solid #000000;
}

.cart-box .gray-box .subtotal dt,
.cart-box .gray-box .subtotal dd,
.cart-box .gray-box .reduction dt,
.cart-box .gray-box .reduction dd {
	font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
	.cart-box .gray-box .subtotal dt,
	.cart-box .gray-box .subtotal dd,
	.cart-box .gray-box .reduction dt,
	.cart-box .gray-box .reduction dd {
		font-size: 1.8rem;
	}
}
.cart-box .gray-box .subtotal dt:nth-of-type(n + 2),
.cart-box .gray-box .subtotal dd:nth-of-type(n + 2),
.cart-box .gray-box .reduction dt:nth-of-type(n + 2),
.cart-box .gray-box .reduction dd:nth-of-type(n + 2) {
	margin-top: 5px;
}

.cart-box .gray-box .subtotal dt,
.cart-box .gray-box .reduction dt {
	width: 130px;
}

@media screen and (max-width: 767px) {
	.cart-box .gray-box .subtotal dt,
	.cart-box .gray-box .reduction dt {
		width: 150px;
	}
}
.cart-box .gray-box .subtotal dd,
.cart-box .gray-box .reduction dd {
	text-align: right;
	width: calc(100% - 130px);
}

@media screen and (max-width: 767px) {
	.cart-box .gray-box .subtotal dd,
	.cart-box .gray-box .reduction dd {
		width: calc(100% - 150px);
	}
}
.cart-box .gray-box .reduction {
	padding-bottom: 0;
	border-bottom: 0;
	margin-top: 10px;
}

.cart-box .gray-box .title-calendar {
	font-size: 1.5rem;
	text-align: center;
}

.cart-box .gray-box .title-calendar span {
	display: inline-block;
	border: 1px solid #000000;
	padding: 3px 10px;
}

.cart-box .gray-box .month {
	font-size: 1.3rem;
	margin-top: 8px;
}

.cart-box .gray-box .calendar {
	width: 100%;
	border-collapse: collapse;
	margin-top: 5px;
}

.cart-box .gray-box .calendar thead {
	border-bottom: 1px solid #000000;
}

.cart-box .gray-box .calendar th,
.cart-box .gray-box .calendar td {
	text-align: center;
	font-size: 1.3rem;
	width: 14.2857142857%;
	padding: 2px;
}

@media screen and (max-width: 767px) {
	.cart-box .gray-box .calendar th,
	.cart-box .gray-box .calendar td {
		padding: 5px 2px;
	}
}
.cart-box .month-text {
	font-size: 1.5rem;
	margin-top: 20px;
}

.cart-box .notes {
	font-size: 1.3rem;
	padding-left: 1em;
	text-indent: -1em;
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	.cart-box .notes {
		margin-top: 20px;
	}
}
/* thanks
--------------------------------*/
.thanks {
	padding: 100px 0;
}

.thanks .title {
	font-size: 2.6rem;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.thanks .title {
		font-size: 1.8rem;
	}
}
.thanks .text {
	text-align: center;
	margin-top: 70px;
}

.thanks .number {
	text-align: center;
	margin-top: 10px;
}

@media screen and (max-width: 767px) {
	.thanks .number {
		margin-top: 20px;
	}
}
.thanks .number .red {
	color: #FF0000;
}

.thanks .button {
	margin: 100px auto 0;
}

.thanks .button + .button {
	margin-top: 20px;
}

/* favorite
--------------------------------*/
.favorite {
	padding: 40px 0 150px;
}

/* history
--------------------------------*/
.history {
	padding: 40px 0 150px;
}

.history .cart-box .text {
	text-align: center;
}

@media screen and (max-width: 767px) {
	.history .cart-box .text {
		text-align: left;
	}
}
.history-table {
	width: 100%;
	border-collapse: collapse;
}

@media screen and (max-width: 767px) {
	.history-table {
		display: block;
	}
}
.history-table-wrap {
	border: 1px solid #707070;
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	.history-table-wrap {
		margin-top: 30px;
	}
}
.history-table-wrap + .history-table-wrap {
	margin-top: 50px;
}

@media screen and (max-width: 767px) {
	.history-table-wrap + .history-table-wrap {
		margin-top: 30px;
	}
}
@media screen and (max-width: 767px) {
	.history-table th tr,
	.history-table td tr {
		display: block;
	}
}
.history-table th.tanka,
.history-table td.tanka {
	width: 90px;
}

.history-table th.num,
.history-table td.num {
	width: 90px;
}

.history-table th.price,
.history-table td.price {
	width: 155px;
	padding-right: 40px;
}

@media screen and (max-width: 767px) {
	.history-table thead {
		display: block;
	}
}
@media screen and (max-width: 767px) {
	.history-table thead tr {
		display: block;
	}
}
.history-table thead th {
	font-size: 1.5rem;
	background: #E2E2E2;
	padding: 10px;
}

@media screen and (max-width: 767px) {
	.history-table thead th {
		font-size: 1.4rem;
	}
}
.history-table thead th .red {
	color: #FF0000;
}

.history-table thead th.info {
	margin-top: 0;
	display: table-cell;
}

@media screen and (max-width: 767px) {
	.history-table thead th.info {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-top: 0;
	}
}
.history-table thead th.info .flex {
	display: inline;
	margin-right: 1em;
}

.history-table thead th.tanka {
	text-align: right;
}

@media screen and (max-width: 767px) {
	.history-table thead th.tanka {
		display: none;
	}
}
.history-table thead th.num {
	text-align: right;
}

@media screen and (max-width: 767px) {
	.history-table thead th.num {
		display: none;
	}
}
.history-table thead th.price {
	text-align: right;
}

@media screen and (max-width: 767px) {
	.history-table thead th.price {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.history-table tbody {
		display: block;
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.history-table tbody tr {
		display: block;
		padding: 10px 40px 10px 70px;
		position: relative;
		width: 100%;
	}
}
.history-table tbody td {
	padding: 10px;
}

@media screen and (max-width: 767px) {
	.history-table tbody td {
		font-size: 1.4rem;
		padding: 2px 0 !important;
		width: auto !important;
		text-align: left !important;
	}
}
.history-table tbody td.img {
	width: 90px !important;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.history-table tbody td.img {
		position: absolute;
		top: 10px;
		left: 15px;
		width: 44px !important;
	}
}
@media screen and (max-width: 767px) {
	.history-table tbody td.name {
		display: block;
	}
}
.history-table tbody td.name a {
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
	.history-table tbody td.name a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.history-table tbody td.name a:hover {
		opacity: 0.7;
	}
}
.history-table tbody td.tanka {
	text-align: right;
}

@media screen and (max-width: 767px) {
	.history-table tbody td.tanka {
		margin-right: 1.5em;
		display: inline;
	}
}
.history-table tbody td.num {
	text-align: right;
}

@media screen and (max-width: 767px) {
	.history-table tbody td.num {
		display: inline;
	}
}
.history-table tbody td.price {
	text-align: right;
	color: #FF0000;
}

@media screen and (max-width: 767px) {
	.history-table tbody td.price {
		display: block;
	}
}
.history-table tbody td .text {
	color: #000000;
}

.history-table tbody tr:nth-child(even) {
	background: rgba(156, 196, 239, 0.19);
}

/* hustle
--------------------------------*/
.hustle {
	padding: 0 0 150px;
	position: relative;
}

.hustle .bg {
	position: absolute;
	top: -60px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 1200px;
	width: 100%;
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.hustle .bg {
		display: none;
	}
}
.hustle .title-img {
	text-align: center;
}

@media screen and (max-width: 767px) {
	.hustle .title-img {
		width: 196px;
		margin: 30px auto 0;
	}
}
@media screen and (max-width: 767px) {
	.hustle.-tukitoku .title-img {
		width: 150px;
	}
}
@media screen and (max-width: 767px) {
	.hustle.-challenge .title-img {
		width: 160px;
	}
}
@media screen and (max-width: 767px) {
	.hustle.-energy .title-img {
		width: 160px;
	}
}
.hustle .top-news {
	padding: 0;
	margin-top: 32px;
}

@media screen and (max-width: 767px) {
	.hustle .top-news {
		margin-top: 40px;
	}
}
.hustle .cart-box.clm2 {
	margin-top: 14px;
}

/* form
--------------------------------*/
.form-index {
	padding: 70px 0 150px;
}

@media screen and (max-width: 767px) {
	.form-index {
		padding: 60px 0 110px;
	}
}
.form-index .text,
.form-index .form-input {
	max-width: 866px;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.form-index .text,
	.form-index .form-input {
		max-width: inherit;
	}
}
.form-index .text {
	line-height: 2;
	margin-top: 70px;
}

@media screen and (max-width: 767px) {
	.form-index .text {
		margin-top: 60px;
	}
}
.form-index .req {
	font-size: 1.3rem;
	display: inline-block;
	background: #000000;
	color: #FFFFFF;
	border-radius: 3px;
	padding: 8px;
	line-height: 1;
}

@media screen and (max-width: 767px) {
	.form-index .req {
		font-size: 1.1rem;
		padding: 5px;
	}
}
.form-index .form-input {
	margin-top: 86px;
}

@media screen and (max-width: 767px) {
	.form-index .form-input {
		margin-top: 94px;
	}
}
.form-index .form-input > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 62px;
}

@media screen and (max-width: 767px) {
	.form-index .form-input > div {
		margin-top: 48px;
		display: block;
	}
}
.form-index .form-input > div:first-child {
	margin-top: 0;
}

.form-index .form-input dt {
	width: 225px;
	padding-right: 10px;
	position: relative;
}

@media screen and (max-width: 767px) {
	.form-index .form-input dt {
		width: auto;
		margin-right: 0;
	}
}
.form-index .form-input dt .req {
	position: absolute;
	top: 4px;
	right: 20px;
}

@media screen and (max-width: 767px) {
	.form-index .form-input dt .req {
		position: static;
		margin-left: 17px;
	}
}
.form-index .form-input dd {
	width: calc(100% - 225px);
}

@media screen and (max-width: 767px) {
	.form-index .form-input dd {
		width: 100%;
		margin-top: 15px;
	}
}
.form-index .form-input dd > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.form-index .form-input dd > div + div {
	margin-top: 20px;
}

.form-index .form-input input[type=text],
.form-index .form-input input[type=number],
.form-index .form-input textarea {
	width: 100%;
	height: 54px;
	background: #F4F4F4;
	border: 1px solid #707070;
	padding: 0 15px;
}

.form-index .form-input input[type=text].s,
.form-index .form-input input[type=number].s,
.form-index .form-input textarea.s {
	max-width: 80px;
}

.form-index .form-input input[type=text].m,
.form-index .form-input input[type=number].m,
.form-index .form-input textarea.m {
	max-width: 188px;
}

.form-index .form-input textarea {
	padding: 15px;
	height: 190px;
}

@media screen and (max-width: 767px) {
	.form-index .form-input textarea {
		height: 220px;
	}
}
.form-index .form-input .line {
	width: 12px;
	height: 2px;
	background: #000000;
	margin: 0 8px;
}

.form-index .agree {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: calc(100% - 390px);
	margin-left: auto;
	margin-top: 45px;
}

@media screen and (max-width: 767px) {
	.form-index .agree {
		display: block;
		width: auto;
		margin-top: 30px;
	}
}
@media screen and (max-width: 767px) {
	.form-index .agree .check .req {
		margin-top: 3px;
		margin-left: 40px;
	}
}
.form-index .agree .check label {
	font-size: 1.5rem;
	line-height: 1.5;
}

.form-index .agree .check label input {
	visibility: hidden;
	width: 1px;
}

.form-index .agree .check label span {
	padding-left: 40px;
	display: inline-block;
	position: relative;
}

.form-index .agree .check label span::before {
	content: "";
	position: absolute;
	top: -2px;
	left: 0;
	width: 25px;
	height: 25px;
	border: 1px solid #999999;
	border-radius: 3px;
}

.form-index .agree .check label span::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 5px;
	width: 16px;
	height: 9px;
	border-top: 2px solid #008EDC;
	border-right: 2px solid #008EDC;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	opacity: 0;
}

.form-index .agree .check label input:checked + span::after {
	opacity: 1;
}

.form-index .button-wrap {
	margin: 70px 0 0 auto;
	width: calc(100% - 390px);
	display: block;
}

@media screen and (max-width: 767px) {
	.form-index .button-wrap {
		text-align: center;
		width: auto;
		margin: 70px auto 0;
	}
}
@media screen and (min-width: 768px) {
	.ui-datepicker.ui-datepicker-multi {
		width: 45em !important;
	}
}
@media screen and (min-width: 768px) {
	.ui-datepicker .ui-datepicker-title {
		font-size: 1.25em;
	}
}
.ui-datepicker th,
.ui-datepicker td {
	font-size: inherit;
}

@media screen and (min-width: 768px) {
	.ui-datepicker th,
	.ui-datepicker td {
		font-size: 1.25em;
	}
	.ui-datepicker td {
		padding: 2px;
	}
}
@media screen and (max-width: 767px) {
	.ui-datepicker.ui-datepicker-multi {
		width: calc(100% - 30px) !important;
		left: 15px !important;
	}
}
/* faq
--------------------------------*/
.faq-index {
	padding: 70px 0;
}

@media screen and (max-width: 767px) {
	.faq-index {
		padding: 60px 0 75px;
	}
}
.faq-index .faq-title,
.faq-index .faq-box {
	max-width: 1000px;
	margin: 0 auto;
}

.faq-index .faq-title {
	font-size: 2.4rem;
	letter-spacing: 0.1em;
	margin-top: 80px;
}

@media screen and (max-width: 767px) {
	.faq-index .faq-title {
		font-size: 2rem;
		text-align: center;
		margin-top: 63px;
	}
}
.faq-index .faq-box {
	margin-top: 10px;
	border-bottom: 1px solid #707070;
}

@media screen and (max-width: 767px) {
	.faq-index .faq-box {
		margin-top: 18px;
	}
}
.faq-index .faq-box + .faq-title {
	margin-top: 105px;
}

.faq-index .faq-box dt {
	padding: 18px 18px 18px 60px;
	border-top: 1px solid #707070;
	position: relative;
}

@media screen and (max-width: 767px) {
	.faq-index .faq-box dt {
		padding: 18px 18px 18px 50px;
	}
}
.faq-index .faq-box dt::before {
	content: "Q";
	font-size: 3rem;
	font-family: "Lato", sans-serif;
	position: absolute;
	top: 2px;
	left: 10px;
}

@media screen and (max-width: 767px) {
	.faq-index .faq-box dt::before {
		font-size: 2.4rem;
		top: 8px;
	}
}
.faq-index .faq-box dt .ico {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 100%;
}

.faq-index .faq-box dt .ico::before, .faq-index .faq-box dt .ico::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #000000;
	width: 12px;
	height: 2px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.faq-index .faq-box dt .ico::before {
	width: 2px;
	height: 12px;
}

.faq-index .faq-box dt.is-open .ico::before {
	opacity: 0;
}

.faq-index .faq-box dd {
	padding: 18px 18px 45px 60px;
	background: #f2f2f2;
	position: relative;
	display: none;
}

@media screen and (max-width: 767px) {
	.faq-index .faq-box dd {
		padding: 18px 18px 45px 50px;
	}
}
.faq-index .faq-box dd::before {
	content: "A";
	font-size: 3rem;
	color: #CC0000;
	font-family: "Lato", sans-serif;
	position: absolute;
	top: 5px;
	left: 13px;
}

@media screen and (max-width: 767px) {
	.faq-index .faq-box dd::before {
		font-size: 2.4rem;
		top: 10px;
	}
}
/* free01
--------------------------------*/
@media screen and (max-width: 767px) {
	.free01 {
		padding: 25px 0;
	}
}
.free01 .eyecatch {
	margin-top: -55px;
}

@media screen and (max-width: 767px) {
	.free01 .eyecatch {
		margin: 0 -15px;
	}
}
.free01 .header-box {
	background: #e6e6e6;
	padding: 47px 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

@media screen and (max-width: 767px) {
	.free01 .header-box {
		padding: 30px 20px;
		margin: 0 -15px;
		display: block;
	}
}
.free01 .header-box .title {
	font-size: 3.6rem;
	font-weight: 400;
	line-height: 1.2222222222;
	letter-spacing: 0.14em;
	font-family: "Lato", sans-serif;
}

@media screen and (max-width: 767px) {
	.free01 .header-box .title {
		font-size: 2.8rem;
		line-height: 1.2142857143;
	}
}
.free01 .header-box .ja {
	font-size: 2.6rem;
	width: 686px;
	height: 85px;
	background: url("../img/free01/line_title_01.svg") no-repeat center center/contain;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 114px;
	padding-top: 10px;
}

@media screen and (max-width: 767px) {
	.free01 .header-box .ja {
		font-size: 2rem;
		max-width: 375px;
		height: 77px;
		background: url("../img/free01/line_title_01_sp.svg") no-repeat center center/contain;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding-left: 60px;
		padding-top: 12px;
		margin-left: -20px;
	}
}
.free01 .cnt-box {
	padding: 98px 0 30px;
	border-bottom: 2px solid #000000;
}

@media screen and (max-width: 767px) {
	.free01 .cnt-box {
		padding: 60px 0 20px;
	}
}
.free01 .cnt-box .intro {
	max-width: 800px;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.free01 .cnt-box .intro {
		max-width: inherit;
	}
}
.free01 .cnt-box .intro .title {
	font-size: 2.6rem;
	line-height: 1.1538461538;
}

@media screen and (max-width: 767px) {
	.free01 .cnt-box .intro .title {
		font-size: 2.2rem;
	}
}
.free01 .cnt-box .intro .text {
	line-height: 2;
	border-top: 2px solid #000000;
	margin-top: 10px;
	padding-top: 10px;
}

@media screen and (max-width: 767px) {
	.free01 .cnt-box .intro .text {
		line-height: 1.7142857143;
	}
}
.free01 .cnt-box .clm2 {
	margin-top: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width: 767px) {
	.free01 .cnt-box .clm2 {
		display: block;
		margin-top: 30px;
	}
}
.free01 .cnt-box .clm2 .img {
	width: 47%;
}

@media screen and (max-width: 767px) {
	.free01 .cnt-box .clm2 .img {
		width: 66%;
		max-width: 260px;
		margin: 0 auto;
	}
}
.free01 .cnt-box .clm2 .text-box {
	width: 48%;
}

@media screen and (max-width: 767px) {
	.free01 .cnt-box .clm2 .text-box {
		width: auto;
		margin-top: 30px;
	}
}
.free01 .cnt-box .clm2 .text-box .text {
	line-height: 2;
}

@media screen and (max-width: 767px) {
	.free01 .cnt-box .clm2 .text-box .text {
		line-height: 1.7142857143;
	}
}
.free01 .cnt-box .clm2 .text-box .img02 {
	max-width: 355px;
	margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
	.free01 .cnt-box .clm2 .text-box .img02 {
		width: 53.5%;
		max-width: 210px;
		margin: 30px auto 0;
	}
}
.free01 .cnt-box .clm1 {
	margin: 120px auto 0;
	max-width: 800px;
}

@media screen and (max-width: 767px) {
	.free01 .cnt-box .clm1 {
		margin-top: 50px;
	}
}
.free01 .cnt-box .clm1 .text {
	line-height: 2;
	margin-top: 40px;
}

@media screen and (max-width: 767px) {
	.free01 .cnt-box .clm1 .text {
		line-height: 1.7142857143;
		margin-top: 30px;
	}
}
.free01 .cnt-box .en {
	font-size: 3.6rem;
	font-family: "Lato", sans-serif;
	letter-spacing: 0.14em;
	line-height: 1.2222222222;
	text-align: right;
	margin-top: 64px;
}

@media screen and (max-width: 767px) {
	.free01 .cnt-box .en {
		font-size: 2.8rem;
		line-height: 1.2142857143;
		margin-top: 70px;
	}
}
/* free02
--------------------------------*/
.free02 {
	margin-top: -55px;
	padding-bottom: 27%;
	background: url("../img/free02/img_12.png") no-repeat center bottom/100%;
}

@media screen and (max-width: 767px) {
	.free02 {
		margin-top: 0;
		padding: 20px 0 30px;
	}
}
.free02 .wrap {
	position: relative;
}

.free02 .img-main {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}

@media screen and (max-width: 767px) {
	.free02 .img-main {
		max-width: 300px;
		width: 80%;
		left: -15px;
	}
}
.free02 .intro {
	padding: 171px 0 0;
	position: relative;
}

@media screen and (max-width: 767px) {
	.free02 .intro {
		padding: 30px 0 0;
	}
}
.free02 .intro .title {
	font-size: 4rem;
	line-height: 1.2;
	font-weight: 500;
	text-align: right;
}

@media screen and (max-width: 767px) {
	.free02 .intro .title {
		font-size: 2.8rem;
		line-height: 1.3571428571;
	}
}
.free02 .intro .text {
	line-height: 2;
	max-width: 357px;
	margin-left: auto;
	margin-top: 74px;
}

@media screen and (max-width: 767px) {
	.free02 .intro .text {
		margin-top: 280px;
		line-height: 1.7142857143;
		max-width: inherit;
	}
}
.free02 .box01 {
	margin-top: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	position: relative;
}

@media screen and (max-width: 767px) {
	.free02 .box01 {
		margin-top: 30px;
		padding-bottom: 190px;
		display: block;
	}
}
.free02 .box01 .img {
	width: 357px;
}

@media screen and (max-width: 767px) {
	.free02 .box01 .img {
		max-width: 170px;
		width: 48%;
		float: right;
		margin-left: 20px;
	}
}
.free02 .box01 .text {
	line-height: 2;
	padding: 0 100px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

@media screen and (max-width: 767px) {
	.free02 .box01 .text {
		padding: 0;
		line-height: 1.7142857143;
	}
}
.free02 .box01 .img02 {
	position: absolute;
	bottom: -718px;
	right: 0;
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.free02 .box01 .img02 {
		bottom: 0;
	}
}
.free02 .img-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-top: 127px;
}

@media screen and (max-width: 767px) {
	.free02 .img-box {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-top: 20px;
	}
}
.free02 .img-box li {
	margin-right: 52px;
	-webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
	.free02 .img-box li {
		width: 30%;
		margin-right: 0;
	}
}
.free02 .title-black {
	font-size: 2.4rem;
	color: #FFFFFF;
	line-height: 1.25;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 767px) {
	.free02 .title-black {
		font-size: 2rem;
	}
}
.free02 .title-black span {
	display: inline-block;
	background: #000000;
	position: relative;
	padding: 0.2em;
}

.free02 .title-black span::before {
	content: "";
	position: absolute;
	bottom: -6px;
	right: -6px;
	background: #6c6c6c;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.free02 .box02 {
	margin-top: 296px;
}

@media screen and (max-width: 767px) {
	.free02 .box02 {
		margin-top: 94px;
	}
}
.free02 .box02 .img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 20px;
}

@media screen and (max-width: 767px) {
	.free02 .box02 .img {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 40px;
	}
}
.free02 .box02 .img li {
	width: 23.4%;
}

@media screen and (max-width: 767px) {
	.free02 .box02 .img li {
		width: 48%;
	}
	.free02 .box02 .img li:nth-child(n+3) {
		margin-top: 20px;
	}
}
.free02 .box02 .img li .cap {
	line-height: 1.4666666667;
	margin-top: 5px;
	letter-spacing: -0.04em;
}

.free02 .box02 .box-border {
	border: 1px solid #000000;
	padding: 50px 80px;
	margin-top: 25px;
}

@media screen and (max-width: 767px) {
	.free02 .box02 .box-border {
		padding: 30px 15px;
		margin-top: 30px;
	}
}
@media screen and (min-width: 768px) {
	.free02 .box02 .box-border .list {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
	}
}
.free02 .box02 .box-border .list li {
	line-height: 1.87;
	padding-left: 1em;
	text-indent: -1em;
}

@media screen and (max-width: 767px) {
	.free02 .box02 .box-border .list li {
		line-height: 1.7142857143;
	}
}
.free02 .box03 {
	margin-top: 124px;
	position: relative;
}

@media screen and (max-width: 767px) {
	.free02 .box03 {
		margin-top: 100px;
		padding-bottom: 0;
	}
}
.free02 .box03 .img {
	position: absolute;
	top: 60px;
	right: 40px;
}

@media screen and (max-width: 767px) {
	.free02 .box03 .img {
		position: static;
		max-width: 202px;
		width: 60%;
		margin-left: auto;
	}
}
.free02 .box03 .text-box {
	margin-top: 20px;
	max-width: 715px;
}

@media screen and (max-width: 767px) {
	.free02 .box03 .text-box {
		margin-top: 35px;
	}
}
.free02 .box03 .text-box .text {
	line-height: 2;
}

@media screen and (max-width: 767px) {
	.free02 .box03 .text-box .text {
		line-height: 1.7142857143;
	}
}
.free02 .box03 .text-box .text02 {
	font-size: 2.4rem;
	text-align: center;
	color: #019fe8;
	margin-top: 27px;
}

@media screen and (max-width: 767px) {
	.free02 .box03 .text-box .text02 {
		font-size: 2rem;
		margin-top: 30px;
	}
}
.free02 .box03 .text-box .text02 span {
	display: inline-block;
	border: 1px solid #019fe8;
	position: relative;
	padding: 0.4em 2em;
}

.free02 .box03 .text-box .text02 span::before {
	content: "";
	position: absolute;
	top: -4px;
	left: -4px;
	width: calc(100% + 8px);
	height: calc(100% + 8px);
	border: 1px solid #019fe8;
}

.free02 .box03 .text-box .text03 {
	font-size: 1.4rem;
	letter-spacing: 0.14em;
	text-align: center;
	font-family: "Lato", sans-serif;
	margin-top: 5px;
}

@media screen and (max-width: 767px) {
	.free02 .box03 .text-box .text03 {
		margin-top: 15px;
	}
}
/* ----------------------------------------------------------------------------------------------------
*	free03
* --------------------------------------------------------------------------------------------------*/
.free03 .lato {
	font-family: "Lato", sans-serif;
}

@media screen and (max-width: 767px) {
	.free03 {
		margin-top: -72px;
		padding: 25px 0;
	}
}
@media screen and (min-width: 768px) {
	.free03 .sp_inline {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.free03 .sp_inline {
		display: inline;
	}
}
.free03 .cathc {
	position: absolute;
	z-index: 2;
	font-size: 6rem;
	font-weight: bold;
	top: 195px;
	left: 74px;
}

@media screen and (max-width: 767px) {
	.free03 .cathc {
		font-size: 3rem;
		top: 80px;
		left: 20px;
	}
}
.free03 .eyecatch {
	position: relative;
	margin-top: -55px;
}

@media screen and (max-width: 767px) {
	.free03 .eyecatch {
		margin: 0 -15px;
	}
}
.free03 .header-box {
	background: #e6e6e6;
	padding: 47px 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	position: relative;
}

@media screen and (max-width: 767px) {
	.free03 .header-box {
		padding: 30px 20px;
		margin: 0 -15px;
		display: block;
	}
}
.free03 .header-box .title {
	font-size: 3.6rem;
	font-weight: 400;
	line-height: 1.2222222222;
	letter-spacing: 0.14em;
	font-family: "Lato", sans-serif;
}

@media screen and (max-width: 767px) {
	.free03 .header-box .title {
		font-size: 2.8rem;
		line-height: 1.2142857143;
	}
}
.free03 .header-box .ja {
	font-size: 2.6rem;
	width: 686px;
	height: 85px;
	background: url("../img/free01/line_title_01.svg") no-repeat center center/contain;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 134px;
	padding-top: 10px;
}

@media screen and (max-width: 767px) {
	.free03 .header-box .ja {
		font-size: 2rem;
		max-width: 375px;
		height: 77px;
		background: url("../img/free01/line_title_01_sp.svg") no-repeat center center/contain;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding-left: 60px;
		padding-top: 12px;
		margin-left: -20px;
	}
}
.free03 .header-box .number {
	position: absolute;
	bottom: 0;
	right: 19px;
	font-size: 7rem;
	color: #b2b2b2;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
	.free03 .header-box .number {
		display: none;
	}
}
.free03 .cnt-box {
	padding: 98px 0 30px;
	border-bottom: 2px solid #000000;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box {
		padding: 60px 0 20px;
	}
}
.free03 .cnt-box .txt {
	font-size: 1.5rem;
	line-height: 2;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .txt {
		font-size: 1.4rem;
		line-height: 1.8;
	}
}
.free03 .cnt-box .txt + .txt {
	margin-top: 2em;
}

.free03 .cnt-box .note {
	text-align: center;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .note {
		font-size: 1.1rem;
	}
}
.free03 .cnt-box .section_ttl {
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.4;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section_ttl {
		font-size: 1.8rem;
	}
}
.free03 .cnt-box .sub_txt {
	font-size: 10rem;
	line-height: 1;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .sub_txt {
		font-size: 8rem;
	}
}
.free03 .cnt-box .img_radius {
	border-radius: 20px;
}

.free03 .cnt-box .section01 {
	position: relative;
	overflow: hidden;
	padding-top: 91px;
	padding-bottom: 200px;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section01 {
		padding-top: 30px;
		padding-bottom: 150px;
	}
}
.free03 .cnt-box .section01::after {
	content: "";
	position: absolute;
	top: 0;
	left: calc(50% - 190px);
	width: 100%;
	background-color: #faffe8;
	z-index: -1;
	height: 78%;
	border-radius: 20px 0 0 20px;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section01::after {
		left: 28%;
		height: 62.5%;
	}
}
.free03 .cnt-box .section01 .block01 {
	display: -ms-grid;
	display: grid;
	grid-auto-columns: 1fr;
	grid-auto-rows: 1fr;
	-ms-grid-columns: auto 0px auto;
	grid-template-columns: auto auto;
	-ms-grid-rows: auto 0px 1fr 0px auto;
	grid-template-rows: auto 1fr auto;
	gap: 0px 0px;
	    grid-template-areas: "img01 ttl" "img01 txt01" "img02 year01";
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section01 .block01 {
		display: block;
	}
}
.free03 .cnt-box .section01 .block02 {
	padding-top: 53px;
	display: -ms-grid;
	display: grid;
	grid-auto-columns: 1fr;
	grid-auto-rows: 1fr;
	-ms-grid-columns: auto 0px auto;
	grid-template-columns: auto auto;
	-ms-grid-rows: auto 0px auto;
	grid-template-rows: auto auto;
	gap: 0px 0px;
	    grid-template-areas: "txt02 img03" "year02 img03";
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section01 .block02 {
		display: block;
		padding-top: 40px;
	}
}
.free03 .cnt-box .section01 .section_ttl {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
	grid-area: ttl;
	padding-top: 10px;
}

.free03 .cnt-box .section01 .txt_wrapper01 {
	-ms-grid-row: 3;
	-ms-grid-column: 3;
	grid-area: txt01;
	margin-top: 40px;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section01 .txt_wrapper01 {
		margin-top: 30px;
	}
}
.free03 .cnt-box .section01 .txt_wrapper02 {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: txt02;
	margin-top: 98px;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section01 .txt_wrapper02 {
		margin-top: 0;
	}
}
.free03 .cnt-box .section01 .year01 {
	-ms-grid-row: 5;
	-ms-grid-column: 3;
	grid-area: year01;
	color: #e7f0cd;
	margin: 44px 0 0 83px;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section01 .year01 {
		margin: 40px 0 0;
		display: -ms-grid;
		display: grid;
		place-content: center;
	}
}
.free03 .cnt-box .section01 .year02 {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
	grid-area: year02;
	color: #f0e1e7;
	margin-top: 45px;
	margin-left: 60px;
	margin: 30px 0 0;
	display: -ms-grid;
	display: grid;
	place-content: center;
}

.free03 .cnt-box .section01 .img_wrapper01 {
	-ms-grid-row: 1;
	-ms-grid-row-span: 3;
	-ms-grid-column: 1;
	grid-area: img01;
	margin-right: 30px;
	width: 600px;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section01 .img_wrapper01 {
		width: 83%;
		margin: 30px 0 0;
	}
	.free03 .cnt-box .section01 .img_wrapper01 img {
		width: 100%;
		height: auto;
	}
}
.free03 .cnt-box .section01 .img_wrapper02 {
	-ms-grid-row: 5;
	-ms-grid-column: 1;
	grid-area: img02;
	margin: 20px 30px 0 0;
	width: 600px;
}

.free03 .cnt-box .section01 .img_wrapper02 .img_inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.free03 .cnt-box .section01 .img_wrapper02 .img_inner img {
	width: 48%;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section01 .img_wrapper02 {
		width: auto;
		margin: 30px 0 0;
	}
}
.free03 .cnt-box .section01 .img_wrapper02 .img_inner_txt {
	margin-top: 10px;
}

.free03 .cnt-box .section01 .img_wrapper03 {
	-ms-grid-row: 1;
	-ms-grid-row-span: 3;
	-ms-grid-column: 3;
	grid-area: img03;
	margin: 20px 0 0 -30px;
	width: 693px;
	position: relative;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section01 .img_wrapper03 {
		width: auto;
		margin: 20px 0 0;
	}
}
.free03 .cnt-box .section01 .img_wrapper03 .img_inner_txt {
	position: absolute;
	text-align: center;
	left: 0;
	padding-left: 88px;
	right: 0;
	bottom: 0;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section01 .img_wrapper03 .img_inner_txt {
		bottom: -10px;
	}
	.free03 .cnt-box .section01 .img_wrapper03 .img_inner_txt .note {
		font-size: 1.4rem;
	}
}
.free03 .cnt-box .section02 {
	position: relative;
	overflow: hidden;
	padding-top: 100px;
	padding-bottom: 38px;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section02 {
		padding-top: 30px;
	}
}
.free03 .cnt-box .section02::after {
	content: "";
	position: absolute;
	top: 0;
	right: calc(50% - 446px);
	width: 100%;
	background-color: #d5e1ef;
	z-index: -1;
	height: 100%;
	border-radius: 0 20px 20px 0;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section02::after {
		right: 38%;
	}
}
.free03 .cnt-box .section02 .block01 {
	display: -ms-grid;
	display: grid;
	grid-auto-columns: 1fr;
	grid-auto-rows: 1fr;
	-ms-grid-columns: auto 0px auto;
	grid-template-columns: auto auto;
	-ms-grid-rows: auto 0px auto 0px auto;
	grid-template-rows: auto auto auto;
	gap: 0px 0px;
	    grid-template-areas: "img ttl" "img txt" "img catch";
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section02 .block01 {
		display: block;
	}
}
.free03 .cnt-box .section02 .section_ttl {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
	grid-area: ttl;
	padding-top: 10px;
}

.free03 .cnt-box .section02 .img_wrapper {
	-ms-grid-row: 1;
	-ms-grid-row-span: 5;
	-ms-grid-column: 1;
	grid-area: img;
	margin-right: 60px;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section02 .img_wrapper {
		margin: 30px 0 0;
	}
}
.free03 .cnt-box .section02 .txt_wrapper {
	-ms-grid-row: 3;
	-ms-grid-column: 3;
	margin-top: 42px;
	grid-area: txt;
}

.free03 .cnt-box .section02 .guppy {
	-ms-grid-row: 5;
	-ms-grid-column: 3;
	margin-top: 71px;
	text-align: right;
	grid-area: catch;
	color: #e1e3f0;
	mix-blend-mode: multiply;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .section02 .guppy {
		margin-top: 30px;
	}
}
.free03 .cnt-box .en {
	font-size: 3.6rem;
	font-family: "Lato", sans-serif;
	letter-spacing: 0.14em;
	line-height: 1.2222222222;
	text-align: right;
	margin-top: 64px;
}

@media screen and (max-width: 767px) {
	.free03 .cnt-box .en {
		font-size: 2.8rem;
		line-height: 1.2142857143;
		margin-top: 70px;
	}
}
/* ----------------------------------------------------------------------------------------------------
*	free04
* --------------------------------------------------------------------------------------------------*/
.free04 .ttl_wrapper {
	padding-top: 63px;
	padding-bottom: 18px;
}

@media screen and (max-width: 767px) {
	.free04 .ttl_wrapper {
		padding-top: 30px;
		padding-bottom: 10px;
	}
}
.free04 .content_ttl {
	font-size: 4rem;
	text-align: center;
	line-height: 1.4;
}

@media screen and (max-width: 767px) {
	.free04 .content_ttl {
		font-size: 2rem;
	}
}
.free04 .content_ttl span {
	display: block;
	width: 512px;
	margin: 20px auto 0;
}

@media screen and (max-width: 767px) {
	.free04 .content_ttl span {
		width: 74.8%;
		margin-top: 10px;
	}
}
.free04 .img_eyecatch {
	height: 250px;
}

@media screen and (max-width: 767px) {
	.free04 .img_eyecatch {
		height: 110px;
	}
}
.free04 .img_eyecatch img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.free04 .section_ttl {
	font-size: 4rem;
	text-align: center;
	line-height: 1.4;
}

@media screen and (max-width: 767px) {
	.free04 .section_ttl {
		font-size: 2rem;
	}
}
.free04 .txt {
	font-size: 1.5rem;
	line-height: 2;
}

@media screen and (max-width: 767px) {
	.free04 .txt {
		font-size: 1.4rem;
		line-height: 1.8;
	}
}
.free04 .txt_wrapper {
	width: 900px;
	margin: 26px auto 0;
}

@media screen and (max-width: 767px) {
	.free04 .txt_wrapper {
		margin-top: 20px;
		width: 100%;
	}
}
.free04 .section01 {
	padding-top: 100px;
}

@media screen and (max-width: 767px) {
	.free04 .section01 {
		padding-top: 50px;
	}
}
.free04 .section01 .img_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 26px;
}

@media screen and (max-width: 767px) {
	.free04 .section01 .img_list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
.free04 .section01 .img_item {
	width: 220px;
	margin-right: 25px;
}

@media screen and (max-width: 767px) {
	.free04 .section01 .img_item {
		width: 47.5%;
		margin: 20px 0 0;
	}
}
.free04 .section01 .img_item p {
	font-size: 1.3rem;
	margin-top: 5px;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.free04 .section01 .img_item p {
		font-size: 1.2rem;
	}
}
.free04 .section01 .img_item:nth-of-type(5) {
	margin-right: 0;
}

.free04 .section02 {
	padding-top: 109px;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.free04 .section02 {
		padding-bottom: 25px;
	}
}
.free04 .section02 .img_list_wrapper {
	position: relative;
	padding-bottom: 49px;
	margin: 28px calc(50% - 50vw) 0;
}

@media screen and (max-width: 767px) {
	.free04 .section02 .img_list_wrapper {
		padding-bottom: 0;
	}
}
.free04 .section02 .img_list_wrapper::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #e8e8e8;
	height: 266px;
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.free04 .section02 .img_list_wrapper::after {
		display: none;
	}
}
.free04 .section02 .img_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 35px;
	width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.free04 .section02 .img_list {
		width: auto;
		display: block;
		padding: 0;
	}
}
.free04 .section02 .img_item {
	width: 311px;
}

@media screen and (max-width: 767px) {
	.free04 .section02 .img_item {
		width: 71.94%;
		margin: 50px auto 0;
		position: relative;
		padding-bottom: 30px;
	}
	.free04 .section02 .img_item::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		width: 200%;
		background-color: #e8e8e8;
		height: 55%;
		z-index: -1;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
	.free04 .section02 .img_item img {
		width: 100%;
		height: auto;
	}
}
.free04 .section02 .btn_wrapper {
	width: 350px;
	margin: 100px auto;
}

@media screen and (max-width: 767px) {
	.free04 .section02 .btn_wrapper {
		width: auto;
		max-width: 300px;
		margin: 70px auto;
	}
}
.free04 .section02 .link {
	width: 100%;
	min-height: 56px;
	border: 3px solid #000;
	display: -ms-grid;
	display: grid;
	place-content: center;
	position: relative;
	font-size: 1.5rem;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	.free04 .section02 .link {
		border-width: 2px;
	}
}
.free04 .section02 .link::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

@media (any-hover) {
	.free04 .section02 .link {
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.free04 .section02 .link:hover {
		opacity: 0.7;
	}
}
.free04 hr {
	margin: 0;
	border: none;
	border-top: 3px solid #000;
}

@media screen and (max-width: 767px) {
	.free04 hr {
		border-width: 2px;
	}
}
/* ----------------------------------------------------------------------------------------------------
*	free05
* --------------------------------------------------------------------------------------------------*/
.free05 {
	padding-top: 63px;
	padding-bottom: 18px;
}

.free05 .ttl_wrapper {
	padding-top: 22px;
	position: relative;
}

@media screen and (max-width: 767px) {
	.free05 {
		padding-top: 43px;
	}
	.free05 .ttl_wrapper {
		padding-top: 0px;
		max-width: 390px;
		width: 100%;
		margin: 0 auto;
	}
}
.free05 .energy_txt {
	margin-left: 18px;
	text-align: left;
	display: block;
	margin-bottom: -31px;
	position: relative;
	z-index: 0;
}

.free05 .content_ttl {
	max-width: 660px;
	width: 100%;
	margin: 0 auto;
	margin-bottom: -45px;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
	border: solid 5px #000;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 19px 5px;
	position: relative;
	z-index: 2;
}

.free05 .content_ttl .space {
	margin: 0 6px;
}

.free05 .challenge_txt {
	display: block;
	text-align: right;
	position: relative;
	z-index: 0;
}

@media screen and (max-width: 767px) {
	.free05 .energy_txt {
		margin-bottom: -14px;
		margin-left: 0;
	}
	.free05 .energy_txt img {
		width: 241px;
	}
	.free05 .content_ttl {
		font-size: 2rem;
		border: solid 3px #000;
		max-width: 260px;
		line-height: 1.3;
		padding: 16px 5px;
		margin-bottom: -13px;
	}
	.free05 .content_ttl .space {
		margin: 0 0 0 6px;
	}
	.free05 .challenge_txt img {
		width: 125px;
	}
}
/* cnt-box */
.free05 .cnt-box {
	padding: 82px 0 100px;
	border-bottom: 3px solid #000000;
}

@media screen and (max-width: 767px) {
	.free05 .cnt-box {
		padding: 52px 0 70px;
	}
}
.free05 .section_ttl {
	font-size: 3rem;
	text-align: center;
	line-height: 1.4;
}

@media screen and (max-width: 767px) {
	.free05 .section_ttl {
		font-size: 2rem;
	}
}
.free05 .txt {
	font-size: 1.5rem;
	line-height: 2;
}

@media screen and (max-width: 767px) {
	.free05 .txt {
		font-size: 1.4rem;
		line-height: 1.7;
	}
}
.free05 .note {
	text-align: center;
}

.free05 .txt_wrapper01 {
	width: 930px;
	margin: 17px auto 0;
}

@media screen and (max-width: 767px) {
	.free05 .txt_wrapper01 {
		margin-top: 30px;
		width: 100%;
	}
}
/* section01 */
.free05 .section01 {
	padding-bottom: 20px;
}

.free05 .section01_eyecatch {
	position: relative;
}

.free05 .section01_eyecatch::after {
	content: "";
	width: 256px;
	height: 78px;
	background-image: url(../img/free05/section01_svg_txt.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	bottom: -32px;
	right: 51px;
}

.free05 .section01_eyecatch .catch {
	position: absolute;
	top: 0;
	left: 135px;
}

@media screen and (max-width: 767px) {
	.free05 .section01 {
		padding-bottom: 50px;
	}
	.free05 .section01 .wrap {
		width: calc(100% - 0px);
	}
	.free05 .section01_eyecatch .catch {
		position: relative;
		left: 0;
		width: calc(100% - 30px);
		margin: 0 auto -23px;
		z-index: 2;
	}
	.free05 .section01_eyecatch::after {
		width: 42.565vw;
		height: 13.078vw;
		right: 14px;
		bottom: -5.3vw;
	}
}
/* section02 */
.free05 .section02 {
	padding-bottom: 210px;
}

.free05 .section02 .flx-box {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
	.free05 .section02 {
		padding-bottom: 128px;
	}
	.free05 .section02 .flx-box {
		display: block;
		padding-bottom: 50px;
	}
}
.free05 .section02 .flx-box_item {
	width: 30%;
	position: relative;
	display: block;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.free05 .section02 .flx-box_item--pone {
	pointer-events: none;
}

.free05 .section02 .flx-box_item:nth-child(2) {
	margin: 63px 5% 0;
}

.free05 .section02 .flx-box_item:nth-child(3) {
	margin: 126px 0 0;
}

.free05 .section02 .flx-box_item:nth-child(4) {
	margin: -90px 0 0;
}

.free05 .section02 .flx-box_item:nth-child(3) .flx-box_item_txt {
	padding-top: 8px;
}

.free05 .section02 .flx-box_item:nth-child(4) .flx-box_item_txt {
	padding-top: 8px;
}

.free05 .section02 .flx-box_item:hover {
	-webkit-transition: 0.3s;
	transition: 0.3s;
	opacity: 0.8;
}

@media screen and (max-width: 767px) {
	.free05 .section02 .flx-box_item {
		width: 100%;
		margin: 0 auto 50px;
	}
	.free05 .section02 .flx-box_item:nth-child(2) {
		margin: 0 auto 50px;
	}
	.free05 .section02 .flx-box_item:nth-child(3) {
		margin: 0 auto 50px;
	}
	.free05 .section02 .flx-box_item:nth-child(4) {
		margin: 0 auto;
	}
	.free05 .section02 .flx-box_item:hover {
		opacity: 1;
	}
}
.free05 .section02 .flx-box_item_txt {
	width: 289px;
	height: 126px;
	margin: 0 auto -63px 0;
	background-color: #292E4E;
	padding: 12px 5px 0 5px;
	display: block;
}

.free05 .section02 .flx-box_item_txt_wrap {
	width: 100%;
	color: #fff;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 1.5rem;
	line-height: 1.25;
}

.free05 .section02 .flx-box_item_txt_wrap .numb--01 {
	width: 23px;
	min-width: 23px;
	margin-right: 22px;
	margin-left: 15px;
}

.free05 .section02 .flx-box_item_txt_wrap .numb--02 {
	width: 28px;
	min-width: 28px;
	margin-right: 19px;
	margin-left: 13px;
}

.free05 .section02 .flx-box_item_txt_wrap .numb--03 {
	width: 28px;
	min-width: 28px;
	margin-right: 19px;
	margin-left: 13px;
}

.free05 .section02 .flx-box_item_txt_wrap .numb--04 {
	width: 29px;
	min-width: 29px;
	margin-right: 19px;
	margin-left: 12px;
}

.free05 .section02 .flx-box_item_img {
	width: 300px;
	display: block;
	margin: 0 0 0 auto;
}

@media screen and (max-width: 767px) {
	.free05 .section02 .flx-box_item_txt {
		width: 80.28%;
		min-height: 126px;
	}
	.free05 .section02 .flx-box_item_img {
		width: 83.334%;
	}
}
@media screen and (max-width: 381px) {
	.free05 .section02 .flx-box_item:nth-child(3) .flx-box_item_txt {
		margin-bottom: -43px;
	}
}
@media screen and (max-width: 368px) {
	.free05 .section02 .flx-box_item:nth-child(4) .flx-box_item_txt_wrap br {
		display: none;
	}
}
@media screen and (max-width: 359px) {
	.free05 .section02 .flx-box_item:nth-child(4) .flx-box_item_txt {
		margin-bottom: -43px;
	}
}
@media screen and (max-width: 340px) {
	.free05 .section02 .flx-box_item:nth-child(1) .flx-box_item_txt {
		margin-bottom: -53px;
	}
}
.free05 .section02 .section02_ttl {
	font-size: 3rem;
	line-height: 1.4;
	margin: -87px 12px 0 auto;
	display: block;
	color: #292E4E;
	text-align: right;
}

.free05 .section02 .section02_ttl_eng {
	width: 616.5px;
	margin: 17px 1px 0 auto;
}

@media screen and (max-width: 767px) {
	.free05 .section02 .section02_ttl {
		font-size: 2rem;
		margin: 0 0 0 auto;
	}
	.free05 .section02 .section02_ttl_eng {
		width: 100%;
		margin-top: 10px;
	}
}
/* section03 */
.free05 .section03 {
	padding-bottom: 110px;
}

.free05 .section03 .head-cnt {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
	.free05 .section03 {
		padding-bottom: 53px;
	}
	.free05 .section03 .head-cnt {
		display: block;
		padding-bottom: 50px;
	}
}
.free05 .section03 .head-cnt_img {
	width: 580px;
	position: relative;
}

.free05 .section03 .head-cnt_img::after {
	content: "";
	width: 225px;
	height: 69px;
	background-image: url(../img/free05/section03_1_after.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	bottom: 0;
	left: 3px;
}

.free05 .section03 .head-cnt_img img {
	width: 100%;
}

@media screen and (max-width: 767px) {
	.free05 .section03 .head-cnt_img {
		width: 100%;
	}
	.free05 .section03 .head-cnt_img::after {
		width: 36.667vw;
		height: 11.027vw;
	}
}
.free05 .section03 .head-cnt_txt {
	width: 501px;
	margin: 48px auto 0;
}

.free05 .section03 .head-cnt_txt .txt {
	margin-top: 27px;
}

@media screen and (max-width: 767px) {
	.free05 .section03 .head-cnt_txt {
		width: 100%;
		margin-top: 50px;
	}
	.free05 .section03 .head-cnt_txt .txt {
		margin-top: 30px;
	}
}
.free05 .section03 .flx-box {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
	.free05 .section03 .flx-box {
		display: block;
		padding-bottom: 50px;
	}
}
.free05 .section03 .flx-box_item {
	width: 30%;
	position: relative;
	display: block;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.free05 .section03 .flx-box_item--pone {
	pointer-events: none;
}

.free05 .section03 .flx-box_item:nth-child(2) {
	margin: 63px 5% 0;
}

.free05 .section03 .flx-box_item:nth-child(3) {
	margin: 126px 0 0;
}

.free05 .section03 .flx-box_item:nth-child(4) {
	margin: -90px 0 0;
}

.free05 .section03 .flx-box_item:nth-child(5) {
	margin: -27px 5% 0;
}

.free05 .section03 .flx-box_item:hover {
	-webkit-transition: 0.3s;
	transition: 0.3s;
	opacity: 0.8;
}

@media screen and (max-width: 767px) {
	.free05 .section03 .flx-box_item {
		width: 100%;
		margin: 0 auto 50px;
	}
	.free05 .section03 .flx-box_item:nth-child(2) {
		margin: 0 auto 50px;
	}
	.free05 .section03 .flx-box_item:nth-child(3) {
		margin: 0 auto 50px;
	}
	.free05 .section03 .flx-box_item:nth-child(4) {
		margin: 0 auto 50px;
	}
	.free05 .section03 .flx-box_item:nth-child(5) {
		margin: 0 auto;
	}
	.free05 .section03 .flx-box_item:hover {
		opacity: 1;
	}
}
.free05 .section03 .flx-box_item_txt {
	width: 289px;
	height: 126px;
	margin: 0 auto -63px 0;
	background-color: #333;
	padding: 12px 5px 0 5px;
	display: block;
}

.free05 .section03 .flx-box_item_txt_wrap {
	width: 100%;
	color: #fff;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 1.5rem;
	line-height: 1.25;
}

.free05 .section03 .flx-box_item_txt_wrap .numb--01 {
	width: 23px;
	min-width: 23px;
	margin-right: 22px;
	margin-left: 15px;
}

.free05 .section03 .flx-box_item_txt_wrap .numb--02 {
	width: 28px;
	min-width: 28px;
	margin-right: 19px;
	margin-left: 13px;
}

.free05 .section03 .flx-box_item_txt_wrap .numb--03 {
	width: 28px;
	min-width: 28px;
	margin-right: 19px;
	margin-left: 13px;
}

.free05 .section03 .flx-box_item_txt_wrap .numb--04 {
	width: 29px;
	min-width: 29px;
	margin-right: 19px;
	margin-left: 12px;
}

.free05 .section03 .flx-box_item_txt_wrap .numb--05 {
	width: 28px;
	min-width: 28px;
	margin-right: 19px;
	margin-left: 13px;
}

.free05 .section03 .flx-box_item_img {
	width: 300px;
	display: block;
	margin: 0 0 0 auto;
}

@media screen and (max-width: 767px) {
	.free05 .section03 .flx-box_item_txt {
		width: 80.28%;
		min-height: 126px;
	}
	.free05 .section03 .flx-box_item_img {
		width: 83.334%;
	}
}
@media screen and (max-width: 358px) {
	.free05 .section03 .flx-box_item:nth-child(1) .flx-box_item_txt {
		margin-bottom: -53px;
	}
}
@media screen and (max-width: 338px) {
	.free05 .section03 .flx-box_item:nth-child(4) .flx-box_item_txt {
		margin-bottom: -53px;
	}
}
@media screen and (max-width: 321px) {
	.free05 .section03 .flx-box_item:nth-child(5) .flx-box_item_txt {
		margin-bottom: -53px;
	}
}
@media screen and (max-width: 312px) {
	.free05 .section03 .flx-box_item:nth-child(2) .flx-box_item_txt {
		margin-bottom: -53px;
	}
}
.free05 .section03 .section03_ttl {
	font-size: 3rem;
	line-height: 1.4;
	margin: 1px 0 0 auto;
	display: block;
	text-align: right;
}

.free05 .section03 .section03_ttl_eng {
	width: 808px;
	margin: 17px 1px 0 auto;
}

@media screen and (max-width: 767px) {
	.free05 .section03 .section03_ttl {
		font-size: 2rem;
		margin: 0 0 0 auto;
	}
	.free05 .section03 .section03_ttl_eng {
		width: 100%;
		margin-top: 10px;
	}
}
.free05 .section04 .btn_wrapper {
	width: 350px;
	margin: 35px auto 0;
}

.free05 .section04 .btn_wrapper:last-child {
	margin-top: 20px;
}

@media screen and (max-width: 767px) {
	.free05 .note {
		text-align: left;
	}
	.free05 .note br {
		display: none;
	}
	.free05 .section04 .btn_wrapper {
		width: auto;
		max-width: 300px;
		margin: 48px auto 0;
	}
}
.free05 .section04 .link {
	width: 100%;
	min-height: 56px;
	border: 3px solid #000;
	display: -ms-grid;
	display: grid;
	place-content: center;
	position: relative;
	font-size: 1.5rem;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	.free05 .section04 .link {
		border-width: 2px;
		font-size: 1.4rem;
	}
}
.free05 .section04 .link::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

@media (any-hover) {
	.free05 .section04 .link {
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.free05 .section04 .link:hover {
		opacity: 0.7;
	}
}
/* ----------------------------------------------------------------------------------------------------
*	free06
* --------------------------------------------------------------------------------------------------*/
.free06 {
	margin-top: -50px;
}
.free06 .ttl_wrapper {
	max-width: 930px;
	margin: 0 auto;
}
.free06 .ttl_wrapper .ttl {
	max-width: 700px;
	width: 100%;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.free06 .ttl_wrapper .ttl {
		max-width: 320px;
	}
}
.free06 .ttl_wrapper .text {
	font-size: 1.5rem;
	line-height: 1.8666666667;
}
@media screen and (max-width: 767px) {
	.free06 .ttl_wrapper .text {
		font-size: 1.4rem;
		line-height: 1.7142857143;
	}
}
.free06 .ttl_wrapper .text .notes {
	font-size: 1.3rem;
	line-height: 2.1538461538;
}
.free06 .sec01 .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-bottom: 70px;
	border-bottom: 1px solid #999999;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		border-bottom: 0;
		padding-bottom: 47px;
	}
}
.free06 .sec01 .box .text-box {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.free06 .sec01 .box .text-box .midashi {
	color: #009FE8;
	font-size: 2.4rem;
	line-height: 1.25;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .box .text-box .midashi {
		font-size: 2rem;
		line-height: 1.5;
	}
}
.free06 .sec01 .box .text-box .text {
	font-size: 1.5rem;
	line-height: 1.8666666667;
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .box .text-box .text {
		font-size: 1.4rem;
		line-height: 1.7142857143;
	}
}
.free06 .sec01 .box.box01 {
	margin-top: 65px;
	padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .box.box01 {
		padding-bottom: 20px;
	}
}
.free06 .sec01 .box.box01 .img {
	max-width: 440px;
	width: 40%;
	margin-right: 45px;
	margin-bottom: -100px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .box.box01 .img {
		margin: 20px auto 0;
		max-width: 260px;
		width: 80%;
	}
}
.free06 .sec01 .box.box01 .img::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 100px;
	background: #FFF;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .box.box01 .img::before {
		display: none;
	}
}
.free06 .sec01 .box.box01 .img img {
	position: relative;
	z-index: 1;
}
.free06 .sec01 .box.box01 .text-box {
	margin-top: 65px;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .box.box01 .text-box {
		margin-top: 0;
	}
}
.free06 .sec01 .box.box02 {
	padding-top: 125px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .box.box02 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		padding-top: 40px;
	}
}
.free06 .sec01 .box.box02 .img {
	max-width: 766px;
	width: 66%;
	margin-left: 40px;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .box.box02 .img {
		margin: 0 auto;
		max-width: 100%;
		width: 100%;
	}
}
.free06 .sec01 .clm3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin: 30px -75px 0;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .clm3 {
		display: block;
		margin: 0;
	}
}
.free06 .sec01 .clm3 .item {
	width: 33.333%;
	border-right: 1px solid #999999;
	padding: 60px 75px 20px;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .clm3 .item {
		width: auto;
		border-right: 0;
		padding: 46px 0;
		border-top: 1px solid #999999;
	}
}
.free06 .sec01 .clm3 .item:nth-child(3) {
	border-right: none;
}
.free06 .sec01 .clm3 .item .logo {
	height: 35px;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .clm3 .item .logo {
		text-align: center;
	}
}
.free06 .sec01 .clm3 .item .logo img {
	width: auto;
	height: 100%;
}
.free06 .sec01 .clm3 .item .text01 {
	margin-top: 15px;
	font-size: 1.5rem;
	line-height: 1.8666666667;
	min-height: 7.4666666668em;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .clm3 .item .text01 {
		font-size: 1.4rem;
		line-height: 1.7142857143;
		min-height: 1px;
		margin-top: 20px;
	}
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .clm3 .item .img {
		max-width: 270px;
		width: 80%;
		margin: 0 auto;
	}
}
.free06 .sec01 .clm3 .item .inbox {
	margin-top: 20px;
}
.free06 .sec01 .clm3 .item .inbox + .inbox {
	margin-top: 20px;
}
.free06 .sec01 .clm3 .item .inbox_img {
	max-width: 200px;
	width: 100%;
	margin: 0 auto;
}
.free06 .sec01 .clm3 .item .inbox_midashi {
	font-size: 1.7rem;
	font-weight: 700;
	text-align: center;
	margin-top: 10px;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .clm3 .item .inbox_midashi {
		font-size: 1.6rem;
		line-height: 1.5;
	}
}
.free06 .sec01 .clm3 .item .inbox_text {
	font-size: 1.5rem;
	line-height: 1.8666666667;
	margin-top: 10px;
	min-height: 11.2000000002em;
}
@media screen and (max-width: 767px) {
	.free06 .sec01 .clm3 .item .inbox_text {
		font-size: 1.4rem;
		line-height: 1.7142857143;
		min-height: inherit;
	}
}
.free06 .sec02 {
	margin-top: 30px;
	border-top: 1px solid #999999;
}
.free06 .sec02 .wrap {
	padding-bottom: 111px;
	border-bottom: 3px solid #000000;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .wrap {
		padding-bottom: 70px;
		border-bottom: 2px solid #000;
	}
}
.free06 .sec02 .ttl {
	max-width: 406px;
	margin: 0 auto;
	width: auto;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .ttl {
		max-width: 274px;
	}
}
.free06 .sec02 .check-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 30px;
}
.free06 .sec02 .check-list li {
	font-size: 2.4rem;
	color: #18BFAD;
	padding-left: 37px;
	position: relative;
	margin-top: 4px;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .check-list li {
		font-size: 2rem;
		line-height: 1.2;
	}
	.free06 .sec02 .check-list li + li {
		margin-top: 17px;
	}
}
.free06 .sec02 .check-list li::before {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	width: 26px;
	height: 26px;
	background: url(../img/free06/icon.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .check-list li::before {
		position: absolute;
		top: 2px;
		left: 1px;
		width: 24px;
		height: 24px;
	}
}
.free06 .sec02 .box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-bottom: 55px;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .box {
		display: block;
		padding-bottom: 0;
	}
}
.free06 .sec02 .box .text-box {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.free06 .sec02 .box .text-box .midashi {
	color: #EADB00;
	font-size: 2.4rem;
	line-height: 1.25;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .box .text-box .midashi {
		font-size: 2rem;
		line-height: 1.2;
	}
}
.free06 .sec02 .box .text-box .text {
	font-size: 1.5rem;
	line-height: 1.8666666667;
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .box .text-box .text {
		font-size: 1.4rem;
		line-height: 1.7142857143;
	}
}
.free06 .sec02 .box .text-box .notes {
	font-size: 1.3rem;
	line-height: 2.1538461538;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .box .text-box .notes {
		font-size: 1.2rem;
		line-height: 2;
	}
}
.free06 .sec02 .box.box01 {
	margin: 80px auto 0;
	max-width: 930px;
}
.free06 .sec02 .box.box01 .midashi {
	text-align: center;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .box.box01 .midashi {
		text-align: left;
	}
}
.free06 .sec02 .box.box02 {
	margin-top: 50px;
}
.free06 .sec02 .box.box02 .img {
	max-width: 600px;
	width: 50%;
	margin-left: 20px;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .box.box02 .img {
		width: 100%;
		max-width: 100%;
		margin: 10px auto 0;
	}
}
.free06 .sec02 .box.box02 .caption {
	font-size: 1.3rem;
	line-height: 2.1538461538;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .box.box02 .caption {
		font-size: 1.2rem;
		line-height: 2.3333333333;
	}
}
.free06 .sec02 .box.box04, .free06 .sec02 .box.box03 {
	width: 50%;
	display: block;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .box.box04, .free06 .sec02 .box.box03 {
		width: 100%;
		margin-top: 40px;
	}
}
.free06 .sec02 .box.box04 > *, .free06 .sec02 .box.box03 > * {
	width: auto;
	margin: 0 auto;
}
.free06 .sec02 .box.box04 .img, .free06 .sec02 .box.box03 .img {
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .box.box04 .img, .free06 .sec02 .box.box03 .img {
		margin-top: 5px;
	}
}
.free06 .sec02 .box.box04 .gray-box, .free06 .sec02 .box.box03 .gray-box {
	font-size: 1.5rem;
	line-height: 1.8666666667;
	background: #EDEDED;
	border-radius: 20px;
	margin-top: 10px;
	padding: 10px 20px;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .box.box04 .gray-box, .free06 .sec02 .box.box03 .gray-box {
		font-size: 1.4rem;
		line-height: 1.7142857143;
		padding: 15px;
	}
}
.free06 .sec02 .box.box03 {
	width: 48%;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .box.box03 {
		width: 100%;
	}
}
.free06 .sec02 .clm2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .clm2 {
		display: block;
	}
}
.free06 .sec02 .item-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: -30px;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .item-img {
		margin-top: 53px;
	}
}
.free06 .sec02 .item-img img {
	width: 300px;
	margin: 0 25px;
}
@media screen and (max-width: 767px) {
	.free06 .sec02 .item-img img {
		max-width: 215px;
		width: 62%;
		margin: 0 -5%;
	}
}
.free06 .btn_wrapper {
	max-width: 350px;
	margin: 70px auto 0;
}
.free06 .link {
	width: 100%;
	min-height: 56px;
	border: 3px solid #000;
	display: -ms-grid;
	display: grid;
	place-content: center;
	position: relative;
	font-size: 1.5rem;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.free06 .link {
		border-width: 2px;
		font-size: 1.4rem;
	}
}
.free06 .link::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
@media (any-hover) {
	.free06 .link {
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.free06 .link:hover {
		opacity: 0.7;
	}
}

/* privacy
--------------------------------*/
.privacy-page {
	padding: 72px 0 0;
}

@media screen and (max-width: 767px) {
	.privacy-page {
		padding: 60px 0 0;
	}
}
.privacy-page .privacy_box {
	max-width: 1000px;
	margin: 70px auto 0;
}

@media screen and (min-width: 768px) {
	.privacy-page .privacy_box .tel-link {
		pointer-events: none;
	}
}
.privacy-page .privacy_box a:hover {
	text-decoration: underline;
}

.privacy-page .privacy_box p {
	line-height: 2;
	margin-top: 2em;
}

@media screen and (max-width: 767px) {
	.privacy-page .privacy_box p {
		font-size: 1.4rem;
	}
}
.privacy-page .privacy_box p:first-child {
	margin-top: 0;
}

.privacy-page .privacy_box ol {
	margin-top: 2em;
}

.privacy-page .privacy_box ol:first-child {
	margin-top: 0;
}

.privacy-page .privacy_box ol > li {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 2;
	margin-top: 2em;
}

@media screen and (max-width: 767px) {
	.privacy-page .privacy_box ol > li {
		font-size: 1.4rem;
	}
}
.privacy-page .privacy_box ol > li:first-child {
	margin-top: 0;
}

.privacy-page .privacy_box ul {
	margin-top: 2em;
}

.privacy-page .privacy_box ul:first-child {
	margin-top: 0;
}

.privacy-page .privacy_box ul > li {
	line-height: 2;
	padding-left: 1em;
	text-indent: -1em;
}

@media screen and (max-width: 767px) {
	.privacy-page .privacy_box ul > li {
		font-size: 1.4rem;
	}
}
.privacy-page .privacy_box ul > li:first-child {
	margin-top: 0;
}

/* company tradelaw
--------------------------------*/
.company-page,
.tradelaw-page {
	padding: 72px 0 0;
}

@media screen and (max-width: 767px) {
	.company-page,
	.tradelaw-page {
		padding: 60px 0 0;
	}
}
.company-page .company_box,
.company-page .tradelaw_box,
.tradelaw-page .company_box,
.tradelaw-page .tradelaw_box {
	max-width: 1000px;
	margin: 70px auto 0;
}

@media screen and (max-width: 767px) {
	.company-page .company_box .table-scroll,
	.company-page .tradelaw_box .table-scroll,
	.tradelaw-page .company_box .table-scroll,
	.tradelaw-page .tradelaw_box .table-scroll {
		width: 100%;
		overflow-x: scroll;
	}
	.company-page .company_box .table-scroll-text,
	.company-page .tradelaw_box .table-scroll-text,
	.tradelaw-page .company_box .table-scroll-text,
	.tradelaw-page .tradelaw_box .table-scroll-text {
		font-size: 1.3rem;
		text-align: center;
		margin-top: 10px;
	}
}
.company-page .company_box table,
.company-page .tradelaw_box table,
.tradelaw-page .company_box table,
.tradelaw-page .tradelaw_box table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #000000;
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	.company-page .company_box table,
	.company-page .tradelaw_box table,
	.tradelaw-page .company_box table,
	.tradelaw-page .tradelaw_box table {
		margin-top: 25px;
	}
}
.company-page .company_box table th,
.company-page .company_box table td,
.company-page .tradelaw_box table th,
.company-page .tradelaw_box table td,
.tradelaw-page .company_box table th,
.tradelaw-page .company_box table td,
.tradelaw-page .tradelaw_box table th,
.tradelaw-page .tradelaw_box table td {
	height: 50px;
	border: 1px solid #000000;
	padding: 5px 10px;
	vertical-align: middle;
}

.company-page .company_box table th.top,
.company-page .company_box table td.top,
.company-page .tradelaw_box table th.top,
.company-page .tradelaw_box table td.top,
.tradelaw-page .company_box table th.top,
.tradelaw-page .company_box table td.top,
.tradelaw-page .tradelaw_box table th.top,
.tradelaw-page .tradelaw_box table td.top {
	padding-top: 12px;
	vertical-align: top;
}

@media screen and (max-width: 767px) {
	.company-page .company_box table th,
	.company-page .company_box table td,
	.company-page .tradelaw_box table th,
	.company-page .tradelaw_box table td,
	.tradelaw-page .company_box table th,
	.tradelaw-page .company_box table td,
	.tradelaw-page .tradelaw_box table th,
	.tradelaw-page .tradelaw_box table td {
		font-size: 1.4rem;
		white-space: nowrap;
	}
	.company-page .company_box table th.top,
	.company-page .company_box table td.top,
	.company-page .tradelaw_box table th.top,
	.company-page .tradelaw_box table td.top,
	.tradelaw-page .company_box table th.top,
	.tradelaw-page .company_box table td.top,
	.tradelaw-page .tradelaw_box table th.top,
	.tradelaw-page .tradelaw_box table td.top {
		padding-top: 14px;
	}
}
.company-page .company_box table th,
.company-page .tradelaw_box table th,
.tradelaw-page .company_box table th,
.tradelaw-page .tradelaw_box table th {
	color: #FFFFFF;
	background: #666666;
}

.company-page .company_box table td,
.company-page .tradelaw_box table td,
.tradelaw-page .company_box table td,
.tradelaw-page .tradelaw_box table td {
	background: #f2f2f2;
}

.company-page .company_box table td .notes,
.company-page .tradelaw_box table td .notes,
.tradelaw-page .company_box table td .notes,
.tradelaw-page .tradelaw_box table td .notes {
	font-size: 1.2rem;
}

.company-page .company_box table td:last-child,
.company-page .tradelaw_box table td:last-child,
.tradelaw-page .company_box table td:last-child,
.tradelaw-page .tradelaw_box table td:last-child {
	text-align: center;
}

.company-page .company_box table tr.blue td,
.company-page .tradelaw_box table tr.blue td,
.tradelaw-page .company_box table tr.blue td,
.tradelaw-page .tradelaw_box table tr.blue td {
	background: #f0f9ff;
}

.company-page .company_box dl > div,
.company-page .tradelaw_box dl > div,
.tradelaw-page .company_box dl > div,
.tradelaw-page .tradelaw_box dl > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
}

.company-page .company_box dl > div dt,
.company-page .company_box dl > div dd,
.company-page .tradelaw_box dl > div dt,
.company-page .tradelaw_box dl > div dd,
.tradelaw-page .company_box dl > div dt,
.tradelaw-page .company_box dl > div dd,
.tradelaw-page .tradelaw_box dl > div dt,
.tradelaw-page .tradelaw_box dl > div dd {
	line-height: 2;
	vertical-align: top;
	padding: 25px 5px 25px 15px;
	border-top: 2px solid #999999;
}

@media screen and (min-width: 768px) {
	.company-page .company_box dl > div dt a:hover,
	.company-page .company_box dl > div dd a:hover,
	.company-page .tradelaw_box dl > div dt a:hover,
	.company-page .tradelaw_box dl > div dd a:hover,
	.tradelaw-page .company_box dl > div dt a:hover,
	.tradelaw-page .company_box dl > div dd a:hover,
	.tradelaw-page .tradelaw_box dl > div dt a:hover,
	.tradelaw-page .tradelaw_box dl > div dd a:hover {
		text-decoration: underline;
	}
	.company-page .company_box dl > div dt .tel-link,
	.company-page .company_box dl > div dd .tel-link,
	.company-page .tradelaw_box dl > div dt .tel-link,
	.company-page .tradelaw_box dl > div dd .tel-link,
	.tradelaw-page .company_box dl > div dt .tel-link,
	.tradelaw-page .company_box dl > div dd .tel-link,
	.tradelaw-page .tradelaw_box dl > div dt .tel-link,
	.tradelaw-page .tradelaw_box dl > div dd .tel-link {
		pointer-events: none;
	}
}
.company-page .company_box dl > div dt ul li,
.company-page .company_box dl > div dd ul li,
.company-page .tradelaw_box dl > div dt ul li,
.company-page .tradelaw_box dl > div dd ul li,
.tradelaw-page .company_box dl > div dt ul li,
.tradelaw-page .company_box dl > div dd ul li,
.tradelaw-page .tradelaw_box dl > div dt ul li,
.tradelaw-page .tradelaw_box dl > div dd ul li {
	line-height: 2;
	padding-left: 1em;
	text-indent: -1em;
}

@media screen and (max-width: 767px) {
	.company-page .company_box dl > div dt,
	.company-page .company_box dl > div dd,
	.company-page .tradelaw_box dl > div dt,
	.company-page .tradelaw_box dl > div dd,
	.tradelaw-page .company_box dl > div dt,
	.tradelaw-page .company_box dl > div dd,
	.tradelaw-page .tradelaw_box dl > div dt,
	.tradelaw-page .tradelaw_box dl > div dd {
		font-size: 1.4rem;
		padding: 25px 0;
		display: block;
		border-top-color: #999999;
		border-bottom-color: solid #999999;
	}
}
.company-page .company_box dl > div dt,
.company-page .tradelaw_box dl > div dt,
.tradelaw-page .company_box dl > div dt,
.tradelaw-page .tradelaw_box dl > div dt {
	font-weight: 700;
	width: 210px;
	border-top-color: #000000;
	border-bottom-color: #000000;
	padding-left: 50px;
}

@media screen and (max-width: 767px) {
	.company-page .company_box dl > div dt,
	.company-page .tradelaw_box dl > div dt,
	.tradelaw-page .company_box dl > div dt,
	.tradelaw-page .tradelaw_box dl > div dt {
		width: 100%;
		padding-left: 0;
		border-top-color: #999999;
		border-bottom-color: solid #999999;
		border-bottom: 0;
		padding-bottom: 0;
		position: relative;
	}
	.company-page .company_box dl > div dt::before,
	.company-page .tradelaw_box dl > div dt::before,
	.tradelaw-page .company_box dl > div dt::before,
	.tradelaw-page .tradelaw_box dl > div dt::before {
		content: "";
		position: absolute;
		top: -2px;
		left: 0;
		width: 100px;
		height: 2px;
		background: #000000;
	}
}
.company-page .company_box dl > div dd,
.company-page .tradelaw_box dl > div dd,
.tradelaw-page .company_box dl > div dd,
.tradelaw-page .tradelaw_box dl > div dd {
	padding-left: 50px;
	width: calc(100% - 210px);
}

@media screen and (max-width: 767px) {
	.company-page .company_box dl > div dd,
	.company-page .tradelaw_box dl > div dd,
	.tradelaw-page .company_box dl > div dd,
	.tradelaw-page .tradelaw_box dl > div dd {
		width: 100%;
		padding-top: 0;
		padding-left: 0;
		border-top: 0;
		border-bottom: 0;
	}
}
.company-page .company_box dl > div dd .google_button,
.company-page .tradelaw_box dl > div dd .google_button,
.tradelaw-page .company_box dl > div dd .google_button,
.tradelaw-page .tradelaw_box dl > div dd .google_button {
	display: inline-block;
	border: 1px solid #707070;
	padding: 0.1em 0.6em;
	margin-top: 10px;
	text-decoration: none !important;
}

@media screen and (min-width: 768px) {
	.company-page .company_box dl > div dd .google_button,
	.company-page .tradelaw_box dl > div dd .google_button,
	.tradelaw-page .company_box dl > div dd .google_button,
	.tradelaw-page .tradelaw_box dl > div dd .google_button {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.company-page .company_box dl > div dd .google_button:hover,
	.company-page .tradelaw_box dl > div dd .google_button:hover,
	.tradelaw-page .company_box dl > div dd .google_button:hover,
	.tradelaw-page .tradelaw_box dl > div dd .google_button:hover {
		opacity: 0.7;
	}
}
.company-page .company_box dl > div dd .google_button:hover,
.company-page .tradelaw_box dl > div dd .google_button:hover,
.tradelaw-page .company_box dl > div dd .google_button:hover,
.tradelaw-page .tradelaw_box dl > div dd .google_button:hover {
	text-decoration: none;
}

.company-page .company_box dl > div:last-child dt,
.company-page .tradelaw_box dl > div:last-child dt,
.tradelaw-page .company_box dl > div:last-child dt,
.tradelaw-page .tradelaw_box dl > div:last-child dt {
	border-bottom: 2px solid #000000;
}

@media screen and (max-width: 767px) {
	.company-page .company_box dl > div:last-child dt,
	.company-page .tradelaw_box dl > div:last-child dt,
	.tradelaw-page .company_box dl > div:last-child dt,
	.tradelaw-page .tradelaw_box dl > div:last-child dt {
		border-bottom: 0;
	}
}
.company-page .company_box dl > div:last-child dd,
.company-page .tradelaw_box dl > div:last-child dd,
.tradelaw-page .company_box dl > div:last-child dd,
.tradelaw-page .tradelaw_box dl > div:last-child dd {
	border-bottom: 2px solid #999999;
	position: relative;
}

@media screen and (max-width: 767px) {
	.company-page .company_box dl > div:last-child dd::before,
	.company-page .tradelaw_box dl > div:last-child dd::before,
	.tradelaw-page .company_box dl > div:last-child dd::before,
	.tradelaw-page .tradelaw_box dl > div:last-child dd::before {
		content: "";
		position: absolute;
		bottom: -2px;
		left: 0;
		width: 100px;
		height: 2px;
		background: #000000;
	}
}
@media screen and (min-width: 768px) {
	.tradelaw-page .tradelaw_box dl > div dt {
		padding-left: 10px;
	}
}
/* tarms
--------------------------------*/
.terms-page {
	padding: 72px 0 0;
}

@media screen and (max-width: 767px) {
	.terms-page {
		padding: 60px 0 0;
	}
}
.terms-page .terms_box {
	max-width: 1000px;
	margin: 70px auto 0;
}

.terms-page .terms_box .title {
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.terms-page .terms_box .title {
		font-size: 1.6rem;
	}
}
.terms-page .terms_box .text {
	line-height: 2;
	margin-top: 2em;
}

@media screen and (max-width: 767px) {
	.terms-page .terms_box .text {
		font-size: 1.4rem;
	}
}
.terms-page .terms_box dl {
	margin-top: 2em;
}

.terms-page .terms_box dl dt {
	font-weight: 700;
	margin-top: 2em;
	line-height: 2;
}

@media screen and (max-width: 767px) {
	.terms-page .terms_box dl dt {
		font-size: 1.4rem;
	}
}
.terms-page .terms_box dl dd {
	line-height: 2;
}

@media screen and (max-width: 767px) {
	.terms-page .terms_box dl dd {
		font-size: 1.4rem;
	}
}
.terms-page .terms_box ol {
	padding-left: 1em;
}

.terms-page .terms_box ol li {
	line-height: 2;
	padding-left: 1em;
	text-indent: -1em;
}

@media screen and (max-width: 767px) {
	.terms-page .terms_box ol li {
		font-size: 1.4rem;
	}
}
.terms-page .terms_box ol li ol {
	padding-left: 0;
}

/* margin
--------------------------------*/
.-mt10 {
	margin-top: 10px;
}

.-mt20 {
	margin-top: 20px;
}

.-mt30 {
	margin-top: 30px;
}

.-mt40 {
	margin-top: 40px;
}

.-mt50 {
	margin-top: 50px;
}

.-mt60 {
	margin-top: 60px;
}

.-mt70 {
	margin-top: 70px;
}

.-mt80 {
	margin-top: 80px;
}

.-mt90 {
	margin-top: 90px;
}

.-mt100 {
	margin-top: 100px;
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.footer {
	padding: 40px 0 30px;
	background: #000000;
}

@media screen and (max-width: 767px) {
	.footer {
		padding: 40px 0 40px;
	}
}
.footer .footer-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.footer .footer-top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
}
@media screen and (max-width: 767px) {
	.footer .footer-top .logo {
		width: 100%;
		max-width: 372px;
		margin: 0 auto 0;
	}
}
.footer .footer-top .sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

@media screen and (max-width: 767px) {
	.footer .footer-top .sns {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 100%;
		max-width: 360px;
		margin: 0 auto;
	}
}
.footer .footer-top .sns li {
	margin-left: 25px;
}

@media screen and (max-width: 767px) {
	.footer .footer-top .sns li {
		margin-left: 0;
		width: 54px;
	}
}
@media screen and (min-width: 768px) {
	.footer .footer-top .sns li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.footer .footer-top .sns li a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px) {
	.footer .company {
		display: block;
		margin-top: 70px;
	}
}
.footer .company li {
	margin-top: 20px;
	text-align: right;
}

@media screen and (max-width: 767px) {
	.footer .company li {
		text-align: right;
		margin: 25px 0 0 auto;
	}
	.footer .company li:first-child {
		margin-top: 0;
	}
	.footer .company li img {
		width: auto;
	}
}
@media screen and (min-width: 768px) {
	.footer .company li a {
		-webkit-transition: opacity 0.3s;
		transition: opacity 0.3s;
		cursor: pointer;
	}
	.footer .company li a:hover {
		opacity: 0.7;
	}
}
.footer .navi {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 97px;
}

@media screen and (max-width: 767px) {
	.footer .navi {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 40px;
	}
}
.footer .navi li {
	font-size: 1.3rem;
	color: #FFFFFF;
}

@media screen and (max-width: 767px) {
	.footer .navi li {
		font-size: 1.2rem;
	}
}
.footer .navi li a:hover {
	text-decoration: underline;
}

.footer .navi li::after {
	content: "／";
	margin: 0 10px;
	display: inline-block;
}

.footer .navi li:last-child::after {
	display: none;
}

.footer .copyright {
	font-size: 1.4rem;
	color: #FFFFFF;
	text-align: center;
	margin-top: 10px;
	letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
	.footer .copyright {
		font-size: 1.2rem;
		margin-top: 30px;
	}
}
/* ------------------------------
	clearfix
------------------------------ */
.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
	height: 1%;
}

.cf {
	display: block;
}

/* End Hack */