@CHARSET "UTF-8";
/* Font */
@font-face {
	font-family: "NotoSansJP";
	src: url("../fonts/NotoSansJP-VariableFont_wght.ttf") format("truetype");
}
/* Common */
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	font-family: "NotoSansJP", "游ゴシック", "YuGothic";
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}
html,
body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	width: 100%;
	background: #fff;
	line-height: 1.5;
	font-weight: 600 !important;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
	color: #333333;
	font-size: 16px;
	text-align: left;
	overflow-wrap: break-word;
	word-wrap: break-word;
	overflow-x: hidden;
	margin: 0 auto;
	text-align: center;
}
p,
li,
span,
label {
	font-family: "NotoSansJP", "游ゴシック", "YuGothic";
}
small {
	line-height: 1.2;
	font-size: .8rem;
	font-weight: 500;
}
strong {
	font-weight: 600;
}
ul,
ol,
li {
	list-style: none;
}
/* Chrome/Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
/* FireFox/IE */
input[type="number"] {
	-moz-appearance:textfield;
}
a {
	text-decoration: none;
	color: #333333;
	font-weight: 600;
}
a:hover,
button:hover {
	opacity: 0.7;
}
textarea {
	resize: none;
	height: 100px;
}
img {
	width: 100%;
}
.readonly:focus {
	outline: none;
}
.inline-block {
	display: inline-block;
}
.color-red {
	color: #b22222;
}
.color-white {
	color: #fff;
}
.color-blue {
	color: #5875a7;
}
.font-bold {
	font-weight: bold;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.center {
	text-align: center;
}
.hide {
	display: none;
}
.w80 {
	width: 80px;
}
.w150 {
	width: 150px;
}
.w200 {
	width: 200px;
}
.w250 {
	width: 250px;
}
.mt_10 {
	margin-top: 10px;
}
.mt_20 {
	margin-top: 20px;
}
.mt_50 {
	margin-top: 50px;
}
.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_50 {
	margin-bottom: 50px;
}
.only-pc {
	display: block;
}
.only-sp {
	display: none;
}
@media only screen and (max-width: 768px) {
	.only-pc {
		display: none;
	}
	.only-sp {
		display: block;
	}
}

/* Header */
header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 0;
}
header img {
	width: 50px;
}
header h1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px;
}
header h1 p,
header h1 small {
	font-weight: 600;
}
header h1 p {
	font-size: 1.5rem;
}
@media only screen and (max-width: 960px) {
	
}
@media only screen and (max-width: 768px) {
	header h1 p {
		font-size: 1.3rem;
	}
}
@media only screen and (max-width: 428px) {
	
}

/* Menu */
#g-nav {
	/*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
	position: fixed;
	z-index: -1;
	opacity: 0; /*はじめは透過0*/
	/*ナビの位置と形状*/
	top: 0;
	width: 100%;
	height: 100vh; /*ナビの高さ*/
	background: #ededed;
	/*動き*/
	transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
	opacity: 1;
	z-index: 999;
}
/*ナビゲーション*/
#g-nav ul {
	display: none;
	/*ナビゲーション天地中央揃え*/
	position: absolute;
	z-index: 999;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}
#g-nav.panelactive ul {
	display: block;
}
/*リストのレイアウト設定*/
#g-nav li {
	list-style: none;
	text-align: center; 
}
#g-nav li a {
	color: #333333;
	text-decoration: none;
	padding: 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
	position: fixed;
	z-index: 9999;/*ボタンを最前面に*/
	top: 18px;
	right: 8px;
	cursor: pointer;
	width: 58px;
	height: 50px;
}
/*×に変化*/  
.openbtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 3px;
	border-radius: 2px;
	background-color: #333333;
	width: 45%;
}
.openbtn span:nth-of-type(1) {
	top: 15px; 
}
.openbtn span:nth-of-type(2) {
	top: 23px;
}
.openbtn span:nth-of-type(3) {
	top: 31px;
}
.openbtn.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 40%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 40%;
}
@media only screen and (max-width: 428px) {
	.openbtn {
		right: 0;
	}
}

/* Footer */
footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #5875a7;
	padding: 10px 0 70px;
	margin: 50px 0 0;
}
footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 15px 0;
}
footer ul li {
	padding: 8px 10px;
}
footer ul li,
footer ul li a,
footer p small {
	color: #f7f7f7;
	font-size: 14px;
	font-weight: 500;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	footer ul li { 
		width: 50%;
	}
	footer p small {
		font-size: 12px;
	}
}
@media only screen and (max-width: 428px) {
	
}

