@charset "UTF-8";
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    reset
===================================================================*/
html {
  overflow-x: hidden;
  background: #fff;
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
menu {
  display: block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: none;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul,
ol,
menu {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: none;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

a img,
map a {
  border: none;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

embed {
  width: 100%;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
object,
embed {
  max-width: 100%;
  height: auto;
}

object,
embed {
  height: 100%;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

div {
  vertical-align: top;
}

strong {
  font-weight: bold;
}

em {
  font-style: normal;
}

select,
input,
button,
textarea,
button {
  font: 99% arial, sans-serif;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 1;
}

/*  touch
---------------------------------------------*/
a,
img,
button,
input[type=button],
input[type=submit],
.touch-hover {
  -webkit-tap-highlight-color: transparent;
}

/*  box-sizing
---------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*  table
---------------------------------------------*/
table {
  empty-cells: show;
  font-size: inherit;
  font: 100%;
}

/*  main
---------------------------------------------*/
/* IE10,11対策 main要素の高さと幅を認識させる */
@media all and (-ms-high-contrast: none) {
  main {
    display: block;
  }
}
/*  list
---------------------------------------------*/
li {
  list-style: none;
  line-height: 1;
}

/*  form
---------------------------------------------*/
input {
  line-height: 1;
}

form img,
input,
select {
  vertical-align: middle;
}

textarea {
  resize: none;
}

select {
  padding: 1px;
}

legend {
  display: none;
}

input,
select,
textarea,
button {
  font-size: 1.6rem;
  vertical-align: middle;
  color: #000;
  height: auto;
}

textarea {
  height: auto;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
select,
textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-size: 1.6rem;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ccc;
  background: #fff;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  input[type=text],
input[type=tel],
input[type=email],
input[type=password],
select,
textarea {
    font-size: 1.5rem;
  }
}

/* ======= outline ======= */
input[type=email],
input[type=text],
input[type=number],
input[type=password],
textarea,
select {
  outline: none;
}

/* ======= label ======= */
label {
  margin-right: 1em;
  line-height: 1;
}

select::-ms-expand {
  display: none;
}

/*==================================================================
    utility
===================================================================*/
/* ------------------------------------------------------------------
  Visual utility
-------------------------------------------------------------------*/
/*  display
---------------------------------------------*/
.noDisplay {
  display: none !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

/* ======= display none ======= */
@media screen and (min-width: 768px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}
/*  position
---------------------------------------------*/
.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

/*  float
---------------------------------------------*/
.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}

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

.clear {
  clear: both !important;
}

/* IE6 */
* html .clearfix {
  zoom: 1;
}

/* IE7 */
*:first-child + html .clearfix {
  zoom: 1;
}

/*  hover
---------------------------------------------*/
.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/*  .scrollWSp SP時に横幅からはみ出す要素(tableなど)に囲って使用
---------------------------------------------*/
@media screen and (max-width: 768px) {
  .scrollWSp {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
/* .firstload ※初回読み込み時のCSSトランジション防止
------------------------------------------------*/
.firstload {
  -webkit-transition: 0s !important;
  transition: 0s !important;
}

/* ------------------------------------------------------------------
  width utility
-------------------------------------------------------------------*/
.w10 {
  width: 10% !important;
}

.w20 {
  width: 20% !important;
}

.w30 {
  width: 30% !important;
}

.w40 {
  width: 40% !important;
}

.w50 {
  width: 50% !important;
}

.w60 {
  width: 60% !important;
}

.w70 {
  width: 70% !important;
}

.w80 {
  width: 80% !important;
}

.w90 {
  width: 90% !important;
}

.w100 {
  width: 100% !important;
}

/* ------------------------------------------------------------------
  BoxModel utility
-------------------------------------------------------------------*/
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

/* ------------------------------------------------------------------
  border utility
-------------------------------------------------------------------*/
.btNone {
  border-top: none !important;
}

.brNone {
  border-right: none !important;
}

.bbNone {
  border-bottom: none !important;
}

.blNone {
  border-left: none !important;
}

/* ------------------------------------------------------------------
  Text utiity
-------------------------------------------------------------------*/
.bold {
  font-weight: bold !important;
}

.italic {
  font-style: italic !important;
}

.note {
  color: #dddddd;
  margin-left: 1em;
  text-indent: -1em;
}

.underline {
  text-decoration: underline !important;
}

.textNoLine {
  text-decoration: none !important;
}

/*  font-family
---------------------------------------------*/
.font1 {
  font-family: "Noto Serif JP", serif !important;
}

.font2 {
  font-family: "Noto Sans JP", sans-serif !important;
}

/*  font-size+line-height
---------------------------------------------*/
.fzS {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .fzS {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}

.fz {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .fz {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.fzM {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .fzM {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

.fzL {
  font-size: 1.8rem;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .fzL {
    font-size: 1.7rem;
    line-height: 1.9;
  }
}

/*  color
---------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #000;
}

.g1 {
  color: #dddddd;
}

.g2 {
  color: #cccccc;
}

.g3 {
  color: #aaaaaa;
}

.g4 {
  color: #999999;
}

.g5 {
  color: #777777;
}

.g6 {
  color: #666666;
}

.c1 {
  color: #334BA5;
}

.c2 {
  color: #3D94D9;
}

.c3 {
  color: #C01B51;
}

.c4 {
  color: #F5406D;
}

.c5 {
  color: #b277e0;
}

.c6 {
  color: #e0c332;
}

.c-caution {
  color: #ac2317;
}

/*  align
---------------------------------------------*/
.middle {
  vertical-align: middle !important;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

/* font-size
---------------------------------------------*/
.fz {
  font-size: 1.4rem;
}

.fz--s {
  font-size: 1.2rem;
  line-height: 1.6;
}

.fz--l {
  font-size: 1.8rem;
  line-height: 2.4;
}

.fz8 {
  font-size: 0.8rem !important;
}

.fz9 {
  font-size: 0.9rem !important;
}

.fz10 {
  font-size: 1rem !important;
}

.fz11 {
  font-size: 1.1rem !important;
}

.fz12 {
  font-size: 1.2rem !important;
}

.fz13 {
  font-size: 1.3rem !important;
}

.fz14 {
  font-size: 1.4rem !important;
}

.fz15 {
  font-size: 1.5rem !important;
}

.fz16 {
  font-size: 1.6rem !important;
}

.fz17 {
  font-size: 1.7rem !important;
}

.fz18 {
  font-size: 1.8rem !important;
}

.fz19 {
  font-size: 1.9rem !important;
}

.fz20 {
  font-size: 2rem !important;
}

.fz21 {
  font-size: 2.1rem !important;
}

.fz22 {
  font-size: 2.2rem !important;
}

.fz23 {
  font-size: 2.3rem !important;
}

.fz24 {
  font-size: 2.4rem !important;
}

.fz25 {
  font-size: 2.5rem !important;
}

.fz26 {
  font-size: 2.6rem !important;
}

.fz27 {
  font-size: 2.7rem !important;
}

.fz28 {
  font-size: 2.8rem !important;
}

.fz29 {
  font-size: 2.9rem !important;
}

.fz30 {
  font-size: 3rem !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pb-16-5 {
  padding-bottom: 16.5px !important;
}

.pb-17 {
  padding-bottom: 17px !important;
}

.pb-4-5 {
  padding-bottom: 4.5px !important;
}

.ind-05 {
  padding-left: 1em;
  text-indent: -0.5em;
}

/*==================================================================
    general
===================================================================*/
/* -----------------------------------------------
    font
------------------------------------------------*/
body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.4rem;
  color: #000;
  font-weight: 400;
  line-height: 1;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-font-kerning: normal;
          font-kerning: normal;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

/* -----------------------------------------------
    hiragino sansのウェイトズレを調整
------------------------------------------------*/
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W0), local(メイリオ);
  font-weight: 100;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W1), local(メイリオ);
  font-weight: 200;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W2), local(メイリオ);
  font-weight: 300;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W3), local(メイリオ);
  font-weight: 400;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W4), local(メイリオ);
  font-weight: 500;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W5), local(メイリオ ボールド);
  font-weight: 600;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W6), local(メイリオ ボールド);
  font-weight: 700;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W7), local(メイリオ ボールド);
  font-weight: 800;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W8), local(メイリオ ボールド);
  font-weight: 900;
}
@font-face {
  font-family: "Hiragino Sans W9";
  src: local(HiraginoSans-W9), local(メイリオ ボールド);
  font-weight: 900;
}
/* -----------------------------------------------
    p
------------------------------------------------*/
/* ======= hiwrite ======= */
::-moz-selection {
  background: #ededed;
}
::selection {
  background: #ededed;
}

/* ======= テキストの下線スタイル ======= */
.underHiwrite {
  position: relative;
  z-index: 1;
}
.underHiwrite::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 20%;
  background-color: #ff0;
  position: absolute;
  bottom: 2px;
  left: 0;
  z-index: -1;
}

/* ======= 上付き文字、下付き文字 ======= */
.supText {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

.subText {
  font-size: 75.5%;
  vertical-align: bottom;
  position: relative;
  top: 0.1em;
}

/* -----------------------------------------------
    link
------------------------------------------------*/
a {
  text-decoration: none;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #000;
}

.pc a:hover {
  text-decoration: none;
}

/*  a img
---------------------------------------------*/
a img {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

a[href^="tel:"] {
  cursor: default;
}

/* ======= hover ======= */
a[href^="tel:"]:hover img {
  opacity: 1;
}

/*  .link - decoration underline
---------------------------------------------*/
a.link {
  color: #334BA5;
  text-decoration: underline;
}

.pc a.link:hover {
  text-decoration: none;
  color: #334BA5;
}

/* -----------------------------------------------
    list - ul,ol
------------------------------------------------*/
p {
  line-height: 1.6;
}

/*==================================================================
    layout
===================================================================*/
/*  container
---------------------------------------------*/
.container {
  width: 100%;
  padding-right: 4vw;
  padding-left: 4vw;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 1100px;
    margin: 0px auto;
    padding-right: 30px;
    padding-left: 30px;
  }
}
.container.-large {
  max-width: 1230px;
}
@media screen and (max-width: 768px) {
  .container.-large {
    max-width: auto;
  }
}
.container.-small {
  max-width: 960px;
}
@media screen and (max-width: 768px) {
  .container.-small {
    max-width: auto;
  }
}
.container.-min {
  max-width: 690px;
}
@media screen and (max-width: 768px) {
  .container.-min {
    max-width: auto;
  }
}
.container.-fluid {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.container--fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.panel {
  margin-bottom: 40px;
}
.panel.-blue {
  background-color: rgba(51, 75, 165, 0.05);
  padding: 20px;
}
.panel.-bluegroup .panel-heading {
  background: rgba(207, 226, 239, 0.5);
  padding: 20px 15px;
  font-weight: bold;
  font-size: 1.5rem;
  color: #000079;
}
.panel.-bluegroup .panel-body {
  padding: 15px 10px;
  background-color: rgba(207, 226, 239, 0.3);
}
.panel.-graygroup .panel-heading {
  background: rgba(217, 217, 217, 0.8);
  padding: 20px 15px;
  font-weight: bold;
  font-size: 1.5rem;
  color: #3b3b3b;
}
.panel.-graygroup .panel-heading .status {
  background-color: #808080;
}
.panel.-graygroup .panel-body {
  padding: 15px 10px;
  background-color: rgba(217, 217, 217, 0.6);
}
.panel.-redgroup .panel-heading {
  background: #facfcc;
  padding: 20px 15px;
  font-weight: bold;
  font-size: 1.5rem;
  color: #3b3b3b;
}
.panel.-redgroup .panel-heading .status {
  background-color: #BC0000;
}
.panel.-redgroup .panel-body {
  padding: 15px 10px;
  background-color: rgba(250, 207, 204, 0.6);
}
.panel-body {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.panel-heading {
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.panel-heading .status {
  color: #dddddd;
  font-size: 1.3rem;
  line-height: 12px;
  padding: 5px;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.panel-heading .modal-open {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #E2E2E2;
  font-weight: normal;
  font-size: 1.2rem;
  border-radius: 4px;
  color: #6F7070;
  border: 1px solid #ccc;
  line-height: 32px;
  padding: 0px 1em;
  cursor: pointer;
}

.panel02 {
  margin-bottom: 65px;
}

.panel03 {
  margin-bottom: 85px;
}

.wrapper {
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .wrapper {
    padding-top: 30px;
  }
}

.video_wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
}
.video_wrap iframe, .video_wrap video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/*==================================================================
    form
===================================================================*/
/*  autofill
---------------------------------------------*/
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px rgb(250, 250, 250) inset;
}

/*  hover
---------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
select,
textarea {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
input[type=text].mw50,
input[type=tel].mw50,
input[type=email].mw50,
input[type=password].mw50,
select.mw50,
textarea.mw50 {
  max-width: 50px;
}
input[type=text].mw100,
input[type=tel].mw100,
input[type=email].mw100,
input[type=password].mw100,
select.mw100,
textarea.mw100 {
  max-width: 100px;
}

.pc input[type=text]:hover,
.pc input[type=tel]:hover,
.pc input[type=email]:hover,
.pc input[type=password]:hover,
.pc select:hover,
.pc textarea:hover {
  border: 1px solid #334BA5;
  background-color: #fff;
}

/*  focus
---------------------------------------------*/
input:focus,
select:focus,
textarea:focus {
  color: #000000;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
  border: 1px solid #334BA5;
}

input[type=button]:focus,
input[type=submit]:focus,
button[type=submit]:focus,
input[type=file],
input[type=text]:focus,
input[type=tel]:focus,
input[type=password]:focus,
button:focus {
  outline: none;
}

/*  input.short
---------------------------------------------*/
input.short,
select.short,
textarea.short {
  width: 40%;
}

@media screen and (max-width: 768px) {
  input.short,
select.short,
textarea.short {
    width: 100%;
  }
}
/*  must 必須項目の※
---------------------------------------------*/
.must {
  color: #ac2317;
  font-size: 80%;
  vertical-align: top;
  position: relative;
  top: -0.4em;
  right: -0.2rem;
}

/*  button submit
---------------------------------------------*/
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  display: inline-block;
  color: #fff;
  background-color: #334BA5;
  border: 0;
  padding: 0rem 3rem;
  margin-bottom: 0.5em;
  text-align: center;
  font-weight: bold;
  height: 50px;
  position: relative;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

/* ======= hover ======= */
.pc input[type=button]:hover,
.pc input[type=submit]:hover {
  opacity: 0.8;
  cursor: pointer;
}

/*  input file
---------------------------------------------*/
input[type=file] {
  -webkit-appearance: none;
  display: none;
}

label.file {
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  background-color: #334BA5;
  padding: 1rem 2.5rem;
  margin-bottom: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

/* ======= hover ======= */
.pc label.file:hover {
  background-color: #3D94D9;
}

form.basis input[type=text] {
  height: 34px;
  border-radius: 5px;
  border: 1px solid #BFC7CE;
}
@media screen and (min-width: 768px) {
  form.basis input[type=text] {
    border-radius: 3px;
    height: 40px;
  }
}
form.basis input[type=radio] {
  width: 18px;
  height: 18px;
  border: 1px solid #BFC7CE;
  margin-left: 0px;
  min-width: 18px;
  margin-right: 10px;
}
form.basis input[type=checkbox] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  border: 1px solid #BFC7CE;
  margin-left: 0px;
  margin-right: 10px;
}
form.basis label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0px;
}
form.basis label.select {
  position: relative;
}
form.basis label.select::after {
  display: block;
  content: "";
  width: 9px;
  height: 6px;
  background-image: url(../img/common/icon_caret_down-blue.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

::-webkit-input-placeholder {
  color: rgb(199, 199, 199);
}

::-moz-placeholder {
  color: rgb(199, 199, 199);
}

:-ms-input-placeholder {
  color: rgb(199, 199, 199);
}

::-ms-input-placeholder {
  color: rgb(199, 199, 199);
}

::placeholder {
  color: rgb(199, 199, 199);
}

.on-saturday .ui-state-default {
  background-color: #d7ebff;
}
.on-sunday .ui-state-default {
  background-color: #fedcdc;
}
.on-holiday .ui-state-default {
  background-color: #fedcdc;
}

/*==================================================================
    .h01
===================================================================*/
.h01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.h01 span {
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: #1e2b40;
  margin-top: 0.4em;
}
.h01.-about {
  margin-bottom: 0;
}
.h01.-about span {
  color: #fff;
}
.h01.-where span {
  color: #a29151;
}

/*==================================================================
    .h02
===================================================================*/
.h02 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  color: #334BA5;
  padding-left: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #334BA5;
  margin-bottom: 20px;
}
.h02 + p {
  margin-top: 15px;
}
.h02.-k {
  color: #000;
  border-bottom: 1px solid #4d4d4d;
}
.h02.-w {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.h02.-green {
  color: #018140;
  border-bottom: 1px solid #018140;
}

/*==================================================================
    .mainttl
===================================================================*/
.mainttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.5;
  color: #1e2b40;
}
.mainttl + .mainlead {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .mainttl {
    font-size: 2.8rem;
  }
}

.mainttl02 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.5;
  color: #1E2B40;
  font-family: "Noto Sans JP", sans-serif;
}
.mainttl02 + .mainlead {
  margin-bottom: 20px;
}

/*==================================================================
    .panelttl
===================================================================*/
.panelttl {
  background-color: #e8ecec;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 35px;
  color: #4d4d4d;
  margin: 0px -4vw 5px;
  padding-left: 4vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .panelttl {
    margin: 0px 0px 10px;
    padding-left: 20px;
    line-height: 45px;
  }
}
.panelttl .edit {
  position: absolute;
  right: 4vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  font-weight: normal;
  font-size: 1.3rem;
  border-radius: 2px;
  color: #6F7070;
  border: 1px solid #ccc;
  line-height: 28px;
  padding: 0px 12px;
}
@media screen and (min-width: 768px) {
  .panelttl .edit {
    font-size: 1.3rem;
    right: 20px;
    line-height: 32px;
    padding: 0px 14px;
  }
}
.panelttl .edit a {
  color: #6F7070;
}

/*==================================================================
    .paragraph_ttl
===================================================================*/
.paragraph_ttl {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 5rem;
  text-align: center;
}
.paragraph_ttl span {
  display: block;
  padding-top: 10px;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
}
.paragraph_ttl.-about {
  color: #fff;
  opacity: 0.7;
  margin-bottom: 50px;
}
.paragraph_ttl.-where {
  color: #3D94D9;
  margin-bottom: 50px;
}
.paragraph_ttl.-where span {
  color: #334BA5;
  letter-spacing: 0.1em;
}
.paragraph_ttl.-howto {
  color: #fff;
  opacity: 0.7;
  margin-bottom: 50px;
}
.paragraph_ttl.-station {
  color: #85BAEA;
  margin-bottom: 30px;
}
.paragraph_ttl.-station span {
  color: #000079;
}
.paragraph_ttl.-apply {
  color: #85BAEA;
  margin-bottom: 30px;
}
.paragraph_ttl.-apply span {
  color: #000079;
}

/*==================================================================
    .page_ttl
===================================================================*/
.page_ttl {
  padding: 20px 15px;
  border-top: 3px solid #334BA5;
  border-bottom: 3px solid #334BA5;
  color: #334BA5;
  margin-bottom: 40px;
}
.page_ttl p {
  text-align: center;
  font-size: 1.5rem;
}

/*==================================================================
    .btn
===================================================================*/
button {
  cursor: pointer;
}
button.-disabled, button.disabled, button:disabled {
  cursor: default;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  background: -webkit-gradient(linear, left top, right top, from(#334BA5), to(#3D94D9));
  background: linear-gradient(to right, #334BA5 0%, #3D94D9 100%);
  border-radius: 3px;
  border: none;
  outline: none;
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  position: relative;
  text-align: center;
}
.btn:nth-child(2) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .btn {
    height: 60px;
  }
}
.btn.-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.btn .subtxt {
  display: block;
  font-size: 1.1rem;
}
.btn.-grad01 {
  background: -webkit-gradient(linear, left top, right top, from(#870237), to(#5f0020));
  background: linear-gradient(to right, #870237 0%, #5f0020 100%);
}
.btn.-grad02 {
  background: -webkit-gradient(linear, left top, right top, from(#C01B51), to(#F5406D));
  background: linear-gradient(to right, #C01B51 0%, #F5406D 100%);
}
.btn.-grad04 {
  background: -webkit-gradient(linear, left top, right top, from(#0A9D5F), to(#4ED39B));
  background: linear-gradient(to right, #0A9D5F 0%, #4ED39B 100%);
}
.btn.-gray {
  background: #6d7583;
}
.btn.-gray02 {
  background: #5C636F;
}
.btn.-gold {
  background: #8e7d3b;
}
.btn.-green {
  background: #195120;
}
.btn.-green02 {
  background: #008A65;
}
.btn.-campaign {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  position: relative;
}
.btn.-campaign span {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  padding-top: 3px;
}
.btn.-campaign em {
  position: absolute;
  right: 5px;
  bottom: 10px;
  display: block;
  border: 1px solid #fff;
  color: white;
  padding: 0px 0.5em;
  line-height: 16px;
  border-radius: 8px;
  margin-right: 5px;
  font-size: 1rem;
}
.btn.-mos {
  background: #008A65;
  color: #fff;
}
.btn.-skyblue {
  background: #009FD9;
  color: #fff;
}
.btn.-yellow {
  background: #FDD23E;
  color: #000;
}
.btn.-yellow span {
  color: rgba(0, 0, 0, 0.6);
}
.btn.-lhxl {
  height: 110px;
}
.btn.-lhl {
  height: 75px;
}
.btn.-lhm {
  height: 60px;
}
.btn.-fs-mid {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}
.btn.-fs-big {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  font-size: 1.9rem;
  letter-spacing: 0;
  font-weight: 400;
}
.btn.-fs-big .txt {
  font-size: 1.1rem;
}
.btn.-fs-bigger {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  font-size: 2.2rem;
  letter-spacing: 0;
  font-weight: 700;
}
.btn.-fs-bigger .txt {
  font-size: 1.1rem;
}
.btn:disabled {
  opacity: 0.3;
}
.btn.-check .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn.-check .icon::before {
  display: block;
  content: "";
  width: 24px;
  height: 17px;
  background-image: url(../img/common/icon_btn_check.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-right: 0.8em;
}
.btn.-telescope .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn.-telescope .icon::before {
  display: block;
  content: "";
  width: 24px;
  height: 17px;
  background-image: url(../img/common/icon_btn_binoculars.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-right: 0.8em;
}
.btn.-cancel .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn.-cancel .icon::before {
  display: block;
  content: "";
  width: 23px;
  height: 23px;
  background-image: url(../img/common/icon_btn_cross.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-right: 0.8em;
}
.btn.-right-arrow::before {
  display: block;
  content: "";
  width: 8px;
  height: 13px;
  background-image: url(../img/common/icon_btn_arrow-right.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn.-textable {
  background: none;
  border-radius: 3px;
  border: none;
  outline: none;
  font-size: 1.4rem;
  line-height: normal;
  font-weight: 500;
  color: #334BA5;
  letter-spacing: 0.01em;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .goto_btn {
    max-width: 400px;
    margin: 0px auto;
  }
}
.goto_btn .annotation {
  font-size: 1.2rem;
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.1;
}
.goto_btn .annotation a {
  text-decoration: underline;
  color: #334BA5;
}

/*==================================================================
    .tbl01
===================================================================*/
.tbl01 {
  width: 100%;
  margin-bottom: 60px;
  word-break: break-word;
}
.tbl01.-adj {
  margin-bottom: 80px;
}
.tbl01 tbody {
  color: #3C3C3C;
}
.tbl01 tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px solid #a6a6a6;
}
.tbl01 tbody tr.-noline {
  border: none;
}
.tbl01 tbody tr.-joint th, .tbl01 tbody tr.-joint td {
  padding-bottom: 0px;
}
.tbl01 tbody tr.-nopd th, .tbl01 tbody tr.-nopd td {
  padding: 0px;
}
.tbl01 tbody .change {
  background-color: rgba(188, 0, 0, 0.1);
}
.tbl01 tbody th {
  padding: 12px 8px;
  white-space: nowrap;
  min-width: 8em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.tbl01 tbody th.-block {
  display: block;
  width: 100%;
  padding-bottom: 4px;
}
.tbl01 tbody th span {
  display: inline-block;
  line-height: 18px;
  border-radius: 10px;
  font-size: 1rem;
  color: #fff;
  background-color: #ac2317;
  text-align: center;
  padding: 0px 4px;
  margin-left: 5px;
}
.tbl01 tbody td {
  padding: 12px 8px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .tbl01 tbody td {
    padding: 18px 12px;
  }
}
.tbl01 tbody td.-block {
  display: block;
  width: 100%;
  padding-top: 0;
}
.tbl01 tbody td.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  padding-top: 0;
}
.tbl01 tbody td.-flex input[type=text]:first-child {
  margin-right: 10px;
}
.tbl01 tbody td .mail {
  word-break: break-all;
}
.tbl01 thead th {
  background-color: rgba(98, 79, 17, 0.15);
  font-weight: 700;
  line-height: 30px;
  color: #4D4D4D;
  padding-left: 10px;
  margin-top: 10px;
}
.tbl01 thead th.-sbw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tbl01 thead th.-sbw span {
  padding-right: 10px;
  cursor: pointer;
}
.tbl01.pointuser th {
  font-size: 2rem;
  padding: 0 10px;
}
.tbl01.pointuser td {
  font-weight: bold !important;
  font-size: 2rem;
  padding: 0 10px;
}

/*==================================================================
    .tbl02
===================================================================*/
.tbl02 {
  width: 100%;
  word-break: break-word;
}
.tbl02 tbody {
  color: #3C3C3C;
}
.tbl02 tbody th {
  font-weight: 700;
  display: block;
  width: 100%;
  padding: 12px 8px 0px;
  white-space: nowrap;
  min-width: 8em;
}
@media screen and (min-width: 768px) {
  .tbl02 tbody th {
    padding-bottom: 5px;
  }
}
.tbl02 tbody th.-block {
  display: block;
  width: 100%;
  padding-bottom: 4px;
}
.tbl02 tbody th span {
  display: inline-block;
  line-height: 18px;
  border-radius: 10px;
  font-size: 1rem;
  color: #fff;
  background-color: #ac2317;
  text-align: center;
  padding: 0px 4px;
  margin-left: 5px;
}
.tbl02 tbody th.-line {
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
}
.tbl02 tbody td {
  display: block;
  width: 100%;
  padding: 5px 8px 10px;
  line-height: 1.6;
}
.tbl02 tbody td.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tbl02 tbody td.-flex input[type=text]:first-child {
  margin-right: 10px;
}
.tbl02 tbody td.-flex label {
  padding-right: 15px;
}
.tbl02 tbody td.-flex label:last-child {
  padding-right: 0px;
}
.tbl02 tbody td.-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.tbl02 tbody td.-column input[type=text]:first-child {
  margin-right: 10px;
}
.tbl02 tbody td.-column label {
  margin-bottom: 8px;
}
.tbl02 tbody td.-column label:last-child {
  margin-bottom: 0px;
}
.tbl02 tbody .point_tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}
.tbl02 tbody .point_tr td {
  padding-bottom: 0px;
}
.tbl02 thead th {
  background-color: rgba(98, 79, 17, 0.15);
  font-weight: 700;
  line-height: 30px;
  color: #4D4D4D;
  padding-left: 10px;
  margin-top: 10px;
  position: relative;
}
.tbl02 thead th span {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  font-weight: normal;
  font-size: 1.2rem;
  border-radius: 2px;
  color: #6F7070;
  border: 1px solid #ccc;
  line-height: 22px;
  padding: 0px 8px;
  cursor: pointer;
}

/*==================================================================
    .tbl03
===================================================================*/
.tbl03 {
  width: 100%;
  margin-bottom: 60px;
  word-break: break-word;
}
.tbl03.-adj {
  margin-bottom: 80px;
}
.tbl03 tbody {
  color: #3C3C3C;
}
.tbl03 tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px solid #a6a6a6;
}
.tbl03 tbody tr.-noline {
  border: none;
}
.tbl03 tbody th {
  padding: 12px 8px;
  white-space: nowrap;
  min-width: 11em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.tbl03 tbody td {
  padding: 12px 8px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  width: calc(100% - 10em);
}
@media screen and (min-width: 768px) {
  .tbl03 tbody td {
    padding: 18px 12px;
    width: 500px;
  }
}
.tbl03 tbody td.-block {
  display: block;
  width: 100%;
  padding-top: 0;
}
.tbl03 tbody td.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0;
}
.tbl03 tbody td.-flex input[type=text]:first-child {
  margin-right: 10px;
}
.tbl03 tbody td .mail {
  word-break: break-all;
}
.tbl03 thead th {
  background-color: rgba(98, 79, 17, 0.15);
  font-weight: 700;
  line-height: 30px;
  color: #4D4D4D;
  padding-left: 10px;
  margin-top: 10px;
}
.tbl03 thead th.-sbw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tbl03 thead th.-sbw span {
  padding-right: 10px;
  cursor: pointer;
}

/*==================================================================
    .tbl04
===================================================================*/
.tbl04 {
  width: 100%;
  margin-bottom: 60px;
  word-break: break-word;
}
.tbl04 tbody {
  color: #3C3C3C;
}
.tbl04 tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.tbl04 tbody th {
  padding: 5px;
  white-space: nowrap;
  min-width: 11em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.tbl04 tbody td {
  padding: 5px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  width: calc(100% - 10em);
}
@media screen and (min-width: 768px) {
  .tbl04 tbody td {
    padding: 8px;
  }
}
.tbl04 tbody td.-block {
  display: block;
  width: 100%;
  padding-top: 0;
}
.tbl04 tbody td.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0;
}
.tbl04 tbody td.-flex input[type=text]:first-child {
  margin-right: 10px;
}
.tbl04 tbody td .mail {
  word-break: break-all;
}
.tbl04 thead th {
  background-color: rgba(98, 79, 17, 0.15);
  font-weight: 700;
  line-height: 30px;
  color: #4D4D4D;
  padding-left: 10px;
  margin-top: 10px;
}
.tbl04 thead th.-sbw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tbl04 thead th.-sbw span {
  padding-right: 10px;
  cursor: pointer;
}

/*==================================================================
    .header
===================================================================*/
.header {
  background-color: #fff;
  position: relative;
  left: 0;
  right: 0;
  z-index: 999;
}
.header_trigger {
  display: block;
  width: 40px;
  height: 33px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  z-index: 9999;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
@media screen and (min-width: 768px) {
  .header_trigger {
    right: 30px;
  }
}
.header_trigger.-close {
  top: 20px;
  -webkit-transform: unset;
          transform: unset;
}
.header_trigger.-close img {
  width: auto !important;
}
.header::after {
  content: "";
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(10, 27, 157)), to(rgb(61, 148, 217)));
  background: linear-gradient(90deg, rgb(10, 27, 157) 0%, rgb(61, 148, 217) 100%);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.header .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  border-radius: 50%;
  background-color: #bc0000;
  position: absolute;
  right: -8px;
  top: -8px;
  z-index: 2;
}
.header_inner {
  padding: 10px 70px 14px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-width: 1100px;
  margin: 0px auto;
  height: 126px;
}
@media screen and (max-width: 768px) {
  .header_inner {
    height: 70px;
  }
}
.header_inner.-top {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  right: 0;
}
.header_inner.-top a {
  color: #fff !important;
}
.header_inner_lite {
  padding: 10px 80px 7px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 126px;
}
@media screen and (max-width: 768px) {
  .header_inner_lite {
    height: 70px;
  }
}
.header_inner_lite.-top {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  right: 0;
}
.header_inner_lite.-top a {
  color: #fff !important;
}
.header_inner_lite::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 70px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.header_logo {
  margin-right: 5px;
  top: 13px;
  height: 100px;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}
@media screen and (max-width: 768px) {
  .header_logo {
    height: 54px;
  }
}
@media screen and (min-width: 768px) {
  .header_logo img {
    width: 150px;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
  }
}
.header_logo img.scroll {
  width: unset;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
.header_login {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .header_login {
    padding-right: 20px;
  }
}
.header_login .login a {
  font-size: 1.3rem;
  font-weight: 500;
  color: #4d4d4d;
  text-decoration: underline;
}
.header_login .login-after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_login .login-after .outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.header_login .login-after .thumb {
  width: 32px;
  height: auto;
  margin-right: 5px;
}
.header_login .login-after .info {
  margin-right: 5px;
  color: #4d4d4d;
}
.header_login .login-after .info .name {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .header_login .login-after .info .name {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.header_login .login-after .info .point {
  font-size: 1rem;
  margin-bottom: 0.4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .header_login .login-after .info .point {
    font-size: 1.3rem;
  }
}
.header_login .login-after .info .point span {
  line-height: 1.3;
}
.header_login .login-after .info .point span:first-child {
  padding-right: 5px;
}
.header_login .login-after .info .point span:first-child img {
  max-width: 30px;
}
@media screen and (min-width: 768px) {
  .header_login .login-after .info .point span:first-child img {
    max-width: 50px;
  }
}
.header_login .login-after .info .point span em {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .header_login .login-after .info .point span em {
    font-size: 1.8rem;
  }
}
.header_login .login-after .info .date {
  font-size: 0.8rem;
  color: #808080;
  text-align: right;
}

/*==================================================================
    .menu-trigger
===================================================================*/
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.menu-trigger {
  width: 35px;
  height: 33px;
  cursor: pointer;
  position: relative;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .menu-trigger {
    width: 40px;
  }
}
.menu-trigger img {
  margin: 0px auto;
  width: 100%;
}
.menu-trigger span {
  display: block;
  width: 40px;
  height: 5px;
  background-color: #c4c4c4;
  position: absolute;
  right: 0;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  width: 30px;
  top: 14px;
}
.menu-trigger span:nth-of-type(3) {
  width: 24px;
  bottom: 0;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger.active span:nth-of-type(1) {
  width: 30px;
  -webkit-transform: translateY(14px) rotate(-315deg);
  transform: translateY(14px) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  width: 30px;
  -webkit-transform: translateY(-14px) rotate(315deg);
  transform: translateY(-14px) rotate(315deg);
}

.guestmode .header {
  background: -webkit-gradient(linear, left top, right top, from(#0A9D5F), to(#3DA9D9));
  background: linear-gradient(90deg, #0A9D5F 0%, #3DA9D9 100%);
  position: relative;
  left: 0;
  right: 0;
  z-index: 999;
}
.guestmode .header_trigger {
  display: block;
  width: 40px;
  height: 33px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  z-index: 9999;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
@media screen and (min-width: 768px) {
  .guestmode .header_trigger {
    right: 30px;
  }
}
.guestmode .header_trigger.-close {
  top: 20px;
  -webkit-transform: unset;
          transform: unset;
}
.guestmode .header_trigger.-close img {
  width: auto !important;
}
.guestmode .header::after {
  content: "";
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#0A9D5F), to(#3DA9D9));
  background: linear-gradient(90deg, #0A9D5F 0%, #3DA9D9 100%);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.guestmode .header_inner::after {
  background-color: transparent !important;
}
.guestmode .header_guest {
  text-align: center;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 2.2rem;
}
.guestmode_notice {
  text-align: center;
  color: #ac2317;
  font-weight: bold;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.guestmode_notice img {
  margin-right: 3px;
}

.index .header {
  position: relative;
  left: 0;
  right: 0;
  z-index: 999;
}
.index .header_trigger {
  display: block;
  width: 40px;
  height: 33px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  z-index: 9999;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
@media screen and (min-width: 768px) {
  .index .header_trigger {
    right: 30px;
  }
}
.index .header_trigger.-close {
  top: 20px;
  -webkit-transform: unset;
          transform: unset;
}
.index .header_trigger.-close img {
  width: auto !important;
}
.index .header::after {
  content: "";
  display: none;
}
.index .header_inner::after {
  background-color: transparent !important;
}
.index .header_jr {
  padding: 10px 20px 10px 0;
}
@media screen and (max-width: 768px) {
  .index .header_jr {
    padding-right: 0;
  }
}
.index .header_jr img {
  height: 40px;
}
@media screen and (max-width: 768px) {
  .index .header_jr img {
    height: 34px;
  }
}
.index .header_inner {
  padding: 10px 70px 14px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-width: 1100px;
  margin: 0px auto;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .index .header_inner {
    height: 60px;
  }
}
.index .header_inner.-top {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  right: 0;
}
.index .header_inner.-top a {
  color: #fff !important;
}
.index .header_logo {
  margin-right: 5px;
  height: 70px;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  height: 56px;
}
@media screen and (max-width: 768px) {
  .index .header_logo {
    height: 50px;
  }
}
.index .header_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.index .header_logo img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .index .header_logo img {
    width: 132px;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
  }
}
.index .header_logo img.scroll {
  width: unset;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

/*==================================================================
    .nav
===================================================================*/
.nav {
  width: 90%;
  max-width: 400px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #334BA5), to(#3D94D9)) no-repeat;
  background: linear-gradient(to bottom, #334BA5 30%, #3D94D9 100%) no-repeat;
  color: #fff;
  position: fixed;
  top: 0;
  right: -400px;
  z-index: 9999;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.nav.open {
  right: 0px;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.nav_box {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.nav_inner {
  padding: 75px 6.6666666667vw 25px;
  border-bottom: solid 1px #fff;
}
@media screen and (min-width: 768px) {
  .nav_inner {
    padding: 75px 40px 25px;
  }
}
.nav .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}
.nav .name_icon {
  margin-right: 15px;
}
.nav .name_txt {
  font-size: 1.8rem;
  font-weight: 500;
}
.nav .blocks {
  padding: 15px 0;
  border-bottom: solid 1px #fff;
}
.nav .blocks:last-of-type {
  border-bottom: none;
}
.nav .blocks_ttl {
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav .blocks_ttl a {
  display: block;
  color: #fff;
  background-image: url(../img/common/icon_arrow_01.svg);
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  line-height: 40px;
}
.nav .blocks_list {
  padding: 1em 10px;
}
.nav .blocks_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.nav .blocks_item:last-of-type {
  margin-bottom: 0;
}
.nav .blocks_item a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .nav .blocks_item a {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.nav .blocks_item .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  width: 18px;
  height: 18px;
  background-color: #bc0000;
  border-radius: 50%;
  margin-left: 0.6em;
}
.nav .blocks_slider {
  margin: 0 -8vw 0 0;
}
.nav .blocks .slider-nav_item {
  width: 64vw;
  max-width: 240px;
  margin-right: 5px;
}
.nav .blocks .slider-nav_item a {
  display: block;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.nav .blocks .slider-nav_item a dd {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
  color: #4e5560;
  padding: 5px 10px;
}

/*==================================================================
    .slider
===================================================================*/
/*==================================================================
    .overlay
===================================================================*/
.overlay {
  display: block;
  width: 100vw;
  height: 100vh;
  /* Fallback */
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.overlay.open {
  visibility: visible;
  opacity: 1;
  z-index: 9;
}

/*==================================================================
    .search
===================================================================*/
.search {
  position: fixed;
  bottom: 22.6666666667vw;
  right: 0;
  z-index: 9;
}

/*==================================================================
    .footer
===================================================================*/
.footer_sns {
  padding: 15px 0 20px;
  background-color: #f2f4f5;
}
.footer_sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer_sns ul li {
  width: 47px;
  margin: 0 10px;
}
.footer_links {
  padding: 20px 0;
  background-color: #d3d9de;
  font-size: 1.2rem;
}
.footer_links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer_links ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.footer_links ul li::after {
  display: inline-block;
  content: "│";
}
.footer_links ul li:last-child::after {
  display: none;
}
.footer_links ul li a {
  display: inline-block;
  padding: 0 0.6em;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.01em;
}
.footer small {
  text-align: center;
  font-size: 1.1rem;
  color: #606060;
  padding: 15px 0;
  border-top: 1px solid #DBDBDB;
  display: block;
}

/*==================================================================
    .hero
===================================================================*/
.hero {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
.hero_inner {
  width: 100%;
  max-width: 1920px;
  margin: 0px auto;
}
.hero_sub img {
  width: 57.8666666667vw;
  max-width: 217px;
}
.hero_copy {
  position: absolute;
  left: 100px;
  top: 30%;
  z-index: 1;
  width: 80%;
  max-width: 836px;
}
@media screen and (max-width: 768px) {
  .hero_copy {
    display: none;
  }
}
.hero_lead {
  width: 100%;
  padding: 24px 4vw;
  height: 15vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .hero_lead {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
  }
}
.hero_lead .img {
  margin-bottom: 5px;
  margin-top: -60px;
}
@media screen and (min-width: 768px) {
  .hero_lead .img {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-right: 15px;
  }
}
.hero_lead .img img {
  width: 21.3333333333vw;
  max-width: 80px;
}
.hero_lead .lead {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #00137B;
  letter-spacing: 0.1em;
  text-align: center;
}
.hero_logo {
  position: absolute;
  left: 15px;
  top: 15px;
}
@media screen and (min-width: 768px) {
  .hero_logo {
    left: 30px;
    top: 30px;
  }
}

.pagettl {
  padding-top: 20px;
}

/*==================================================================
    .search-box
===================================================================*/
@media screen and (min-width: 768px) {
  .search-box {
    max-width: 800px;
    margin: 0px auto;
  }
}
.search-box_ttl {
  font-size: 1.8rem;
  line-height: 1.75;
  font-weight: 400;
  color: #1e2b40;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .search-box_ttl {
    font-size: 2.4rem;
  }
}
.search-box_ttl span {
  line-height: 0;
  margin-bottom: 10px;
}
.search-box_ttl span img {
  width: 6.6666666667vw;
  max-width: 25px;
}
.search-box_ttl.-re {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.search-box_ttl.-re span {
  margin-right: 5px;
}
.search-box_tbl {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 47.8px;
}
.search-box_tbl tr.-line {
  border-bottom: 1px solid #808080;
}
.search-box_tbl th {
  width: 25%;
  padding: 0.6em 0.8em 0.6em 0.2em;
  padding-bottom: 0px;
  padding-top: 0px;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1.4;
  color: #3c3c3c;
  position: relative;
}
@media screen and (min-width: 768px) {
  .search-box_tbl th {
    width: 20%;
    font-size: 1.8rem;
  }
}
.search-box_tbl th .hint {
  display: inline-block;
  position: absolute;
  right: 0.8em;
  top: 0.6em;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .search-box_tbl th .hint img {
    width: 20px;
    height: 20px;
  }
}
.search-box_tbl td {
  width: 75%;
  padding: 0.4em 0;
  padding-bottom: 0px;
  padding-top: 0px;
  position: relative;
  color: #808080;
}
@media screen and (min-width: 768px) {
  .search-box_tbl td {
    width: 80%;
  }
}
.search-box_tbl td .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.search-box_tbl td .flex_item {
  width: 48%;
  margin-right: 2%;
}
.search-box_tbl td .flex_item:last-child {
  margin-right: 0;
}
.search-box_tbl td .flex_item dt {
  font-size: 1.2rem;
  line-height: 1.6;
}
.search-box input,
.search-box select {
  font-size: 1.6rem;
  color: #000;
  padding: 0.8em 1em;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: solid 1px #d9d9d9;
}
@media screen and (min-width: 768px) {
  .search-box input,
.search-box select {
    font-size: 1.8rem;
  }
}
.search-box .select-wrap {
  position: relative;
  width: 100%;
}
.search-box .select-wrap:after {
  display: block;
  content: "";
  width: 11px;
  height: 6px;
  background-image: url(../img/common/icon_caret_down-blue.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.search-box .datepicker {
  background-image: url(../img/common/icon_calender.svg);
  background-repeat: no-repeat;
  background-size: 18px 19px;
  background-position: right 10px center;
}

/*==================================================================
    modal
===================================================================*/
.modal-box {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.modal-box_bg {
  background: rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 100%;
}
.modal-box_content {
  width: 100%;
  padding: 4vw 3vw;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 600px;
}
.modal-box_inner {
  max-height: calc(100vh - 8vw);
  overflow-y: scroll;
  padding: 4vw 3vw;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
  position: relative;
  border-radius: 15px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  .modal-box_inner {
    padding: 40px 30px;
  }
}
.modal-box_inner::-webkit-scrollbar {
  display: none;
}
.modal-box_inner .close {
  font-size: 2rem;
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}
.modal-box_inner .main-ttl {
  font-weight: 500;
  color: #3c3c3c;
  margin-bottom: 0.6em;
}
.modal-box_inner .blocks {
  margin-bottom: 20px;
}
.modal-box_inner .blocks.-last {
  margin-bottom: 30px;
}
.modal-box_inner .blocks_ttl {
  font-size: 1.2rem;
  font-weight: 500;
  color: #4d4d4d;
  padding: 0.3em 0.5em;
  background-color: rgba(98, 79, 17, 0.15);
  margin-bottom: 20px;
}
.modal-box_inner .blocks_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.modal-box_inner .blocks_row-img {
  width: 60px;
  margin-right: 15px;
}
.modal-box_inner .blocks_row-txt {
  width: calc(100% - 75px);
}
.modal-box_inner .blocks_row-txt p {
  font-size: 1rem;
  line-height: 1.7;
  color: #3c3c3c;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .modal-box_inner .blocks_row-txt p {
    font-size: 1.4rem;
  }
}
.modal-box_inner .blocks_row-txt p em {
  font-weight: 700;
}
.modal-box_inner .blocks_row-txt p span {
  font-size: 1.2rem;
  color: #bc0000;
}
.modal-box_inner .blocks_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-box_inner .blocks_column-img {
  margin-bottom: 0.8em;
  max-width: 320px;
}
.modal-box_inner .blocks_column-txt p {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.modal-box_inner .blocks_column-txt p span {
  color: #bc0000;
}
.modal-box_inner .blocks .caution {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #3c3c3c;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .modal-box_inner .blocks .caution {
    font-size: 1.1rem;
  }
}
.modal-box_inner .blocks .caution a {
  color: #4068a8;
  text-decoration: underline;
}
.modal-box .modal-point {
  padding-top: 35px;
  padding-bottom: 65px;
  border-radius: 10px;
}
.modal-box .modal-point .blue-title {
  color: #2C4BAB;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 2px solid #2C4BAB;
  padding-bottom: 6.5px;
  margin-bottom: 11px;
}
.modal-box .modal-point .example-txt {
  height: 30px;
  line-height: 30px;
  width: 100%;
  background-color: #E8ECEC;
  padding-left: 15px;
  margin-bottom: 10px;
}
.modal-box .modal-point .gray-txt {
  font-size: 14px;
  color: #4E5560;
}
.modal-box .modal-point .gray-txt span {
  font-weight: bold;
}
.modal-box .modal-point .point-img {
  display: block;
  width: 100%;
  max-width: 311px;
  margin: 0 auto;
}
.modal-box .modal-delete {
  padding-top: 78px;
  padding-bottom: 68px;
  border-radius: 10px;
}
.modal-box .modal-delete h3 {
  font-size: 22px;
  color: #1E2B40;
  text-align: center;
  line-height: 1.8;
}
.modal-box .modal-delete p {
  font-size: 14px;
  color: #4E5560;
  margin: 37px 0px;
}
.modal-box .modal-delete .btn {
  margin-bottom: 15px;
  border-radius: 3px;
}
.modal-box .modal-delete .btn:last-child {
  margin-bottom: 0px;
}

.destination-modal-box {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.destination-modal-box_bg {
  background: rgba(0, 0, 0, 0.9);
  height: 100vh;
  width: 100%;
}
.destination-modal-box_content {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 600px;
  padding: 0px 20px;
}
.destination-modal-box_inner {
  max-height: calc(100vh - 8vw);
  overflow-y: scroll;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.destination-modal-box_inner::-webkit-scrollbar {
  display: none;
}
.destination-modal-box_inner .close {
  font-size: 2rem;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
  color: #fff;
  cursor: pointer;
}
.destination-modal-box_inner dl {
  padding: 20px;
}
.destination-modal-box_inner dl dt {
  border-bottom: 2px solid #2C4BAB;
  color: #2C4BAB;
  font-weight: bold;
  font-size: 1.6rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.destination-modal-box .slick-arrow {
  background-color: transparent !important;
  z-index: 4 !important;
  width: 20px !important;
  height: 20px !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center !important;
}
.destination-modal-box .slick-arrow::before {
  display: none;
}
.destination-modal-box .slick-prev {
  top: 22% !important;
  left: 5px !important;
  background-image: url(../img/common/icon-arrow-left-white01.svg) !important;
  background-repeat: no-repeat !important;
}
@media screen and (min-width: 768px) {
  .destination-modal-box .slick-prev {
    top: 30% !important;
  }
}
.destination-modal-box .slick-next {
  top: 22% !important;
  right: 5px !important;
  background-image: url(../img/common/icon-arrow-right-white01.svg) !important;
}
@media screen and (min-width: 768px) {
  .destination-modal-box .slick-next {
    top: 30% !important;
  }
}
.destination-modal-box .slick-dots button::before {
  content: "●" !important;
}

/*==================================================================
    .caution-box
===================================================================*/
.caution-box {
  padding: 15px;
  background-color: rgba(172, 35, 23, 0.1);
  border-radius: 6px;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.caution-box_ttl {
  font-weight: 700;
  color: #bc0000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.6em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.caution-box_ttl::before {
  display: block;
  content: "";
}
.caution-box_ttl.-jc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.caution-box_txt {
  line-height: 1.7;
  color: #494949;
}
.caution-box_txt span {
  font-weight: 700;
}
.caution-box_txt.-red {
  color: #bc0000;
}
.caution-box_txt a {
  cursor: pointer;
  text-decoration: underline;
}

/*==================================================================
    .progress
===================================================================*/
.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 10px 4vw 20px;
}
@media screen and (min-width: 768px) {
  .progress {
    max-width: 1100px;
    margin: 0px auto 40px;
    padding: 40px 30px 20px;
  }
}
.progress .item {
  background: #B1BBC4;
  color: #fff;
  width: 30%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  line-height: 1.2;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .progress .item {
    font-size: 1.4rem;
    width: 25% !important;
  }
}
.progress .item_txt {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  left: calc(50% + 12px);
  text-align: center;
}
.progress .item em {
  font-weight: bold;
  line-height: 1.2;
  display: block;
  padding-bottom: 4px;
  font-size: 1.1rem;
  text-align: center;
}
.progress .item::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 28px;
  border-color: transparent transparent transparent #b1bbc4;
  position: absolute;
  right: -25px;
  top: 0;
  z-index: 1;
}
.progress .item::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 28px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: -28px;
  top: 0;
  z-index: 0;
}
.progress .item.-active, .progress .item.-finish {
  background: #334BA5;
  color: #fff;
}
.progress .item.-active::before, .progress .item.-finish::before {
  border-color: transparent transparent transparent #334BA5;
}
.progress .item.-active::after, .progress .item.-finish::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 28px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: -28px;
}
.progress .item:first-child {
  width: 20%;
  z-index: 5;
  padding-left: 10px;
}
.progress .item:first-child .item_txt {
  left: 50%;
}
.progress .item:nth-child(2) {
  width: calc(35% - 25px);
  z-index: 4;
  padding-left: 30px;
}
.progress .item:nth-child(3) {
  width: calc(35% - 25px);
  z-index: 3;
  padding-left: 30px;
}
.progress .item:last-child {
  width: calc(10% + 50px);
  z-index: 2;
  padding-left: 30px;
}
.progress .item:last-child::before, .progress .item:last-child::after {
  display: none;
}
.progress picture {
  width: 100%;
}

/*==================================================================
    animation
===================================================================*/
/*  setting
---------------------------------------------*/
.animate {
  visibility: hidden;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animate.animated {
  visibility: visible;
}

.aInfinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.aEx {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/*  duration
---------------------------------------------*/
.a0 {
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a1 {
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a2 {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a3 {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a4 {
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a5 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a6 {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a7 {
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a8 {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a9 {
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a10 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a11 {
  -webkit-animation-duration: 1.1s;
          animation-duration: 1.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a12 {
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a13 {
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a14 {
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a15 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a16 {
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a17 {
  -webkit-animation-duration: 1.7s;
          animation-duration: 1.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a18 {
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a19 {
  -webkit-animation-duration: 1.9s;
          animation-duration: 1.9s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a20 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a21 {
  -webkit-animation-duration: 2.1s;
          animation-duration: 2.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a22 {
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a23 {
  -webkit-animation-duration: 2.3s;
          animation-duration: 2.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a24 {
  -webkit-animation-duration: 2.4s;
          animation-duration: 2.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a25 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a26 {
  -webkit-animation-duration: 2.6s;
          animation-duration: 2.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a27 {
  -webkit-animation-duration: 2.7s;
          animation-duration: 2.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a28 {
  -webkit-animation-duration: 2.8s;
          animation-duration: 2.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a29 {
  -webkit-animation-duration: 2.9s;
          animation-duration: 2.9s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a30 {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a31 {
  -webkit-animation-duration: 3.1s;
          animation-duration: 3.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a32 {
  -webkit-animation-duration: 3.2s;
          animation-duration: 3.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a33 {
  -webkit-animation-duration: 3.3s;
          animation-duration: 3.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a34 {
  -webkit-animation-duration: 3.4s;
          animation-duration: 3.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a35 {
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a36 {
  -webkit-animation-duration: 3.6s;
          animation-duration: 3.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a37 {
  -webkit-animation-duration: 3.7s;
          animation-duration: 3.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a38 {
  -webkit-animation-duration: 3.8s;
          animation-duration: 3.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a39 {
  -webkit-animation-duration: 3.9s;
          animation-duration: 3.9s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a40 {
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a41 {
  -webkit-animation-duration: 4.1s;
          animation-duration: 4.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a42 {
  -webkit-animation-duration: 4.2s;
          animation-duration: 4.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a43 {
  -webkit-animation-duration: 4.3s;
          animation-duration: 4.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a44 {
  -webkit-animation-duration: 4.4s;
          animation-duration: 4.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a45 {
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a46 {
  -webkit-animation-duration: 4.6s;
          animation-duration: 4.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a47 {
  -webkit-animation-duration: 4.7s;
          animation-duration: 4.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a48 {
  -webkit-animation-duration: 4.8s;
          animation-duration: 4.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a49 {
  -webkit-animation-duration: 4.9s;
          animation-duration: 4.9s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a50 {
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/*  delay
---------------------------------------------*/
.aD0 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.aD1 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.aD2 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.aD3 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.aD4 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.aD5 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.aD6 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.aD7 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.aD8 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.aD9 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.aD10 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.aD11 {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.aD12 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.aD13 {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.aD14 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.aD15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.aD16 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.aD17 {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.aD18 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.aD19 {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}

.aD20 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.aD21 {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.aD22 {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.aD23 {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}

.aD24 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.aD25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.aD26 {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

.aD27 {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.aD28 {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

.aD29 {
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}

.aD30 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.aD31 {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}

.aD32 {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.aD33 {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
}

.aD34 {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.aD35 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.aD36 {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

.aD37 {
  -webkit-animation-delay: 3.7s;
          animation-delay: 3.7s;
}

.aD38 {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}

.aD39 {
  -webkit-animation-delay: 3.9s;
          animation-delay: 3.9s;
}

.aD40 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.aD41 {
  -webkit-animation-delay: 4.1s;
          animation-delay: 4.1s;
}

.aD42 {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

.aD43 {
  -webkit-animation-delay: 4.3s;
          animation-delay: 4.3s;
}

.aD44 {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}

.aD45 {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

.aD46 {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}

.aD47 {
  -webkit-animation-delay: 4.7s;
          animation-delay: 4.7s;
}

.aD48 {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}

.aD49 {
  -webkit-animation-delay: 4.9s;
          animation-delay: 4.9s;
}

.aD50 {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

/*==================================================================
    #top .headline
===================================================================*/
#top {
  overflow-x: unset;
}

#top .headline {
  padding: 0px 0px 60px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #top .headline {
    padding: 0px 0px 80px;
  }
}
#top .headline_lead {
  width: 100%;
  padding: 24px 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  margin-top: -10px;
}
@media screen and (min-width: 768px) {
  #top .headline_lead {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
#top .headline_lead .img {
  margin-bottom: 5px;
  margin-top: -60px;
}
@media screen and (min-width: 768px) {
  #top .headline_lead .img {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-right: 15px;
  }
}
#top .headline_lead .img img {
  width: 21.3333333333vw;
  max-width: 80px;
}
#top .headline_lead .lead {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #00137B;
  letter-spacing: 0.1em;
  text-align: center;
}
#top .headline li {
  margin-bottom: 20px;
}
#top .headline li:last-child {
  margin-bottom: 0;
}
#top .headline.-adjust {
  margin-top: -120px;
  z-index: 4;
  position: relative;
  background: #fff;
  padding: 100px 0 0;
}

/*==================================================================
    #top .campaign
===================================================================*/
#top .campaign {
  background-color: #ECF1F4;
  padding: 60px 0px 80px;
  position: relative;
}
#top .campaign::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 0 0 100vw;
  border-color: #ECF1F4 transparent transparent transparent;
}
#top .campaign li {
  margin-bottom: 10px;
}
#top .campaign li.nodata {
  margin-bottom: 0;
  padding: 30px 0;
  text-align: center;
  color: #999999;
}
#top .campaign_ttl {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 25px;
}

/*==================================================================
    #top .howto
===================================================================*/
#top .howto {
  padding: 50px 0;
  z-index: 2;
  position: relative;
}
#top .howto_video {
  max-width: 720px;
  width: 100%;
  margin: 0px auto 70px;
}
@media screen and (max-width: 768px) {
  #top .howto_video {
    margin: 0px auto 40px;
  }
}
#top .howto_upper {
  width: 100%;
  height: 50vh;
  background-image: url(../img/top/img-where_bg-upper.jpg);
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
}
#top .howto_upper::before {
  display: block;
  content: "";
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, #2A3ED5), color-stop(50.5%, transparent)) no-repeat;
  background: linear-gradient(to top left, #2A3ED5 50%, transparent 50.5%) no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
#top .howto_upper::after {
  display: block;
  content: "";
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, transparent), color-stop(50.5%, #fff)) no-repeat;
  background: linear-gradient(to top right, transparent 50%, #fff 50.5%) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
#top .howto_inner {
  padding-top: 40px;
  padding-bottom: 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(#2A3ED5), to(#76C2DE));
  background: linear-gradient(to bottom, #2A3ED5 0%, #76C2DE 100%);
}
#top .howto_inner .paragraph_ttl {
  margin-top: -100px;
  z-index: 3;
  position: relative;
}
@media screen and (min-width: 768px) {
  #top .howto_inner .paragraph_ttl {
    margin-top: 0px;
  }
}
#top .howto_bottom {
  width: 100%;
  height: 70px;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  z-index: 2;
  margin-top: -70px;
}
#top .howto_bottom::before {
  display: block;
  content: "";
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, #fff), color-stop(50.5%, transparent)) no-repeat;
  background: linear-gradient(to top left, #fff 50%, transparent 50.5%) no-repeat;
  position: absolute;
  bottom: 70px;
  left: 0;
  z-index: 2;
}
#top .howto_step {
  max-width: 800px;
  margin: 0px auto 20px;
}
#top .howto_blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
@media screen and (min-width: 768px) {
  #top .howto_blocks {
    padding-bottom: 30px;
  }
}
#top .howto_num {
  width: 50px;
  padding: 5px;
  text-align: center;
  position: relative;
}
#top .howto_num::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  #top .howto_num::before {
    height: calc(100% + 30px);
  }
}
#top .howto_num img {
  display: inline-block;
  position: relative;
  z-index: 2;
}
#top .howto_num.-blk07::before {
  display: none;
}
#top .howto_content {
  width: calc(100% - 50px);
  padding: 0px 0 30px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
#top .howto_content.-blk07 {
  border: none;
}
#top .howto_content .img {
  width: 120px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #top .howto_content .img {
    width: 200px;
  }
}
#top .howto_content .img.-blk01 img {
  width: 164px;
}
#top .howto_content .img.-blk02 img {
  width: 142px;
}
#top .howto_content .img.-blk03 img {
  width: 154px;
}
#top .howto_content .img.-blk04 img {
  width: 162px;
}
#top .howto_content .img.-blk05 img {
  width: 146px;
}
#top .howto_content .img.-blk06 img {
  width: 164px;
}
#top .howto_content .img.-blk07 {
  z-index: 5;
  position: relative;
}
#top .howto_content .img.-blk07 img {
  width: 180px;
}
#top .howto_content .txt {
  width: calc(100% - 120px);
  padding-right: 8px;
}
@media screen and (min-width: 768px) {
  #top .howto_content .txt {
    width: calc(100% - 200px);
  }
}
#top .howto_content .txt p {
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  #top .howto_content .txt p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

/*==================================================================
    #top .about
===================================================================*/
#top .about {
  padding: 0 0 45px;
  position: relative;
  color: #fff;
}
#top .about_upper {
  width: 100%;
  height: 50vh;
  background-image: url(../img/top/img-about_bg-upper.jpg);
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
}
#top .about_upper::before {
  display: block;
  content: "";
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, #2A3ED5), color-stop(50.5%, transparent)) no-repeat;
  background: linear-gradient(to top left, #2A3ED5 50%, transparent 50.5%) no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
#top .about_upper::after {
  display: block;
  content: "";
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, transparent), color-stop(50.5%, #ECF1F4)) no-repeat;
  background: linear-gradient(to top right, transparent 50%, #ECF1F4 50.5%) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
#top .about_bottom {
  width: 100%;
  height: 50vh;
  background-image: url(../img/top/img-about_bg-bottom.jpg);
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
}
#top .about_bottom::before {
  display: block;
  content: "";
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, #fff), color-stop(50.5%, transparent)) no-repeat;
  background: linear-gradient(to top right, #fff 50%, transparent 50.5%) no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
#top .about_bottom::after {
  display: block;
  content: "";
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, transparent), color-stop(50.5%, #76C2DE)) no-repeat;
  background: linear-gradient(to top left, transparent 50%, #76C2DE 50.5%) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
#top .about_inner {
  padding-top: 40px;
  padding-bottom: 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(#2A3ED5), to(#76C2DE));
  background: linear-gradient(to bottom, #2A3ED5 0%, #76C2DE 100%);
}
#top .about_inner .paragraph_ttl {
  margin-top: -100px;
  z-index: 3;
  position: relative;
}
@media screen and (min-width: 768px) {
  #top .about_inner .paragraph_ttl {
    margin-top: 0px;
  }
}
#top .about_blocks {
  margin-bottom: 40px;
}
#top .about_blocks .ttl {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  margin-bottom: 0.8em;
}
#top .about_blocks .ttl span {
  font-size: 1.7rem;
  line-height: 1.7;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 0.2em;
  border-bottom: 2px solid #fff;
  display: inline-block;
}
#top .about_blocks .txt {
  line-height: 1.7;
}
#top .about_blocks dl {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 15px;
  margin-top: 15px;
  border-radius: 10px;
}
#top .about_blocks dl dt {
  margin-bottom: 10px;
}
#top .about_blocks dl dd {
  padding-left: 15px;
  line-height: 1.5;
}
#top .about_hint {
  padding-top: 15px;
}
#top .about_hint a {
  color: #fff;
  text-decoration: underline;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/*==================================================================
    #top .where
===================================================================*/
#top .where {
  padding: 40px 0 50px;
}
#top .where .slider-wherenav .item {
  text-align: center;
  padding-bottom: 10px;
  color: #808080;
  font-size: 1.8rem;
}
#top .where .slider-wherenav .item.slick-current {
  color: #1F8AEB;
  border-bottom: #1F8AEB 3px solid;
}
#top .where .slider-where {
  max-width: 960px;
  margin: 0px auto;
}
#top .where .slider-where .block {
  padding: 10px;
}
#top .where .slider-where .block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
#top .where .slider-where .block ul li {
  padding: 5px;
  width: 50%;
  position: relative;
}
@media screen and (min-width: 768px) {
  #top .where .slider-where .block ul li {
    width: 33.3333333333%;
    position: relative;
  }
}
#top .where .slider-where .block ul li .overlaybg {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.7) 100%);
  position: absolute;
  left: 5px;
  top: 5px;
  right: 5px;
  bottom: 5px;
  color: #fff;
  z-index: 2;
}
#top .where .slider-where .block ul li .overlaybg span {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2rem;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top .where .slider-where .block ul li .overlaybg span {
    font-size: 1.5rem;
  }
}
#top .where .slider-where .block ul li img {
  position: relative;
  z-index: 1;
}
#top .where .slider-wrap {
  background: -webkit-gradient(linear, left top, left bottom, from(#E8ECEC), color-stop(20%, #fff));
  background: linear-gradient(to bottom, #E8ECEC 0%, #fff 20%);
}
#top .where_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
#top .where_item {
  width: 50vw;
  max-width: 180px;
  height: 50vw;
  max-height: 180px;
  padding: 3px;
}
@media screen and (max-width: 768px) {
  #top .where_item {
    max-width: 50vw;
    max-height: 50vw;
  }
}
#top .where_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  color: #fff;
  background-position: 50% 50%;
  background-size: cover;
}

/*==================================================================
    #top .journey
===================================================================*/
#top .journey {
  padding: 0 0 60px;
}
#top .journey_head {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #top .journey_head img {
    width: 100%;
  }
}
#top .journey_ttl {
  text-align: center;
  margin-bottom: 35px;
}
#top .journey_txt {
  font-size: 1.2rem;
  line-height: 2.3;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
}
#top .journey_catch {
  text-align: center;
  margin-bottom: 40px;
}

.announce {
  border: 2px solid #C21C52;
  padding: 5px 10px;
  background-color: #fff;
  max-width: 690px;
  margin: 0px auto 20px;
}
.announce a {
  color: #C21C52;
}

/*==================================================================
    #top .apply
===================================================================*/
#top .apply {
  padding: 50px 0;
  z-index: 2;
  position: relative;
}
#top .apply_upper {
  width: 100%;
  height: 70px;
  position: relative;
}
#top .apply_upper::after {
  display: block;
  content: "";
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, #CFE2EF), color-stop(50.5%, transparent)) no-repeat;
  background: linear-gradient(to top right, #CFE2EF 50%, transparent 50.5%) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
#top .apply_inner {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #CFE2EF;
}
#top .apply_inner h2 + p {
  text-align: center;
  margin-bottom: 30px;
}
#top .apply_inner h3 {
  margin-bottom: 20px;
  text-align: center;
  color: #000079;
  font-weight: bold;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #000079;
  padding-bottom: 10px;
}
#top .apply_bottom {
  width: 100%;
  height: 70px;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  z-index: 2;
  margin-top: 70px;
}
#top .apply_bottom::before {
  display: block;
  content: "";
  width: 100%;
  height: 70px;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, transparent), color-stop(50.5%, #CFE2EF)) no-repeat;
  background: linear-gradient(to top right, transparent 50%, #CFE2EF 50.5%) no-repeat;
  position: absolute;
  bottom: 70px;
  left: 0;
  z-index: 2;
}
#top .apply_item {
  background-color: #fff;
  border-radius: 4px;
  padding: 40px 15px 20px;
  position: relative;
  border: 1px solid #f7f7f7;
  margin-bottom: 50px;
}
#top .apply_item::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 14px;
  background-image: url(../img/top/icon-arrow-down-db01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#top .apply_item:last-child::after {
  display: none;
}
#top .apply_item span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 94px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  background-color: #000079;
  font-weight: bold;
  text-align: center;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
#top .apply_item dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top .apply_item dl dt {
  width: 90px;
  margin-right: 20px;
}
#top .apply_item dl dd {
  width: calc(100% - 110px);
}
#top .apply_item dl dd p {
  margin-bottom: 20px;
}
#top .apply_item dl dd a {
  text-decoration: underline;
  color: #334BA5;
}
#top .apply_last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 4px;
  position: relative;
  border: 1px solid #f7f7f7;
  margin-bottom: 50px;
  padding: 15px;
}
#top .apply_last img {
  min-width: 80px;
  width: 80px;
  margin-top: -20px;
  margin-left: 10px;
}
#top .apply_last .txt {
  color: #000079;
  font-weight: bold;
  font-size: 1.8rem;
}
#top .apply li {
  margin-bottom: 15px;
}

/*==================================================================
    #search .param
===================================================================*/
#search .param {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  #search .param {
    margin-bottom: 40px;
  }
}
#search .param_list {
  padding: 10px 15px;
  background-color: #e8ecec;
  border-radius: 3px;
}
#search .param_item {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #3c3c3c;
}
@media screen and (min-width: 768px) {
  #search .param_item {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
#search .param_item i {
  min-width: 4em;
  display: inline-block;
  position: relative;
  margin-right: 5px;
  font-style: normal;
}
#search .param_item i::after {
  content: "：";
  position: absolute;
  right: 0;
}

/*==================================================================
    #search .destination
===================================================================*/
#search .destination {
  padding: 0 0 20px;
}
@media screen and (min-width: 768px) {
  #search .destination {
    max-width: 1100px;
    margin: 0px auto;
    padding: 0 30px 100px;
  }
}
#search .destination_ttl {
  font-size: 2.4rem;
  font-weight: 600;
  color: #1e2b40;
  text-align: center;
  letter-spacing: 0.07em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  #search .destination_ttl {
    font-size: 2.8rem;
    margin-bottom: 2em;
  }
}
#search .destination_ttl span {
  font-size: 1.2rem;
}
#search .destination_list {
  margin-bottom: 40px;
}
#search .destination_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  padding: 5px 0;
  border-bottom: solid 1px #cccccc;
  border-top: solid 1px #cccccc;
  margin-top: -1px;
}
#search .destination_img {
  width: 180px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #search .destination_img {
    width: 220px;
  }
}
#search .destination_img i {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top-left-radius: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  #search .destination_img i {
    width: 30px;
    height: 30px;
  }
  #search .destination_img i img {
    width: 16px;
    height: 16px;
  }
}
#search .destination_outline {
  width: calc(100% - 180px);
  padding: 5px 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #search .destination_outline {
    width: calc(100% - 220px);
  }
}
#search .destination_outline .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #1d1d1d;
  margin-bottom: 0.25em;
}
@media screen and (min-width: 768px) {
  #search .destination_outline .ttl {
    margin-bottom: 0.5em;
    font-size: 2rem;
  }
}
#search .destination_outline .ttl a {
  padding-right: 20px;
  position: relative;
  text-decoration: underline;
}
#search .destination_outline .ttl span {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 18px;
  color: #fff;
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #624f11;
  margin-right: 0.2em;
}
#search .destination_outline .tags {
  margin-bottom: 0.2em;
  height: 66px;
  overflow-y: hidden;
}
@media screen and (min-width: 768px) {
  #search .destination_outline .tags {
    margin-bottom: 10px;
    height: auto;
    overflow-y: unset;
  }
}
#search .destination_outline .tags_item {
  margin-bottom: 5px;
  margin-right: 2px;
  display: inline-block;
  font-size: 1rem;
  min-height: 18px;
  color: #4e5560;
  padding: 0 0.6em;
  background-color: #d9d9d9;
  border-radius: 10px;
  line-height: 18px;
}
@media screen and (min-width: 768px) {
  #search .destination_outline .tags_item {
    font-size: 1.4rem;
    padding: 0.3em 1em;
    border-radius: 15px;
  }
}
#search .destination_outline .tags_item:hover {
  cursor: pointer;
  opacity: 0.8;
}
#search .destination_outline .times {
  font-size: 1rem;
  line-height: 1.2;
  color: #494949;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  #search .destination_outline .times {
    font-size: 1.5rem;
  }
}
#search .destination_outline .times span {
  display: inline-block;
  padding-left: 12px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  margin-right: 0.2em;
}
@media screen and (min-width: 768px) {
  #search .destination_outline .times span {
    background-size: 15px 15px;
    padding-left: 20px;
  }
}
#search .destination_outline .times span.yamabiko, #search .destination_outline .times span.hayabusa {
  color: #009691;
  background-image: url(../img/common/icon_train_01.svg);
}
#search .destination_outline .times span.komachi {
  color: #ce0147;
  background-image: url(../img/common/icon_train_02.svg);
}
#search .destination_outline .times span.toki {
  color: #a5723c;
  background-image: url(../img/common/icon_train_03.svg);
}
#search .destination_outline .times span.hakutaka {
  color: #0125a0;
  background-image: url(../img/common/icon_train_04.svg);
}
#search .destination_outline .times span.tsubasa {
  color: #3c307b;
  background-image: url(../img/common/icon_train_05.svg);
}
#search .destination_outline .times span.tohoku {
  color: #009691;
  background-image: url(../img/common/icon_train_01.svg);
}
#search .destination_outline .times span.akita {
  color: #ce0147;
  background-image: url(../img/common/icon_train_02.svg);
}
#search .destination_outline .times span.joetsu {
  color: #a5723c;
  background-image: url(../img/common/icon_train_03.svg);
}
#search .destination_outline .times span.hokuriku {
  color: #0125a0;
  background-image: url(../img/common/icon_train_04.svg);
}
#search .destination_outline .times span.yamagata {
  color: #3c307b;
  background-image: url(../img/common/icon_train_05.svg);
}
#search .destination_map {
  margin-bottom: 20px;
}
#search .destination_map .map {
  width: 100%;
  height: 0;
  padding-top: 30%;
  position: relative;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #search .destination_map .map {
    padding-top: 120%;
  }
}
@media screen and (min-width: 768px) {
  #search .destination_map .map {
    padding-top: 40%;
  }
}
#search .destination_map .map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#search .destination_map .line {
  padding: 0 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
