@charset "utf-8";
/* CSS Document */

body{
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 15px;
	color: #333;
	overflow-x: hidden;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: .1em;
	font-weight: 400;
}


/*==========================================
 common
==========================================*/
/*-----------
 見出し
------------*/
h2.main_h2{
	font-size: 25px;
	font-weight: 600;
	text-align: center;
	letter-spacing: .2em;
}

h2.main_h2 img{
    display: block;
	width: 80px;
	padding-bottom: 10px;
	margin: 0 auto;
}

h3.main_h3{
	display: inline-block;
	margin: 0 auto;
	text-align: center;
	padding: 15px 20px;
	box-sizing: border-box;
	color: #fff;
	font-size: 18px;
	background: #9876de;
	clip-path: polygon(15px 0px, calc(100% - 15px) 0px, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0px calc(100% - 15px), 0px 15px);
}

p{
	line-height: 1.8em;
}


/*-----------
 ボタン
------------*/
a.main_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    min-width: 250px;
    margin:0 auto;
    padding: 15px 20px;
	box-sizing: border-box;
    border-radius: 100px;
	background-color: #9adeb9;
    color: #fff!important;
    font-weight: 600;
    font-size: 17px;
	transition: .3s;
}

a.main_btn::after {
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-left: 20px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

a.main_btn:hover {
	background-color: #74cc9c;
    color: #fff;
}


/*----------------------
 境界線（ギザギザ）
-----------------------*/
img.line_giza_top{
	position: relative;
	display: block;
	width: 100%;
    transform: rotate(180deg);
	z-index: 10;
}

img.line_giza_bottom{
	position: relative;
	display: block;
	width: 100%;
	z-index: 10;
}

/*----------------------
 境界線（吉澤章氏）
-----------------------*/
img.line_yoshi_top{
	position: absolute;
	top: -1vw;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
	width: 100%;
	z-index: 1;
}

img.line_yoshi_bottom{
	position: absolute;
	top: -1vw;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
	width: 100%;
	z-index: 1;
    transform: rotate(180deg);
}

.line_sp{
	display: none!important;
}

/*--------------
 アニメーション
---------------*/
/* animate */
.fadeinup {
    opacity: 0;
}

.fadeInUp{
	animation:fadeInUp; 
	animation-duration: 1s; 
}

.fadeinleft {
    opacity: 0;
}

.fadeInLeft{
	animation:fadeInLeft; 
	animation-duration: 1s; 
}

.fadeinright {
    opacity: 0;
}

.fadeInRight{
	animation:fadeInRight; 
	animation-duration: 1s; 
}

.Swing {
    opacity: 0;
}

.swing{
	animation:headShake; 
	animation-duration: 1s; 
}


/* 時間差 */
.animate_01 {
	animation-duration: 1s;
	animation-delay: 0.5s;
}
.animate_02 {
	animation-duration: 1s;
	animation-delay: 1s;
}

/* ゆらゆら */
.yura{
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(5deg);
  }
  50%{
      transform: rotate(-5deg);
  }
}


/*==========================================
 メインビジュアル
==========================================*/
#mv{
	width: 100%;
}

div.mv_wrap{
	padding: 30px 0;
	background-color: #fefec2;
}

div.mv_header {
	position: relative;
	width: 80%;
	margin: 0 auto;
	padding-bottom: 30px;
}

div.mv_header h1 img{
	display: block;
	width: 60%;
	margin: 0 auto;
}

/* イラスト（蝶） */
img.mv_il_chou{
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	display: block;
	width: 12vw;
}

/* イラスト（うさぎ） */
img.mv_il_usa{
	position: absolute;
	top: -1vw;
	right: 0;
	margin: auto;
	display: block;
	width: 8vw;
}

/* スライダー */
.swiper-container_mv {
	display: block;
	width: 100%;
    height: 100%;
	margin-bottom: 30px;
}

.swiper-container_mv .swiper-slide {
	display: block;
	width: 100%;
    height: 100%;
}

.swiper-container_mv .swiper-slide img {
	display: block;
	width: 100%;
    height: 100%;
}


/*==========================================
 メニュー
===========================================*/
#main_menu {
	width: 90%;
	margin: 0 auto;
	background-color: #fff;
	transition: .5s;
}

