/* ----------
	common
---------- */
body {
	background: #f7f7f7;
	color: #222;
	font-family: "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo",sans-serif;
	-webkit-text-size-adjust: 100%;
}

.container {
	overflow-x: hidden;
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
	background: #fff;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

table {
    border-collapse: collapse;
    text-indent: initial;
    border-spacing: 2px;
}

tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

hr {
   border-width: 1px 0px 0px 0px; /* 太さ */
   border-style: solid; /* 線種 */
   border-color: #222;   /* 線色 */
   height: 1px;         /* 高さ(※古いIE用) */
}

p {
	line-height: 160%;
}

.b {
	font-weight: bold;
}
.big {
	font-size: 1.25em;
}
.small {
	font-size: .8em;
}
@media screen and (max-width: 767px){
	.small {
		font-size: .6em;
		line-height: 100%;
	}
}

.blue{
	color: #007eaa;
}

.base-blue{
	background: #007eaa;
	color: #fff;
}

.base-gray{
	background: #f7f7f7;
}



mark {
	background: linear-gradient(transparent 80%, #04bdfd 0%);
	font-weight: bold;
}


/*改行*/
@media screen and (min-width: 768px){
.br-sp {display: none; }
}

@media screen and (max-width: 767px){
.br-pc {display: none; }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

@media (min-width: 768px){
	.pc-display-none{
		display: none;
	}
}

@media (max-width: 767px){
	.sp-display-none{
		display: none;
	}
}


/*リンク先位置調整*/
.anchor{
    padding-top: 200px;
    margin-top: -200px;
}
@media (max-width: 767px){
	.anchor{
	    padding-top: 100px;
	    margin-top: -100px;
	}
}


/* ----------
	header
---------- */

nav {
  display: block;
  position: fixed;
  top: 0;
  right: -275px;
  bottom: 0;
  width: 275px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  right: 100px;
  opacity: 1;
}
@media screen and (min-width: 1611px){
	.open nav {
	  right: 0px;
	  opacity: 1;
	}
}
@media screen and (min-width: 1800px){
		.open nav {
		  right: 80px;
		  opacity: 1;
		}
	}
}


nav .inner {
  padding: .5em;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  display: inline-block;
  background: #007eaa;
  width: 3.2em;
  margin: .4em;
  padding: .8em .5em;
  text-align: center;
  border: none;
  border-radius: 10px;
}

nav .inner ul li.padding-0{
  padding: .8em 0em;
}

nav .inner ul li a {
  color: #fff;
  font-size: .9em;
  padding: 0;
  text-decoration: none;
  transition-duration: 0.2s;
}


@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }

  .open nav {
    left: 0px;
    opacity: 1;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 30px;
  right: 410px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn:before{
	display: block;
	content: 'PAGE';
	position: fixed;
	top: 10px;
	right: 395px;
	width: 60px;
	text-align: center;
	font-weight: bold;
	color: #007eaa;
	font-size:10px
	-webkit-transform:scale(0.5);
	-moz-transform:scale(0.5);
	-ms-transform:scale(0.5);
	-o-transform:scale(0.5);
	transform:scale(0.5);
}

@media screen and (max-width: 767px){
	.toggle_btn{
		top: 30px;
		right: 15px;
	}
	.toggle_btn:before{
		right: 0px;
	}
}

@media screen and (max-width: 1610px){
	.toggle_btn{
		top: 30px;
		right: 30px;
	}
	.toggle_btn:before{
		right: 15px;
	}
}

@media screen and (min-width: 1611px){
	.toggle_btn{
		top: 30px;
		right: 310px;
	}
	.toggle_btn:before{
		right: 295px;
	}
}

@media screen and (min-width: 1800px){
	.toggle_btn{
		top: 30px;
		right: 400px;
	}
	.toggle_btn:before{
		right: 385px;
	}
}




.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #007eaa;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #007eaa;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}





/* ----------
	footer
---------- */
#site-footer {
	padding: 30px 100px;
	text-align: left;
	max-width: 920px;
	height: fit-content;
	margin: 0 auto;
}

#footer-in h1{
	font-size: 1.2em;
	font-weight: normal;
}

