@charset "UTF-8";
@import '../../../../../../assets/css/_settings/*';

/*------------------------------------------------------------
  ** コンポーネント
------------------------------------------------------------*/
/*------------------------------
  ** インナー
------------------------------*/
.content-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 8px;
}

/*------------------------------
  段落：レベル1
------------------------------*/
.content-box {
  padding: 40px 0 80px 0;
}

@media screen and (max-width: 767px) {
  .content-box {
    padding: 16px 0 40px 0;
  }
}

/*------------------------------
  段落：レベル2
------------------------------*/
.content-box-2 {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .content-box-2 {
    margin-top: 16px;
  }
}

.content-box-2:first-child {
  margin-top: 0;
}

/*------------------------------------------------------------
  ** カラーバリエーション（特徴・価格）
------------------------------------------------------------*/
/*------------------------------
  ** ブルー
------------------------------*/
/* 特徴：塗り版 */
.feature-fill-blue {
  color: #fff;
  border-color: #0068b7;
  background: #0068b7;
}

/* 特徴：線版 */
.feature-border-blue {
  color: #0068b7;
  border-color: #0068b7;
  background: #fff;
}

/* 価格 */
.price-blue .price-desc-label {
  color: #fff;
  background: #0068b7;
}
.price-blue .price-desc-label02 {
  color: #fff;
  background: #0068b7;
}
.price-blue .price-desc-price {
  color: #0068b7;
  background: #e0edf6;
}

/*------------------------------
  ** ボタン
------------------------------*/
.button-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0 24px;
}

@media screen and (max-width: 767px) {
  .button-wrap {
    display: block;
    padding: 20px 24px;
  }

}

.button {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 640px;
  margin: 20px 0;
  padding: 12px 40px;
  font-size: 2.4rem;
  font-weight: bold;
  text-decoration: none !important;
  border-width: 2px;
  border-style: solid;
  border-color: #ddd;
  border-radius: 8px;
  transition: all .2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.button .small {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .button {
    padding: 12px 20px;
    font-size: 1.6rem;
  }
.button .small {
    font-size: 1.2rem;
  }
}

.button:before {
  content: '';
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  -webkit-transform: skewX(-45deg) translateX(0);
      -ms-transform: skewX(-45deg) translateX(0);
          transform: skewX(-45deg) translateX(0);
  transition: none;
}

.button::after {
  position: absolute;
  right: 0;
  top: calc(50% - 8px);
  content: '';
  width: 0;
  height: 0;
  border-width: 8px 13px;
  border-style: solid;
  border-color: transparent;
}

@media screen and (max-width: 767px) {
  .button::after {
    top: calc(50% - 4px);
    border-width: 4px 8px;
  }
}

.button:hover::before {
  -webkit-transform: skewX(-45deg) translateX(100vw);
      -ms-transform: skewX(-45deg) translateX(100vw);
          transform: skewX(-45deg) translateX(100vw);
  transition: all .8s ease-in-out;
}

@media screen and (max-width: 767px) {
  .button:hover::before {
    content: none;
  }
}

.button:hover::after {
  border-left-color: #fff;
}

@media screen and (max-width: 767px) {
  .button {
    display: block;
    margin: 8px auto 0 auto;
    text-align: center;
  }
  .button:first-child {
    margin-top: 0;
  }
}

/*-- ボタン2個並列版 --*/
.has-two-columns {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.has-two-columns .button {
  width: calc(50% - 20px);
  max-width: none;
}

@media screen and (max-width: 767px) {
  .has-two-columns {
    display: block;
  }
  .has-two-columns .button {
    width: calc(100% - 20px);
  }
.has-one-columns .button {
    width: calc(100% - 20px);
    margin-top:-48px;
  }
}

/*------------------------------
  ** PDFボタン用
------------------------------*/
.textC{
text-align: center;
font-size:1.4rem }

/* 例：br.sp_brは550以上のサイズでは非表示にする */
@media screen and (min-width: 550px) {
.sp_br{
    display: none;
  }
}

/*------------------------------
  ** テーブル
------------------------------*/
.row-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #d0d0d0;
}

.row-table th,
.row-table td {
  padding: 16px 20px;
  vertical-align: middle;
  border-bottom: 1px solid #d0d0d0;
}

.row-table th {
  width: 340px;
  font-size: 1.8rem;
  background: #eaeaea;
}

.row-table td {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .row-table {
    box-sizing: border-box;
    display: block;
  }
  .row-table tbody,
  .row-table tr,
  .row-table th,
  .row-table td {
    box-sizing: border-box;
    display: block;
    width: 100%;
  }
  .row-table tr {
    border-bottom: 1px solid #d0d0d0;
  }
  .row-table th {
    font-size: 1.6rem;
    border-bottom: none;
  }
  .row-table td {
    font-size: 1.4rem;
    border-bottom: none;
  }
}

/*------------------------------
  ** リスト：※マーク
------------------------------*/
.attention-list {
  margin-top: 10px;
}

.attention-list:first-child {
  margin-top: 0;
}

.attention-list-item {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.4rem;
  line-height: 1.75;
}
.attention-list-item .redB {
  font-size: 1.6rem;
  color: #ff0000;
  font-weight: bold;
}

.attention-list-item::before {
  content: '※';
  display: inline-block;
  width: 1em;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .attention-list-item {
    font-size: 1.3rem;
  }
}

/*------------------------------
  ** バナー
------------------------------*/
.banner-box {
  position: relative;
  margin-top: 40px;
  text-align: center;
}
.banner-box2 {
  position: relative;
  margin-top: 40px;
  text-align: center;
}

.banner-box-caption{
  font-size: 1.6rem;
  font-weight: bold;

  position: absolute;
  bottom: 0;
  left: 0;

  padding: 20px 30px;

  text-align: left;

  color: #fff;
  text-shadow: 0 1px 10px #000;
}

@media screen and (max-width: 800px)
{
  .banner-box
  {
    margin-top: 20px;
  }
 .banner-box2
  {
    margin-top: 20px 10px 0 10px ;
  }
  .banner-box-caption
  {
    font-size: 1.2rem;

    padding: 5px 10px;

    text-shadow: 0 1px 5px #000;
  }
}


/*------------------------------------------------------------
  ** その他の要素
------------------------------------------------------------*/
/*------------------------------
  ** 全体
------------------------------*/
#tokutoku {
  max-width: 100%;
  margin-bottom: 0;
  padding: 0;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo',  Osaka, sans-serif;
}

