
@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: 16px;
	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 (min-width: 769px) {
.pc-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: 3em;
    width:auto;
    max-width: 1002px;
    margin: 120px auto 20px;
    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 .mfp-close {
	width: 40px;
	height: 40px;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 40px;
	top: 1em;
	right: 1em;
	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: -2.5em;
	right: 0.5em;
	opacity: 1;
}
.mfp-content div.popup-modal-detail .btn-modal-close.btn-modal-close02 {
	top: auto;
	right: auto;
	position: relative;
	margin-top: 1em;
	display: inline-block;
}
/* }}} */

/* #wrapper {{{ */
#wrapper {
	min-width: 1032px;
}
/* }}} */

/* header {{{ */
header {
	width: 100%;
	margin: auto;
	
}
header .header {
	padding: 1.2em 0 0.85em;
	box-sizing: border-box;
	width: 940px;
	margin: auto;
}
header .logo:hover {
	opacity: 0.7;
}
/* }}} */

/* .footer {{{ */
footer {
	background: rgba(255,255,255,0.7);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 999;
}
footer a {
	display: inline-block;
	position: relative;
	max-width: 461px;
}
footer a .btn-shine {
	position: absolute;
	width: 88%;
	height: 50%;
	top: 40px;
	left: 30px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	pointer-events: none;
}
/* }}} */

/* top {{{ */
#contents.top {
	max-width: 2000px;
	margin: auto;
	background: #fff;
	padding-bottom: 100px;
}
#contents.top .container {
	width: 1000px;
	margin: auto;
	background : #FFFFFF;
	/* background : rgba(255, 255, 255, 1);
	box-shadow : 0px 0px 10px rgba(0, 0, 0, 0.2);
	filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=0, Color='#000000') ; */
}
#contents.top .kvarea {
	width: 100%;
	height: 1457px;
	position: relative;
	box-sizing: border-box;
	text-align: center;
	overflow: hidden;
	/* margin-bottom: -693px; */
	/* margin-bottom: -393px; */
	margin-bottom: -620px;
}
#contents.top .kvarea img {
	max-width: auto;
	max-width: initial;
	position: absolute;
	right: 50%;
	transform: translateX(50%);
	-webkit-transform: translateX(50%);
}

#contents.top section .section-inner {
	margin: auto;
	padding: 0;
	box-sizing: border-box;
}
#contents.top section .note {
	font-size: 11px;
}
#contents.top section .iwa {
	font-family: "IwaGGoPro-Md";
}
#contents.top section sup {
	font-size: 0.6em;
	vertical-align: top;
}
#contents.top section.entry-block {
	width: 1024px;
	height: 1380px;
	margin: auto;
	background: url('../img/7set.webp') center top no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
	text-indent: -1000%;
	z-index: 1;
}
#contents.top section.entry-block .btn-wrap {
	position: absolute;
	bottom: 31px;
	left: 128px;
}
#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: 96%;
	height: 50%;
	top: 39px;
	left: 5px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	pointer-events: none;
}


#contents.top section.s01 {
	position: relative;
}
#contents.top section.s01 .section-inner {
	/* font-size: 22.4px; */
	line-height: 1.57;
	margin-top: 55px;
}
#contents.top section.s01 h2 {
	position: relative;
	font-size: 50px;
	font-family: var(--YuMincho-font);
	text-align: center;
}
#contents.top section.s01 h2 img {
	display: block;
	width: 180px;
	margin: 0 auto 60px;
}
#contents.top section.s01 h2 em {
	color: #ff0000;
}
#contents.top section.s01 .item {
	margin-top: 1em;
}
#contents.top section.s01 .item .desc {
	width: 440px;
	margin: 0 2em 0 0;
}
#contents.top section.s01 .item + p {
	margin-bottom: 5em;
}
#contents.top section.s01 .desc + h3 {
	margin-top: 60px;
}
#contents.top section.s01 h3 + .desc {
	width: 587px;
	margin-left: 40px;
	line-height: 1.75;
	font-size: 28px;
	font-weight: 400;
	font-family: var(--YuGothic-font);
}
#contents.top section.s01 .note {
	margin-top: 2em;
	text-align: right;
	margin-right: 110px;
}
#contents.top section.s01 .box1 {
	/* position: relative;
	background: url('../img/s01_01.png') center bottom -12px no-repeat;
	padding-bottom: 190px; */
}
#contents.top section.s01 .box2 {
	position: relative;
	padding: 0px 0 0 81px;
	margin: 90px auto 0;
}
#contents.top section.s01 .box2 .flex {
	display: flex;
	align-items: center;
}
#contents.top section.s01 .box2 .flex + .flex {
	margin-top: 50px;
}
#contents.top section.s01 .s01_03 {
	display: block;
	margin-top: -460px;
}