@media screen and (min-width: 768px) {
  #search .destination_map .line {
    margin-left: -30px;
    margin-bottom: 40px;
  }
}
#search .destination_map .line_item {
  font-size: 1.2rem;
  color: #494949;
  margin-right: 1.5em;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  #search .destination_map .line_item {
    font-size: 1.5rem;
  }
}
#search .destination_map .line_item::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 4px;
  margin-right: 0.4em;
}
#search .destination_map .line_item.-tohoku::before {
  background-color: #009691;
}
#search .destination_map .line_item.-akita::before {
  background-color: #ce0147;
}
#search .destination_map .line_item.-joetsu::before {
  background-color: #a5723c;
}
#search .destination_map .line_item.-hokuriku::before {
  background-color: #0125a0;
}
#search .destination_map .line_item.-yamagata::before {
  background-color: #3c307b;
}
#search .destination_caution {
  margin-bottom: 0px;
  margin-top: 20px;
}
#search .destination_share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 14px;
}
#search .destination_share p {
  color: #3C3C3C;
  font-size: 13px;
}
#search .destination_share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 10px;
  padding-left: 10px;
}
#search .destination_share ul li {
  width: 26px;
  height: 26px;
}
#search .destination_share ul li:not(:first-child) {
  margin-left: 15px;
}
#search .destination_btn {
  padding: 0px 4vw;
}
@media screen and (min-width: 768px) {
  #search .destination_btn {
    max-width: 400px;
    margin: 0px auto;
    padding: 0;
  }
}