#tokutoku img {
  max-width: 100%;
}

#tokutoku a {
  color: #0068b7;
  text-decoration: underline;
}

#tokutoku a:hover {
  color: #0068b7;
  text-decoration: none;
}

/*-- IE11のみメイリオ --*/
@media screen\0 {
  #tokutoku {
    font-family: 'Segoe UI', Meiryo, sans-serif;
  }
}

/*------------------------------
  ** トクトクヘッダー
------------------------------*/
.tokutoku-header {
  padding: 13px 0 6px 0;
  text-align: center;
  background: #0068b7;
}

@media screen and (max-width: 767px) {
  .tokutoku-header {
    padding: 13px 0 10px 0;
  }
}

.tokutoku-header-info {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .tokutoku-header-info {
    font-size: 1.8rem;
    line-height: 1.0;
  }
}

.tokutoku-header-info img {
  position: relative;
  top: -5px;
  width: 110px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .tokutoku-header-info img {
    top: -3px;
    width: 62px;
  }
}

.tokutoku-header-info small {
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .tokutoku-header-info small {
    display: inline-block;
    font-size: 1.2rem;
  }
}

.tokutoku-header-pay {
  margin-top: 0;
  font-size: 2.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .tokutoku-header-pay {
    margin-top: 8px;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

.tokutoku-header-pay strong {
  display: inline-block;
  color: #ecde00;
}

/*------------------------------
  ** MV
------------------------------*/
.mv {
  margin-top: 0px;
  margin-bottom: 35px;
  text-align: center;
  background: url("/ticket/tokutoku/kodama_kippu/assets/img/bg.jpg") top center no-repeat;
  background-size:auto 100%;/*この場合は幅が自動設定*/
  /* 背景が不要な場合は#fff */
}
@media screen and (max-width: 767px) {
.mv {
  margin: 0px;
  text-align: center;
  background: url("/ticket/tokutoku/kodama_kippu/assets/img/bg.jpg") top center no-repeat;
  background-size: 100% auto;
  /* 背景が不要な場合は#fff */}
}
.mv .content-inner {
  padding: 0;
}

/*------------------------------
  ** 特徴
------------------------------*/
.feature {
  overflow: hidden;
  margin-top: -8px;
}

@media screen and (max-width: 767px) {
  .feature {
    margin-top: -4px;
  }
}

.feature-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: calc(100% + 8px);
}

@media screen and (max-width: 767px) {
  .feature-list {
    width: calc(100% + 4px);
  }
}

.feature-list-item {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 8px 8px 0 0;
  padding: 6px;
  font-size: 1.8rem;
  line-height: 1.6;
  border-width: 1px;
  border-style: solid;
}

@media screen and (max-width: 767px) {
  .feature-list-item {
    margin: 4px 4px 0 0;
    font-size: 1.3rem;
  }
}

.feature-single-size {
  width: calc(25% - 8px);
}

@media screen and (max-width: 767px) {
  .feature-single-size {
    width: calc(50% - 4px);
  }
}

.feature-double-size {
  width: calc(50% - 8px);
}

@media screen and (max-width: 767px) {
  .feature-double-size {
    width: calc(100% - 4px);
  }
}

/*------------------------------
  ** おねだん
------------------------------*/
.price-midashi {
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.price-midashi .small {
  font-size: 1.6rem;
  font-weight: normal;
}

.price {
  overflow: hidden;
  margin-top: -108px;
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .price {
    margin-top: -61px;
    padding-top: 57px;
  }
}

.price-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: calc(100% + 8px);
}

@media screen and (max-width: 767px) {
  .price-list {
    width: calc(100% + 4px);
  }
}

.price-list-item {
  box-sizing: border-box;
  margin: 8px 8px 0 0;
}

@media screen and (max-width: 767px) {
  .price-list-item {
    margin: 4px 4px 0 0;
  }
}

.price-single-size {
  width: calc(33.3334% - 8px);
}

@media screen and (max-width: 767px) {
  .price-single-size {
    width: calc(50% - 4px);
  }
}

.price-double-size {
  width: calc(50% - 8px);
}

@media screen and (max-width: 767px) {
  .price-double-size {
    width: calc(50% - 4px);
  }
}

.price-triple-size {
  width: calc(100% - 8px);
}

@media screen and (max-width: 767px) {
  .price-triple-size {
    width: calc(100% - 4px);
  }
}

.price-desc-label {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 6px 12px 6px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  border-radius: 8px 8px 0 0;
}
.price-desc-label02 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 6px 12px 6px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  border-radius: 8px 8px 8px 8px;
}

