
@charset 'utf-8';

/* common {{{ */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese');

body {
	font-size: 2.93vw;
	font-family:  'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
	color: #000;
}
/* variable */
:root {
	--YuMincho-font: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	--YuGothic-font: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 768px) {
.sp-none {
	display: none !important;
}
}

.flexbox {
	display: flex;
	display:-webkit-flex;
	display:-ms-flexbox;
    -ms-flex-pack:justify;
    -webkit-justify-content:space-between;
    justify-content:space-between;

	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
}
.flexbox.vtop {
	align-items: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: flex-start;
}
.flexbox.vcenter {
	align-items: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
}
.flexbox.vbottom {
	align-items: flex-end;
	-webkit-align-items: flex-end;
	-ms-flex-align: flex-end;
}
.flexbox.jcenter {
	-ms-flex-pack:center;
    -webkit-justify-content: center;
    justify-content:center;
}
.flexbox.jend {
	-ms-flex-pack:flex-end;
    -webkit-justify-content:flex-end;
    justify-content:flex-end;
}
.flexbox.start {
	-ms-flex-pack:flex-start;
    -webkit-justify-content:flex-start;
    justify-content:flex-start;
}
.flexbox.stretch {
	align-items: stretch;
    -webkit-align-items: stretch;
	-ms-flex-align: stretch;
}
.gradient {
	background: -moz-linear-gradient(top, #fff 0%, #e0e0e2 100%); /* firefox */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#e0e0e2)); /* webkit */
    background: -ms-linear-gradient(top, #fff 0%, #e0e0e2 100%); /* IE windows phone */
    background: -o-linear-gradient(top, #fff 0%, #e0e0e2 100%); /* opera */
    background: linear-gradient(top, #fff 0%, #e0e0e2 100%); /* css3 */
}

.btn:hover {
	opacity: 0.8;
}

.btn-shine{
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-shine::before{
  content: "";
  animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #fff;
  width: 140%;
  height: 100%;
  transform: skewX(-45deg);
  top: 0;
  left: -160%;
  opacity: 0.5;
  position: absolute;
}

@keyframes shine{
	0% {
		left: -160%;
		opacity: 0;
	}
	55% {
		left: -160%;
		opacity: 0.5;
	}
	56% {
		left: -160%;
		opacity: 1;
	}
	100% {
		left: -20%;
		opacity: 0;
	}
}

img {
	max-width: 100%;
	border: none;
}
.accordion {
	position: relative;
	width: 100%;
	margin: auto;
	cursor: pointer;
	box-sizing: border-box;
	padding-left: 1.5em;
}
.accordion img {
	display: block;
}
.accordion:after {
	content: "";
	width: 0;
	height: 0;
	display: block;
	border-width: 0.5em 0.5em 0;
	border-color: #000 transparent;
	border-style: solid;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	webkit-transform: translateY(-50%);
	z-index: 2;
}
.accordion.menu-open:after {
	border-width: 0 0.5em 0.5em;
}

.accordion:not(.menu-open) + * {
	display: none;
}

/* }}} */

/* modal {{{ */

.mfp-bg.mfp-fade {
	width: 100%;
	z-index: 10000;
}
.mfp-bg.mfp-fade + .mfp-wrap {
	z-index: 10001;
}
#contents .popup-modal {
    background: #fff;
}
#contents .popup-modal-detail {
	display: none;
}
.mfp-content div.popup-modal-detail {
    color: #444444;
    box-sizing: border-box;
    position: relative;
    background: rgba(255,255,255,1);
    padding: 4.6vw;
    width:auto;
    max-width: 93.33%;
    margin: 15vw auto 5vw;
    box-shadow: 0 0 14px rgba(0,0,0,0.8);
    -moz-border-radius: 0.8em;
	-webkit-border-radius: 0.8em;
	border-radius: 0.8em;
}
.mfp-content div.popup-modal-detail img {
	width: 100%;
	display: block;
}
.mfp-content div.popup-modal-detail .mfp-close {
	width: 2em;
	height: 2em;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 2;
	top: 0.5em;
	right: 0.5em;
	font-family: sans-serif;
	color: #fff;
	background: #0091dc;
	-moz-border-radius: 2em;
	-webkit-border-radius: 2em;
	border-radius: 2em;
	opacity: 1;
}
.mfp-content div.popup-modal-detail .btn-modal-close {
	position: absolute;
	top: -3.5em;
	right: 0.5em;
	opacity: 1;
	width: 11.46vw;
}
.mfp-content div.popup-modal-detail .btn-modal-close.btn-modal-close02 {
	top: auto;
	right: auto;
	position: relative;
	margin-top: 1em;
	display: inline-block;
	width: 17.86vw;
}
/* }}} */

/* #wrapper {{{ */
#wrapper {
}
/* }}} */

/* header {{{ */
header {
	width: 100%;
	margin: auto;
	position: relative;
	z-index: 1;
	margin-bottom: -2vw;
}
header .header {
	padding: 0 0 0 1em;
}
header .logo {
	width: 34vw;
	display: block;
}
header .tel {
	width: 54.13vw;
}
header .logo:hover {
	opacity: 0.7;
}
/* }}} */

/* .footer {{{ */
footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 999;
}
footer a {
	display: inline-block;
}
footer a .btn-shine {
	position: absolute;
	width: 105%;
	height: 65%;
	top: 5vw;
	left: 1vw;
	-moz-border-radius: 15vw;
	-webkit-border-radius: 15vw;
	border-radius: 15vw;
	pointer-events: none;
}
footer img {
	display: block;
	width: 100%;
}

/* }}} */

/* top {{{ */
#contents.top {
	background: #fff;
	padding-bottom: 30vw;
}

