@charset "utf-8";

/***********************************************
PC
************************************************/

/* ======== 共通 ======== */
.row {
	padding: 0 24px;
	margin: auto;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.5;
	margin: auto;
	background: #FFF;
}
img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
a {
	color: #0066ff;
	font-weight: bold;
}
a:hover {
	text-decoration: none;
}
a img {
    transition: 0.3s;
}
a img:hover {
    opacity: 0.8;
    transition: 0.3s;
}

/* ======== コンテンツ ======== */
.wrapper {
	width: 100%;
	background: #f5f5f5;
}
main {
	width: 500px;
	margin: auto;
	background: #FFF;
	position: relative;
}
.fv {

}
.fv .mv {
	position: relative;
}
.fv .mv .price {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	padding: 0 24px;
}
.bnr-area {
	padding: 35px 0;
}
.bnr-area .attention {
	margin-top: 30px;
	text-align: center;
}
.bnr-area .attention img {
	width: 85%;
}
.cv-area {
	background: #FFF;
	padding: 30px 0;
}
.sec05 {
	padding-bottom: 50px;
}
.sec05 .item {
	margin-bottom: 50px;
}
.sec05 .item .head {
	background: #e19176;
	padding: 30px 40px;
	border-radius: 15px;
	position: relative;
	cursor: pointer;
}
.sec05 .item .head::after {
	content: "";
	background-image: url(../img/ico-ac-plus01.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 35px;
	height: 35px;
	display: block;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}
.sec05 .item.open .head::after {
	background-image: url(../img/ico-ac-minus01.png);
}
.sec05 .item .head img {
	width: 480px;
}
.sec05 .item.open .head {
	border-radius: 15px 15px 0 0;
}
.sec05 .item .inner {
	padding: 50px;
	border: 1.5px solid #ccc;
	border-top: none;
	border-radius: 0 0 15px 15px;
}
.sec05 .item.open .inner {
	display: block;
}
.sec05 .item:not(.open) .inner {
    display: none;
}
.sec07 {
	background: #fafafa;
	padding-bottom: 50px;
}
.sec07 .row img {
	margin-bottom: 50px;
}
.sec08 .toggle-area {
	margin: 25px 0;
}
.sec08 .item .head {
	position: relative;
	cursor: pointer;
}
.sec08 .item .head::after {
	content: "";
	background-image: url(../img/ico-ac-plus02.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 35px;
	height: 35px;
	display: block;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}
.sec08 .item.open .head::after {
	background-image: url(../img/ico-ac-minus02.png);
}
.sec09,
.sec10 {
	background: #fafafa;
}
.sec09 dt {
	font-size: 25px;
	font-weight: bold;
	color: #e07c81;
	margin-top: 50px;
	padding-bottom: 15px;
	padding-right: 40px;
	border-bottom: 2px dotted #e07c81;
	position: relative;
	cursor: pointer;
}
.sec09 dd {
	font-size: 20px;
	font-weight: bold;
	margin-top: 15px;
}
.sec09 dt::after {
	content: "";
	background-image: url(../img/ico-ac-plus02.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 35px;
	height: 35px;
	display: block;
	position: absolute;
	right: 0;
	top: 35%;
	transform: translateY(-50%);
}
.sec09 dt.open::after {
	background-image: url(../img/ico-ac-minus02.png);
}
.sec10 {
	padding-bottom: 80px;
}
.sec10 .js-scrollable {
	margin-top: 60px;
}
.sec10 table {
	table-layout: auto;
	border-spacing: 0;
	border-collapse: collapse;
	width: 100%;
	cursor: all-scroll;
	font-size: 16px;
}
.sec10 tr,
.sec10 th,
.sec10 td {
	border: 1px solid #aaa;
	font-size: 15px;
	padding: 15px;
}
.sec10 tr td:first-child {
	font-weight: bold;
}
.sec10 th {
	background: #f0f0f0;
	font-size: 17px;
	text-align: center;
	white-space: nowrap;
}
footer {
	background: #FFF;
	text-align: center;
	padding: 80px;
	line-height: 1.6;
}
footer .logo img {
	width: 300px;
	margin-bottom: 25px;
}
footer p {
	margin-bottom: 25px;
}
footer p:last-child {
	margin-bottom: 0;
}
footer a {
	color: #000;
}
#floating-banner {
	position: fixed;
	bottom: -100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	transition: bottom 1.0s ease-in-out;
	background: rgba(255,255,255,0.8);
	width: 600px;
	padding: 10px 24px;
}
#floating-banner.show {
	bottom: 0;
	transition: bottom 1.0s ease-in-out;
}

/***********************************************
SP
************************************************/
@media screen and (max-width: 749px){
    /* ======== 共通 ======== */
    .row {
        padding: 0 4vw;
        font-size: 3.333vw;
    }
    body {
        font-size: 3.333vw;
    }
    img {
        max-width: 100%;
        height: auto;
    }
	
    
	/* ======== コンテンツ ======== */
	main {
		width: 100%;
	}
	.fv {

	}
	.fv .mv .price {
		padding: 0 4vw;
	}
	.bnr-area {
		padding: 6vw 0;
	}
	.bnr-area .attention {
		margin-top: 5vw;
		text-align: center;
	}
	.cv-area {
		padding: 6vw 0;
	}
	.sec05 {
		padding-bottom: 5vw;
	}
	.sec05 .item {
		margin-bottom: 8vw;
	}
	.sec05 .item .head {
		padding: 4vw 5vw;
		border-radius: 2.5vw;
	}
	.sec05 .item .head::after {
		width: 5.5vw;
		height: 5.5vw;
		right: 3vw;
	}
	.sec05 .item .head img {
		width: 94%;
	}
	.sec05 .item.open .head {
		border-radius: 2.5vw 2.5vw 0 0;
	}
	.sec05 .item .inner {
		padding: 8vw;
		border: 0.3vw solid #ccc;
		border-top: none;
		border-radius: 0 0 2.5vw 2.5vw;
	}
	.sec07 {
		padding-bottom: 8vw;
	}
	.sec07 .row img {
		margin-bottom: 8vw;
	}
	.sec08 .toggle-area {
		margin: 5vw 0;
	}
	.sec08 .item .head::after {
		width: 5vw;
		height: 5vw;
		right: 5vw;
	}
		.sec09 dt {
		font-size: 3.8vw;
		margin-top: 6vw;
		padding-bottom: 3vw;
		padding-right: 8vw;
		border-bottom: 0.4vw dotted #e07c81;
	}
	.sec09 dd {
		font-size: 3.4vw;
		margin-top: 3vw;
	}
	.sec09 dt::after {
		width: 5vw;
		height: 5vw;
		top: 35%;
	}
	.sec10 {
		padding-bottom: 15vw;
	}
	.sec10 .js-scrollable {
		margin-top: 10vw;
	}
	.sec10 table {
		font-size: 3vw;
	}
	.sec10 tr,
	.sec10 th,
	.sec10 td {
		font-size: 2.8vw;
		padding: 3vw;
	}
	.sec10 tr td:first-child {
		font-weight: bold;
	}
	.sec10 th {
		font-size: 3vw;
	}
	footer {
		padding: 10vw;
	}
	footer .logo img {
		width: 60%;
		margin-bottom: 5vw;
	}
	footer p {
		margin-bottom: 5vw;
	}
	#floating-banner {
		width: 100%;
		padding: 3vw 4vw 3vw;
	}
}