/*==================================================================
    #search .goto
===================================================================*/
#search .goto {
  padding-bottom: 50px;
}
#search .goto_inner {
  background-color: #ecf0f0;
  padding: 35px 4vw 45px;
}
@media screen and (min-width: 768px) {
  #search .goto_inner {
    padding: 70px 4vw 80px;
  }
}

#search .upperlead {
  padding: 20px 0;
}

.guestmode .goto_inner {
  background-color: #ECF4F1 !important;
}

/*==================================================================
    #pages.-error XD20
===================================================================*/
#pages.-error .error {
  padding: 0px 0px 80px;
}
#pages.-error .error_box {
  padding: 20px 15px;
  border-radius: 6px;
  background-color: rgba(172, 35, 23, 0.1);
  color: #ac2317;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #pages.-error .error_box {
    margin-bottom: 40px;
  }
}
#pages.-error .error_box h2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

/*==================================================================
    #pages.-complete XD19,17,15
===================================================================*/
#pages.-complete .complete {
  padding: 0px 0px 80px;
}
#pages.-complete .complete_box {
  padding: 20px 15px;
  border-top: 3px solid #334BA5;
  border-bottom: 3px solid #334BA5;
  color: #334BA5;
  margin-bottom: 40px;
}
#pages.-complete .complete_box p {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #pages.-complete .complete_box p {
    font-size: 2.3rem;
  }
}
#pages.-complete .complete_announce {
  padding: 0px 0px 30px;
  margin-bottom: 40px;
}
#pages.-complete .complete_announce h2 {
  text-align: center;
  color: #ac2317;
  line-height: 1.4;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
