@charset "utf-8";

/*===================================
searchBox
==================================*/

/* searchBox-type-01 */

.searchBox-type-01 {
    background: #333;
    padding: 30px 0;
}

.searchBox-type-01 dt {
    width: 100%;
    color: #fff;
    margin-bottom: 10px;
}

.searchBox-type-01 dd {
    width: 100%;
}

.searchBox-type-01 select, .searchBox-type-01 input[type="text"] {
    width: 100%;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 3px;
    padding: 10px;
    cursor: pointer;
}

.searchBox-type-01 button {
    font-size: 1.7rem;
    border: none;
}

@media (max-width: 599px) {
    .searchBox-type-01 dt {
        width: 70px;
        margin-bottom: 0;
    }

    .searchBox-type-01 dd {
        width: calc(100% - 70px);
    }
}



/* searchBox-type-02 */

.searchBox-type-02 {
    background: #fff;
    padding: 40px;
}

.searchBox-type-02 dt {
    color: #333;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.searchBox-type-02 dd {
    width: 100%;
}

.searchBox-type-02 select, .searchBox-type-02 input[type="text"] {
    width: 100%;
    background: #eff0eb;
    border: none;
    border-radius: 3px;
    padding: 10px;
    cursor: pointer;
}

.searchBox-type-02 button {
    font-size: 1.8rem;
    border: none;
}

.searchBox-type-02 button:before {
    display: inline-block;
    content: "\f002";
    font-family: 'Font Awesome 5 Free';
    margin-right: 10px;
}

@media (max-width: 599px) {
    .searchBox-type-02 dt {
        width: 70px;
        font-size: 1.4rem;
        margin-bottom: 0;
    }

    .searchBox-type-02 dd {
        width: calc(100% - 70px);
    }
}



/*===================================
searchLinkWrap
==================================*/

.searchLinkWrap {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
}

.searchLinkList.fixed {
    position: fixed;
}

