﻿@charset "utf-8";

/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}

#top {
	margin: 0 auto;
	max-width: 100%;
	overflow: hidden;
	clear: both;
	position: relative;
}

#main {
    background-color:#fff;
}

.sp {
	display: none;
}

.clearfix:after {
	content: url("../img/index/pixel.gif");
	display: block;
	clear: both;
	height: 0;
}

h2 {
	font-size:1.8rem;
	font-weight:500;
	text-align:center;
	padding:40px 0;
}

h3 {
	font-size:1.2rem;
	font-weight:500;
	text-align:center;
	padding:20px 0;
}

.box .inner {
	margin: 0 auto;
	max-width:1200px;
}

@media screen and (max-width:994px) {
	.sp {
		display: block;
	}

	.pc {
		display:none;
	}
}

/* class
-------------------------------------------------------*/
.textC {
	text-align:center;
}

/* header
-------------------------------------------------------*/
#header {
	width: 100%;
	position: absolute;
	z-index:1;
}

#header .wrap {
	display:flex;
	align-items: center;
	justify-content: space-between;
}

#header .logo {
	padding:10px;	
}

#header .logo img {
	width:100%;
	height:auto;
	max-width: 280px;
}

#header .tel {
	width: 290px;
	color: #fff;
	position: absolute;
	top: 76px;
	right: 0px;
	z-index: 100;
	font-weight:bold;	
}
.top-box {
	padding-top: 3px;
	font-size: 18px;
	font-weight: bold;
	text-align:center;
	margin-top: 6px;
}


.middle-box {
	display:flex;
	align-items: center;
	font-size: 25px;
	font-weight: bold;
}
.middle-box p:first-child {
	font-size: 18px;
}
.middle-box p:last-child {
	padding-left:10px;
}
.bottom-box {
	font-size: 18px;
	text-align:center;
}

@media screen and (max-width:768px) {
	#header .tel {
		display:none;
	}
}

/* nav_pc
-------------------------------------------------------*/
#nav_pc ul {
	display:flex;
	align-items: center;
	justify-content: flex-end;
	height:90px;
}

#nav_pc ul li a {
	font-size:1.2em;
	color:#fff;
	padding:20px;
	font-weight:bold;
}

/* nav_sp
-------------------------------------------------------*/
#nav_sp.panelactive {
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

.circle-bg {
    position: fixed;
	z-index:3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #2d2f34;
	transform: scale(0);
    top:calc(50% - 50px);
    left:calc(50% - 50px);
    transition: all .6s;
}

.circle-bg.circleactive {
	transform: scale(50);
}

#sp-menu-list {
	display: none;
	position: fixed;
	z-index: 999; 
	width: 100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

#nav_sp.panelactive #sp-menu-list {
	display: block;
}

#nav_sp ul {
	opacity: 0;
	position: absolute;
	z-index: 999;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
}

#nav_sp.panelactive ul {
    opacity:1;
}

#nav_sp.panelactive ul li {
	animation-name:gnaviAnime;
	animation-duration:1s;
	animation-delay:.2s;/*0.2 秒遅らせて出現*/
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes gnaviAnime{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

#nav_sp li{
	text-align: center; 
	list-style: none;
}

#nav_sp li a{
	font-size: 1.2em;
	font-weight:bold;
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/* nav_sp ボタン
-------------------------------------------------------*/
#nav_sp .btn_nav{
	position:fixed;
	top:10px;
	right: 10px;
	z-index: 9999;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
#nav_sp .btn_nav span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
	width: 50%;
}

#nav_sp .btn_nav span:nth-of-type(1) {
	top:15px;	
}

#nav_sp .btn_nav span:nth-of-type(2) {
	top:23px;
}

#nav_sp .btn_nav span:nth-of-type(3) {
	top:31px;
}

#nav_sp .btn_nav.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}

#nav_sp .btn_nav.active span:nth-of-type(2) {
	opacity: 0;
}