#main_menu ul {
	position: relative;
	width: 100%;
	padding:0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

#main_menu ul li {
	list-style: none;
	text-align: center;
	width: 18%;
}

#main_menu ul li a {
	position: relative;
	display: block;
	font-weight: 600;
    font-size: 14px;
	padding: 10px 0;
    box-sizing: border-box;
	transition: .3s;
	color: #333;
}

#main_menu ul li a img {
	display: block;
	margin: 0 auto;
	width: 50px;
	text-align: center;
}

#main_menu ul li a::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	border-bottom: solid 2px #9876de;
	transform: translateX(-50%);
	transition: 0.3s;
}

#main_menu ul li a:hover::before {
	width: 100%;
}

#main_menu ul img.menu_side_l{
	position: absolute;
	top: 0;
	bottom: 0;
	left: -15px;
	margin: auto;
	display: block;
	height: 100%;
}

#main_menu ul img.menu_side_r{
	position: absolute;
	top: 0;
	bottom: 0;
	right: -15px;
	margin: auto;
	display: block;
	height: 100%;
    transform: rotate(180deg);
}

/* 固定 */
.main_menu_fixed {
    position: fixed;
    top: 20px;
	right: 0;
	left: 0;
	margin: auto;
    padding: 0;
    z-index: 99;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}

/*スマホ版メニュー 非表示*/
.drawer-menu-wrapper{
	display: none;
}


/*==========================================
 ORIGAMIをおってみよう！
 むずかしいORIGAMIに挑戦！
===========================================*/
#oru,#oru_muzu{
	position: relative;
	width: 100%;
	padding: 50px 0;
}
#oru_yoshizawa{
	position: relative;
	width: 100%;
	padding: 30px 0;
}

div.oru_wrap{
	display: flex;
	justify-content: center;
    flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
	padding-top: 30px;
}

/* カード */
div.oru_box{
	width: 31%;
	margin: 1vw 1vw;
}

div.oru_box div.img_wrap{
	width: 100%;
	background-color: #f2f2f2;
}

div.oru_box div.img_wrap img{
	display: block;
	width: 100%;
}

div.oru_text{
	padding: 20px;
	box-sizing: border-box;
	background: #fefec2;
	text-align: center;
}

h3.oru_h3{
	width: 80%;
	margin: 0 auto;
	text-align: center;
	padding: 5px 10px;
	box-sizing: border-box;
    font-size: 16px;
	color: #fff;
	background: #9876de;
	clip-path: polygon(10px 0px, calc(100% - 10px) 0px, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0px calc(100% - 10px), 0px 10px);
}

span.oru_level{
	display: block;
	text-align: center;
	padding: 10px 0 0;
	color: #9876de;
	font-weight: 600;
}

ul.oru_tag{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 10px 0 0;
}

ul.oru_tag li{
	margin: 5px;
	padding: 1px 10px;
	border-radius: 100px;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid #9876de;
    font-size: 14px;
	color: #9876de;
	font-weight: 600;
}

p.kome{
	display: block;
	width: 70%;
	margin: 30px auto 0;
	font-size: 13px;
	color: #999;
}


/* イラスト（蝶） */
img.oru_il_chou{
	display: block;
	position: absolute;
	top: 30px;
	right: 5vw;
	margin: auto;
	width: 15vw;
    transform: scale(-1, 1);
}

/* やまおり */
img.line_yama{
	display: block;
	width: 100%;
}


/*------------------
 吉澤章ORIGAMI
------------------*/
#oru_yoshizawa{
	position: relative;
	background-color: #efeae5;
}

/* イラスト（集合） */
img.il_gather{
	position: relative;
	display: block;
	width: 90%;
	margin: 0 auto;
	z-index: -1;
}

/* カード */
#oru_yoshizawa .oru_box .img_wrap{
	background-color: #fff;
}

#oru_yoshizawa .oru_text{
	background: #f2f2f2;
}

#oru_yoshizawa h3.oru_h3{
	background: #c0aa82;
}

#oru_yoshizawa span.oru_level{
	color: #c0aa82;
}

#oru_yoshizawa ul.oru_tag li{
	border: 1px solid #c0aa82;
	color: #c0aa82;
}

/* アコーディオン */
.oru .accordion {
	width: 100%;
}

