@charset "utf-8";
/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/
/* モバイルレイアウト : 480 px およびそれ以下. */
.header{
    position: relative;
    border-bottom: solid 8px #e799bb;
}
.header img{
    width: 100%;
}
.header .gradation{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 55%, rgba(255,255,255,1) 100%);
}
.header .overlay{
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
}
.header .overlay p{
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 25px;
    text-align: center;
    color:#fff;
    text-shadow: 0 0 10px rgba(34, 25, 21, 0.75) ;
}
.header .overlay .catch{
    font-family: "STIX Two Text", serif;
    font-size: 30px!important;
    font-weight: 500;
    text-shadow: 0 0 7px rgba(34, 25, 21, 0.75), 0 0 7px rgba(34, 25, 21, 0.75);
}
.content p{
    text-align: center;
}
.announce{
    font-size: 17px!important;
}
.itemList .item{
    margin: 50px 0;
    clear: both;
    overflow: hidden;
}
.itemList .item > div{
    display: inline-block;
    vertical-align: top;
}
.itemList .imageBox{
    width: 100% ;
    margin: 0 0 0 0;
}
.itemList .textBox{
    width: 100%;
}
.itemList .item:nth-child(2) .imageBox{
    float: none ;
    margin: 0 0 0 0;
}
.itemList .textBox p{
    text-align: left;
    font-size: 14px;
}
.itemList .textBox h3{
    text-align: center;
    line-height: 80%;
}
.itemList .textBox h3 span{
    border-left: solid 7px #000;
    font-size: 75%;
}
.linkButton{
    background: #3e3e3e;
    border-radius: 0;
    font-size: 15px;
    width: 10em;
}
.movie {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.bx-wrapper {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	background: none;
}

/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 768px) {
.header .overlay p{
    font-size: 38px;
}
.header .overlay .catch{
    font-size: 57px!important;
}
.announce{
    font-size: 25px!important;
}
.itemList .imageBox{
    width: 60% ;
    margin: 0 5% 0 0;
}
.itemList .textBox{
    width: 35%;
}
.itemList .item:nth-child(2) .imageBox{
    float: right;
    margin: 0 0 0 5%;
}
.linkButton{
    font-size: 17px;
}
}