#contents.top section.s02 {
	text-align: center;
	margin-top: -1px;
	position: relative;
}
#contents.top section.s02 .s02_03 {
	margin-top: -38px;
}

#contents.top section.s03 {
	
}
#contents.top section.s03 .section-inner {
	margin-top: -184px;
}
#contents.top section.s03 h2 {
	margin-bottom: 2.5em;
	text-align: center;
}
#contents.top section.s03 h2 span {
	display: block;
	margin-top: 1.66666em;
	font-size: 60px;
	font-weight: bold;
	letter-spacing: .1em;
}
/* #contents.top section.s03 h2::before {
	content: "";
	width: 100%;
	height: 1515px;
	background: url('../img/s03_01.png') center top no-repeat;
	position: absolute;
	top: 100%;
	margin-top: -280px;
} */
#contents.top section.s03 .bg {
	/* background: url('../img/s03_01.png') center top no-repeat; */
	/* margin: -320px auto 0;
	padding: 370px 100px 0; */
	margin: 120px auto 0;
	max-width: 800px;
}

#contents.top section.s03 .item + .item {
	margin-top: 150px;
}
#contents.top section.s03 .item .desc {
	font-size: 21px;
	width: 415px;
	line-height: 1.75;
	letter-spacing: .03em;
}
#contents.top section.s03 .item .desc h4 {
	margin-bottom: 1.5em;
	padding-left: 20px;
	font-size: 40px;
	border-left: 5px solid;
	font-weight: bold;
	font-family: var(--YuGothic-font);
}
#contents.top section.s03 .item .desc h4 .red {
	color: #be4566 !important;
}
#contents.top section.s03 .item .desc h4 .blue {
	color: #0080c8 !important;
}
#contents.top section.s03 .item .desc p {
	font-weight: bold;
}
#contents.top section.s03 h3 {
	text-align: center;
	margin: 80px 0 20px;
	position: relative;
	z-index: 2;
}
#contents.top section.s03 h3 span {
	font-size: 30px;
	font-weight: bold;
	line-height: 1.75;
}
#contents.top section.s03 h3 img {
	margin-top: -150px;
}
#contents.top section.s03 .s03_01_img {
	margin-top: -30px;
}

#contents.top section.s04 {
	margin-top: -130px;
	text-align: center;
	padding-bottom: 69px;
}
#contents.top section.s04 h2 {
	text-align: center;
	position: relative;
}
#contents.top section.s04 h2 + p {
	margin-top: -105px;;
}
#contents.top section.s04 .entry-block {
	margin-top: -187px;
}
#contents.top section.s05 .section-inner {
	position: relative;
	padding: 0;
	/* background : #AB012E; */
}
#contents.top section.s05 {
	padding-bottom: 170px;
}
#contents.top section.s05 img {
	display: block;
}

