@charset "utf-8";
/* CSS Document */
html{
	font-size: 100%;
	scroll-behavior: smooth;
}
body{
	width: 100%;
	font-family: "YuMincho", "Hiragino Mincho Pro", "YuMincho", "Hiragino Mincho Pro",serif;
	background-color: #fff;/*最後に白へ*/
}
.logo_box{
	width: 230px;
	height: 230px;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	float: left;
	z-index: 9999;
	position: relative;/*boxがパカパカする*/
	/*position: fixed;*/
}
.logo{
	margin: 0 auto;
	width: 80px;
	height: auto;
	z-index: 20;

}
.sp-header{
	display: none;
}
.pc-header{
	display: block;
}
header{
	width: 100%;
	height: 80px;
	background-color: #fff;
	/*position: fixed;*/
	padding: 20px 20px 20px 0;
	z-index: 10;
}

nav ul{
	list-style-type: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.nav_1 ul li{
	float: right;
}
nav ul li a{
	text-decoration: none;
	color: #1e1109;
	display: block;
}
.nav_1 img{
	width: 16px;
	height: auto;
}

.nav_1 a{
	font-size: 80%;
}
.nav_1 ul li{
	margin-left: 30px;
}

.nav_2 a{
	font-size: 90%;
	margin-left: 40px;
}
.inf_box a{
	border: 1px solid #1e1109;
	padding: 4px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.tel{
	font-size: 150%;
}
.none {
    display: none;
  }
  #header-text {
    color: #fff;
    text-align: center;
  }


/*==================================================
共通　横並びのための設定
===================================*/

.gnavi{
    display: flex;
    flex-wrap: wrap;/*スマホ表示折り返し用なのでPCのみなら不要*/
}
.gnavi li{
    margin-bottom:10px;
}

/*==================================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/

.gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li a::after{
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 1px;
    background:#000;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnavi li:not(.inf_box) a:hover::after{
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

.inf_box a:hover{
	color: #fff;
	transition: 0.5s ;
	background-color: #000;
}
/*動けば出てくるヘッダー*/
#fixed-header {
  	position: fixed;
  	top: -100px;  
  	width: 100%;
	height: 110px;
	background-color: #fff;
	/*position: fixed;*/
	z-index: 10;
  /*line-height: 70px;
  font-size: 2em;*/
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  transition: .5s;
}
#fixed-header.is-show {
  top: 0;
}
#fixed-header .tel{
	font-size: 150%;
	color: #000;
}
#fixed-header h1{
	color: #000;
	font-weight: normal;
	position: absolute;
	top: 30px;
	left: 150px;
	font-size: 130%;
}

/*.viewer*/
.viewer{
	width: 100%;
	height: 100vh;
}
.viewer img{
	width: 500px;
	height: auto;
}
.viewer .wrapper{
	width: 100%;
	margin: 0 auto;
}
#text-1{
	background-image: url("../img/main02@2x.jpg");
	background-size: cover;
	width: 100%;
	height: 100vh;
	text-align: center;
}

#text-1 img{
	margin-top: 200px;
	margin-bottom: 80px;
	margin-right: 230px;
}
.text-1{
	display: inline-block;
}
.text-1 a{
	color: #fff;
	text-decoration: none;
	display: block;
	border: 1px white solid;
	padding: 10px 30px;
	font-size: 50%;
	font-weight: normal;
	margin-top: 80px;
	box-sizing: border-box;
}
.text-1 a:hover{
	color: #000;
	transition: 0.5s ;
	background-color: #fff;
}

/*==================================================
　5-3-11 左右から線が伸びて枠線になる
===================================*/

.square a{
    /*線の基点とするためrelativeを指定*/
  position: relative;
    margin:0 10px;
}

/*線の基点位置*/
.square a::before,
.square a::after{
  content:"";
    /*絶対配置で線の位置を決める*/
  position: absolute;
    /*線の形状*/
  width: 0;
  height:1px;
  background:#fff;
/*アニメーションの指定*/
  transition: all 0.2s linear;
  transition-delay: 0.2s;
}

.square a::before{
  right: 0;
  top: 0;
}
.square a::after{
  left: 0;
  bottom: 0;
}

