#eyecatch
{
    position: relative;
    overflow: hidden;
}

#eyecatch .msg
{
    position: absolute;
    top: 0px;
    left: 25%;
    width: 25%;
}

#eyecatch .msg_anima
{
    /* アニメーション */
    animation: msg_drop 1.2s ease-out forwards;
}

#eyecatch ul
{
    display: flex;
    transform: translateZ(0);
    gap: 0px;
    margin: 0px;
	padding: 0px;
    font-size:0;
    line-height:0;
}

#eyecatch ul li
{
    width: 25%;
    margin: 0px;
	padding: 0px;
	list-style-type: none;
    will-change: transform;
	height: 100svh;
    position:relative;
    flex-shrink: 0;
}

#eyecatch ul li img
{
	width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}


/* 上から落ちてくるアニメ */
@keyframes msg_drop
{
    0%
    {
        transform: translateY(-100%);
        opacity: 0;
    }

    100%
    {
        transform: translateY(0);
        opacity: 1;
    }
}

#about h2,
#about p
{
    text-align: center;

}

#category ul
{
    display: block;
    position: relative;
    text-align: center;
    min-height: 600px;
    margin: 0px !important;
    padding: 0px !important;

}

#category ul li
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
    width: 500px;
    position: absolute;
}

#category ul li:nth-of-type(1)
{
    left: 0px;
    text-align: left;
}


#category ul li:nth-of-type(2)
{
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
    z-index: 10;
}

#category ul li:nth-of-type(3)
{
    right: 0px;
    text-align: right;
}



#category ul li a span img
{
    width: 100%;
    height: auto;
    display: block;
}

#category ul li a
{
    display: block;
    width: 100%;
	-moz-transition-duration: 1.2s;
	-webkit-transition-duration: 1.2s;
	-o-transition-duration: 1.2s;
	-ms-transition-duration: 1.2s;
	transition-duration: 1.2s;
    position: relative;

}

#category ul li:hover
{
    z-index: 20;
}

#category ul li a:hover,
#category ul li a .on,
#category ul li a .off
{
	-moz-transition-duration: 1.2s;
	-webkit-transition-duration: 1.2s;
	-o-transition-duration: 1.2s;
	-ms-transition-duration: 1.2s;
	transition-duration: 1.2s;
}

#category ul li a span
{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: auto;
    display: block;
}

#category ul li a .on
{
    opacity: 0;
}


#category ul li a:hover .off
{
    opacity: 0;
}

#category ul li a:hover .on
{
    opacity: 1;
}

#pickup .comment_box
{
    position: relative;
    margin-bottom: 50px;
}

#pickup .comment_box .body
{
    display: flex;
    column-gap: 40px;
    align-items: flex-start;
}

#pickup .comment_box:nth-of-type(2n+1) .body
{
    flex-direction: row-reverse;
}

#pickup .comment_box .photo
{
    position: relative;
    margin-left: calc((100vw - 1400px) / -2);
    width: calc(100vw * (1150 / 1920));
    flex-shrink: 0;
}

#pickup .comment_box:nth-of-type(2n+1) .photo
{
    margin-left: auto;
    margin-right: calc((100vw - 1400px) / -2);
}

#pickup .comment_box .photo img
{
    width: 100%;
    height: auto;
}

#pickup .comment_box .text
{
    flex: 1;
    position: sticky;
    align-self: flex-start;
    top: 50px;
}

#pickup .comment_box .text no
{
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    display: inline-block;
    background-color: var(--point-color);
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 8px;
    padding-right: 8px;
	border-radius: 6px;
    margin-bottom: 10px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}

#contens ul
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 20px; /* 横のスペース */
	row-gap: 20px; /* 縦のスペース */
	align-items: stretch; /* 子要素をセルの高さに合わせて引き伸ばす */
	margin: 0px;
	padding: 0px;

}

#contens ul li
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

