@charset "UTF-8";
*,
::before,
::after{
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
.hdc-wrapper {
    font-family: 'Zen Maru Gothic', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
    font-family: "Zen Maru Gothic", sans-serif;
    word-break: break-word;
    position: relative;
}
.anchor-link{
    position: relative;
    top: -1.68rem;
    display: block;
    line-height: 0;
}
@media(max-width:767px){
    .anchor-link {
        top: 0;
    }
}
/*
==============================================================
============================ Common ==========================
==============================================================
*/
.hdc-wrapper {
    font-size: 0.2rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.hdc-wrapper .container {
    margin: 0 auto;
    max-width: 1140px;
    position: relative;
    z-index: 10;
    padding-left: 20px;
    padding-right: 20px;
}
.lb-pc{
    display: block;
}
.lb-sp {
    display: none;
}
@media(max-width: 767px){
    .lb-sp{
        display: block;
    }
    .lb-pc{
        display: none;
    }
}
/*
==============================================================
======================== End Common ==========================
==============================================================
*/
/*
==============================================================
======================= hamburger menu =======================
==============================================================
*/
.hamburger-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
    z-index: 1100;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%
}
.hamburger-menu .bar,
.hamburger-menu .bar:after,
.hamburger-menu .bar:before {
    width: 0.3rem;
    height: 0.01rem;
    border-radius: 50vh;
    transition: 0.2s;
    background: #000;
}
.hamburger-menu .bar:after {
    width: 0.26rem;
}
.hamburger-menu .bar{
    position: relative;
    width: 0.22rem;
    line-height: 1;
    transition: all 0ms 300ms;
    margin-right: 0.2rem
}
.hamburger-menu .bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: -0.08rem;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0.08rem;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu.active .bar {
    background: none !important;
    margin-right: 0.25rem;
    width: 0.2rem;
}
.hamburger-menu.active .bar::before,
.hamburger-menu.active .bar::after{
    width: 0.35rem;
    top: 0;
    bottom: 0;
    background: #000;
}
.hamburger-menu.active .bar:before {
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}
.hamburger-menu.active .bar:after {
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}
.hdc-wrapper .hdc-header .hamburger-menu{
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    background: url(../img/hamburger-bg.png) no-repeat;
    background-size: 100% 100% !important;
    border-radius: 0;
    width: 0.83rem;
    height: 0.55rem;
}
.hdc-wrapper .hdc-header .hamburger-menu:hover {
    background: url(../img/hamburger-bg-close.png) no-repeat !important;
    background-size: 100% 100% !important;
}
.hdc-wrapper .hdc-header {
    width: 5rem;
    position: fixed;
    right: 0;
    top: 1.15rem;
    z-index: 1000;
    transition: .5s;
    display: none;
}
.fixed-hdc-header .hdc-wrapper .hdc-header {
    display: block;
}
@media(max-width: 767px){
    .hamburger-menu {
        width: 0.35rem;
        height: 0.35rem;
    }
    .hdc-wrapper .hdc-header .hamburger-menu {
        right: 0.2rem;
        top: 0.25rem;
        width: 0.44rem;
        height: 0.28rem;
    }
    .hamburger-menu .bar, .hamburger-menu .bar:after, .hamburger-menu .bar:before {
        width: 0.175rem
    }
    .hamburger-menu .bar {
        width: 0.125rem;
        margin-right: 0.09rem;
    }
    .hamburger-menu .bar:after {
        width: 0.15rem;
    }
    .hamburger-menu.active .bar {
        margin-right: 0.05rem;
    }
    .hamburger-menu .bar:before {
        top: -0.04rem;
    }
    .hamburger-menu .bar:after {
        top: 0.04rem;
    }
    .hamburger-menu.active .bar::before, 
    .hamburger-menu.active .bar::after,
    .hamburger-menu.active .bar {
        width: 0.175rem;
    }
    .hdc-wrapper .hdc-header {
        width: 100%;
        top: 0.6rem
    }
    .hdc-wrapper .hdc-header.open-menu {
        top: 0;
    }
    .hdc-wrapper .hdc-header .main-menu ul {
        padding-bottom: 0.75rem !important;
    }
}
#footer {
    margin-top: 0
}
/*
==============================================================
====================== End hamburger menu ====================
==============================================================
*/
/*
==============================================================
============================ Home ============================
==============================================================
*/
.hdc-wrapper .hdc-header .main-menu {
    padding-top: 0.75rem;
    text-align: center;
    background-color: #fff;
    background-image: url(../img/hamb-bg.png);
    background-repeat: repeat;
    display: none;
    height: calc(100vh - 1.15rem);
    overflow: auto;
}
.hdc-wrapper .hdc-header.open-menu .hamburger-menu {
    background: url(../img/hamburger-bg-close.png) no-repeat;
}
.hdc-wrapper .hdc-header .main-menu .logo {
    text-align: center;
    margin-bottom: 0.65rem;
}
.hdc-wrapper .hdc-header .main-menu .logo img {
    width: 100%;
    max-width: 3.94rem;
}
.hdc-wrapper .hdc-header .main-menu ul li a {
    text-decoration: unset;
    color: #394657;
    font-family: "Tourney", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
    font-size: 0.22rem;
    line-height: 1;
    font-weight: 900;
    border-top: 1px solid #000;
    display: block;
    padding: 0.335rem 0;
    transition: .3s;
    cursor: pointer;
    transition: .3s;
}
.hdc-wrapper .hdc-header .main-menu ul li a img {
    height: 0.18rem;
}
.hdc-wrapper .hdc-header .main-menu ul li a:hover {
    opacity: .7;
}
.hdc-wrapper .hdc-header .main-menu ul li:last-child a{
    border-bottom: 1px solid #000;
}
.hdc-wrapper .hdc-header .main-menu ul {
    max-width: 3rem;
    margin: 0 auto;
    padding-bottom: 1.5rem;
}
@media(max-width:767px){
    .hdc-wrapper .hdc-header .main-menu {
        padding-top: 0.45rem;
        height: 100vh;
    }
    .hdc-wrapper .hdc-header .main-menu .logo img {
        max-width: 2.4rem;
    }
    .hdc-wrapper .hdc-header .main-menu ul{
        max-width: 1.5rem;
    }
    .hdc-wrapper .hdc-header .main-menu ul li a {
        font-size: 0.11rem;
        padding: 0.16rem 0;
    }
    .hdc-wrapper .hdc-header .main-menu .logo {
        margin-bottom: 0.325rem;
    }
    .hdc-wrapper .hdc-header .main-menu ul li a img {
        height: 0.13rem;
    }
}
.btn-box {
    text-align: center;
    padding-top: 0.6rem;
    padding-bottom: 1.2rem;
}
.btn {
    display: inline-block;
    font-size: 0.25rem;
    letter-spacing: 0.1em;
    line-height: 1;
    font-weight: 700;
    color: #394657;
    text-decoration: unset;
    background: #e1d96a;
    width: 100%;
    max-width: 6rem;
    border-radius: 50vh;
    padding: 0.18rem 0.15rem;
    transition: .3s;
    box-shadow: rgba(0, 0, 0, 0.24) 3px 5px 8px;
}
.btn:hover {
    background: #5D97A7;
    color: #fff;
}
.btn span {
    padding-right: 0.55rem;
    position: relative;
}
.btn span::after {
    content: "";
    position: absolute;
    width: 0.3rem;
    height: 0.18rem;
    background: url(../img/brn-arr.png) no-repeat;
    background-size: 100% !important;
    right: 0;
    top: 50%;
    margin-top: -0.09rem;
    transition: .3s;
}
.btn:hover span::after {
    background: url(../img/btn-arr-w.png) no-repeat;
}
.hdc-wrapper {
    word-break: break-word;
    position: relative;
    margin-top: 0 !important;
}
#co-trip {
    padding-top: 1.15rem;
}
#co-trip .mv {
    background: #FAF9E6;
}
#co-trip .shop {
    background: #FAF9E6;
    position: relative;
}
#co-trip .shop::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.85rem;
    background: url(../img/work-shop-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 2;
    bottom: -1.84rem;
}
#co-trip .title {
    text-align: center;
    padding-top: 0.15rem;
    margin-bottom: -0.2rem;
}
#co-trip .title img {
    height: 0.9rem;
}
#co-trip .shop .container {
    max-width: 1320px;
}
#co-trip .content .txt {
    text-align: center;
    font-size: 0.22rem;
    line-height: 1.8;
    font-weight: 700;
    padding-top: 0.45rem;
}
#co-trip .content .txt .loca {
    display: flex;
    justify-content: center;
    font-size: 0.2rem;
    line-height: 1;
    letter-spacing: 0.08em;
    font-weight: 500;
    width: fit-content;
    margin: 0 auto;
    padding-top: 0.3rem;
    padding-bottom: 0.6rem;
    letter-spacing: -0.1em;
}
#co-trip .content .txt .loca p.lbl {
    border-right: unset;
    width: 0.8rem;
    padding: 0.03rem 0 0.05rem;
}
#co-trip .content .txt .loca p {
    padding: 0.03rem 0.2rem 0.05rem;
    border: 1px solid #000;
    /* flex: 1; */
}
#co-trip .content .txt .loca p span {
    letter-spacing: -0.03em;

}
#co-trip .shop .items {
    max-width: 1100px;
    margin: 0 auto;
}
#co-trip .shop .img-bg1 {
    width: 3.55rem;
    height: 3.12rem;
    position: absolute;
    top: 22.5%;
    left: 0.15rem;
}
#co-trip .shop .img-bg2 {
    width: 3.48rem;
    height: 2.82rem;
    position: absolute;
    top: 38%;
    right: 0.15rem;
}
#co-trip .shop .img-bg3 {
    width: 3.12rem;
    height: 2.9rem;
    position: absolute;
    top: 56.5%;
    left: 0.15rem;
}
#co-trip .shop .img-bg4 {
    width: 3.1rem;
    height: 3.4rem;
    position: absolute;
    top: 91%;
    right: 0.15rem;
}
#co-trip .work-shop {
    position: relative;
}
#co-trip .work-shop .btn-box {
    padding-top: 1rem;
}
#co-trip .work-shop .img-bg1 {
    max-width: 4.25rem;
    width: 100%;
    position: absolute;
    top: 4%;
    left: 0.65rem;
}
#co-trip .work-shop .img-bg2 {
    width: 3.8rem;
    position: absolute;
    top: 24%;
    left: 1.3rem;
}
#co-trip .work-shop .img-bg3 {
    width: 4.36rem;
    position: absolute;
    top: 30.8%;
    right: 0.3rem;
}
#co-trip .work-shop .img-bg4 {
    width: 2.1rem;
    position: absolute;
    top: 63.5%;
    left: 1.3rem;
}
#co-trip .work-shop .img-bg6 {
    width: 2.6rem;
    position: absolute;
    top: 5%;
    right: 1rem;
}
#co-trip .work-shop .img-bg5 {
    width: 2rem;
    position: absolute;
    top: 74.5%;
    right: 1.3rem;
}
#co-trip .shop .items ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.2rem;
}
#co-trip .shop .items ul li {
    width: 33.33%;
    padding: 0.1rem 0.2rem;
}
#co-trip .shop .items ul li .img-box .l-img {
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0.1rem;
}
#co-trip .shop .items ul li .img-box .l-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#co-trip .shop .items ul li .img-box {
    position: relative;
}
#co-trip .shop .items ul li .img-box .tag {
    position: absolute;
    top: 0;
    left: 0;
    width: 0.58rem;
    height: 0.58rem;
    background: url(../img/shop-list-bg.png) no-repeat;
    background-size: 100%;
    border-radius: 0.1rem 0 0 0;
    color: #394657;
    font-size: 0.14rem;
    font-weight: 700;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-right: 0.12rem;
    padding-bottom: 0.28rem;
    line-height: 1;
    z-index: 1;
}
#co-trip .shop .items ul li .img-box .tag .no {
    font-size: 0.18rem
}
#co-trip .shop .items ul li .img-box .txt-bt {
    position: absolute;
    bottom: 0.1rem;
    left: 0.1rem;
    right: 0.1rem;
    display: flex;
    align-items: flex-end;
}
#co-trip .shop .items ul li .img-box .txt-bt .type {
    width: max-content;
    text-align: center;
}
#co-trip .shop .items ul li .img-box .txt-bt .type span {
    margin-top: 0.04rem;
}
#co-trip .shop .items ul li .img-box .txt-bt .date {
    flex: 1;
    padding-left: 0.2rem;
    text-align: right;
    line-height: 1;
    letter-spacing: -0.04em;
}
#co-trip .shop .items ul li .img-box .txt-bt .date span {
    font-size: 0.17rem;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #fff;
    background: #5D97A7;
    border-radius: 50vh;
    min-width: 0.7rem;
    display: inline-block;
    text-align: center;
    padding: 0.05rem 0.05rem 0.08rem;
}
#co-trip .shop .items ul li .img-box .txt-bt .date span.bg1 {
    background: #D07D79;
}
#co-trip .shop .items ul li .img-box .txt-bt .type img {
    width: 100%;
    max-width: 0.6rem;
}
#co-trip .shop .items ul li .img-box .txt-bt .type .tl {
    display: block;
    font-size: 0.17rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #fff
}
#co-trip .shop .items ul li .img-box .txt-bt .type .tl.cl1 {
    color: #394657
}
#co-trip .shop .items ul li .txt-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.05rem 0;
}
#co-trip .shop .items ul li .txt-box h3 {
    font-weight: 500;
}
#co-trip .content .img-top {
    position: relative;
}
#co-trip .content .img-top .txt-left {
    width: 2.3rem;
    height: 2.3rem;
    position: absolute;
    left: 0;
    bottom: -1.8rem;
}
.hdc-wrapper .ic-group {
    line-height: 1;
}
.hdc-wrapper .ic-group a {
    display: inline-block;
}
.hdc-wrapper .ic-group .ic {
    width: 0.36rem;
    height: 0.36rem;
    display: inline-block;
    background: #000;
    border-radius: 50%;
    transition: .3s;
    position: relative;
}
.hdc-wrapper .ic-group .ic:hover {
    background: #338C9B;
}
.hdc-wrapper .ic-group .ic.ic-insta::before {
    content: "";
    position: absolute;
    width: 0.18rem;
    height: 0.18rem;
    background: url(../img/ic-instagram.png) no-repeat;
    background-size: 100% !important;
    background-position: center !important;
    top: 50%;
    margin-top: -0.09rem;
    left: 50%;
    margin-left: -0.09rem;
}
#co-trip .shop .ltsp-sm {
    letter-spacing: -0.1em !important;
}
#co-trip .work-shop {
    background: url(../img/bg.png) repeat;
    padding-top: 1.75rem;
}
#co-trip .work-shop .container {
    max-width: 1480px;
}
#co-trip .work-shop .img-top .txt-left {
    left: 7%;
    bottom: -1.1rem;
    z-index: -1;
}
#co-trip .work-shop .title img {
    height: 1.25rem;
    object-fit: contain;
}
#co-trip .work-shop .title {
    padding-bottom: 0.3rem;
}
#co-trip .work-shop .txt {
    padding-top: 0;
    margin-top: -0.3rem;
}
#co-trip .work-shop .txt .sm {
    font-size: 0.15rem;
    line-height: 1.66;
    letter-spacing: 0.05em;
    font-weight: 400;
    padding-bottom: 0.65rem;
}
#co-trip .work-shop .txt {
    position: relative;
}
#co-trip .work-shop .txt .loca {
    padding-bottom: 0.15rem;
}
#co-trip .work-shop .txt .txt-img {
    width: 1.75rem;
    position: absolute;
    right: 12.5%;
    bottom: 0.15rem;
}
#co-trip .work-shop .txt .txt-img img {
    width: 100%;
}
#co-trip .work-shop .items {
    max-width: 8rem;
    margin: 0 auto;
}
#co-trip .work-shop .items .date {
    text-align: center;
    background: #5D97A7;
    color: #fff;
    line-height: 1;
    border-radius: 0.1rem;
    font-size: 0.27rem;
    padding: 0.06rem 0 0.07rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