#footer-in a{
	color: #fff;
	text-decoration: none;
}

#copyright{
	color: #fff;
}

@media (max-width: 767px){
	#site-footer{
		padding: 2% 5% 7%;
	}

	#footer-in h1{
		font-size: 1.1em;
	}

	#footer-in p{
		font-size: .9em;
	}
}




/* ----------
	index
---------- */

/* common */
.index section {
	padding: 0;
}

.index .tit {
	text-align: center;
	font-weight: bold;
}

.index h2 {
	font-size: 36px;
	font-weight: normal;
	margin: 0;
}

@media (max-width: 767px) {
	.index h2 {
		font-size: 6vw;
	}
}

.index .txt li{
	padding-bottom: .5em;
}

.index .txt ul.list-style-none {
	list-style: none;
}


@media (max-width: 767px) {
	.index .txt p {
	font-size: 1em;
	}

	.index .txt li{
		font-size: 1em;
		padding-bottom: .5em;
	}

	.index .txt ul{
		padding-inline-start: 1em;
	}

}

section{
	border-top: solid 40px #007eaa;
}

.section-top{
	background: #cbdeee;
	padding: 60px 0;
}
@media (max-width: 767px){
	.section-top{
		padding: 40px 0 30px;
	}
}

.section-top img{
	display: block;
	height: 20px;
	width: auto;
	margin: 0 auto;
}
@media (max-width: 767px){
	.section-top img{
		height: 13px;
	}
}

.section-top hr{
	width: 40px;
	border-width: 2px 0px 0px 0px;
	margin: 30px auto 20px;
}
@media (max-width: 767px){
	.section-top hr{
		width: 25px;
		margin: 15px auto 10px;
		border-width: 1.5px 0px 0px 0px;
	}
}

.section-top h2{
	text-align: center;
	font-size: 1.5em;
	margin: 0;
	font-weight: bold;
}
@media (max-width: 767px){
	.section-top h2{
		font-size: 1.1em;
	}
}

.body{
	padding: 0 100px;
}
@media (max-width: 767px){
	.body{
		padding: 0 5%;
	}
}

.page{
	border-top: solid 40px #007eaa;
	padding: 0 100px;
}
@media (max-width: 767px){
	.page{
		padding: 0 5%;
	}
}

.padding-top80{
	padding-top: 80px;
}
.padding-bottom80{
	padding-bottom: 80px;
}
@media (max-width: 767px){
	.padding-top80{
		padding-top: 40px;
	}
	.padding-bottom80{
		padding-bottom: 40px;
	}
}

.flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

img.page-tit{
	display: block;
	height: 100px;
	width: auto;
	margin-right: 50px;
}

h3.page-tit{
	vertical-align: top;
	font-size: 1.5em;
	font-weight: bold;
}

h3.page-tit:before{
	content: '';
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background-image: url(../img/icon-A.png);
	background-size: 1.5em 1.5em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .3em;
	margin-bottom: .1em;
}

.txt{
	margin: 40px 0;
}

.text-align-center{
	text-align: center;
}

img.page-under{
	display: block;
	height: 10px;
	width: auto;
	margin: 60px auto 0;
}

.point h4.b{
	font-size: 1.2em;
	margin-top: 2em;
}

.point h4:before{
	content: '';
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	background-image: url(../img/icon-B.png);
	background-size: 1.2em 1.2em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .3em;
	margin-bottom: .1em;
}

.source{
	text-align: right;
}

img.center{
	display: block;
	margin: 50px auto;
}

@media (max-width: 767px){
	img.page-tit{
		height: 60px;
	}

	h3.page-tit{
		margin-top: 20px;
		font-size: 1.1em;
		margin-bottom: .5em;
	}

	.txt{
		margin-top: 0;
	}

	img.page-under{
		height: 8px;
		margin: 30px auto 0;
	}

	.point h4.b{
		font-size: 1em;
		margin-top: 1.5em;
	}

	.source{
	text-align: left;
	}

	img.center{
		margin: 20px auto;
	}
}


