* {
    margin: 0;
    padding: 0;
    list-style: none;
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
}

a{
	color:#000;
    text-decoration: none;
    z-index: 50;
}
.sp_header {
	width:100%;
background-color:#438450;
	color:#fff;
height: 50px;
	font-weight: bold;
    box-sizing: border-box;
	position: fixed;
	top: 0px; 
	left:0px;
    z-index: 150;
}

.sp_header  a{
	width:100%;
	color:#fff;
}
.pc_header {
	display:none;
}

 ul.sp_hr {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
	margin:4px auto 5px;
	vertical-align:middle;
}
ul.sp_hr li:nth-child(1) {
	padding-left:50px;
	text-align:left;
	text-indent: 0.5em;
}
ul.sp_hr li:nth-child(2) {
	padding-right:20px;
	text-align:right;
	text-indent: 0.5em;
}

/****メニュー全体****/
#menu{
	/*配置*/
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 100;
}

  #hamburger {
    background-color: transparent;  /*透明の背景*/
    position: relative;             /*ハンバーガーの横線の位置を決めるための基準*/
    cursor: pointer;                /*リンクを示すカーソルを表示（指差しマーク）*/
    margin: 0 0 0 auto;             /*左側に余白を作り、ハンバーガーメニューを右端に配置*/
    height: 50px;                   /*ヘッダーの高さと同じ60px*/
    width: 50px;                    /*高さと同じ幅*/
  }

  .icon span, .iconx span {
    position: absolute;       /*親要素である#hamburgerを基準に位置を指定*/
    left: 11px;               /*#hamburger内の左がら15pxに横線を配置（幅が60pxなので右からも15px）*/
    width: 25px;              /*横線の幅が30px*/
    height: 3px;              /*横線の高さが4px*/
    background-color: white;  /*横線を白色*/
    border-radius: 6px;       /*横線の両端の角に丸みを持たせる*/
    transition: ease 0.75s;   /*変化の時間（easeは初期値）*/
	background: rgba(255,255,255,1);
  }
    .icon span:nth-of-type(1) {
    top: 13px;
  }
  .icon span:nth-of-type(2) {
    top: 23px;
  }
  .icon span:nth-of-type(3) {
    bottom: 14px;
  }
  
   .iconx span:nth-of-type(1) {
    transform: rotate(45deg); /*反時計回りに45度回転*/
    top: 21px;
  }

  .iconx span:nth-of-type(2) {
      transform: rotate(-45deg); /*時計回りに45度回転*/
      top: 21px;
  }

/****メニュー開閉ボタン****/
#menu div{
	/*デザイン*/
	width: 50px;
	height: 50px;
	background: rgba(67,132,80,1);
	/*配置*/
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

#menu .menuopen{
	/*デザイン*/
	color: rgba(67,132,80,1);
	font-size: 20px;
	/*配置*/
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: auto;
}

#menu .menuclose{
	/*デザイン*/
	color: rgba(67,132,80,1);
	font-size: 20px;
	/*配置*/
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: auto;
}

/****メニュー一覧****/
#menu ul{
	/*デザイン*/
	background: rgba(255,255,255,1);
	width: 100%;
	/*配置*/
	position: absolute;
	top: 50px;/*#menu divの高さ*/
	left: 0;
}

#menu li{
	/*アニメーション*/
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	/*デザイン*/
	padding: 0 10px;
	color: rgba(67,132,80,1);
	border-bottom: 0px rgba(206,168,154,1) solid;
	height: 0;
	text-align:center;
	/*配置*/
	overflow: hidden;
	pointer-events: auto;
}

#menu a{
	width:100%;
	color:#000;
}
#menu a:hover li{
	background-color:rgba(217,230,220,1);
}
/****メニューオープン時****/
#menu:target .menuopen{
	/*配置*/
	display: none;
}

#menu:target .menuclose{
	/*配置*/
	display: block;
}

#menu:target li{
	/*デザイン*/
	padding: 10px;
	height: 40px;
	border-bottom: 1px rgba(67,132,80,1) solid;
    box-sizing: border-box;
}


.content {
	width:100%;
	margin:50px auto 0px;
}

.catch {
	display:none;
}


ul.banner {
	margin:20px auto;
}


