@charset "utf-8";

.slideshow {
	position: relative;
	overflow: hidden;
}
input[name="slideshow"] {
	display: none;
}
input[name="slideshow"]:checked + .paging {
	background: #324046;/* マウス選択時の背景色を指定する */
	color: #ffffff; /* マウス選択時のフォント色を指定する */
}
.paging {
  display: inline-block;
  width: 150px;
  height: 34px;
  text-align: center;
  text-decoration: none;
  line-height: 44px;
  outline: none;
  background-color: #ccc;
  color: #fff;
}
.paging::before,
.paging::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.paging,
.paging::before,
.paging::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.paging:hover {
 letter-spacing: 5px;
 background-color: #324046; /* ?}?E?X?I?[?o?[????w?i?F???w???? */ 
}

/* :::::: slideContents :::::: */
.slideContents {
	position: relative;
	text-align: center;
	-webkit-user-select: none;
	user-select: none;
	transition: transform .6s;
	background : #324046
}
.slideContents section {
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.slideContents section {
	max-width: 100%;
	padding: 0 50px;
	box-sizing: border-box;
	vertical-align: middle;
}

/* :::::: arrows :::::: */
.arrow,
.arrow label,
.arrow .ico {
	position: absolute;
}
.arrow {
	top: 0;
	margin: 0;
	transition: background .3s;
}
.prev {
	left: 0%;
}
.next {
	right: 0%;
}
.arrow:hover {
	background: rgba(255,255,255,.2);
}
.arrow,
.arrow label {
	cursor: pointer;
	width: 50px;
	height: 100%;
}
.arrow label {
	top: 0;
	left: 0;
	z-index: 1;
}
.arrow .ico {
	top: calc(50% - 6px);
	width: 12px;
	height: 12px;
	border-top: 3px solid #fff;
	opacity: .6;
}
.prev .ico {
	left: 50%;
	border-left: 3px solid #fff;
	transform: rotate(-45deg);
	transition: left .3s cubic-bezier(0.215, 0.61, 0.355, 1), opacity .3s;
}
.next .ico {
	right: 50%;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
	transition: right .3s cubic-bezier(0.215, 0.61, 0.355, 1), opacity .3s;
}
.prev:hover .ico {
	left: calc(50% - 6px);
}
.next:hover .ico {
	right: calc(50% - 6px);
}

/* :::::: mechanism :::::: */
#switch1:checked ~ .slideContents #slide1,
#switch2:checked ~ .slideContents #slide2,
#switch3:checked ~ .slideContents #slide3,
#switch4:checked ~ .slideContents #slide4,
#switch5:checked ~ .slideContents #slide5 {
	position: relative;
	transform: none;
}
#switch1:checked ~ .slideContents #slide5,
#switch1:checked ~ .slideContents #slide4,
#switch2:checked ~ .slideContents #slide1,
#switch2:checked ~ .slideContents #slide5,
#switch3:checked ~ .slideContents #slide2,
#switch3:checked ~ .slideContents #slide1,
#switch4:checked ~ .slideContents #slide3,
#switch4:checked ~ .slideContents #slide2,
#switch5:checked ~ .slideContents #slide4,
#switch5:checked ~ .slideContents #slide3 {
	transform: translateX(-100%);
}
#switch1:checked ~ .slideContents #slide3,
#switch1:checked ~ .slideContents #slide4,
#switch2:checked ~ .slideContents #slide4,
#switch2:checked ~ .slideContents #slide5,
#switch3:checked ~ .slideContents #slide5,
#switch3:checked ~ .slideContents #slide1,
#switch4:checked ~ .slideContents #slide1,
#switch4:checked ~ .slideContents #slide2,
#switch5:checked ~ .slideContents #slide2,
#switch5:checked ~ .slideContents #slide3 {
	transition-duration: 0s;
}