#pages.-complete .complete_announce h2 span {
  font-size: 2.6rem;
}
#pages.-complete .complete_announce h2 + p {
  margin-bottom: 20px;
  color: #ac2317;
  text-align: center;
}
#pages.-complete .complete_flow-wrap {
  border: 2px solid #BC0000;
  border-radius: 5px;
  margin-bottom: 60px;
  position: relative;
}
#pages.-complete .complete_flow-wrap::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 34px;
  height: 20px;
  background-image: url(../img/common/icon_caret_down-red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
#pages.-complete .complete_flow-wrap + p {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #ac2317;
}
@media screen and (min-width: 768px) {
  #pages.-complete .complete_flow-wrap + p {
    font-size: 2.4rem;
  }
}
#pages.-complete .complete_flow-wrap + p span {
  color: #000;
  font-weight: normal;
  font-size: 1.4rem;
  padding-top: 15px;
  display: block;
}
@media screen and (min-width: 768px) {
  #pages.-complete .complete_flow-wrap + p span {
    font-size: 1.6rem;
  }
}
#pages.-complete .complete_flow {
  background-color: #fff;
  padding: 15px;
  position: relative;
}
#pages.-complete .complete_flow dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  margin-bottom: 20px;
}
#pages.-complete .complete_flow dl dt {
  width: 28px;
  height: 28px;
  background-color: #ac2317;
  color: #fff;
  line-height: 28px;
  font-weight: bold;
  border-radius: 50%;
  min-width: 28px;
  margin-right: 10px;
  text-align: center;
}
#pages.-complete .complete_flow dl dd {
  line-height: 1.5;
}
#pages.-complete .complete_flow ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
#pages.-complete .complete_flow ul li {
  width: 80%;
  max-width: 400px;
  margin: 0px auto 5px;
  text-align: center;
  background: #ECF1F4;
  border-radius: 8px;
  line-height: 30px;
}
#pages.-complete .complete_link {
  background: #F7E8E7;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}