.img-box {
    position: relative;
}

.sample-box{
	position: relative;
}





/* 目次 */

.index #index .index-top{
	margin-bottom: 80px;
}

.index #index .index-top p{
	text-align: center;
	padding: 7px;
	margin-top: 0;
	margin-bottom: 0;
}
@media (max-width: 767px){
	.index #index .index-top p{
		font-size: .8em;
		line-height: 140%;
	}
}

.index #index{
	padding: 0 0 40px;
	border-top: none;
}

.tit-en{
	display: block;
	width: auto;
	height: 35px;
}
@media (max-width: 767px){
	.tit-en{
		height: 20px;
	}
}

.tit-ja-small{
	font-weight: bold;
	font-size: 1.3em;
	letter-spacing: 0.2em;
	margin-bottom: 2em;
}
@media (max-width: 767px){
	.tit-ja-small{
		font-size: 1em;
	}
}

.tit-part{
	display: block;
	width: auto;
	height: 40px;
	margin-bottom: 3em;
}
@media (max-width: 767px){
	.tit-part{
		height: 30px;
		margin-bottom: 2em;
	}
}

.tit-en-small{
	display: block;
	width: auto;
	height: 13px;
}
@media (max-width: 767px){
	.tit-en-small{
		height: 9px;
	}
}

.tit-ja{
	font-weight: bold;
	font-size: 1.5em;
	letter-spacing: 0.1em;
	margin-bottom: .5em;
	margin-top: .5em;
}
@media (max-width: 767px){
	.tit-ja{
		font-size: 1.2em;
	}
}

#index table{
	margin-bottom: 40px;
}

#index th,#index td,#index th a{
	vertical-align: top;
	text-align: left;
}

#index th,#index td{
	padding-top: .25em;
	padding-bottom: .25em;
}


#index th a{
	color: #007eaa;
	text-decoration: none;
	padding-right: .8em;
}

#index td a{
	color: #007eaa;
	text-decoration: none;
}

@media (max-width: 767px){
	#index th,#index td{
		padding-top: .1em;
		padding-bottom: .1em;
	}

	#index th{
		width: 42px;
	}

	#index th a{
		font-size: .8em;
	}

	#index td{
		font-size: .8em;
	}

	#index .index-9 th{
		width: 52px;
	}


}




/* section-1 */
.index #section-1 .img-5-1{
	width: 80%;
}
@media (max-width: 767px){
	.index #section-1 .img-5-1{
		width: 100%;
	}
}


/* section-2 */
.img-6-1, .img-7-1, .img-8-1, .img-9-1{
	width: 50%;
}
@media (max-width: 767px){
	.img-6-1, .img-7-1, .img-8-1, .img-9-1{
		width: 100%;
	}
}


/* section-3 */
.index #section-3 {
	
}

@media (max-width: 767px){
	.index #section-3 {
		
	}
}



/* section-4 */
.img-12-2{
	width: 30%;
}

.img-12-1, .img-13-1, .img-13-2, .img-13-3, .img-13-4, .img-14-1{
	width: 50%;
}

 .img-14-2, .img-14-3, .img-14-4, .img-15-1, .img-15-7{
 	width: 30%;
}

@media (max-width: 767px){
	.img-12-2{
		width: 50%;
	}

	.img-12-1, .img-13-1, .img-13-2, .img-13-3, .img-13-4, .img-14-1{
		width: 100%;
	}

	 .img-14-2, .img-14-3, .img-14-4, .img-15-1, .img-15-7{
	 	width: 100%;
	}
}

.index #section-4 p.result{
	font-size: 1.5em;
	vertical-align: middle;
}

.index #section-4 p.result-1:before{
	content: '';
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background-image: url(../img/result-1.png);
	background-size: 1.5em 1.5em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-bottom: .1em;
}

.index #section-4 p.result-2:before{
	content: '';
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background-image: url(../img/result-2.png);
	background-size: 1.5em 1.5em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-bottom: .1em;
}

.index #section-4 p.result-3{
	clear: left;
}

