@charset "UTF-8";

/************************************************************/
/*   下層ページ　共通   */
/************************************************************/
/* コンテンツエリア　余白 */
@media screen and (max-width:767px) {

    /*SP*/
    .page_padding {
        padding: 30px 0;
    }
}

@media screen and (min-width:768px) and (max-width:1059px) {

    /*TB*/
    .page_padding {
        /* padding: 60px 0; */
        padding: 5.66vw 0;
    }
}

@media screen and (min-width:1060px), print {

    /*PC*/
    .page_padding {
        padding: 60px 0;
    }
}

/* コンテンツエリア　枠組み */
@media screen and (min-width:768px) and (max-width:1339px) {

    /*TB*/
    .page_cw1280 {
        /* width: 1280px; */
        width: 95.52vw;
    }
}

@media screen and (min-width:1340px), print {

    /*PC*/
    .page_cw1280 {
        width: 1280px;
    }
}

/* 背景色 */
.bgColor-brown01 {
    background-color: var(--brown01);
}

.bgColor-brown02 {
    background-color: var(--brown05);
}

/************************************************************/
/*   バックナンバー（一覧ページ）   */
/************************************************************/
/* 枠組み */
@media screen and (max-width:767px) {

    /*SP*/
    .bn_set {
        width: 100%;
    }

    .bn_box {
        width: 100%;
        border-top: 2px solid #000;
    }

    .bn_box:first-of-type {
        border-top: none;
    }

    .bn_key {
        text-align: center;
        margin: 0 0 30px;
    }

    .bn_key img {
        width: auto;
        height: 35px;
    }
}

@media screen and (min-width:768px) and (max-width:1059px) {

    /*TB*/
    .bn_set {
        width: 100%;
    }

    .bn_box {
        width: 100%;
        border-top: 2px solid #000;
    }

    .bn_box:first-of-type {
        border-top: none;
    }

    .bn_key {
        text-align: center;
        /* margin: 0 0 40px; */
        margin: 0 0 3.77vw;
    }

    .bn_key img {
        width: auto;
        /* height: 35px; */
        height: 3.30vw;
    }
}

@media screen and (min-width:1060px), print {

    /*PC*/
    .bn_set {
        width: 100%;
    }

    .bn_box {
        width: 100%;
        border-top: 2px solid #000;
    }

    .bn_box:first-of-type {
        border-top: none;
    }

    .bn_key {
        text-align: center;
        margin: 0 0 40px;
    }

    .bn_key img {
        width: auto;
        height: 35px;
    }
}