#pages.-complete .complete_link:last-child {
  margin-bottom: 0px;
}
#pages.-complete .complete_link h3 {
  margin-bottom: 5px;
  font-size: 1.4rem;
}
#pages.-complete .complete_link .url-box-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#pages.-complete .complete_link .url-box-copy #urlmail {
  margin-left: 5px;
  width: 42px;
  min-width: 42px;
  height: 42px;
  background-color: #4068A9;
  border: none;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#pages.-complete .complete_link .url-box-copy #urlmail img {
  width: 22px;
}
#pages.-complete .complete_link .url-box-copy #urlcopy {
  margin-left: -1px;
  width: 42px;
  min-width: 42px;
  height: 42px;
  background-color: #4068A9;
  border: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#pages.-complete .complete_link .url-box-copy #urlcopy img {
  width: 18px;
}
#pages.-complete .complete_link .url-box-copy #urlarea {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border: 1px solid #4068A8;
  height: 42px;
  width: calc(100% - 89px);
}

/*==================================================================
    #pages.-confirm XD18-1,16
===================================================================*/
#pages.-confirm .confirm {
  padding: 0px 0px 80px;
}
#pages.-confirm .confirm_box {
  padding: 20px 15px;
  border-top: 3px solid #334BA5;
  border-bottom: 3px solid #334BA5;
  color: #334BA5;
  margin-bottom: 40px;
}
#pages.-confirm .confirm_box p {
  text-align: center;
  font-size: 1.5rem;
}