/*線の基点位置2 spanタグ*/

.square a span{
  display: block;
}

.square a span::before,
.square a span::after{
  content:"";
    /*絶対配置で線の位置を決める*/
  position: absolute;
    /*線の形状*/
  width:1px;
  height:0;
  background: #fff;
/*アニメーションの指定*/
  transition: all 0.2s linear;
}

.square a span::before{
  left: 0;
  top: 0;
}
.square a span::after{
  right: 0;
  bottom: 0;
}

/*現在地とhoverした際の線の変化*/

.square a:hover::before,
.square a:hover::after{
  width: 100%;/*横幅を100%に*/
}

.square a:hover span::before,
.square a:hover span::after{
  height: 100%;/*縦幅を100%に*/
}
/*==================================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/

.line  a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.line a span::after{
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 25%;
    /*線の形状*/
    width: 50%;
    height: 0;
    background:#000;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 0.1);/*X方向0、Y方向1*/
    transform-origin: center bottom;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.line a span:hover::after{
    transform: scale(1, 0.07);/*X方向にスケール拡大*/
}

/*2に変えるよ～*/
#text-2{
	background-image: url("../img/main05_210201@2x.jpg");
	background-size: cover;
	width: 100%;
	height: 100vh;
	text-align: center;
}

#text-2 img{
	margin-top: 270px;
	margin-right: 720px;
	width: 550px;
}
#text-2 a:hover{
	opacity:0.7;
	transition: all .3s;
}
/*3に変えるよ～*/
#text-3{
	background-image: url("../img/top-22075188_l.jpg");
	background-size: cover;
	width: 100%;
	height: 100vh;
	text-align: center;
}
#text-3 img{
	margin-top: 200px;
	margin-right: 230px;
}
.text-3{
	display: inline-block;
}
.text-3 a{
	color: #fff;
	text-decoration: none;
	display: block;
	border: 1px white solid;
	padding: 10px 30px;
	font-size: 50%;
	font-weight: normal;
	margin-top: 50px;
	box-sizing: border-box;
}
.ex{
	display: inline-block;
	background-color: rgba(255,255,255,0.70);
	color: #000;
	position:absolute;
	top: 120px;
	right: 30px;
	padding: 20px;
	font-size: 80%;
}
.text-3 a:hover{
	color: #000;
	transition: 0.5s ;
	background-color: #fff;
}
/*4に変えるよ～*/
#text-4{
	background-image: url("../img/main04.jpg");
	background-size: cover;
	width: 100%;
	height: 100vh;
	text-align: center;
}

#text-4 img{
	margin-top: 130px;
	margin-right: 230px;
}
#text-4 a:hover{
	opacity:0.7;
	transition: all .3s;
}
.slider{
	display: none !important;
}
.nav{
	display: flex;
	justify-content: space-between;
	text-align: center;
	margin: 100px 150px;
}

.nav img{
	width: 400px;
	height: 200px;
}
.nav a:nth-child(2){
	padding: 0 30px;
}
.nav a:hover{
	opacity: 0.7;
	transition: 0.3s;
}
/*news*/
.news{
	border: 5px #f5f5f5 solid;
	display: inline-block;
	width: 1080px;
	height: 170px;
	margin-bottom: 50px;
}

 .wrapper{
	width: 1200px;
	margin: 0 auto;
	text-align: center;
}
.news h1{
   font-family: 'Josefin Sans', sans-serif;
	font-weight: normal;
	border-right: 1px solid #000;
	padding-right: 30px;
	font-size: 200%;
	text-transform: uppercase;
}
.news .left{
	width: 20%;
	height: 170px;
	display: flex;
	justify-content: center;
	align-items: center;
	float: left;
}