/* 一覧 */
@media screen and (max-width:767px) {

    /*SP*/
    .bn_list_set {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .bn_list_box {
        display: block;
    }

    .bn_list_img {
        width: 100%;
        background-color: #000;
    }

    .bn_list_img img {
        width: 100%;
        height: 140px;
        object-fit: contain;
    }

    .bn_category {
        display: inline-block;
        padding: 3px 15px;
        margin: 20px 0 15px;
    }
}

@media screen and (min-width:768px) and (max-width:1059px) {

    /*TB*/
    .bn_list_set {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* gap: 60px 30px; */
        gap: 5.66vw 2.83vw;
    }

    .bn_list_box {
        display: block;
    }

    .bn_list_img {
        width: 100%;
        background-color: #000;
    }

    .bn_list_img img {
        width: 100%;
        /* height: 165px; */
        height: 15.57vw;
        object-fit: contain;
    }

    .bn_category {
        display: inline-block;
        /* padding: 3px 15px; */
        padding: 0.28vw 1.42vw;
        /* margin: 20px 0 15px; */
        margin: 1.89vw 0 1.42vw;
    }
}

@media screen and (min-width:1060px), print {

    /*PC*/
    .bn_list_set {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 60px 30px;
    }

    .bn_list_box {
        display: block;
    }

    .bn_list_img {
        width: 100%;
        background-color: #000;
    }

    .bn_list_img img {
        width: 100%;
        height: 165px;
        object-fit: contain;
    }

    .bn_category {
        display: inline-block;
        padding: 3px 15px;
        margin: 20px 0 15px;
    }
}

/* hover */
.bn_list_img img,
.bn_list_inner {
    transition: var(--transition);
}

.bn_list_box:hover .bn_list_img img {
    opacity: 0.8;
}

.bn_list_box:hover .bn_list_inner {
    opacity: 0.8;
}

/* カテゴリー */
.category-catalog {
    background-color: #000;
    color: #fff;
}

.category-interview {
    background-color: var(--blue02);
    color: #fff;
}

.category-migrant {
    background-color: var(--green02);
    color: #fff;
}

/************************************************************/
/*   語LOG（記事ページ）   */
/************************************************************/
/* KV */
@media screen and (max-width:767px) {

    /*SP*/
    .wm_kv_wrap {
        width: 100%;
    }

    .wm_kv_img_set {
        width: 100%;
    }
}

@media screen and (min-width:768px), print {

    /*PC&TB*/
    .wm_kv_wrap {
        width: 100%;
        background-image: url(../img/catalog/back01.png);
        background-repeat: repeat-x;
        background-position: 0 0;
        background-size: 37px;
        display: flex;
        justify-content: center;
        min-height: 50px;
    }

    .wm_kv_img_set {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* バックナンバー */
@media screen and (max-width:767px) {

    /*SP*/
    .wm_backnumber {
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        border-bottom: 2px solid #000;
    }

    .wm_backnumber a {
        display: flex;
        width: 136px;
    }
}

@media screen and (min-width:768px) and (max-width:1339px) {

    /*TB*/
    .wm_backnumber {
        width: 100%;
        /* height: 60px; */
        height: 4.48vw;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        border-bottom: 2px solid #000;
    }

    .wm_backnumber a {
        display: flex;
        /* width: 136px; */
        width: 10.15vw;
        z-index: 1;
    }
}

@media screen and (min-width: 1340px), print {

    /*PC*/
    .wm_backnumber {
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        border-bottom: 2px solid #000;
    }

    .wm_backnumber a {
        display: flex;
        width: 136px;
        z-index: 1;
    }
}

/* タイトル */
@media screen and (max-width:767px) {

    /*SP*/
    .wm_title_set {
        width: 100%;
        padding: 30px 0 0;
    }

    .wm_title_box {
        width: 100%;
        padding: 30px 20px;
        background-color: #fff;
        box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.5);
    }

    .wm_title_text {
        font-size: var(--font22);
    }
}

@media screen and (min-width:768px) and (max-width:1339px) {

    /*TB*/
    .wm_title_set {
        width: 100%;
        /* margin: -100px 0 0; */
        margin: -7.46vw 0 0;
    }

    .wm_title_box {
        /* min-height: 170px; */
        min-height: 12.69vw;
        /* padding: 30px 60px 30px 20px; */
        padding: 2.24vw 4.48vw 2.24vw 1.49vw;
        background-color: #fff;
        /* box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.5); */
        box-shadow: 0.30vw 0.30vw 0.00vw 0.00vw rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
    }

    .wm_title_text {
        font-size: var(--font32);
        line-height: 1.5;
    }
}

@media screen and (min-width:1340px), print {

    /*PC*/
    .wm_title_set {
        width: 100%;
        margin: -100px 0 0;
    }

    .wm_title_box {
        min-height: 170px;
        padding: 30px 60px 30px 20px;
        background-color: #fff;
        box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
    }

    .wm_title_text {
        font-size: var(--font32);
        line-height: 1.5;
    }
}

/* バックナンバーリンクとの被り防止 */
@media screen and (min-width:768px) and (max-width:1059px) {

    /*TB*/
    .wm_title_set {
        display: grid;
        grid-template-columns: auto auto calc(10.15vw + 10px);
    }

    .wm_title_set::before {
        content: '';
    }

    .wm_title_set::after {
        content: '';
    }

    .wm_title_box {
        justify-self: start;
    }
}

@media screen and (min-width:1060px) and (max-width:1339px) {

    /*TB*/
    .wm_title_set {
        display: grid;
        grid-template-columns: auto minmax(auto, 1000px) calc(10.15vw + 10px);
    }

    .wm_title_set::before {
        content: '';
    }

    .wm_title_set::after {
        content: '';
    }

    .wm_title_box {
        justify-self: start;
    }
}

@media screen and (min-width:1340px), print {

    /*PC*/
    .wm_title_set {
        display: grid;
        grid-template-columns: 140px 990px auto;
    }

    .wm_title_set::before {
        content: '';
    }

    .wm_title_set::after {
        content: '';
    }

    .wm_title_box {
        justify-self: start;
    }
}

/* プロフィール */
@media screen and (max-width:767px) {

    /*SP*/
    .wm_prof_wrap {
        border-bottom: 2px solid #000;
    }

    .wm_prof_comment {
        font-weight: bold;
        margin: 0 0 40px;
        text-align: left;
    }

    .wm_prof_set {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .wm_prof_box {
        display: grid;
        justify-items: center;
        align-content: flex-start;
        gap: 10px;
    }

    .wm_prof_img {
        width: 90px;
    }

    .wm_prof_name_box {
        text-align: center;
    }

    .wm_prof_name01 {
        font-size: var(--font13);
        line-height: 1.4;
    }

    .wm_prof_name02 {
        font-size: var(--font18);
        line-height: 1.4;
    }

    .wm_prof_text {
        font-size: var(--font13);
        display: grid;
        gap: 1rem;
    }
}

@media screen and (min-width:768px) and (max-width:1059px) {

    /*TB*/
    .wm_prof_wrap {
        border-bottom: 2px solid #000;
    }

    .wm_prof_comment {
        font-weight: bold;
        line-height: 2.0;
        /* margin: 0 0 40px; */
        margin: 0 0 3.77vw;
    }

    .wm_prof_set {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        /* gap: 40px 10px; */
        gap: 3.77vw 0.94vw;
    }

    .wm_prof_box {
        display: grid;
        justify-items: center;
        align-content: flex-start;
        /* gap: 10px; */
        gap: 0.94vw;
    }

    .wm_prof_img {
        /* width: 90px; */
        width: 8.49vw;
    }

    .wm_prof_name_box {
        text-align: center;
    }

    .wm_prof_name01 {
        font-size: var(--font13);
        line-height: 1.4;
    }

    .wm_prof_name02 {
        font-size: var(--font18);
        line-height: 1.4;
    }

    .wm_prof_text {
        /* width: 230px; */
        width: 21.70vw;
        font-size: var(--font13);
        display: grid;
        gap: 1rem;
    }
}

@media screen and (min-width:1060px), print {

    /*PC*/
    .wm_prof_wrap {
        border-bottom: 2px solid #000;
    }

    .wm_prof_comment {
        font-weight: bold;
        line-height: 2.0;
        margin: 0 0 40px;
    }

    .wm_prof_set {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 40px 10px;
    }

    .wm_prof_box {
        display: grid;
        justify-items: center;
        align-content: flex-start;
        gap: 10px;
    }

    .wm_prof_img {
        width: 90px;
    }

    .wm_prof_name_box {
        text-align: center;
    }

    .wm_prof_name01 {
        font-size: var(--font13);
        line-height: 1.4;
    }

    .wm_prof_name02 {
        font-size: var(--font18);
        line-height: 1.4;
    }

    .wm_prof_text {
        width: 230px;
        font-size: var(--font13);
        display: grid;
        gap: 1rem;
    }
}

/* コンテンツ */
@media screen and (max-width:767px) {

    /*SP*/
    .wm_post_wrap {
        width: 100%;
        display: grid;
        justify-items: center;
        gap: 60px;
        padding: 0 0 70px;
    }

    .wm_post_key_set {
        width: 100%;
    }

    .wm_post_key01 {
        font-size: var(--font20);
        margin: 0 0 20px;
    }

    .wm_post_key02 {
        font-weight: bold;
    }

    .wm_post_set {
        width: 100%;
        display: grid;
        gap: 30px;
    }

    .wm_post_box {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
    }

    .wm_post_icon {
        width: 130px;
        height: 90px;
        position: relative;
        z-index: 1;
    }

    .wm_post_icon::after {
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        right: 25px;
        margin: auto;
        width: 20px;
        height: 28px;
        aspect-ratio: cos(30deg);
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        background: linear-gradient(45deg, #000);
    }

    .wm_post_icon img {
        width: 90px;
    }

    .wm_post_text01 {
        flex: 1;
        display: grid;
        gap: 1rem;
    }
}

@media screen and (min-width:768px) and (max-width:1059px) {

    /*TB*/
    .wm_post_wrap {
        width: 100%;
        display: grid;
        justify-items: center;
        /* gap: 60px; */
        gap: 5.66vw;
        /* padding: 0 0 140px; */
        padding: 0 0 13.21vw;
    }

    .wm_post_key_set {
        width: 100%;
        /* padding: 0 0 40px; */
        padding: 0 0 3.77vw;
    }

    .wm_post_key01 {
        font-size: var(--font32);
        /* margin: 0 0 20px; */
        margin: 0 0 1.89vw;
    }

    .wm_post_key02 {
        font-weight: bold;
    }

    .wm_post_set {
        width: 100%;
        display: grid;
        /* gap: 60px; */
        gap: 5.66vw;
    }

    .wm_post_box {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .wm_post_icon {
        /* width: 130px; */
        width: 12.26vw;
        position: relative;
        z-index: 1;
    }

    .wm_post_icon::after {
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        /* right: 25px; */
        right: 2.36vw;
        margin: auto;
        /* width: 20px; */
        width: 1.89vw;
        /* height: 28px; */
        height: 2.64vw;
        aspect-ratio: cos(30deg);
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        background: linear-gradient(45deg, #000);
    }

    .wm_post_icon img {
        /* width: 90px; */
        width: 8.49vw;
    }

    .wm_post_text01 {
        flex: 1;
        display: grid;
        gap: 1rem;
    }
}

@media screen and (min-width:1060px), print {

    /*PC*/
    .wm_post_wrap {
        width: 100%;
        display: grid;
        justify-items: center;
        gap: 60px;
        padding: 0 0 140px;
    }

    .wm_post_key_set {
        width: 100%;
    }

    .wm_post_key01 {
        font-size: var(--font32);
        margin: 0 0 20px;
    }

    .wm_post_key02 {
        font-weight: bold;
    }

    .wm_post_set {
        width: 100%;
        display: grid;
        gap: 60px;
    }

    .wm_post_box {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .wm_post_icon {
        width: 130px;
        position: relative;
        z-index: 1;
    }

    .wm_post_icon::after {
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        right: 25px;
        margin: auto;
        width: 20px;
        height: 28px;
        aspect-ratio: cos(30deg);
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        background: linear-gradient(45deg, #000);
    }

    .wm_post_icon img {
        width: 90px;
    }

    .wm_post_text01 {
        flex: 1;
        display: grid;
        gap: 1rem;
    }
}

/* 写真 */
@media screen and (max-width:767px) {

    /*SP*/
    .wm_post_img_set {
        width: 100%;
    }

    .wm_post_img_box {
        width: 100%;
        background-color: #000;
    }

    .wm_post_img_box figcaption {
        padding: 20px 15px;
        color: #fff;
        font-size: var(--font14);
    }
}

@media screen and (min-width:768px) and (max-width:1279px) {

    /*TB*/
    .wm_post_img_set {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 1px;
    }

    .wm_post_img_box {
        flex: 1;
        /* max-width: 1000px; */
        max-width: 94.34vw;
        background-color: #000;
    }

    .wm_post_img_box figcaption {
        /* padding: 30px; */
        padding: 2.83vw;
        color: #fff;
    }
}

@media screen and (min-width:1280px), print {

    /*PC*/
    .wm_post_img_set {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 1px;
    }

    .wm_post_img_box {
        flex: 1;
        max-width: 1000px;
        background-color: #000;
    }

    .wm_post_img_box figcaption {
        padding: 30px;
        color: #fff;
    }
}

/* 取材場所写真 */
@media screen and (max-width:767px) {

    /*SP*/
    .wm_info_img_wrap {
        width: 100%;
    }

    .wm_info_img_set {
        width: 100%;
    }
}

@media screen and (min-width:768px), print {

    /*PC&TB*/
    .wm_info_img_wrap {
        width: 100%;
        background-image: url(../img/catalog/back01.png);
        background-repeat: repeat-x;
        background-position: 0 0;
        background-size: 37px;
        display: flex;
        justify-content: center;
    }

    .wm_info_img_set {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .wm_info_img_set div {
        max-width: 640px;
    }
}

/* 取材場所情報 */
@media screen and (max-width:767px) {

    /*SP*/
    .wm_info_set {
        width: 100%;
        display: grid;
        gap: 20px;
        padding: 30px 0;
    }

    .wm_info_box01 {
        width: 100%;
    }

    .wm_info_key {
        font-size: var(--font16);
    }

    .wm_info_box02 {
        width: 100%;
    }

    .wm_info_name {
        font-size: var(--font18);
        font-weight: bold;
        margin: 0 0 20px;
    }
}

@media screen and (min-width:768px) and (max-width:1059px) {

    /*TB*/
    .wm_info_set {
        width: 100%;
        display: grid;
        /* grid-template-columns: 210px 1fr; */
        grid-template-columns: 19.81vw 1fr;
        /* padding: 0 0 60px; */
        padding: 0 0 5.66vw;
    }

    .wm_info_box01 {
        display: grid;
        /* grid-template-columns: 170px 20px; */
        grid-template-columns: 16.04vw 1.89vw;
        align-items: center;
    }

    .wm_info_box01::after {
        content: '';
        /* width: 20px; */
        width: 1.89vw;
        /* height: 28px; */
        height: 2.64vw;
        aspect-ratio: cos(30deg);
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        background: linear-gradient(45deg, #000);
    }

    .wm_info_key {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        /* height: 80px; */
        height: 7.55vw;
        font-size: var(--font18);
        /* border: 3px solid #000; */
        border: 0.28vw solid #000;
    }

    .wm_info_box02 {
        /* padding: 40px 0 0 20px; */
        padding: 3.77vw 0 0 1.89vw;
        /* border-left: 3px solid #000; */
        border-left: 0.28vw solid #000;
    }

    .wm_info_name {
        font-size: var(--font21);
        font-weight: bold;
        /* margin: 0 0 20px; */
        margin: 0 0 1.89vw;
    }
}

@media screen and (min-width:1060px), print {

    /*PC*/
    .wm_info_set {
        width: 100%;
        display: grid;
        grid-template-columns: 210px 1fr;
        padding: 0 0 60px;
    }

    .wm_info_box01 {
        display: grid;
        grid-template-columns: 170px 20px;
        align-items: center;
    }

    .wm_info_box01::after {
        content: '';
        width: 20px;
        height: 28px;
        aspect-ratio: cos(30deg);
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        background: linear-gradient(45deg, #000);
    }

    .wm_info_key {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 80px;
        font-size: var(--font18);
        border: 3px solid #000;
    }

    .wm_info_box02 {
        padding: 40px 0 0 20px;
        border-left: 3px solid #000;
    }

    .wm_info_name {
        font-size: var(--font21);
        font-weight: bold;
        margin: 0 0 20px;
    }
}

/* リンク */
.wm_prof_set a,
#webmagazine_post_area a,
#webmagazine_info_area a {
    text-decoration: underline;
}

.wm_prof_set a:hover,
#webmagazine_post_area a:hover,
#webmagazine_info_area a:hover {
    text-decoration: none;
}

/************************************************************/
/*   十和田温泉01（記事ページ）   */
/************************************************************/
/* KV */
@media screen and (max-width:767px) {

    /*SP*/
    .hs01_kv_wrap {
        width: 100%;
    }

    .hs01_kv_img_set {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .hs01_kv_img_set::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 38%;
        height: 100%;
        background-image: url(../img/hot-spring/hotsp_steam_img_wh.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .hs01_kv_img_box img {
        width: 100%;
        height: 30vh;
        object-fit: cover;
    }
}

@media screen and (min-width:768px), print {

    /*PC&TB*/
    .hs01_kv_wrap {
        width: 100%;
        background-image: url(../img/hot-spring/back01.png);
        background-repeat: repeat-x;
        background-position: 0 0;
        background-size: 37px;
        display: flex;
        justify-content: center;
    }

    .hs01_kv_img_set {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .hs01_kv_img_set::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 18%;
        height: 100%;
        background-image: url(../img/hot-spring/hotsp_steam_img_wh.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
}

/* バックナンバー */
@media screen and (max-width:767px) {

    /*SP*/
    .hs01_backnumber {
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        border-bottom: 2px solid #000;
    }

    .hs01_backnumber a {
        display: flex;
        width: 136px;
    }
}

@media screen and (min-width:768px) and (max-width:1339px) {

    /*TB*/
    .hs01_backnumber {
        width: 100%;
        /* height: 60px; */
        height: 4.48vw;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        border-bottom: 2px solid #000;
    }

    .hs01_backnumber a {
        display: flex;
        /* width: 136px; */
        width: 10.15vw;
    }
}

@media screen and (min-width: 1340px), print {

    /*PC*/
    .hs01_backnumber {
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        border-bottom: 2px solid #000;
    }

    .hs01_backnumber a {
        display: flex;
        width: 136px;
    }
}

/* タイトル */
@media screen and (max-width:767px) {

    /*SP*/
    .hs01_title_wrap {
        border-bottom: 2px solid #000;
    }

    .hs01_title_text {
        font-size: var(--font22);
        margin: 0 0 10px;
        width: 100%;
    }

    .hs01_prof_comment {
        line-height: 2;
    }
}

@media screen and (min-width:768px), print {

    /*PC&TB*/
    .hs01_title_wrap {
        border-bottom: 2px solid #000;
    }

    .hs01_title_text {
        font-size: var(--font32);
        margin: 0 0 10px;
        width: 100%;
    }

    .hs01_prof_comment {
        line-height: 2;
    }
}

/* 記事 */
@media screen and (max-width:767px) {

    /*SP*/
    .hs01_post_wrap {
        width: 100%;
        display: grid;
        justify-items: center;
        gap: 30px;
    }

    .hs01_post_set {
        width: 100%;
        background-color: #fff;
        box-shadow: 4px 5px 0px rgba(0, 0, 0, 0.4);
        position: relative;
    }

    .hs01_post_set::before {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        width: 47px;
        height: 47px;
        background-image: url(../img/hot-spring/angle_img01.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
    }

    .hs01_post_set::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        right: -4px;
        width: 46px;
        height: 42px;
        background-color: var(--brown01);
        background-image: url(../img/hot-spring/angle_img02.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
    }

    .hs01_post_key_set {
        width: 100%;
        padding: 30px 15px;
        display: grid;
        justify-items: center;
        gap: 20px;
    }

    .hs01_post_key_img {
        width: 187px;
    }

    .hs01_post_key_box {
        display: grid;
        gap: 10px;
        justify-items: center;
        margin: 0 0 20px;
        font-size: var(--font24);
        text-align: center;
    }

    .hs01_post_key_box::before {
        content: '';
        width: 75px;
        height: 63px;
        background-image: url(../img/hot-spring/hotsp_steam_img_bk.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .hs01_post_comment {
        font-size: var(--font16);
    }

    .hs01_post_img {
        width: 100%;
    }

    .hs01_post_box {
        width: 100%;
        padding: 30px 15px;
        display: grid;
        gap: 30px;
    }

    .hs01_post_feature {
        width: 100%;
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 30px 10px;
        align-items: center;
    }

    .hs01_post_feature dt {
        width: 100%;
        height: 60px;
        border-radius: 100%;
        line-height: 60px;
        background-color: #000;
        text-align: center;
        color: #fff;
    }

    .hs01_post_title {
        font-size: var(--font20);
        font-weight: bold;
        margin: 0 0 15px;
    }

    .hs01_post_info {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 10px;
    }

    .hs01_post_info a {
        text-decoration: underline;
    }

    a.hs01_post_map {
        text-decoration: none;
        display: inline-block;
        padding: 2px 8px;
        margin: 0 0 0 10px;
        border-radius: 5px;
        background-color: #000;
        color: #fff;
        font-size: var(--font12);
    }
}

@media screen and (min-width:768px) and (max-width:1339px) {

    /*TB*/
    .hs01_post_wrap {
        width: 100%;
        display: grid;
        justify-items: center;
        /* gap: 60px; */
        gap: 4.48vw;
        /* font-size: 15px; */
        font-size: 1.12vw;
    }

    .hs01_post_set {
        width: 100%;
        background-color: #fff;
        box-shadow: 4px 5px 0px rgba(0, 0, 0, 0.4);
        position: relative;
    }

    .hs01_post_set::before {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        /* width: 67px; */
        width: 5.00vw;
        /* height: 67px; */
        height: 5.00vw;
        background-image: url(../img/hot-spring/angle_img01.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
    }

    .hs01_post_set::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        right: -4px;
        /* width: 76px; */
        width: 5.67vw;
        /* height: 72px; */
        height: 5.37vw;
        background-color: var(--brown01);
        background-image: url(../img/hot-spring/angle_img02.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
    }

    .hs01_post_key_set {
        width: 100%;
        /* padding: 30px; */
        padding: 2.24vw;
        display: grid;
        /* grid-template-columns: 187px 800px; */
        grid-template-columns: 13.96vw 59.70vw;
        justify-content: center;
        /* gap: 30px; */
        gap: 2.24vw;
    }

    .hs01_post_key_box {
        display: grid;
        /* grid-template-columns: 95px 1fr; */
        grid-template-columns: 7.09vw 1fr;
        /* gap: 20px; */
        gap: 1.49vw;
        align-items: center;
        /* margin: 0 0 20px; */
        margin: 0 0 1.49vw;
        /* font-size: 40px; */
        font-size: 2.99vw;
    }

    .hs01_post_key_box::before {
        content: '';
        width: 100%;
        /* height: 80px; */
        height: 5.97vw;
        background-image: url(../img/hot-spring/hotsp_steam_img_bk.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .hs01_post_comment {
        /* font-size: 18px; */
        font-size: 1.34vw;
    }

    .hs01_post_img {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .hs01_post_box {
        width: 100%;
        /* padding: 30px 50px; */
        padding: 2.24vw 3.73vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: flex-start;
        /* gap: 100px; */
        gap: 7.46vw;
        position: relative;
    }

    .hs01_post_box::before {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        /* width: 3px; */
        width: 0.22vw;
        /* height: calc(100% - 30px); */
        height: calc(100% - 2.24vw);
        background-color: #000;
    }

    .hs01_post_feature {
        width: 100%;
        display: grid;
        /* grid-template-columns: 80px 1fr; */
        grid-template-columns: 5.97vw 1fr;
        /* gap: 30px 20px; */
        gap: 2.24vw 1.49vw;
        align-items: center;
    }

    .hs01_post_feature dt {
        width: 100%;
        /* height: 80px; */
        height: 5.97vw;
        border-radius: 100%;
        /* line-height: 80px; */
        line-height: 5.97vw;
        background-color: #000;
        text-align: center;
        color: #fff;
    }

    .hs01_post_title {
        /* font-size: 20px; */
        font-size: 1.49vw;
        font-weight: bold;
        /* margin: 0 0 15px; */
        margin: 0 0 1.12vw;
    }

    .hs01_post_info {
        display: grid;
        /* grid-template-columns: 90px 1fr; */
        grid-template-columns: 6.72vw 1fr;
        /* gap: 10px; */
        gap: 0.75vw;
    }

    .hs01_post_info a {
        text-decoration: underline;
    }

    a.hs01_post_map {
        text-decoration: none;
        display: inline-block;
        /* padding: 2px 10px; */
        padding: 0.15vw 0.75vw;
        /* margin: 0 0 0 10px; */
        margin: 0 0 0 0.75vw;
        /* border-radius: 5px; */
        border-radius: 0.37vw;
        background-color: #000;
        color: #fff;
    }
}

@media screen and (min-width:1340px), print {

    /*PC*/
    .hs01_post_wrap {
        width: 100%;
        display: grid;
        justify-items: center;
        gap: 60px;
        font-size: 15px;
    }

    .hs01_post_set {
        width: 100%;
        background-color: #fff;
        box-shadow: 4px 5px 0px rgba(0, 0, 0, 0.4);
        position: relative;
    }

    .hs01_post_set::before {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        width: 67px;
        height: 67px;
        background-image: url(../img/hot-spring/angle_img01.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
    }

    .hs01_post_set::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        right: -4px;
        width: 76px;
        height: 72px;
        background-color: var(--brown01);
        background-image: url(../img/hot-spring/angle_img02.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
    }

    .hs01_post_key_set {
        width: 100%;
        padding: 30px;
        display: grid;
        grid-template-columns: 187px 800px;
        justify-content: center;
        gap: 30px;
    }

    .hs01_post_key_box {
        display: grid;
        grid-template-columns: 95px 1fr;
        gap: 20px;
        align-items: center;
        margin: 0 0 20px;
        font-size: 40px;
    }

    .hs01_post_key_box::before {
        content: '';
        width: 100%;
        height: 80px;
        background-image: url(../img/hot-spring/hotsp_steam_img_bk.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .hs01_post_comment {
        font-size: 18px;
    }

    .hs01_post_img {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .hs01_post_box {
        width: 100%;
        padding: 30px 50px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: flex-start;
        gap: 100px;
        position: relative;
    }

    .hs01_post_box::before {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 3px;
        height: calc(100% - 30px);
        background-color: #000;
    }

    .hs01_post_feature {
        width: 100%;
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 30px 20px;
        align-items: center;
    }

    .hs01_post_feature dt {
        width: 100%;
        height: 80px;
        border-radius: 100%;
        line-height: 80px;
        background-color: #000;
        text-align: center;
        color: #fff;
    }

    .hs01_post_title {
        font-size: 20px;
        font-weight: bold;
        margin: 0 0 15px;
    }

    .hs01_post_info {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 10px;
    }

    .hs01_post_info a {
        text-decoration: underline;
    }

    a.hs01_post_map {
        text-decoration: none;
        display: inline-block;
        padding: 2px 10px;
        margin: 0 0 0 10px;
        border-radius: 5px;
        background-color: #000;
        color: #fff;
    }
}

/* その他 */
@media screen and (max-width:767px) {

    /*SP*/
    .hs01_other_box {
        width: 100%;
        text-align: center;
        padding: 0 0 30px;
    }

    .hs01_other_text01 {
        font-size: var(--font20);
        font-weight: bold;
        margin: 0 0 5px;
    }

    .hs01_other_link_set {
        width: 100%;
        padding: 0 15px;
        position: relative;
        z-index: 1;
    }

    .hs01_other_link_set::before {
        content: '';
        position: absolute;
        z-index: -1;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background-color: #fff;
    }

    .hs01_other_link_box {
        display: block;
        padding: 10px 5px;
        background-color: var(--brown05);
        font-size: var(--font18);
        font-weight: bold;
        color: #fff;
        text-align: center;
    }
}

@media screen and (min-width:768px) and (max-width:1059px) {

    /*TB*/
    .hs01_other_box {
        width: 100%;
        text-align: center;
        /* padding: 0 0 60px; */
        padding: 0 0 5.66vw;
    }

    .hs01_other_text01 {
        font-size: var(--font22);
        font-weight: bold;
        /* margin: 0 0 10px; */
        margin: 0 0 0.94vw;
    }

    .hs01_other_link_set {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .hs01_other_link_set::before {
        content: '';
        position: absolute;
        z-index: -1;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background-color: #fff;
    }

    .hs01_other_link_box {
        display: block;
        /* padding: 20px 60px; */
        padding: 1.89vw 5.66vw;
        background-color: var(--brown05);
        font-size: var(--font20);
        font-weight: bold;
        color: #fff;
        text-align: center;
    }
}

@media screen and (min-width:1060px), print {

    /*PC*/
    .hs01_other_box {
        width: 100%;
        text-align: center;
        padding: 0 0 60px;
    }

    .hs01_other_text01 {
        font-size: var(--font22);
        font-weight: bold;
        margin: 0 0 10px;
    }

    .hs01_other_link_set {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .hs01_other_link_set::before {
        content: '';
        position: absolute;
        z-index: -1;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background-color: #fff;
    }

    .hs01_other_link_box {
        display: block;
        padding: 20px 60px;
        background-color: var(--brown05);
        font-size: var(--font20);
        font-weight: bold;
        color: #fff;
        text-align: center;
    }
}

/************************************************************/
/*   十和田温泉02（記事ページ）   */
/************************************************************/
/* KV */
@media screen and (max-width:767px) {

    /*SP*/
    .hs02_kv_wrap {
        width: 100%;
    }

    .hs02_kv_img_set {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .hs02_kv_img_set::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 38%;
        height: 100%;
        background-image: url(../img/hot-spring/hotsp_steam_img_wh.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .hs02_kv_img_box img {
        width: 100%;
        height: 30vh;
        object-fit: cover;
    }
}

@media screen and (min-width:768px), print {

    /*PC&TB*/
    .hs02_kv_wrap {
        width: 100%;
        background-image: url(../img/hot-spring/back02.png);
        background-repeat: repeat-x;
        background-position: 0 0;
        background-size: contain;
        display: flex;
        justify-content: center;
    }

    .hs02_kv_img_set {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .hs02_kv_img_set::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 18%;
        height: 100%;
        background-image: url(../img/hot-spring/hotsp_steam_img_wh.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
}

/* バックナンバー */
@media screen and (max-width:767px) {

    /*SP*/
    .hs02_backnumber {
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        border-bottom: 2px solid #fff;
    }

    .hs02_backnumber a {
        display: flex;
        width: 136px;
    }
}

@media screen and (min-width:768px) and (max-width:1339px) {

    /*TB*/
    .hs02_backnumber {
        width: 100%;
        /* height: 60px; */
        height: 4.48vw;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        border-bottom: 2px solid #fff;
    }

    .hs02_backnumber a {
        display: flex;
        /* width: 136px; */
        width: 10.15vw;
    }
}

@media screen and (min-width: 1340px), print {

    /*PC*/
    .hs02_backnumber {
        width: 100%;
        height: 60px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        border-bottom: 2px solid #fff;
    }

    .hs02_backnumber a {
        display: flex;
        width: 136px;
    }
}

/* タイトル */
@media screen and (max-width:767px) {

    /*SP*/
    .hs02_title_wrap {
        border-bottom: 2px solid #fff;
        color: #fff;
        text-align: center;
    }

    .hs02_title_text {
        font-size: var(--font22);
        margin: 0 0 10px;
        width: 100%;
        text-align: center;
    }

    .hs02_prof_comment01 {
        line-height: 2;
    }

    .hs02_prof_comment02 {
        font-size: var(--font16);
        font-weight: bold;
        line-height: 2;
        margin: 15px 0 0;
    }
}

@media screen and (min-width:768px), print {

    /*PC&TB*/
    .hs02_title_wrap {
        border-bottom: 2px solid #fff;
        color: #fff;
        text-align: center;
    }

    .hs02_title_text {
        font-size: var(--font32);
        margin: 0 0 10px;
        width: 100%;
    }

    .hs02_prof_comment01 {
        line-height: 2;
    }

    .hs02_prof_comment02 {
        font-size: var(--font20);
        font-weight: bold;
        line-height: 2;
        margin: 15px 0 0;
    }
}

/* 記事 */
@media screen and (max-width:767px) {

    /*SP*/
    .hs02_post_wrap {
        width: 100%;
        display: grid;
        justify-items: center;
        gap: 30px;
    }

    .hs02_post_set {
        width: 100%;
        background-color: #fff;
        box-shadow: 4px 5px 0px rgba(0, 0, 0, 0.4);
        position: relative;
    }

    .hs02_post_set::before {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        width: 47px;
        height: 47px;
        background-image: url(../img/hot-spring/angle_img03.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
    }

    .hs02_post_set::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        right: -4px;
        width: 46px;
        height: 42px;
        background-color: var(--brown05);
        background-image: url(../img/hot-spring/angle_img02.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
    }

    .hs02_post_key_set {
        width: 100%;
        padding: 30px 15px;
        display: grid;
        justify-items: center;
        gap: 20px;
    }

    .hs02_post_key_img {
        width: 100%;
        max-width: 320px;
        position: relative;
    }

    .hs02_post_key_area {
        position: absolute;
        top: 50%;
        left: 14%;
        transform: translateY(-50%);
        text-align: center;
        font-size: var(--font20);
        font-weight: bold;
        color: #fff;
        line-height: 1.4;
    }

    .hs02_post_key_box {
        display: grid;
        gap: 10px;
        justify-items: center;
        margin: 0 0 20px;
        font-size: var(--font24);
        text-align: center;
    }

    .hs02_post_key_box::before {
        content: '';
        width: 75px;
        height: 63px;
        background-image: url(../img/hot-spring/hotsp_steam_img_bk.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .hs02_post_comment {
        font-size: var(--font16);
    }

    .hs02_post_img {
        width: 100%;
    }

    .hs02_post_box {
        width: 100%;
        padding: 30px 15px;
    }

    .hs02_post_feature_set {
        display: grid;
        gap: 30px;
        margin: 0 0 30px;
    }

    .hs02_post_feature_set li {
        display: grid;
        gap: 10px;
        text-align: center;
    }

    .hs02_post_feature_key {
        width: 100%;
        padding: 10px 5px;
        background-color: var(--brown04);
        color: #fff;
    }

    .hs02_post_title_set {
        display: flex;
        flex-wrap: wrap;
        gap: 5px 15px;
        margin: 0 0 20px;
    }

    .hs02_post_title_box {
        width: 100%;
        font-size: var(--font20);
        font-weight: bold;
    }

    .hs02_post_map {
        display: block;
        padding: 3px 15px;
        color: #fff;
        background-color: #000;
    }

    .hs02_post_website {
        display: block;
        padding: 3px 15px;
        color: #fff;
        background-color: var(--red02);
    }

    .hs02_post_info_set {
        display: flex;
        flex-wrap: wrap;
        gap: 0 20px;
    }

    .hs02_post_note {
        margin: 20px 0 0;
        color: var(--red02);
    }

    .hs02_post_note dl {
        display: grid;
        grid-template-columns: 80px 1fr;
    }
}

@media screen and (min-width:768px) and (max-width:1339px) {

    /*TB*/
    .hs02_post_wrap {
        width: 100%;
        display: grid;
        justify-items: center;
        /* gap: 60px; */
        gap: 4.48vw;
        /* font-size: 15px; */
        font-size: 1.12vw;
    }

    .hs02_post_set {
        width: 100%;
        background-color: #fff;
        box-shadow: 4px 5px 0px rgba(0, 0, 0, 0.4);
        position: relative;
    }

    .hs02_post_set::before {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        /* width: 67px; */
        width: 5.00vw;
        /* height: 67px; */
        height: 5.00vw;
        background-image: url(../img/hot-spring/angle_img03.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
    }

    .hs02_post_set::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        right: -4px;
        /* width: 76px; */
        width: 5.67vw;
        /* height: 72px; */
        height: 5.37vw;
        background-color: var(--brown05);
        background-image: url(../img/hot-spring/angle_img02.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
    }

    .hs02_post_key_set {
        width: 100%;
        /* padding: 30px; */
        padding: 2.24vw;
        display: grid;
        /* grid-template-columns: 187px 880px; */
        grid-template-columns: 13.96vw 65.67vw;
        justify-content: center;
        /* gap: 30px; */
        gap: 2.24vw;
    }

    .hs02_post_key_img {
        position: relative;
    }

    .hs02_post_key_area {
        position: absolute;
        /* top: 20px; */
        top: 1.49vw;
        left: 0;
        right: 0;
        margin: auto;
        width: 100%;
        text-align: center;
        /* font-size: 20px; */
        font-size: 1.49vw;
        font-weight: bold;
        color: #fff;
        line-height: 1.4;
    }

    .hs02_post_key_box {
        display: grid;
        /* grid-template-columns: 95px 1fr; */
        grid-template-columns: 7.09vw 1fr;
        /* gap: 20px; */
        gap: 1.49vw;
        align-items: center;
        /* margin: 0 0 20px; */
        margin: 0 0 1.49vw;
        /* font-size: 40px; */
        font-size: 2.99vw;
    }

    .hs02_post_key_box::before {
        content: '';
        width: 100%;
        /* height: 80px; */
        height: 5.97vw;
        background-image: url(../img/hot-spring/hotsp_steam_img_bk.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .hs02_post_comment {
        /* font-size: 18px; */
        font-size: 1.34vw;
    }

    .hs02_post_img {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .hs02_post_box {
        width: 100%;
        /* padding: 30px; */
        padding: 2.24vw;
    }

    .hs02_post_feature_set {
        display: flex;
        flex-wrap: nowrap;
        /* gap: 30px; */
        gap: 2.24vw;
        /* margin: 0 0 30px; */
        margin: 0 0 2.24vw;
    }

    .hs02_post_feature_set li {
        /* max-width: 340px; */
        max-width: 25.37vw;
        display: grid;
        /* grid-template-columns: 80px 1fr; */
        grid-template-columns: 5.97vw 1fr;
        align-items: center;
        /* gap: 10px; */
        gap: 0.75vw;
    }

    .hs02_post_feature_key {
        width: 100%;
        /* height: 80px; */
        height: 5.97vw;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--brown04);
        color: #fff;
        text-align: center;
        line-height: 1.5;
    }

    .hs02_post_title_set {
        display: flex;
        align-items: center;
        /* gap: 15px; */
        gap: 1.12vw;
        /* margin: 0 0 5px; */
        margin: 0 0 0.37vw;
    }

    .hs02_post_title_box {
        /* font-size: 24px; */
        font-size: 1.79vw;
        font-weight: bold;
        /* padding: 0 15px 0 0; */
        padding: 0 1.12vw 0 0;
    }

    .hs02_post_map {
        display: block;
        /* padding: 3px 15px; */
        padding: 0.22vw 1.12vw;
        color: #fff;
        background-color: #000;
    }

    .hs02_post_website {
        display: block;
        /* padding: 3px 15px; */
        padding: 0.22vw 1.12vw;
        color: #fff;
        background-color: var(--red02);
    }

    .hs02_post_info_set {
        display: flex;
        flex-wrap: wrap;
        /* gap: 0 20px; */
        gap: 0 1.49vw;
    }

    .hs02_post_note {
        /* margin: 20px 0 0; */
        margin: 1.49vw 0 0;
        color: var(--red02);
    }

    .hs02_post_note dl {
        display: grid;
        /* grid-template-columns: 80px 1fr; */
        grid-template-columns: 5.97vw 1fr;
    }
}

@media screen and (min-width:1340px), print {

    /*PC*/
    .hs02_post_wrap {
        width: 100%;
        display: grid;
        justify-items: center;
        gap: 60px;
        font-size: 15px;
    }

    .hs02_post_set {
        width: 100%;
        background-color: #fff;
        box-shadow: 4px 5px 0px rgba(0, 0, 0, 0.4);
        position: relative;
    }

    .hs02_post_set::before {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        width: 67px;
        height: 67px;
        background-image: url(../img/hot-spring/angle_img03.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
    }

    .hs02_post_set::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        right: -4px;
        width: 76px;
        height: 72px;
        background-color: var(--brown05);
        background-image: url(../img/hot-spring/angle_img02.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: contain;
    }

    .hs02_post_key_set {
        width: 100%;
        padding: 30px;
        display: grid;
        grid-template-columns: 187px 880px;
        justify-content: center;
        gap: 30px;
    }

    .hs02_post_key_img {
        position: relative;
    }

    .hs02_post_key_area {
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        margin: auto;
        width: 100%;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        color: #fff;
        line-height: 1.4;
    }

    .hs02_post_key_box {
        display: grid;
        grid-template-columns: 95px 1fr;
        gap: 20px;
        align-items: center;
        margin: 0 0 20px;
        font-size: 40px;
    }

    .hs02_post_key_box::before {
        content: '';
        width: 100%;
        height: 80px;
        background-image: url(../img/hot-spring/hotsp_steam_img_bk.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .hs02_post_comment {
        font-size: 18px;
    }

    .hs02_post_img {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .hs02_post_box {
        width: 100%;
        padding: 30px;
    }

    .hs02_post_feature_set {
        display: flex;
        flex-wrap: nowrap;
        gap: 30px;
        margin: 0 0 30px;
    }

    .hs02_post_feature_set li {
        max-width: 340px;
        display: grid;
        grid-template-columns: 80px 1fr;
        align-items: center;
        gap: 10px;
    }

    .hs02_post_feature_key {
        width: 100%;
        height: 80px;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--brown04);
        color: #fff;
        text-align: center;
        line-height: 1.5;
    }

    .hs02_post_title_set {
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 0 0 5px;
    }

    .hs02_post_title_box {
        font-size: 24px;
        font-weight: bold;
        padding: 0 15px 0 0;
    }

    .hs02_post_map {
        display: block;
        padding: 3px 15px;
        color: #fff;
        background-color: #000;
    }

    .hs02_post_website {
        display: block;
        padding: 3px 15px;
        color: #fff;
        background-color: var(--red02);
    }

    .hs02_post_info_set {
        display: flex;
        flex-wrap: wrap;
        gap: 0 20px;
    }

    .hs02_post_note {
        margin: 20px 0 0;
        color: var(--red02);
    }

    .hs02_post_note dl {
        display: grid;
        grid-template-columns: 80px 1fr;
    }
}

/* その他 */
@media screen and (max-width:767px) {

    /*SP*/
    .hs02_other_box {
        width: 100%;
        text-align: center;
        padding: 0 0 30px;
        color: #fff;
    }

    .hs02_other_text01 {
        font-size: var(--font20);
        font-weight: bold;
        margin: 0 0 5px;
    }

    .hs02_other_link_set {
        width: 100%;
        padding: 0 15px;
        position: relative;
        z-index: 1;
    }

    .hs02_other_link_set::before {
        content: '';
        position: absolute;
        z-index: -1;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background-color: #fff;
    }

    .hs02_other_link_box {
        display: block;
        padding: 10px 5px;
        background-color: var(--red02);
        font-size: var(--font18);
        font-weight: bold;
        color: #fff;
        text-align: center;
    }
}

@media screen and (min-width:768px) and (max-width:1059px) {

    /*TB*/
    .hs02_other_box {
        width: 100%;
        text-align: center;
        /* padding: 0 0 60px; */
        padding: 0 0 5.66vw;
        color: #fff;
    }

    .hs02_other_text01 {
        font-size: var(--font22);
        font-weight: bold;
        /* margin: 0 0 10px; */
        margin: 0 0 0.94vw;
    }

    .hs02_other_link_set {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .hs02_other_link_set::before {
        content: '';
        position: absolute;
        z-index: -1;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background-color: #fff;
    }

    .hs02_other_link_box {
        display: block;
        /* padding: 20px 60px; */
        padding: 1.89vw 5.66vw;
        background-color: var(--red02);
        font-size: var(--font20);
        font-weight: bold;
        color: #fff;
        text-align: center;
    }
}

@media screen and (min-width:1060px), print {

    /*PC*/
    .hs02_other_box {
        width: 100%;
        text-align: center;
        padding: 0 0 60px;
        color: #fff;
    }

    .hs02_other_text01 {
        font-size: var(--font22);
        font-weight: bold;
        margin: 0 0 10px;
    }

    .hs02_other_link_set {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .hs02_other_link_set::before {
        content: '';
        position: absolute;
        z-index: -1;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background-color: #fff;
    }

    .hs02_other_link_box {
        display: block;
        padding: 20px 60px;
        background-color: var(--red02);
        font-size: var(--font20);
        font-weight: bold;
        color: #fff;
        text-align: center;
    }
}