@charset "UTF-8";
/*@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@800&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* CSS Document */

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", YuGothic, "游ゴシック体", "Yu Gothic Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.64;
	color: #353535;
    text-align: center;
}

#container {
    background: #fff;
    max-width: 1750px;
    margin: 0 auto;
}

.ro {
    transition: all 0.25s ease-out;
}

.ro:hover {
    transition: all 0.25s ease-out;
    opacity: .7;
    cursor: pointer;
}

.innerWrap {
    margin: 0 auto;
}

.pcCont {
    display: block;
}

.spCont {
    display: none;
}

@media only screen and (max-width: 767px) {
    .pcCont {
        display: none;
    }
    .spCont {
        display: block;
    }
}

.eg {
    font-family: 'Barlow Condensed', sans-serif;
}
#breadcrumbs {
    color:#333;
    text-align: left;
    margin: 0 auto;
    padding: 12px 0 12px 30px;
    font-size: 12px;
    background-color:#f2f2f2;
}
#breadcrumbs a{
    color:#4e4e4e;
    text-decoration: none;
}
#breadcrumbs ul{
    display: flex;
}
#breadcrumbs li{
    margin-right:15px;
}
#breadcrumbs li:not(:first-child):before {
    content: ">";
    margin-right: 8px;
}
@media screen and (max-width:767px) {
    #breadcrumbs {
        max-width:auto;
        margin: 0 auto;
        padding: 9px 15px;
 
        overflow-x: scroll;
        word-break: keep-all;
        white-space: nowrap;
         -webkit-overflow-scrolling: touch;
    }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■header
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

header {
    display: flex;
    align-items: center;
    background-color: #cc0000;
    padding:0 30px;
    height:80px;
    position:relative;
}

header img {
    width: 103px;
    height: 23px;
}

header h1 {
    position:absolute;
    right:30px;
    width:calc(100% - 60px - 500px);
    font-size: 1.4rem;
    color: #fff;
    text-align:right;
}

header h2{
    margin: 0 40px 0 64px;
    padding: 0;
    color:#fff;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
header h2 big{
    font-size: 24px;
    margin-right: 24px;
}
header select {
    width: auto;
    height: 44px;
    appearance: none;
    padding-right: 20px;
    background: url(../../../wp-content/themes/jumbotours/assets/img/header_select_white.svg) no-repeat right 16px center #000;
    background-size: 10px 12px;
    color: #fff;
    border: 0;
    border-radius: 36px;
    box-sizing: border-box;
    padding: 0 36px 0 24px;
    margin: 0;
    box-shadow: none;
    font-size: 18px;
    font-weight: normal;
    outline: none;
}

@media screen and (max-width:767px) {
    header {
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        background: #DBDBDB;
        height: auto;
    }
    header .logo {
        position: relative;
        right:auto;
        order: 2;
        width: 100%;
        height: 56px;
        margin: 0;
        padding: 0 0 0 16px;
        background: #BF0101;
        text-align: left;
        display: flex;
        align-items: center;
    }
    header img {
        width: 70px;
        height: auto;
    }
    header h1{
        font-size:1.3rem;
        width:auto;
        top:10px;
        right:16px;
		line-height: 1.5;
    }
    header h2 {
        order: 3;
        margin: 0;
        padding: 0 15px;
        font-size: 12px;
        font-weight: bold;
        display: flex;
        align-items: center;
        color:#333;
    }
    header h2 big{
        font-size: 17px;
        margin-right: 0;
    }
    header .departure {
        order: 4;
        flex: 1;
        margin: 0;
        padding: 8px 0;
        text-align: left;
        /*color:#333;*/
    }
    header select{
        width: auto;
        height: 38px;
        padding-right: 20px;
        /*background: url(../../../wp-content/themes/jumbotours/assets/img/header_select_black.svg) no-repeat right 16px center #fff;*/
		background-position: right 16px center;
        background-size: 10px 12px;
        /*color: #000;*/
        border: 0;
        padding: 0 36px 0 24px;
        margin: 0;
        box-shadow: 0;
        font-size: 16px;
        font-weight: bold;
    
    }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■header tab
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#tab {
    background-color: #f2f2f2;
    border-bottom: 4px solid #cc0000;
    padding: 20px 0 0 0;
}

#tab ul {
    display: flex;
    justify-content: center;
}

#tab li {
    box-sizing: border-box;
    text-align: center;
    background-color: #e9e9e9;
    border-radius: 3px 3px 0 0;
    margin: 0 5px;
    border: 1px solid #b9b9b9;
    border-bottom: none;
}

#tab li.active {
    background-color: #cc0000;
    border: none;
}

#tab li a {
    display: block;
    width: 170px;
    padding: 7px 0;
    color: #000;
    text-decoration: none;
}

#tab li.active a {
    color: #fff;
}

#tab li a:hover {
    opacity: 0.7;
}

@media screen and (max-width:767px) {
    #tab {
        padding-top: 10px;
    }
    #tab li {
        width: 30%;
        font-size: 1.2rem;
    }
    #tab li a {
        width: 100%;
    }
}

#topics {
    overflow: hidden;
    width: 100%;
    background-color: #c00;
}

#topics ul {
    display: inline-block;
    white-space: nowrap;
    animation: flowing 50s linear infinite;
    transform: translateX(0);
    padding: 10px 0 4px;
}

#topics ul li {
    display: inline;
    margin: 0 50px 0 0;
}

@keyframes flowing {
    100% {
        transform: translateX(-100%)
    }
}

@media screen and (max-width:767px) {
    #topics {
        overflow: hidden;
        width: 100%;
        background-color: #c00;
    }
    #topics ul {
        padding: 8px 0 3px;
        margin-left: 20px;
    }
    #topics ul li {
        margin-right: 25px;
    }
    #topics ul li img {
        width: 680px;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■tokuten_cont
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#tokuten_cont {
    text-align: center;
    margin: 0 0 100px 0;
    display: none;
}

#tokuten_cont h2 {
    background: url(../img/tokuten_hd_bg.png) no-repeat left top;
    width: 704px;
    height: 174px;
    padding: 50px 0 0 0;
    font-size: 3.8rem;
    font-weight: bold;
    line-height: 1.41;
    letter-spacing: 0.06em;
    margin: 0 auto 30px auto;
    z-index: 99;
    position: relative;
}

#tokuten_cont h2::before {
    background: url(../img/tokuten_sub.png) no-repeat left top;
    content: '';
    position: absolute;
    left: -220px;
    top: 0;
    width: 173px;
    height: 178px;
}

#tokuten_cont h2 strong {
    color: #ff6600;
    font-weight: bold;
}

#tokuten_cont h2 span {
    display: block;
    font-size: 2.5rem;
}

#tokuten_cont p.tokuten_txt {
    font-size: 1.7rem;
    padding: 0 25px;
    margin: 0 0 40px 0;
    z-index: 99;
    position: relative;
}

#tokuten_cont .tokutenWrap {
    position: relative;
    z-index: 0;
    transform: skew(0deg, -6deg);
}

#tokuten_cont .tokuten01 {
    background-color: #e5f7ff;
    padding: 0 0 93px 0;
}

#tokuten_cont .tokuten02 {
    background-color: #fffde5;
}

#tokuten_cont .innerWrap {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    text-align: left;
    transform: skew(0deg, 6deg);
    padding: 0 20px;
    box-sizing: content-box;
}

#tokuten_cont .tokuten01 .innerWrap {
    max-width: 1180px;
    flex-flow: row-reverse;
}

#tokuten_cont .tokuten02 .innerWrap {
    max-width: 1040px;
}

#tokuten_cont .tokuten01::after {
    content: "";
    background-color: #b5e9ff;
    width: 100%;
    height: 145px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

#tokuten_cont .innerWrap .txt {
    position: relative;
    padding: 150px 0 0 0;
}

#tokuten_cont .tokuten02 .innerWrap .txt {
    margin-top: -76px;
}

#tokuten_cont .innerWrap .txt:before {
    content: "";
    width: 315px;
    height: 113px;
    position: absolute;
    left: -32px;
    top: 0;
}

#tokuten_cont .tokuten01 .innerWrap .txt:before {
    background: url(../img/tokuten_01p.png) no-repeat left top;
}

#tokuten_cont .tokuten02 .innerWrap .txt:before {
    background: url(../img/tokuten_02p.png) no-repeat left top;
}

#tokuten_cont .innerWrap h3 {
    color: #0048b0;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 14px;
}

#tokuten_cont .innerWrap h3 span {
    background-color: #f4fb5e;
}

#tokuten_cont .innerWrap p {
    width: 440px;
    font-size: 1.5rem;
    line-height: 1.9;
}

#tokuten_cont .innerWrap .txt a {
    color: #fff;
    text-decoration: none;
}

#tokuten_cont .innerWrap .txt a:hover {
    opacity: 0.8;
}

#tokuten_cont .innerWrap .txt a.btn {
    font-size: 1.6rem;
    display: block;
    width: 180px;
    background-color: #0048b0;
    border-radius: 6px;
    padding: 10px 0;
    margin-top: 18px;
    text-align: center;
}

#tokuten_cont .innerWrap img {
    width: 100%;
    height: auto;
    z-index: 98;
}

#tokuten_cont .tokuten01 .innerWrap .img {
    max-width: 655px;
    height: auto;
    margin-top: 60px;
}

#tokuten_cont .tokuten02 .innerWrap .img {
    max-width: 530px;
    height: auto;
    margin-top: 0;
}

#tokuten_cont .insta {
    max-width: 1070px;
    margin: 30px auto 0 auto;
    transform: skew(0deg, 6deg);
}