.oru .accordion label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 140px; /* グラデーションの高さ */
	cursor: pointer;
	background: linear-gradient(to bottom, rgba(1227,206,178,0) 0%, rgba(255, 255, 255, 0.95) 90%);
	text-align: center;
	z-index: 1;
}

#oru_yoshizawa .accordion label {
	background: linear-gradient(to bottom, rgba(1227,206,178,0) 0%, rgba(239,234,229,0.95) 90%);
    color: #efeae5;
}

.oru .accordion input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
}

.oru .accordion label:after {
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 50%;
	right: 0;
	padding: 15px;
	border-radius: 100px;
	transform: translate(-50%, 0);
	background-color: #74cc9c;
	content: 'すべて見る';
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.05em;
	color: #fff;
	transition: 0.5s;
	z-index: 2;
}

#oru_yoshizawa .accordion label:after {
	background-color: #c0aa82;
}

.oru .accordion label:hover:after {
	background-color: #74cc9c;
}

#oru_yoshizawa .accordion label:hover:after {
	background-color: #998675;
}

.oru .accordion input {
	display: none;
}

.oru .accordion .oru_wrap {
	overflow: hidden;
	height: 800px; /* 開く前に見えている部分の高さ */
	transition: all 0.5s;
}

.oru .accordion input:checked + label:after {
	content: '閉じる';
}

.oru .accordion input:checked ~ .oru_wrap {
	height: auto;
	padding-bottom: 50px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}

/*-------------------
 ポップアップ
-------------------*/
/* ×ボタンの場所 */
.modaal-close{
	position:fixed;
	right: 3vw;
	top: 2vw;
	color:#fff;
	cursor:pointer;
	opacity:1;
	width:50px;
	height:50px;
	background:#9876de!important;
	border-radius:100%;
	-webkit-transition:all .2s ease-in-out;
	transition:all .2s ease-in-out;
	z-index: 999;
}

div.modaal_content {
	width: 100%;
}

div.modaal_content_header{
	padding-top: 50px;
	background-color: #dff5e9;
}

div.modaal_content_footer{
	padding: 50px 0;
	background-color: #dff5e9;
}

/* おりがみの概要 */
div.oru_outline{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90%;
	margin: 0 auto;
	padding: 30px 0;
}

div.oru_outline img{
	display: block;
	width: 45%;
}

div.oru_modaal_text{
	width: 60%;
	padding: 20px;
	border-radius: 30px;
	box-sizing: border-box;
	background-color: #fefec2;
}

div.oru_modaal_text h3.oru_h3{
	width: 40%;
}

div.oru_modaal_text ul.oru_tag{
	justify-content: center;
	padding: 10px 0;
	border-bottom: 1px solid #9876de;
}

p.oru_comment{
	padding: 15px 0 0;
}

ul.oru_toul{
	padding: 15px 0 0;
}

ul.oru_toul li{
    display: flex;
    align-items: center;
	margin-bottom: 10px;
}

ul.oru_toul li span{
    display: block;
    min-width: 80px;
	padding: 1px 15px;
	margin-right: 10px;
	border-radius: 100px;
	background-color: #9876de;
	font-size: 14px;
	color: #fff;
	font-weight: 500;
    text-align: center;
}

/* 折り図 */
div.oru_step{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
	padding-top: 50px;	
}

div.oru_step_box{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 29%;
	margin: 0 1.8vw 50px;
	padding: 30px 20px 20px;
	box-sizing: border-box;
	background-color: #f2f2f2;
	text-align: center;
}

div.oru_step_box:last-child{
	margin-left: auto;
}

div.icon_step_oru{
	position: absolute;
	top: -20px;
	right: 0;
	left: 0;
	margin: auto;
	width: 50px;
}

img.step_bg{
	display: block;
	width: 100%;
}

div.icon_step_oru p{
	position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    padding:0;
    margin:0;
	width: 80%;
	color: #fff;
	text-align: center;
	font-size: 20px;
	font-family: 'Barlow', sans-serif;
}

img.il_step_oru{
	display: block;
	width: 80%;	
	margin: 0 auto;
}

p.oru_step_p{
	text-align: center;
	flex-grow: 1;
}

div.oru_sign{
	width: 50%;
	margin-bottom: 50px;
	text-align: right;
	background-color: #fff;
}