/*==================================================================
    #pages.-input XD18
===================================================================*/
#pages.-input .input {
  padding: 0px 0px 80px;
}
#pages.-input .input_box {
  padding: 20px 15px;
  border-top: 3px solid #334BA5;
  border-bottom: 3px solid #334BA5;
  color: #334BA5;
  margin-bottom: 40px;
}
#pages.-input .input_box p {
  text-align: center;
  font-size: 1.5rem;
}
#pages.-input .input select {
  font-size: 1.6rem;
  color: #000;
  padding: 10px 30px 10px 10px;
  outline: none;
  border: 1px solid #BFC7CE;
}
#pages.-input .input .select-wrap {
  position: relative;
}
#pages.-input .input .select-wrap.-w25 {
  width: 50%;
  max-width: 160px;
}
@media screen and (min-width: 768px) {
  #pages.-input .input .select-wrap.-w25 {
    max-width: 300px;
  }
}
#pages.-input .input .select-wrap:after {
  display: block;
  content: "";
  width: 11px;
  height: 6px;
  background-image: url(../img/common/icon_caret_down-blue.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
#pages.-input .input .datepicker {
  background-image: url(../img/common/icon_calender.svg);
  background-repeat: no-repeat;
  background-size: 18px 19px;
  background-position: right 10px center;
}
#pages.-input .about-pointgroup {
  margin-bottom: 40px;
}
#pages.-input .about-pointgroup dt {
  margin: 0 -4vw;
  padding: 10px 4vw;
  background-color: #E8ECEC;
  line-height: 1.4;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  #pages.-input .about-pointgroup dt {
    margin: 0;
    padding: 10px 15px;
  }
}
#pages.-input .about-pointgroup dt::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 5px;
  display: block;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-image: url(../img/common/icon_caret_down-blue.svg);
}
#pages.-input .about-pointgroup dt.active::after {
  background-image: url(../img/common/icon_caret_up-blue.svg);
}
#pages.-input .about-pointgroup dd {
  background-color: rgba(232, 236, 236, 0.5);
  padding: 30px 4vw;
  margin: 0px -4vw;
  display: none;
}
@media screen and (min-width: 768px) {
  #pages.-input .about-pointgroup dd {
    padding: 30px 15px;
    margin: 0;
  }
}
#pages.-input .about-pointgroup dd p {
  margin-bottom: 30px;
}
#pages.-input .about-pointgroup dd p span {
  font-weight: bold;
}
#pages.-input .about-pointgroup dd h2 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#pages.-input .about-pointgroup dd img {
  max-width: 600px;
  margin: 0px auto;
  width: 90%;
  display: block;
}
#pages.-input .tbl04 .select-wrap {
  max-width: 220px;
  width: unset;
}
#pages.-input .tbl04 .select-wrap select {
  font-size: 1.4rem !important;
}

#pages .info_box {
  border: 3px solid #C01B51;
  padding: 20px;
  color: #C01B51;
  margin-bottom: 40px;
}
#pages .info_box p {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}

#pages .point_box {
  padding: 20px 15px;
  border-radius: 6px;
  background-color: rgba(172, 35, 23, 0.1);
  margin-bottom: 20px;
  color: #494949;
}
#pages .point_box h2 {
  margin-bottom: 10px;
  color: #ac2317;
  text-align: center;
}
#pages .point_box h2 span {
  display: inline-block;
  line-height: 18px;
  border-radius: 10px;
  font-size: 1rem;
  color: #fff;
  background-color: #ac2317;
  text-align: center;
  padding: 0px 4px;
  margin-left: 5px;
}
#pages .point_box p {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #pages .point_box p {
    text-align: center;
    font-size: 1.4rem;
  }
}
#pages .point_box .-unuse {
  display: none;
  margin-top: 0px !important;
}
#pages .point_arrow {
  padding: 15px 0;
  text-align: center;
}
#pages .point_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  color: #808080;
  text-decoration: underline;
  font-size: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  cursor: pointer;
}
#pages .point_link img {
  margin-right: 4px;
}
#pages .point_agreement {
  color: #BC0000;
  text-align: center;
  display: inline-block;
}
#pages .point_agreement.-k {
  color: #000;
}
#pages .point_agreement_wrap {
  display: block;
  text-align: center;
}

#pages .group_add {
  margin-bottom: 40px;
}
#pages .group_add button {
  border: 3px dashed #c2d4e9;
  border-radius: 5px;
  width: 100%;
  height: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-size: 1.3rem;
  background-color: rgba(189, 213, 235, 0.3);
  color: #4D4D4D;
}
#pages .group_add button span {
  padding-left: 40px;
  background-image: url(../img/common/icon_plus_white.svg);
  height: 30px;
  background-size: 30px;
  background-repeat: no-repeat;
  line-height: 30px;
}

#pages .destination_list {
  margin-bottom: 40px;
  background: #E8ECEC;
  border-radius: 10px;
  padding: 15px 10px;
  color: #4D4D4D;
}
#pages .destination_list span {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}
@media screen and (min-width: 768px) {
  #pages .destination_list span {
    font-size: 1.5rem;
  }
}
#pages .destination_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #pages .destination_list ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
#pages .destination_list ul li {
  text-decoration: underline;
  padding: 5px;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  #pages .destination_list ul li {
    padding: 12px;
  }
}

#pages .pointcheck .usergroup {
  position: relative;
  padding-top: 25px;
  margin-top: 15px;
}
#pages .pointcheck .usergroup .status {
  position: absolute;
  right: 0;
  top: 0px;
  padding: 5px 10px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-repeat: no-repeat;
  width: 90px;
  height: 25px;
}
#pages .pointcheck .usergroup .status span {
  font-size: 1.3rem;
  line-height: 11px;
  padding: 5px 5px;
}
#pages .pointcheck .usergroup .heading {
  border-top-left-radius: 5px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #4D4D4D;
  line-height: 1;
  font-size: 1.3rem;
}
#pages .pointcheck .usergroup .body {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 0px 15px 15px;
}
#pages .pointcheck .usergroup.-finished .heading {
  background-color: #D9D9D9;
}
#pages .pointcheck .usergroup.-finished .body {
  background-color: rgba(217, 217, 217, 0.6);
}
#pages .pointcheck .usergroup.-finished .status {
  background-image: url(../img/common/bg_status_finished.svg);
}
#pages .pointcheck .usergroup.-finished .status span {
  background-color: #808080;
  color: #dddddd;
}
#pages .pointcheck .usergroup.-waiting .heading {
  background-color: #FACFCC;
}
#pages .pointcheck .usergroup.-waiting .body {
  background-color: rgba(250, 207, 204, 0.6);
}
#pages .pointcheck .usergroup.-waiting .status {
  background-image: url(../img/common/bg_status_waiting.svg);
}
#pages .pointcheck .usergroup.-waiting .status span {
  background-color: #BC0000;
  color: #dddddd;
}

#pages .video_box {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
#pages .video_box video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
}

#pages .goal canvas {
  width: 100%;
  height: calc(100vh - 130px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
#pages .goal_area {
  position: relative;
  padding: 20px 0px 80px;
}
@media screen and (min-width: 768px) {
  #pages .goal_area {
    padding: 40px 30px 80px;
    max-width: 900px;
    margin: 0px auto;
  }
}
#pages .goal_area h1 {
  font-size: 3.4rem;
  font-weight: bold;
  color: #8A1B51;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 15px;
}
#pages .goal_area h1 span {
  font-size: 2.4rem;
  font-weight: 500;
  color: #262626;
  line-height: 1.5;
  display: block;
}
#pages .goal_area h1 em {
  font-size: 2rem;
  padding-left: 5px;
}
#pages .goal_img {
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 56.26%;
  background-size: cover;
  background-position: center;
}
#pages .goal_img + p {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  color: #262626;
  line-height: 1.5;
  display: block;
  margin-bottom: 30px;
}
#pages .goal_img .decoration {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation-name: decoration;
          animation-name: decoration;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  opacity: 0;
  z-index: 2;
}
#pages .goal_img img {
  z-index: 1;
}
#pages .goal .goto_btn {
  z-index: 100;
  position: relative;
}
@media screen and (min-width: 768px) {
  #pages .goal .goto_btn {
    max-width: 400px;
  }
}

@-webkit-keyframes decoration {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}

@keyframes decoration {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
#pages .faq {
  padding-bottom: 80px;
}
#pages .faq .head {
  margin-bottom: 20px;
}
#pages .faq_box dl {
  border-top: 1px solid #D9D9D9;
}
#pages .faq_box dl:last-child {
  border-bottom: 1px solid #D9D9D9;
}
#pages .faq_box dl dt {
  position: relative;
  padding: 15px 50px 15px 0px;
}
#pages .faq_box dl dt::after {
  content: "";
  background-image: url(../img/common/icon_caret_down-blue.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 20px;
  display: block;
  width: 12px;
  height: 8px;
}
#pages .faq_box dl dt.active::after {
  background-image: url(../img/common/icon_caret_up-blue.svg);
}
#pages .faq_box dl dd {
  display: none;
  padding: 10px 0px 20px;
  line-height: 1.6;
  font-size: 1.3rem;
}

#pages .campaign-wrap .panel {
  margin-top: 28px;
}
#pages .campaign-wrap .panel .h02 {
  margin-bottom: 0px;
}
#pages .campaign-wrap p {
  font-size: 1.4rem;
}

#pages .concept .panel p {
  text-align: center;
  line-height: 2.4;
  font-size: 1.3rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
#pages .concept .panel img {
  display: block;
  width: 100%;
  max-width: 265px;
  margin: 0 auto;
  margin-top: 47px;
  margin-bottom: 36px;
}
#pages .concept .panel img:last-child {
  margin-top: 30px;
  margin-bottom: 0px;
}

#pages .privacy .panelttl {
  margin-bottom: 15px;
}
#pages .privacy p {
  line-height: 1.8;
}
#pages .privacy_scroll {
  height: 500px;
  overflow-y: scroll;
  border: 1px solid #e0e0e0;
  padding: 20px;
}
#pages .privacy_scroll dl {
  padding: 0px 0px 40px;
}
#pages .privacy_scroll dl dt {
  background-color: rgba(98, 79, 17, 0.15);
  padding: 5px 15px;
  line-height: 1.5;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

#pages .campaign_list {
  margin-bottom: 40px;
}
#pages .campaign_list label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: white;
  padding: 12px;
  border-radius: 5px;
  position: relative;
}
#pages .campaign_list label img {
  margin-right: 5px;
}
#pages .campaign_list label.bg-blue {
  background-color: #009FD9;
}
#pages .campaign_list label.bg-green {
  background-color: #008A65;
}
#pages .campaign_list label.bg-disabled {
  color: #dddddd;
  background-color: rgba(0, 0, 0, 0.3);
}
#pages .campaign_list label .checkout {
  position: absolute;
  right: 5px;
  top: 10px; /* top:-10px; */
  font-size: 1.1rem;
  background-color: #777777;
  color: #dddddd;
  line-height: 18px;
  border-radius: 10px;
  padding: 0px 1em;
  display: block;
  -webkit-box-shadow: 0px 2px 2px rgba(95, 79, 30, 0.15);
          box-shadow: 0px 2px 2px rgba(95, 79, 30, 0.15);
}
@media screen and (min-width: 768px) {
  #pages .campaign_list label .checkout {
    right: 10px;
    top: 10px;
  }
}
#pages .campaign_list label:first-child {
  color: #4D4D4D;
  border: 1px solid #8E959F;
}
#pages .campaign_list label span {
  display: block;
  font-size: 1.3rem;
  color: #FFFFFF;
  opacity: 0.6;
  font-weight: 400;
  padding: 10px 0px;
  width: 100%;
}
#pages .campaign_list label a {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  text-align: right;
  text-decoration: underline;
  font-weight: 400;
  margin-bottom: 10px;
}
#pages .campaign_list label a:last-child {
  margin-bottom: 0px;
}
#pages .campaign_list label a.notice {
  color: #d40000;
}
#pages .campaign_list label input {
  margin-top: 0px;
}
#pages .campaign_list label div {
  width: 100%;
}

#pages .campaign_img {
  padding-top: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #pages .campaign_img {
    max-width: 500px;
    margin: 0px auto 60px;
  }
}
#pages .campaign_date {
  display: block;
  font-size: 1.8rem;
}

.jrepoint {
  background-color: #D8EDE7;
  border-radius: 10px;
  padding: 20px 10px;
  margin-top: 30px;
}
.jrepoint + p {
  text-align: right;
}
.jrepoint_score {
  line-height: 1;
  font-size: 4rem;
  font-weight: bold;
  color: #195120;
  text-align: center;
  margin-bottom: 10px;
}
.jrepoint_score span {
  font-size: 1.2rem;
  font-weight: normal;
  padding-left: 5px;
}
.jrepoint_score em {
  font-weight: bold;
  font-size: 1.3rem;
  padding: 0px 5px;
}
.jrepoint_score.-underline {
  border-bottom: 1px solid #808080;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.jrepoint_score.-smaller {
  font-size: 3rem;
}
.jrepoint_person {
  font-size: 1.4rem;
  font-weight: bold;
  color: #4D4D4D;
  text-align: center;
  padding-top: 20px;
}
.jrepoint_person span {
  font-size: 2rem;
  margin-bottom: 10px;
  padding: 0px 5px;
}
.jrepoint.-pagecomp {
  background-color: transparent;
  color: #4D4D4D;
  padding: 0;
}
.jrepoint.-pagecomp .jrepoint_score {
  color: #ac2317;
}
.jrepoint.-pagecomp .jrepoint_score em {
  color: #4d4d4d;
}
.jrepoint table {
  width: 100%;
  max-width: 400px;
  margin: 0px auto;
  font-size: 1.4rem;
  color: #295026;
}
@media screen and (min-width: 768px) {
  .jrepoint table {
    font-size: 1.8rem;
  }
}
.jrepoint table th {
  text-align: left;
  padding: 8px 20px 8px 8px;
  width: 50%;
  font-weight: bold;
}
.jrepoint table td {
  width: 50%;
}
.jrepoint table td dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.jrepoint table td dl dt {
  text-align: left;
}
.jrepoint table td dl dd {
  text-align: right;
  min-width: 7.5em;
}
.jrepoint ol {
  padding-top: 15px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .jrepoint ol {
    padding-top: 25px;
  }
}
.jrepoint ol li {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .jrepoint ol li {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.jrepoint p {
  text-align: left;
  font-size: 1.4rem;
  padding: 5px 0px 10px;
}

.iccard {
  background-color: #D8EDE7;
  border-radius: 6px;
  padding: 20px 10px;
  margin: 20px 0;
}
.iccard h4 {
  display: block;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  color: #008A65;
}
.iccard h4 img {
  margin-right: 5px;
}
.iccard .annotation {
  font-size: 1.2rem;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.1;
}
.iccard .annotation a {
  text-decoration: underline;
  color: #334BA5;
}
.iccard_box {
  max-width: 400px;
  margin: 0px auto;
  width: 100%;
}

#pages .questionnaire {
  background-color: #ECF1F4;
  padding: 40px 0;
}
#pages .questionnaire_btn {
  z-index: 100;
  position: relative;
  margin: 0px auto 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #pages .questionnaire_btn {
    max-width: 400px;
  }
}
#pages .questionnaire h2 {
  text-align: center;
  color: #334BA5;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}