.searchLinkList li {
    color: #999;
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.searchLinkList li a {
    height: 100%;
    font-size: 2rem;
    font-weight: bold;
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.searchLinkList li a:hover {
    color: #fff;
    background: #658d08;
    opacity: 1;
}

.searchLinkList li.active a {
    color: #fff;
    background: #658d08;
    opacity: 1;
}

.searchLinkList li.toSearch a {
    color: #fff;
    font-size: 1.2rem;
    background: #658d08;
}

.searchLinkList li.toSearch a:before {
    display: block;
    content: "\f002";
    font-size: 2rem;
    font-family: 'Font Awesome 5 Free';
    line-height: 1;
    margin: 0 auto 5px;
}

@media (max-width: 1024px) {
    .searchLinkList li a {
        font-size: 1.6rem;
    }
}

@media (max-width: 599px) {
    .searchLinkWrap {
        display: none;
    }
}



/*===================================
place
==================================*/

.placeBtn li > * {
    display: block;
    color: #999;
    font-size: 2rem;
    font-weight: bold;
    background-color: #eff0eb;
    border-radius: 4px;
    padding: 5px 10px;
    text-align: center;
}

.placeBtn li > *:hover {
    color: #fff;
    background: #28502e;
    opacity: 1;
}

.placeBtn li.active > * {
    color: #fff;
    background: #28502e;
    position: relative;
}

.placeBtn li.active > *:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    border-left: 10px solid transparent;
    border-top: 10px solid #28502e;
    border-right: 10px solid transparent;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}



/*===================================
lowpriceList
==================================*/

.lowpriceList li a {
    display: block;
    height: 100%;
    font-size: 2rem;
    border: 2px solid #33658a;
    -webkit-box-shadow: 2px 3px 1px #eee;
    box-shadow: 2px 3px 1px #eee;
    text-align: center;
}

.lowpriceList li .tit {
    display: block;
    color: #fff;
    background: #33658a;
    padding: 10px;
}

.lowpriceList li .pri {
    display: block;
    color: #d9392d;
    font-weight: bold;
    padding: 10px;
    text-decoration: underline;
}

.lowpriceList li .pri img {
    width: 20px;
}



/*===================================
golfList
==================================*/

.golfLabel dl {
    background: #fff;
    -webkit-box-shadow: 1px 1px 2px #ccc;
    box-shadow: 1px 1px 2px #ccc;
    padding: 10px;
}

.golfLabel > * > *:nth-of-type(1) dl {
    border-right: 4px solid #cbae5e;
}

.golfLabel > * > *:nth-of-type(2) dl {
    border-right: 4px solid #afafaf;
}

.golfLabel > * > *:nth-of-type(3) dl {
    border-right: 4px solid #f84445;
}

.golfLabel > * > *:nth-of-type(4) dl {
    border-right: 4px solid #43a1f7;
}

.golfLabel > * > *:nth-of-type(5) dl {
    border-right: 4px solid #4ba25d;
}

.golfLabel > * > *:nth-of-type(6) dl {
    border-right: 4px solid #f77575;
}

.golfLabel dt {
    width: 40px;
}

.golfLabel dd {
    width: calc(100% - 50px);
    font-size: 1.2rem;
}

.golfList .item {
    width: calc(100% / 7);
}

.golfList .item > * {
    display: block;
    position: relative;
}

.golfList .item .label {
    color: #fff;
    background: #008744;
    padding: 2px 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.golfList .item .tit {
    margin-top: 10px;
    text-decoration: underline;
}

.golfList .item .icon li {
    width: 25px;
    margin: 10px 10px 0 0;
}

.golfMore {
    display: none;
}

.golfMore > * {
    cursor: pointer;
}

@media (max-width: 1024px) {
    .golfList .item {
        width: calc(100% / 4);
    }
}

@media (max-width: 599px) {
    .golfList .item {
        width: calc(100% / 2);
    }
    
    .golfMore {
        display: block;
    }
}



/*===================================
pickupList
==================================*/

.pickupList .item {
    background: #fff;
    border: 2px solid #ececec;
    -webkit-box-shadow: 1px 1px 4px #eae8e8;
    box-shadow: 1px 1px 4px #eae8e8;
    padding: 20px;
}

.pickupList .item:not(:last-of-type) {
    margin-bottom: 20px;
}

.pickupList .item .left {
    width: 30%;
}

.pickupList .item .right {
    width: 65%;
}

.pickupList .item .right .tit {
    color: #24672e;
    font-size: 2.6rem;
    font-family: "Yu Mincho", serif;
    font-weight: bold;
    border-left: 5px solid #24672e;
    padding-left: 15px;
}

.pickupList .item .right .txt {
    border-top: 1px solid #ccc;
    line-height: 1.8;
    padding-top: 20px;
    margin-top: 20px;
}

.pickupList .round {
    margin-top: 20px;
}

.pickupList .round .label {
    width: 30%;
    color: #fff;
    font-size: 1.8rem;
    background-color: #008744;
    /*background: url(/import/tenant_2/www.impact-golf.jp/module/img/header/bg_dotted01.gif);*/
    padding: 10px;
}

.pickupList .round ul {
    width: 65%;
}

.pickupList .round li a {
    display: block;
    text-align: center;
}

.pickupList .round li .haku {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.pickupList .round li:not(:last-of-type) {
    border-right: 1px solid #ccc;
    padding-right: 20px;
    margin-right: 20px;
}

.pickupList .round li .pri {
    display: block;
    color: #d9392d;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: underline;
}

.pickupList .round li .pri img {
    width: 20px;
}

@media (max-width: 599px) {
    .pickupList .item .left {
        width: 100%;
    }

    .pickupList .item .right {
        width: 100%;
        margin-top: 20px;
    }

    .pickupList .item .right .tit {
        font-size: 1.8rem;
    }

    .pickupList .round .label {
        width: 100%;
        font-size: 1.6rem;
    }

    .pickupList .round ul {
        width: 100%;
        margin-top: 10px;
    }

    .pickupList .round li .haku {
        font-size: 1.6rem;
    }

    .pickupList .round li .pri {
        font-size: 1.4rem;
    }
}


/*===================================
tournamentList
==================================*/

.tournamentList .item {
    background: #fff;
    border: 2px solid #ececec;
    -webkit-box-shadow: 1px 1px 4px #eae8e8;
    box-shadow: 1px 1px 4px #eae8e8;
    padding: 20px;
}

.tournamentList .item:not(:last-of-type) {
    margin-bottom: 20px;
}

.tournamentList .item .left {
    width: 30%;
}

.tournamentList .item .right {
    width: 65%;
}

.tournamentList .item .right .tournament {
  background: #24672e;
  padding: 10px;
  color: #fff;
  margin-top: 10px;
}

.tournamentList .item .right .tit {
    color: #24672e;
    font-size: 2.6rem;
    font-family: "Yu Mincho", serif;
    font-weight: bold;
    border-left: 5px solid #24672e;
    padding-left: 15px;
    margin-top: 20px;
}

.tournamentList .item .right .txt {
    border-top: 1px solid #ccc;
    line-height: 1.8;
    padding-top: 20px;
    margin-top: 20px;
}

.tournamentList .item .right .campion {
   padding: 10px;
   border: 2px solid #24672e;
   display: flex;
   margin-top: 20px;
}

.tournamentList .item .right .campion:before {
  display: block;
  content: url('/upload/tenant_2/impact_cup.webp')
}

.tournamentList .round {
    margin-top: 20px;
}

.tournamentList .round .label {
    width: 30%;
    color: #fff;
    font-size: 1.8rem;
    background-color: #008744;
    /*background: url(/import/tenant_2/www.impact-golf.jp/module/img/header/bg_dotted01.gif);*/
    padding: 10px;
}

.tournamentList .round ul {
    width: 65%;
}

.tournamentList .round li a {
    display: block;
    text-align: center;
}

.tournamentList .round li .haku {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.tournamentList .round li:not(:last-of-type) {
    border-right: 1px solid #ccc;
    padding-right: 20px;
    margin-right: 20px;
}

.tournamentList .round li .pri {
    display: block;
    color: #d9392d;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: underline;
}

.tournamentList .round li .pri img {
    width: 20px;
}

@media (max-width: 599px) {
    .tournamentList .item .left {
        width: 100%;
    }

    .tournamentList .item .right {
        width: 100%;
        margin-top: 20px;
    }
    
    .tournamentList .item .right .term,
    .tournamentList .item .right .tournament {
      font-size: 1.2rem;
    }

    .tournamentList .item .right .tit {
        font-size: 1.8rem;
    }

    .tournamentList .round .label {
        width: 100%;
        font-size: 1.6rem;
    }

    .tournamentList .round ul {
        width: 100%;
        margin-top: 10px;
    }

    .tournamentList .round li .haku {
        font-size: 1.6rem;
    }

    .tournamentList .round li .pri {
        font-size: 1.4rem;
    }
}



/*===================================
localList
==================================*/

.localList .item {
    background: #fff;
    padding: 20px;
}

.localList .item:not(:last-of-type) {
    margin-bottom: 20px;
}

.localList .item:nth-of-type(n+2) > * {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.localList .item .tit01 {
    color: #658d08;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.localList .item .tit02 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.localList .item .left {
    width: 25%;
}

.localList .item .right {
    width: 70%;
}

.localList .item .right .txt {
    line-height: 2;
}

@media (max-width: 599px) {
    .localList .item .left {
        width: 100%;
    }

    .localList .item .right {
        width: 100%;
        margin-top: 15px;
    }
}



/*===================================
scheduleList
==================================*/

.scheduleList .item .left {
    width: 25%;
    position: relative;
}

.scheduleList .tit {
    font-weight: bold;
    font-size: 2rem;
    color: #658d08;
    margin: 30px;
}

.scheduleList .item:not(:last-of-type) .left {
    padding-bottom: 30px;
}

.scheduleList .item .left:before {
    display: block;
    content: '';
    width: 20px;
    height: 20px;
    background: #658d08;
    border-radius: 100%;
    position: absolute;
    top: 5px;
    right: 0;
}

.scheduleList .item .left:after {
    display: block;
    content: "";
    height: 100%;
    width: 5px;
    background: #658d08;
    position: absolute;
    bottom: 0;
    right: 7px;
}

.scheduleList .left .time {
    color: #658d08;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.scheduleList .item .right {
    width: 70%;
    background: #eff0eb;
    padding: 20px;
}

.scheduleList .item:not(:last-of-type) .right {
    margin-bottom: 30px;
}

.scheduleList .right .pic {
    width: 35%;
}

.scheduleList .right .tbox {
    width: 100%;
}

.scheduleList .right .pic + .tbox {
    width: 60%;
}

.scheduleList .right .tbox .tit {
    font-size: 1.8rem;
    font-weight: bold;
    border-bottom: #658d08 1px solid;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.scheduleList .right .tbox .txt {
    font-size: 1.6rem;
}

@media (max-width: 599px) {
    .scheduleList .item {
        padding-left: 30px;
        position: relative;
    }

    .scheduleList .item:before {
        display: block;
        content: '';
        width: 20px;
        height: 20px;
        background: #658d08;
        border-radius: 100%;
        position: absolute;
        top: 5px;
        left: 0;
    }

    .scheduleList .item:after {
        display: block;
        content: "";
        height: 100%;
        width: 5px;
        background: #658d08;
        position: absolute;
        bottom: 0;
        left: 7px;
    }

    .scheduleList .item .left {
        width: 100%;
        padding: 0 !important;
        margin-bottom: 20px;
    }

    .scheduleList .item .left:before, .scheduleList .item .left:after {
        display: none;
    }

    .scheduleList .left .time {
        text-align: left;
    }

    .scheduleList .item .right {
        width: 100%;
    }

    .scheduleList .right .pic {
        width: 100%;
    }

    .scheduleList .right .pic + .tbox {
        width: 100%;
        margin-top: 15px;
    }
}



/*===================================
domworldList
==================================*/

.domworldList .item {
    display: block;
}

.domworldList .item .pic {
    position: relative;
}

.domworldList .pic dl {
    width: 100%;
    color: #fff;
    background: rgb(0, 0, 0, 0.3);
    padding: 5px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.domworldList .pic dt {
    font-size: 2.8rem;
    font-weight: bold;
}

.domworldList .pic dd {
    font-size: 1.2rem;
}

@media (max-width: 599px) {
    .domworldList .pic dt {
        font-size: 2.0rem;
    }
}



/*===================================
recommendList
==================================*/

.recommendList .item {
    display: block;
}

.recommendList .item .pic {
    width: 100%;
}

.recommendList .item .info {
    width: 100%;
    margin-top: 20px;
}

.recommendList .info .label {
    display: inline-block;
    color: #fff;
    background: #2c6e9e;
    line-height: 1;
    padding: 2px 10px;
}

.recommendList .info .tit {
    font-weight: bold;
    margin-top: 10px;
    text-decoration: underline;
}

@media (max-width: 599px) {
    .recommendList .item .pic {
        width: 30%;
    }

    .recommendList .item .info {
        width: 65%;
        margin-top: 0;
    }
}



/*===================================
specialList
==================================*/

.specialList .item {
    display: block;
}

.specialList .item .label {
    display: inline-block;
    min-width: 90px;
    color: #fff;
    background: #2779de;
    padding: 5px;
    margin-top: 10px;
    text-align: center;
}

.specialList .item .label.myk {
    background: url(/import/tenant_2/www.impact-golf.jp/common/v3/img/miyako_ico.png) no-repeat center left 2px #2779de;
    background-size: 30%;
    padding: 5px 2px 5px 20px;
}

.specialList .item .label.ok {
    background: url(/import/tenant_2/www.impact-golf.jp/common/v3/img/oka_ico.png) no-repeat center left 2px #41aede;
    background-size: 30%;
    padding: 5px 2px 5px 20px;
}

.specialList .item .label.ky {
    background: url(/import/tenant_2/www.impact-golf.jp/common/v3/img/cy_ico.png) no-repeat center left 2px #e8ae18;
    background-size: 30%;
    padding: 5px 2px 5px 20px;
}

.specialList .item .label.sk {
    background: url(/import/tenant_2/www.impact-golf.jp/common/v3/img/sk_ico.png) no-repeat center left 2px #f57632;
    background-size: 30%;
    padding: 5px 2px 5px 20px;
}

.specialList .item .label.hk {
    background: url(/import/tenant_2/www.impact-golf.jp/common/v3/img/hkd_ico.png) no-repeat center left 2px #4eb30a;
    background-size: 30%;
    padding: 5px 2px 5px 20px;
}

.specialList .item .label.thai {
    background: #918ecd;
}

.specialList .item .label.gu {
    background: #48bce4;
}

.specialList .item .label.tw {
    background: #e44848;
}

.specialList .item .label.vn {
    background: #83c70c;
}

.specialList .item .tit {
    margin-top: 10px;
    /*text-decoration: underline;*/
}



/*===================================
areaList
==================================*/

.areaList .item {
    background: #fff;
    -webkit-box-shadow: 0px 2px 2px #d4d4d4;
    box-shadow: 0px 2px 2px #d4d4d4;
}

.areaList .item .pic {
    position: relative;
}

.areaList .item .pic .tit {
    width: 90%;
    color: #fff;
    font-size: 3.6rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 3px #5d5d5d;
    position: absolute !important;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.areaList .item .info {
    padding: 20px;
}

.areaList .info .btn a {
    display: block;
    color: #fff;
    font-size: 1.6rem;
    background-color: #383838;
    padding: 5px;
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 1024px) {
    .areaList .item .pic .tit {
        font-size: 2.8rem;
    }
}

@media (max-width: 599px) {
    .areaList .item .pic .tit {
        font-size: 2rem;
    }

    .areaList .item .info {
        padding: 10px;
    }

    .areaList .info .txt {
        font-size: 1.4rem;
    }

    .areaList .info .btn a {
        font-size: 1.4rem;
    }
}



/*===================================
purposeList
==================================*/

.purposeList .item {
    display: block;
    height: 100%;
}

.purposeList .item .pic {
    position: relative;
}

.purposeList .item .pic .tit {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    background: rgb(0, 0, 0, 0.3);
    padding: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.purposeList .item .txt {
    margin-top: 10px;
    text-decoration: underline;
}



/*===================================
placeList
==================================*/

.placeList .item .pic {
    position: relative;
}

.placeList .item .pic .num {
    color: #ffd200;
    font-size: 5rem;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 20px;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
}

.placeList .item .tit {
    color: #658d08;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    border-left: 4px solid #658d08;
    padding: 5px 0 5px 10px;
    margin: 15px 0;
}

.placeList .item .info {
    margin-top: 20px;
}

.placeList .item .info dl:not(:last-of-type) {
    border-bottom: 1px solid #f7f7f7;
}

.placeList .item .info dt {
    width: 80px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    background-color: #008744;
    padding: 10px;
    text-align: center;
}

.placeList .item .info dd {
    width: calc(100% - 80px);
    background: #fff;
    padding: 10px;
    text-align: right;
}

.placeList .item .info dd .txt {
    color: #d9392d;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: underline;
}

.placeList .item .info dd img {
    width: 20px;
    vertical-align: text-top;
}

.placeList-noBorder .item .tit {
    border-left: none;
    padding: 0;
}

.placeMore > * {
    cursor: pointer;
}

.placeMore > *:hover {
    opacity: 0.6;
}



/*===================================
arrangeList
==================================*/

.arrangeList {
    background: #fff;
    padding: 80px 40px 40px 40px;
    position: relative;
}

.arrangeList .hd {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.arrangeList .item {
    position: relative;
}

.arrangeList .item .img {
    max-width: 150px;
    background: #efefeb;
    border-radius: 100%;
    margin: auto;
    position: relative;
    cursor: pointer;
}

.arrangeList .item .icon:before {
    display: block;
    content: "";
    padding-top: 100%;
}

.arrangeList .item .icon img {
    width: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.arrangeList .item .num {
    color: #cfa93e;
    font-size: 5.6rem;
    font-weight: bold;
    font-family: "Crimson Text";
    position: absolute;
    top: 0;
    right: 5px;
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
}

.arrangeList .item .tit {
    color: #444;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

@media (max-width: 1024px) {
    .arrangeList {
        padding: 70px 30px 30px 30px;
    }

    .arrangeList .item .num {
        font-size: 5rem;
    }
}

@media (max-width: 599px) {
    .arrangeList {
        padding: 60px 20px 20px 20px;
    }

    .arrangeList .item .num {
        font-size: 4.4rem;
    }
}



/*===================================
mainimg
===================================*/

/* mainimg-type-01 */

[data-element-id] .mainimg-type-01 {
    height: auto;
}

.mainimg-type-01 {
    height: 450px;
    position: relative;
}

.mainimg-type-01 .img {
    width: 90%;
    max-width: 550px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

[data-element-id] .mainimg-type-01 .bg {
    position: static;
}

[data-element-id] .mainimg-type-01 .bg.show\@tb {
    width: 500px;
}

.mainimg-type-01 .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

@media (max-width: 1024px) {
    .mainimg-type-01 {
        height: 380px;
    }

    .mainimg-type-01 .bg img {
        font-family: "object-fit: cover; object-position: 0% 50%;";
        -o-object-position: 0% 50%;
        object-position: 0% 50%;
    }
}

@media (max-width: 599px) {
    .mainimg-type-01 {
        height: 270px;
    }
}



/* mainimg-type-02 */

[data-element-id] .mainimg-type-02 {
    background: #ccc;
}

.mainimg-type-02 {
    position: relative;
}

.mainimg-type-02 > * {
    position: relative;
    z-index: 5;
}

[data-element-id] .mainimg-type-02 .bg {
    position: static;
}

[data-element-id] .mainimg-type-02 .bg.show\@tb {
    width: 500px;
}

.mainimg-type-02 .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.mainimg-type-02 .left {
    width: 50%;
    color: #fff;
    text-align: center;
}

.mainimg-type-02 .left .ttl {
    font-size: 48px;
    font-family: "Rounded Mplus 1c";
    text-shadow: 1px 1px 3px #3e3e3e;
    margin-bottom: 10px;
}

.mainimg-type-02 .left .link a {
    background: rgb(72 61 139 / 60%);
    border-radius: 30px;
    padding: 20px 50px;
    display: block;
}

.mainimg-type-02 .left .link .tit {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.mainimg-type-02 .left .link .yen_parent {
    font-size: 32px;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.mainimg-type-02 .left .link > * .detail {
    margin-top: 10px;
}

.mainimg-type-02 .left .link > * .detail > * {
    width: 60%;
    border: 1px solid #fff;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
    padding: 10px;
    position: relative;
    z-index: 0;
}

.mainimg-type-02 .left .link > * .detail > *:before {
    content: '';
    width: 12px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: calc(50% - 5px);
    right: -35px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    z-index: 0;
}

.mainimg-type-02 .left .link > * .detail > *:after {
    content: '';
    width: 50px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: -35px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 0;
}

.mainimg-type-02 .right {
    width: 48%;
}

@media (max-width: 1024px) {
    .searchBox-type-02 {
        padding: 30px;
    }

    .mainimg-type-02 .left {
        width: 100%;
    }
    
    .mainimg-type-02 .left .ttl {
        font-size: 28px;
    }

    .mainimg-type-02 .left .link .tit {
        font-size: 25px;
    }
    
    .mainimg-type-02 .left .link .yen_parent {
        font-size: 25px;
    }
    
    .mainimg-type-02 .right {
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 599px) {
    .searchBox-type-02 {
        padding: 20px;
    }
}

.hvr-saiko {
    width: 100px;
    top: 10%;
    left: 20%;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.faq .title .sub {
  font-size: 140%;
  font-weight: bold;
}

.faqCont {
  overflow: hidden;
  border: 2px solid #3a77c7;
  width: 100%;
  margin: 20px auto;
  padding: 15px 10px;
  box-shadow: 2px 2px 2px #e4e4e4;
  background: #fff;
}
.faqCont dt {
  font-size: 120%;
  align-items: center;
  display: flex;
  border-left: 5px solid #3a77c7;
  padding-left: 10px;
  font-weight: bold;
}
.faqCont dt .question {
  font-size: 20px;
}
.faqCont dt .plus {
  background: #3a77c7;
  display: inline-block;
  color: #fff;
  padding: 10px 10px;
  flex: 0 0 46px;
  text-align: center;
  margin-left: auto;
  cursor: pointer;
}

.faqCont dt .plus:before {
  content: "+";
}

.faqCont dt.is-parent .plus:before {
  content: "-";
}

.faqCont dd {
  border-top: 1px dashed #ccc;
  margin-top: 15px;
  padding-top: 15px;
  color: #666;
  font-size: 110%;
  overflow: hidden;
  display: none;
}

@media (max-width: 599px) {
  .faqCont dt .question {
    font-size: 17px;
  }
  
  .faqCont dt .plus {
    padding: 10px 5px;
    border-radius: 4px;
    flex: 0 0 36px;
  }
}


.longBnr {
  margin: 0 auto;
  margin-bottom: 30px;
}

[data-element-id] .longBnr .pic.show\@tb {
    width: 500px;
}



/* 旅ゴルフ */
.tabBody {
  display: block;
}
[data-element-id] [class*=dep_] {
    display: block !important;
}
[class*="up-ofi"] {
    height: 100%;
}
[class*="up-ofi"] {
    position: relative;
    display: block;
    width: 100%;
}
[class*="up-ofi"] img {
    width: 100%;
    height: 100%!important;
    font-family: "object-fit: cover; object-position: 50% 50%;";
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}
.up-ofi-65:after {
    content: "";
    display: block;
    padding-top: 65%;
}
@media (max-width: 1024px){
.reader-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 3em;
}
}
.df--aic {
    align-items: center;
}
.up-ai-fe {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.up-jc-sb {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.up-fxw-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.up-d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.up-fxsh-0 {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