div.oru_sign img{
	display: block;
	width: 100%;
	margin-left:auto;
	
}

div.oru_sign p{
	font-size: 13px;
	margin-top: 20px;
}

div.oru_sign p span{
	padding: 1px 20px;
	margin-right: 10px;
	border-radius: 100px;
	background-color: #9876de;
	font-size: 14px;
	color: #fff;
	font-weight: 500;
}


/*==========================================
 SNSキャンペーン
===========================================*/
#campaign{
	width: 100%;
	padding: 50px 0;
	margin-top: -110px;
	background-color: #dff5e9;
	text-align: center;
}

div.campaign_outline{
	position: relative;
	width: 80%;
	margin: 0 auto;
	padding-top: 100px;
}

div.campaign_outline p{
	width: 80%;
	margin: 50px auto 0;
	text-align: center;
}

/* イラスト（パンダ） */
img.il_panda{
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 15vw;
}

/* イラスト（笹） */
img.il_sasa{
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 10vw;
}

/* 応募方法 */
div.campaign_wrap{
	display: flex;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto;
	padding: 50px 0;
}

div.campaign_box{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30%;
	padding: 30px 15px 10px;
	box-sizing: border-box;
	background-color: #fff;
}

div.campaign_box p{
	margin: 0 auto;
	font-weight: bold;
    font-size: 14px;
	text-align: center;
	line-height: 1.8em;
}

div.campaign_box p br{
	display: none;
}

img.icon_step{
	display: block;
	position: absolute;
	top: -20px;
	right: 0;
	left: 0;
	margin: auto;
	width: 50px;
}

img.il_step{
	display: block;
	width: 80%;
	margin: 0 auto;
}

/* スライダー */
.swiper-container_camp {
	display: block;
	width: 100%;
    height: 100%;
	margin-top: 30px;
}

.swiper-container_camp .swiper-slide {
	display: block;
	width: 100%;
    height: 100%;
}

.swiper-container_camp .swiper-slide img {
	display: block;
	width: 100%;
    height: 20vw;
	object-fit: cover;
}

.swiper-container_camp .swiper-slide a{
	transition: .3s;
}

.swiper-container_camp .swiper-slide a:hover{
	opacity: .7;
}

.insta_text{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 15px;
	box-sizing: border-box;
	color: #9876de;
	background: #fff;
	clip-path: polygon(0px 0px, calc(100% - 15px) 0px, 100% 0px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0px calc(100% - 15px), 0px 15px);
}

.insta_text p{
	padding-top: 10px;
	text-align: left;
}

.insta_text a{
	color: #9876de;
	margin-bottom: 10px;
	transition: .3s;
    font-size: 14px;
}

.insta_text a:hover{
	text-decoration: underline;
	letter-spacing: .3em;
}


/*==========================================
 イベント情報
===========================================*/
#iku{
	position: relative;
	width: 100%;
	padding: 50px 0 80px;
}

div.event_wrap{
	position: relative;
	width: 90%;
	margin: 0 auto;
	padding-top: 50px;
}

div.event_wrap a{
	display: block;
	margin-bottom: 50px;
}

div.event_wrap a:last-child{
	margin-bottom: 0;
}

div.event_box{
	display: flex;
	justify-content: flex-start;
	width: 100%;
	margin: 0 auto;
	transition: .3s;
}

div.event_box:hover{
	transform: scale(0.98);
}

div.event_box img{
	display: block;
	width: 50%;
	object-fit: cover;
}

div.event_outline{
	display: flex;
	align-items: center;
	width: 70%;
	padding: 20px;
	box-sizing: border-box;
	background-color: #fefec2;
	clip-path: polygon(0px 0px, calc(100% - 15px) 0px, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0px 100%, 0px calc(100% - 15px), 0px 15px);
}

p.event_date{
	color: #9876de;
	font-size: 30px;
	letter-spacing: .1em;
	font-weight: 400;
	font-family: 'Barlow', sans-serif;
	line-height: 1em;
}

p.event_date span{
	color: #9876de;
	font-size: 16px;
	font-weight: 600;
}

p.event_title{
	font-size: 20px;
	margin-bottom: 10px;
}

ul.event_time li{
	margin-bottom: 10px;
}