#contents.top .kvarea {
	width: 100%;
	position: relative;
	box-sizing: border-box;
	/* margin-bottom: -56vw; */
	margin-bottom: 5vw;
}
#contents.top .kvarea .kv-txt {
	width: 100%;
}

#contents.top section .note {
	font-size: 2.4vw;
}
#contents.top section .iwa {
	font-family: "IwaGGoPro-Md";
}
#contents.top section sup {
	font-size: 0.6em;
	vertical-align: top;
}

#contents.top section .section-inner {
	width: 100%;
	margin: auto;
	padding: 0;
	box-sizing: border-box;
}

#contents.top section.entry-block {
	width: 100vw;
	height: 271.6vw;
	margin: auto;
	background: url('../img/sp/7set.png') center top no-repeat;
	background-size: contain;
	position: relative;
	overflow: hidden;
	text-indent: -1000%;
	z-index: 1;
}
#contents.top section.entry-block .btn-wrap {
	position: absolute;
	width: 80.8vw;
	bottom: 33.5vw;
	left: 11vw;
}
#contents.top section.entry-block .btn-wrap a {
	display: block;
}
#contents.top section.entry-block .btn-wrap img {
	display: block;
}
#contents.top section.entry-block .btn-wrap .btn-shine {
	position: absolute;
	width: 92%;
	height: 65%;
	top: 4vw;
	left: 3vw;
	-moz-border-radius: 15vw;
	-webkit-border-radius: 15vw;
	border-radius: 15vw;
	pointer-events: none;
}


