@charset "utf-8";
/* CSS Document */


.gallerywrap {
	width:100%;
	margin-bottom:150px;}
.gallerywrap h2 {
  position: relative;
  padding: 1rem; /*文字と線の間の距離*/
  text-align: center;
  font-size:2.5em;
}

.gallerywrap h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);/*widthの半分を引く*/
  width: 60px;/*線の長さ*/
  height: 1px;/*線の太さ*/
  content: '';
  background: #CC0000;
}
@media (max-width: 800px) {
.gallerywrap  h2 {
  font-size:1.7em;
}}
	
.phwrap {
	width:90%;
	margin:150px auto 90px auto;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;}
.phbox {
	width:44%;
	height:auto;
	margin:0 3% 80px 3%;
	max-width:650px;}
.phbox img {
	width:100%;
	height:auto;}
@media (max-width: 650px) {
.phwrap {
	width:100%;
	margin:70px 0 90px 0;
	padding-left:20px;
	box-sizing:border-box;
	display:flex;
	justify-content:flex-start;
	flex-wrap:nowrap;
	overflow-x: scroll;}
.phbox {
	width:80%;
	height:auto;
	margin:0 10px 20px 0;
	flex-shrink: 0;}
	}

	

.phwrap::-webkit-scrollbar {
  height: 14px; /* スクロールバーの高さ */
}
 
.phwrap::-webkit-scrollbar-thumb {
  background: #A5C8C9; /* ツマミの色 */
  border-radius: 7px; /* ツマミ両端の丸み */
}
.phwrap::-webkit-scrollbar-track {
  background: #F0F0F0; /* トラックの色 */
  border-radius: 7px; /* トラック両端の丸み */
}





/*ページ下部コンテンツ*/
.linkwrap {
	width:90%;
	max-width:1400px;
	height:auto;
	margin:100px auto 90px auto;}
@media (max-width: 1000px) {
.linkwrap {
	width:90%;
	max-width:1400px;
	height:auto;
	margin:50px auto 90px auto;}}	
	
	
.linkwrap h2 {
  position: relative;
  padding: 1rem; /*文字と線の間の距離*/
  text-align: center;
  font-size:2.5em;
}

.linkwrap h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);/*widthの半分を引く*/
  width: 60px;/*線の長さ*/
  height: 1px;/*線の太さ*/
  content: '';
  background: #CC0000;
}
@media (max-width: 800px) {
.linkwrap  h2 {
  font-size:1.7em;
}}	


/*主要リンクボタン*/
.guidewrap {
	width:100%;
	height:auto;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	box-sizing:border-box;}
.guidebtn {
	width:50%;
	height:auto;
	position:relative;
	text-align:left;
	box-sizing:border-box;}
.guidebtn a{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
  }
.guidebtn a:hover{
        opacity:0.6;
        filter: alpha(opacity=60);
        background: #fff;
  }
.guidebtn img {
	width:100%;
	height:auto;}
.guidebtn a h3 {
	position:absolute;
	top:50%;
	transform: translateY(-50%);
    left: 10%;
	font-weight:700;
	font-size:2.5em;
	}

.guidebtn a:hover h3  {
	text-decoration:none;
	color:#000000 !important;
	}

@media (max-width: 1000px) {
.guidebtn a h3 {
	font-size:1.7em;
	}}
@media (max-width: 600px) {
.guidebtn {
	width:100%;
	height:auto;
	position:relative;
	text-align:left;
	box-sizing:border-box;}}	