#pages .questionnaire h3 {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
  font-weight: bold;
  font-size: 1.6rem;
  color: #808080;
  margin-bottom: 20px;
  line-height: 1.5;
}
#pages .select-wrap {
  position: relative;
  width: 100%;
}
#pages .select-wrap:after {
  display: block;
  content: "";
  width: 11px;
  height: 6px;
  background-image: url(../img/common/icon_caret_down-blue.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
#pages .sending {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  pointer-events: none;
}
#pages .sending.btn {
  pointer-events: visible;
}

#usage .reserve_step {
  margin: 0px auto 20px;
}
#usage .reserve_blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
@media screen and (min-width: 768px) {
  #usage .reserve_blocks {
    padding-bottom: 30px;
  }
}
#usage .reserve_num {
  width: 50px;
  padding: 5px;
  text-align: center;
  position: relative;
}
#usage .reserve_num::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #018140;
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  #usage .reserve_num::before {
    height: calc(100% + 30px);
  }
}
#usage .reserve_num img {
  display: inline-block;
  position: relative;
  z-index: 2;
}
#usage .reserve_num.-blk10::before {
  display: none;
}
#usage .reserve_content {
  width: calc(100% - 50px);
  padding: 0px 0 50px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
#usage .reserve_content.-blk07 {
  border: none;
}
#usage .reserve_content .img {
  padding-top: 30px;
  max-width: 60%;
}
#usage .reserve_content .img.-blk03 {
  max-width: 80%;
}
#usage .reserve_content .img.-blk05 {
  width: 90%;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  #usage .reserve_content .img {
    width: 200px;
  }
  #usage .reserve_content .img.-blk03 {
    width: 420px;
  }
}
#usage .reserve_content .txt p {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #3C3C3C;
}
@media screen and (min-width: 768px) {
  #usage .reserve_content .txt p {
    font-size: 1.7rem;
    line-height: 1.8;
  }
}
#usage .reserve_content .txt a {
  color: #334BA5;
  text-decoration: underline;
}
#usage .reserve_content .txt .annotation {
  font-size: 1.2rem;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.1;
}
#usage .reserve_content .txt .annotation a {
  text-decoration: underline;
  color: #334BA5;
}

#usage .preparation {
  padding: 40px 0 80px;
}
#usage .preparation img {
  max-width: 480px;
  width: 100%;
  margin: 30px auto 0;
  display: block;
}
#usage .grouping {
  padding: 80px 0;
  background-color: #018140;
}
#usage .grouping p {
  color: #fff;
  margin-bottom: 40px;
}
#usage .grouping ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px -10px 40px;
}
#usage .grouping ul li {
  margin-bottom: 30px;
  width: 33.3333333333%;
  padding: 10px;
}
@media screen and (max-width: 1030px) {
  #usage .grouping ul li {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #usage .grouping ul li {
    margin-bottom: 15px;
    width: 100%;
    max-width: 420px;
    margin: 0px auto;
  }
}

/*==================================================================
    #station .ttl-area
===================================================================*/
#station .slider-area {
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #station .slider-area {
    padding-top: 60px;
    padding-bottom: 0px;
    max-width: 800px;
    margin: 0px auto 60px;
  }
}
#station .slider-area dt {
  margin-bottom: 10px;
  text-align: center;
}
#station .slider-area dt img {
  width: 100%;
}
#station .slider-area dd {
  text-align: center;
  margin-bottom: 20px;
}
#station .slider-area .slick-dotted.slick-slider {
  padding-top: 15px;
  margin-bottom: 20px;
}
#station .slider-area .slick-dots li {
  width: 15px;
  height: 15px;
  margin: 0 3px;
}
#station .slider-area .slick-dots li button {
  width: 15px;
  height: 15px;
  padding: 0;
}
#station .slider-area .slick-dots li button::before {
  font-size: 1rem;
  line-height: 0;
  width: 15px;
  height: 15px;
  content: "●";
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
#station .slider-area .slick-dots li.slick-active button::before {
  background-color: white;
}
#station .slider-area .station_name {
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  #station .slider-area .station_name {
    padding-bottom: 40px;
  }
}
#station .slider-area .station_name h1 {
  color: #334BA5;
  padding-left: 30px;
  position: relative;
  text-align: center;
  font-size: 2.8rem;
  line-height: 28px;
  display: block;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #station .slider-area .station_name h1 {
    font-size: 4rem;
  }
}
#station .slider-area .station_name h1 span {
  font-size: 1.6rem;
}
#station .slider-area .slick-arrow {
  background-color: transparent !important;
  z-index: 4 !important;
  width: 20px !important;
  height: 20px !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center !important;
}
#station .slider-area .slick-arrow::before {
  display: none;
}
@media screen and (min-width: 768px) {
  #station .slider-area .slick-arrow {
    width: 30px !important;
    height: 30px !important;
  }
}
#station .slider-area .slick-prev {
  top: 48% !important;
  left: 5px !important;
  background-image: url(../img/common/icon-arrow-left-white01.svg) !important;
  background-repeat: no-repeat !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#station .slider-area .slick-next {
  top: 48% !important;
  right: 5px !important;
  background-image: url(../img/common/icon-arrow-right-white01.svg) !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#station .slider-area .slider-station {
  position: relative;
  overflow-x: hidden !important;
}
#station .slider-area .swiper-pagination {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#station .slider-area .swiper-pagination-bullet {
  margin: 0px 4px;
}
#station .slider-area .swiper-button-prev, #station .slider-area .swiper-button-next {
  top: 55%;
  width: 20px;
  height: 30px;
  background-size: 20px 30px;
}
@media screen and (min-width: 768px) {
  #station .slider-area .swiper-button-prev, #station .slider-area .swiper-button-next {
    top: 57%;
    width: 26px;
    height: 40px;
    background-size: 26px 40px;
  }
}
#station .slider-area .swiper-button-prev {
  background-image: url(../img/common/icon-arrow-left-white01.svg) !important;
}
#station .slider-area .swiper-button-next {
  background-image: url(../img/common/icon-arrow-right-white01.svg) !important;
}

/*==================================================================
    #station .keyword
===================================================================*/
#station .keyword {
  padding: 35px 0;
}
#station .keyword_inner {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  #station .keyword_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    max-width: 1100px;
    margin: 0px auto;
    padding: 0 30px;
  }
  #station .keyword_inner .paragraph_ttl {
    width: 100%;
    margin-bottom: 30px;
  }
}
#station .keyword_box {
  margin-bottom: 40px;
  color: #3C3C3C;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #station .keyword_box {
    padding: 10px;
    width: 50%;
  }
}
@media screen and (min-width: 991px) {
  #station .keyword_box {
    padding: 20px;
    margin-bottom: 20px;
  }
}
#station .keyword_box::after {
  content: "";
  width: 100%;
  height: 1px;
  margin: 0px auto;
  background-color: #ccc;
  display: block;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  #station .keyword_box::after {
    width: calc(100% - 40px);
  }
}
#station .keyword_box img {
  margin-bottom: 10px;
}
#station .keyword_box dt {
  margin-bottom: 10px;
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #station .keyword_box dt {
    font-size: 1.6rem;
  }
}
#station .keyword_box dd {
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  #station .keyword_box dd {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

/*==================================================================
    #station .access
===================================================================*/
#station .access {
  padding: 20px 0 25px;
  background-color: #e8ecec;
  border-radius: 3px;
  max-width: 1040px;
  width: 100%;
  margin: 0px auto;
}
@media screen and (min-width: 768px) {
  #station .access {
    padding: 60px 0;
  }
}
#station .access .h01 {
  margin-bottom: 20px;
}
#station .access_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#station .access_item {
  width: 46vw;
  padding: 0 2.6vw;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  #station .access_item {
    width: 50%;
    padding: 0 15px;
  }
}
@media screen and (min-width: 991px) {
  #station .access_item {
    width: 25%;
  }
}
#station .access_item-inner {
  padding: 6px 0 10px;
  border-bottom: solid 1px #a3a3a3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#station .access_item-inner a {
  color: #262626;
}

/*==================================================================
    #station .nextto
===================================================================*/
#station .nextto {
  padding: 45px 0 80px;
  max-width: 1040px;
  width: 100%;
  margin: 0px auto;
}
#station .nextto_slider, #station .nextto_slider2 {
  padding: 15px 0 0;
  background-color: rgba(162, 145, 81, 0.2);
  overflow: hidden;
  margin-bottom: 20px;
}
#station .nextto_map-inner {
  width: 100%;
  padding-top: 400px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #station .nextto_map-inner {
    padding-top: 100%;
  }
}
#station .nextto_map-inner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#station .nextto_line {
  max-width: 1100px;
  width: 100%;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#station .nextto_line::before {
  content: "";
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 5px;
}
#station .nextto_line.tohoku {
  color: #009691;
}
#station .nextto_line.tohoku::before {
  background-image: url(../img/common/nextto_lineicon-tohoku.svg);
}
#station .nextto_line.akita {
  color: #ce0147;
}
#station .nextto_line.akita::before {
  background-image: url(../img/common/nextto_lineicon-akita.svg);
}
#station .nextto_line.joetsu {
  color: #a5723c;
}
#station .nextto_line.joetsu::before {
  background-image: url(../img/common/nextto_lineicon-joetsu.svg);
}
#station .nextto_line.hokuriku {
  color: #0125a0;
}
#station .nextto_line.hokuriku::before {
  background-image: url(../img/common/nextto_lineicon-hokuriku.svg);
}
#station .nextto_line.yamagata {
  color: #3c307b;
}
#station .nextto_line.yamagata::before {
  background-image: url(../img/common/nextto_lineicon-yamagata.svg);
}
#station .nextto_line-box {
  padding: 15px 15px 10px;
  line-height: 14px;
  background: #ede9dd;
}

/*==================================================================
    #station .movie
===================================================================*/
#station .movie {
  padding: 65px 0 40px;
}
#station .movie_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  #station .movie_list {
    display: block;
  }
}
#station .movie_item {
  width: 50%;
  padding-bottom: 28.125%;
  position: relative;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #station .movie_item {
    width: 100%;
    padding-bottom: 56.25%;
  }
}
@media screen and (min-width: 768px) {
  #station .movie_item {
    margin-right: 30px;
  }
  #station .movie_item:last-child {
    margin-right: 0px;
  }
}
#station .movie_item iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#station .movie_inner {
  max-width: 1100px;
  margin: 0px auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  #station .movie_inner {
    padding: 0 30px;
  }
}

/*==================================================================
    #station .links
===================================================================*/
#station .links {
  background: #ECF1F4;
  padding: 40px 0 60px;
  max-width: 1040px;
  width: 100%;
  margin: 0px auto;
}
@media screen and (min-width: 768px) {
  #station .links {
    padding: 80px 0;
  }
}
#station .links .h01 {
  margin-bottom: 20px;
}
#station .links_btn {
  margin-bottom: 20px;
}
#station .links_btn-item {
  margin-bottom: 10px;
}
#station .links_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#station .links_bnr-item {
  width: 50%;
  padding: 5px;
  text-align: center;
  max-width: 360px;
}
@media screen and (min-width: 768px) {
  #station .links_bnr-item {
    width: 25%;
    min-width: 25%;
  }
}

/*==================================================================
    #station .reserve
===================================================================*/
#station .reserve {
  padding: 40px 0 60px;
}
@media screen and (min-width: 768px) {
  #station .reserve {
    padding: 80px 0;
  }
}
#station .reserve_btn {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #station .reserve_btn {
    max-width: 500px;
    margin: 0px auto;
  }
}
#station .reserve_btn-item {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  #station .reserve_btn-item {
    margin-bottom: 20px;
  }
}
#station .reserve_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  #station .reserve_bnr {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#station .reserve_bnr-item {
  width: auto;
}
@media screen and (max-width: 768px) {
  #station .reserve_bnr-item {
    width: 44.8vw;
  }
}
#station .reserve_bnr-item:first-child {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #station .reserve_bnr-item:first-child {
    margin-right: 0;
  }
}

/*==================================================================
    #station .destination
===================================================================*/
#station .destination {
  padding: 40px 0 30px;
}
#station .destination dl {
  padding: 15px;
  border-radius: 10px;
  background-color: #EDF1F4;
  margin-bottom: 40px;
  position: relative;
}
#station .destination dl::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/common/icon_caret_down.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 8px;
}
#station .destination dl:last-child {
  margin-bottom: 0px;
}
#station .destination dl:last-child::after {
  display: none;
}
#station .destination dl dt {
  color: #334BA5;
  border-bottom: 1px solid #334BA5;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.6rem;
}
#station .destination dl dd {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #808080;
  font-weight: 400;
}

/*==================================================================
    #station .access // icon color setting
===================================================================*/
#station .access {
  padding: 20px 0 25px;
  background-color: #e8ecec;
  border-radius: 3px;
}
#station .access_item-inner::before {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background-image: url(../img/common/icon_train_w.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-right: 15px;
}
#station .access_item-inner.-igriwategingatetsudo::before {
  background-color: #808080;
}
#station .access_item-inner.-shinanotetsudo_kitashinano::before {
  background-color: #808080;
}
#station .access_item-inner.-utsunomiya::before {
  background-color: #f68b1e;
}
#station .access_item-inner.-karasuyama::before {
  background-color: #339966;
}
#station .access_item-inner.-uetsuhon::before {
  background-color: #16c0e9;
}
#station .access_item-inner.-echigo::before {
  background-color: #40934b;
}
#station .access_item-inner.-ouuhon::before {
  background-color: #ee7b28;
}
#station .access_item-inner.-hanawa::before {
  background-color: #aa1e30;
}
#station .access_item-inner.-kamaishi::before {
  background-color: #3399ff;
}
#station .access_item-inner.-agatsuma::before {
  background-color: #0f5474;
}
#station .access_item-inner.-takasaki::before {
  background-color: #f68b1e;
}
#station .access_item-inner.-aterazawa::before {
  background-color: #0073bf;
}
#station .access_item-inner.-yamada::before {
  background-color: #a52a2a;
}
#station .access_item-inner.-koumi::before {
  background-color: #41934c;
}
#station .access_item-inner.-joetsu::before {
  background-color: #00b3e6;
}
#station .access_item-inner.-joban::before {
  background-color: #00b261;
}
#station .access_item-inner.-shinetsuhon::before {
  background-color: #00aaee;
}
#station .access_item-inner.-shinetsuhon_shinonoi::before {
  background-color: #d56a29;
}
#station .access_item-inner.-suigun::before {
  background-color: #808080;
}
#station .access_item-inner.-mito::before {
  background-color: #3333ff;
}
#station .access_item-inner.-aoimoritetsudo::before {
  background-color: #808080;
}
#station .access_item-inner.-senzan::before {
  background-color: #77dd00;
}
#station .access_item-inner.-senseki::before {
  background-color: #00aaee;
}
#station .access_item-inner.-sensekitohokuline::before {
  background-color: #f9c1ce;
}
#station .access_item-inner.-sendaikukotetsudo::before {
  background-color: #808080;
}
#station .access_item-inner.-oofunato::before {
  background-color: #ffa500;
}
#station .access_item-inner.-oga::before {
  background-color: #008000;
}
#station .access_item-inner.-tazawako::before {
  background-color: #9d72b0;
}
#station .access_item-inner.-tohokuhon::before {
  background-color: #3cb371;
}
#station .access_item-inner.-nikko::before {
  background-color: #880033;
}
#station .access_item-inner.-hakushin::before {
  background-color: #f380b7;
}
#station .access_item-inner.-hachinohe::before {
  background-color: #ff0000;
}
#station .access_item-inner.-hachiko::before {
  background-color: #a8a39d;
}
#station .access_item-inner.-iiyama::before {
  background-color: #7bc24c;
}
#station .access_item-inner.-banetsusai::before {
  background-color: #cb7b35;
}
#station .access_item-inner.-banetsutou::before {
  background-color: #c71585;
}
#station .access_item-inner.-kitakami::before {
  background-color: #851a72;
}
#station .access_item-inner.-yahiko::before {
  background-color: #922790;
}
#station .access_item-inner.-rikuusai::before {
  background-color: #6fbf7f;
}
#station .access_item-inner.-rikuutou::before {
  background-color: #888888;
}
#station .access_item-inner.-ryomo::before {
  background-color: #ffd400;
}

