@charset "UTF-8";
/* CSS Document */

.content img {
image-rendering: -webkit-optimize-contrast;
    width: auto;
    height: auto;
    vertical-align: middle;
}

.Main__dept {
    background-color: #EF5D45;
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
    padding: 5px 20px;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 78%;
    transform: translateX(-50%);
}
/* タイトル */
.main__visual {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/*
.main__visual h1 {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
*/
/*
.main__visual {
  margin: 0 auto;
}
.mv {
    object-fit: contain;
    height: 600px;
}
*/
.Common21__inner {
    width: 1024px;
    margin: 0 auto;
}
.seo {
    margin: 60px 0;
}
.seo p {
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.1em;
}

h2 {
    display: block;
    margin: 0 auto;
    padding-bottom: 60px;
    text-align: center;
}

/*おすすめツアー*/
.Tour_box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
}
.tour:hover {
    opacity: 0.7;
    transition: all 0.3s;
}
.Tour_box > li.tour {
    width: 235px;
    margin-right: 28px;
    margin-bottom: 30px;
    border: 1px #CECECE solid;
    border-radius: 6px;
    position: relative;
    background: #fff;
    overflow: hidden;
}
.Tour_box > li.tour:nth-child(4n) {
    margin-right: 0!important;
}
.Tour_box img {
    width: 235px;
    height: 168px;
}
ul.Tour_box > li.tour dd.point {
    margin: 10px 10px 0;
    background: #ffffff;
    border: 1px #21BEC7 solid;
    color: #21BEC7;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    padding: 2px 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
ul.Tour_box > li.tour dd.icon_wrap {
    white-space: normal;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 7px 10px 0;
}
ul.Tour_box > li.tour dd.icon_wrap > .icon {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 5px;
    color: #21BEC7;
    border: #21BEC7 solid 1px;
    text-align: center;
    width: 48%;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.Tour_box > li.tour dt.ttl {
    font-size: 14px;
    color: #000;
    text-align: left;
    font-weight: 600;
    line-height: 1.3;
    padding: 10px 10px 10px;
    letter-spacing: 0.05em;
}
ul.Tour_box > li.tour dd.txt {
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    padding: 0 10px 50px;
}
ul.Tour_box > li.tour dd.price {
    color: #EF5D45;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    padding: 0 10px 10px;
    position: absolute;
    bottom: 0;
    right: 0;
}

/*出発地から探す*/
.box__heading {
    margin: 50px 0 60px;
}
.box__heading h2 {
    padding-bottom:  10px!important;
}
.area-btn__block {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    height: 223px;
    align-content: space-between;
    width: 1024px;
    margin: 30px auto 0;
}

.area-btn__item {
	flex-basis: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.area-btn__link {
    position: relative;
    background: #2FBEC6;
    border: 1px #2FBEC6 solid;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    padding: 15px;
	text-align: center;
    width: 100%;
}

.area-btn__link:hover {
    background: #ffffff;
    border: 1px #2FBEC6 solid;
    color: #2FBEC6;
    transition: all 0.3s;
}

/*アンカー*/
.anchor-list {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin: 30px 0 70px 0;
    z-index: 1;
}
.anchor-list a:hover {
    transition: all 0.3s;
}
.anchor__items {
    width: 512px;
    background-color: #21BEC7;
    border: 1px solid #21BEC7;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 18px 0;
}

.anchor01 {
    border-radius: 4px 0 0 4px;
    position: relative;
}
.anchor02 {
    border-radius: 0 4px 4px 0;
    position: relative;
}
.anchor01::after {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 40%;
    right: 2rem;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translateX(-50%) rotate(135deg);
}
.anchor01:hover::after {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 40%;
    right: 2rem;
    border-top: 2px solid #21BEC7;
    border-right: 2px solid #21BEC7;
    transform: translateX(-50%) rotate(135deg);
    transition: all 0.3s;
}
.anchor02::after {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 40%;
    right: 2rem;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translateX(-50%) rotate(135deg);
}
.anchor02:hover::after {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 40%;
    right: 2rem;
    border-top: 2px solid #21BEC7;
    border-right: 2px solid #21BEC7;
    transform: translateX(-50%) rotate(135deg);
    transition: all 0.3s;
}
.anchor01::before {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    background-color: #FFFFFF;
    position: absolute;
    top: calc(50% - 15px);
    right: -1px;
}
.anchor__items:hover{
    background: #ffffff;
    border: 1px #21BEC7 solid;
    color: #21BEC7;
    transition: all 0.3s;
}
.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 10;
}
.gnavi__list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
    background-color: #FFFFFF;
    border-bottom: 1px solid #21BEC7;
    border-right: 1px solid #21BEC7;
    border-left: 1px solid #21BEC7;
    font-size: 16px;
    padding: 10px;
    transition: all .3s;
    position: relative;
}
/*
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #21BEC7;
    position: absolute;
    top: 0;
    left: 0;
}
*/
.dropdown__list:hover {
    background-color: #21BEC7;
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    text-decoration: none;
    position: relative;
}
.dropdown__list a:hover {
    color: #FFFFFF;
}
.dropdown__list a::before {
    content: '';
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 40%;
    right: 2rem;
    border-top: 2px solid #21BEC7;
    border-right: 2px solid #21BEC7;
    transform: translateY(-50%) rotate(45deg);
}
.dropdown__list a:hover::before {
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

#area01 {
    position: relative;
    background-image: url(/attending/family/kokunai/images/pink.png);
    padding: 60px 0 70px;
    z-index: 1;
}
#area01::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
   top: 0;
    left: 0;
    background: url(/attending/family/kokunai/images/white.png) no-repeat center top;
    background-size: 100%;
    z-index: -1;
}
.Tour__wrapper {
    display: flex;
    justify-content: space-between;
}
.wrapper__top .Spot {
    width: 491px!important;
    margin-bottom: 30px;
}
.Spot {
    width: 325px;
    border: 1px #CECECE solid;
    border-radius: 6px;
    position: relative;
    background: #fff;
    overflow: hidden;
}
.Spot .pht {
    height: 260px;
    overflow: hidden;
}
.Spot img{
    width: auto;
    height: 260px;
}
.Spot .subttl img {
    width: 50px;
    height: auto;
    margin: 0 10px 0 0;
}
.Spot .subttl img.s {
    width: 50px;
    height: auto;
    margin: 0 10px 2px 0;
}
.wrapper__top img {
    width: 489px!important;
    height: auto!important;
}
.wrapper__top .subttl img {
    width: 50px!important;
    height: auto!important;
    margin: 0 10px 0 0;
}
.Spot dl {
    padding: 15px;
    margin-bottom: 85px;
}
.Spot dt.subttl {
    text-align: left;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    line-height: 1.3;
    padding: 5px 0 15px;
    letter-spacing: 0.08em;
    border-bottom: 2px dotted #000000;
}
.Spot dd.txt {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.07em;
    margin: 20px 0;
}
.Spot dd.txt_01{
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.07em;
    margin: 15px 0 30px;
}
.Spot dt.icon {
    color: #000000;
    text-align: center;
    width: 180px;
    font-size: 13px;
    padding: 5px 30px;
    border: 1px solid #000000;
    border-radius: 20px;
    font-size: 500;
}
.Tour__wrapper .link__wrap{
    color: #21BEC7;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #21BEC7;
    position: absolute;
    right: 25px;
    bottom: 76px;
}
.link__wrap a:hover {
    opacity: 0.7;
    transition: all 0.3s;
}
.link {
    display: block;
    position: relative;
}
.link::after {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 50%;
    right: -10px;
    border-top: 2px solid #21BEC7;
    border-right: 2px solid #21BEC7;
    transform: translateY(-50%) rotate(45deg);
}
.btn__flex {
    display: flex;
    justify-content: space-between;
    margin: 0 15px;
    position: absolute;
    bottom: 15px;
}
.search__btn01 {
    background-color: #EF5D45;
    border: 1px solid #EF5D45;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 4px;
    position: relative;
    margin-right: 10px;
}
.search__btn01:hover{
    background-color: #FFFFFF;
    color: #EF5D45;
    border: 1px solid #EF5D45;
    transition: all 0.3s;
}
.search__btn01::after {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 50%;
    right: 1.3rem;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translateY(-50%) rotate(45deg);
}
.search__btn01:hover::after {
    border-top: 2px solid #EF5D45;
    border-right: 2px solid #EF5D45;
    transition: all 0.3s;
}
.search__btn02 {
    background-color: #FFFFFF;
    color: #EF5D45;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 13px 30px;
    border-radius: 4px;
    border: 1px solid #EF5D45;
    position: relative;
}
.search__btn02:hover{
    background-color: #EF5D45;
    border: 1px solid #EF5D45;
    color: #FFFFFF;
    transition: all 0.3s;
}
.search__btn02::after {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 50%;
    right: 1.3rem;
    border-top: 2px solid #EF5D45;
    border-right: 2px solid #EF5D45;
    transform: translateY(-50%) rotate(45deg);
}
.search__btn02:hover::after {
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transition: all 0.3s;
}
.search__btn03 {
    display: block;
    width: 460px;;
    margin: 0 15px;
    background-color: #EF5D45;
    border: 1px solid #EF5D45;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.06em;
    padding: 13px 30px;
    border-radius: 4px;
    position: relative;
}
.search__btn03::after {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 50%;
    right: 1.3rem;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translateY(-50%) rotate(45deg);
}
.search__btn03:hover{
    background-color: #FFFFFF;
    color: #EF5D45;
    border: 1px solid #EF5D45;
    transition: all 0.3s;
}
.search__btn03:hover::after {
    border-top: 2px solid #EF5D45;
    border-right: 2px solid #EF5D45;
    transition: all 0.3s;
}
.btn {
    position: absolute;
    bottom: 15px;
}
.search__btn {
    display: block;
    width: 295px;;
    margin: 0 15px;
    background-color: #EF5D45;
    border: 1px solid #EF5D45;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.06em;
    padding: 13px 30px;
    border-radius: 4px;
    position: relative;
}
.search__btn:hover{
    background-color: #FFFFFF;
    color: #EF5D45;
    border: 1px solid #EF5D45;
    transition: all 0.3s;
}
.search__btn::after {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 50%;
    right: 1.3rem;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translateY(-50%) rotate(45deg);
}
.search__btn:hover::after {
    border-top: 2px solid #EF5D45;
    border-right: 2px solid #EF5D45;
    transition: all 0.3s;
}
#area01 .Spot .pht {
    height: 240px;
}
#area01 .Spot dt.subttl {
    padding: 0 0 10px;
}
#area01 .Spot dt.subttl span {
    vertical-align: bottom;
}
#area01 .Spot dd.txt {
    margin: 15px 0;
}
#area01 .Spot dd.txt_01 {
    margin: 10px 0 20px;
}
#area01 .Spot dl {
    margin-bottom: 75px;
}
#area02 {
    position: relative;
    background-image: url(/attending/family/kokunai/images/yellow.png);
    padding: 60px 0 70px;
    z-index: 1;
}
#area02::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
   top: 0;
    left: 0;
    background: url(/attending/family/kokunai/images/pink_top.png) no-repeat center top;
    background-size: 100%;
    z-index: -1;
}
.Tour_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.Tour_wrapper dl {
    margin-bottom: 50px;
}
.pin {
    color: #21BEC7;
    font-size: 14px;
    font-weight: 600;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative
}
.pin:after {
    content: "";
    width: 17px;
    height: 23px;
    background: url(/attending/family/kokunai/images/pin.png) no-repeat 0 0;
    position: absolute;
    left: 0;
    top: -1px;
}