.news time{
	font-size: 70%;
	color: #eaac45;
	font-family: 'Crimson Text', serif;
	margin-right: 20px;
}
.news .right{
	display: flex;
	flex-flow: column;
	float: right;
	width: 80%;
	height: 170px;
	justify-content: space-around;
	text-align: left;
}
 a{
	text-decoration: none;
	color: #000;
}
.news a:hover{
	color: #eaac45;
	transition: 0.3s;
}
.news br{
	display: none;
}
/*article共通*/
article h2:not(.not){
   font-family: 'Josefin Sans', sans-serif;
	font-weight: normal;
	font-size: 200%;
	text-transform: uppercase;
	margin-top: 100px;
}
.border{
	position: relative;
  	border-bottom: 3.5px solid #cd4a38;
	width: 60px;
	margin: 30px 0;
}
.center{
	width: 60px;
	margin: 0 auto;
}
.border:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3.5px;
  width: 30px;
  height: inherit;
  border-bottom: 3.5px solid #e8a02b;
}
.rubi{
	font-size: 40%;
	font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
	display: block;
}
article:not(.not){
	background-image: url("../img/index_bg01.png");
	background-position: center -25%;
	overflow: hidden;
	background-color: #f5f5f5;
	width: 100%;
}
/*event*/  
#event_nav{
	width: 1200px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#event_nav ul{
	border-top: 2px solid white;
	border-bottom: 2px solid white;
	text-align: center;
	margin-bottom: 30px;
}
#event_nav ul li{
	font-size: 70%;
	padding: 15px;
}
.color{
	color: #e8a02b;
}
#event_nav a:hover{
	color: #e8a02b;
	transition: all .3s;
}
#event_main{
	width: 100%;
}
#event_main .wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#event_main img:not(.not){
	width: 240px;
	height: 190px;
	object-fit: contain;
}
#event_main, #report{
	font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
}
#event_main figcaption{
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	flex-flow: column;
	margin-top: 5px;
}
.theme{
	border: 1px black solid;
	color: #fff;
	background-color: #000;
	padding: 5px;
}
h3{
	font-weight: normal;
}
 time{
	color: #e8a02b;
	font-size: 120%;
}
 .middle{
	display: flex;
	justify-content: center;
}
.week{
	font-size: 90%;
	margin-top: 7px;
	padding-left: 5px;
	margin-left: 5px;
	text-transform: capitalize;
	position:relative;
}

.week::before{
   content:"";
   display:inline-block;
   width:1px;
   height:14px;
   background-color:#000;
   position:absolute;
   top:3px;
   left:0px;
}
.place{
	color: #bbbbbb;
}
.event-1, .event-2{
	display: inline-block;
	flex-wrap: wrap;
	width: 300px;
	height: auto;
	margin-top: 80px;
	text-align: left;
}
.event-3 img{
	width: auto;
	height: 370px;
}
.brank{
	margin-bottom: 30px;
}
.bar{
	position: relative;
  	border-bottom: 2px solid #cd4a38;
	width: 240px;
	margin: 10px 0;
}
.center_bar{
	width: 240px;
	margin: 0 5px 0 0;
}
.bar:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 110px;
  height: inherit;
  border-bottom: 1px solid #e8a02b;
}
#event_main a:hover{
	opacity: 0.7;
	transition: 0.3s;
}
.sp-report{
	display: none;
}
/*レポート*/
.re-border:before {
  bottom: -3.0px;
}
.report .wrapper{
	display: flex;
	justify-content: space-between;
}

#report figure{
	width: 300px;
	height: 480px;
	position: relative;
	text-align: left;
}
#report img{
width: 240px;
	height: auto;
}
#report{
	width: 100%;
}
#report .theme{
	display: inline-block;
	position: absolute;
	top: 240px;
	left: 20px;
}
.report{
	width: 100%;
}
h3, .place{
	font-size: 80%;
}
.report img:hover{
	opacity: 0.7;
	transition: 0.3s;
}
#report figcaption{
	text-align: left;
}
/*WORKS*/
#works .wrap{
	width: 1200px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 40px;
}
#works figure{
	width: 550px;
	margin-top: 30px;
}
#works figcaption{
	background-color: #fff;
	width: 550px;
	height: 130px;
		display: flex;
	align-items: center;
	text-align: left;
	padding: 30px 30px 25px;
	box-sizing: border-box;
}
#works figcaption p{
	line-height: 2;
}
#works .place{
	color: #000;
}
.bar-orange{
  	border-bottom: 2px solid #e8a02b;
	width: 550px;
}