ul.article li:nth-child(1) div.top_rep {
	display: inline-block;
	width: 100%;
	margin-bottom:30px;
	text-align:center;
}
ul.article li:nth-child(1) div a {
	color:#000;
}
.short_line{
	width:60px;
	margin:10px auto;
	border: 1px #6a4436 solid;
	background-color:#6a4436;
}

.fadein:nth-child(n+2), .fadein_rep:nth-child(n+2), .fadein_read {
    opacity: 0.1;
    transition: all 1s;
}

/* 画面内に入った状態 */
.fadein.scrollin:nth-child(n+2), .fadein_rep.scrollin:nth-child(n+2), .fadein_read.scrollin {
    opacity: 1;
}

.fadein:hover, .fadein_rep:nth-child(n):hover {
    opacity: 0.7;
    transition: all 0.5s;
}

.look_more div{
	width:70%;
	font-size:18px;
	text-align:center;
	padding:6px 17px;
	border: 1px solid #6a4436;
	border-radius: 8px;
	margin:30px auto 40px;
	background-color:#d2bcae;

}
.look_more div:hover{
	background-color:#6a4436;
	color:#fff;
}


.iroha{
	width:95%;
	margin:50px 2.5% 0px;
}

.cjm{
	width:100%; 
	background-color:#f0f0f0; 
	padding:10px 0px; 
	margin-top:25px;
	text-align:center;
}
.cjm img{
	width:80%;
}

.new_title{
	width:100%;
	font-size: 18px;
	font-weight: bold;
	width:100%;
	background-color:#6a4436;
	padding:3px 0px;
	text-align:center;
	color:#fff;
}

.news_list {
	width:70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin:15px auto;
}


.rect-wrap {
	width:40%;
	display: inline-block;
}
.rect {
  width : 100% ;
  padding-top : 100% ;
	background-size: cover;
}

.news_datail {
	width: calc(60% - 0.5em);
	display: inline-block;
	box-sizing: border-box;
}

.news_tag{
	width:100%;
	font-weight: bold;
	padding:2px;
	font-size: 14px;
	text-align:center;
	border:1px #000 solid;
	border-radius: 3px;
    box-sizing: border-box;
}
.news_txt{
	font-size:14px;
	color:#000;
	margin:0;
}
.news_date{
	font-size: 18px;
	font-weight: bold;
	color: #000;
	line-height: 19px;
	margin: 2px 0 0;
	line-height: 130%;
	
}

.search_box{
	width:95%;
	margin:0px auto 30px;
	border:1px #575757 solid;
    box-sizing: border-box;
    padding:5px;
}
.search_box ul{
    height: auto;
    padding:3px;
    flex-wrap: wrap;
    justify-content: center;
    box-sizing: border-box;
}
.search_box ul.search{
	width:80%;
	margin:0px auto;
}
.search_box ul li{
	text-align:center;
    box-sizing: border-box;
	font-weight: bold;
}

.af::after{
    content: '';
    display: inline-block;
    width: 0.7em;
    height: 0.7em;
    border-style: solid;
    border-color: currentColor;
    border-width: 0 2px 2px 0;
    transform: translateY(-25%) rotate(45deg);
    margin-left: 1.6em;
    
}
.search_box ul.search li a div{
	padding:12px 0px;
}
.search_box ul.search li:nth-child(1){
	padding:5px 0px 10px;
}
.search_box ul.search li:nth-child(n+2){
	border:1px #f0f0f0 solid;
}
.search_box ul.search li:hover:nth-child(n+2){
	background-color:#d9e6dc;
}
.search_box ul.search li a{
	color:#6a4436;
}
.seikyu, .seikyu3, .seikyu4{
	background-color:#fff;
}
.chk_bgc, .seikyu:hover{
	background-color:#d9e6dc;
}
.seikyu2{
	background-color:#d9e6dc;
	color:#6a4436;
	border:1px solid #d9e6dc;
}
.seikyu2:hover{
	background-color:#6a4436;
	color:#fff;
}
.seikyu3:hover{
	background-color:#dcdcdc;
}
.seikyu4:hover{
	background-color:#f0eceb;
}


.seach_tag {
	width:80%;
	margin:0px auto;
}
.search_box ul.seach_tag li{
	border:1px #f0f0f0 solid;
}
.search_box ul.seach_tag li a div{
	padding:9px 0px;
}