.LS03 {
    letter-spacing: 0!important;
}
#area03 {
    position: relative;
    background-image: url(/attending/family/kokunai/images/green.png);
    padding: 60px 0 70px;
    z-index: 1;
}
#area03::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
   top: 0;
    left: 0;
    background: url(/attending/family/kokunai/images/yellow_top.png) no-repeat center top;
    background-size: 100%;
    z-index: -1;
}
.access {
    background-color: #F7F4EB;
    padding: 10px;
    margin-top: 20px;
}
.access__ttl {
    color: #21BEC7;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding-left: 12px;
    position: relative;
}
.access__ttl {
    margin-bottom: 0!important;
}
.access__ttl::after {
    content: "";
    display: block;
    width: 5px;
    height: 15px;
    background-color: #21BEC7;
    position: absolute;
    top: 3px;
    left: 0;
}
.access__txt {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.07em;
    margin-top: 5px;
}
.Spot__access dl:nth-child(2) {
  margin-bottom: 20px!important;
}
.credit {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    top: 237px;
    right: 5px;
}
#area03 .pht {
    height: 243px!important;
}
#area03 .pht img {
    height: 243px!important;
}
#area04 {
    position: relative;
    background-image: url(/attending/family/kokunai/images/blue.png);
    padding: 60px 0 70px;
    z-index: 1;
}
#area04::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
   top: 0;
    left: 0;
    background: url(/attending/family/kokunai/images/green_top.png) no-repeat center top;
    background-size: 100%;
    z-index: -1;
}
.mb30 {
    margin-bottom: 30px;
}
#area04 .Spot .pht {
    height: 240px;
    overflow: hidden;
}
#area04 .Spot .pht img {
    height: 243px;
}
#area04 .Spot dt.subttl {
    padding: 0 0 10px;
}
#area04 .Spot dd.txt {
    margin: 10px 0 0;
}
#area04 .Spot dd.txt_01 {
    margin: 10px 0 20px;
}
#area04 .Spot dl {
    padding-top: 10px;
}
/*
#area04 .Spot img {
    width: auto;
    height: 240px;
    overflow: hidden;
}
*/
#area04 .Tour_wrapper dl {
    margin-bottom: 45px;
}
#area04 .access {
    margin-top: 10px;
}
#area05 {
    position: relative;
    background-image: url(/attending/family/kokunai/images/yellow.png);
    padding: 60px 0 70px;
    z-index: 1;
}
#area05::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
   top: 0;
    left: 0;
    background: url(/attending/family/kokunai/images/blue_top.png) no-repeat center top;
    background-size: 100%;
    z-index: -1;
}
.season_tab {
    width: 670px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 40px;
}
.tab1 {
    background: url(/attending/family/kokunai/images/btn_spring_on.png) no-repeat;
    background-position: center;
}
.tab1:hover,
.tab2:hover,
.tab3:hover,
.tab4:hover {
	background-color: transparent; /* IE6対応 */
    transition: all 0.3s;
}
.tab1:hover img,
.tab2:hover img,
.tab3:hover img,
.tab4:hover img {
    visibility: hidden;
}
.tab1, .tab2, .tab3, .tab4 {
    cursor: pointer;
}
.tab2 {
    background: url(/attending/family/kokunai/images/btn_summer_on.png) no-repeat;
    background-position: center;
}
.tab3 {
    background: url(/attending/family/kokunai/images/btn_autumn_on.png) no-repeat;
    background-position: center;
}
.tab4 {
    background: url(/attending/family/kokunai/images/btn_winter_on.png) no-repeat;
    background-position: center;
}
.current img {
    visibility: hidden;
}
#area05 .Spot .pht {
    height: 240px;
}
#area05 .Spot dt.subttl {
    padding: 0 0 10px;
}
#area05 .Spot dd.txt {
    margin: 10px 0 0;
}
#area05 .Spot dd.txt_01 {
    margin: 10px 0 20px;
}
#area05 .Spot dl {
    padding-top: 10px;
}
#area05 .Tour_wrapper dl {
    margin-bottom: 45px;
}
#area05 .access {
    margin-top: 10px;
}
#area06 {
    position: relative;
    background-image: url(/attending/family/kokunai/images/green.png);
    padding: 60px 0 110px;
    z-index: 1;
}
#area06::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
   top: 0;
    left: 0;
    background: url(/attending/family/kokunai/images/yellow_top.png) no-repeat center top;
    background-size: 100%;
    z-index: -1;
}
#area06::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
   bottom: -3px;
    left: 0;
    background: url(/attending/family/kokunai/images/white_bottom.png) no-repeat center bottom;
    background-size: 100%;
    z-index: -1;
}
#area07 {
    background-color: #ffffff;
    position: relative;
    padding: 20px 0 70px;
}
.Search__form {
    border: 1px solid #C3C3C3;
}
#area08 {
    position: relative;
    background-image: url(/attending/family/kokunai/images/pink.png);
    padding: 60px 0 70px;
    z-index: 1;
}
#area08::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
   top: 0;
    left: 0;
    background: url(/attending/family/kokunai/images/white.png) no-repeat center top;
    background-size: 100%;
    z-index: -1;
}
.wrap_point {
    width: 850px;
    margin: 0 auto;
    position: relative;
    border-bottom: 1px solid #333333;
    padding: 20px 0;
}
.wrap_point::after{
    content: "";
    width: 57px;
    height: 52px;
    position: absolute;
   top: 20px;
    left: 0;
    background: url(/attending/family/kokunai/images/deco_01.png) no-repeat center top;
    background-size: 100%;
}
.point_cts {
    padding-left: 70px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.07em;
    line-height: 1.6;
}
.point_cts span {
    background: linear-gradient(transparent 50%, #C2F9FC 50%);
}
#area09 {
    position: relative;
    background-image: url(/attending/family/kokunai/images/blue.png);
    padding: 60px 0 70px;
    z-index: 1;
}
#area09::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
   top: 0;
    left: 0;
    background: url(/attending/family/kokunai/images/pink_top.png) no-repeat center top;
    background-size: 100%;
    z-index: -1;
}
.wrap_faq_list {
    background: #fff;
    border-radius: 6px;
    margin-bottom: 20px;
}
.qa__list {
    margin-bottom: 20px;
    background-color: #FFFFFF;
    border-radius: 6px;
}
.qa__list:last-of-type {
    margin-bottom: 0;
}
.qa__list dt {
  position: relative;
    font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  cursor: pointer;
    color: #000000;
}
.qa__list dt span {
    display: inline-block;
    align-items: center;
    color: #21BEC7;
    font-size: 30px;
    font-weight: 600;
    margin-right: 25px;
    vertical-align: -4px;

}
.qa__list dt::before,
.qa__list dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  background-color: #000;
  width: 12px;
  height: 2px;
  transform: translateY(-50%);
  z-index: 10;
}