@media screen and (max-width: 767px) {
  .price-desc-label {
    font-size: 1.6rem;
  }
  .price-desc-label02 {
    font-size: 1.6rem;
  }
}

.price-desc-price {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  border-radius: 0 0 8px 8px;
}

@media screen and (max-width: 767px) {
  .price-desc-price {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 374px) {
  .price-desc-price {
    font-size: 2rem;
  }
}

.price-unit {
  font-size: .5625em;
}
.price-big {
  font-size: 1.6em;
}

.price-info {
  padding-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1.4;
}

.price-inner small {
  display: inline-block;
  font-size: .8181em;
}


.price-caution {
  padding-top: 10px;
  font-size: 1.4rem;
}
/*------------------------------
  ** おねだん補足
------------------------------*/
.price-attention-list-item {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.4;
}

.price-attention-list-item:first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .price-attention-list-item {
    font-size: 1.3rem;
  }
}

.price-attention {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.price-attention-icon {
  width: 24px;
  color: #ed1653;
}

.price-attention-text {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
/*------------------------------
  ** 注意事項
------------------------------*/
.term {
  margin-top: -100px;
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .term {
    margin-top: -57px;
    padding-top: 57px;
  }
}

/*------------------------------
  ** トクトクフッター
------------------------------*/
.tokutoku-footer-box {
  margin-top: -30px;
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .tokutoku-footer-box {
    margin-top: -27px;
    padding-top: 27px;
  }
}

.tokutoku-footer {
  padding: 70px 0 80px 0;
  background: #dbeaf5;
}

@media screen and (max-width: 767px) {
  .tokutoku-footer {
    padding: 30px 0 40px 0;
  }
}

.tokutoku-footer-heading-level-1 {
  position: relative;
  font-size: 3.2rem;
  color: #0068b7;
  text-align: center;
}

.tokutoku-footer-heading-level-1::before, .tokutoku-footer-heading-level-1::after {
  display: inline-block;
  content: '';
  width: 16px;
  height: 16px;
  vertical-align: middle;
  border-radius: 50%;
  background: #0068b7;
}

.tokutoku-footer-heading-level-1::before {
  margin-right: 20px;
}

.tokutoku-footer-heading-level-1::after {
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .tokutoku-footer-heading-level-1 {
    font-size: 2.2rem;
  }
  .tokutoku-footer-heading-level-1::before, .tokutoku-footer-heading-level-1::after {
    width: 8px;
    height: 8px;
  }
  .tokutoku-footer-heading-level-1::before {
    margin-right: 8px;
  }
  .tokutoku-footer-heading-level-1::after {
    margin-left: 8px;
  }
}

.tokutoku-footer-heading-level-2 {
  padding-bottom: 10px;
  font-size: 2.6rem;
  color: #0068b7;
  line-height: 1.4;
  text-align: center;
  border-bottom: 2px solid #0068b7;
}

@media screen and (max-width: 767px) {
  .tokutoku-footer-heading-level-2 {
    font-size: 1.8rem;
  }
}


/*-- フッターボタン --*/
.tokutoku-footer-button {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 10px;
  color: #fff !important;
  text-decoration: none !important;
  background: #0068b7;
}

.tokutoku-footer-button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .tokutoku-footer-button {
    padding: 30px 10px;
    border-bottom: 1px solid #fff;
  }
}

.tokutoku-footer-button-label {
  position: relative;
  padding: 0 48px 0 16px;
  font-size: 4.0rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .tokutoku-footer-button-label {
    padding: 0 24px 0 8px;
    font-size: 1.8rem;
  }
}

.tokutoku-footer-button-label::after {
  position: absolute;
  right: 0;
  top: calc(50% - 8px);
  content: '';
  width: 0;
  height: 0;
  border-width: 8px 13px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #fff;
}

@media screen and (max-width: 767px) {
  .tokutoku-footer-button-label::after {
    top: calc(50% - 4px);
    border-width: 4px 8px;
  }
}

/*------------------------------------------------------------
  ** カラーバリエーション（特徴・価格）
------------------------------------------------------------*/
/*------------------------------
  ** ライトグリーン
------------------------------*/
/* 特徴：塗り版 */
.feature-fill-rightgreen {
  color: #fff;
  border-color: #0a9595;
  background: #0a9595;
}

/* 特徴：線版 */
.feature-border-rightgreen {
  color: #0068b7;
  border-color: #0068b7;
  background: #fff;
}

/* 価格 */
.price-rightgreen .price-desc-label {
  color: #fff;
  background: #0a9595;
}

.price-rightgreen .price-desc-price {
  color: #0a9595;
  background: #d8eceb;
}


/*------------------------------------------------------------
  ** カラーバリエーション（ボタン）
------------------------------------------------------------*/
/*------------------------------
  ** ピンク
------------------------------*/
/* ボタン：線版 */
.button-border-pink {
  color: #ed1653 !important;
  border-color: #ed1653;
  background: #fff;
}

.button-border-pink::after {
  border-left-color: #ed1653;
}

.button-border-pink:hover {
  background-color: #ed1653;
  color: #fff !important;
  border-bottom-color: #c10f41;
}

/* ボタン：塗り版 */
.button-fill-pink {
  color: #fff !important;
  border-color: #ed1653;
  background: #ed1653;
}

.button-fill-pink::after {
  border-left-color: #fff;
}

.button-fill-pink:hover {
  border-bottom-color: #c10f41;
}