#co-trip .work-shop .items .date .nt {
    font-size: 0.14rem;
    width: 0.22rem;
    height: 0.22rem;
    border-radius: 50%;
    background: #fff;
    color: #5D97A7;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    padding: 0.03rem;
    margin-left: 0.05rem;
}
#co-trip .work-shop .items ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
}
#co-trip .work-shop .items ul li {
    width: 50%;
    padding: 0.4rem 0.18rem 0;
}
#co-trip .work-shop .items ul li ul {
    padding: 0;
}
#co-trip .work-shop .items ul li .inner {
    background: #fff;
    border-radius: 0.1rem;
}
#co-trip .work-shop .items ul li .img {
    padding-top: 100%;
    position: relative;
    border-radius: 0.1rem 0.1rem 0 0;
    overflow: hidden;
}
#co-trip .work-shop .items ul li .img .date {
    position: absolute;
    font-size: 0.17rem;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #fff;
    background: #5D97A7;
    border-radius: 50vh;
    min-width: 0.7rem;
    display: inline-block;
    text-align: center;
    padding: 0.05rem 0.05rem 0.08rem;
    bottom: 0.1rem;
    right: 0.1rem;
    margin: 0;
}
#co-trip .work-shop .items ul li .img .date.bg1 {
    background: #D07D79;
}
#co-trip .work-shop .items ul li .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#co-trip .work-shop .items ul li .inner .txt-box {
    padding: 0.2rem 0.2rem 0.3rem;
}
#co-trip .work-shop .items ul li .inner .txt-box ul {
    display: block;
    padding-bottom: 0.15rem;
    border-bottom: 0.01rem dashed #BDDAE0;
}
#co-trip .work-shop .items ul li .inner .txt-box ul li {
    font-size: 0.17rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 0 0 0.05rem;
    width: 100%;
}
#co-trip .work-shop .items ul li .inner .txt-box ul li .lb {
    display: inline-block;
    background: #CAE1E5;
    line-height: 1;
    min-width: 0.7rem;
    text-align: center;
    padding: 0.04rem;
    border-radius: 0.05rem;
    letter-spacing: 0.1em;
    margin-right: 0.1rem;
}
#co-trip .work-shop .items ul li .inner .txt-box ul li .desc {
    flex: 1;
    margin-right: -0.1rem;
}
#co-trip .work-shop .items ul li .inner .txt-box .txt-bottom {
    padding-top: 0.15rem;
    font-size: 0.15rem;
    line-height: 1.66;
}
#co-trip .work-shop .items ul li .inner .txt-box h3 {
    padding-bottom: 0.15rem;
    letter-spacing: -0.05em;
    margin-right: -0.25rem;
}
#co-trip .work-shop .items ul li .inner .txt-box h3 .ltsp-sm {
    letter-spacing: -0.12em;
}
#co-trip .work-shop .items ul li .inner .txt-box h3.ltsp-sm {
    letter-spacing: -0.12em;
}
#co-trip .work-shop .items ul li .inner {
    height: 100%;
}
#co-trip .work-shop .items .date.bg1 {
    background: #D07D79;
    margin-top: 1rem;
}
#co-trip .work-shop .items .date.bg1 .nt {
    color: #D07D79;
}
#co-trip .work-shop {
    padding-bottom: 1.5rem;
    position: relative;
}
#co-trip .work-shop::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1.57rem;
    background: url(../img/ws-bg-bottom.png);
    background-size: cover;
    background-position: top ;
    bottom: 0;
}
#co-trip .work-shop .img-bg-sp {
    display: none;
}
@media(max-width: 767px){
    .hdc-wrapper .container {
        padding-left: 0.12rem;
        padding-right: 0.12rem;
    }
    #co-trip .work-shop .img-top {
        padding:  0 0.08rem;
    }
    #co-trip .work-shop .items ul li .img {
        border-radius: 0.05rem 0.05rem 0 0 ;
    }
   #co-trip .work-shop .img-bg-sp {
        display: block;
        max-width: 2.4rem;
        width: 100%;
        left: 0.72rem;
        position: absolute;
        top: 0.2rem;
    }
    #co-trip .shop .img-bg1,
    #co-trip .shop .img-bg2,
    #co-trip .shop .img-bg3,
    #co-trip .shop .img-bg4,
    #co-trip .work-shop .img-bg1,
    #co-trip .work-shop .img-bg2,
    #co-trip .work-shop .img-bg3,
    #co-trip .work-shop .img-bg4,
    #co-trip .work-shop .img-bg5 {
        display: none;
    }
    #co-trip .shop .container {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    #co-trip .work-shop .txt .txt-img {
        width: 0.9rem;
        right: 15%;
        bottom: 0.15rem;
    }
    #co-trip .content .txt .loca p {
        padding: .03rem 0.08rem 0.05rem;;
    }
    #co-trip .title img {
        height: 0.44rem;
    }
     #co-trip .shop .title {
        padding-bottom: 0.35rem;
        padding-top: 0.3rem;
     }
     #co-trip .content .img-top .txt-left {
        display: none;
     }
     #co-trip .content .txt {
        font-size: 0.14rem;
        margin: 0 -0.1rem;
        line-height: 1.6;
     }
     #co-trip .content .txt .loca {
        font-size: 0.145rem;
        padding-top: 0.22rem;
        padding-bottom: 0.45rem;
     }
     #co-trip .shop .items ul li {
        width: 50%;
        padding: 0.025rem 0.05rem;
     }
     #co-trip .shop .txt {
        padding-top: 0.15rem;
     }
    .hdc-wrapper .ic-group .ic {
        width: 0.2rem;
        height: 0.2rem;
    }
    #co-trip .content .txt .loca p.lbl {
        width: 0.58rem;
    }
    #co-trip .shop .items ul {
        margin: 0 -0.175rem;
    }
    .hdc-wrapper .ic-group .ic.ic-insta::before {
        width: 0.1rem;
        height: 0.1rem;
        margin-top: -0.05rem;
        margin-left: -0.05rem;
    }
    #co-trip .shop .items ul li .txt-box {
        font-size: 0.1rem;
        padding-top: 0.02rem;
    }
    #co-trip .shop .items ul li .img-box .txt-bt .date span {
        font-size: 0.1rem;
        min-width: 0.35rem;
        padding: 0.02rem 0.05rem 0.03rem;
        background: #338C9B
    }
    #co-trip .shop .items ul li .img-box .txt-bt .date span.bg1 {
        background: #A7516A
    }
    #co-trip .shop .items ul li .img-box .l-img {
        border-radius: 0.05rem;
    }
    #co-trip .shop .items ul li .img-box .txt-bt .type img {
        max-width: 0.3rem;
    }
    #co-trip .shop .items ul li .img-box .txt-bt .type .tl {
        font-size: 0.085rem;
    }
    #co-trip .shop .items ul li .img-box .txt-bt {
        bottom: 0.05rem;
        left: 0.05rem;
        right: 0.05rem;
    }
    #co-trip .shop .items ul li .img-box .tag {
        width: 0.29rem;
        height: 0.29rem;
        border-radius: 0.05rem 0 0 0;
        font-size: 0.06rem;
        padding-right: 0.06rem;
        padding-bottom: 0.14rem;
    }
    #co-trip .shop .items ul li .img-box .tag .no {
        font-size: 0.08rem;
    }
    .btn {
        font-size: 0.15rem;
        letter-spacing: 0.05em;
        max-width: 3rem;
        padding: 0.125rem 0.1rem;
        background: #DCD373;
    }
    .btn-box {
        padding-top: 0.3rem;
        padding-bottom: 0;
    }
    .btn span::after {
        width: 0.15rem;
        height: 0.09rem;
        margin-top: -0.045rem;
    }
    .btn span {
        padding-right: 0.28rem;
        position: relative;
    }
    #co-trip .shop::after {
        background: url(../img/work-shop-bg-sp.png) no-repeat;
        background-position: center;
        background-position: top;
        height: 0.53rem;
        bottom: -0.52rem;
    }
    #co-trip .shop {
        padding-bottom: 0.75rem;
    }
    #co-trip .work-shop {
        padding-top: 0.4rem;
    }
    #co-trip .work-shop .title img {
        height: 0.52rem;
    }
    #co-trip .work-shop .title {
        padding-top: 0.25rem;
        margin-bottom: -0.15rem;
    }
    #co-trip .work-shop .txt {
        padding-top: 0.15rem;
    }
    #co-trip .work-shop .txt .sm {
        width: max-content;
        text-align: left;
        margin: 0 auto;
        font-size: 0.1rem;
        line-height: 1.5;
        padding-right: 0.45rem;
    }
    #co-trip .content .txt .loca {
        padding-bottom: 0.2rem;
    }
    #co-trip .shop .content .txt .loca {
        padding-bottom: 0.44rem;
    }
    #co-trip .work-shop .txt .sm {
        padding-bottom: 0.6rem;
    }
    #co-trip .work-shop .items .date {
        font-size: 0.2rem;
        border-radius: 0.05rem;
        background: #338C9B;
        padding: 0.05rem 0 0.05rem;
    }
    #co-trip .work-shop .items .date .nt {
        font-size: 0.11rem;
        padding: 0.02rem;
        width: 0.17rem;
        height: 0.17rem;
    }
    #co-trip .work-shop .items ul li {
        padding: 0.05rem 0.05rem;
    }
    #co-trip .work-shop .items ul li .inner {
        border-radius: 0.05rem;
    }
    #co-trip .work-shop .items ul li .inner .txt-box h3 {
        font-size: 0.15rem;
        letter-spacing: -0.025em;
    }
    #co-trip .work-shop .items ul li .inner .txt-box {
        padding: 0.2rem 0.1rem 0.3rem;
    }
    #co-trip .work-shop .items ul {
        padding: 0.05rem 0 0;
        margin: 0 -0.05rem;
    }
    #co-trip .work-shop .items ul li .img .date {
        font-size: 0.1rem;
        min-width: 0.35rem;
        padding: 0.02rem 0.05rem 0.03rem;
    }
    #co-trip .work-shop .items ul li .inner .txt-box ul li {
        font-size: 0.1rem;
    }
    #co-trip .work-shop .items ul li .inner .txt-box ul li .lb {
        min-width: 0.4rem;
        text-align: center;
        padding: 0.012rem;
        border-radius: 0.025rem;
        letter-spacing: 0.1em;
        margin-right: 0.05rem;
    }
    #co-trip .work-shop .items ul li .inner .txt-box ul {
        margin: 0;
    }
    #co-trip .work-shop .items ul li .inner .txt-box {
        padding-top: 0.08rem;
    }
    #co-trip .work-shop .items ul li .inner .txt-box ul li .desc {
        font-weight: 500;
        letter-spacing: -0.025em;
    }
    #co-trip .work-shop .items ul li .inner .txt-box ul li {
        padding-bottom: 0.015rem;
    }
    #co-trip .work-shop .items ul li .inner .txt-box ul {
        padding-bottom: 0.08rem;
    }
    #co-trip .work-shop .items ul li .inner .txt-box .txt-bottom {
        font-size: 0.12rem;
        padding-top: 0.08rem;
    }
    #co-trip .work-shop .items ul li .inner .txt-box h3 {
        padding-bottom: 0.08rem;
    }
    #co-trip .work-shop .items ul li .inner .txt-box {
        padding-bottom: 0.15rem;
    }
    #co-trip .work-shop .items ul li .inner .txt-box h3 {
        margin-right: 0;
    }
    #co-trip .work-shop .items .date.bg1 {
        background: #A7516A;
        margin-top: 0.2rem;
    }
    #co-trip .work-shop .items .date.bg1 .nt {
        color: #A7516A;
    }
    #co-trip .work-shop .items ul li .inner .txt-box h3 {
        line-height: 1.33;
    }
    #co-trip .work-shop .items ul li .img .date {
        bottom: 0.05rem;
        right: 0.05rem;
        background: #338C9B;
    }
    #co-trip .work-shop .items ul li .img .date.bg1 {
        background: #A7516A;
    }
    #co-trip .work-shop .items ul li .inner .txt-box .txt-bottom {
        line-height: 1.6;
    }
    #co-trip .work-shop .btn-box {
        padding-top: 0.45rem;
        padding-bottom: 0.5rem;
    }
    #co-trip .work-shop::after {
        height: 0.38rem;
        background: url(../img/ws-bg-bottom-sp.png);
        background-size: unset;
        background-position: top;
        bottom: 0;
    }
    #co-trip .work-shop {
        padding-bottom: 0.4rem;
    }
    #co-trip .access .title img {
        height: 0.4rem !important;
        object-fit: contain;
    }
}
.hdc-wrapper .access {
    position: relative;
	padding-bottom: 2rem;
    font-family: 'Zen Kaku Gothic New', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
}
#co-trip .access .title img {
    height: 1.12rem;
}
.hdc-wrapper .access .content {
    max-width: 1100px;
    margin: 0 auto;
}
.hdc-wrapper .access .content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-top: 1rem;
}
.hdc-wrapper .access .content .img-box{
    width: 47.5%;
}
.hdc-wrapper .access .content .txt-box {
    width: 52.5%;
}
.hdc-wrapper .access .content .txt-box {
    font-size: 0.2rem;
    letter-spacing: 0.15em;
}
.hdc-wrapper .access .content .txt-box h3 img {
    height: 0.485rem;
}
.hdc-wrapper .access .content .txt-box .tag {
    border: 0.01rem solid #000;
    color: #002423;
    font-size: 0.24rem;
    line-height: 1;
    display: inline-block;
    font-weight: 700;
    min-width: 2.5rem;
    text-align: center;
    padding: 0.05rem 0.1rem;
    margin-top: 0.2rem;
    margin-bottom: 0.1rem;
}
.hdc-wrapper .access .content .txt-box .tag .sm {
    font-size: 0.22rem;
}
.hdc-wrapper .access .content .txt-box a {
    margin-top: 0.1rem;
}
.hdc-wrapper .access .btn {
    font-size: 0.17rem;
    text-decoration: unset;
    letter-spacing: 0.1em;
    display: inline-block;
    text-align: center;
    line-height: 1;
    border: 1px solid #000;
    color: #000;
    padding: 0.06rem 0.1rem;
    min-width: 1.7rem;
    transition: .3s;
    max-width: unset;
    background: unset;
    border-radius: 0;
    width: unset;
    box-shadow: unset;
}
.hdc-wrapper .access .btn span {
    padding-left: 0.25rem;
    position: relative;
    letter-spacing: 0.01em;
    padding-right: 0;
}
.hdc-wrapper .access .btn span::after {
    display: none;
}
.hdc-wrapper .access .btn span::before {
    content: "";
    position: absolute;
    width: 0.2rem;
    height: 0.2rem;
    background: url(../img/play-01.png) no-repeat;
    background-size: 100% !important;
    left: 0;
    top: 50%;
    margin-top: -0.1rem;
}
.hdc-wrapper .access .content .txt-box .bottom-box  {
    margin-top: 0.38rem;
}
.hdc-wrapper .access .content .txt-box .bottom-box .sm {
    font-size: 0.17rem;
    line-height: 1;
}
.hdc-wrapper .access .content .txt-box .bottom-box .tel {
    font-size: 0.35rem;
    letter-spacing: 0.1em;
}
.hdc-wrapper .access .content .txt-box .bottom-box .tel .lg {
    font-size: 0.45rem;
    line-height: 1;
}
.hdc-wrapper .access .content .txt-box .cmt {
    font-size: 0.17rem;
    border-radius: 0.1rem;
    line-height: 1.7;
    padding: 0.22rem 0.45rem 0.22rem 0.28rem;
    margin-right: 0.3rem;
    margin-top: 0.3rem;
    background: url(../img/cmt-bg.png) no-repeat;
    background-size: 100% 100% !important;
}