ul.event_time li span{
	padding: 1px 20px;
	margin-right: 10px;
	border-radius: 100px;
	background-color: #9876de;
	font-size: 13px;
	color: #fff;
	font-weight: 500;
}

ul.event_time li span.time{
	background-color: #74cc9c;
}

ul.event_tag{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

ul.event_tag li{
	margin: 5px 10px 5px 0px;
	padding: 1px 15px;
	border-radius: 100px;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid #9876de;
	color: #9876de;
	font-weight: 600;
    font-size: 13px;
}

/* イラスト（ゾウ） */
img.il_zo{
	display: block;
	position: absolute;
	top: 3vw;
	right: 3vw;
	margin: auto;
	width: 20vw;
}

/* イラスト（草） */
#iku img.il_kusa{
	display: block;
	position: absolute;
	bottom: 100px;
	left: 3vw;
	margin: auto;
	width: 8vw;
}


/*==========================================
 ORIGAMIは世界で通じる！
===========================================*/
#shiru{
	position: relative;
	width: 100%;
	padding: 50px 0 0;
	background-color: #efeae5;
}

div.shiru_top p{
	width: 80%;
	margin: 30px auto 0;
	text-align: center;
}

div.shiru_top p span{
	font-size: 20px;
	color: #998675;
	font-weight: 600;
}

/* スライダー */
#shiru .swiper-container_camp .swiper-slide img {
	display: block;
	width: 100%;
	border-radius: 20px;
}


/*---------------------
 ORIGAMIの父　吉澤章
 ---------------------*/
div.yoshizawa_intro{
	position: relative;
	width: 90%;
	margin: 0 auto;
	padding: 50px 0 0;
}

img.yoshi_main{
	display: block;
	width: 65%;
}

/* イラスト（船） */
img.il_hune{
	display: block;
	position: absolute;
	top: 10vw;
	right: 3vw;
	margin: auto;
	width: 20vw;
	animation: float_2979 3s linear infinite;
	transform-origin: 50% 50%;
}

/* イラスト（魚） */
img.il_fish{
	display: block;
	position: absolute;
	top: 3vw;
	left: 0;
	margin: auto;
	width: 25vw;
	animation: float_2979 3s linear infinite;
	transform-origin: 50% 50%;
}

@keyframes float_2979 {
	0% { transform: translateY(0) }
	50% { transform: translateY(-15px) }
	100% { transform: translateY(0) }
}

div.yoshizawa_outline{
	position: relative;
	margin: 0 auto;
	padding: 0;
}

div.yoshizawa_outline p{
	position: relative;
	width: 70%;
	margin: 20px 0 0 auto;
}

div.yoshizawa_outline strong{
	display: block;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 2px dashed #998675;
	color: #998675;
	font-size: 25px;
}

div.yoshizawa_pickup{
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 50px 0 0;
	z-index: 10;
}

div.pickup_box {
	width: 30%;
	margin: 0 auto;
}

div.pickup_box img{
	display: block;
	width: 100%;
	margin: 0 auto;
}

div.pickup_box p{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 15px;
	box-sizing: border-box;
    font-size: 14px;
	color: #fff;
	background: #c0aa82;
	clip-path: polygon(0px 0px, calc(100% - 15px) 0px, 100% 0px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0px calc(100% - 15px), 0px 15px);
}

.pickup_box p span{
	display: block;
	width: 80%;
	margin: 0 auto 10px;
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
	color: #998675;
	background: #fff;
	clip-path: polygon(10px 0px, calc(100% - 10px) 0px, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0px calc(100% - 10px), 0px 10px);
}


/*----------
 年表 
 ----------*/
div.yoshizawa_history{
	position: relative;
	margin: -20vw auto 0;
	padding: 25vw 0 50px;
	background-color: #e3ceb2;
	text-align: center;
}

div.yoshizawa_history h3.main_h3{
	font-family: 'Barlow', sans-serif;
	color: #998675;
	font-size: 25px;
	background: #fff;
	margin-bottom: 20px;
}

div.history_container table{
	width: 100%;
}

div.history_container table tr th{
	padding: 15px;
	box-sizing: border-box;
	white-space: nowrap;
	border-bottom: 1px solid #fff;
}