#nav_sp .btn_nav.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}

/* swiper
-------------------------------------------------------*/
.swiper .slide-img img {
	filter: brightness(70%);
	object-fit: cover;
	object-position: center;
	height:100vh;
}

@keyframes zoom-in {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.2);
	}
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
	animation: zoom-in 12s linear 0s 1 normal both;  
}



/* caption
-------------------------------------------------------*/
#top .caption-box {
	width: 100%;
	position: absolute;
	top: 46%;
}

#top .caption-box p {
	color:#fff;
	font-family: "Noto Serif JP", serif;
	font-size:3em;
	font-weight: 400;
	font-style: normal;
	text-align:center;
}

.hidden {
	opacity: 0;
}
.fade-in {
	animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@media screen and (max-width:768px) {
	#top .caption-box p {
		font-size:2.4em;
	}
}


/* スクロールボタン
-------------------------------------------------------*/
.scroll-box {
    width: 100%;
    position:absolute;
    bottom:0;
    height: 100px;
    text-align: center;
    font-size: 1.5em;
}

.scroll-box p{
    color: #fff;
    padding: 0;
    margin: 0;

}

.scroll-box .dots {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-box .dots span {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    margin: 5px 0;
    animation: blink 1.8s infinite;
}

.scroll-box .dots span:nth-child(2) {
    animation-delay: 0.6s;
}

.scroll-box .dots span:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}


@media screen and (max-width:480px) {

.scroll-box p{
    display:none;
}
}

/* footer
-------------------------------------------------------*/
footer {
	background:#fff;
	padding-top:30px;
}

.footer-inner {
	padding:10px;
	background:#2d2f34;
}
footer p {
	text-align:center;
	color:#fff;
}

/* index
-------------------------------------------------------*/
#pdl {
}

#pdl h2 {
	padding:0;
	margin-bottom:30px;
}

#pdl .pdl-box {
	margin:0 auto;
	font-size:1.2em;
	max-width:864px;
	position:relative;
	
}

#pdl .pdl-box img {
	position:relative;
	left:-30%;
}

#pdl .pdl-text-box {
    position:absolute;
    top: 30%;
    background: rgba(64, 64, 64, 0.9);
    font-weight:500;
    color:#fff;
    padding: 30px;
    padding-bottom:60px;
    border-radius: 30px;
}

#pdl .check-box {
	margin-top:60px;
}

#pdl .check-box h2 {
	margin-bottom: 60px;
	
}
.check-box .check-box-inner {
	display:flex;
	flex-wrap: wrap;
	justify-content: start;


}

.check-box-inner .check-item {
	width:30%;
	background:#f08300;
	box-sizing:border-box;
	padding:20px 10px;
	margin-bottom:40px;
}

.check-box-inner .check-item:nth-child(2),
.check-box-inner .check-item:nth-child(5) {
	margin-left:5%;
	margin-right:5%;
}


.check-box-inner .check-item p {
	color:#fff;
	font-weight:600;
	font-size:1.2rem;
	margin-left:1em;
}

.check-box-inner .check-item p:before {
	font-family: "Font Awesome 6 Free";
	content:'\f00c';
	font-weight:900;
	padding:6px;
	margin-right:0.5em;
	width:20px;
	height:20px;
	background:rgba(255,255,255,0.7);
	color:#f00;
}

.check-box-inner .check-item h3 {
	color:#fff;
	width:100%;
	background:#f08300;
}

.check-box-inner .check-item ul {
	padding:10px;
}

.check-box-inner .check-item ul li {
	list-style:disc;
	margin-left:1em;	
}

.check-item .check-item-box {
	background:#f7ab00;
	padding:4px;	
}

.demerit-box {
	margin-top:30px;
}
.demerit-box h3 {
	display:flex;
	align-items: center;
	text-align:left;
}