ul.word, ul.money, ul.space{
	margin-top:0.2em;
}
.word li, .money li, .photo_srh li {
	width: 100%;
}
.space li {
	width: 50%;
}
.search_box ul  li:hover{
	background-color:#f0f0f0;
}
.search_box ul  li a{
	color:#000;
}
.chk_bgc2{
	background-color:#f0f0f0;
}


ul.this_year{
	width:85%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
    padding:3px;
    margin:0px auto;
    box-sizing: border-box;

}
ul.this_year li{
	width: 100%;
	margin:1em 0px;
	text-align:center;
	font-size:16px;
	line-height: 150%;
}
ul.this_year li a{
	color:#000;
}



ul.srh_tag {
	width:95%;
	margin:0px auto;
    height: auto;
    padding:3px;
    box-sizing: border-box;
}
ul.srh_tag li {
	width: 100%;
}
ul.srh_tag li:nth-child(1) {
	padding-bottom:1em;
	font-size:14px;
}
ul.srh_tag li:nth-child(1) p:nth-child(n+2) {
	margin:8px 0px;
}
ul.srh_tag li:nth-child(3) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	margin:1em 0px;
}
ul.srh_tag li:nth-child(3) div {
	width: calc(100%/2 - 0.5em);
	padding-top : 33.4% ;
}
a.srh_link {
	color:#000;
	text-align:center;
}
.srh_cth {
	font-size: 22px;
	font-weight: bold;
	line-height: 136%;
}



/*PAGE TOPボタン追加*/
#page_top{
width: 50px;
height: 50px;
position: fixed;
right: 10px;
bottom: 50px;
background: #fff; /*ボタンの色*/
border:1px #438450 solid;
opacity: 0.7;
border-radius: 50%; /*角の丸み*/
}
#page_top a{
position: relative;
display: block;
width: 55px;
height: 55px;
text-decoration: none;
}


#page_top a::before{
    content: '';
    display: inline-block;
    border-style: solid;
    border-color: currentColor;
    border-width: 0 2px 2px 0;
    transform: translateX(-25%) rotate(-135deg);
    margin-left: 1.6em;
color: #438450; /*アイコンの色*/
position: absolute;
width: 25px;
height: 25px;
top: 8px;
bottom: 0;
right: 0;
left: 8px;
margin: auto;
text-align: center;
}





.fav_btn{
	background-color:#FFF;
	border-radius: 18px;
	border:2px solid #fff;
	color:#000;
	cursor: pointer;
	padding:3px 5px;
	margin-top:3px;
}


div.fav_btn::before {
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 28px;/*画像の幅*/
  height: 22px;/*画像の高さ*/
  background-image: url(../image/ie_icon.svg);
  background-size: contain;
  vertical-align: middle;
  margin-bottom:3px;
}

.f_list{
	max-width: 100%;
	display: flex; 
	flex-wrap: wrap; 
	justify-content: space-evenly; 
	height: auto; 
	margin:10px auto;
}

.f_list li{
	padding:0px 5px;
}


.fav_on, .fav_off,.fav_on2, .fav_off2{
	width: 53px;
	background-color:#FFF;
	border-radius: 29px;
	border:1px solid #a0a0a0;
	color:#000;
	cursor: pointer;
	padding:7px 2px 14px 1px;
	font-size:8px;
	font-weight: bold;
	text-align: center;
	line-height: 100%;
	margin-left: auto;
	margin-right: 20px;
}


div.fav_on::before, div.fav_off:hover::before,div.fav_on2::before, div.fav_off2:hover::before {
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 32px;/*画像の幅*/
  height: 26px;/*画像の高さ*/
  background-image: url(../image/ie_icon.svg);
  background-size: contain;
  vertical-align: middle;
  margin:0px 8px;
}

div.fav_off::before, div.fav_on:hover::before,div.fav_off2::before, div.fav_on2:hover::before {
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 32px;/*画像の幅*/
  height: 26px;/*画像の高さ*/
  background-image: url(../image/ie_icon2.svg);
  background-size: contain;
  vertical-align: middle;
  margin:0px 8px;
}

.pc_fav{
	display:none;
}

.sp_fav{
	width:95%;
	display: flex; 
	flex-wrap: wrap; 
	justify-content:space-between; 
	height: auto; 
	margin:60px auto 0px;
}

.sp_fav li:nth-child(1){
	padding-top:18px;
	color:#575757;
}
.rep_com{
	text-align:center; 
	font-size:18px; 
	font-weight: bold; 
	margin:20px 0px;
}
.r_top_pic, .r_top_pic_tate, .rep_txt{
	width:95%; 
	margin:0px auto;
}