div.history_container table td{
	padding: 15px;
	box-sizing: border-box;
	border-bottom: 1px solid #998675;
	text-align: left;
}


/*アコーディオン*/
div.accordion {
	position: relative;
	width: 90%;
	margin: 0 auto;
}

.accordion *, .accordion *:before, .accordion *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.accordion label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 140px; /* グラデーションの高さ */
	cursor: pointer;
	background: linear-gradient(to bottom, rgba(1227,206,178,0) 0%, rgba(227,206,178,0.95) 90%);
	text-align: center;
	z-index: 1;
}

.accordion input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
}

.accordion label:after {
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 50%;
	right: 0;
	padding: 15px;
	border-radius: 100px;
	transform: translate(-50%, 0);
	background-color: #c0aa82;
	content: 'すべて見る';
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.05em;
	color: #fff;
	transition: 0.5s;
	z-index: 2;
}

.accordion label:hover:after {
	background-color: #998675;
}

.accordion input {
	display: none;
}

.accordion .history_container {
	overflow: hidden;
	height: 600px; /* 開く前に見えている部分の高さ */
	transition: all 0.5s;
}

.accordion input:checked + label:after {
	content: '閉じる';
}

.accordion input:checked ~ .history_container {
	height: auto;
	padding-bottom: 100px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}

/* イラスト（2羽の鳥） */
img.il_birds{
	display: block;
	position: absolute;
	top: 20vw;
	left: 5vw;
	margin: auto;
	width: 13vw;
}

/* イラスト（ペンギン） */
img.il_penguin{
	display: block;
	position: absolute;
	bottom: 2vw;
	right: 2vw;
	margin: auto;
	width: 8vw;
	z-index: 10;
}


/*----------------
 動画（吉澤章氏）
 ----------------*/
div.movie{
	position: relative;
	width: 90%;
	margin: 0 auto;
	padding: 50px 0;
	background: #fff;
}

div.movie_in{
	position: relative;
	width: 60%;
	margin: 0 auto;
}

h3.movie_h3{
	margin-bottom: 20px;
	font-family: 'Barlow', sans-serif;
	color: #9876de;
	font-weight: 400;
	font-size: 25px;
	text-align: center;
}

div.movie_wrap{
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding-top: 56.25%;
	text-align: center;
}

div.movie_wrap iframe{
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10;
}

/* イラスト（ゴリラ） */
img.il_gorilla{
	display: block;
	position: absolute;
	bottom: 0;
	left: -12vw;
	margin: auto;
	width: 12vw;
	z-index: 1;
}

/* イラスト（草） */
.movie img.il_kusa{
	display: block;
	position: absolute;
	bottom: 0;
	right: -14vw;
	margin: auto;
	width: 12vw;
}

/*==========================================
 「吉澤章記念室」が誕生
===========================================*/
#memorial{
	width: 100%;
	position: relative;
}

div.memorial_outline_in{
	padding: 30px 0 15vw;
	background-color: #dff5e9;
}

div.memorial_outline_in h2 span{
	display: block;
	color: #9876de;
	font-size: 14px;
    letter-spacing: .1em;
	text-align: center;
}

div.memorial_outline_in p{
    width: 90%;
	margin: 20px auto 0;
	text-align: center;
}

div.memorial_outline_in p br{
    display: none;
}

div.memorial_img{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: -17vw auto 0;
	z-index: 10;
}

div.memorial_img div.img_wrap{
	position: relative;
	width: 40%;
	margin-right: 5vw;
}

div.memorial_img div.img_wrap img{
	display: block;
	width: 100%;
}

div.memorial_img div.img_wrap p{
	position: absolute;
	bottom: -2.5vw;
	right: 0;
	margin: auto;
    font-size: 12px;
}

div.memorial_il{
	position: relative;
	width: 45%;
}

/* 吹き出し */
div.hukidashi{
	position: relative;
	width: 100%;
}

div.hukidashi img{
	display: block;
	width: 100%;
}

div.hukidashi p{
	position: absolute;
    top:40%;
    left:50%;
    transform: translate(-50%,-50%);
    padding:0;
    margin:0;
	width: 80%;
	color: #fff;
    font-size: 13px;
}

/* イラスト（犬） */
img.il_dog{
	display: block;
	width: 15vw;
}