#contents.top section.s01 {
	position: relative;
}
#contents.top section.s01 .section-inner {
	margin-top: 5vw;
	font-size: 3.73vw;
	line-height: 1.85;
}
#contents.top section.s01 h2 {
	text-align: center;
	width: 85.06vw;
	margin: auto;
	font-size: 7.3vw;
	text-align: center;
	font-family: var(--YuMincho-font);
}
#contents.top section.s01 h2 span {
	display: inline-block;
	text-align: left;
}
#contents.top section.s01 h2 span em {
	color: #ff0000;
}
#contents.top section.s01 h2 img {
	display: block;
	width: 35vw;
	margin: 0 auto 1.8em;
}
#contents.top section.s01 .desc {
	width: 85.33vw;
	margin: auto;
}
#contents.top section.s01 .item {
	margin-top: 1em;
}
#contents.top section.s01 .item .ph {
	width: 66.4vw;
	margin: 1.5em auto;
}
#contents.top section.s01 .item + p {
	margin-bottom: 3em;
}
#contents.top section.s01 h3 {
	text-align: center;
	margin: 3em auto 1em;
	width: 84.4vw;
	height: auto;
}
#contents.top section.s01 h3 img {
	width: 25.5vw;
	margin-bottom: 10px;
}
#contents.top section.s01 .note {
	margin-top: 0.4em;
}
#contents.top section.s01 .box1 {
	position: relative;
	/* background: url('../img/sp/s01_01.png') center bottom -5vw no-repeat; */
	background-size: contain;
	padding-bottom: 14vw;
	position: relative;
	z-index: 1;
}
#contents.top section.s01 .box2 {
	/* background: #FAEAEC; */
	margin-top: -26vw;
	padding-top: 15vw;
	position: relative;
}
#contents.top section.s01 .box2 .desc {
	width: 80vw;
	font-family: var(--YuGothic-font);
	font-weight: 400;
}
#contents.top section.s01 .box2 .desc + h3 {
	margin-top: 5em;
}
#contents.top section.s01 .s01_03 {
	display: block;
	margin-top: -112vw;
}

#contents.top section.s02 {
	text-align: center;
	position: relative;
}
#contents.top section.s02 h3 {
	width: 100%;
	margin: auto;
}
#contents.top section.s02 .s02_03 {
	margin-top: -4vw;
	width: 100%;
}

#contents.top section.s03 .section-inner {
	padding-bottom: 5vw;
	margin-top: -40vw;
}
#contents.top section.s03 h2 {
	margin-bottom: 2.5em;
}
/* #contents.top section.s03 .bg {
	background: url('../img/sp/s03_01.png') center top no-repeat;
	margin: -69vw auto 0;
	padding: 67vw 0 0;
	background-size: cover;
} */
#contents.top section.s03 .item {
	width: 100%;
	margin: auto;
}
#contents.top section.s03 .item .desc {
	font-size: 4.2vw;
	line-height: 1.88;
	margin: 0 auto;
	padding: 2em 0;
	width: 88vw;
	font-family: var(--YuGothic-font);
	font-weight: bold;
	letter-spacing: .1em;
}
#contents.top section.s03 .item h4 {
	margin-bottom: 1.5em;
	margin: 1.35em auto;
	padding-left: .5em;
	width: 74vw;
	font-weight: bold;
	letter-spacing: .1em;
	font-family: var(--YuGothic-font);
}
#contents.top section.s03 .item h4 .red {
	color: #be4566 !important;
}
#contents.top section.s03 .item .ph {
	text-align: center;
}
#contents.top section.s03 .item .ph .s03_01_img {
	width: 74vw;
}
#contents.top section.s03 .item .ph .s03_02_img {
	width: 86.66vw;
	margin-top: 5vw;
}
#contents.top section.s03 h2 + p {
	font-size: 5.8vw;
	text-align: center;
	font-weight: bold;
	letter-spacing: .05em;
	font-family: var(--YuGothic-font);
}
#contents.top section.s03 h3 {
	width: 78vw;
	margin: 1.6em auto 0;
	font-size: 8vw;
	font-weight: bold;
	letter-spacing: .1em;
	font-family: var(--YuGothic-font);
	line-height: 1.67;
}
#contents.top section.s03 h3.s03_ttl03 {
	text-align: center;
	margin: .6em auto 0;
	width: 100%;
}
#contents.top section.s03 h3.s03_ttl03 span {
	font-size: 6.25vw;
}
#contents.top section.s03 h4 {
	padding-left: 1.1em;
	font-size: 7.2vw;
	border-left: 2.5px solid;
}

