#h1_area
{
	background-image: url(images/h1_bg_pc.jpg);
}

/* 縦置きの場合 */
@media (orientation: portrait)
{
#h1_area
{
	background-image: url(images/h1_bg_sp.jpg);
}
}



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

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

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

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

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

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

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

section .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;
}



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

}



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



}

/* デフォルトサイズ以下 */
@media screen and (max-width: 1399px) 
{

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

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

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

}

/* タブレット以下 */
@media screen and (max-width: 1199px) 
{

section .comment_box .photo
{
    width: 60%;
}

}

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

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


}



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


}


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

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


}

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


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

}

section .comment_box .photo,
section .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;
}

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

}