.r_top_pic img{
	width: 100%;
}

.r_top_pic_tate{
	text-align:center;
}

.r_top_pic_tate img{
	width: 67%;
}

.rep_cap{
	width:90%; 
	margin:0px auto; 
	display:block;
	font-size:14px; 
	line-height:24px;
}

.report_pic {
	margin-top:40px;
}
.mkr_msg {
	margin-top:15px;
}
.report_pic ,.mkr_msg{
	width:100%;
    height: auto;
    padding:3px;
    box-sizing: border-box;
}
.report_pic li{
	width: 100%;
	margin-bottom:40px;
}
.mkr_msg li:nth-child(1){
	text-align:center;
	margin-bottom:30px;
}
.mkr_msg li:nth-child(2) div:nth-child(1){
	text-align:center;
	margin-top:15px;
}
.mkr{
	margin-top:50px; 
	text-align:center; 
	font-size:16px; 
	font-weight:bold; 
	border-bottom:1px solid #a0a0a0;
	padding:10px 0px;
}


.linklist {
    margin: 1.5em auto 2.5em auto;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.linklist li {
    width: 50px;
    padding: 0em 1em;
    transition: all 0.2s;
    margin:10px 6px;
}

.linklist li a:hover {
    opacity: 0.5;
}

.map:hover{
	background-color:#f0f0f0;
}

.tel:hover{
	background-color:#f0f0f0;
}

.another_house{
	width:95%;
	margin: 0px auto;
}

ul.ano_rep {
	width:100%;
	margin:0px auto;
    height: auto;
    padding:3px;
    box-sizing: border-box;
    text-align:center;
}
ul.ano_rep li:nth-child(1) {
	width: 100%;
	font-size:14px;
}
ul.ano_rep li:nth-child(2) {
	width: 100%;
	margin-top:0.5em;
}
ul.ano_rep li:nth-child(3) {
	width: 100%;
	margin-top:0.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.ano_rep li:nth-child(3) div {
	width: calc((100% / 2) - 0.3em);
	padding-top : 33.4% ;
	margin-bottom:0.4em;
}

.ano_cth {
	font-size: 20px;
	font-weight: bold;
	line-height: 140%;
}

.event_list{
	padding:15px;
	margin-top: 5px;
	border:1px solid #dcdcdc;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.event_list li:nth-child(1) {
	width:100%;
	text-align:center;
	font-size:18px;
	font-weight:bold;
}

.event_list li:nth-child(2) {
	width:calc(67% - 0.5em);
}
.event_list li:nth-child(3) {
	width:33%;
}

.event_list:hover {
	background-color: #f0f0f0;
}

.pc_event_genre{
	display:none;
}

.sp_event_genre{
	width:100%; 
	background-color:#438450; 
	color:#fff;
	font-size:18px;
	font-weight:bold; 
	text-align:center;
	margin:8px 0px;
	padding:3px 0px;
}
.imgcap{
	width:85%;
	margin:0px auto 20px;
	text-align:center;
	font-size:14px;
	line-height:24px;
}
.heading1{
	margin:20px auto 15px;
	font-size:22px;
	font-weight:bold; 
	line-height:32px;
	text-align:center;
}
.heading2{
	margin:16px auto;
	font-size:18px;
	font-weight:bold; 
	line-height:28px;

}
.texts{
	margin:16px auto;
	line-height:28px;
	
}
.search_title{
	margin:0px 16px;
	display:block;
}

ul.cmp_list {
	width:100%;
	margin:0px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
    padding:10px 0px;
    box-sizing: border-box;
}
ul.cmp_list li{
	width:80%;
	margin:0px auto;
}
ul.cmp_list li:nth-child(1) {
	font-size:22px;
	line-height:28px;
	font-weight:bold; 
}
ul.cmp_list li:nth-child(1) p {
	margin:28px 0px;
}
ul.cmp_list li:nth-child(2) {
	font-size:16px;
	line-height:24px;
}
.cmp_icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	margin:15px 0px;
}
ul.cmp_list li:nth-child(2) img {
	width:60px;
}
ul.cmp_list li:nth-child(3) {
	margin:15px auto;
}
.fav_dlt{
	border:1px #a0a0a0 solid;
	border-radius: 16px;
	font-size:12px;
	color:#575757;
	padding:0px 8px;
}

/*** custom checkboxes ***/

input[type=checkbox] { display:none; } /* to hide the checkbox itself */
input[type=checkbox] + label:before {
  font-family: FontAwesome;
  display: inline-block;
}

input[type=checkbox] + label:before { content: "\f096"; font-size:30px; color:#c0c0c0; } /* unchecked icon */
input[type=checkbox] + label:before { letter-spacing: 10px; } /* space between checkbox and label */

input[type=checkbox]:checked + label:before { content: "\f046"; font-size:30px; color:#6a4436; } /* checked icon */
input[type=checkbox]:checked + label:before { letter-spacing: 5px; } /* allow space for check mark */

.req_tag{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width:70%;
    margin:15px auto 25px;
    vertical-align:middle;
}

.req_tag li{
	font-size:18px;
	font-weight:bold;
	color:#a0a0a0;
    box-sizing: border-box;
}
.req_tag li:nth-child(1){
    width:80%;
    margin-bottom:10px;
}
.req_tag li:nth-child(2){
    width:20%;
    margin-bottom:10px;
    text-align:right;
}
.req_tag li:nth-child(5){
    padding-right:7px;
}



.ast {
	font-size:15px;
	color:#f00;
	font-weight:normal;
}
.input_items, .input_ankt{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.input_items li:nth-child(2n+1){
	width:100%;
	background-color:#f0eceb;
	text-align:center;
	font-size:18px;
	padding:6px 9px;
	font-weight:bold;
	border-right:1px solid #000;
	border-left:1px solid #000;
    box-sizing: border-box;
    line-height:20px;
}
.input_items li:nth-child(2n){
	width:100%;
	padding:10px 12px;
    box-sizing: border-box;
	border-bottom:1px solid #000;
	border-right:1px solid #000;
	border-left:1px solid #000;

}

input[type=text]{
	height:25px;
}

textarea{
	height:40px;
}


.input_ankt li:nth-child(2n+1){
	width:100%;
	background-color:#f0eceb;
	font-size:18px;
	padding:9px 9px 3px;
	font-weight:bold;
	border-right:1px solid #000;
	border-left:1px solid #000;
    box-sizing: border-box;
    line-height:20px;
}
.input_ankt li:nth-child(2n){
	width:100%;
	padding:5px 12px;
    box-sizing: border-box;
	border-bottom:1px solid #000;
	border-right:1px solid #000;
	border-left:1px solid #000;

}
.input_ankt li:nth-child(3){
	width:126px;
	font-weight:normal;
	border-right:none;
	border-left:none;
	background-color:#fff;
	text-align:right;
}
.input_ankt li:nth-child(2){
	border-right:none;
}
.input_ankt li:nth-child(4){
	border-left:none;
}
.input_ankt li:nth-child(-2n+4){
	width:calc((100% - 126px) / 2);
	padding:9px 9px 3px;
}
.input_ankt li:nth-child(3){
	border-bottom:1px solid #000;
}
.sp_br{
	display:block;
}
.company_overview li a:hover{
	color:#00f;
}
.company_overview li{
	width:100%;
	font-size:14px;
	line-height:22px;
}

ol.privacy {
	margin-left:2em;
}
ol.privacy li {
	list-style-type: none;
	counter-increment: cnt;
	font-size:14px;
	line-height:22px;
}
ol.privacy li::before {
	content: "[" counter(cnt) "]";
	display:inline-block;
	margin-left:-2em; /* サイトに合せて調整 */
	width: 2em; /* サイトに合せて調整 */
}
ul.privacy2 {
	margin-left:1em;
	margin-bottom:1em;
}
ul.privacy2 li {
	list-style-type: none;
	counter-increment: cnt;
	font-size:14px;
	line-height:22px;
}
ul.privacy2 li::before {
	content: "●";
	display:inline-block;
	margin-left:-1em; /* サイトに合せて調整 */
	width: 1em; /* サイトに合せて調整 */
}

ul.link{
	margin:6px 0px 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.link li{
	font-size:14px;
	line-height:19px;
}
ul.link li:nth-child(2n+1){
	width:4em;
}
ul.link li:nth-child(2n){
	width:calc(100% - 5em);
}

ol.link2 {
	margin-left:1.5em;
}
ol.link2 li {
	list-style-type: none;
	counter-increment: cnt;
	font-size:12px;
	line-height:16px;
}
ol.link2 li::before {
	content: counter(cnt) ". ";
	display:inline-block;
	font-weight:bold;
	margin-left:-1.5em; /* サイトに合せて調整 */
	width: 1.5em; /* サイトに合せて調整 */
}



.pc_content{
	display:none;
}
	
.sp_content{
	font-size:16px;
	line-height:28px;
}
.sp_content p{
	font-weight:bold;
	font-size:18px;
	text-align:center;
}

ul.content_book li:nth-child(1){
	margin:20px auto;
	width:100%;
	text-align:center;
}
ul.content_book li:nth-child(2){
	margin:20px auto;
	width:70%;
	text-align:left;
}

ul.content_book li ul.privacy2{
	width:100%;
	max-width:280px;
	margin:0px auto 20px;
}

ul.content_book li ul.privacy2 li,ul.content_book2 li ul.privacy2 li{
	width:100%;
	font-size:14px;
	line-height:19px;
	text-align:left;
	margin:0px;
	padding-left:1em;
}
.go_amazon{
	margin:0px auto;
	border:1pa solid #c7c;
	width:90%;
	max-width:320px;
}


.click_big {
	text-align:center;
}

.click_big::after {
	content: "\02193";
}

ul.content_book2 li:nth-child(-2n+3){
	font-size:16px;
	line-height:24px;
}
ul.content_book2 li:nth-child(-2n+4){
	text-align:center;
}
ul.content_book2 li:nth-child(2n+5){
	font-size:16px;
	line-height:24px;
}
ul.content_book2 li:nth-child(2n+6){
}




ul.iroha_top {

}


ul.iroha_top li{
	width:95%;
	text-align:center;
	border:1px solid #a0a0a0;
	margin-top:25px;
}
ul.iroha_top li div{
	padding:70px 1em 0px;
	line-height:24px;
	box-sizing: border-box;
}

ul.iroha_top li:nth-child(1){
	background:#fff url(../image/iroha_hajime1.svg) no-repeat center 20px;
	background-size:80%; 
}
ul.iroha_top li:nth-child(1):hover{
	background:#ffebe8 url(../image/iroha_hajime2.svg) no-repeat center 20px;
	background-size:80%; 
}

ul.iroha_top li:nth-child(2){
	background:#fff url(../image/iroha_toti1.svg) no-repeat center 20px;
	background-size:80%; 
}
ul.iroha_top li:nth-child(2):hover{
	background:#fff6d9 url(../image/iroha_toti2.svg) no-repeat center 20px;
	background-size:80%; 
}

ul.iroha_top li:nth-child(3){
	background:#fff url(../image/iroha_kane1.svg) no-repeat center 20px;
	background-size:80%; 
}
ul.iroha_top li:nth-child(3):hover{
	background:#d3f4ea url(../image/iroha_kane2.svg) no-repeat center 20px;
	background-size:80%; 
}

ul.iroha_top li:nth-child(4){
	background:#fff url(../image/iroha_madori1.svg) no-repeat center 20px;
	background-size:80%; 
}
ul.iroha_top li:nth-child(4):hover{
	background:#d8f1ff url(../image/iroha_madori2.svg) no-repeat center 20px;
	background-size:80%; 
}

.iroha_kopi{
	font-size:22px;
	line-height:32px;
	font-weight:bold;
	text-align:center;
}
.iroha_read{
	font-size:16px;
	line-height:24px;
	text-align:center;
}
.iroha_main{
	font-size:30px;
	line-height:40px;
	font-weight:bold;
	text-align:center;
}
.iroha_sub{
	font-size:18px;
	line-height:28px;
	font-weight:bold;
	text-align:center;
}
.iroha_honbun{
	font-size:16px;
	line-height:28px;
}
.iroha_img{
	width:50%;
	max-width:336px;
	text-align:center;
	margin:0px auto;
}
.iroha_cap{
	width:45%;
	max-width:300px;
	margin:0px auto;
	font-size:14px;
	line-height:24px;
}


.movie_box {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.movie_box video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

    /*
    top:-50vh;
    left: -50vw;
    transform: translate(50vw, 50vh);
*/

}	
.content_box {
    z-index: 20;
    padding: 2em 0em 0em 0em;
}

.mv_none{
	display:none;
}