#contents.top section.s05 h2 {
	text-align: center;
}
#contents.top section.s05 .section-inner * {
	position: relative;
}
#contents.top section.s05 .point + .point {
	margin-top: 140px;
}
#contents.top section.s05 .point h3 {
	text-align: center;
}
#contents.top section.s05 .point h3 > span {
	display: block;
	padding-top: 80px;
	font-size: 50px;
	font-family: var(--YuMincho-font);
	line-height: 1.75;
}
#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 h3 span.red {
	color: #ff6259 !important;
}
#contents.top section.s05 .point .box {
	margin: auto;
}
#contents.top section.s05 .point .box > img {
	display: block;
	padding-top: 85px;
	margin: auto;
}
#contents.top section.s05 .point .point01 .box {
	width: 780px;
}
#contents.top section.s05 .point .point02 {
	padding-bottom: 75px;
}
#contents.top section.s05 .point .point02 .box {
	width: 800px;
}
#contents.top section.s05 .point .point03 .image {
	display: flex;
	justify-content: center;
	margin-top: 35px;
}
#contents.top section.s05 .point:nth-of-type(even) [class^="point0"] {
	background-color: #fcf5f5;
}
#contents.top section.s05 .point .flex {
	display: flex;
	justify-content: space-between;
	width: 730px;
	margin: auto;
	padding-top: 70px;
}
#contents.top section.s05 .point .column {
	width: 730px;
	padding-top: 100px;
	margin: auto;
	text-align: center;
}
#contents.top section.s05 .point .flex p {
	width: 315px;
	font-size: 18px;
	line-height: 1.75;
	letter-spacing: .03em;
}
#contents.top section.s05 .point .point03 .flex p {
	font-family: "Zen Kaku Gothic New", sans-serif;
}
#contents.top section.s05 .point .flex p .bg {
	background-color: #fdd4d4;
	/* padding: 0 .2em; */
}
#contents.top section.s05 .point .flex p sup {
	font-size: .6em;
	font-family: var(--YuGothic-font);
	padding: 0 .1em;
	/* vertical-align: middle; */
}
#contents.top section.s05 .point .column p {
	margin-top: 40px;
	font-size: 18px;
	line-height: 1.75;
	text-align: left;
}
#contents.top section.s05 .point .column p + p {
	margin-top: 20px;
	font-size: 16px;
}
#contents.top section.s05 .point .column h4 {
	color: #ab012e;
	font-size: 30px;
	letter-spacing: .1em;
}
#contents.top section.s05 .point .notes {
	margin-top: 50px;
	font-size: 11.3px;
}
#contents.top section.s05 .point .notes li {
	line-height: 2;
}
#contents.top section.s05 .point .notes li.inline {
	display: inline;
}
#contents.top section.s05 .point .notes li.inline + li.inline {
	margin-left: 1.2em;
}
#contents.top section.s05 .point-list {
	width: 100%;
	margin: 0;
}
#contents.top section.s05 .point-list li.point2 {
	position: relative;
}
#contents.top section.s05 .point-list li.point2 .pgif {
	position: absolute;
	top: 280px;
	right: 160px;
	width: 370px;
	height: auto;
}
#contents.top section.s05 .point-list li.point3 {
	position: relative;
}
#contents.top section.s05 .point-list li.point3 .pgif {
	position: absolute;
	bottom: 230px;
	right: 195px;
	width: 610px;
	height: auto;
}