#contens ul li a img
{
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;

	-webkit-border-top-left-radius: 10px;  
	-webkit-border-top-right-radius: 10px;  
	-webkit-border-bottom-left-radius: 0px;  
	-webkit-border-bottom-right-radius: 0px;  

	-moz-border-radius-topleft: 10px;  
	-moz-border-radius-topright: 10px;  
	-moz-border-radius-bottomleft: 0px; 
	-moz-border-radius-bottomright: 0px;  

}

#notice .head_box
{
    position: relative;
}

#notice .head_box .next
{
    position:absolute;
    bottom:0px;
    right: 0px;
    padding-top: 0px;
}

#notice .foot_box
{
    display: none;
}

#notice table
{
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#notice table th
{
    font-weight: normal;
    width: 240px;
    vertical-align: top;
    text-align: left;
    padding: 4px;
}

#notice table td
{
    padding: 4px;
}

/* 画面が2画面分になったとき */
@media screen and (min-width:1920px)
{

}



/* PCのみ設定  768 以上*/
@media screen and (min-width:1200px)
{



}

@media screen and (max-width: 1399px) 
{

#category ul
{
    width: auto;
    min-height: 33vw;
}

#category ul li
{
    width: 33vw;
}

#pickup .comment_box .body
{
    column-gap: 30px;
}

#pickup .comment_box .photo
{
    position: relative;
    margin-left: -20px;
    width: calc(100vw * (1150 / 1920));

}

#pickup .comment_box:nth-of-type(2n+1) .photo
{
    margin-left: auto;
    margin-right: -20px;
}

#notice table
{
    width: auto;
}


#pickup .comment_box .body
{
display: flex;
justify-content: space-between;
align-items: flex-start;

}

#pickup .comment_box .photo
{
	top: 20px;
    position: sticky;
    margin-left: -20px;
    width: 50%;
	bottom: auto;
}

#pickup .comment_box .text
{
	position: relative;
	top: 0px;
}

}



@media screen and (max-width: 1199px) 
{



}


/* 横置きの場合 */
@media (max-width: 1199px) and (orientation: landscape)
{
}

/* 縦置きの場合 */
@media (max-width: 1199px) and (orientation: portrait)
{


#eyecatch ul li
{
	height: 50svh;
}



}



/* タブレットレイアウト : 768 px ～ 959 px */
@media screen and (min-width:768px) and (max-width:1199px)
{




}


/* スマホ設定  767 以下*/
@media screen and (max-width:767px)
{

#pickup .comment_box .body
{
    column-gap: 20px;
}


#contens ul
{
	column-gap: 10px; /* 横のスペース */
	row-gap: 10px; /* 縦のスペース */
}

#notice .head_box .next
{
    display: none;
}

#notice .foot_box
{
    display: block;
}

}

/* スマホ設定  599 以下*/
@media screen and (max-width:599px)
{




#eyecatch
{
    height: 100svh;
    position: relative;
}

#eyecatch ul
{
    display: block;
    padding: 0px;
    margin: 0px;
}

#eyecatch ul li
{
    padding: 0px;
    margin: 0px;
    list-style: none;
    width: 100%;
    height: 100svh;
    display: block;
}

#eyecatch .msg
{
    position: absolute;
    top: 0px;
    width: 100%;
    left: auto;
}

#about h2,
#about p
{
    text-align: justify;
}

#pickup .comment_box .body
{
    display: block;
    column-gap: 0px;
    padding-left: 0px;
    padding-right: 0px;

}
#pickup .comment_box .photo,
#pickup .comment_box.comment_box:nth-of-type(2n+1) .photo
{
    position: static;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    text-align: center;
    margin-bottom: 20px;
}

#pickup .comment_box .text
{
    padding-left: 20px;
    padding-right: 20px;
}

#contens ul
{
	grid-template-columns: repeat(2, 1fr);
	column-gap: 10px; /* 横のスペース */
	row-gap: 10px; /* 縦のスペース */

}

#notice table th
{
    display: block;
    width: auto;
    padding-bottom: 0px;
}

#notice table td
{
    display: block;
    padding-top: 0px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: dashed 1px var(--body-bg-color);

}

}