.index #section-4 p.result-3:before{
	content: '';
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background-image: url(../img/result-3.png);
	background-size: 1.5em 1.5em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-bottom: .1em;
}

.index #section-4 p.result-4:before{
	content: '';
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background-image: url(../img/result-4.png);
	background-size: 1.5em 1.5em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-bottom: .1em;
}

.index #section-4 p.result-5:before{
	content: '';
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background-image: url(../img/result-5.png);
	background-size: 1.5em 1.5em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-bottom: .1em;
}

.index #section-4 p.result-6:before{
	content: '';
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background-image: url(../img/result-6.png);
	background-size: 1.5em 1.5em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-bottom: .1em;
}

.index #section-4 p.result-7:before{
	content: '';
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background-image: url(../img/result-7.png);
	background-size: 1.5em 1.5em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-bottom: .1em;
}

.index #section-4 p.result-8:before{
	content: '';
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background-image: url(../img/result-8.png);
	background-size: 1.5em 1.5em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-bottom: .1em;
}

span.no-1:before{
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	background-image: url(../img/result-1.png);
	background-size: 1em 1em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .3em;
	margin-left: .3em;
	margin-bottom: .1em;
}
span.no-4:before{
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	background-image: url(../img/result-4.png);
	background-size: 1em 1em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .3em;
	margin-left: .3em;
	margin-bottom: .1em;
}
span.no-5:before{
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	background-image: url(../img/result-5.png);
	background-size: 1em 1em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .3em;
	margin-left: .3em;
	margin-bottom: .1em;
}
span.no-8:before{
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	background-image: url(../img/result-8.png);
	background-size: 1em 1em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .3em;
	margin-left: .3em;
	margin-bottom: .1em;
}


.index #section-4 img.side{
	display: inline-block;
	width: 300px;
	margin-left: 20px;
}


.index #section-4 p.side{
	display: inline-block;
}

.index #section-4 .txt a{
	text-decoration: none;
  color: #007eaa;
}

.index #section-4 .page-under{
	clear: left;
}



@media (max-width: 767px){
	.index #section-4{
		
	}
	.index #section-4 p.result{
		font-size: 1em;
	}

	.index #section-4 img.side{
		width: 50%;
	}

	.index #section-4 .left{
		width: 100%;
	}

	.index #section-4 p.margin-bottom{
		margin-bottom: 0;
	}
}


/* section-5 */

.img-16-1, .img-17-1{
	width: 50%;
}
@media (max-width: 767px){
	.img-16-1, .img-17-1{
		width: 100%;
	}
}

.index #section-5 .img-txt-align-right{
	width: 50%;
	text-align: right;
	margin: 50px auto 10px;
}

.index #section-5 .txt ol{
	padding-inline-start: 5%;
}

.index #section-5 .txt ol li{
	line-height: 160%;
}

.index #section-5 .type ul{
	padding-inline-start: 20px;
}

.index #section-5 .type ul li{
	line-height: 140%;
	margin-bottom: .5em;
}

.index #section-5 .list-txt-align-right{
	max-width: 1060px;
	margin-top: 50px;
	margin-bottom: 50px;
}
@media (max-width: 767px){
	.index #section-5 .list-txt-align-right{
		margin-top: 20px;
		margin-bottom: 20px;
	}
}

.index #section-5 .flex{
	max-width: 1060px;
}

.index #section-5 .list-txt-align-right .small{
	text-align: right;
}


@media (max-width: 767px){
	.index #section-5 .img-txt-align-right{
		width: 100%;
		margin: 20px auto;
	}
}

.index #section-5 p.initial{
	font-size: 1.2em;
	font-weight: bold;
	vertical-align: bottom;
	margin-bottom: .5em;
}
@media (max-width: 767px){
	.index #section-5 p.initial{
		font-size: 1em;
	}
}

.index #section-5 .type{
	padding: 0 20px 20px;
	border: solid 1px #222222;
	width: 100%;
	max-width: 360px;
}

.index #section-5 .type hr{
	border-color: #757575;
}