/*==========================================
 ORIGAMIのまちかみのかわ
===========================================*/
#machi{
	width: 100%;
	padding: 50px 0 0;
	position: relative;
}

/*-------------------------
 「ORIGAMIのまち」の由来
 -------------------------*/
div.machi_wrap{
	position: relative;
	width: 90%;
	margin: 0 auto;
}

div.machi_wrap h2{
	font-size: 25px;
}

/* マップ */
img.figure_map{
	display: block;
	width: 100%;
	margin-top: -100px;
}

div.machi_box_02{
	display: flex;
	justify-content: space-between;
	align-items: self-start;
}

div.machi_outline{
	display: block;
	width: 60%;
	margin-top: -10vw;
	z-index: 10;
}

div.machi_outline h3{
	display: block;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 2px dashed #9876de;
	font-size: 20px;
}

/* イラスト（シラサギ） */
div.machi_box_02 img.il_sagi{
	display: block;
	width: 25vw;
}

/* イラスト（紙飛行機） */
img.il_hikoki{
	display: block;
	position: absolute;
	top: 18vw;
	left: 0;
	margin: auto;
	width: 10vw;
	z-index: 10;
}


/*-------------------------
 アクセス
 -------------------------*/
div.access{
	width: 90%;
	margin: 50px auto 0;
	padding: 30px 30px 5vw;
	border-radius: 30px;
	box-sizing: border-box;
	background-color: #f2f2f2;
}

div.access img.figure_access{
	display: block;
	width: 100%;
	margin-top: 5vw;
}

/*----------------
 動画（町紹介）
 ----------------*/
/* イラスト（うさぎ） */
#machi img.il_usa{
	display: block;
	position: absolute;
	bottom: 50px;
	left: 5vw;
	margin: auto;
	width: 7vw;
	z-index: 10;
	transform: scale(-1, 1);
}

/* イラスト（シロサギ） */
#machi .movie img.il_sagi{
	display: block;
	position: absolute;
	bottom: 50px;
	right: -20px;
	margin: auto;
	width: 20vw;
	transform: scale(-1, 1);
	z-index: 1;
}


/*==========================================
 ふるさと納税
===========================================*/
#furusato{
	width: 100%;
	padding: 50px 0;
	background-image: url("../images/furusato_bg.jpg");
	background-size: 100%;
}

div.furusato_wrap{
	width: 90%;
	margin: 0 auto;
}

div.furusato_wrap p{
	margin: 30px auto 0;
	text-align: center;
}

div.furusato_wrap p br{
	display: none;
}

div.furusato_img{
	display: flex;
	justify-content: center;
	margin: 30px auto;
}

div.furusato_img img{
	display: block;
	width: 25%;
	margin: 0 3vw;
}

div.furusato_wrap a{
    width: 300px;
	background-color: #9876de;
}

div.furusato_wrap a:hover{
	background-color: rgb(124, 79, 214);
}


/*==========================================
 フッター
===========================================*/
footer{
	width: 100%;
	padding: 50px 0 0;
}

img.logo_origami{
	display: block;
	width: 150px;
	margin: 0 auto;
}

div.links{
	display: flex;
	justify-content: center;
}

div.links a{
	margin: 30px 10px 0;
}

div.sdgs{
	padding: 30px 0;
	text-align: center;
    font-size: 13px;
}

img.logo_sdgs{
	display: block;
	width: 200px;
	margin: 0 auto 20px;
}

/* たにおり */
img.line_tani{
	display: block;
	width: 100%;
}

div.kaminokawa_info{
	display: flex;
	align-items: center;
	width: 100%;
	padding: 20px 20px 10px;
	box-sizing: border-box;
    font-size: 13px;
}

div.kaminokawa_info img{
	display: block;
	width: 100px;
	margin-right: 20px;
}

p.copyright{
	text-align: center;
	font-size: 12px;
	color: #999;
}


/*==========================================
 ページトップ
===========================================*/
a.pagetop {
	display: block;
	position: fixed;
	right: 3%;
	bottom: 4%;
	width: 80px;
	height: 80px;
	transition: .5s;
	z-index: 99;
}

a.pagetop img {
	width: 100%;
	height: 100%;
}

a.pagetop:hover {
	margin-bottom: 10px;
}