@charset "utf-8";

/*=============================================================
 contents Layout
=============================================================*/
/* contents
-------------------------------------------------------------*/
#header {
   overflow: hidden;
   margin: 0 auto;
   padding-bottom: 0;
   width: 100%;
   @media screen and (max-width: 700px) {
      display: flex;
		justify-content: center;
		height: 60px;
	}
}

#header .header-logo {
   position: relative;
   height: 80px;
   padding: 0 20px;
   background-color: #fff;
   display: flex;
   justify-content: space-between;
   align-items: center;
   transition: .2s;

   @media screen and (max-width: 700px) {
		text-align: center;
      height: auto;
	}
}

#header .header-logo img {
	max-width: 420px;
	width: 100%;

	@media screen and (max-width: 700px) {
		width: 66.9%;
	}
}

body {
   margin: 0;
   font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

#pageBody {
   background-color: #f0f0f0;
}

#contents {
   line-height: 1.8;
   max-width: 960px;
   width: 95%;
   margin: 0 auto;
   padding: 40px 0;
   @media screen and (max-width: 700px) {
      padding: 20px 0;
   }
}

#contents .contentsInr {
   width: 960px;
   margin: 0 auto;
}

#contents .mT1L {
   display: flex;
   margin-top: 1.8em;
   justify-content: space-between;
   @media screen and (max-width: 700px) {
      display: block;
   }
}

#contents .boxContents {
   background-color: #fff;
   margin-top: 40px;
   padding: 30px 20px;
}

#contents>.boxContents:first-child,
#contents .boxContents>*:first-child {
   margin-top: 0;
}

#contents .boxContents>*:last-child {
   margin-bottom: 0;
}

/* setMenu */
#contents.setMenu .boxContents {
   box-sizing: border-box;
   float: left;
   width: 710px;
}

.nopc {
	display: none;
}

@media screen and (max-width: 700px) {
	.nopc {
		display: block;
	}
   .nosp {
      display: none;
   }
}

.btn-wrapper {
   max-width: 390px;
   width: 80%;
   margin: 0 auto;
   padding-bottom: 40px;
}

.btn {
   display: flex;
   -webkit-box-align: center;
   align-items: center;
   -webkit-box-pack: center;
   justify-content: center;
   background-color: #f7931e;
   color: #fff;
   font-size: 1.1rem;
   border-radius: 50px;
   position: relative;
   margin: 0 auto;
   margin-left: 0;
   transition: opacity .3s ease;
   padding: 1rem 2rem;
   text-align: center;
   line-height: 1.4;
   font-weight: bold;
   text-decoration: none;
}
.btn::after {
   content: "";
   width: 0.5em;
   height: 0.5em;
   border-top: 1px solid #fff;
   border-right: 1px solid #fff;
   transform: rotateZ(45deg);
   position: absolute;
   right: 1rem;
   top: 0;
   bottom: 0;
   margin: auto 0;
   transition: transform .3s ease, -webkit-transform .3s ease;
}
.btn:hover {
	opacity: 0.7;
}

/* title
-------------------------------------------------------------*/
/* pageTtl */
.pageTitle {
   color: #75be00;
   font-size: 200%;
   line-height: 1.3;
   font-weight: bold;
   margin: 0 -20px 30px;
   padding: 0 20px 30px;
   border-bottom: 2px solid #75be00;
   @media screen and (max-width: 700px) {
      font-size:22px;
      margin:0 -12px 20px;
      padding:0 12px 15px;
   }
}

.pageTitle.setLogo {
   display: table;
   width: 100%;
   padding-bottom: 10px;
}

.pageTitle.setLogo>* {
   display: table-cell;
   vertical-align: top;
   padding-bottom: 20px;
}

.pageTitle.setLogo>.logo {
   text-align: right;
   padding-bottom: 0;
}

/* ttl-h2 */
.ttl-h2 {
   font-size: 157.1%;
   line-height: 1.3;
   font-weight: bold;
   margin: 60px 0 15px;
   padding: 0 0 12px 12px;
   border-bottom: 1px solid #75be00;
   position: relative;
   @media screen and (max-width: 700px) {
      font-size: 19px;
   }
}

.ttl-h2:before {
   content: "";
   display: block;
   width: 0;
   position: absolute;
   top: 3px;
   bottom: 14px;
   left: 0;
   border-left: 4px solid #75be00;
}

.pageTitle+.ttl-h2 {
   margin-top: 0;
}

select.jumpMenu+.ttl-h2 {
   margin-top: 35px;
}

/* ttl-h3 */
.ttl-h3 {
   font-size: 128.6%;
   line-height: 1.3;
   font-weight: bold;
   margin: 60px 0 15px;
   padding-bottom: 8px;
   border-bottom: 1px solid #333333;
}

.pageTitle+.ttl-h3,
.ttl-h2+.ttl-h3,
.ttl-bg+.ttl-h3 {
   margin-top: 0;
}

/* ttl-h4 */
.ttl-h4 {
   font-size: 114.3%;
   line-height: 1.4;
   font-weight: bold;
   margin: 40px 0 10px;
   @media screen and (max-width: 700px) {
      font-size: 16px;
   }
}

.pageTitle+.ttl-h4,
.ttl-h2+.ttl-h4,
.ttl-h3+.ttl-h4 {
   margin-top: 0;
}

/* ttl-fig */
.ttl-fig {
   font-size: 100%;
   line-height: 1.4;
   font-weight: bold;
   margin: 30px 0 10px;
   padding-top: 0;
}

.pageTitle+.ttl-fig,
.ttl-h2+.ttl-fig,
.ttl-h3+.ttl-fig,
.ttl-h4+.ttl-fig {
   margin-top: 20px;
}

.ttl-fig .ttl {
   float: left;
}

.ttl-fig .caption {
   font-size: 85.7%;
   font-weight: 300;
   float: right;
   padding-top: 2px;
}

/* ttl-bg */
.ttl-bg {
   color: #fff;
   font-size: 157.1%;
   line-height: 1.3;
   font-weight: bold;
   background-color: #009e96;
   margin: 70px 0 20px;
   padding: 6px 12px;
}

/* ttl-img */
.ttl-img {
   line-height: 1;
}

figure {
   margin-block-start: 0;
   margin-block-end: 0;
   margin-inline-start: 0;
   margin-inline-end: 0;
}
img {
   width: 100%;
   height: auto;
}
.boxL {
   width: 100%;
}
.boxR {
   width: 60%;
   margin: auto;
}
@media screen and (max-width: 700px) {
   .boxL {
      width: 100%;
   }
   .boxR {
      max-width: 440px;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
   }
}
.boxL > p {
   margin-top: 0;
}
@media screen and (max-width: 700px) {
   .list-numP {
      padding-left: 25px;
      font-size: 14px;
   }
}
.list-numP ul {
   list-style-type: disc;
   padding-inline-start: 20px;
}

#footer .inner {
	background-color: #fff;
}

#footer .inner p {
	text-align: right;
	padding: 80px 60px 40px;
	font-size: 80%;
   @media screen and (max-width: 700px) {
      padding: 40px 15px 15px;
      font-size: 75%;
      text-align: center;
      margin: 0;
   }
}