#tokuten_cont .insta img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:1000px) {
    #tokuten_cont {
        margin: 0 0 60px 0;
    }
    #tokuten_cont h2 {
        background: url(../img/sp_tokuten_hd_bg.png) no-repeat left top;
        background-size: 335px auto;
        width: 335px;
        height: 139px;
        padding: 75px 0 0 0;
        font-size: 2rem;
        line-height: 1.45;
        margin: 0 auto 20px auto;
    }
    #tokuten_cont h2::before {
        background: none;
    }
    #tokuten_cont h2 span {
        display: block;
        font-size: 1.3rem;
        letter-spacing: 0;
    }
    #tokuten_cont p.tokuten_txt {
        font-size: 1.5rem;
    }
    #tokuten_cont .tokutenWrap {
        position: relative;
    }
    #tokuten_cont .tokuten01 {
        padding: 0 0 70px 0;
    }
    #tokuten_cont .innerWrap {
        display: block;
        margin: 0 auto;
        max-width: 600px !important;
        padding: 0 20px;
        box-sizing: content-box;
    }
    #tokuten_cont .tokuten01::after {
        height: 95px;
        position: absolute;
    }
    #tokuten_cont .innerWrap .txt {
        position: relative;
        padding: 0;
    }
    #tokuten_cont .tokuten02 .innerWrap .txt {
        margin-top: 0;
    }
    #tokuten_cont .innerWrap .txt:before {
        content: none;
    }
    #tokuten_cont .innerWrap h3 {
        font-size: 2.0rem;
        text-align: center;
        margin-bottom: 14px;
    }
    #tokuten_cont .innerWrap h3 span {}
    #tokuten_cont .innerWrap p {
        width: 100%;
        font-size: 1.5rem;
        line-height: 1.9;
    }
    #tokuten_cont .innerWrap .txt a {}
    #tokuten_cont .innerWrap .txt a:hover {}
    #tokuten_cont .innerWrap .txt a.btn {
        font-size: 1.6rem;
        display: block;
        width: 180px;
        background-color: #0048b0;
        border-radius: 6px;
        padding: 10px 0;
        margin: 18px auto 0 auto;
        text-align: center;
    }
    #tokuten_cont .innerWrap .img {
        margin: 0 auto;
        padding: 54px 0 30px 0;
    }
    #tokuten_cont .tokuten02 .innerWrap .img {
        margin-top: 0;
    }
    #tokuten_cont .tokutenWrap .img::before {
        content: "";
        width: 148px;
        height: 57px;
        position: absolute;
        left: calc( 50% - 71px);
        top: -37px;
    }
    #tokuten_cont .tokuten01 .img::before {
        background: url(../img/tokuten_01p.png) no-repeat left top;
        background-size: 148px auto;
    }
    #tokuten_cont .tokuten02 .img::before {
        width: 157px;
        background: url(../img/tokuten_02p.png) no-repeat left top;
        background-size: 157px auto;
    }
}

@media screen and (max-width:767px) {
    #tokuten_cont .insta {
        max-width: 420px;
    }
}

@media screen and (max-width:414px) {
    #tokuten_cont .tokuten02 .innerWrap .img {
        max-width: 280px;
    }
    #tokuten_cont .insta {
        max-width: 335px;
    }
}

@media screen and (max-width:320px) {
    #tokuten_cont h2 {
        background-size: 320px auto;
        width: 320px;
        height: 92px;
        padding: 28px 0 0 0;
        font-size: 2.0rem;
        line-height: 1.4;
        margin: 0 auto 54px auto;
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■plan_cont
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


/* anchor */

.anchor_btn {
    max-width: 1000px;
    margin: 0 auto 120px auto;
    display: flex;
    justify-content: space-between;
    padding: 0 35px;
}

.anchor_btn li {
    width: 30%;
}

.anchor_btn li a {
    color: #000;
    font-weight: bold;
    display: block;
    width: 100%;
    border: 1px solid #b9b9b9;
    padding: 18px 15px 18px 25px;
    text-decoration: none;
}

.anchor_btn li a:after {
    content: "　▼";
    color: #aaa;
    font-size: 1.0rem;
}

.anchor_btn li a:hover {
    opacity: 0.8;
}

@media screen and (max-width:767px) {
    .anchor_btn {
        display: block;
    }
    .anchor_btn {
        margin-bottom: 40px;
    }
    .anchor_btn li {
        font-size: 1.4rem;
        width: 100%;
        margin: 0 0 20px 0;
    }
}


/* contents*/

.eg {
    color: #eaf8ff;
    font-size: 160px;
    font-weight: bold;
    font-style: italic;
    line-height: 0.9;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
}

.maincopy {
    color: #0044ab;
    font-size: 4.2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin: -100px 0 48px 0;
}

#plan_cont .maincopy {
    margin-top: -140px;
}

#plan_cont .maincopy::before {
    content: none;
    background: url(../img/plan_sub.png) no-repeat left top;
    background-size: 510px auto;
    width: 510px;
    height: 67px;
    position: absolute;
    left: -74px;
    top: -61px;
}

#plan_cont p.copy {
    color: #097ef6;
    font-size: 2.0rem;
}

#plan_cont p.copy span {
    position: relative;
    padding: 0 34px;
}

#plan_cont p.copy span:after,
#plan_cont p.copy span:before {
    content: '';
    position: absolute;
    top: 49%;
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: #097ef6;
}

#plan_cont p.copy span:before {
    left: 0;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}

#plan_cont p.copy span:after {
    right: 0;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

#plan_cont h2 {
    color: #097ef6;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 40px;
}


/* ツアーブロック */

#plan_cont .tour_block {
    padding-bottom: 30px;
}

#plan_cont .tour_block ul {
    max-width: 1320px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

#plan_cont .tour_block ul li {
    width: 22.7%;
    padding: 0 0px;
    box-sizing: border-box;
    margin-bottom: 60px;
    font-size: 1.7rem;
    line-height: 1.6;
    margin-right: 40px;
    position: relative;
    text-align: left;
}

#plan_cont .tour_block ul li:nth-child(4n),
#plan_cont .tour_block ul li:last-child {
    margin-right: 0;
}

#plan_cont .tour_block ul li .plan_title {
    font-weight: bold;
    margin-bottom: 7px;
    position: relative;
}

#plan_cont .tour_block ul li a {
    color: #0966c6;
    text-decoration: none;
}

#plan_cont .tour_block ul li a:hover {
    opacity: 0.85;
}

#plan_cont .tour_block ul li a .plan_tokuten {
    color: #000;
    font-size: 1.5rem;
    height: 54px;
}

#plan_cont .tour_block ul li a .plan_price {
    color: #c00;
    font-weight: bold;
    text-align: right;
}

#plan_cont .tour_block ul li a .plan_price span {
    font-size: 2.3rem;
}


/* サムネイル上 英字 */

#plan_cont #tour ul li .plan_title::after {
    content: 'SUMMER\aVACATION';
    white-space: pre;
    font-family: 'Barlow Condensed';
    font-size: 2.5rem;
    font-weight: 800;
    font-style: italic;
    line-height: 0.9;
    letter-spacing: 0.1em;
    text-shadow: 2px 0 1px #fff, 0 2px 1px #fff, -2px 0 1px #fff, 0 -2px 1px #fff, 3px 0 1px #ffeb43, 0 3px 1px #ffeb43, -3px 0 1px #ffeb43, 0 -3px 1px #ffeb43;
    text-align: left;
    transform: rotate(-10deg);
    position: absolute;
    right: -4px;
    top: -66px;
}

#plan_cont #tour ul li img {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

@media screen and (max-width:1320px) {
    #plan_cont .tour_block ul {
        padding: 0 35px;
    }
    #plan_cont .tour_block ul li {
        width: 30%;
        padding: 0;
        margin: 0 40px 36px 0;
    }
    #plan_cont .tour_block ul li:nth-child(4n) {
        margin-right: 40px;
    }
    #plan_cont .tour_block ul li:nth-child(3n) {
        margin-right: 0;
    }
    #plan_cont .tour_block ul li:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width:900px) {
    .eg {
        font-size: 6.8rem;
        text-align: center;
        margin-bottom: 20px;
        overflow-wrap: break-word;
    }
    .maincopy {
        font-size: 2rem;
        margin-bottom: 38px;
    }
    #plan_cont .maincopy {
        margin-top: -94px;
    }
    #plan_cont .maincopy::before {
        width: 280px;
        height: 38px;
        background-size: 280px auto;
        left: 0;
        top: -36px;
    }
    #plan_cont p.copy {
        font-size: 1.7rem;
    }
    #plan_cont h2 {
        font-size: 2.2rem;
        margin-bottom: 18px;
    }
    #plan_cont .tour_block ul {
        display: block;
        margin: 0 auto;
    }
    #plan_cont .tour_block ul li {
        width: 100%;
        padding: 0 0px;
        margin-bottom: 36px;
        font-size: 1.6rem;
        position: relative;
    }
    #plan_cont .tour_block ul li a .plan_tokuten {
        height: auto;
    }
    #plan_cont .tour_block ul li:nth-child(4n) {
        margin-right: 0;
    }
    #plan_cont .tour_block ul li:after {
        font-size: 2.6rem;
        top: 58%;
    }
}

@media screen and (max-width:414px) {
    #plan_cont .tour_block ul li:after {
        font-size: 2.8rem;
        top: 206px;
    }
}

@media screen and (max-width:375px) {
    #plan_cont .tour_block ul li:after {
        top: 180px;
    }
}

@media screen and (max-width:320px) {
    #plan_cont .tour_block ul {
        padding: 0 30px;
    }
    #plan_cont .tour_block ul li:after {
        top: 150px;
    }
}


/* カセット エリア、英字 */

#plan_cont .tour_block ul li span.area {
    display: block;
    background-color: #555;
    padding: 6px 0;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
}

#plan_cont .tour_block ul li.hok .plan_title::after {
    color: #089304;
}

#plan_cont .tour_block ul li.toh .plan_title::after {
    color: #0d4fad;
}