/* :::::: arrow mechanism :::::: */
.arrow label {
	pointer-events: none;
}
#switch1:checked ~ .prev label[for="switch5"],
#switch2:checked ~ .prev label[for="switch1"],
#switch3:checked ~ .prev label[for="switch2"],
#switch4:checked ~ .prev label[for="switch3"],
#switch5:checked ~ .prev label[for="switch4"],
#switch1:checked ~ .next label[for="switch2"],
#switch2:checked ~ .next label[for="switch3"],
#switch3:checked ~ .next label[for="switch4"],
#switch4:checked ~ .next label[for="switch5"],
#switch5:checked ~ .next label[for="switch1"] {
	pointer-events: auto;
}

body {
	padding:10px 0% 5% 0%;
}

.c {
    text-align: center;
}
table.c, div.c, p.c {
    text-align: center;
    margin: 10px auto;
	line-height:2.2ex;
}

.yohaku {
    padding:10px 0% 10px 0%;
}

div.yohakuA {
    padding:0px 68px 5px 0px;      /* アバウトの左内容上部の中央寄せとマージン */
    text-align: center;
}

p.about {
    margin: 0px auto;
    padding:6px 0px 8px 0px;      /* アバウト画像マージン */
    text-align: center;
}


/* フォントサイズ */
.fs1 {
	font-size: 80%;
	}
.fs2 {
	font-size: 100%;
}

/* インラインブロック */
.inline-block_1 {
    display: inline-block;      /* インラインブロック要素にする */
    padding:  0px;             /* 余白指定 */
	width: 65%;                 /* 幅指定 */
	min-width: 350px;
}
/* About page */
.slide4 {
	display: flex;
	justify-content: space-evenly;
	width: auto;
	padding: 5px 35px 25px 35px;
	text-align: left;
	color: #fff;
	min-height:340px;
}

@media screen and (min-width: 601px) and (max-width: 1200px) { 
	.about img{
		width: 150px;
	}

	.slide4 {
		flex-wrap: nowrap;
	}
	.inline-block_2 {
		display: inline-block;      /* インラインブロック要素にする */
		padding:  0px;             /* 余白指定 */
		width: 35%;                 /* 幅指定 */
		min-width: 300px;
	}
}

/* サムネイルの位置調整 */
.thumbnail {
  width: 50px;
  height: 350px;
  object-fit: cover;
}

.image1 {
  object-position : 63% 100%
}
.image2 {
  object-position : 34% 100%
}
.image3 {
  object-position : 85% 100%
}
.imageC {
  object-position : 50% 100%
}

.lum-lightbox-inner img{
    max-width:100% !important;
    max-height:100% !important;
}


 /* 表示が600以下の時（スマホ用設定） */

@media screen and (max-width: 600px) {
	.about img{
		width: 130px;     /* アイコン縮小 */
	}

	.slide4 {
		flex-wrap: wrap;
	}
	
.inline-block_1 {
	min-width: 100%;
}

	.inline-block_2 {
		margin-top: 45px;     /* 上とのマージン */
		margin-bottom: 10px;     /* 下のマージン */
		min-width: 100%;
	}
	
	div.yohakuA {
    padding:0px 0px 3px 0px;      /* アバウトの左内容上部の中央寄せとマージン */
    text-align: center;
	}
	
	
.thumbnail { 
  height: 180px;     /* サムネイル縮小 */
}

}


/* リンク動作 */
a {
	color: #000000;
	text-decoration: none;
	transition-duration: 0.2s;
	transition-timing-function:ease-out;
	transition-property: color;
	line-height: 3
	}
a:hover {
	color: #123456;
	opacity: 0.3;
	transition: 0.5s;
	}

a:link.test1 { color:#98fb98; text-decoration: underline; line-height: 2 }
a:visited.test1 { color:#8fbc8f; } 
a:hover.test1 { color:#98fb98; text-decoration: none; } 

.lum-gallery-button:after {
    width : 20px !important;
    height : 20px !important;
}