#works .img_container{
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.img_container img{
	width: 550px;
	height: 330px;
	object-fit: cover;
	overflow: hidden;
}
.img_container img:nth-child(2){
  cursor: pointer;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img_container:hover img:nth-child(2){
  opacity: 0;
  transition: opacity 1s;
}

/*request*/
#request{
	background-image: url("../img/index_request_bg.jpg");
	width: 100%;
	height: 430px;
	text-align: center;
	align-items: center;
	display: flex;
	flex-flow: column;
	padding: 60px;
	position: relative;
	color: #fff;
}

.request-box{
	width: 1100px;
	height: 310px;
	margin: 0 auto;
	border: 1px #fff solid;
	align-items: center;
	display: flex;
	justify-content: space-between;
}
#request h2{
	font-weight: normal;
	font-size: 250%;
	padding-bottom: 30px;
}
#request img{
	width: 430px;
	height: auto;
	margin-right: 50px;
}
#request .mass{
	text-align: left;
	margin-left: 70px;
}
.fail{
	width: 400px;
	height: 70px;
	background-color: #e8a02b;
	justify-content: center;
	align-items: center;
	display: flex;
	position: absolute;
	bottom: 25px;
	left: 570px;
	color: #fff;
	font-size: 120%;
}

.fail:hover{
	color: #e8a02b;
	background-color: #fff;
	transition: 0.3s;
}
/*people*/
.frame{
	width: 830px;
	height: 465px;
	background-color: #fff;
	border-top: 2px #000 solid;
	margin: 100px 200px;
}
.p-border{
	position: relative;
  	border-bottom: 3.5px solid #cd4a38;
	width: 60px;
	margin: 30px 30px;
}
.p-border:before {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: inherit;
  border-bottom: 3.5px solid #000;
}
.frame{
	padding-left: 100px;
	position: relative;
}
.frame .rubi{
	margin-left: 50px;
}
.frame h2{
	margin-top: 50px!important;
}
#people{
	background-image: none;
}
#people h3{
	writing-mode: vertical-rl;
	font-size: 200%;
}
#people img{
	width: 200px;
	height: 220px;
}
#people .main{
	width: 500px;
	height: 450px;
}
#people{
	position: relative;
}
.grid {
    display: grid;
    grid-template-columns: 500px 220px;
	grid-template-rows: 225px 225px;
	position: absolute;
	top: 200px;
	left: 640px;

}
.grid .main {
    grid-column: 1 / 2;   
	grid-row: 1 / 3;
}
.grid .top {
    grid-column: 2 / 3;    
	grid-row: 1 / 2;
	margin-left: 10px;
}
.grid .bottom {
     grid-column: 2 / 3;
	 grid-row: 2 / 3;
	margin-top: 5px;
	margin-left: 10px;
}
.container{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 80px 100px;
	box-sizing: border-box;
}
.container p{
	font-family: "YuGothic", "Yu Gothic medium", "Hiragino Sans", "Meiryo", sans-serif;
}
.container .people{
	display: inline-block;
}
.container a{
	color: #000;
	text-decoration: none;
	display: block;
	border: 2px #000 solid;
	padding: 10px 30px;
	font-size: 100%;
	font-weight: normal;
	margin-top: 50px;
	box-sizing: border-box;
}

/*==================================================
　5-3-11 左右から線が伸びて枠線になる
===================================*/

.container .square a{
    /*線の基点とするためrelativeを指定*/
  position: relative;
    margin:0 10px;
}

/*線の基点位置*/
.container .square a::before,
.container .square a::after{
  content:"";
    /*絶対配置で線の位置を決める*/
  position: absolute;
    /*線の形状*/
  width: 0;
  height:1px;
  background:#000;
/*アニメーションの指定*/
  transition: all 0.2s linear;
  transition-delay: 0.2s;
}

.container .square a::before{
  right: 0;
  top: 0;
}
.container .square a::after{
  left: 0;
  bottom: 0;
}

/*線の基点位置2 spanタグ*/

.container .square a span{
  display: block;
}

.container .square a span::before,
.container .square a span::after{
  content:"";
    /*絶対配置で線の位置を決める*/
  position: absolute;
    /*線の形状*/
  width:1px;
  height:1px;
  background: #000;
/*アニメーションの指定*/
  transition: all 0.2s linear;
}