#contents.top section.s06 .section-inner {
	
}
#contents.top section.s06 .hako {
	background : -moz-linear-gradient(50% 14.59% -90deg,rgba(255, 255, 255, 1) 0.01%,rgba(241, 241, 241, 1) 100%);
	background : -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0.01%, rgba(241, 241, 241, 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(241, 241, 241, 1) ));
	background : -o-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0.01%, rgba(241, 241, 241, 1) 100%);
	background : -ms-linear-gradient(-90deg, rgba(255, 255, 255, 1) 0.01%, rgba(241, 241, 241, 1) 100%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#F1F1F1' ,GradientType=0)";
	background : linear-gradient(180deg, rgba(255, 255, 255, 1) 0.01%, rgba(241, 241, 241, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF',endColorstr='#F1F1F1' , GradientType=0);
	padding: 62px 15px 130px 0;
	text-align: center;
	margin-bottom: -63px;
	position: relative;
}
#contents.top section.s06 .hako .hakogif {
	position: absolute;
	top: 234px;
	left: 255px;
	width: 488px;
	height: auto;
	padding: 4px;
	box-sizing: border-box;
	background: -moz-linear-gradient(0% 50% 0deg,rgba(151, 128, 0, 1) 0%,rgba(185, 177, 153, 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(151, 128, 0, 1) 0%, rgba(185, 177, 153, 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(151, 128, 0, 1) ),color-stop(0.54,rgba(185, 177, 153, 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(151, 128, 0, 1) 0%, rgba(185, 177, 153, 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(151, 128, 0, 1) 0%, rgba(185, 177, 153, 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='#978000', endColorstr='#745F00' ,GradientType=0)";
	background: linear-gradient(90deg, rgba(151, 128, 0, 1) 0%, rgba(185, 177, 153, 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='#978000',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: -45px; */
}

#contents.top section.s07 .section-inner {
	background: url('../img/s07_bg.png') center top no-repeat;
	padding: 0 0 63px;
	margin-top: 40px;
	position: relative;
}

#contents.top section.s07 h2 {
	padding: 80px 65px 0;
}
#contents.top section.s07 .item01 {
	
}
#contents.top section.s07 .item01 .desc {
	top: -95px;
	position: relative;
}
#contents.top section.s07 .item01 .ph {
	width: 480px;
	margin: 0 -65px 0 0;
	position: relative;
	z-index: 1;
}
#contents.top section.s07 .item02 {
	margin-top: 78px;
}
#contents.top section.s07 .item02 .desc {
	top: -90px;
	position: relative;
}
#contents.top section.s07 .item02 .ph {
	width: 480px;
	margin: 0 0 0 -50px;
	position: relative;
	z-index: 1;
}
#contents.top section.s07 .item03 {
	margin-top: 15px;
}
#contents.top section.s07 .item03 .desc {
	top: -57px;
	position: relative;
}
#contents.top section.s07 .item03 .ph {
	width: 480px;
	margin: 0 -55px 0 0;
	position: relative;
	z-index: 1;
}
#contents.top section.s07 .item04 .desc {
	margin-top: 40px;
}
#contents.top section.s07 .item04 .ph {
	width: 480px;
	margin: 0 0 0 -25px;
	position: relative;
	z-index: 1;
}

#contents.top section.faq {
	position: relative;
}
/* #contents.top section.faq::before {
	content: "";
	display: block;
	width: 800px;
	height: 2px;
	background: #000;
	position: absolute;
	top: -2px;
	right: 50%;
	transform: translateX(50%);
	-webkit-transform: translateX(50%);
} */
#contents.top section.faq .section-inner {
	background : #f5f5f7;
	padding: 110px 0;
	text-align: center;
}
#contents.top section.faq h2 {
	font-size: 60px;
	font-weight: bold;
	letter-spacing: .2em;
	font-family: var(--YuGothic-font);
}
#contents.top section.faq .list {
	width: 795px;
	margin: 60px auto 0;
	text-align: left;
}
#contents.top section.faq .unit {
	padding-bottom: 30px;
}
#contents.top section.faq .label {
	display: flex;
	align-items: center;
	padding: .8em .8em .7em;
	border-left: 6px solid #ff6259;
	border-bottom: 1px solid;
	font-size: 24px;
}
#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: 30px 0;
	font-size: 18px;
	line-height: 1.75;
	width: 735px;
}
#contents.top section.faq .value::before {
	content: "";
	position: absolute;
	left: calc(-18.6px + -1em);
	top: calc(30px + .4em);
	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: .76em;
}
#contents.top section.faq .value .notes li::before {
	content: "※";
}

#contents.top section.s08 .section-inner {
	background: url('../img/s08_bg.png') center top no-repeat;
	padding: 110px 0 100px;
}
#contents.top section.s08 h2 {
	text-align: center;
}
#contents.top section.s08 .item {
	background: url('../img/s08_txt_bg.png') center top no-repeat;
	background-size: contain;
	width: 100%;
	padding: 100px 103px;
	margin: -25px auto 0;
	box-sizing: border-box;
	position: relative;
}
#contents.top section.s08 .item .ph {
	text-align: center;
}
#contents.top section.s08 .item .desc {
	margin: 2em 0 0 0;
	font-size: 18px;
	line-height: 2;
}
#contents.top section.s08 .item .desc P {
	margin-top: 2em;
}