.demerit-box h3 > .heading {
	padding:16px;
	border-radius:30px;
	background:#b0aaaa;
	color:#fff;
	margin-right:1em;
	white-space: nowrap;
}

.demerit-item p {
	padding:0 1em;
}

.demerit-item + .demerit-item {
	margin-top:30px;
}

#solution {
	margin-top:60px;
}

#solution .box {
	background:#f8ffec;
}
#solution .solution-title {
	padding: 40px 0;
	text-align:center;
	background: #fff;
	font-size:1.8rem;
	line-height:1.4;
	font-family: "Noto Serif JP", serif;
}

#solution .solution-title span {
	font-size:2.5rem;
}

#solution .info-box {
	font-family: "Noto Serif JP", serif;
	font-size:2em;
	font-weight:600;
	text-align:center;
	padding:30px;
	background:#fff;
	border:20px #c2f46b solid;
	max-width:600px;
	margin:0 auto;
	
}

#solution .tel-box {
	display:flex;
	justify-content: center;
	align-items: center;
}

#solution .tel-box img {
	max-width:100px;
}

#solution .tel-box p {
	font-size:2.5rem;
	padding-left:10px;
}

#solution .fax-box {
	display:flex;
	justify-content: center;
	align-items: center;
	margin-top:1em;
}

#solution .fax-box p {
	font-size:2.5rem;
}

#solution .fax-box p:last-child {
	padding-left:20px;
}



#solution .solution-box {
	display:flex;
	align-items: center;
	
}

#solution .solution-box img {
	width:50%;
	max-width:480px;
}

#solution h2 {
	font-family: "Noto Serif JP", serif;
	font-size:2.5em;
}

#solution .solution-text {
	width:50%;
	display:flex;
	flex-direction: column;
	
}

#solution .solution-text p {
	text-align:center;
	font-size:2em;
	font-weight:600;
	font-family: "Noto Serif JP", serif;
}

#solution ul {
 	margin-top:1em;
	background:#fff;
	padding:20px;
	font-weight:500;
	border:20px #c2f46b solid;
}

#solution .solution-text ul li {
	font-size:1.6em;
	list-style:disc;
	margin-left:1em;	
}

#solution .solution-text ul li:first-child {
	text-align:center;
	list-style:none;
	font-size:1.8em;
	font-weight:600;
	margin-left:0;
	margin-bottom:20px;
	font-family: "Noto Serif JP", serif;


}

#question {
}

.question-box ul{
    margin:0;
}

.question-box li {
    margin:0;
}

.question-box li.question{
    display: block;
    width: 5%;
    clear: left;
    float: left;
    padding:2%;
    font-size:1.5rem;
}

.question-box li.answer{
    display: block;
    width: 87%;
    float: left;
    padding:2%;
    margin-top:10px;
    font-size:1.2rem;
}

.question-Navi {
    max-width:940px;
    padding-bottom:70px;
    margin:0 auto;
}


.accordionbox{
	margin: 10px auto 40px;
}

.accordionlist dt{
    display:block;
    background: #fff;
    padding: 10px 0 10px 5px;
    border-top: 1px solid #DFDFDF;
    margin:0;
}

.accordionlist dt:hover {
    background-color: #c2f46b;
    cursor:pointer;
}

.accordionlist dt:first-child{
    border-top: none !important;
}

.accordionlist dt .title{
    padding-left: 10px;
	float: left;
	width:90%;
}


.accordionlist dd{
    display:none;
	background:#f7f7f7;
	padding:5px 5px 10px 5px;
	font-size:90%;
	margin-bottom:0;
	font-size:1.2rem;
}
.accordion_icon,
.accordion_icon span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.accordion_icon {
	position: relative;
	width: 40px;
	height: 30px;
	float: right;
	margin-right: 5px;
	margin-bottom: 0px;
    margin-top: 36px;
}