.index #section-5 .type-A{
 background: #cee8f5;
}

.index #section-5 .type-B{
 background: #cbe3bf;
}

.index #section-5 .type-C{
 background: #f9d9e5;
}

.index #section-5 .type-D{
 background: #fbf7c9;
}

@media (max-width: 936px){
	.index #section-5 .type{
		margin-bottom: 10px;
	}

	.index #section-5 .type-A{
	 order: 1;
	}

	.index #section-5 .type-B{
	 order: 2;
	}

	.index #section-5 .type-C{
	 order: 3;
	}

	.index #section-5 .type-D{
	 order: 4;
	}
}


.index #section-5 p.initial-A:before{
	content: '';
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	background-image: url(../img/A.png);
	background-size: 1.2em 1.2em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-left: .5em;
	margin-bottom: .4em;
}

.index #section-5 p.initial-B:before{
	content: '';
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	background-image: url(../img/B.png);
	background-size: 1.2em 1.2em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-left: .5em;
	margin-bottom: .4em;
}

.index #section-5 p.initial-C:before{
	content: '';
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	background-image: url(../img/C.png);
	background-size: 1.2em 1.2em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-left: .5em;
	margin-bottom: .4em;
}

.index #section-5 p.initial-D:before{
	content: '';
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	background-image: url(../img/D.png);
	background-size: 1.2em 1.2em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-left: .5em;
	margin-bottom: .4em;
}


.index #section-5 .table-txt-align-right{
	max-width: 1000px;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 767px){
	.index #section-5 .table-txt-align-right{
		margin-top: 20px;
		margin-bottom: 20px;
	}
}

.index #section-5 .from-map{
	text-align: right;
}

.index #section-5 .from-map a{
	text-decoration: none;
	color: #007eaa;
}

.index #section-5 table.action{
	display: block;
	width: fit-content;
	max-width: 360px;
}
@media (max-width: 936px){
	.index #section-5 table.action{
		margin-bottom: 10px;
	}
}

.index #section-5 .action ul{
	list-style: none;
	padding-inline-start: 0;
	padding-right: .5em;
	padding-left: .5em;
}

.index #section-5 tr,.index #section-5 th,.index #section-5 td{
	border: solid 1px #757575;
	padding: .5em;
}

.index #section-5 th{
	width: 1.5em;
	min-height: 8em;
}

.index #section-5 td.base-gray{
}
@media (max-width: 936px){
	.index #section-5 td.base-gray{
		min-width: 250px;
	}
}

@media (max-width: 936px){
	.index #section-5 .action-A{
	 order: 1;
	}

	.index #section-5 .action-B{
	 order: 2;
	}

	.index #section-5 .action-C{
	 order: 3;
	}

	.index #section-5 .action-D{
	 order: 4;
	}
}


.index #section-5 ul{
	min-width: 15em;
  font-weight: bold;
}
@media (max-width: 767px){
	.index #section-5 ul{
		min-width: 6em;
	}
}

.index #section-5 ul .b{
	text-decoration: solid underline #757575 3px;
	-webkit-text-decoration: solid underline #757575 3px;
}




/* section-6 */

.img-22-1{
	width: 70%;
}

.img-23-1, .img-23-2, .img-25-1{
	width: 50%;
}

.img-24-1{
	width: 100%;
}


@media (max-width: 767px){
	.img-22-1{
		width: 100%;
	}

	.img-23-1, .img-23-2, .img-25-1{
		width: 100%;
	}
}

/* section-7 */

.img-26-2, .img-27-2{
	width: 20%;
}

.img-26-3{
	width: 70%;
}

.img-27-1{
	width: 50%;
}


.index #section-7 img.QR{
	display: block;
	width: 10%;
	margin-top: 20px;
	}

.index #section-7 a{
	color: #007eaa;
	text-decoration: none;
}

.index #section-7 ol,.index #section-7 ul{
	line-height: 200%;
}


@media (max-width: 767px){
	.img-26-2, .img-27-2{
		width: 50%;
	}

	.img-26-3{
		width: 100%;
	}

	.img-27-1{
		width: 100%;
	}

	.index #section-7 img.QR{
		width: 30%;
	}
}