#contents.top section.s08 .section-inner .note {
	margin-top: 2.5em;
	padding: 0 30px;
}

#contents.top section.s09 .section-inner {
	background : #FFF5E6;
	padding: 95px 100px 110px;
}
#contents.top section.s09 h2 {
	text-align: center;
	margin-bottom: 70px;
	font-size: 60px;
	font-weight: bold;
	letter-spacing: .2em;
}
#contents.top section.s09 h2 span {
	display: block;
	font-size: 26px;
	font-weight: normal;
	letter-spacing: .1em;
}
#contents.top section.s09 ul li + li {
	margin-top: 70px;
}
#contents.top section.s09 ul li .desc {
	width: 295px;
	font-size: 20px;
	line-height: 1.8;
}
#contents.top section.s09 ul + p {
	text-align: center;
	margin-top: 70px;
}
#contents.top section.s09 .catch {
	width: 730px;
	margin-left: auto;
	margin-right: auto;
	color: #ff3b97;
	font-size: 34px;
	text-align: left;
	letter-spacing: -.05em;
	font-family: var(--YuMincho-font);
}
#contents.top section.s09 h3 {
	text-align: center;
	margin: 50px auto 1em;
	font-size: 30px;
	color: #ab012e;
}
#contents.top section.s09 h3 + p {
	font-size: 18px;
	line-height: 2;
}
/* }}} */


/* override */
#form_box {
	margin: 0;
}
.form_box-wrap {
	width: 1000px;
	margin: 0 auto;
	border-top: solid 1px #d8d8d8;
	border-right: solid 1px #d8d8d8;
	padding: 50px 50px 0;
	border-left: solid 1px #d8d8d8;
}
.form_box-wrap .Form-List {
	margin: 0;
	padding: 20px 0 0;
}
.form_box-wrap + div > div:first-child {
	border-left: solid 1px #d8d8d8;
	border-right: solid 1px #d8d8d8;
}
.form_box-wrap + div .Form-List {
	margin: 0;
	padding: 20px 0 0;
	border-left: solid 1px #d8d8d8;
	border-right: solid 1px #d8d8d8;
}
.form_box-wrap + div #contact {
	border-left: solid 1px #d8d8d8;
	border-right: solid 1px #d8d8d8;
	border-bottom: solid 1px #d8d8d8;
	margin-bottom: 50px;
}
#form .deliveryinfo.iwa {
	font-size: 15px;
	line-height: 31px;
	margin: auto !important;
	color: rgb(0, 0, 0);
	width: 1000px;
	padding: 0 !important;
}
.FooterLink {
    background: #eeeeee;
    margin: 40px auto 0;
    font-size: 14px;
    padding-bottom: 120px;
}
.FooterLink .shadow-wrap {
	box-shadow: 0 0 12px rgba(0,0,0,0.2);
}
.FooterLink ul {
	width: 1000px;
	margin: auto;
}
.FooterLink ul img {
	width: auto;
}
p.deliveryinfo {
    width: 940px;
    box-sizing: border-box;
    font-size: 14px;
    margin: 0 auto;
}
.FooterLink .fwrap {
	width: 1000px;
	margin: auto;
	padding: 2em 0;
	font-family: TBUDGoStd Regular-83pv-RKSJ-H;
	font-size: 13px;
	line-height: 29px;
	color: #000000;
	color: rgb(0, 0, 0);
}
.FooterLink .Address {
	padding: 0 !important;
	font-family: "IwaGGoPro-Md";
}
.FooterLink .Copyright {
	text-align: center;
	padding: 0;
	margin-top: 0;
	background: no-repeat;
	font-size: 11px;
	line-height: 29px;
	letter-spacing: 0.55px;
	color: rgb(102, 102, 102);
}
.form_plc_wrap_txt {
	font-family: "Zen Kaku Gothic New", sans-serif;
}
p.campaign-lead {
	font-size: 30px;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	text-align: center;
	font-weight: 600;
}
/* vim: set ts=4 sw=4 sts=0 foldmethod=marker : */