#plan_cont .tour_block ul li.chu .plan_title::after {
    color: #d1337b;
}

#plan_cont .tour_block ul li.kyu .plan_title::after {
    color: #c36904;
}

#plan_cont .tour_block ul li.ama .plan_title::after {
    color: #c36904;
}

#plan_cont .tour_block ul li.oki .plan_title::after {
    color: #b90026;
}

#plan_cont .tour_block ul li.rit .plan_title::after {
    color: #0c84ca;
}

#plan_cont .tour_block ul li.hok span.area {
    background-color: #089304;
}

#plan_cont .tour_block ul li.toh span.area {
    background-color: #0d4fad;
}

#plan_cont .tour_block ul li.chu span.area {
    background-color: #d1337b;
}

#plan_cont .tour_block ul li.kyu span.area {
    background-color: #c36904;
}

#plan_cont .tour_block ul li.ama span.area {
    background-color: #c36904;
}

#plan_cont .tour_block ul li.oki span.area {
    background-color: #b90026;
}

#plan_cont .tour_block ul li.rit span.area {
    background-color: #0c84ca;
}


/* theme */

#theme {
    background-color: #fafafa;
}

#theme,
#area {
    padding: 80px 0;
}

#plan_cont #theme ul li::after {
    content: '';
    background: url(../img/ico_summer.png) no-repeat left top;
    background-size: 100px auto;
    width: 100px;
    height: 102px;
    position: absolute;
    left: -12px;
    top: 5px;
}

#plan_cont #theme ul li a {
    color: #fff;
}

#plan_cont #theme ul li a:hover .img {
    opacity: 0.85;
}

#plan_cont #theme ul li .img {
    position: relative;
}

#plan_cont #theme ul li .img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background: linear-gradient( transparent 40%, rgba(0, 0, 0, 0.3) 65%, #111);
    width: 100%;
    height: 100%;
    border-radius: 0 0 5px 5px;
}

#plan_cont #theme ul li .img img {
    width: 100%;
    height: auto;
    border-radius: 0 0 5px 5px;
}

#plan_cont #theme ul li .txt {
    position: absolute;
    left: 18px;
    top: 167px;
}

#theme li strong {
    display: inline-block;
    font-size: 110%;
    color: #f2fa4c;
}

@media screen and (max-width:1300px) {
    #plan_cont #theme ul li {
        font-size: 1.5vw;
    }
    #plan_cont #theme ul li .txt {
        left: 5%;
        top: 71%;
    }
}

@media screen and (max-width:900px) {
    #theme,
    #area {
        padding: 40px 0 50px 0;
    }
    #plan_cont #theme ul li {
        font-size: 3vw;
    }
    #plan_cont #theme ul li .txt {
        top: 80%;
    }
}

@media screen and (max-width:414px) {
    #plan_cont #theme ul li {
        font-size: 4.6vw;
    }
    #plan_cont #theme ul li .txt {
        top: 72%;
    }
}


/* エリアブロック */

.area_block ul {
    max-width: 902px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
}

.area_block li {
    width: 300px;
    line-height: 1;
    font-size: 0;
    vertical-align: bottom;
}

.area_block li.double {
    width: 601px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}

.area_block li.double a.half {
    width: 300px;
    display: inline-block;
}

.area_block li.double img {
    width: 100%;
    margin-bottom: 1px;
}

.area_block li a:hover {
    opacity: 0.85;
}

@media screen and (max-width:920px) {
    .area_block ul {
        width: 100%;
    }
    .area_block li {
        width: 33.33%;
    }
    .area_block li.double {
        width: 66.67%;
    }
    .area_block li.double a.half {
        width: 50%;
    }
    .area_block li img {
        width: 100%;
        height: auto;
        margin-bottom: 0 !important;
    }
}


/*/////////////////////////////　エチケット、感染症対策　////////////////////////////*/

#etiquette_cont .eg,
#safety_cont .eg {
    margin: 0;
}

.maincopy {
    position: relative;
    display: inline-block;
}

.text {
    font-size: 2.1rem;
    font-weight: bold;
    margin-bottom: 48px;
}

#etiquette_cont .maincopy::before,
#safety_cont .maincopy::before {
    content: "";
    background: url(../img/withcorona.png) no-repeat left top;
    width: 280px;
    height: 72px;
    position: absolute;
    left: -120px;
    top: -44px;
}


/* etiquette */

#etiquette_cont {
    width: 100%;
    background-color: #f9f9f9;
    padding: 100px 0;
    margin-bottom: 100px;
}

#etiquette_cont ul {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#etiquette_cont ul li {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.7;
    font-weight: bold;
    margin: 0 4px 30px 0;
    vertical-align: top;
}

#etiquette_cont ul li img {
    display: block;
    margin-bottom: 12px;
}

@media screen and (max-width:1100px) {
    #safety_cont .safety_box {
        display: block;
    }
    #safety_cont .safety_box div {
        width: 96%;
    }
}

@media screen and (max-width:767px) {
    #etiquette_cont {
        padding: 30px 0;
        margin-bottom: 32px;
    }
    #etiquette_cont .maincopy::before,
    #safety_cont .maincopy::before {
        width: 140px;
        height: 36px;
        position: absolute;
        left: -60px;
        top: -24px;
        background-size: 140px auto;
    }
    .maincopy {
        margin-top: -70px;
    }
    .text {
        font-size: 1.5rem;
        padding: 0 30px;
        margin: 10px 0 30px 0;
    }
    #etiquette_cont ul {
        justify-content: space-between;
        padding: 0 30px;
    }
    #etiquette_cont ul li {
        width: 46%;
        font-size: 1.4rem;
    }
    #etiquette_cont ul li img {
        width: 100%;
        height: auto;
        margin: 0 0 10px 0;
    }
}


/* safety */

/*#safety_cont .safety_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1320px;
    margin: 0 auto;
}

#safety_cont .safety_box div {
    width: 48%;
    padding: 40px;
    margin: 0 auto 30px auto;
    border: 1px solid #aaa;
    border-radius: 20px;
    text-align: left;
    display: flex
}

#safety_cont .safety_box div h2 {
    color: #0044ab;
    font-size: 3.0rem;
    width: 170px;
    position: relative;
}

#safety_cont .safety_box div h2::after {
    width: 124px;
    height: 124px;
    content: "";
    position: absolute;
    left: 0px;
    top: 52px;
    background: no-repeat left top;
    background-size: 124px auto;
}

#safety_cont .safety_box div h2.plain::after {
    background-image: url(../img/ico01.png);
}

#safety_cont .safety_box div h2.car::after {
    background-image: url(../img/ico02.png);
}

#safety_cont .safety_box div h2.hotel::after {
    background-image: url(../img/ico03.png);
}

#safety_cont .safety_box div h2.kanko::after {
    background-image: url(../img/ico04.png);
}

#safety_cont .safety_box div dl {
    max-width: 69.5%;
    margin-top: 10px;
}

#safety_cont .safety_box div dl dt {
    font-weight: bold;
}

#safety_cont .safety_box div dl dd {
    text-indent: -16px;
    margin-left: 16px;
}

@media screen and (max-width:1100px) {
    #safety_cont .safety_box {
        display: block;
    }
    #safety_cont .safety_box div {
        width: 94%;
    }
}

@media screen and (max-width:767px) {
    #safety_cont .safety_box div {
        padding: 24px 24px;
        display: block;
        margin-bottom: 20px;
        width: 90%;
    }
    #safety_cont .safety_box div h2 {
        width: 100%;
        font-size: 2.4rem;
    }
    #safety_cont .safety_box div h2::after {
        width: 64px;
        height: 64px;
        content: "";
        position: absolute;
        left: auto;
        right: 0;
        top: -7px;
        background: no-repeat left top;
        background-size: 64px auto;
    }
    #safety_cont .safety_box div dl {
        max-width: 100%;
        font-size: 1.4rem;
    }
}*/


/*/////////////////////////////　フッター　////////////////////////////*/

footer {
    text-align: left;
    position: relative;
    padding: 100px 0 0 0;
	padding-top: 0;
}

footer ul {
    margin: 0 auto;
    padding: 0;
    font-size: 12px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 11px;
    right: 40px;
}

footer li {
    margin: 0 0 0 24px;
    padding: 0;
}

footer .copyright {
    background: #ececec;
    padding: 24px 40px;
    text-align: left;
    margin: 0 auto;
    font-size: 1rem;
}

footer .copyright a {
    color: inherit !important;
    text-decoration: none;
}

footer div {
    color: #fff;
    background: #445289;
    padding: 40px calc(50% - 450px);
    padding: 40px -webkit-calc(50% - 450px);
    display: flex;
    flex-wrap: wrap;
}

footer dl {
    margin: 0 0 0px 0;
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

footer dd {
    font-size: 13px;
    margin: 0 12px 0 0;
    padding: 0;
}

footer dt {
    margin: 0 16px 0 0;
    padding: 0;
    font-size: 15px;
    font-weight: bold;
}

footer dd a {
    color: #fff !important;
    font-size: 100%;
    vertical-align: baseline;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

footer dd a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 767px) {
    footer {
        padding: 60px 0 0 0;
    }
    footer ul {
        text-align: center;
        display: block;
        position: static;
    }
    footer li {
        margin: 0;
        padding: 0 15px;
    }
    footer .copyright {
        padding: 15px 20px;
    }
    footer div {
        display: block;
        padding: 20px;
        margin-top: 20px;
		padding-bottom: 70px;
    }
    footer dl {
        margin: 0;
        flex-wrap: wrap;
    }
    footer dt {
        width: 100%;
        margin: 0 0 12px 0;
    }
}


/* ページトップ */

#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 15px;
    z-index: 100;
}

#page-top a {
    background: #AB1436;
    text-decoration: none;
    color: #fff;
    width: 100px;
    padding: 30px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}