/* Slide Bar */
.slide_bar {
	position: fixed;
	bottom: 0;
	z-index: 100;
	width: 100%;
	border-top: solid 2px #fff;
}
.slide_bar ul {
	display: flex;
}
.slide_bar ul li {
	width: calc(100% / 2);
	padding: 15px;
	text-align: center;
}
.slide_bar ul li:last-child {
	border-left: solid 2px #fff;
}
.slide_bar ul li.mail {
	background: #ededed;
}
.slide_bar ul li.order {
	background: #38437b;
	color: #f7f7f7;
}
.slide_bar ul li a {
	display: block;
}
.slide_bar ul li.order a {
	color: #f7f7f7;
}
@media only screen and (max-width: 960px) {
	
}
@media only screen and (max-width: 768px) {
	.slide_bar ul li {
		padding: 15px 8px;
		font-size: 0.8rem;
	}
}
@media only screen and (max-width: 428px) {
	
}

/* Title */
h2 {
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin: 30px 0;
}
h3 {
	position: relative;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	margin: 50px 0 30px;
	padding-top: 20px;
}
h3::after {
	content: '';
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 70px;
	height: 3px;
	background-color: #312f2f;
}
h3 small,
h3 p {
	font-weight: 600;
}
h4 {
	padding: 8px 10px;
	margin: 15px auto 10px;
	text-align: left;
	max-width: 1000px;
	background: #38437b;
	color: #ffda00;
}
@media only screen and (max-width: 960px) {
	
}
@media only screen and (max-width: 768px) {
	h2 {
		margin: 0 0 20px;
	}
}
@media only screen and (max-width: 428px) {
	
}

/* button */
.button {
	width: 300px;
	margin: 30px auto;
}
.button a,
.button button {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: #38437b;
	border-radius: 8px;
	box-sizing: border-box;
	height: 60px;
	padding: 0 25px;
	margin: 0 auto 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	position: relative;
	cursor: pointer;
	border: none;
}
.button a div,
.button button div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #ffda00;
}
.button a div span,
.button button div span {
	color: #38437b;
	font-size: 18px;
	margin-left: 3px;
}
.button a p,
.button button p {
	color: #ffda00;
	width: 200px;
	font-weight: 600;
	margin-left: 10px;
}
.link {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 750px;
	margin: 0 auto;
}
.link a div {
	background: #ededed;
	border-radius: 8px;
	color: #333333;
	padding: 20px 36px;
	margin: 5px 10px;
	font-weight: 600;
	box-shadow: 0 2px 6px gray;
}