.container .square a span::before{
  left: 0;
  top: 0;
}
.container .square a span::after{
  right: 0;
  bottom: 0;
}

/*現在地とhoverした際の線の変化*/

.container .square a:hover::before,
.container .square a:hover::after{
  width: 100%;/*横幅を100%に*/
}

/*.container .square a:hover span::before,*/
.container .square a:hover span::after{
  height: 100%;/*縦幅を100%に*/
}
/*==================================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/

.container .line  a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.container .line a span::after{
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 25%;
    /*線の形状*/
    width: 50%;
    height: 0;
    background:#000;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 0.1);/*X方向0、Y方向1*/
    transform-origin: center bottom;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.container .line a span:hover::after{
    transform: scale(1, 0.07);/*X方向にスケール拡大*/
}
.container a:hover{
	border: none;
}
/*blog&report*/
.all{
	width: 100%;
	background-color: #fff;
}
#blog{
	width: 50%;
}
#re{
	width: 50%;
}
.all h3{
	font-family: 'Josefin Sans', sans-serif;
	font-size: 150%;
}
h3 .small{
	font-size: 70%;
	font-weight: normal;
}
#blog h3{
    position: relative;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
}

#blog h3::before {
    position: absolute;
    top: 0.8rem;
    height: 1.8rem;
    content: '';
    border-left: solid 3px #e8a02b;
    left: 0;
    transform: rotate(30deg);
}
#re h3{
    position: relative;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
}

#re h3::before {
    position: absolute;
    top: 0.8rem;
    height: 1.8rem;
    content: '';
    border-left: solid 3px #cd4a38;
    left: 0;
    transform: rotate(30deg);
}
.all .all-container{
	width: 1200px;
	margin: 60px auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	box-sizing: border-box;
}

.all figure{
	display: flex;
	justify-content: space-between;
}
.blog{
	width: 540px;
	height: 150px;
	margin: 20px 0;
	background-color: #f5f5f5;
}