#page-top a:hover {
    text-decoration: none;
    background: #333;
}

@media screen and (max-width: 767px) {
	#page-top{
		display: none !important;
	}
}
@media screen and (max-width: 560px) {
    #page-top {
        position: fixed;
        bottom: 20px;
        right: 10px;
        font-size: 13px;
    }
    #page-top a {
        background: #AB1436;
        text-decoration: none;
        color: #fff;
        width: 100px;
        padding: 20px 0;
        text-align: center;
        display: block;
        border-radius: 5px;
    }
    #page-top a:hover {
        text-decoration: none;
        background: #333;
    }
}



/*/////////////////////////////　2022年度メインコンテンツ　////////////////////////////*/
.ofi{
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
/* chrome opera */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
	img{
		image-rendering: -webkit-optimize-contrast;
	}
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■main_contents
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#main_contents{
	overflow: hidden;
	min-width: 1280px;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", YuGothic, "游ゴシック体", "Yu Gothic Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Meiryo, sans-serif;
	font-weight: 500;
}
#main_contents .en{
	font-family: 'Zen Kaku Gothic New', sans-serif;
}
#main_contents a{
	color: inherit;
	text-decoration: none;
}
#main_contents .swiper-button-prev,
#main_contents .swiper-button-next{
	line-height: 1;
	width: 52px;
	height: 52px;
	background: url(../img/slide_arrow_back.png) no-repeat center center rgba(0,0,0,0.7);
	-webkit-background-size: 12px auto;
	background-size: 12px auto;
	margin-top: -26px;
}
#main_contents .swiper-button-next{
	background-image: url(../img/slide_arrow_next.png);
}
@media only screen and (max-width: 767px) {
	#main_contents{
		min-width: inherit;
		width: 100%;
	}
	#main_contents .swiper-button-prev,
	#main_contents .swiper-button-next{
		width: 37px;
		height: 37px;
		-webkit-background-size: 8px auto;
		background-size: 8px auto;
		margin-top: 0;
	}
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■main_ttl
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#main_ttl {
	height: 276px;
	padding: 10px;
	text-align: center;
	line-height: 1;
	background: url(../img/main_bg.png) no-repeat center bottom;
	position: relative;
	margin-bottom: 10px;
}
#main_ttl h1 {
	margin-top: 47px;
}
#main_ttl .day {
	position: absolute;
	left: 50%;
	top: 34px;
	margin-left: -475px;
}
#main_ttl .bag {
	position: absolute;
	left: 50%;
	top: 45px;
	margin-left: 339px;
}
@media only screen and (max-width: 1430px) {
	#main_ttl .bag{
		top: 58px;
		margin-left: 328px;
	}
	#main_ttl .bag img{
		width: 303px;
		height: auto;
	}
}
@media only screen and (max-width: 767px) {
	#main_ttl {
		height: inherit;
		padding: 33px 20px 15px;
		background-image: url(../img/main_bg_sp.png);
		background-position: center top;
		-webkit-background-size: 100% auto;
		background-size: 100% auto;
		margin-bottom: 0;
	}
	#main_ttl h1 {
		width: 69%;
		margin: 0 auto;
		position: relative;
	}
	#main_ttl h1 img{
		width: 100%;
		height: auto;
	}
	#main_ttl h1 .ico{
		width: 26px;
		position: absolute;
		top: -15px;
		right: 2%;
	}
	#main_ttl .day {
		display: none;
	}
	#main_ttl .bag {
		position: static;
		margin: 20px 0 0;
	}
	#main_ttl .bag img{
		width: 100%;
		height: auto;
	}
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■main_vs
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#main_vs{
	position: relative;
}
#main_vs .cont{
	/*width: 68.56%;*/
	width: 100%;
	height: 100%;
	margin: 0 auto;
	position: absolute;
	top: 0;
	/*left: 15.72%;*/
	left: 0;
	z-index: 5;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	pointer-events: none;
}
#main_vs .cont h1{
	text-align: center;
	margin-top: 27px;
}
#main_vs .txt{
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 1.4;
	color: #fff;
	/*margin:65px 0 0 4.1%;*/
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	position: absolute;
	left: 105px;
	bottom: 65px;
}
#main_vs .txt p{
	text-shadow: 5px 8px 10px rgba(48,138,168,0.47);
}
#main_vs .txt strong{
	font-weight: 700;
	font-size: 4.5rem;
	color: #FFC31D;
}
#main_vs .day{
	width: 210px;
	position: absolute;
	right: 60px;
	bottom: 110px;
}
#main_vs .day img{
	width: 100%;
	height: auto;
}
#main_vs .btn{
	display: flex;
	justify-content: flex-end;
	margin: 0 17px 17px 0;
}
#main_vs .btn a{
	pointer-events: auto;
}
#main_vs .slide{
	width: 1218px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
#main_vs .swiper-container {
	width: 100%;
	height: 100%;
	overflow: visible;
	z-index: 1;
	position: relative;
}
#main_vs .swiper-slide{
	/*padding: 0 5px;*/
	padding: 0;
	width: 100% !important;
	flex-grow: 1;
}
#main_vs .swiper-slide .img{
	height: 682px;
}
#main_vs .swiper-slide .area{
	position: absolute;
	top: 70px;
	right: 50px;
}
#main_vs .swiper-button-prev{
	left: 0;
}
#main_vs .swiper-button-next{
	right: 0;
}

@media only screen and (min-width: 768px) {
	#main_vs .swiper-slide .img img{
		width: 100% !important;
		height: auto;
	}
}
@media only screen and (max-width: 767px) {
	#main_vs{
		
	}
	#main_vs .cont h1{
		margin-top: 22px;
	}
	#main_vs .cont h1 img{
		width: 100%;
		max-width: 335px;
		height: auto;
	}
	#main_vs .txt{
		/*font-size: 1.6rem;
		line-height: 1.58;
		margin:33px 0 0 15px;
		text-shadow: 0 0 3.5px rgba(0,0,0,0.75);
		position: absolute;*/
		bottom: 32px;
		left: 20px;
	}
	#main_vs .txt img{
		width: 148px;
		height: auto;
	}
	#main_vs .day{
		width: 122px;
		right: 10px;
		bottom: 15px;
	}
	#main_vs .btn{
		display: block;
		margin: 0;
		padding: 15px 20px 0;
	}
	#main_vs .btn img{
		width: 100%;
		height: auto;
	}
	#main_vs .slide{
		width: 100%;
	}
	#main_vs .swiper-slide{
		padding: 0;
	}
	#main_vs .swiper-slide::after{
		width: 65px;
		height: 65px;
		-webkit-background-size: 65px auto;
		background-size: 65px auto;
		right: 0;
	}
	#main_vs .swiper-slide .img{
		height: 341px;
	}
	#main_vs .swiper-slide .area{
		top: 34px;
		right: 15px;
	}
	#main_vs .swiper-slide .area img{
		width: 43px;
		height: auto;
	}
	#main_vs .swiper-button-prev,
	#main_vs .swiper-button-next{
		top: 233px;
	}
}
/*@media only screen and (max-width: 370px) {
	#main_vs .txt{
		padding-right: 50px;
	}
}*/


/*ポップアップ*/
#popup_overlay{
	display: none;
}
#popup_overlay,#popup{
	opacity: 0;
}
#popup_overlay{
	background: #d65d03;
	opacity:0.59;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 0;
	z-index:5000;
}
#popup{
	font-family: 'Zen Kaku Gothic New', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", YuGothic, "游ゴシック体", "Yu Gothic Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
	font-weight: 500;
	position: absolute;
	top: 540px;
	left: 50%;
	margin-left: -450px;
	display: -webkit-box; /*Android4.3*/
	display: flex;
	padding: 0;
	-webkit-box-align: center; /*Android4.3*/
	align-items: center;
	align-content:center;
	justify-content: center;
	z-index:5001;
}
#popup.open{
	opacity: 1;
}

#popup .inner{
	background: #fff;
	position: relative;
	width: 900px;
	border-radius: 0;
	padding: 20px 19px 57px;
	font-size: 1.8rem;
	line-height: 1.61;
	text-align: left;
}
#popup .main_ttl{
	line-height: 1;
}
#popup .img{
	line-height: 1;
	margin-bottom: 30px;
}
#popup .main_ttl img,
#popup .img img{
	width: 100%;
	height: auto;
}
#popup .main_area{
	padding: 0 40px;
}
#popup .intro_area{
	text-align: center;
	margin-bottom: 35px;
}
#popup .intro_area strong{
	font-weight: 900;
	color: #f86900;
}
#popup .intro_area .ttl{
	font-size: 3.2rem;
	font-weight: 900;
	color: #fff;
	text-align: center;
	margin-bottom: 10px;
	background: url(../img/popup_ttl_bg.png) no-repeat;
	padding: 10px;
	height: 81px;
	line-height: 1.3;
}
#popup .intro_area .txt{
	margin-bottom: 16px;
}
#popup .intro_area .txt span{
	display: inline-block;
	padding: 0 53px;
	background: url(../img/txt_l.png) no-repeat left center,url(../img/txt_r.png) no-repeat right center;
	-webkit-background-size: 44px auto;
	background-size: 44px auto;
}
#popup .intro_area .txt strong{
	font-size: 110%;
}
#popup .intro_area .btn{
	font-size: 2.8rem;
	line-height: 1.2;
}
#popup .intro_area .btn a{
	text-decoration: none;
	color: inherit;
	display: block;
	max-width: 600px;
	margin: 0 auto;
	background: url(../img/ico_arrow02.png) no-repeat right 22px center;
	-webkit-background-size: 25px auto;
	background-size: 25px auto;
	border: 3px solid #f86900;
	border-radius: 10px;
	padding: 11px 55px 11px 17px;
}
#popup .intro_area .btn .small{
	font-size: 90%;
}
#popup .sub_ttl{
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 3px;
}
#popup .red{
	color: #E50000;
}
#popup .info_area{
	background: #fffcd8;
	padding: 15px;
	margin: 22px 0;
}
#popup .info_area dl{
	overflow: hidden;
}
#popup .info_area dt,
#popup .info_area dd{
	margin-bottom: 16px;
}
#popup .info_area dt:last-of-type,
#popup .info_area dd:last-of-type{
	margin-bottom: 0;
}
#popup .info_area dt{
	float: left;
	clear: left;
	text-align: center;
	font-weight: 700;
	color: #fff;
	width: 141px;
	background: #ea6401;
	padding: 8px;
	float: left;
	border-radius: 50px;
}
#popup .info_area dd{
	padding: 8px 0 0 163px;
	min-height: 45px;
}
#popup .note_ttl{
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 2px;
}
#popup ul.kome{
	font-size: 1.7rem;
}
#popup ul.kome li{
	text-indent: -1em;
	padding-left: 1em;
}
#popup .inner .close{
	position: absolute;
	right: -27px;
	top: -31px;
	display: block;
}
#popup .inner .close:hover{
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
	cursor:pointer;
}
#popup .inner .close span{
	display: block;
	width: 67px;
	height: 67px;
	background-color: #000;
	position: relative;
}
#popup .inner .close span:before,
#popup .inner .close span:after{
	border-top: 2px solid #fff;
	width: 40px;
	height: 1px;
	position: absolute;
	display: block;
	z-index:5002;
	content:"";
	left: 14px;
	top: 32px;
}
#popup .inner .close span:before{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
}
#popup .inner .close span:after{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
}