/*==================================================================
    #mypage .information
===================================================================*/
#mypage .information {
  padding: 20px 0 40px;
}
@media screen and (min-width: 768px) {
  #mypage .information {
    padding-bottom: 60px;
  }
}
#mypage .information_ttl {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  #mypage .information_ttl {
    padding: 30px 0;
  }
}
#mypage .information_box {
  border: 3px solid #C01B51;
  padding: 20px;
  color: #C01B51;
}
@media screen and (min-width: 768px) {
  #mypage .information_box {
    max-width: 800px;
    margin: 0px auto;
  }
}
#mypage .information_box p {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  #mypage .information_btn {
    max-width: 400px;
    margin: 0px auto;
  }
}

/*==================================================================
    #mypage .campaign
===================================================================*/
#mypage .campaign {
  width: 100%;
  background-color: #ECF1F4;
  text-align: center;
  padding-top: 15.6px;
  padding-bottom: 34px;
  margin-bottom: 34px;
}
@media screen and (min-width: 768px) {
  #mypage .campaign {
    padding: 40px 0px;
  }
}
#mypage .campaign .container {
  padding: 0 8vw;
}
#mypage .campaign h2 {
  font-size: 16px;
  color: #4D4D4D;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  #mypage .campaign h2 {
    margin-bottom: 30px;
  }
}
#mypage .campaign_btn {
  height: 60px;
  border-radius: 5px;
  background: #009FD9;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  #mypage .campaign_btn {
    max-width: 500px;
    margin: 0px auto 10px;
  }
}
#mypage .campaign_btn span {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: 0;
}
#mypage .campaign_btn2 {
  background: #808080;
  color: rgba(255, 255, 255, 0.5);
}
#mypage .campaign_btn2 span {
  opacity: unset;
}

/*==================================================================
    #mypage .history
===================================================================*/
@media screen and (min-width: 768px) {
  #mypage .history {
    max-width: 1100px;
    margin: 0px auto;
    padding: 50px 30px;
  }
}
#mypage .history_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0.8vw;
  position: relative;
  z-index: 2;
}
#mypage .history_menu-item {
  width: 50%;
  padding: 0 0.8vw;
  cursor: pointer;
}
#mypage .history_menu-item span {
  display: block;
  width: 100%;
  font-weight: 500;
  line-height: 36px;
  color: #4d4d4d;
  text-align: center;
  background-color: #e8ecec;
  border-top: solid 1px #bebebe;
  border-left: solid 1px #bebebe;
  border-right: solid 1px #bebebe;
  border-radius: 3px 3px 0 0;
}
@media screen and (min-width: 768px) {
  #mypage .history_menu-item span {
    line-height: 56px;
  }
}
#mypage .history_menu-item span.active {
  color: #ffffff;
  background-color: #334BA5;
}
#mypage .history_blocks {
  border-top: solid 1px #624f11;
  margin-top: -1px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks {
    border-top: none;
    margin-top: 0;
  }
}
#mypage .history_blocks-box {
  padding: 15px 15px 45px;
  background-color: #334BA5;
}
@media screen and (max-width: 768px) {
  #mypage .history_blocks-box {
    padding: 4vw 4vw 8vw;
  }
}
#mypage .history_blocks-box .copyline {
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks-box .copyline {
    text-align: center;
  }
}
#mypage .history_blocks .box {
  padding: 15px 15px 20px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(71, 69, 61, 0.5);
          box-shadow: 0px 0px 3px 0px rgba(71, 69, 61, 0.5);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #mypage .history_blocks .box {
    padding: 4vw 4vw 6vw;
  }
}
#mypage .history_blocks .box.-cancel {
  background-color: #e8ecec;
}
#mypage .history_blocks .box_nohistory {
  text-align: center;
  padding: 40px 10px;
}
#mypage .history_blocks .box_lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 15px;
}
#mypage .history_blocks .box_lead .icons {
  min-width: 110px;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding: 0.4em;
}
#mypage .history_blocks .box_lead .icons.-icons01 {
  background-color: #1F8AEB;
}
#mypage .history_blocks .box_lead .icons.-icons02 {
  background-color: #C01B51;
}
#mypage .history_blocks .box_lead .icons.-icons03 {
  background-color: #C01B51;
}
#mypage .history_blocks .box_lead .icons.-icons04 {
  background-color: #383838;
}
#mypage .history_blocks .box_lead .icons.-icons05 {
  background-color: #808080;
}
#mypage .history_blocks .box_lead .icons.-icons06 {
  background-color: #008000;
}
#mypage .history_blocks .box_lead .icons span {
  font-size: 1rem;
}
#mypage .history_blocks .box_lead .date {
  width: calc(100% - 95px);
  padding-left: 19px;
}
#mypage .history_blocks .box_lead .date_item {
  font-weight: 400;
  font-size: 12px;
  color: #808080;
  position: relative;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_lead .date_item {
    font-size: 1.4rem;
  }
}
#mypage .history_blocks .box_lead .date_item:first-of-type {
  margin-bottom: 1.5em;
}
#mypage .history_blocks .box_lead .date_item:first-of-type::before {
  display: block;
  content: "";
  width: 11px;
  height: 5px;
  background-image: url(../img/common/icon_arrow_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 3.5em;
  bottom: -1em;
}
#mypage .history_blocks .box_destination {
  margin-bottom: 20px;
  background: #e8ecec;
  border-radius: 10px;
  padding: 15px 10px;
  color: #4d4d4d;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_destination {
    margin-bottom: 40px;
  }
}
#mypage .history_blocks .box_destination.-ready {
  background-color: rgba(207, 226, 239, 0.5);
}
#mypage .history_blocks .box_destination span {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
#mypage .history_blocks .box_destination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_destination ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
#mypage .history_blocks .box_destination ul li {
  text-decoration: underline;
  padding: 7px 5px;
  font-size: 1.8rem;
}
#mypage .history_blocks .box_destination .notice {
  font-weight: bold;
  color: #ac2317;
  padding-top: 20px;
  text-align: center;
}
#mypage .history_blocks .box_tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #4d4d4d;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_tbl {
    font-size: 1.4rem;
  }
}
#mypage .history_blocks .box_tbl.-mb0 {
  margin-bottom: 0;
}
#mypage .history_blocks .box_tbl.-last th {
  font-weight: 700;
  width: 25%;
  padding: 0.6em 0;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_tbl.-last th {
    padding: 1em 0;
  }
}
#mypage .history_blocks .box_tbl.-last td {
  width: 75%;
  padding: 0.6em 0;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_tbl.-last td {
    padding: 1em 0;
  }
}
#mypage .history_blocks .box_tbl tr {
  border-bottom: solid 1px #cccccc;
}
#mypage .history_blocks .box_tbl tr.-noline {
  border-bottom: none;
}
#mypage .history_blocks .box_tbl tr.-upperline {
  border-top: solid 1px #cccccc;
}
#mypage .history_blocks .box_tbl tr.-nopd th, #mypage .history_blocks .box_tbl tr.-nopd td {
  padding: 0px;
}
#mypage .history_blocks .box_tbl tr.-joint th, #mypage .history_blocks .box_tbl tr.-joint td {
  padding-bottom: 0px;
}
#mypage .history_blocks .box_tbl th {
  width: 38%;
  padding: 0.6em 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_tbl th {
    padding: 1em 0;
  }
}
#mypage .history_blocks .box_tbl td {
  width: 62%;
  padding: 0.6em 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_tbl td {
    padding: 1em 0;
  }
}
#mypage .history_blocks .box_tbl td .mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#mypage .history_blocks .box_tbl td .mail span {
  font-weight: 400;
}
#mypage .history_blocks .box_tbl td .other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_tbl td .other {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
#mypage .history_blocks .box_tbl td .other_item {
  text-decoration: underline;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_tbl td .other_item {
    padding-right: 10px;
  }
}
#mypage .history_blocks .box_tbl td .other_item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_tbl td .other_item:last-child {
    padding-right: 0;
  }
}
#mypage .history_blocks .box_tbl td .other.-big .other_item {
  font-size: 1.5rem;
  font-weight: 500;
}
#mypage .history_blocks .box .accord, #mypage .history_blocks .box .accordstation, #mypage .history_blocks .box .accordcancel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 10px;
  font-size: 1.3rem;
  position: relative;
  padding-right: 20px;
  color: #2C4BAB;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box .accord, #mypage .history_blocks .box .accordstation, #mypage .history_blocks .box .accordcancel {
    display: none;
  }
}
#mypage .history_blocks .box .accord .accordcancel_ttl, #mypage .history_blocks .box .accordstation .accordcancel_ttl, #mypage .history_blocks .box .accordcancel .accordcancel_ttl {
  position: absolute;
  left: 0;
}
#mypage .history_blocks .box .accord-wrap, #mypage .history_blocks .box .accordstation-wrap, #mypage .history_blocks .box .accordcancel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#mypage .history_blocks .box .accord::after, #mypage .history_blocks .box .accordstation::after, #mypage .history_blocks .box .accordcancel::after {
  content: "";
  background-image: url(../img/common/icon_caret_down-blue.svg);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 6px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
#mypage .history_blocks .box .accord.active::after, #mypage .history_blocks .box .accordstation.active::after, #mypage .history_blocks .box .accordcancel.active::after {
  background-image: url(../img/common/icon_caret_up-blue.svg);
}
#mypage .history_blocks .box .accord_cont, #mypage .history_blocks .box .accordstation_cont, #mypage .history_blocks .box .accordcancel_cont {
  width: 100%;
}
#mypage .history_blocks .box .accord_url, #mypage .history_blocks .box .accordstation_url, #mypage .history_blocks .box .accordcancel_url {
  display: none;
  padding: 5px 0;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box .accordcancel {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
#mypage .history_blocks .box_btn {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_btn {
    max-width: 400px;
    margin: 0px auto;
  }
}
#mypage .history_blocks .box_btn-item {
  margin-bottom: 15px;
}
#mypage .history_blocks .box_btn-item.-cancel {
  text-align: center;
}
#mypage .history_blocks .box_btn-item.-cancel a {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #4e5560;
  text-decoration: underline;
}
#mypage .history_blocks .box_btn-item.-wait {
  font-size: 1.6rem;
  color: #4d4d4d;
  text-align: center;
}
#mypage .history_blocks .box_btn-announce {
  text-align: left;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_btn-announce {
    text-align: center;
  }
}
#mypage .history_blocks .box_btn-announce h5 {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.4rem;
  color: #4d4d4d;
}
@media screen and (max-width: 768px) {
  #mypage .history_blocks .box_btn-announce h5 {
    font-size: 1.2rem;
  }
}
#mypage .history_blocks .box_btn-announce p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #4d4d4d;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_btn-announce p {
    font-size: 1.4rem;
  }
}
#mypage .history_blocks .box_url {
  font-size: 1.2rem;
  line-height: 1.4;
  padding: 0.6em 0;
  position: relative;
  border-bottom: solid 1px #cccccc;
}
@media screen and (min-width: 768px) {
  #mypage .history_blocks .box_url {
    font-size: 1.4rem;
  }
}
#mypage .history_blocks .box_url_accord {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#mypage .history_blocks .box_url em {
  font-size: 1.3rem;
  padding-right: 20px;
  color: #a29151;
  position: relative;
}
#mypage .history_blocks .box_url em::after {
  content: "";
  background-image: url(../img/common/icon_caret_down-blue.svg);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 6px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
#mypage .history_blocks .box_url em.active::after {
  background-image: url(../img/common/icon_caret_up-blue.svg);
}
#mypage .history_flow {
  border: 2px solid #BC0000;
  border-radius: 5px;
  background-color: #fff;
  padding: 15px;
  position: relative;
  margin-bottom: 30px;
}
#mypage .history_flow h3 {
  color: #ac2317;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.6rem;
  line-height: 1.5;
}
#mypage .history_flow h3 span {
  font-weight: normal;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #mypage .history_flow h3 span {
    display: inline-block;
  }
}
#mypage .history_flow h3 + p {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
#mypage .history_flow ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
#mypage .history_flow ul li {
  width: 80%;
  max-width: 400px;
  margin: 0px auto 5px;
  text-align: center;
  background: #ECF1F4;
  border-radius: 8px;
  line-height: 30px;
  font-weight: bold;
}
#mypage .history_link {
  background: #F7E8E7;
  border-radius: 8px;
  padding: 15px;
}
#mypage .history_link h3 {
  margin-bottom: 5px;
  font-size: 1.4rem;
}
#mypage .history_link .url-box-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#mypage .history_link .url-box-copy #urlmail {
  margin-left: 5px;
  width: 42px;
  min-width: 42px;
  height: 42px;
  background-color: #4068A9;
  border: none;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#mypage .history_link .url-box-copy #urlmail img {
  width: 22px;
}
#mypage .history_link .url-box-copy #urlcopy {
  margin-left: -1px;
  width: 42px;
  min-width: 42px;
  height: 42px;
  background-color: #4068A9;
  border: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#mypage .history_link .url-box-copy #urlcopy img {
  width: 18px;
}
#mypage .history_link .url-box-copy #urlarea {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border: 1px solid #4068A8;
  height: 42px;
  width: calc(100% - 89px);
}
#mypage .history .more {
  text-align: right;
}
#mypage .history .more a {
  color: #a29151;
  padding-right: 20px;
  background-image: url(../img/common/icon_arrow_more.svg);
  background-position: right 0 top 60%;
  background-repeat: no-repeat;
}
#mypage .history .links {
  color: #4068a8;
  text-decoration: underline;
}
#mypage .history .switchArea {
  width: 42px;
  line-height: 21px;
  position: relative;
}
#mypage .history .switchArea input[type=checkbox] {
  display: none;
}
#mypage .history .switchArea input[type=checkbox]:checked + label {
  background: #334BA5;
}
#mypage .history .switchArea input[type=checkbox]:checked ~ .swImg {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
#mypage .history .switchArea label {
  display: block;
  height: 21px;
  background: #808080;
  border-radius: 11px;
  margin: 0;
}
#mypage .history .switchArea .swImg {
  width: 15px;
  height: 15px;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 1px 0px rgba(92, 92, 92, 0.7);
          box-shadow: 1px 1px 1px 0px rgba(92, 92, 92, 0.7);
  position: absolute; /* 親要素からの相対位置*/
  top: 3px;
  left: 3px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#mypage .history .aboutcancel {
  display: none;
}
#mypage .history .aboutcancel p {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
#mypage .history .aboutcancel .box {
  background-color: #CFE2EF;
  color: #000079;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px;
}
#mypage .history .aboutcancel .box h4 {
  line-height: 1.4;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}
#mypage .history .aboutcancel .box h4 + p {
  text-align: center;
  font-weight: normal;
  margin-bottom: 0;
}
#mypage .history .aboutcancel .box h4 + p a {
  color: #4068A8;
  display: inline-block;
  text-decoration: underline;
}

/*==================================================================
    .datepicker
===================================================================*/
@media screen and (max-width: 768px) {
  #ui-datepicker-div {
    position: absolute !important;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
    width: 90% !important;
    left: 50% !important;
    border: none !important;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    z-index: 100 !important;
  }
  #ui-datepicker-div .ui-datepicker-calendar .ui-state-default {
    padding: 10px;
    text-align: center !important;
  }
  .datepicker-overlay {
    display: block;
    width: 100vw;
    height: 100vh;
    /* Fallback */
    height: calc(var(--vh, 1vh) * 100);
    background-color: rgba(255, 255, 255, 0.89);
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
  }
  .datepicker-overlay.open {
    visibility: visible;
    opacity: 1;
    z-index: 9;
  }
  .datepicker-show {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
  }
  .datepicker-show.open {
    visibility: visible;
    opacity: 1;
    z-index: 100 !important;
  }
}