.blog figcaption{
	height: 150px;
	float: right;
	margin: 20px;
}
.all figcaption img{
	width: auto;
	height: 40px;
	padding-right: 10px;
}
.flex{
	display: inline-block;
	margin-top: 45px;
}
#re .flex{
	display: block;
	margin-top: 20px;
}
.flex{
	display: flex;
	align-items: center;
}
#re{
	margin-left: 10px;
}
.ImgBox{
	width: 210px;
	height: 130px;
	background: #fff;
	overflow: hidden;
	display: inline-block;
	margin: 10px;
}
.ImgBox-Img{
  transition-duration: 0.3s;
}
.ImgBox-Img:hover{
  transform: scale(1.2);
  transition-duration: 0.3s;
  opacity: 0.6;
}
/*store*/
#store{
	width: 100%;
}
#store img{
	width: 260px;
	height: auto;
}
#store p{
	font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: 150%;
}
#store span{
	display: block;
}
.yellow{
	color: #eaab45;
	font-size: 80%;
}
/*store*/
#f5f5f5{
	width: 100%;
	height: 130px;
	background-color: #f5f5f5;
}
#store{
	position: relative;

}
.bgc{
	width: 100%;
	height: 130px;
	background-color: #fff;
}
.store-container{
	width: 1200px;
	height: 130px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.asai{
	width: 30%;
}
.store-top{
	width: 300px;
	height: 300px;
	position: absolute;
	top: 65px;
	left: 40%;
}
.house{
	width: 30%;
	text-align: right;
}
.tel{
	font-size: 150%;
}
.talk{
	font-size: 60%;
}
/*banner*/
.banner{
	width: 100%;
	background-color: #f5f5f5;
	padding-top: 120px;
}
.banner-container{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.banner img{
	width: 350px;
	height: 120px;
}
.banner img:hover{
	opacity: 0.7;
	transition: 0.3s;
}
/*footer*/
footer{
	width: 100%;
	background-color: #f5f5f5;
	padding-top: 40px;
}
address{
	font-style: normal;
}
.footer-container{
	width: 1200px;
	margin: 0 auto;
	justify-content: space-between;
	display: flex;
}
footer h3{
	font-weight: normal;
	font-size: 130%;
	font-family: "Crimson Text", serif;
}
footer ul{
	list-style-type: none;
	margin-top: 15px;
}
footer ul li{
	margin-top: 5px;
}
footer{
	font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Verdana", sans-serif;
	font-size: 90%;
}
.footer-container-3-sp{
	display: none;
}
/*==================================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/

footer .gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

footer .gnavi li a::after{
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 1px;
    background:#000;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
footer .gnavi li:not(.inf_box) a:hover::after{
    transform: scale(1, 1);/*X方向にスケール拡大*/
}
/*==================================================
共通　横並びのための設定
===================================*/

footer .gnavi{
    display: block;

}
footer .gnavi li{
    margin-bottom:10px;
}
footer img:hover{
	opacity: 0.7;
	transition: 0.3s;
}
.footer-container-2{
	width: 1200px;
	margin: 80px auto;
	justify-content: space-between;
	display: flex;
}
.kunonoti{
	width: 960px;
	height: 160px;
}
.footer-container-3{
	width: 1200px;
	margin: 0 auto;
	justify-content: center;
	display: flex;
	padding-bottom: 50px;
	box-sizing: border-box;
}
.black{
	width: 100%;
	height: 65px;
	background-color: #000;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 130%;
}
/*右下のアイコン*/
.link{
	width: 50px;
	height: 120px;
	position: fixed;
	bottom: 115px;
	right: 20px;
	display: flex;
	flex-flow: column;
	align-items: center;
}
.link img{
	width: 30px;
	height: 30px;
}
.link a{
	margin: 10px;
}
.circle{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #e8a02b;
	position: relative;
}
.dli-chevron-up {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
	position: absolute;
	bottom: 25px;
	right: 20px;
}
.dli-chevron-up-2 {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
	position: absolute;
	bottom: 20px;
	right: 20px;
}
/* ウィンドウ幅が0〜479pxの場合に適用するCSS */
@media screen and ( max-width:479px )
{
	body{
		width: 100%;
	}
	.pc-header{
		display: none;
	}
	#fixed-header{
		display: none;
	}
	.logo_box{
		display: none;
	}
	.sp-header{
		display: block;
		width: 100%;
		height: 40px;
		background-color: #fff;
		color: #000;
		z-index: 10;
		padding: 0;
	}
	.header-wrap{
		width: 100%;
		margin: 0 auto;
		height: 70px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.sp-header img{
		width: auto;
		height: 45px;
		margin-left: 50px;
	}
/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	background:#fff;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 100px;
    height: 3px;
    border-radius: 2px;
	background: #000;
  	width: 70%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 100px;
    transform: translateY(6px) rotate(-45deg);
    width: 70%;
	background-color: #e8a02b;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 100px;
    transform: translateY(-6px) rotate(45deg);
    width: 70%;
	background-color: #e8a02b;
}
	.news{
		display: flex;
	}
	
	.fail{
		left: 0;
	}
	.all-container, #store-container, .banner-container, .footer-container{
		display: flex;
		flex-direction: column;
	}
	.footer-3{
		display: none;
	}
	.footer-container-3-sp{
		display: block;
	}
	.link{
		display: none;
	}

/*----------------------------
* メニュー本体
*----------------------------*/
.hum{
    background-color:#e8a02b;
    /*padding:80px 3% 20px;調整*/
    /*position: absolute;追記*/
    height:100vh;/*追記*/
    width:100%;/*追記*/
	overflow:scroll;
	position: fixed;/*追記*/
    z-index: 999;/*追記*/
}
.hum ul{
	display: block;
	}
	
.hum ul li{
		border-bottom: 1px solid #cccccc;
		height: 60px;
		display: flex;
	align-items: center;
	}
.hum ul li a{
		color: #fff;
	padding: 25px;
	}
/*.viewer*/
.viewer{
	display: none;
}
.slider{
		display: block !important;
	}
	
/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100%;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}


	.slider img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		padding: 0 10px;

	}