.qa__list dt:after {
    transform: translateY(-50%);
}

.qa__list dt:before {
    transform: translateY(-50%) rotate(90deg);
}

.qa__list dt.faq_open:before {
    transform: translateY(-50%);
}
/*
.qa__title .qa_open ::before {
	display: none;
}
*/
.qa__list dd {
    display: none;
  padding: 0 40px 20px 20px;
}
.qa__list dd .qa_contents--txt {
    display: flex;
    justify-content: flex-start;
}
.qa__list dd .qa_contents--txt .icon {
    display: inline-block;
    align-items: center;
    color: #21BEC7;
    font-size: 30px;
    font-weight: 600;
    vertical-align: -4px;
}
.qa__list dd .aTxt {
    padding-left: 25px;
    font-size: 16px;
    letter-spacing: 0.07em;
}
.qa__link {
    font-weight: 600;
    color: #21BEC7!important;
    padding-bottom: 5px;
    border-bottom: 1px solid #21BEC7;
}
.qa__link:hover {
    opacity: 0.7;
    transition: all 0.3s;
}
.faq_open {
    border-radius: 6px 6px 0 0!important;
}
#area10 {
    position: relative;
    padding: 60px 0 70px;
}
#area10::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
   top: 0;
    left: 0;
    background: url(/attending/family/kokunai/images/blue_top.png) no-repeat center top;
    background-size: 100%;
    z-index: -1;
}
.info__wrap {
    display: flex;
    justify-content: space-between;
    width: 840px;
    margin: 0 auto;
}
.info_box {
    width: 390px;
}
.info_cts {
    display: block;
    width: 390px;
    height: 154px;
    border: 2px solid #000000;
    border-radius: 6px;
    position: relative;
}
.info_cts:hover {
    background-color: #EAFEFF;
    transition: all 0.3s;
}
.info_cts img {
    position: absolute;
    top: 20px;
    left: calc(50% - 40px);
}
.info_cts p {
    font-size: 16px;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: #000000;
    display: block;
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 390px;
}
.info_cts::after {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 50%;
    right: 1.3rem;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
    transform: translateY(-50%) rotate(45deg);
}
.info__txt {
    text-align: center;
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #000000;
    margin-top: 15px;
}