/* section-8 */
.index #section-8 .type ul{
	padding-inline-start: 20px;
}

.index #section-8 .type ul li{
	line-height: 140%;
	margin-bottom: .5em;
}

.index #section-8 .list-txt-align-right{
	max-width: 1060px;
	margin: 50px auto;
}
@media (max-width: 767px){
	.index #section-8 .list-txt-align-right{
		margin: 20px auto;
	}
}

.index #section-8 .list-txt-align-right .small{
	text-align: right;
}

.index #section-8 p.initial{
	font-size: 1.2em;
	font-weight: bold;
	vertical-align: bottom;
	margin-bottom: .5em;
}
@media (max-width: 767px){
	.index #section-8 p.initial{
		font-size: 1em;
	}
}

.index #section-8 .type{
	padding: 0 20px 20px;
	border: solid 1px #222222;
	width: 100%;
	max-width: 360px;
}

.index #section-8 .type hr{
	border-color: #757575;
}

.index #section-8 .type-A{
 background: #cee8f5;
}

.index #section-8 .type-B{
 background: #cbe3bf;
}

.index #section-8 .type-C{
 background: #f9d9e5;
}

.index #section-8 .type-D{
 background: #fbf7c9;
}

@media (max-width: 936px){
	.index #section-8 .type{
		margin-bottom: 10px;
	}

	.index #section-8 .type-A{
	 order: 1;
	}

	.index #section-8 .type-B{
	 order: 2;
	}

	.index #section-8 .type-C{
	 order: 3;
	}

	.index #section-8 .type-D{
	 order: 4;
	}
}


.index #section-8 p.initial-A:before{
	content: '';
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	background-image: url(../img/A.png);
	background-size: 1.2em 1.2em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-left: .5em;
	margin-bottom: .4em;
}

.index #section-8 p.initial-B:before{
	content: '';
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	background-image: url(../img/B.png);
	background-size: 1.2em 1.2em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-left: .5em;
	margin-bottom: .4em;
}

.index #section-8 p.initial-C:before{
	content: '';
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	background-image: url(../img/C.png);
	background-size: 1.2em 1.2em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-left: .5em;
	margin-bottom: .4em;
}

.index #section-8 p.initial-D:before{
	content: '';
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	background-image: url(../img/D.png);
	background-size: 1.2em 1.2em;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: .5em;
	margin-left: .5em;
	margin-bottom: .4em;
}


.index #section-8 .table-txt-align-right{
	max-width: 680px;
	margin: 50px auto;
}
@media (max-width: 767px){
	.index #section-8 .table-txt-align-right{
		margin: 20px auto;
	}
}


/* 裏表紙 */
.index #last{
	border-top: 0;
}

.index #last a{
	color: #007eaa;
	text-decoration: none;
	display: inline-block;
	margin-right: 20px;
}

.index #last img.QR{
	display: inline-block;
	width: 15%;
}
@media (max-width: 767px){
	.index #last img.QR{
		width: 17%;
	}
}

.index #last ul{
	line-height: 200%;
	list-style: none;
	padding-inline-start: 1em;
}

.index #last li.diamond:before{
 content: '◆';
 display: inline-block;
 width: 1.2em;
 height: 1.2em;
 vertical-align: top;
 margin-bottom: .4em;
 color: #007eaa;
}

.index #last .point{
	max-width: 600px;
	margin-bottom: 50px;
}
@media (max-width: 767px){
	.index #last .point{
		margin-bottom: 20px;
	}
}

.index #last .point p{
	text-align: right;
}

.index #last .point .text-align-left{
	display: inline-block;
	vertical-align: middle;
}
@media (max-width: 767px){
	.index #last .point .text-align-left{
		max-width: 250px;
	}
}

.index #last .point .text-align-left p{
	text-align: left;
	margin-bottom: 0;
	font-size: 1.1em;
	font-weight: bold;
}
@media (max-width: 767px){
	.index #last .point .text-align-left p{
		font-size: 1em;
	}
}