.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}
	/*nav*/
	aside .nav{
		width: 100%;
	}
	
	.nav{
		overflow: scroll;
		margin: 40px 0;
		padding-bottom: 40px;
		padding-left: 10px;
	}
	
	.nav img{
		width: 200px;
		height: auto;
	}
	.news{
		width: 100%;
		height: auto;
		flex-direction: column;
		padding: 10px;
		overflow: hidden;/**/
	}
	.wrapper{
		width: 100%;
		padding: 30px;
		overflow: hidden;/**/
	}
	.news .left{
		height: auto;
		display: block;
	}
	.news h1{
		font-size: 130%;
		margin-right: -40px;
		padding: 10px;
		overflow: hidden;/**/
	}
	.news .right{
		display: block;
		height: auto;
		width: 100%;
	}
 .news time{
	font-size: 100%;
}
	.news br{
	display: block;
}
	.news .right p{
		padding: 10px;
		height: auto;
		overflow: hidden;/**/

	}
	.event .wrapper{
		padding: 0;
	}
	
	article h2:not(.not){
		margin-top: 50px;
	}
	.blank{
		display: none;
	}
	#event_nav{
		width: 100%;
	}
	#event_nav li{
		white-space:nowrap;
	}
	#event_nav ul{
		width: 100%;
		justify-content: flex-start;
		overflow: scroll;
	}
	.border::before{
		bottom: -3.0px;
	}
	#event_main .wrapper{
		flex-direction: column;
	}
	#event_main img:not(.not) {
		width: 100%;
		height: auto;
	  	object-fit: cover;
}
	.event-1, .event-2{
		width: 100%;
		padding: 20px;
		overflow: hidden;/**/
	}
	#event_main br{
		display: none;
	}
	#event_main h3{
		padding: 10px;
		overflow: hidden;/**/
	}
	#event_main .place{
		padding-top: 30px;
	}
	.bar{
		position: relative;
		border-bottom: 2px solid #cd4a38;
		width: 100%;
		margin: 10px 0;
}
.center_bar{
	width: 100%;
	margin: 0 5px 0 0;
}
.bar:before {
	  content: "";
	  position: absolute;
	  left: 0;
	  bottom: -1px;
	  width: 50%;
	  height: inherit;
	  border-bottom: 1px solid #e8a02b;
}
	article:not(.not){
		background-image: url("../img/index_bg01.png");
		background-position: center -25%;
		overflow: hidden;
		background-color: #f5f5f5;
		width: 100%;
}
	#report .wrapper{
		width: 100%;
		flex-wrap: wrap;
		padding: 10px;
		overflow: hidden;/**/
	}
	#report .pentagon{
		display: none;
	}
	#report img{
		width: 190px;
		height: 190px;
		object-fit: cover;
		margin-top: 10px;
	}
	#report figure{
		width: 50%;
		height: auto;
	}
	#report figcaption{
		padding: 10px;
		overflow: hidden;/**/
	}
	.sp-report{
		display: block;
	}
#report .theme {
  position: absolute;
  top: 172px;
  left: 0;
}
	.middle{
		padding: 5px;
	}
	#report .place{
		margin-top: 20px;
	}
	#report br:not(.block){
		display: none;
	}
	#report h3{
		margin: 10px;
	}
	.bar{
		width: 90%;
	}
	.brank{
		margin-bottom: 0;
	}
	#report figcaption .event-4-sp{
		padding: 2.5px;
		overflow: hidden;/**/
	}
	#works wrap{
		width: 100%;
	}
	#works img{
		width: 100%;
	}
	#works figure {
	  width: 100%;
	  margin-top: 0;
}
	#works .wrap {
	  width: 100%;
}
	#works .wrap {
	  width: 100%;
	  padding: 0;
	margin-right: 10px;
}
	#works a{
		width: 100%;
		margin-top: 30px;
	}
	#works figcaption{
		width: 100%;
	}
	.bar-orange{
		width: 100%;
	}
	
	#request .mass{
		width: 100%;
	}
	#request h2{
		width: 100%;
		font-size: 130%;
	}
	.request-box{
		width: 100%;
		display: block;
		height: 700px;
	}
#request .mass {
	margin-left: 20px;
	margin-top: 20px;
}
	#request{
		padding: 20px;
		height: 460px;
		background-size: cover;
		overflow: hidden;/**/
	}
	.small-sp{
		font-size: 90%;
	}
	#request img{
		width: 100%;
		padding: 10px;
		overflow: hidden;/**/
	}