@media only screen and (max-width: 767px) {
	#popup img{
		width: 100%;
		height: auto;
	}
	#popup_overlay{
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
	}
	#popup{
		position: absolute;
		margin-left: 0;
		padding: 15px;
		top: 450px;
		left: 0;
	}
	#popup .inner{
		width: 100%;
		padding: 10px 10px 30px;
		font-size: 1.5rem;
		line-height: 1.65;
	}
	#popup .img{
		margin: 0 0 20px 0;
	}
	#popup .main_area{
		padding: 0 10px;
	}
	#popup .intro_area{
		margin-bottom: 25px;
		padding: 0 10px;
	}
	#popup .intro_area .ttl{
		font-size: 2rem;
		background: #ea6401;
		height: auto;
		margin-left: -10px;
		margin-right: -10px;
	}
	#popup .intro_area .txt{
		text-align: left;
		margin-bottom: 11px;
	}
	#popup .intro_area .txt span{
		padding: 0;
		background:none;
	}
	#popup .intro_area .btn{
		font-size: 2rem;
		line-height: 1.4;
	}
	#popup .intro_area .btn a{
		background-position: right 10px center;
		-webkit-background-size: 18px auto;
		background-size: 18px auto;
		border-width: 2px;
		padding: 8px 23px 8px 15px;
		text-align: left;
	}
	#popup .sub_ttl,
	#popup .note_ttl{
		font-size: 1.7rem;
	}
	#popup .info_area{
		margin: 20px 0;
	}
	#popup .info_area dt{
		width: 100%;
		padding: 3px;
		float: none;
		border-radius: 21px;
		margin-bottom: 5px;
	}
	#popup .info_area dd{
		padding: 5px 0 0 0;
		margin-bottom: 12px;
		min-height: inherit;
	}
	#popup .inner .close{
		right: 0;
		top: -35px;
	}
	#popup .inner .close span{
		display: block;
		width: 50px;
		height: 50px;
	}
	#popup .inner .close span:before,
	#popup .inner .close span:after{
		border-top: 2px solid #fff;
		width: 30px;
		height: 1px;
		position: absolute;
		content:"";
		left: 10px;
		top: 24px;
	}
	#popup .inner .kome{
		font-size: 1.4rem;
	}

}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■tokuten
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#tokuten_sec{
	text-align: center;
	padding: 0 0 35px;
	background: url(../img/tokuten_bg.png) center top;
}
#tokuten_sec ul{
	max-width: 1100px;
	margin: -35px auto 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 3;
}
#tokuten_sec ul li{
	padding: 0 25px;

}
#tokuten_sec ul li img{
	max-width: 100%;
	height: auto;
}
@media screen and (max-width:767px) {
	#tokuten_sec{
		padding: 15px 20px 0;
		background: none;
	}
	#tokuten_sec .ttl{
		line-height: 1;
		text-align: center;
		padding-left: 19px;
	}
	#tokuten_sec .ttl img{
		width: 100%;
		max-width: 282px;
		height: auto;
	}
	#tokuten_sec ul{
		margin: 0;
		padding-bottom: 25px;
		position: relative;
	}
	#tokuten_sec ul:after{
		content: "";
		width: calc(100% + 40px);
		height: 80%;
		background: url(../img/tokuten_bg.png) center top;
		-webkit-background-size: 70px auto;
		background-size: 70px auto;
		position: absolute;
		left: -20px;
		right: -20px;
		bottom: 0;
		z-index: -1;
	}
	#tokuten_sec ul li{
		text-align: center;
		padding: 0;
	}
	#tokuten_sec ul li img{
		max-width: 100%;
		height: auto;
	}
	#tokuten_sec ul li + li{
		margin-top: 8px;
	}
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■intro_sec
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#intro_sec {
	background: url(../img/intro_bg.jpg) center bottom;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 64px 20px 50px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	#intro_sec {
		background-image: url(../img/intro_bg_sp.jpg);
		padding: 22px 10px;
	}
}

/*エリアボタン*/
#intro_sec .tag_btn {
	display: flex;
	justify-content: center;
	line-height: 1.2;
}
#intro_sec .tag_btn li{
	margin: 0 4px 5px;
	font-size: 1.8rem;
	font-weight: 500;
}
#intro_sec .tag_btn li a{
	display: flex;
	text-align: center;
	padding:9px 17px 10px 16px;
	background: #fff;
	border: 1px solid #000;
	border-radius: 50px;
}
@media only screen and (max-width: 767px) {
	#intro_sec .tag_btn {
		flex-wrap: wrap;
		/*padding: 0 5px;*/
		margin-left: -10px;
		margin-right: -10px;
	}
	#intro_sec .tag_btn li{
		margin: 0 2px 10px;
		font-size: 1.4rem;
	}
	#intro_sec .tag_btn li a{
		padding: 6px 10px;
		border-width: 1px;
	}
}

#intro_sec .tag_btn li.oki a{
	color: #b90026;
	border-color: #db5847;
}
#intro_sec .tag_btn li.rit a{
	color: #0c84ca;
	border-color: #0c84ca;
}
#intro_sec .tag_btn li.kyu a,
#intro_sec .tag_btn li.ama a{
	color: #c36904;
	border-color: #dd8114;
}
#intro_sec .tag_btn li.chu a{
	color: #d1337b;
	border-color: #d1337b;
}
#intro_sec .tag_btn li.hok a{
	color: #089304;
	border-color: #46a64c;
}
#intro_sec .tag_btn li.tou a{
	color: #0d4fad;
	border-color: #0d4fad;
}
#intro_sec .tag_btn li.tyo a{
	color: #7c42dd;
	border-color: #7c42dd;
}
#intro_sec .tag_btn li.osa a{
	color: #c2094f;
	border-color: #c2094f;
}

/*テキスト部分*/
#intro_sec .ttl_area {
	line-height: 1.4;
}
#intro_sec .ttl_area h2{
	line-height: 1;
}
#intro_sec .ttl_area .sub {
	font-size: 2.4rem;
}
#intro_sec .ttl_area .sub span {
	position: relative;
	padding: 0 40px;
}
#intro_sec .ttl_area .sub span::after,
#intro_sec .ttl_area .sub span::before{
	content: '';
	position: absolute;
	top: 49%;
	display: inline-block;
	width: 28px;
	height: 2px;
	background-color: #000;
}
#intro_sec .ttl_area .sub span::before{
	left: 0;
	transform: rotate(64deg);
}
#intro_sec .ttl_area .sub span::after{
	right: 0;
	transform: rotate(-64deg);
}
#intro_sec .ttl_area .ttl {
	font-size: 5.4rem;
	letter-spacing: 0.025em;
	margin-top: -3px;
}
#intro_sec .ttl_area .small {
	font-size: 86%;
}
#intro_sec .ttl_area .line {
	position: relative;
	display: inline-block;
	z-index: 0;
}
#intro_sec .ttl_area .line::after{
	content: "";
	display: block;
	width: 100%;
	height: 16px;
	background: #fdfe00;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
@media only screen and (min-width: 768px) {
	#intro_sec .ttl_area h2 img.pcCont{
		display: inline-block;
	}
}
@media only screen and (max-width: 767px) {
	/*#intro_sec .ttl_area {
		padding: 0 10px;
		margin-bottom: 30px;
	}
	#intro_sec .ttl_area .sub {
		font-size: 1.4rem;
	}
	#intro_sec .ttl_area .sub span {
		padding: 0 25px;
	}
	#intro_sec .ttl_area .sub span::after,
	#intro_sec .ttl_area .sub span::before{
		width: 15px;
		height: 1px;
	}
	#intro_sec .ttl_area .ttl {
		font-size: 2.7rem;
		margin-top: 2px;
	}
	#intro_sec .ttl_area .line::after{
		height: 8px;
	}*/
	#intro_sec .ttl_area h2{
		padding: 0 10px;
	}
	#intro_sec .ttl_area h2 img{
		max-width: 100%;
		height: auto;
	}
}