.relative {
  position: relative;
}
.img-wrap {
    display: block;
    vertical-align: bottom;
    margin: 0 auto;
    box-sizing: border-box;
}

section .btn-box {
	position: relative;
}
section .btn-box a {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	padding: 0;
}
section .btn-box a.btn-01 {
	bottom: 14px;
	max-width: 420px;
}
section .btn-box a.btn-02 {
	bottom: 62px;
	max-width: 400px;
}
section .btn-box a.btn-03 {
	bottom: 66px;
	max-width: 420px;
}
section .btn-box a.btn-04 {
	bottom: 124px;
	max-width: 410px;
}
@media screen and (max-width: 749px) {
	section .btn-box a.btn-01 {
		bottom: 2.4vw;
		max-width: 84vw;
	}
	section .btn-box a.btn-02 {
		bottom: 11.8vw;
		max-width: 78vw;
	}
	section .btn-box a.btn-03 {
		bottom: 12.0vw;
		max-width: 84vw;
	}
	section .btn-box a.btn-04 {
		bottom: 23.4vw;
		max-width: 81vw;
	}
}

/********* その他 *********/
h1.meta-tit {
  font-size: 24px;
  font-weight: 800;
  top:-200px;
}
h2.meta-tit {
  font-size: 20px;
  font-weight: 700;
  top:0;
}
h3.meta-tit {
  font-size: 20px;
  font-weight: 700;
  top:0;
}
p.meta-txt {
  font-size: 16px;
  font-weight: 600;
  top:100px
}
.meta-tit,
.meta-txt {
  position: absolute;
  left: -9999px;
  line-height: 1.5;
  color: #222;
}