.accordion_icon span {
	position: absolute;
    left: 6px;
    width: 50%;
	height: 2px;
    background-color: #333;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
}

.accordion_icon span:nth-of-type(1) {
    top: 5px;
	transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.accordion_icon span:nth-of-type(2) {
    top: 5px;
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
/*＋、－切り替え*/
.accordion_icon.active span:nth-of-type(1) {
	display:none;
}
.accordion_icon.active span:nth-of-type(2) {
	top: 5px;
	transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

@media screen and (max-width:768px) {
	#pdl .pdl-box {
		background-image:url("../img/index/pdl-back.jpg");
		background-size: cover;
		background-position: center;
		padding: 2%;
	}
	#pdl .pdl-box img {
		display:none;
	}

	#pdl .pdl-text-box {
		position:relative;
		top: 0;
		padding-bottom:30px;
	}
	
	.check-box .check-box-inner {
		flex-direction: column;
	}
	
	.check-box-inner .check-item {
		width:96%;
		margin:30px 2%;
	}
	
	.check-box-inner .check-item:nth-child(2),
	.check-box-inner .check-item:nth-child(5) {
		margin-left:2%;
		margin-right:2%;
	}
	
	.demerit-item {
		padding: 0 2%;
	}
		
	#solution {
		margin-top:30px;
	}
		
	#solution h2 {
		font-size:2.4rem;
	}
		
	#solution .solution-box {
		flex-direction: column;
	}
	
	#solution .solution-box img {
		width:100%;
		max-width:320px;
	}
	
	#solution .solution-title span {
		font-size:2.4rem;
	}
	
	#solution .solution-text {
		width:100%;
		box-sizing:border-box;
		flex-direction: column-reverse;
	}
	
	#solution .solution-text p {
		font-size:1.8em;
	}
	
	#solution .solution-text ul {
		margin-top:0;
	}
	
	#solution .solution-text ul li {
		font-size:1.4em;
	
	}
}

/* contact-plus
-------------------------------------------------------*/
#contact-plus {
	position:relative;
	background-image:url("../img/index/contact-plus-img.jpg");
	background:#2d2f34;
	background-position: center 20%;
	background-size: cover;
 	box-sizing: border-box;
}


#contact-plus h2 {
 font-family: "Noto Serif JP", serif;
	font-size: 2.5em;
	color:#fff;
	padding-bottom:0;
	padding-left:20px;
	padding-right:20px;

}

#contact-plus h2 + p{
	color:#fff;
	font-size:1.2em;
	font-family: "Noto Serif JP", serif;
	text-align:center;
	padding:0 20px;
	
}


#contact-plus .contact-plus-inner {
	color:#fff;
	text-align:center;
	padding: 70px 20px;	
}

#contact-plus .contact-plus-inner a {
	display:block;
	max-width:480px;
	margin:0 auto;
	font-family: "Noto Serif JP", serif;
	font-size:1.5em;
	font-weight:600;
	padding:20px 10px;
	background:#fff;
	border:2px #2d2f34 solid;
}

#contact-plus .contact-plus-inner a:hover {
	background:#2d2f34;
	color:#fff;
	border-color:#fff;
	opacity:1;
	
	
}

/* contact
-------------------------------------------------------*/
#contact-top {
	overflow:hidden;
}

#contact-top img {
	filter: brightness(70%);
	position:relative; 
	object-fit: none;
	object-position: center 10%;
	height:500px;

}

#contact h2 span {
	display:block;
	font-size:1rem;
}
#contact .box {
}

#contact .contact-box {
	max-width: 64%;
    margin:0 auto;
}

#contact .txt_head {
	font-size: 120%;
	color: #f00;
	text-align: center;
	margin: -20px 0 30px;
	line-height: 1.3;
}
/* table_temp start */
#contact .table_temp {
	width: 100%;
}
#contact.contact_after .inner {
	padding: 0;
}
#contact .hissu {
	display: flex;
	padding:25px 5px;
	width: 100%;
	table-layout: fixed;
}
#contact .hissu>* {
	display: table-cell;
	vertical-align: middle;
	padding: 14px 10px;
	box-sizing: border-box;
	line-height: 1;
}