#request h2 {
	  padding-bottom: 10px;
}
	.fail{
		width: 80%;
		height: 40px;
		position: absolute;
		left: 45px;
		margin-bottom: 20px;
	}
	.frame{
		margin: 0;
	}
	#people h3 {
  		writing-mode: horizontal-tb; 
		font-size: 150%;
}
	#people{
		width: 100%;
		margin: 80px auto;
	}
	.frame{
		width: 90%;
		margin: 0 auto;
		text-align: center;
		padding: 0;
		height: 280px;
	}
.frame .rubi {
  margin-left: 0;
}
	.p-center{
		display: flex;
		justify-content: center;
	}
	
	#people h3{
		font-size: 100%;
	}
	#people .main{
		width: 100%;
		padding: 20px;
		overflow: hidden;/**/
	}
	#people .top{
		width: 47%;
		object-fit: cover;
		padding-left: 10px;
		box-sizing: border-box;
	}
	#people .bottom{
		width: 47%;
		object-fit: cover;
		padding-right: 15px;
		margin-top: 0;
		box-sizing: border-box;
	}
	.grid{
		display: flex;
		flex-wrap: wrap;
		position: static;
	}
	.container{
		width: 100%;
		display: block;
		padding: 20px 10px;
		overflow: hidden;/**/
	}
	.container p{
		font-size: 90%;
		width: 100%
	}
	.wrap-sp{
		display: flex;
		justify-content: space-between;
		width: 100%;
		margin-top: 10px;
	}
	.no-wrap{
		white-space: nowrap;
	}
	.container a{
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.all .all-container {
  		width: 100%;
	}
	.all figure{
		padding: 10px;
		overflow: hidden;/**/
	}
	#blog{
		width: 90%;
		margin: 0 auto;
	}
	.blog{
		width: 100%;
		overflow: hidden;	
	}
	.blog figcaption {
  		margin: 0px;
		width: 45%;
		font-size: 80%;
}
	.ImgBox {
  		margin: 0;
		width: 50%;
	}
	.flex{
		margin-top: 60px;
	}
#re {
  	width: 90%;
	margin: 0 auto;
}
	.blog figcaption {
  		margin: 0px;
		width: 45%;
		font-size: 80%;
		padding-left: 10px;
		overflow: hidden;/**/
}
	.flex{
		margin-top: 60px;
	}
	#re .flex {
  display: flex;
}
.store-container {
  	width: 100%;
  	height: 130px;
  	margin: 0 auto;
  	display: block;
 	align-items: center;
	background-color: #f5f5f5;
}
#f5f5f5 {
  display: none !important;
}
	#store{
		margin: 0 auto;
	}
.store-container {
  	width: 100%;
  	margin: 0 auto;
}
.asai{
	width: 100%;
	height: 200px;
	text-align: center;
	background-color: #f5f5f5;
	padding-top: 20px;
	}
.store-top {
  	width: 100% !important;
  	height: 130px;
	margin: 0 auto;
	top: 110px;
	left: 20%;
	}
	.white{
		width: 100%;
		height: 130px;
		background-color: #fff;
	}
.house {
  	width: 100%;
 	text-align: center;
	padding-top: 100px;
}
.banner-container {
	width: 100%;
	padding-top: 250px;
	}
	.banner-container a{
		padding-top: 15px;
	}
	.footer-container{
		width: 100%;
		margin: 0 auto;
		padding-left: 10px;
		overflow: hidden;/**/
	}
	.footer-2, .footer-3, .footer-4, .footer-container-3{
		display: none;
	}
	.footer-container-2{
		width: 100%;
		display: block;
		margin: 20px auto;
		padding-left: 10px;
		overflow: hidden;/**/
	}
	.footer-container-2 img{
		width: 19%;
	}
	.kunonoti{
		display: none;
	}
	.kunonoti-sp{
		display: block;
		width: 90%;
		margin-left: 20px;
		margin-bottom: 20px;
	}
	.black{
		height: 40px;
	}
	#hidden{
		overflow: hidden;
	}
}