/*アンカー*/
#intro_sec .anchor {
	display: flex;
	justify-content: space-between;
	max-width: 1100px;
	margin: 0 auto;
}
#intro_sec .anchor li {
	width: 23.6%;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.4;
	font-weight: 700;
	color: #000;
}
#intro_sec .anchor a {
	display: flex;
	align-items: center;
	position: relative;
	background: #fff;
	padding: 5px 10px 5px 20px;
	min-height: 84px;
	min-width: 100px;
	transition: all 0.25s ease-out;
}
#intro_sec .anchor a::after{
	border: solid transparent;
	content:'';
	height:0;
	width:0;
	pointer-events:none;
	position:absolute;
	border-color: rgba(255, 255, 255, 0);
	border-top-width:10px;
	border-bottom-width:10px;
	border-left-width:8px;
	border-right-width:8px;
	margin-left: -8px;
	border-top-color:#FFFFFF;
	top:100%;
	left:50%;
	/*content: "▼";
	font-size: 1.3rem;
	position: absolute;
	bottom: 17px;
	line-height: 1;
	left: 50%;
	margin-left: -0.5em;*/
}
/*#intro_sec .anchor a:hover{
	background-color: #fcd875;
}
#intro_sec .anchor .plan02 a:hover{
	background-color: #a3d8fb;
}
#intro_sec .anchor .plan03 a:hover{
	background-color: #ffb5b5;
}
#intro_sec .anchor .area a:hover{
	background-color: #8be0a1;
}*/ 
#intro_sec .ico {
	display: block;
	margin-right: 18px;
}
#intro_sec .txt .ttl {
	font-size: 1.8rem;
	color: #275FCF;
}
#intro_sec .plan02 .txt .ttl{
	color: #FF771D;
}
#intro_sec .plan03 .txt .ttl{
	color: #21BC79;
}
#intro_sec .plan04 .txt .ttl{
	color: #03B2FF;
}
@media only screen and (max-width: 767px) {
	#intro_sec .anchor {
		flex-wrap: wrap;
		justify-content: space-between;
		border-bottom: 1px solid rgba(0,0,0,.2);
		position: fixed;
		left: 5px;
		right: 5px;
		bottom: 0;
		z-index: 100;
	}
	#intro_sec .anchor li {
		background: none;
		width: calc(50% - 1px);
		font-feature-settings: "palt";
		padding: 0;
		font-size: 1.2rem;
		line-height: 1.17;
		margin-bottom: 3px;
	}
	#intro_sec .anchor a {
		padding: 8px 3px 13px;
		background: #fff;
		border: 1px solid #d1d1d1;
		border-radius: 4px;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: inherit;
	}
	#intro_sec .anchor a::after{
		content: "▼";
		font-size: 0.7rem;
		position: absolute;
		top: auto;
		bottom: 10px;
		line-height: 1;
		left: 50%;
		margin: 0 0 0 -0.5em;
		padding: 0;
		opacity: 0.7;
		color: #d1d1d1;
		border: none;
	}
	#intro_sec .ico {
		display: block;
		margin: 0 !important;
	}
	/*#intro_sec .plan01 .ico{
	margin-bottom: 22px;
}
	#intro_sec .plan03 .ico,
	#intro_sec .plan04 .ico{
	margin-bottom: 17px;
}*/
	#intro_sec .ico img{
		width: 20px;
		height: auto;
		margin-right: 6px;
	}
	#intro_sec .txt{
		font-size: 1.2rem;
	}
	#intro_sec .txt .ttl {
		font-size: 1.4rem;
	}
}

/*#intro_sec .anchor li.plan01 a::after{
	color: #ed9b0b;
}
#intro_sec .anchor li.plan02 a::after{
	color: #01abfa;
}
#intro_sec .anchor li.plan03 a::after{
	color: #f16f6f;
}
#intro_sec .anchor li.area a::after{
	color: #85c980;
}*/


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■plan_block
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.plan_block{
	border-top: 16px solid #E9D885;
	padding: 70px 20px 110px;
	background: url(../img/plan01_bg.jpg) repeat-y center top;
	position: relative;
}
.plan_block .innerWrap{
	position: relative;
	z-index: 1;
}
.plan_block .ttl_area,
#area_sec .ttl_area{
	padding-bottom: 100px;
	background: url(../img/plan01_ttl_sub.png) no-repeat center top 70px;
	position: relative;
}
.plan_block .ttl_area:after,
#area_sec .ttl_area:after{
	content: "";
	display: block;
	width: 100%;
	position: absolute;
	/*left: 50%;*/
	background: no-repeat center top;
	-webkit-background-size: auto 100%;
	background-size: auto 100%;
}
/*.plan_block .ttl_area .ico {
	display: block;
	margin-bottom: 30px;
}*/
.plan_block .ttl_area .ttl_wrap,
#area_sec .ttl_area .ttl_wrap{
	display: flex;
	justify-content: center;
}
.plan_block .ttl_area .ttl_wrap .ico,
#area_sec .ttl_area .ttl_wrap .ico{
	margin: 5px 15px 0 0;
}
.plan_block .ttl_area .ttl,
#area_sec .ttl_area .ttl {
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin-bottom: 12px;
}
.plan_block .ttl_area .ttl.small{
	font-size: 3rem;
}
.plan_block .ttl_area .ttl .small {
	display: block;
	font-weight: 500;
	font-size: 65%;
}
.plan_block .ttl_area .ttl .color {
	color: #275FCF;
}
.plan_block .ttl_area .en {
	line-height: 1.5;
}
.plan_block .ttl_area .sub{
	color: #333;
	font-size: 1.8rem;
	line-height: 1.66;
	font-weight: 700;
	margin-bottom: 12px;
}
.plan_block .ttl_area .sub .in{
	display: inline-block;
	position: relative;
	padding: 5px 53px;
}
.plan_block .ttl_area .sub .in:before,
.plan_block .ttl_area .sub .in:after{
	content: '';
	position: absolute;
	top: 49%;
	display: inline-block;
	width: 50px;
	height: 1px;
	background: #000;
	z-index: 5;
}
.plan_block .ttl_area .sub .in:before{
	left: 0;
	transform: rotate(68deg);
}
.plan_block .ttl_area .sub .in:after{
	right: 0;
	transform: rotate(-68deg);
}

.plan_block .slide{
	max-width: 1336px;
	margin: 0 auto;
	position: relative;
}
.plan_block .img img{
	width: 100%;
	height: auto;
}
.plan_block .balloon_area{
	min-height: 82px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	position: relative;
	padding: 16px 15px;
	border-radius: 8px 8px 0 8px;
	box-shadow: 3px 3px 0 0 #333;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.66;
	background: #fff;
	margin-bottom: 21px;
}
.plan_block .balloon_area:before,
.plan_block .balloon_area:after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	right: 0;
	border-style: solid;
	border-width: 0 14px 9px 0;
	border-color: transparent #ffffff transparent transparent;
}

.plan_block .balloon_area:before {
	right: -3px;
	bottom: -11px;
	border-color: transparent #333 transparent transparent;
}

.plan_block .balloon_area:after {
	bottom: -8px;
}
.plan_block .balloon_area .ttl{
	line-height: 1;
}

.plan_block .main{
	background: #fff;
	height: calc(100% - 103px);
	position: relative;
	/*box-shadow: 1.5px 2.6px 6px rgba(36,101,151,0.16);*/
	box-shadow: 0px 2px 8px rgba(36,101,151,0.16);
}
.plan_block .main a{
	display: block;
	height: 100%;
	padding: 23px;
	position: relative;
}
.plan_block .main .area,
#area_sec .area{
	line-height: 1;
	position: absolute;
	top: 23px;
	left: 23px;
	font-size: 1.4rem;
	color: #fff !important;
	text-align: center;
}
#area_sec .area{
	top: 0;
	left: 0;
}
@media only screen and (max-width: 767px) {
	.plan_block .main .area{
		top: 20px;
		left: 20px;
	}
}

.plan_block .main .area span,
#area_sec .area span{
	position: relative;
	display: inline-block;
	min-width: 100px;
	height: 27px;
	background: #007bff;
	padding: 6px;
}
.plan_block .main .area span::after,
#area_sec .area span::after{
	content: "";
	width: 14px;
	height: 27px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 27px 14px 0 0;
	border-color: #007bff transparent transparent transparent;
	position: absolute;
	right: -14px;
	top: 0;
}
.plan_block .main .txt_area{
	padding: 19px 10px 40px;
}
.plan_block .main .ttl{
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 10px;
	color: #EA3527;
}
.plan_block .main .txt{
	line-height: 1.6;
}

.main .plan_price{
	color: #EA3527;
	font-size: 2.7rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.2;
	position: absolute;
	right: 23px;
	bottom: 20px;
	padding-left: 5px;
	/*display: flex;
	justify-content: flex-end;
	align-items: baseline;*/
}
.main .plan_price .jgt_price::before{
	content: "東京発";
	font-size: 1.5rem;
	margin-right: 5px;
}
.main .plan_price .jgt_price::after{
	content: "円～";
	font-size: 1.6rem;
}
.main .plan_price .jgt_price{
	display: inline-block !important;
}
.main .plan_price small {
	font-size: 1.6rem;
}

.plan_block .main .sub_txt{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	/*color: #b09000;*/
	margin-bottom: 10px;
}