#contact .inner-box {
	width: 340px;
	text-align: left;
}
#contact .hissu .inner-box b,
#contact .hissu .inner-box p {
	display: block;
	position: relative;
	font-weight: normal;
}
#contact .hissu .inner-box p {
    top:40%;    
}
#contact .hissu .inner-box b::after,
#contact .hissu .inner-box p::after {
	color: #fff;
	font-weight: 500;
	font-size: 75%;
	width: 34px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: -5px;
	bottom: 0;
	margin: auto;
    border-radius: 2px;
}
#contact .hissu .inner-box b::after,
#contact .hissu .inner-box p::after {
	content: "必須";
	background: #d97480;
}

#contact .nini {
	display: flex;
	padding:20px 5px;
	width: 100%;
	table-layout: fixed;
}
#contact .nini>* {
	display: table-cell;
	vertical-align: middle;
	padding: 14px 10px;
	box-sizing: border-box;
	line-height: 1;
}

#contact .nini .inner-box b,
#contact .nini .inner-box p {
	display: block;
	position: relative;
	font-weight: normal;
}
#contact .nini .inner-box p {
    top:40%;    
}
#contact .nini .inner-box b::after,
#contact .nini .inner-box p::after {
	color: #fff;
	font-weight: 500;
	font-size: 75%;
	width: 34px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: -5px;
	bottom: 0;
	margin: auto;
    border-radius: 2px;
}
#contact .nini .inner-box b::after,
#contact .nini .inner-box p::after {
	content: "任意";
	background: #777;
}

#contact.contact_after tr {
	border-bottom: 1px solid #ccc;
}
#contact.contact_after tr:first-child {
	border-top: 1px solid #ccc;
	margin: 30px 0 0;
}
#contact.contact_after tr th {
	color: #aaa;
}
#contact.contact_after tr td {
	font-weight: 500;
}
.txt_form .red,
.error_messe b {
	color: #f00;
	font-weight: normal;
}
.error_messe {
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.3;
}
.error_messe>* {
	display: inline-block;
}
#contact input[type=text], #contact select, #contact textarea {
	width: 100%;
}
#contact input[type=text], #contact select {
	height: 44px;
	background: #eeeeee;
}
#contact textarea {
	min-height: 150px;
	resize: vertical;
	background: #eeeeee;
}

#contact .box h3{
    font-size:1.2em;
    position: relative;
    text-align:center;
    margin:10px;
}

#contact .policy-text {
  height: 300px;
  overflow: auto;
  border:1px solid #a2a0a0;
  margin:10px 0;
}


#contact .check_area {
    text-align:center;
    background-color: #eee;
    padding: 10px;

}


#contact .check_area input[type=checkbox]{
    visibility:hidden;
}

#contact .label-checkbox{
      cursor: pointer;
      padding-right: 3px;
      font-weight: normal;
      font-size:14px;
}

#contact .label-checkbox .lever:before{
      content:"　";
      margin-right: 7px;
      position: relative;
      top: 0;
      padding: 0px 3px 0px 3px;
      background-color:#fff;
      border:1px solid #cccccc;
}

#contact .label-checkbox input[type=checkbox]:checked + .lever{

}

#contact .label-checkbox input[type=checkbox]:checked + .lever:before{
      content:"✔";
      color:#e60012;
      padding: 0px 6px 0px 3px;

}

#contact .txt_form {
	text-align: center;
	line-height: 1.3;
}

#contact .txt_form span {
	display: block;
}
::placeholder {
	color: #ccc;
}