#contents.top section.s04 {
	margin-top: -3vw;
	position: relative;
	text-align: center;
	background-size: contain;
}
#contents.top section.s04 h2 {
	text-align: center;
	position: relative;
	margin-bottom: -14vw;
}
#contents.top section.s04 .entry-block {
	margin-top: -33vw;
	margin-bottom: 9vw;
}
#contents.top section.s05 .section-inner {
	position: relative;
	padding: 0;
}
#contents.top section.s05 h2 {
	text-align: center;
}
#contents.top section.s05 h2 img {
	display: block;
}
#contents.top section.s05 .section-inner * {
	position: relative;
}
#contents.top section.s05 .point + .point {
	margin-top: 2.25em;
}
#contents.top section.s05 .point h3 > span {
	display: block;
	margin: 0 auto;
	padding-top: 1.55em;
	font-size: 8vw;
	text-align: center;
	font-family: var(--YuMincho-font);
	line-height: 1.75;
	font-weight: bold;
}
#contents.top section.s05 .point h3 > span .red {
	color: #ff6259 !important;
}
#contents.top section.s05 .point h3 > span sup {
	font-size: .4em;
	font-family: var(--YuGothic-font);
	padding: 0 .1em;
}
#contents.top section.s05 .point:nth-of-type(even) h3 > span {
	background-color: #fcf5f5;
}
#contents.top section.s05 .point [class^="point0"] {
	padding-top: 4.5em;
	padding-bottom: 5.5em;
}
#contents.top section.s05 .point:nth-of-type(even) [class^="point0"] {
	padding-top: 2.25em;
	background-color: #fcf5f5;
}
#contents.top section.s05 .point .box {
	width: 84vw;
	margin: 0 auto;
}
#contents.top section.s05 .point .box img {
	display: block;
	margin: auto;
}
#contents.top section.s05 .point img.w90 {
	width: 90%;
}
#contents.top section.s05 .point .box p {
	margin: 2em auto 0;
	font-size: 3.45vw;
	line-height: 1.75;
	font-family: var(--YuGothic-font);
	font-weight: 400;
}
#contents.top section.s05 .point .point03 .flex p {
	font-family: "Zen Kaku Gothic New", sans-serif;
}
#contents.top section.s05 .point .box p.note {
	margin: 0 auto;
	text-align: right;
	font-size: 2vw;
}
#contents.top section.s05 .point .box p sup {
	vertical-align: middle;
	padding: 0 .4em;
}
#contents.top section.s05 .point .box p .bg {
	background-color: #fdd4d4;
	padding: .2em;
}
#contents.top section.s05 .point .notes {
	margin-top: 1em;
}
#contents.top section.s05 .point .notes li {
	font-size: .8em;
	line-height: 1.75;
	font-family: var(--YuGothic-font);
}
#contents.top section.s05 .point .notes li.inline {
	display: inline;
}
#contents.top section.s05 .point .notes li.inline + li.inline {
	margin-left: .5em;
}
#contents.top section.s05 .point .box h4 {
	margin-top: 1.7em;
	margin-bottom: -.7em;
	color: #ab012e;
	font-size: 17.5px;
	text-align: center;
	font-family: var(--YuGothic-font);
	font-weight: bold;
}
#contents.top section.s05 .point-list {
	width: 100%;
	margin: 0 auto 0;
	box-sizing: border-box;
}
#contents.top section.s05 .point-list li img {
	display: block;
}
#contents.top section.s05 .point-list li.point2 {
	position: relative;
}
#contents.top section.s05 .point-list li.point2 .pgif {
	position: absolute;
	top: 108vw;
	right: 10vw;
	width: 80vw;
	height: auto;
}
#contents.top section.s05 .point-list li.point3 {
	position: relative;
}
#contents.top section.s05 .point-list li.point3 .pgif {
	position: absolute;
	bottom: 41vw;
	right: 12.2vw;
	width: 75vw;
	height: auto;
}