.plan_block .swiper-wrapper{
	display: flex;
}
.plan_block .swiper-slide{
	padding: 0 23px 6px;
	text-align: left;
	height: auto;
}
.plan_block .swiper-pagination{
	bottom: -60px;
	width: 100%;
}
.plan_block .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	margin: 0 7px;
	background: #fff;
	opacity: 1;
}
.plan_block .swiper-pagination-bullet-active{
	background: #C5B208;
}
.plan_block .swiper-button-prev{
	left: -66px;
}
.plan_block .swiper-button-next{
	right: -66px;
}
#plan01_sec .swiper-button-prev,
#plan01_sec .swiper-button-next,
#plan03_sec .swiper-button-prev,
#plan03_sec .swiper-button-next{
	margin-top: 0;
}
@media only screen and (max-width: 1470px) {
	.plan_block .swiper-button-prev{
		left: -20px;
	}
	.plan_block .swiper-button-next{
		right: -20px;
	}
}
@media only screen and (max-width: 767px) {
	.plan_block{
		border-width: 10px;
		padding: 25px 0 50px;
	}
	.plan_block::after{
		height: 130px;
	}
	.plan_block .ttl_area,
	#area_sec .ttl_area {
		padding: 0 15px 22px;
		margin-bottom: 10px;
		background-position: center bottom;
		-webkit-background-size: auto 65px;
		background-size: auto 65px;
	}
	.plan_block .ttl_area:after,
	#area_sec .ttl_area:after{
		left: 0 !important;
		height: auto;
		-webkit-background-size: 375px auto;
		background-size: 375px auto;
	}
	.plan_block .ttl_area .ico,
	#area_sec .ttl_area .ico {
		margin-bottom: 10px;
	}
	.plan_block .ttl_area .ico img,
	#area_sec .ttl_area .ico img{
		width: 38px;
		height: auto;
	}
	.plan_block .ttl_area .ttl,
	#area_sec .ttl_area .ttl {
		font-size: 2.5rem;
		margin-bottom: 0;
	}
	.plan_block .ttl_area .ttl.small{
		font-size: 2.3rem;
	}
	.plan_block .ttl_area .mini{
		font-size: 1.7rem;
	}
	/*.plan_block .ttl_area .ttl .color {
		font-size: 2rem;
	}*/
	.plan_block .ttl_area .en img{
		width: auto;
		height: 30px;
	}
	.plan_block .ttl_area .sub{
		font-size: 1.2rem;
		margin-bottom: 9px;
	}
	.plan_block .ttl_area .sub .in{
		padding: 0 29px;
	}
	.plan_block .ttl_area .sub .in:before,
	.plan_block .ttl_area .sub .in:after{
		top: 55%;
		width: 30px;
	}

	/*.plan_block .balloon_area{
		background-image: url(../img/plan01_balloon_sp.png);
		-webkit-background-size: 301px auto;
		background-size: 301px auto;
		width: 301px;
		height: 140px;
		font-size: 1.4rem;
		padding: 15px 20px;
		margin-bottom: -14px;
	}
	.plan_block .balloon_area .ttl{
		margin-bottom: 8px;
	}*/
	.plan_block .balloon_area{
		font-size: 1.4rem;
	}
	.plan_block .balloon_area .ttl img{
		width: auto;
		height: 50px;
		margin-left: -22px;
	}

	.plan_block .main{
		height: calc(100% - 133px);
	}
	.plan_block .main::before{
		top: 2.5px;
		left: 2.5px;
	}
	.plan_block .main a{
		padding: 20px;
	}
	.plan_block .main .txt_area{
		padding-left: 0;
		padding-right: 0;
	}
	.plan_block .main .ttl{
		font-size: 1.7rem;
		line-height: 1.5;
		margin-bottom: 15px;
	}
	.plan_block .main .txt{
		font-size: 1.4rem;
		line-height: 1.6;
	}
	.main .plan_price{
		font-size: 2.2rem;
	}
	.main .plan_price::before,
	.main .plan_price::after{
		font-size: 1.5rem;
	}
	.main .plan_price small{
		font-size: 1.5rem;
	}

	.plan_block .swiper-wrapper{
		display: flex;
	}
	.plan_block .swiper-slide{
		padding-left: 35px;
		padding-right: 35px;
	}
	.plan_block .swiper-pagination{
		bottom: -24px;
		text-align: right;
		font-size: 1.5rem;
		padding-right: 35px;
	}
	#main_contents .plan_block .swiper-button-prev,
	#main_contents .plan_block .swiper-button-next{
		width: 40px;
		height: 87px;
		-webkit-background-size: 8px auto;
		background-size: 8px auto;
		margin-top: 0;
	}
	.plan_block .swiper-button-prev{
		left: 0;
	}
	.plan_block .swiper-button-next{
		right: 0;
	}
	#plan02_sec .swiper-button-prev,
	#plan02_sec .swiper-button-next{
		margin-top: -43px;
	}
}

/*plan01*/
#plan01_sec .ttl_area:after{
	height: 220px;
	background-image: url(../img/plan01_sub.png);
	top: -19px;
}
#plan01_sec .ttl_area .ttl_wrap .ico{
	margin-top: 0;	
}
@media only screen and (max-width: 767px) {
	#plan01_sec .ttl_area{
		background-position: center bottom 21px;
		-webkit-background-size: auto 60px;
		background-size: auto 60px;
		margin-bottom: 0;
	}
	#plan01_sec .ttl_area:after{
		height: 100%;
		background-image: url(../img/plan01_sub_sp.png);
		top: -18px;
	}
}

#plan01_sec .balloon_area{
	padding-top: 56px;
	min-height: 137px;
}
#plan01_sec .balloon_area .ttl{
	position: absolute;
	width: 100%;
	top: 7px;
	left: 0;
	right: 0;
}
#plan01_sec .balloon_area .ttl img{
	margin-left: -41px;
}
#plan01_sec .main{
	height: calc(100% - 158px);
}
@media only screen and (min-width: 768px) {
	#plan01_sec .balloon_area .ttl img.pcCont{
		display: inline-block;
	}
}
@media only screen and (max-width: 767px) {
	#plan01_sec .balloon_area{
		padding-top: 57px;
	}
	#plan01_sec .balloon_area .ttl{
		top: 12px;
	}
	#plan01_sec .balloon_area .ttl img.spCont{
		display: inline-block;
		margin-left: -20px;
	}
}

/*plan02*/
#plan02_sec{
	background-image: url(../img/plan02_bg.jpg);
	border-color: #9DE2AD;
}
#plan02_sec::after{
	background: #70c1ff;
}
#plan02_sec .ttl_area{
	background-image: url(../img/plan02_ttl_sub.png);
}
#plan02_sec .ttl_area:after{
	height: 196px;
	background-image: url(../img/plan02_sub.png);
	top: -7px;
}
#plan02_sec .ttl_area .ttl .color{
	color: #3998f9;
}
#plan02_sec .main{
	height: 100%;
}
#plan02_sec .swiper-pagination-bullet-active{
	background: #4DB588;
}
@media only screen and (min-width: 768px) {
	#plan02_sec .ttl_area{
		background-position: center top 68px;
	}
}
@media only screen and (max-width: 767px) {
	#plan02_sec .ttl_area{
	}
	#plan02_sec .ttl_area:after{
		height: 100%;
		background-image: url(../img/plan02_sub_sp.png);
		top: -13px;
		left: -7px !important;
	}
	/*#plan02_sec .main .ttl{
		font-size: 1.8rem;
	}*/
}

/*plan03*/
#plan03_sec{
	background-image: url(../img/plan03_bg.jpg);
	border-color: #A2D9E3;
}
#plan03_sec::after{
	background: #ffc5c5;
}
#plan03_sec .ttl_area{
	background-image: url(../img/plan03_ttl_sub.png);
}
#plan03_sec .ttl_area:after{
	height: 203px;
	background-image: url(../img/plan03_sub.png);
	top: -1px;
}
#plan03_sec .ttl_area .ttl .color{
	color: #ff7373;
}
#plan03_sec .swiper-pagination-bullet-active{
	background: #6891E2;
}
@media only screen and (min-width: 768px) {
	#plan03_sec .ttl_area{
		background-position: center top 90px;
	}
}
@media only screen and (max-width: 767px) {
	#plan03_sec .ttl_area:after{
		height: 100%;
		background-image: url(../img/plan03_sub_sp.png);
		top: -18px;
	}
	#plan03_sec .main{
		height: calc(100% - 103px);
	}
}


/*個別定義*/
.plan_block .main .area.oki span,
#area_sec .area.oki span{
	background: #c32525;
}
.plan_block .main .area.oki span::after,
#area_sec .area.oki span::after{
	border-color: #c32525 transparent transparent transparent;
}
.plan_block .main .area.rit span,
#area_sec .area.rit span{
	background: #359bd6;
}
.plan_block .main .area.rit span::after,
#area_sec .area.rit span::after{
	border-color: #359bd6 transparent transparent transparent;
}
.plan_block .main .area.hok span,
#area_sec .area.hok span{
	background: #408e36;
}
.plan_block .main .area.hok span::after,
#area_sec .area.hok span::after{
	border-color: #408e36 transparent transparent transparent;
}
.plan_block .main .area.tou span,
#area_sec .area.tou span{
	background: #0d4fad;
}
.plan_block .main .area.tou span::after,
#area_sec .area.tou span::after{
	border-color: #0d4fad transparent transparent transparent;
}
.plan_block .main .area.tyo span,
#area_sec .area.tyo span{
	background: #6142bb;
}
.plan_block .main .area.tyo span::after,
#area_sec .area.tyo span::after{
	border-color: #6142bb transparent transparent transparent;
}
.plan_block .main .area.kyu span,
.plan_block .main .area.ama span,
#area_sec .area.kyu span,
#area_sec .area.ama span{
	background: #cb8d21;
}
.plan_block .main .area.kyu span::after,
.plan_block .main .area.ama span::after,
#area_sec .area.kyu span::after,
#area_sec .area.ama span::after{
	border-color: #cb8d21 transparent transparent transparent;
}
.plan_block .main .area.osa span,
#area_sec .area.osa span{
	background: #c2094f;
}
.plan_block .main .area.osa span::after,
#area_sec .area.osa span::after{
	border-color: #c2094f transparent transparent transparent;
}
.plan_block .main .area.chu span,
#area_sec .area.chu span{
	background: #d1337b;
}
.plan_block .main .area.chu span::after,
#area_sec .area.chu span::after{
	border-color: #d1337b transparent transparent transparent;
}