#contact .form_btn {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: center;
	justify-content: space-evenly;
}
#contact .form_btn01,
#contact .form_btn02 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 260px;
	height: 50px;
	border: none;
	border-radius: 5px;
	padding: 10px;
	margin: 30px auto 0;
	box-sizing: border-box;
	font-size: 120%;
	color: #fff;
	line-height: 1;
}
#contact .form_btn01,
#contact .form_btn02 {
	background: #1b1b1b;
}

#contactfinish p {
	text-align:center;
	font-size: 1.2em;
}

/* table_temp end */
@media screen and (max-width:768px) {
    #contact #area01.area {
        padding: 50px 20px 80px;
    }
	#contact .txt_head {
		font-size: 100%;
	}

    #contact .contact-box {
	   max-width: 94%;

    }

	/* table_temp start */
	#contact.contact_after tr:first-child {
		margin: 20px 0 0;
	}
	#contact .hissu {
	    display:block;
    }
	#contact .hissu>* {
		display: block;
		padding: 15px 0;
		line-height: 1.3;
	}
	#contact .inner-box {
	    padding-top:0;
		width: 100%;
		font-size: 100%;
	}
	#contact .hissu .inner-box b::after,
    #contact .hissu .inner-box p::after{
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
	}
	
	#contact .nini {
	    display:block;
    }
	#contact .nini>* {
		display: block;
		padding: 15px 0;
		line-height: 1.3;
	}

	#contact .nini .inner-box b::after,
    #contact .nini .inner-box p::after{
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
	}
	

	#contact .radio_area label,
	#contact .check_area label {
		display: flex;
		align-items: center;
	}
	#contact .form_btn {
		flex-flow: column;
	}
	#contact .form_btn01,
	#contact .form_btn02 {
		margin: 20px 0 0;
		font-size: 100%;
		height: 50px;
	}
	/* table_temp end */
}
/*contact.php css */
#contact .txt_rslt {
    display: flex;
	padding:20px 5px;
	width: 99%;
	table-layout: fixed;
}
#contact .txt_rslt>* {
	display: table-cell;
	vertical-align: middle;
	padding: 14px 10px;
	box-sizing: border-box;
	line-height: 1;
}
#contact .ask_box {
	width: 280px;
	text-align: left;
}
#contact .txt_answr {
	 display:flex;
}
@media screen and (max-width:768px) {
	#contact-top img {
		height:300px;
		object-position: 10% 20%;
	}	
    #contact .txt_rslt {
    display: block;
    margin:0 auto;
    width:70%;
    }
    #contact .ask_box {
	    width: 210px;
    }
    #contact .txt_answr {
	 width:100%;
	 text-align:left;
    }
}



@media screen and (max-width:480px) {

#contact-top .top-img{
  font-size: 1.0em;
}

#contact-top .icon {
  font-size:2em;
}


#contact-top .center{
   font-size:1.5em;   
}


}


/* privacy policy
-------------------------------------------------------*/
#pp-top .top-img{
  margin-top: 70px;
  position: relative;
  color: #fff;
  font-size: 2em;
}

#pp-top .center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#pp .box{
     padding: 40px 30px 40px;
}


#pp .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#pp .h2plus{
     text-align:center;

}

#pp .pp-inner-box h3{
   font-weight:bold;
   padding:1%;
}

#pp .pp-inner-box{
   max-width: 940px;
   padding-bottom: 40px;
   margin: 0 auto;
}

#pp .pp-inner-box h4{
   font-weight:bold;
   padding:1%;
}

#pp .pp-inner-box-contents p{
   font-size:0.9em;
   margin:1%;
}

#pp .pp-inner-box-contents-box {
    margin: 0 auto;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: 10px solid #fff;
    text-align:center;
    font-size:0.9em;

}

#pp .pp-inner-box-contents-box a{
    color: #fff;
}


#pp .pp-inner-box-contents-box-under {
    margin: 0 auto;
    max-width: 75%;
    word-wrap: break-word;
}