#contents.top section.s06 .section-inner {
	padding: 7vw 0 8vw;
	text-align: center;
}
#contents.top section.s06 .hako {
	position: relative;
	width: 100%;
	margin: 0 0 -16vw;
	padding: 0 0 20vw;
	background : -moz-linear-gradient(50% 14.59% -90deg,rgba(255, 255, 255, 1) 0.01%,rgba(242, 242, 242, 1) 100%);
	background : -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0.01%, rgba(242, 242, 242, 1) 100%);
	background : -webkit-gradient(linear,50% 14.59% ,50% 96.4% ,color-stop(0.0001,rgba(255, 255, 255, 1) ),color-stop(1,rgba(242, 242, 242, 1) ));
	background : -o-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0.01%, rgba(242, 242, 242, 1) 100%);
	background : -ms-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0.01%, rgba(242, 242, 242, 1) 100%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#F2F2F2' ,GradientType=0)";
	background : linear-gradient(180deg, rgba(255, 255, 255, 1) 0.01%, rgba(242, 242, 242, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF',endColorstr='#F2F2F2' , GradientType=0);

}
#contents.top section.s06 .hako .s06_01 {
	width: 96.26vw;
}
#contents.top section.s06 .hako .hakogif {
	position: absolute;
	top: 22vw;
	left: 19vw;
	width: 65.06vw;
	height: auto;
	padding: 0.53vw;
	background : -moz-linear-gradient(0% 50% 0deg,rgba(152, 128, 0, 1) 0%,rgba(186, 178, 154, 1) 54%,rgba(81, 45, 0, 1) 58.66%,rgba(116, 102, 0, 1) 85.32%,rgba(116, 95, 0, 1) 99.83%);
	background : -webkit-linear-gradient(0deg, rgba(152, 128, 0, 1) 0%, rgba(186, 178, 154, 1) 54%, rgba(81, 45, 0, 1) 58.66%, rgba(116, 102, 0, 1) 85.32%, rgba(116, 95, 0, 1) 99.83%);
	background : -webkit-gradient(linear,0% 50% ,100% 50% ,color-stop(0,rgba(152, 128, 0, 1) ),color-stop(0.54,rgba(186, 178, 154, 1) ),color-stop(0.5866,rgba(81, 45, 0, 1) ),color-stop(0.8532,rgba(116, 102, 0, 1) ),color-stop(0.9983,rgba(116, 95, 0, 1) ));
	background : -o-linear-gradient(0deg, rgba(152, 128, 0, 1) 0%, rgba(186, 178, 154, 1) 54%, rgba(81, 45, 0, 1) 58.66%, rgba(116, 102, 0, 1) 85.32%, rgba(116, 95, 0, 1) 99.83%);
	background : -ms-linear-gradient(0deg, rgba(152, 128, 0, 1) 0%, rgba(186, 178, 154, 1) 54%, rgba(81, 45, 0, 1) 58.66%, rgba(116, 102, 0, 1) 85.32%, rgba(116, 95, 0, 1) 99.83%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#988000', endColorstr='#745F00' ,GradientType=0)";
	background : linear-gradient(90deg, rgba(152, 128, 0, 1) 0%, rgba(186, 178, 154, 1) 54%, rgba(81, 45, 0, 1) 58.66%, rgba(116, 102, 0, 1) 85.32%, rgba(116, 95, 0, 1) 99.83%);
	box-shadow : 4px 4px 4px rgba(0, 0, 0, 0.4);
	filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=4, OffY=4, Color='#000000') progid:DXImageTransform.Microsoft.gradient(startColorstr='#988000',endColorstr='#745F00' , GradientType=1);
}
#contents.top section.s06 .hako .hakogif img {
	display: block;
}
#contents.top section.s06 .hako + * {
	position: relative;
}
#contents.top section.s06 .entry-block {
	margin-top: -2vw;
}