.hdc-wrapper .access .content .txt-box .cmt  p{
    letter-spacing: 0.1em;
}
.hdc-wrapper .access .content .txt-box .cmt .cl1 {
    color: #D95F29;
    font-weight: 700;
}
.hdc-wrapper .access .content .txt-box .cmt .no {
    font-size: 0.25rem;
    line-height: 1;
}
@media(max-width:767px){
    .hdc-wrapper .access {
        padding-top: 0.4rem;
    }
    .hdc-wrapper .access .content .txt-box {
        width: 100%;
    }
    .hdc-wrapper .access .title {
        margin: 0 0.25rem;
    }
    .hdc-wrapper .access::after {
        width: 1.06rem;
        height: 2.7rem;
        bottom: 178%;
        margin-bottom: unset;
    }
    .hdc-wrapper .access::before {
        content: "";
        position: absolute;
        width: 0.92rem;
        height: 2.65rem;
        bottom: 9.25rem;
        right: 0;
        z-index: 0;
        mix-blend-mode: hard-light;
    }
    .hdc-wrapper .access .content .txt-box .cmt {
        margin-right: 0;
    }
    .hdc-wrapper .access .content .img-box {
        width: 100%;
    }
    .hdc-wrapper .access .content {
        margin-top: .3rem;
        flex-direction: column-reverse;
    }
    .hdc-wrapper .access .content .img-box img {
        width: 70%;
    }
    .hdc-wrapper .access .content .img-box {
        text-align: center;
    }
    .hdc-wrapper .access .content .txt-box h3 img {
        height: 0.31rem;
    }
    .hdc-wrapper .access .content .txt-box h3 {
        text-align: center;
        margin-top: 0.3rem;
    }
    .hdc-wrapper .access .content .txt-box .tag,
    .hdc-wrapper .access .content .txt-box .tag .sm {
        font-size: 0.16rem;
    }
    .hdc-wrapper .access .content .txt-box .tag {
        min-width: 0.175rem;
    }
    .hdc-wrapper .access .content .txt-box {
        text-align: center;
        font-size: 0.125rem;
    }
    .hdc-wrapper .access .content .txt-box .tag {
        min-width: 0.175rem;
        margin-top: 0.125rem;
        margin-bottom: 0.08rem;
    }
    .hdc-wrapper .access .content .txt-box a {
        padding: 0.07rem 0.1rem;
        min-width: 2.1rem;
    }
    .hdc-wrapper .access .content .txt-box .cmt {
        background: url(../img/cmt-bg-sp.png) no-repeat;
        font-size: 0.125rem;
        padding: 0.25rem 0.1rem 0.15rem 0.1rem;
        color: #002423;
        line-height: 1.6;
        border-radius: 0;
    }
    .hdc-wrapper .access .content .txt-box .cmt p {
        letter-spacing: 0;
    }
    .hdc-wrapper .access .content .txt-box .cmt .no {
        font-size: 0.2rem;
        line-height: 1;
    }
    .hdc-wrapper .access .content .txt-box .bottom-box .sm {
        font-size: 0.15rem;
    }
    .hdc-wrapper .access .content .txt-box .bottom-box .tel .lg {
        font-size: 0.27rem;
    }
    .hdc-wrapper .access .content .txt-box .bottom-box .tel {
        font-size: 0.2rem;
        margin-top: 0.08rem;
    }
    .hdc-wrapper #footer {
        margin-top: 0.45rem;
    }
    .hdc-wrapper .access .content .txt-box .tag {
        border: unset;
    }
    .hdc-wrapper .access .btn span {
        font-size: 0.11rem;
        padding-left: 0.125rem;
    }
    .hdc-wrapper .access .btn span::before {
        width: 0.11rem;
        height: 0.11rem;
        margin-top: -0.055rem;
    }
    .hdc-wrapper .access .content .txt-box a {
        padding: 0.02rem 0.1rem 0.05rem;
        min-width: 2.2rem;
    }
    .hdc-wrapper .access {
        padding-bottom: 0;
        padding-top: 0;
    }
    .hdc-wrapper #footer {
        margin-top: 0.4rem;
    }
    .hdc-wrapper .access .content {
        padding-bottom: 0.45rem;
    }
}