/* Content */
.main {
	max-width: 1000px;
	margin: 10px auto;
}
.example ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.example ul li {
	width: calc(100% / 4 - 6px);
	margin: 3px;
}
.example ul li p {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 8px;
	padding: 15px 5px;
	height: 80px;
	background: #F7F7F7;
	border-radius: 30px;
}
.example ul li p:before {
	content: "";
	position: absolute;
	right: 50px;
	bottom: -40px;
	width: 13px;
	height: 12px;
	background: #F7F7F7;
	border-radius: 50%;
}
.example ul li p:after {
	content: "";
	position: absolute;
	right: 35px;
	bottom: -25px;
	width: 20px;
	height: 18px;
	background: #F7F7F7;
	border-radius: 50%;
}
.example ul li p span {
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: bold;
}
.step {
	max-width: 750px;
	margin: 20px auto;
}
.point {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 750px;
	margin: 0 auto 20px;
}
.point ul {
	display: flex;
	align-items: center;
	padding: 10px 0;
	width: 100%;
	border-top: solid 2px #efefef;
}
.point ul:last-child {
	border-bottom: solid 2px #efefef;
}
.point ul li {
	display: flex;
	flex-direction: column;
	padding: 10px;
}
.point ul li:first-child {
	align-items: center;
	width: 40%;
}
.point ul li:last-child {
	align-items: flex-start;
	padding-left: 30px;
	width: 60%;
	border-left: solid 2px #efefef;
}
.point ul li:first-child p:first-child {
	padding: 5px 0;
	width: 70%;
	background: #ffda00;
	border-radius: 20px;
	color: #38437b;
	font-weight: 700;
}
.point ul li:first-child p:last-child {
	margin-top: 10px;
	color: #38437b;
	font-size: 20px;
	font-weight: bold;
}
.reviews {
	max-width: 750px;
	margin: 0 auto;
}
.balloon {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin: 10px 0;
}
.balloon .faceicon {
	max-width: 100px;
	width: 20%;
}
.balloon .faceicon img {
	width: 100%;
	height: auto;
}
.balloon .chatting {
	width: 80%;
	margin: 5px 0 0 15px;
}
.says {
	position: relative; 
	width: 100%;
	padding: 17px 13px;
	border-radius: 12px;
	background: #f9f1c4;
}
.says:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 18px; 
	left: -24px;
	border: 12px solid transparent;
	border-right: 12px solid #f9f1c4;
}
.says p {
	margin: 0;
	padding: 10px;
	text-align: left;
}
.says p.user {
	border-top: solid 1px #595959;
	text-align: right;
}
.faq {
	width: 90%;
	margin: 10px auto 50px;
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #312f2f;
}
.faq li {
	width: 100%;
	border-top: 1px solid #312f2f;
}
.faq li .question {
	display: flex;
	align-items: center;
	position: relative;
	min-height: 73px;
	height: auto;
	padding: 18px 30px 18px 24px;
	cursor: pointer;
	text-align: left;
}
.faq li .question:before {
	position: absolute;
	left: 0;
	width: 40px;
	height: 40px;
	background: #38437b;
	border-radius: 50%;
	color: #ffda00;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	content: 'Q';
}
.faq li .question p {
	margin-left: 30px;
	color: #312f2f;
	font-weight: 700;
}
.faq li .question .icon {
	display: block;
	position: absolute;
	top: 38px;
	right: 20px;
	width: 10px;
	height: 10px;
	margin-top: -5px;
}
.faq li .question .icon:before,
.faq li .question .icon:after {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 2px;
	margin-top: -1px;
	background: #38437b;
	content: '';
}
.faq li .question .icon:after {
	transform: rotate(90deg);
}
.faq li .question.-active .icon:after {
	opacity: 0;
}
.faq li .answer {
	display: none;
	position: relative;
	margin-top: 0;
	padding-bottom: 34px;
	padding-left: 24px;
}
.faq li .answer.js-active {
	display: block;
}
.faq li .answer {
	padding-right: 40px;
	padding-bottom: 20px;
	letter-spacing: -.3px;
}
.faq li .answer:before {
	position: absolute;
	left: 0;
	width: 40px;
	height: 40px;
	color: #38437b;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	content: 'A';
}
.faq li .answer p,
.faq li .answer a {
	display: block;
	width: 95%;
	margin-left: 30px;
	padding: 5px 0;
	text-align: left;
}
.faq li .answer p:first-child {
	padding: 0;
}
.faq li .answer a {
	margin-top: 5px;
	text-decoration: underline;
}
@media only screen and (max-width: 960px) {
	
}
@media only screen and (max-width: 768px) {
	.example ul li {
		width: calc(100% / 2 - 6px);
	}
	.point {
		width: 100%;
	}
	.point ul li {
		font-size: 14px;
		padding: 3px;
	}
	.point ul li:last-child {
		padding-left: 15px;
	}
	.point ul li:first-child p:last-child {
		margin-top: 5px;
	}
	.point ul li:first-child p:last-child {
		font-size: 18px;
	}
	.reviews {
		margin: 0 15px;
	}
	.says {
		padding: 7px 3px;
	}
	.example p,
	.says p {
		font-size: 14px;
	}
}
@media only screen and (max-width: 428px) {
	.example ul li p span {
		font-size: 11px;
	}
	.point ul li { 
		padding: 0;
	}
	.point ul li:first-child {
		width: 35%;
	}
	.point ul li:last-child {
		padding-left: 8px;
	}
	.point ul li:last-child p {
		font-size: 11px;
	}
	.says p {
		font-size: 12px;
	}
	.anchorlink li {
		margin: 10px 5px;
		width: calc(100%/2 - 20px);
	}
	.anchorlink li a {
		font-size: 13px;
	}
	.reason p,
	.faq li .question,
	.faq li .answer {
		font-size: 14px;
	}
}
@media only screen and (max-width: 375px) {
	.example ul li p:before {
		right: 30px;
		bottom: -40px;
	}
	.example ul li p:after {
		right: 20px;
		bottom: -25px;
	}
	.example ul li p span {
		font-size: 9px;
	}
}

/* info */
.info {
	max-width: 980px;
	margin: 10px auto 0;
	padding: 15px;
	text-align: center;
	border: solid 1px #b22222;
}
.info h2 {
	margin: 15px 0;
}
.info div {
	width: 80%;
	margin: 0 auto;
	text-align: left;
}
.info p {
	margin-top: 15px;
}
@media only screen and (max-width: 960px) {
	
}
@media only screen and (max-width: 768px) {
	.info {
		margin: 10px auto;
	}
	.info p {
		font-size: 0.8rem;
	}
}
@media only screen and (max-width: 428px) {
	
}