#contents.top section.s07 .section-inner {
	background: url('../img/sp/s07_bg.png') center top no-repeat;
	padding: 0 0 15vw;
	margin-top: -3vw;
	position: relative;
	background-size: cover;
}
#contents.top section.s07 h2 {
	margin: 0;
	width: 100%;
}
#contents.top section.s07 h2 img {
	margin-top: -2vw;
}
#contents.top section.s07 .item {
	overflow: hidden;
}
#contents.top section.s07 .item + .item {
	margin-top: 8vw;
}
#contents.top section.s07 .ph > img {
	width: 64vw;
}
#contents.top section.s07 .s07_01_ttl {
	width: 55.2vw;
}
#contents.top section.s07 .s07_02_ttl {
	width: 52.26vw;
}
#contents.top section.s07 .s07_03_ttl {
	width: 53.46vw;
}
#contents.top section.s07 .s07_04_ttl {
	width: 46.8vw;
}
#contents.top section.s07 .s07_01_txt {
	width: 79.6vw;
}
#contents.top section.s07 .s07_02_txt {
	width: 72.66vw;
}
#contents.top section.s07 .s07_03_txt {
	width: 72.4vw;
	margin-right: 10vw;
}
#contents.top section.s07 .s07_04_txt {
	width: 74.13vw;
	margin-top: 9vw;
}
#contents.top section.s07 .desc {
	margin: -22vw 0 0 0;
	text-align: right;
	position: relative;
}
#contents.top section.s07 .ph.right + .desc {
	margin: -22vw 0 0 0;
	text-align: left;
}
#contents.top section.s07 .ph {
	position: relative;
	width: 100%;
}
#contents.top section.s07 .ph img {
	display: block;
}
#contents.top section.s07 .ph.right > img {
	margin: 0 -1.5vw 0 auto;
}
#contents.top section.s07 h4 {
	position: absolute;
	top: 20%;
	right: 0;
}
#contents.top section.s07 .ph.right h4 {
	right: auto;
	left: 0;
}

#contents.top section.faq {
	position: relative;
}
/* #contents.top section.faq::before {
	content: "";
	display: block;
	width: 76.8%;
	height: 2px;
	background: #000;
	position: absolute;
	top: -2px;
	right: 50%;
	transform: translateX(50%);
	-webkit-transform: translateX(50%);
} */
#contents.top section.faq .section-inner {
	background: #EEEEEE;
	padding: 16vw 5.33vw 14vw;
	text-align: center;
}
#contents.top section.faq h2 {
	font-size: 8vw;
	font-weight: bold;
	letter-spacing: .2em;
	font-family: var(--YuGothic-font);
}
#contents.top section.faq .list {
	margin: 2.8em auto 0;
	text-align: left;
}
#contents.top section.faq .unit {
	padding-bottom: 1.4em;
}
#contents.top section.faq .label {
	display: flex;
	align-items: flex-start;
	padding: .4em .8em .4em;
	border-left: 4px solid #ff6259;
	border-bottom: 1px solid;
	font-size: 4vw;
	font-family: var(--YuGothic-font);
}
#contents.top section.faq .label::before {
	content: "";
	display: inline-block;
	background-image: url(../img/icon_q.svg);
	background-repeat: no-repeat;
	width: 17.6px;
	height: 21.2px;
	margin-right: .8em;
}
#contents.top section.faq .value {
	position: relative;
	margin-left: auto;
	padding: 1em 0;
	font-size: 3.72vw;
	line-height: 1.75;
	width: 78vw;
	font-family: var(--YuGothic-font);
}
#contents.top section.faq .value::before {
	content: "";
	position: absolute;
	left: calc(-18.6px + -.75em);
	top: calc(1em + .2em);
	display: inline-block;
	background-image: url(../img/icon_a.svg);
	background-repeat: no-repeat;
	width: 18.6px;
	height: 18.4px;
}
#contents.top section.faq .value .children li::before {
	content: "・";
}
#contents.top section.faq .value .notes {
	margin-top: 1em;
}
#contents.top section.faq .value .notes li {
	font-size: .8em;
}
#contents.top section.faq .value .notes li::before {
	content: "※";
}