.hdc-wrapper .ic-group .ic.ic-expand::before {
    content: "";
    position: absolute;
    width: 0.22rem;
    height: 0.17rem;
    background: url(../img/ic-expand.png) no-repeat;
    background-size: 100% !important;
    top: 50%;
    margin-top: -0.09rem;
    left: 50%;
    margin-left: -0.11rem;
}
#co-trip .work-shop .items ul li .img a {
    display: block;
    transition: all .3s;
}
#co-trip .work-shop .items ul li .img a {
    z-index: auto;
    display: block;
    transition: all .3s;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
#co-trip .work-shop .items ul li .img img {
    z-index: 10;
}
#co-trip .work-shop .items ul li .img .date {
    z-index: 10;
}
#co-trip .work-shop .items ul li .img a:hover {
    opacity: 0.7;
}

.hdc-wrapper .access .content .txt-box .tag {
   margin-bottom: 0.15rem;
}
.hdc-wrapper .access .content .txt-box a {
    margin-top: 0.15rem;
}

.hdc-wrapper .access .content .txt-box a:hover {
    opacity: .7;
}

#co-trip .shop .items ul li .img-box .l-img {
    transition: all .3s;
}
#co-trip .shop .items ul li .img-box .l-img:hover {
    opacity: .8;
}

@media(max-width:767px){
    .hdc-wrapper .ic-group .ic.ic-expand::before {
        width: 0.11rem;
        height: 0.086rem;
        margin-top: -0.045rem;
        margin-left: -0.055rem;
    }
}

.topicPath {
    display: none;
}
#co-trip {
    padding-top: 0;
    margin-top: 0;
}
#wrapper {
    margin-top: 0;
}