#osa_from .main .plan_price .jgt_price::before{
	content: "関西発";
}
#ngo_from .main .plan_price .jgt_price::before{
	content: "名古屋発";
}
#fuk_from .main .plan_price .jgt_price::before{
	content: "九州発";
}
#kan_from .main .plan_price .jgt_price::before{
	content: "金沢発";
}
#hok_from .main .plan_price .jgt_price::before{
	content: "北海道発";
}
#tho_from .main .plan_price .jgt_price::before{
	content: "東北発";
}
#chu_from .main .plan_price .jgt_price::before{
	content: "中国発";
}
#shi_from .main .plan_price .jgt_price::before{
	content: "四国発";
}
#oki_from .main .plan_price .jgt_price::before{
	content: "沖縄発";
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■area_sec
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#area_sec{
	background: url(../img/area_bg.jpg) no-repeat center bottom;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 120px 20px 120px;
	position: relative;
	border-top: 16px solid #4792DC;
}
/*#area_sec::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.4;
	position: absolute;
	top: 0;
	left: 0;
}*/
#area_sec .ttl_area{
	background-image: url(../img/area_ttl_sub.png);
	background-position: center top;
}
#area_sec .ttl_area:after{
	height: 203px;
	background-image: url(../img/area_sub.png);
	top: -77px;
}
/*#area_sec .ttl_area .ico {
	margin-bottom: 13px;
	display: inline-block;
}

#area_sec .ttl_area .ttl {
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin-bottom: 11px;
}
#area_sec .ttl_area .ttl span{
	font-size: 80%;
}*/
#area_sec .ttl_area .img {
	position: absolute;
	left: 50%;
}
#area_sec .ttl_area .img01 {
	top: 38px;
	margin-left: -413px;
}
#area_sec .ttl_area .img02 {
	top: 42px;
	margin-left: 306px;
}
#area_sec .bnr {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1110px;
	margin: -5px auto 0;
	position: relative;
	z-index: 1;
	line-height: 1;
}
#area_sec .bnr:after{
	content: "";
	width: calc(33.33% - 5px);
}
#area_sec .bnr li{
	width: calc(33.33% - 5px);
	background: #fff;
	padding-bottom: 25px;
	margin-bottom: 10px;
	position: relative;
}
#area_sec .bnr li img{
	width: 100%;
	height: auto;
}
#area_sec .bnr li .txt{
	text-align: left;
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.5;
	padding: 9px 17px;
}
#area_sec .bnr .plan_price{
	text-align: right;
	bottom: 13px;
	right: 13px;
}
#area_sec .bnr .hok{
	color: #459d2d;
}
#area_sec .bnr .tou{
	color: #b94f0f;
}
#area_sec .bnr .tyo{
	color: #8c14b4;
}
#area_sec .bnr .osa{
	color: #c0271b;
}
#area_sec .bnr .chu{
	color: #14809b;
}
#area_sec .bnr .kyu{
	color: #ab760f;
}
#area_sec .bnr .ama{
	color: #d60ebc;
}
#area_sec .bnr .oki{
	color: #c52413;
}
#area_sec .bnr .rit{
	color: #1271ba;
}
@media only screen and (max-width: 767px) {
	#area_sec{
		padding-top: 30px;
		padding-bottom: 22px;
		border-width: 8px;
	}
	#area_sec .ttl_area {
		background-position: center bottom;
	}
	#area_sec .ttl_area:after{
		height: 119px;
		background-image: url(../img/area_sub_sp.png);
		top: -16px;
	}
	/*#area_sec .ttl_area .ico {
		margin-bottom: 11px;
	}
	#area_sec .ttl_area .ico img{
		width: 34px;
		height: auto;
	}
	#area_sec .ttl_area .ttl {
		font-size: 2.8rem;
		margin-bottom: 6px;
		margin-bottom: 25px;
}*/
	#area_sec .ttl_area .ttl .small{
		font-size: 80%;
		margin-bottom: 2px;
	}
	#area_sec .ttl_area .en img{
		width: auto;
		height: 15px;
	}
	#area_sec .ttl_area .img01 {
		top: 22px;
		margin-left: -169px;
	}
	#area_sec .ttl_area .img01 img{
		width: 70px;
		height: auto;
	}
	#area_sec .ttl_area .img02 {
		top: 35px;
		margin-left: 113px;
	}
	#area_sec .ttl_area .img02 img{
		width: 35px;
		height: auto;
	}
	#area_sec .bnr{
		margin-top: 0;
	}
	#area_sec .bnr:after{
		content: none;
	}
	#area_sec .bnr li{
		width: calc(50% - 3px);
		/*padding: 0 3px;*/
		margin-bottom: 6px;
		/*padding-bottom: 38px;*/
		padding-bottom: 10px;
	}
	#area_sec .bnr li .txt{
		text-align: left;
		font-weight: bold;
		font-size: 1.2rem;
		padding: 5px 10px;
	}
	#area_sec .bnr .plan_price{
		font-size: 1.5rem;
		right: 8px;
		bottom: 8px;
	}
	#area_sec .plan_price .jgt_price:before{
		font-size: 1.1rem;
	}
	#area_sec .main .plan_price small{
		font-size: 1rem;
		display: block;
	}
	#area_sec .bnr li img{
		width: 100%;
		height: auto;
	}
	
	#area_sec .area{
		font-size: 1.2rem;
	}
	#area_sec .area span{
		min-width:80px;
	}
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■tokuten_bnr
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.tokuten_bnr{
	text-align: center;
	padding: 0 20px;
	/*margin-bottom: 100px;*/
	margin-bottom: 30px;
}
.tokuten_bnr a{
	display: inline-block;
}
.tokuten_bnr img.pcCont{
	display: inline-block;
}
.tokuten_bnr img{
	max-width: 100%;
	height: auto;
}
@media only screen and (max-width: 767px) {
	.tokuten_bnr{
		/*margin-bottom: 40px;*/
		margin-bottom: 0;
	}
	.tokuten_bnr img.pcCont{
		display: none;
	}
	.tokuten_bnr img.spCont{
		display: inline-block;
	}
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■feel_sec
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*#feel_sec {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	line-height: 1.62;
	padding: 0 20px;
	margin-bottom: 23px;
}
#feel_sec a{
	text-decoration: none;
	color: inherit;
}
#feel_sec .en {
	font-family: 'M PLUS 1p', sans-serif;
}
#feel_sec .innerWrap {
	max-width: 1320px;
	min-width: 1280px;
	margin: 0 auto;
}
#feel_sec .ttl_area {
	background: url(../img/feel_ttl_ico.png) no-repeat left top;
	min-height: 64px;
	padding: 9px 0 0 84px;
	line-height: 1.2;
	text-align: left;
	display: flex;
	margin-bottom: 46px;
}
#feel_sec .ttl_area .ttl {
	font-size: 3rem;
}
#feel_sec .ttl_area .sub {
	font-size: 2rem;
	font-weight: 700;
	padding: 7px 0 0 21px;
}

#feel_sec .block:not(:last-of-type) {
	margin-bottom: 76px;
}
#feel_sec .block .ttl {
	font-size: 2rem;
	letter-spacing: 0.08em;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 3px;
}
#feel_sec .block .en{
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	opacity: 0.4;
}

#feel_sec .list {
	border-top: 1px solid #000;
	margin-top: 12px;
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#feel_sec .list::before,
#feel_sec .list::after{
	content: "";
	display: block;
	width: 22.77%;
}
#feel_sec .list::before{
	order: 1;
}
#feel_sec .list li {
	width: 22.77%;
	font-weight: 500;
	text-align: left;
}
#feel_sec .list .img {
	line-height: 1;
	margin-bottom: 10px;
}
#feel_sec .list .img img {
	width: 100%;
	height: auto;
}
#feel_sec .list .day {
	font-size: 1.4rem;
	opacity: 0.5;
	margin-bottom: 4px;
}

#feel_sec .btn {
	margin-top: 43px;
}
#feel_sec .btn a {
	display: block;
	background: url(../img/ico_arrow01.png) no-repeat right 19px center #fff;
	-webkit-background-size: 20px auto;
	background-size: 20px auto;
	font-weight: 700;
	border: 2px solid #000;
	border-radius: 4px;
	width: 420px;
	padding: 15px;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
	#feel_sec {
		font-size: 1.1rem;
		line-height: 1.54;
		margin-bottom: 0;
	}
	#feel_sec .innerWrap {
		min-width: inherit;
	}
	#feel_sec .ttl_area {
		-webkit-background-size: 34px auto;
		background-size: 34px auto;
		min-height: 40px;
		padding: 7px 0 0 50px;
		margin-bottom: 18px;
	}
	#feel_sec .ttl_area .ttl {
		font-size: 2rem;
	}
	#feel_sec .ttl_area .sub {
		font-size: 1.5rem;
		padding: 5px 0 0 10px;
	}

	#feel_sec .block:not(:last-of-type) {
		margin-bottom: 30px;
	}
	#feel_sec .block .ttl {
		font-size: 1.4rem;
		margin-bottom: 3px;
	}
	#feel_sec .block .en{
		font-size: 1rem;
	}

	#feel_sec .list {
		margin-top: 7px;
		padding-top: 15px;
	}
	#feel_sec .list::before,
	#feel_sec .list::after{
		content: none;
	}
	#feel_sec .list li {
		width: 47.76%;
		margin-bottom: 15px;
	}
	#feel_sec .list .img {
		margin-bottom: 6px;
	}
	#feel_sec .list .day {
		font-size: 0.9rem;
		margin-bottom: 3px;
	}

	#feel_sec .btn {
		margin-top: 5px;
	}
	#feel_sec .btn a {
		background-position: right 12px center
		-webkit-background-size: 13px auto;
		background-size: 13px auto;
		border-width: 1px;
		border-radius: 2px;
		width: 273px;
		padding: 9px;
		font-size: 1.2rem;
	}
}*/