@charset "UTF-8";
/*
**  ===================================================================
**  foundation CSS ※サイト全体に共通のスタイル
**  ===================================================================
*/
#contentArea {
  background: white;
  width: 1000px;
  margin: 0 auto;
}

#contentArea #contentAreaInner {
  padding: 0;
  margin: 0;
  width: 735px;
  float: left;
}

#contentArea #contentRight {
  width: 235px;
  float: right;
  padding: 0;
  margin: 0;
}

/*
**  ===================================================================
**  キャンペーン概要のスタイル
**  ===================================================================
*/
  *{
    margin: 0;
    padding: 0;
  }
  ul{
    padding: 0;
  }
  li{
    list-style-type: none;
  }
  
  .accordion-title{
    position: relative;
    margin: 0;
    cursor: pointer;
  }
  .accordion-title:after{
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    background: url(../img/accordion_arrow.png) no-repeat;
    background-size: 100%;
    width: 31px;
    height: 31px;
    transition: all 0.2s ease-in-out;
    display: block;
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  .accordion-title.open:after{
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  .accordion-content{
    display: none;
  }


/*
**  ===================================================================
**  各種設定：var,reset,base-font,break-point
**  ===================================================================
*/
/*
**  ===================================================================
**  Blocks
**  ===================================================================
*/
/*
**  ===================================================================
**  button CSS ※block { } block__element { } block_modifier { }（key_value）
**  ===================================================================
*/

  .button__hover{
    transition: .6s;
  }
  .button__hover:hover{
    opacity: .6;
  }

@media screen and (min-width: 769px){
  .is-hidden-tablet {
    display: none!important;
  }
}
@media screen and (max-width: 768px){
  .is-hidden-mobile {
    display: none!important;
  }
}


/*
**  ===================================================================
**  site-layout CSS ※block { } block__element { } block_modifier { }（key_value）
**  ===================================================================
*/
/* PC用
-------------------------------------------- */
body {
  font-family: "Noto Sans Japanese", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Verdana", sans-serif;
  font-style: normal;
}
header,footer{
  font-family: 'ヒラギノ角ゴ ProN W3','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro',verdana,'メイリオ',Meiryo,'ＭＳ Ｐゴシック', sans-serif;
  font-style: normal;
}

  #wrapper{
    background: #fff;
  }
  #wrapper2 {
    max-width: none;
  }
  #jtb_article {
    background: #ffffff;
  }
  #jtb_article img {
    width: 100%;
    vertical-align: top;
  }
  .jtb-container {
    background: #ffffff;
    margin: auto;
  }
  .contents {
    text-align: center;
    width: 990px;
    margin: auto;
  }
  .contents-block{
    margin-bottom: 80px;
  }
  .contents-block:last-child{
    margin-bottom: 0;
  }
  .contents-title__area{
    text-align: center;
    letter-spacing: -.4em;
  }
  .contents-title__img{
    letter-spacing: normal;
    display: inline-block;
    margin-right: 72px;
    vertical-align: middle;
  }
  .contents-title__text{
    width: 480px;
    line-height: 28px;
    letter-spacing: normal;
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    vertical-align: middle;
  }
  .contents-nav__area{
    margin-bottom: 43px;
  }
  .contents-nav__list{
    margin: 0 40px;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .contents-nav__item{
    width: calc((100% / 3) - 10px);
    position: relative;
    background-image: url(../img/nav_border.png);
    background-repeat: no-repeat;
    background-position: 41px 0;
    background-size: 2.36px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
  }
  .contents-nav__item::marker{
    content: none;
  }
  .contents-nav__item:nth-child(1){
    background-color: #C00812;
  }
  .contents-nav__item:nth-child(2){
    background-color: #006BB6;
  }
  .contents-nav__item:nth-child(3){
    background-color: #4C9132;
  }
  .contents-nav__item .contents-nav__inner{
    display: block;
    padding: 29px 7px 29px 53px;
  }
  .contents-nav__item a{
    box-sizing: border-box;
    padding: 29px 7px 29px 53px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: .3s;
  }
  .contents-nav__item a:before{
    content: "";
    width: 15px;
    height: 10px;
    background-image: url(../img/nav_arrow.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: 13px;
  }
  .contents-nav__item a:active,
  .contents-nav__item a:visited,
  .contents-nav__item a:focus{
    color: #fff;
  }
  .contents-nav__item a:hover{
    opacity: .6;
    color: #ffff;
  }
  .contents-nav__small{
    font-size: 15px;
  }

  .contents-block__title{
    text-align: left;
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    line-height: 1;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 4px solid;
  }
  .contents-block__title.typeA{
    border-color: #C00812;
  }
  .contents-block__title.typeB{
    border-color: #006BB6;
  }
  .contents-block__title.typeC{
    border-color: #4C9132;
  }
  
  .contents-block__bg{
    background:repeating-linear-gradient(-45deg,#FFEFD1,#FFEFD1 10px,#FEF4E0 0,#FEF4E0 20px);
  }
  .contents-block__inner{
    padding: 30px 30px 40px;
  }

  .contents-ticket-title__area{
    margin-bottom: 40px;
  }
  .contents-ticket-title__logo{
    width: 420px;
    margin: 0 auto 20px;
    background: #fff;
  }
  .contents-ticket-title__img{
    padding: 5px 90px;
  }
  .contents-ticket-title__text{
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
  }

  .contents-ticket-block{
    margin-bottom: 30px;
  }
  .contents-ticket-block:last-child{
    margin-bottom: 0;
  }
  .contents-ticket-block__title{
    background: #C00812;
    border-radius: 10px;
    font-size: 26px;
    color: #fff;
    line-height: 1;
    padding: 30px;
  }
  .contents-ticket-block__title.typeA{
    background: #4C9132;
    position: relative;
    padding: 0;
  }
  .contents-ticket-block__title.typeA a{
    color: #fff;
    display: block;
    padding: 30px;
    text-decoration: none;
  }
  .contents-ticket-block__title.open{
    border-radius: 10px 10px 0 0;
  }
  .contents-ticket-block__icon{
    position: relative;
  }
  .contents-ticket-block__icon:before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -137px;
    background: url(../img/ticket_icon01.png) no-repeat;
    width: 113px;
    height: 72px;
  }
  .contents-ticket-block__icon.typeA:before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -137px;
    background: url(../img/ticket_icon02.png) no-repeat;
    width: 113px;
    height: 72px;
  }
  .contents-ticket-block__title.typeA:after{
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    background: url(../img/ticket_link_icon.png) no-repeat;
    background-size: 100%;
    width: 31px;
    height: 31px;
    display: block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .contents-ticket-block__body{
    background: #fff;
    border: 1px solid #C00812;
  }

  .contents-ticket-block__inner{
    padding: 25px 30px;
  }
  .contents-ticket-step__list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .contents-ticket-step__item{
    width: calc((100%/2) - 60px);
    padding-right: 50px;
    margin-right: 18px;
    position: relative;
    margin-bottom: 45px;
  }
  .contents-ticket-step__item:after{
    content: "";
    background: url(../img/contents_ticket01_arrow.png) no-repeat;
    background-size: 100%;
    width: 33px;
    height: 55px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
  .contents-ticket-step__item:nth-child(2n){
    margin-right: 0;
  }
  .contents-ticket-step__item:nth-last-child(-n+2){
    margin-bottom: 0;
  }
  .contents-ticket-step__item:last-child:after{
    background: transparent;
    margin-right: 0;
  }

  .contents-ticket-step__img{
    width: 310px;
    margin: 0 auto 30px;
  }
  .contents-ticket-step__text{
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    display: flex;
    align-items: start;
  }
  .contents-ticket-step__number{
    font-family: noto-sans, sans-serif;
    font-weight: 500;
    display: inline-block;
    background: #BD0411;
    border-radius: 100px;
    padding: 0px 10px;
    vertical-align: middle;
    font-size: 32px;
    line-height: 40px;
    color: #FFCD00;
    margin-right: 10px;
  }
  .contents-ticket-step__number.typeA{
    letter-spacing: -3px;
    padding: 0 8px 0 4px;
  }
  .contents-ticket-step__space{
    margin-top: 10px;
  }
  .contents-ticket-step__caution{
    font-size: 12px;
    font-weight: 300;
    text-align: right;
    color: #000;
  }

  .contents-price{
    margin: 30px auto 20px;
    background: #FDF3DE;
  }
  .contents-price__area{
    padding: 30px 20px 25px;
  }
  .contents-price__list{
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .contents-price-block{
    padding-top: 18px;
    padding-right: 55px;
    padding-bottom: 5px;
    margin-right: 55px;
    border-right: 2px dotted #666666;
  }
  .contents-price-block:last-child{
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  .contents-price-block__title{
    font-size: 22px;
    color: #006BB6;
    line-height: 1;
    margin-bottom: 40px;
  }
  .contents-price-block__list{
    margin: 0;
    padding: 0;
  }
  .contents-price-block__item{
    font-family: noto-sans, sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    font-size: 35px;
    margin-bottom: 20px;
  }
  .contents-price-block__item::marker{
    content: none;
  }
  .contents-price-block__item:last-child{
    margin-bottom: 0;
  }
  .contents-price-block__small{
    font-size: 24px;
  }
  .contents-price__date{
    text-align: right;
    font-size: 14px;
    font-weight: 300;
    color: #000;
  }

  .contents-ticket-block__subtitle{
    font-size: 22px;
    line-height: 1;
    background: #FFC3C8;
    text-align: left;
    padding: 15px 20px;
    color: #000;
    margin-bottom: 20px
  }
  .contents-ticket-block__text{
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    color: #000;
  }
  .contents-ticket-block__link{
    color: #006BB6;
    text-decoration: underline;
    position: relative;
    padding-right: 21px;
  }
  .contents-ticket-block__link:after{
    content: "";
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../img/contents_link_icon.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 14px;
    height: 14px;
  }

  .contents-price__note{
    padding: 0;
    margin: 0;
  }
  .contents-price__caution{
    font-size: 12px;
    text-align: left;
    font-weight: 300;
    color: #000;
    list-style-type: none;
  }

  .contents-pause__bg{
    background: #DCEAF8;
  }
  .contents-pause__inner{
    padding: 30px 30px;
  }
  .contents-pause__text{
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    text-align: left;
    color: #1C5EA6;
  }

  .contents-leisure__block{
    margin-bottom: 40px;
  }
  .contents-leisure__title{
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #4C9132;
  }
  .contents-leisure__text{
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: #000;
  }

  div .visible-xs {
    display: none !important;
  }


/* Common
------------------------------------------------------------- */
.wf-hannari {
  font-family: "Hannari";
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.color-red {
  color: #e60012;
}

.tl-center {
  text-align: center;
}

/*
**  ===================================================================
**  site-header CSS ※block { } block__element { } block_modifier { }（key_value）
**  ===================================================================
*/
  .main{
    width: 100%;
    background: #006BB6;
  }
  .main__area{
    width: 1000px;
    background: #006BB6;
    margin: auto;
  }
  .main__title{
    text-align: center;
    margin: 20px auto 40px;
    color: #ffffff;
    line-height: 1;
    font-size: 36px;
    font-weight: bold;
    display: block;
    padding: 85px 0;
    text-decoration: none;
  }
  .main__title a{
    color: #ffffff;
    line-height: 1;
    font-size: 40px;
    font-weight: bold;
    display: block;
    padding: 85px 0;
    text-decoration: none;
  }

/*
**  ===================================================================
**  site-footer CSS ※block { } block__element { } block_modifier { }（key_value）
**  ===================================================================
*/
  .l-contact {
    padding: 30px 0 5px;
    text-align: center;
  }
  .l-contact img {
    margin: auto;
  }
  .snslist {
    width: 1000px;
    text-align: center;
    letter-spacing: -.4em;
    margin: 60px auto;
  }
  .snslist__item {
    vertical-align: top;
    display: inline-block;
    letter-spacing: normal;
    margin: 0 3px;
  }
  .l-bnr {
    margin: 40px 0;
  }
  .l-bnr__item {
    line-height: 0;
  }
  .l-bnr__item a {
    display: block;
  }
  .l-bnr__item a:hover {
    opacity: 0.6;
  }


.icon {
  display: inline;
}

/*
**  ===================================================================
**  site-navigation CSS ※block { } block__element { } block_modifier { }（key_value）
**  ===================================================================
*/

  .l-nav__list {
    padding: 30px 20px 60px;
    text-align: center;
  }
  .l-nav__item {
    display: inline-block;
    margin-right: 17px;
  }
  .l-nav__item:last-child {
    margin-right: 0;
  }