#contents.top section.s08 .section-inner {
	background: url('../img/sp/s08_bg.png') center top no-repeat;
	background-size: contain;
	padding: 9vw 0 22vw;
}
#contents.top section.s08 h2 {
	text-align: center;
	margin-bottom: 0.5em;
}
#contents.top section.s08 .item {
	background: url('../img/sp/s08_txt_bg.png') center top no-repeat;
	background-size: cover;
	width: 100%;
	padding: 12.5vw 14vw 16.5vw;
	margin: -8vw auto 0;
	box-sizing: border-box;
	position: relative;
}
#contents.top section.s08 .item .desc {
	font-size: 4.26vw;
	line-height: 2;
	margin: 1.5em 0 0 0;
	font-family: var(--YuGothic-font);
}
#contents.top section.s08 .item .desc P {
	margin-top: 3em;
}
#contents.top section.s08 .item .s08_02 {
	width: 69.33vw;
}
#contents.top section.s08 .section-inner .note {
	margin-top: 1.2em;
	padding: 0 5vw;
	font-size: 2vw;
	line-height: 1.6;
	font-family: var(--YuGothic-font);
}

#contents.top section.s09 .section-inner {
	background: #FFF8E9;
	padding: 12vw 7.86vw 17vw;
}
#contents.top section.s09 h2 {
	text-align: center;
	margin: 0 auto 1.5em;
	font-size: 8vw;
	font-family: var(--YuGothic-font);
	font-weight: bold;
}
#contents.top section.s09 h2 span {
	display: block;
	font-size: 4vw;
	font-weight: normal;
}
#contents.top section.s09 ul li + li {
	margin-top: 12vw;
}
#contents.top section.s09 ul li .desc {
	width: 100%;
	font-size: 3.46vw;
	line-height: 1.38;
	margin-top: 0.5em;
	font-family: var(--YuGothic-font);
}
#contents.top section.s09 ul + p {
	text-align: left;
	margin: 10vw auto 0;
	width: 83.06vw;
}
#contents.top section.s09 .catch {
	margin-left: auto;
	margin-right: auto;
	color: #ff3b97;
	font-size: 5.4vw;
	text-align: left;
	letter-spacing: -.05em;
	font-family: var(--YuMincho-font);
}
#contents.top section.s09 h3 {
	text-align: center;
	margin: 25px auto 1em;
	font-size: 5vw;
	color: #ab012e;
	font-family: var(--YuGothic-font);
}
#contents.top section.s09 h3 + p {
	font-size: 3.5vw;
	line-height: 2;
	font-family: var(--YuGothic-font);
}
/* }}} */


/* override */
#InputArea {
	padding-bottom: 7% !important;
}
.FormArea {
	padding-bottom: 0;
}
#sec08 {
    background: #fff;
	padding-bottom: 17vw;
	padding-top: 6vw;
}
.sec08-wrapper {
    width: 90%;
    background: #fff;
    margin: 0 auto;
    padding: 1em 0;
}
#sec08 dt {
	padding-bottom: 12.5%;
}
#acMenu07 dt {
	padding: 0;
}
.ACContents {
	box-sizing: border-box;
	margin: 1em auto 1.4em;
	width: 90%;
	font-size: 3.33vw;
	line-height: 1.92;
}
#footer_sp {
    padding-bottom: 5vw;
}

#InputArea .input-label-exe {
	font-family: "Zen Kaku Gothic New", sans-serif;
}
p.campaign-lead {
	font-size: 16px;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	text-align: center;
	font-weight: 600;
}
/* vim: set ts=4 sw=4 sts=0 foldmethod=marker : */