/*ブログ*/
#area11 {
    padding: 30px 0 70px;
}
#area12 {
    padding: 30px 0 70px;
}
.blog_box_parrent {
	position: relative;
    background-color: #fff;
    width: calc(98% / 2);
}
.blog_box_parrent a{
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.blog_box_parrent:hover{
	opacity:0.5;
	transition: all 0.3s;
}
.tabiBlog {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.tabiBlogTmp {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
}

.tabiBlogTmp .photo {
    overflow: hidden;
    width: 180px;
    height: 120px;
    margin-right: 15px;
}

.tabiBlogTmp .text {
    position: relative;
    width: calc(100% - 205px);
}

.tabiBlogTmp .photo img {
    width: 100%;
}

.blog_flex {
    display: flex;
    flex-wrap: wrap;
    width: 290px;;
}
.date_flex {
    display: flex;
    justify-content: space-between;
}
.tabiBlogTmp .ttl,
.tabiBlogTmp .pref,
.tabiBlogTmp .day {
}

.tabiBlogTmp .ttl {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

.tabiBlogTmp .pref {
    font-size: 14px;
    text-align: center;
    color: #FFFFFF;
    font-weight: 600;
    background-color: #21BEC7;
    padding: 5px 20px;
    margin-bottom: 20px;
    margin-right: 15px;
}

.tabiBlogTmp .day {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.07em;
    color: #333;
    padding-top: 3px;
}

.tabiBlogTmp::after {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 50%;
    right: 5px;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
    transform: translateY(-50%) rotate(45deg);
}
.blog-btn-wrap{
    margin-top: 30px;
    text-align: center;
    background: url("/attending/family/kokunai/images/btn_blog_02.png") no-repeat;
    background-position: center;
}
.blog-btn-wrap a {
    display: inline-block;
}

.blog-btn-wrap a:hover {
	background-color: transparent; /* IE6対応 */
}
.blog-btn-wrap a:hover img {
    visibility: hidden;
}

/*-----------------おすすめ特集-----------------*/
.swiper-container-horizontal > .swiper-scrollbar {
	left: 0 !important;
	width: 100% !important;
	height: 8px !important;
}

.common_recommend_wapper {
	margin-top: 50px;
}

#SlideBanner {
	width: 974px;
}

.swiper-wrapper {
	margin-bottom: 25px;
}

.bannerCassette_content {
	width: 100%;
}

.bannerCassette_content p {
	padding-top: 10px;
	font-size: 16px;
	line-height: 1.3;
}

.bannerCassette_content p.bannerImg {
	width: 219px;
	height: auto;
}

.bannerCassette_content img {
	width: 100%;
	height: auto;
	max-width:100%;
	max-height:100%; 
}

.swiper-banner-container {
	position: relative;
	width: 1024px;
	height: auto;
	margin: 0 auto;
	overflow: hidden;
}

.swiper-banner-container .swiper-slide a{
	display:block;
}

.swiper-banner-container .swiper-slide a:hover{
	opacity:0.7;
	transition-duration: 0.3s;
	text-decoration: underline;
	color:#4c4c4c;
}

.swiper-button-prev, .swiper-button-next {
    width: 44px !important;
    height: 44px !important;
    background-size: 44px 44px !important;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
	display: none;
}

/* 次ページボタンのスタイル */
.swiper-button-next {
	background-image: url(/attending/family/kokunai/images/arrow.png) !important;
}
/* 前ページボタンのスタイル */
.swiper-button-prev {
	background-image: url(/attending/family/kokunai/images/arrow.png) !important;
	transform: scale(-1, 1); /* 左右反転 */
}
.mb35 dl {
    margin-bottom: 6px!important;
}

.group-btn_2row .Spot {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.group-btn_2row .Tour_wrapper .Spot dl {
    margin-bottom: 0;
    padding: 15px 15px 0;
}

.group-btn_2row .Spot .btn {
    position: inherit;
    bottom: 0;
    margin-top: auto;
}

.group-btn_2row .Spot .btn:not(:last-child) {
    margin-bottom: 15px;
}

#PageName {
	width: 1024px;
    margin: 10px auto;
    font-weight: bold;
}

/* start_Common21__fill-btn */
.Common21__fill-btn-wrap.link_btn {
  width: 450px;
  margin: 0 auto;
}

.Common21__fill-btn-wrap.link_btn .Common21__fill-btn {
  display: inline-block;
  position: relative;
  padding: 30px 100px 30px 75px;
  color: white;
  font-weight: 600;
  background: #4585ef;
  border-radius: 4px;
  transition: color 0.3s, box-shadow 0.3s, background-color 0.3s;
  margin-top: 30px;
}

.Common21__fill-btn-wrap.link_btn .Common21__fill-btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 16px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
}

.Common21__fill-btn-wrap.link_btn .Common21__fill-btn:hover {
  color: #4585ef;
  background-color: white;
  box-shadow: 0px 0px 0px 1px #4585ef inset;
}

.Common21__fill-btn-wrap.link_btn .Common21__fill-btn:hover::after {
  border-color: #4585ef;
}
/* end_Common21__fill-btn */

#area02 .Common21__fill-btn-wrap{
    margin-top: 30px;
    text-align: center;
    background: url("/attending/family/kokunai/images/btn_hotspring_02.png") no-repeat;
    background-position: center;
}

#area02 .Common21__fill-btn-wrap a {
    display: inline-block;
}

#area02 .Common21__fill-btn-wrap a:hover {
	background-color: transparent; /* IE6対応 */
}

#area02 .Common21__fill-btn-wrap a:hover img {
    visibility: hidden;
}

.Common21__fill-btn-wrap.link_btn a:hover {
	opacity: 0.7;
}