@charset "UTF-8";
/*----------------------------
/SP用CSS
/*----------------------------*/
img{
  width:100%;
}
/*メニュー部分*/
#side_button,
#side_button_menu,
#side_button span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}


.side_button_menu_a{
  position: relative;
}

#side_button_menu {
  display: flex;
  gap: 5px; /* 両者の間隔、必要に応じて調整 */
  align-items: center;
  margin: 0 19% 0 0;
}



#side_button_menu a,
#side_button_menu #login_link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit; /* リンクの色を継承（好みに応じて） */
  font-size: 13px;
}

#side_button_menu #login_link span{
  font-size: 13px;
}


#side_button_menu img {
  width: 6vw;  /* 要望通りのサイズ */
  height: auto;
  
}

#side_button {
  position: absolute;
  width: 11vw;
  height: 11vw;
  /* top: 1vw; */
  right:0;
  z-index:1002;
  background: #4052E3;
}
#side_button.active{
  right:62%;
}
#side_button span {
  position: absolute;
  left: 20%;
  width: 60%;
  height: 1vw;
  background-color: #fff;
  border-radius: 0;
}
#side_button span:nth-of-type(1) {
  top: 3vw;
}
#side_button span:nth-of-type(2) {
  top: 7vw;
}
#side_button span:nth-of-type(3) {
  bottom: 4.8vw;
}

#side_button.active span:nth-of-type(1) {
  -webkit-transform: translateY(3vw) rotate(-45deg);
  transform: translateY(3vw) rotate(-45deg);
}
#side_button.active span:nth-of-type(2) {
  opacity: 0;
}
#side_button.active span:nth-of-type(3) {
  -webkit-transform: translateY(-3vw) rotate(45deg);
  transform: translateY(-3vw) rotate(45deg);
}
header{
  border-bottom: 1.5vw solid #a9ceec;
}
/* ハンバーガーメニューボタンのスタイル */
#side_button {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  /* background-color: transparent; */
  border: none;
  z-index: 999; /* 必要に応じてz-indexを設定して重なりを調整 */
  margin-right: 1%;
  margin-bottom: 1%;
}
/* メニューのスタイル（初期状態では非表示） */
#slide_menu {
  display: none;
  position: absolute;
  top: 109px; /* メニューの表示位置を調整 */
  right: 0;
  background-color: #fff; /* メニューの背景色 */
  width: 200px; /* メニューの幅 */
  padding: 10px;
  z-index: 998; /* メニューがボタンの下に表示されるように設定 */
  height: 156px;
}

/* メニュー内のリンクのスタイル */
#slide_menu a {
  display: block;
  padding: 10px 0;
  color: #333; /* リンクの文字色 */
  text-decoration: none;
  font-size: 16px; /* リンクのフォントサイズ */
  transition: color 0.3s; /* リンクの色のアニメーション */
}

#slide_menu .sp_display_none{
  display: none;
}

/* メニューが表示されたときのリンクのスタイル */
#slide_menu.active {
  display: block;
}

/* メニュー内のリンクのホバースタイル */
#slide_menu a:hover {
  color: #555; /* ホバー時の文字色 */
}
#side_button span {
  /* width: 30px; */
  height: 3px;
  background-color: #fff; /* バーの色 */
  margin: 1px 0; /* バー間の間隔 */
  transition: 0.4s; /* アニメーションのスピード */
}
header .in_header {
  width: 100%;
  padding: 2vw 0vw;
  display: flex;
  justify-content: space-between;
}
header #logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header #logo a img:first-child {
  width: 34vw;
}
header #logo a img:nth-child(2) {
  width: 24vw;
  margin-left: 1.5vw;
}
header nav{
  font-size: 4vw;
  position: fixed;
  top: 0;
  right: -60%;
  background: #fff;
  width: 60%;
  height: 100%;
  z-index: 1003;
}
header nav a{
  display: block;
  text-decoration: none;
  color: #4052E3;
  border-bottom: 1px solid #4052E3;
  padding: 4vw 3vw;
}
header nav a dl{
  display: flex;
  align-items: center;
}

.sp_display_none{
  display: none;
}

header nav a dl dt{
  margin-right: 2vw;
}
header nav a dl dt img{
  width: 6vw;
}
header nav a:hover dl dd{
  text-decoration: underline;
}

header nav div{
  display: block;
  text-decoration: none;
  color: #4052E3;
  border-bottom: 1px solid #4052E3;
  padding: 3vw 0vw;
}
header nav div dl{
  display: flex;
  align-items: center;
}
header nav div dl dt{
  margin-right: 2vw;
}
header nav div dl dt img{
  width: 6vw;
}
header nav div:hover dl dd{
  text-decoration: underline;
}

header .cart_sp{
  font-size: 2.5vw;
  text-align: center;
  margin-right: 15vw;
}
header .cart_sp a{
  display: block;
  width: 18vw;
  text-decoration: none;
  color: #3749df;
  padding: 1vw 0;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 1vw;
}
header .cart_sp img{
  width: 8vw;
}
.layer{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
#form_box{
  width: 96%;
  margin: 3vw auto 5vw;
  line-height: 1.2;
}
#selected_box {
  background: #4052E3;
  border-top-right-radius: 2vw;
  border-top-left-radius: 2vw;
  padding: 3vw;
  margin-bottom: 0.5vw;
}
#selected_box .in_box{
  background: #fff;
  border-radius: 2vw;
  padding: 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#selected_box .in_box h2{
  width: 20%;
  font-size: 4vw;
}
#selected_box .in_box .dl_wrap{
  width: 77%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 4vw;
}
#selected_box .in_box dl{
  display: flex;
  align-items: center;
  margin-bottom: 1vw;
}
#selected_box .in_box .dl_wrap dl:first-child{
  margin-right: 2vw;
}
#selected_box .in_box dl dt{
  font-weight: bold;
  background: #c9cce8;
  padding: 1vw 2vw;
  margin-right: 1vw;
}
#search_box {
  background: #4052E3;
  border-bottom-right-radius: 2vw;
  border-bottom-left-radius: 2vw;
  padding: 3vw;
}
#search_box .ttl_area{
  margin-bottom: 3vw;
}
#search_box .ttl_area h2{
  font-size: 5vw;
  color: #fff;
  text-align: center;
  margin-bottom: 2vw;
}
#search_box .ttl_area h2:before{
  font-family: 'Hiragino Kaku Gothic ProN';
  content: '\f002';
  display: inline-block;
  margin-right: 3vw;
}
#search_box .ttl_area .accepting{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #ffc933;
  font-weight: bold;
  padding: 2vw;
  font-size: 3.0vw;
}
#search_box .form_wrapper{
  display: flex;
  flex-wrap: wrap;
}
#search_box .form_wrapper dl{
  display: flex;
  align-items: center;
  margin-bottom: 3vw;
}
#search_box .form_wrapper dl.departure{
  margin-right: 5vw;
}
#search_box .form_wrapper dl dt{
  color: #fff;
  width: 17vw;
  font-size: 3.5vw;
}
#search_box .form_wrapper dl dd select,
#search_box .form_wrapper dl dd input{
  padding: 1vw 2vw;
  font-size: 5vw;
  border-radius: 1vw;
  line-height: 1.7;
  border:none;
}
#search_box .form_wrapper dl dd select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(/img/arrow_bottom.png) no-repeat right 2vw center;
  background-size: 3vw auto;
}
#search_box .form_wrapper dl dd select::-ms-expand { /*IE対応*/
  display: none;
}
#search_box dl.path dd select{
  width: 73vw;
}
#search_box dl.arrival {
  margin-right: 0;
}
#search_box dl.departure select,
#search_box dl.arrival select{
  width: 25vw;
}
#search_box div.tokkyu_info{
  width: 100%;
  text-align: right;
  color: #fff;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 4vw;
  font-size: 3vw;
}
#search_box input.tokkyu_input{
  width: 70vw;
}
#search_box dl.seat_type{
  width: 100%;
}
#search_box dl.seat_type dd{
  display: flex;
  align-items: center;
}
#search_box dl.seat_type dd label{
  margin-right: 1vw;
  font-size: 3vw;
  color: #fff;
  background: #5667f3;
  padding: 2vw 1.2vw;
  border-radius: 1vw;
}
#search_box dl.seat_type dd label:last-child{
  margin-right: 0;
}
#search_box dl.seat_type dd label input{
  display: none;
}
#search_box dl.seat_type dd label span{
  position: relative;
  padding-left: 4.5vw;
}
#search_box dl.seat_type dd label span:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 4vw;
  height: 4vw;
  background: #fff;
  border-radius: 50%;
}
#search_box dl.seat_type dd label input:checked + span:after{
  content: "";
  display: block;
  position: absolute;
  top: 1vw;
  left: 1vw;
  width: 2vw;
  height: 2vw;
  background: #3749df;
  border-radius: 50%;
}
#search_box dl.date dd{
  margin-right: 2vw;
  position: relative;
}
#search_box dl.date dd .ui-datepicker-trigger{
  position: absolute;
  right: 2vw;
  top: 2.5vw;
  width: 5vw;
  opacity: 0.6;
}
#search_box dl.date dd input{
  width: 40vw;
}
#search_box dl.date dd select#hour{
  width: 30vw;
}
#search_box dl.people{
  margin-right: 0;
}
#search_box dl.people dt{
  margin-right: 1vw;
}
#search_box dl.people dd{
  display: flex;
  align-items: center;
  text-align: center;
}
#search_box dl.people dd span{
  display: block;
  color: #fff;
  font-size: 3.5vw;
  margin-right: 1vw;
}
#search_box dl.people dd span small{
  font-size: 3vw;
}
#search_box dl.people select{
  width: 20vw;
}
#search_box dl.people select#adult{
  margin-right: 2vw;
}
#search_box .btn{
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
#search_box .btn a{
  text-decoration: none;
  background: #f12d2d;
  display: block;
  color: #fff;
  font-weight: bold;
  border: 0.8vw solid #fff;
  border-radius: 2vw;
  padding: 2vw 0;
  font-size: 5vw;
}
#search_box .btn :hover{
  background: #e02828;
}
#search_box .btn a:after{
  font-family: 'Hiragino Kaku Gothic ProN';
  content: '\f002';
  display: inline-block;
  margin-left: 2vw;
  font-size: 6vw;
}
#form_box .caution{
  margin-top: 3vw;
  font-size: 3.5vw;
  line-height: 1.8;
}
#timetable{
  width: 96%;
  margin: 0 auto;
  line-height: 1.2;
}
#timetable .nav{
  margin: 0 0 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#timetable .nav > div{
  display: flex;
}
#timetable .nav > div > div{
  width: 23vw;
  text-align: center;
}
#timetable .nav > div > div a{
  display: block;
  text-decoration: none;
  color: #000;
  padding: 2vw;
  border-radius: 1vw;
  background: #ebebeb;
  font-size: 3.5vw;
  border: 1px solid #c9c9c9;
  position: relative;
}
#timetable .nav .pre > div a:before{
  font-family: 'Hiragino Kaku Gothic ProN';
  content: '\f104';
  display: inline-block;
  font-weight: bold;
  position: absolute;
  left: 1vw;
  top: auto;
}
#timetable .nav .pre .day{
  margin-right: 1vw;
}
#timetable .nav .next > div a:after{
  font-family: 'Hiragino Kaku Gothic ProN';
  content: '\f105';
  display: inline-block;
  font-weight: bold;
  position: absolute;
  right: 1vw;
  top: auto;
}
#timetable .nav .next .day{
  margin-left: 1vw;
}
#timetable #table_list{
  margin: 0 0 5vw;
}
#timetable #table_list table thead th{
  background: #3749df;
  text-align: center;
  font-size: 3.5vw;
  color: #fff;
  padding: 2vw 0;
  font-weight: bold;
}
#timetable #table_list table{
  width: 100%;
}
#timetable #table_list table th,
#timetable #table_list table td{
  font-size: 3vw;
  padding: 2vw;
  border:1px solid #fff;
  text-align: center;
}
#timetable #table_list table td.align_l{
  text-align: left;
}
#timetable #table_list table td{
  padding: 2vw;
}
#timetable #table_list table th{
  background: #d4d5df;
  font-weight: normal;
}
#timetable #table_list table tr:nth-child(even){
  background: #f3f4fc;
}
#timetable #table_list table tr:nth-child(odd){
  background: #ebedff;
}
#timetable #table_list table td a.available{
  display: block;
  background: #fff;
  padding: 2vw 0;
  display: inline-block;
  width: 100%;
  border-radius: 1vw;
  border:1px solid #d4d5df;
  border-bottom: 2px solid #d4d5df;
  text-decoration: none;
  color: #000;
}
#timetable .caution p{
  margin-bottom: 4vw;
  line-height: 1.4;
  font-size: 3.5vw;
}
footer{
  margin-top: 10vw;
}
footer ul{
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
footer ul li{
  line-height: 0.2;
  padding: 0 1.5vw;
  border-right: 1px solid #6088C6;
  font-size: 2.4vw;
}
footer ul li:last-child{
  border-right:none;
}
footer ul li a{
  line-height: 1;
  color: #6088C6;
  text-decoration: none;
  font-size: 11px;
}
footer .footer_bottom{
  margin-top: 2vw;
  background: #93CFFC;
  padding: 4vw 0 4vw;
  text-align: center;
  color: #fff;
}
footer .footer_bottom h5{
  font-weight: normal;
  color: #000080;
  font-size: 3vw;
  margin-bottom: 4vw;
}
footer .footer_bottom .address{
  line-height: 1.6;
  color: #000080;
  font-size: 3.5vw;
  margin-bottom: 4vw;
}
.footer_address{
  font-size: 3vw;
}
.footer_tel{
  font-size: 3vw;
}
footer .footer_bottom .copyright{
  font-size: 2.5vw;
}

/*===========================

index

============================*/
#kv{
  position: relative;
}
#kv .in_kv{
  position: relative;
  width: 100%;
}
#kv .in_kv .kv_ttl {
  width: 66vw;
  position: absolute;
  top: 3vw;
  left: 4vw;
}
#search_form{
  background: #3749df;
  width: 100%;
  padding: 5vw;
  position: relative;
}
#search_form .search_form_here {
  font-size: 5vw;
  font-weight: bold;
  text-align: center;
  color: #FEC738;
  padding-bottom: 2vw;
}
#search_form .text_wrap{
  color: #fff;
  padding-top: 4vw;
}
#search_form .text_wrap label{
  margin-bottom: 3vw;
  display: block;
  font-size: 5vw;
}
#search_form .text_wrap label small{
  font-size: 4vw;
}
#search_form .text_wrap label input{
  display: none;
}
#search_form .text_wrap label span{
  position: relative;
/*
  padding-left: 8vw;
*/
}
#search_form .text_wrap label span:before{
  content: "";
  display: block;
  position: absolute;
  top: 1;
  left: 0;
  width: 5vw;
  height: 5vw;
/*
  background: #fff;
*/
  border-radius: 10%;
}
#search_form .text_wrap label input:checked + span:after{
  content: "";
  display: block;
  position: absolute;
  top: 1vw;
  left: 1vw;
  width: 4vw;
  height: 4vw;
  background: #3749df;
  border-radius: 50%;
}
#search_form .formarea{
  margin-bottom: 3vw;
}
#search_form .formarea select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(/img/arrow_bottom.png) no-repeat right 2vw center;
  background-size: 3vw auto;
}
#search_form select,
#search_form input[type="text"]{
  line-height: 1.7;
  width: 100%;
  padding: 2vw;
  border-radius: 1vw;
  font-size: 5vw;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background:#fff;
}
#search_form select:-ms-expand { /*IE対応*/
  display: none;
}
#search_form .tokkyu_info{
  color: #fff;
  padding-top: 2vw;
  font-size: 4vw;
}
#search_form .day{
  position: relative;
}
#search_form .day select#datepicker,
#search_form .day input[type="text"]#datepicker{
  width: 45vw;
}
#search_form .day select#hour,
#search_form .day input[type="text"]#hour{
  width: 30vw;
}
#search_form .day .ui-datepicker-trigger{
  position: absolute;
  top: 15vw;
  left: 38vw;
  width: 5vw;
  opacity: 0.6;
}
/*
#search_form .seat .radio_wrap{
  color: #fff;
  padding-top: 4vw;
}
#search_form .seat .radio_wrap label{
  margin-bottom: 3vw;
  display: block;
  font-size: 5vw;
}
#search_form .seat .radio_wrap label small{
  font-size: 4vw;
}
#search_form .seat .radio_wrap label input{
  display: none;
}
#search_form .seat .radio_wrap label span{
  position: relative;
  padding-left: 8vw;
}
#search_form .seat .radio_wrap label span:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6vw;
  height: 6vw;
  background: #fff;
  border-radius: 50%;
}
#search_form .seat .radio_wrap label input:checked + span:after{
  content: "";
  display: block;
  position: absolute;
  top: 1vw;
  left: 1vw;
  width: 4vw;
  height: 4vw;
  background: #3749df;
  border-radius: 50%;
}
*/
#search_form .num select,
#search_form .num input[type="text"]{
  width: 20vw;
}
#search_form .num span{
  color: #fff;
}
#search_form .num .small{
  font-size: 3vw;
}
#search_form .btn{
  width: 100%;
  text-align: center;
  margin-top: 5vw;
}
#search_form .btn a {
  text-decoration: none;
  background: #f12d2d;
  display: block;
  color: #fff;
  font-weight: bold;
  border: 2px solid #fff;
  border-radius: 2vw;
  padding: 2vw 0;
  font-size: 6.5vw;
}
#search_form .btn a:after {
  font-family: 'Hiragino Kaku Gothic ProN';
  content: '\f002';
  display: inline-block;
  margin-left: 3vw;
  font-size: 7vw;
}
#vehicle_guide{
  background: #EBEEFD;
  padding: 7vw 0 4vw;
}
#vehicle_guide .in_bdy{
  width: 96%;
  margin: 0 auto;
}
#vehicle_guide .in_bdy h2{
  font-size: 5vw;
  color: #4052E3;
  margin-bottom: 4vw;
  font-weight: normal;
}
#vehicle_guide .in_bdy ul{
}
#vehicle_guide .in_bdy ul li{
  width: 100%;
  margin-bottom: 3vw;
}
#vehicle_guide .in_bdy ul li a{
  display: block;
  width: 100%;
  height: 20vw;
  text-align: center;
  background: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 5.5vw;
  border-radius: 2vw;
  border:1vw solid #4052E3;
  color: #000;
  font-weight: bold;
  position: relative;
}
#vehicle_guide .in_bdy ul li a samll{
  font-size: 3.5vw;
}
#vehicle_guide .in_bdy ul li a:after{
  font-family: 'Hiragino Kaku Gothic ProN';
  content: '\f105';
  display: inline-block;
  font-weight: bold;
  position: absolute;
  right: 3vw;
  top: auto;
  color: #4052E3;
  font-size: 8vw;
}
#info{
  background: #fff;
  padding: 7vw 0;
}
#info .in_bdy{
  width: 96%;
  margin: 0 auto;
}
#info .in_bdy h2{
  font-size: 5vw;
  color: #000080;
  margin-bottom: 4vw;
  font-weight: normal;
}
#info .in_bdy .info_list dl{
  margin-bottom: 3vw;
}
#info .in_bdy .info_list dl a{
  display: block;
  background: #F6F6F6;
  padding: 4vw 12vw 4vw 4vw;
  border-radius: 1vw;
  text-decoration: none;
  color: #707070;
  line-height: 1.2;
  position: relative;
  font-size: 4vw;
}
/*
#info .in_bdy .info_list dl a:after{
  font-family: 'Hiragino Kaku Gothic ProN';
  content: '\f105';
  display: inline-block;
  font-weight: bold;
  position: absolute;
  right: 3vw;
  top: 50%;
  color: #646464;
  font-size: 6vw;
  margin-top: -3vw;
}
*/
#info .in_bdy .info_list dl a dt{
  margin-bottom: 2vw;
}
#info .in_bdy .info_list .more{
  text-align: right;
  font-size: 4vw;
}
#info .in_bdy .info_list .more a{
  text-decoration: none;
  color: #00552e;
}
#info .in_bdy .info_list .more a:hover{
  text-decoration: underline;
}
#topic{
  background: #F6F6F6;
  padding: 7vw 0;
}
#topic .in_bdy{
  width: 96%;
  margin: 0 auto;
}
#topic .in_bdy h2{
  font-size: 5vw;
  color: #4052E3;
  margin-bottom: 4vw;
  font-weight: normal;
}
#topic .in_bdy ul{
  display: flex;
  justify-content: space-between;
}
#topic .in_bdy ul li{
  width: 32%;
}
#sns{
  background: #fff;
  padding: 7vw 0;
}
#sns .in_bdy{
  width: 96%;
  margin: 0 auto;
}
#sns .in_bdy h2{
  font-size: 5vw;
  color: #4052E3;
  margin-bottom: 4vw;
  font-weight: normal;
}
#sns .in_bdy p{
  text-align: center;
  color: #707070;
  margin-bottom: 5vw;
  line-height: 1.2;
  font-size: 4vw;
}
#sns .in_bdy ul{
  display: flex;
  justify-content: center;
}
#sns .in_bdy ul li{
  width: 15vw;
}
#sns .in_bdy ul li:first-child{
  margin-right: 8vw;
}
/*===========================

faq

============================*/
#faq{
  background: #fff;
  padding: 7vw 0;
}
#faq .in_bdy{
  width: 96%;
  margin: 0 auto;
}
#faq h2 {
  font-size: 5vw;
  color: #000080;
  margin-bottom: 4vw;
  font-weight: normal;
}
#faq .faq_list dl{
  margin-bottom: 8vw;
}
#faq .faq_list dl dt{
  font-size: 5vw;
  background: #AEC4E5	;
  color: #4072B3;
  border-radius: 1vw;
  padding: 3vw;
  margin-bottom: 3vw;
  line-height: 1.4;
}
#faq .faq_list dl dd{
  color: #707070;
  font-size: 4vw;
  line-height: 1.4;
}
#faq .faq_list dl dd table{
  margin: 3vw auto;
  width: 100%;
}
#faq .faq_list dl dd table th,
#faq .faq_list dl dd table td{
  border: 1px solid #707070;
  vertical-align: middle;
  padding: 2vw;
}
#faq .faq_list dl dd table th{
  font-size: 4.5vw;
  font-weight: normal;
  background: #AEC4E5;
}
#faq .faq_list dl dd table tr td:last-child{
  text-align: center;
}
#faq .faq_list dl dd .mgb20{
  margin-bottom: 5vw;
}
#faq .faq_list dl dd .mgb30{
  margin-bottom: 10vw;
}
#faq .faq_list dl dd .mgb50{
  margin-bottom: 20vw;
}
#faq .faq_list dl dd img.freemail,
#faq .faq_list dl dd img.keitai{
  width: 100%;
}
#faq .contact_box{
  background: #AEC4E5;
  margin: 10vw auto 0;
  width: 100%;
  padding: 3vw;
  border-radius: 3vw;
}
#faq .contact_box h5{
  font-weight: normal;
  font-size: 4.5vw;
  margin-bottom: 3vw;
  color: #4072B3;
  text-align: center;
}
#faq .contact_box dl{
text-align: center;
}
#faq .contact_box dl dt{
  font-size: 6vw;
  color: #4072B3;
  margin-bottom: 2vw;
}
#faq .contact_box dl dd{
  font-size: 3vw;
  color: #4072B3;
  line-height: 1.4;
}

/*===========================

mailing_cost

============================*/
#mailing_cost{
  background: #fff;
  padding: 7vw 0;
}
#mailing_cost .in_bdy{
  width: 96%;
  margin: 0 auto;
}
#mailing_cost h2 {
  font-size: 5vw;
  color: #4052E3;
  margin-bottom: 4vw;
  font-weight: normal;
}
#mailing_cost .mailing_cost_list{
  color: #707070;
  font-size: 4vw;
  line-height: 1.4;
}
#mailing_cost .mailing_cost_list table{
  margin: 3vw auto;
  width: 100%;
}
#mailing_cost .mailing_cost_list table th,
#mailing_cost .mailing_cost_list table td{
  border: 1px solid #707070;
  vertical-align: middle;
  padding: 2vw;
}
#mailing_cost .mailing_cost_list table th{
  font-size: 4.5vw;
  font-weight: normal;
  background: #ECEEFD;
}
#mailing_cost .mailing_cost_list table tr td:last-child{
  text-align: center;
}
#mailing_cost .mailing_cost_list .mgb20{
  margin-bottom: 5vw;
}
#mailing_cost .mailing_cost_list .mgb30{
  margin-bottom: 10vw;
}
#mailing_cost .mailing_cost_list .mgb50{
  margin-bottom: 20vw;
}

/*===========================

cancel

============================*/
#cancel{
  background: #fff;
  padding: 7vw 0;
  font-size: 4vw;
  line-height: 1.4;
  color: #707070;
}
#cancel .in_bdy{
  width: 96%;
  margin: 0 auto;
}
#cancel h2 {
  font-size: 5vw;
  color: #000080;
  margin-bottom: 3vw;
  font-weight: normal;
}
#cancel .mgb30{
  margin-bottom: 10vw;
}
#cancel p .tel{
  font-size: 5.5vw;
}
#cancel p .f_red{
  color: #F12D2D;
}
#cancel dl{
  margin-bottom: 8vw;
}
#cancel dl dt{
  font-size: 5vw;
  background: #AEC4E5;
  color: #4072B3;
  border-radius: 1vw;
  padding: 3vw;
  margin-bottom: 3vw;
}
#cancel dl dd p{
  margin-bottom: 3vw;
}
#cancel dl dd .box{
  border: 1.5vw solid #AEC4E5;
  margin-bottom: 6vw;
  border-radius: 1vw;
  padding: 5vw;
}
#cancel dl dd .box h4{
  font-size: 5vw;
  font-weight: normal;
  margin-bottom: 4vw;
  text-align: center;
}
#cancel dl dd .box ul.caution li{
  padding-left: 1em;
  text-indent: -1em;
}
#cancel dl dd .box table{
  width: 100%;
  margin-bottom: 5vw;
}
#cancel dl dd .box table th,
#cancel dl dd .box table td{
  border: 1px solid #707070;
  vertical-align: middle;
  text-align: center;
  padding: 3vw 1vw;
}
#cancel dl dd .box table th{
  font-size: 4.5vw;
  font-weight: normal;
  background: #AEC4E5;
}
/*===========================

company

============================*/
#company{
  background: #fff;
  padding: 7vw 0;
  font-size: 4vw;
  line-height: 1.4;
  color: #707070;
}
#company .in_bdy{
  width: 96%;
  margin: 0 auto;
}
#company h2 {
  font-size: 5vw;
  color: #000080;
  margin-bottom: 3vw;
  font-weight: normal;
}
#company table{
  width: 100%;
  margin: 0 auto;
}
#company table th,
#company table td{
  border: 1px solid #707070;
  vertical-align: middle;
  padding: 2vw 4vw;
  font-size: 13px;
}
#company table th{
  text-align: center;
  font-weight: normal;
  background: #AEC4E5;
}
/*===========================

law

============================*/
#law{
  background: #fff;
  padding: 7vw 0;
  font-size: 4vw;
  line-height: 1.4;
  color: #707070;
}
#law .in_bdy{
  width: 96%;
  margin: 0 auto;
}
#law h2 {
  font-size: 5vw;
  color: #4052E3;
  margin-bottom: 3vw;
  font-weight: normal;
}
#law table{
  width: 100%;
  margin: 0 auto;
}
#law table th,
#law table td{
  border: 1px solid #707070;
  vertical-align: middle;
  padding: 2vw 4vw;
}
#law table th{
  text-align: center;
  font-weight: normal;
  background: #ECEEFD;
}
/*===========================

privacypolicy

============================*/
#privacypolicy{
  background: #fff;
  padding: 7vw 0;
  font-size: 4vw;
  line-height: 1.4;
  color: #707070;
}
#privacypolicy .in_bdy{
  width: 96%;
  margin: 0 auto;
}
#privacypolicy h2 {
  font-size: 5vw;
  color: #000080;
  margin-bottom: 3vw;
  font-weight: normal;
}
#privacypolicy h3{
  font-size: 4.5vw;
  text-align: center;
  margin-bottom: 8vw;
  font-weight: normal;
}
#privacypolicy .meta{
  text-align: right;
  margin-bottom: 8vw;
}
#privacypolicy p{
  margin-bottom: 8vw;
}
#privacypolicy dl{
  margin-bottom: 8vw;
}
#privacypolicy dl dt{
  margin-bottom: 1.5vw;
  font-size: 4.5vw;
}
/*===========================

yakkan

============================*/
#yakkan{
  background: #fff;
  padding: 7vw 0;
  font-size: 4vw;
  line-height: 1.4;
  color: #707070;
}
#yakkan .in_bdy{
  width: 96%;
  margin: 0 auto;
}
#yakkan h2 {
  font-size: 5vw;
  color: #4052E3;
  margin-bottom: 3vw;
  font-weight: normal;
}
#yakkan h3{
  font-size: 5vw;
  background: #ECEEFD;
  color: #4052E3;
  border-radius: 1vw;
  padding: 3vw;
  margin-bottom: 5vw;
  font-weight: normal;
}
#yakkan .section{
  margin-bottom: 10vw;
}
#yakkan .section h4{
  font-weight: normal;
  font-size: 4.5vw;
  margin-bottom: 2vw;
}
/*===========================

guide

============================*/
#guide{
  line-height: 1.4;
  color: #707070;
  font-size: 4vw;
}
#guide .mgb30{
  margin-bottom: 6vw;
}
#guide .mgb80{
  margin-bottom: 14vw;
}
#guide .red_f{
  color: #F12D2D;
}
#guide .blue_f{
  color: #4052E3;
}
#guide .f_b{
  color: #4052E3;
  font-size: 5.5vw;
  margin: 2vw 0;
}
#guide a{
  text-decoration: none;
  color: #4072B3;
}
#guide a:hover{
  text-decoration: underline;
}
#guide .come_list li{
  padding-left: 1em;
  text-indent: -1em;
}
#guide h2 {
  font-size: 5vw;
  color: #000080;
  margin-bottom: 5vw;
  font-weight: normal;
}
#guide h4{
  font-size: 5.5vw;
  background: #AEC4E5;
  color: #4072B3;
  border-radius: 1vw;
  padding: 2vw 0 2vw 5vw;
  margin-bottom: 5vw;
  font-weight: normal;
}
#guide h4 .small{
  font-size: 3vw;
  vertical-align: middle;
  margin-right: 4vw;
}
#guide #usage {
  background: #AEC4E5;
  padding: 7vw 0;
}
#guide #usage .in_usage{
  width: 96%;
  margin: 0 auto;
}
#guide #usage h3{
  margin-bottom: 5.5vw;
  font-weight: normal;
}
#guide #usage ul{
  margin-bottom: 8vw;
  list-style: disc;
  padding-left: 1em;
}
#guide #usage .step_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5vw;
}
#guide #usage .step_box dl{
  background: #4072B3;
  color: #fff;
  border-radius: 1vw;
  border:2px #fff solid;
  font-weight: bold;
  padding: 4vw 5vw;
  margin-bottom: 2vw;
}
#guide #usage .step_box dl dt{
  color: #FFC933;
  margin-bottom: 2vw;
  font-size: 4.5vw;
}
#guide #usage .step_box dl dd{
  font-size: 6.5vw;
  text-align: center;
}
#guide #usage .step_box .arrow{
  width: 3vw;
}
#guide #usage .align_c{
  text-align: center;
}
#guide .in_bdy{
  width: 96%;
  margin: 0 auto;
  padding: 7vw 0;
}
#guide .ttl_wrap{
  margin-bottom: 5vw;
}
#guide .ttl_wrap h2{
  margin: 0;
}
#guide .ttl_wrap .sub{
  margin-bottom: 3vw
}
#guide .in_bdy h3{
  width: 48%;
  background: #4072B3;
  color: #fff;
  border-radius: 1vw;
  margin-bottom: 3vw;
  padding: 2vw 4vw;
  font-size: 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#guide .in_bdy h3 span{
  color: #FFC933;
  font-size: 4.5vw;
}
#guide .in_bdy .arrow{
  margin: 4vw auto;
  width: 20vw;
}
#guide .in_bdy .pay_nav{
  margin: 10vw 0;
  font-size: 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#guide .in_bdy .pay_nav li{
  text-align: center;
  width: 32%;
}
#guide .in_bdy .pay_nav li a{
  display: block;
  padding: 2vw 0;
  border: 2px solid #4072B3;
  border-radius: 1vw;
}
#guide .in_bdy .pay_nav li a:hover{
  text-decoration: none;
  background: #AEC4E5;
}
#guide .in_bdy .smbc{
  margin-bottom: 8vw;
}
#guide .in_bdy .smbc .logo{
  width: 80vw;
  display: block;
}
#guide .in_bdy .smbc .info{
  font-size: 5vw;
  margin-left: 3vw;
}
#guide .in_bdy #bank,
#guide .in_bdy #credit,
#guide .in_bdy #cvs{
  margin-bottom: 11vw;
}
#guide .in_bdy .card_log,
#guide .in_bdy .cvs_logo{
  width: 100%;
  margin: 5vw 0;
}
#guide .guide_li{
  margin-bottom: 12vw;
}
#guide .guide_li li{
  padding-left: 1em;
  text-indent: -1em;
}
#guide .tel_box{
  width: 100%;
  margin: 0 auto 7vw;
  border-radius: 1vw;
  border:3px solid #ECEEFD;
  padding: 4vw;
  text-align: center;
}
#guide .tel_box h6{
  font-weight: normal;
  margin-bottom: 2vw;
}
#guide .contact_box{
  background: #E6FFE9;
  margin: 10vw auto 0;
  width: 100%;
  padding: 3vw;
  border-radius: 3vw;
}
#guide .contact_box h5{
  font-weight: normal;
  font-size: 4.5vw;
  margin-bottom: 3vw;
  color: #00552e;
  text-align: center;
}
#guide .contact_box dl{
text-align: center;
}
#guide .contact_box dl dt{
  font-size: 8vw;
  color: #00552e;
  margin-bottom: 2vw;
}
#guide .contact_box dl dd{
  font-size: 3vw;
  color: #00552e;
  line-height: 1.4;
}
.arrow_icon .pc{
  display: none;
}
/*===========================

ticket

============================*/
#ticket{
  background: #fff;
  padding: 7vw 0;
  font-size: 4vw;
  line-height: 1.4;
  color: #707070;
}
#ticket .red_f{
  color: #F12D2D;
}
#ticket .in_bdy{
  width: 96%;
  margin: 0 auto;
}
#ticket h2 {
  font-size: 5.5vw;
  color: #4052E3;
  margin-bottom: 3vw;
  font-weight: normal;
}
#ticket #step h3{
  width: 96%;
  margin: 0 auto 8vw;
}
#ticket .step_wrap{
  margin-bottom: 10vw;
}
#ticket .step_box{
  width: 100%;
  background: #FFF7E2;
  border: 1.5vw solid #4052E3;
  border-radius: 1vw;
  padding: 3vw;
  margin-bottom: 4vw;
}
#ticket .step_box h4{
  background: #4052E3;
  color: #fff;
  border-radius: 1vw;
  margin-bottom: 4vw;
  padding: 3vw 6vw 3vw 4vw;
  font-size: 5.5vw;
  display: inline-block;
  color: #FFC933;
}
#ticket .step_box p{
  margin-bottom: 3vw;
}
#ticket .step_box .picture{
  margin: 0 auto;
}
#ticket .step_box.step1 .picture{
  width: 45vw;
}
#ticket .step_box.step2 .picture{
  width: 30vw;
}
#ticket .step_box.step3 .picture{
  width: 40vw;
}
#ticket .step_box.step4 .picture{
  width: 80vw;
}
#ticket .step_box.step5 .picture{
  width: 100%;
}
#ticket .step_box .caution{
  margin-top: 3vw;
  font-size: 3.5vw;
}
#ticket .step_box .picture img{
  width: 100%;
}
#ticket #ticket_sys h3{
  font-size: 5.5vw;
  background: #ECEEFD;
  color: #4052E3;
  border-radius: 1vw;
  padding: 2vw 0 2vw 5vw;
  margin-bottom: 5vw;
  font-weight: normal;
}
#ticket #ticket_sys .box{
  border: 1.5vw solid #ECEEFD;
  background: #fff;
  margin-bottom: 4vw;
  border-radius: 1vw;
  padding: 2vw;
}
#ticket #ticket_sys .box .img{
  width: 40vw;
  margin: 0 auto 4vw;
}
#ticket #ticket_sys .box .img img{
  width: 100%;
}
#ticket #ticket_sys .box .content{
  margin-left: 5%;
}
#ticket #ticket_sys .box .content h4{
  color: #4052E3;
  font-size: 5.5vw;
  font-weight: normal;
  margin-bottom: 3vw;
}
#ticket #ticket_sys .box .txt p{
  margin-bottom: 5vw;
}


/* 下記からhermes */
@import url(https://fonts.googleapis.com/css?family=Nunito);

/* 共通CSS */
*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 16px;
}

.header_hermes {
    justify-content: space-between;
    display: flex;
    padding: 20px;
    align-items: center;
}

.header__logo_hermes {
    font-size: 24px;
}

.header__cart_hermes {
    width: 50px;
    height: 50px;
    padding: 10px;
    position: relative;
}

.cart__icon_hermes img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.cart__count_hermes {
    position: absolute;
    top: 15px;
    right: 72px;
    background-color: red;
    color: #fff;
    height: 25px;
    width: 25px;
    z-index: 20;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.container_hermes {
    max-width: 900px;
    margin: 50px auto;
    /* padding: 0 40px; */
}

/* 検索フォームCSS */

.body{
  /* padding: 3%; */
}
.orderable_hermes {
    align-items: center;
    max-width: 800px;
    display: flex;
}

.orderable__head_hermes {
    background: #000080;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    /* width: 47%; */
}

.orderable__date_hermes {
    color: #000080;
    font-weight: bold;
    font-size: smaller;
    padding-top: 5px;
    /* padding-left: 10px; */
}

.search_hermes {
    max-width: 800px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 40px auto;
}

.search__select_hermes {
  border-radius: 0;
  width: 210%;
  border: 1px solid #4072B3;
  display: block;
  padding: 10px;
  margin-bottom: 10px;
}

.search__select_hermes {
    border-radius: 0;
    width: 100%;
    border: 1px solid #4072B3;
    display: block;
    padding: 10px;
    margin-bottom: 10px;
}

.search__line_hermes {
    /* width: 48%; */
}
.search__head_hermes{
  padding-bottom: 3px;
}

.search__station_hermes {
    display: flex;
    justify-content: space-between;
}

.search__start_hermes {
    width: 49%;
}

.search__arrival_hermes {
    width: 49%;
}

.search__time_hermes {
    margin-top: 15px;
    /* width: 48%; */
}

.search__time-wrapper_hermes {
    display: flex;
}

.search__date_hermes {
    margin-right: 10px;
    margin-bottom: 10px;
}

.search__hour_hermes {
    width: 100%;
}

.search__count_hermes {
    /* width: 49%; */
    margin-top: 15px;
}

.search__count-wrapper_hermes {
    
    justify-content: space-between;
}

.search__count-block_hermes {
    /* width: 49%; */
    display: flex;
    align-items: center;
}

.search__count-category_hermes {
    width: 50%;
   
    line-height: 1.2;
}

.search__count-age_hermes {
    font-size: 12px;
}

.search__count-select_hermes {
    flex: 1;
}

.search__button_hermes {
    width: 200px;
    margin: 40px auto 0;
    padding: 15px 40px;
    background-color: #00552e;
    color: white;
    font-weight: bold;
    border: none;
    display: block;
}

.search__button_hermes:disabled {
    background-color: #bbb;
    cursor: not-allowed;
}

/* 検索結果表示用CSS */

.search-info__hermes {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.seat-type__hermes {
    font-size: 12px;
    text-align: center;
}

.research_hermes {
    display: flex;
    justify-content: space-between;
}

.research__buttons_hermes {
    width: 250px;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.research__button_hermes {
    display: block;
    padding: 5px 20px;
    background-color: #3160AB;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.result_hermes {
    margin-top: 50px;
}

.result__row_hermes {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.result__row_hermes+.result__row_hermes {
    border-top: 1px solid rgb(112, 112, 112);
}

.result__name_hermes {
    flex: 1;
    font-weight: bold;
}

.result__time_hermes {
    width: 160px;
    font-weight: bold;
    text-align: center;
}

.maru-hermes {
    width: 40px;
    height: 30px;
    background-color: #3160AB;
    color: white;
    font-weight: bold;
    margin: 0 20px;
    cursor: pointer;
    border: none;
    text-align: center;
}

.sankaku-hermes {
    width: 40px;
    height: 30px;
    background-color: #3160AB;
    color: white;
    font-weight: bold;
    margin: 0 20px;
    cursor: pointer;
    border: none;
    text-align: center;
}

.batsu-hermes {
    width: 40px;
    height: 30px;
    background-color: white;
    color: black;
    font-weight: bold;
    margin: 0 20px;
    text-align: center;
}

.hyphen-hermes {
    width: 40px;
    height: 30px;
    background-color: white;
    color: black;
    font-weight: bold;
    margin: 0 20px;
    text-align: center;
}

/* カート表示用CSS */

.cart__table_hermes {
    border: 1px solid #bbb;
}

.cart__head_hermes {
    font-weight: bold;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #ddd;
}

.cart__body_hermes {
    display: flex;
    border-top: 1px solid #bbb;
}

.cart__remove_hermes {
    width: 70px;
    text-align: center;
}

.cart__ticket_hermes {
    flex: 1;
    border-left: 1px solid #bbb;
}

.cart__unitPrice_hermes {
    width: 150px;
    border-left: 1px solid #bbb;
}

.cart__quantity_hermes {
    width: 110px;
    border-left: 1px solid #bbb;
}

.cart__total_hermes {
    width: 110px;
    border-left: 1px solid #bbb;
}

.cart__head_hermes .cart__remove_hermes {
    height: 100%;
}

.cart__head_hermes .cart__ticket_hermes {
    height: 100%;
}

.cart__head_hermes .cart__unitPrice_hermes {
    height: 100%;
    white-space: nowrap;
}

.cart__head_hermes .cart__quantity_hermes {
    height: 100%;
}

.cart__head_hermes .cart__total_hermes {
    height: 100%;
    white-space: nowrap;
}

.cart__body_hermes .cart__remove_hermes {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: underline;
    color: #3160AB;
}

.cart__body_hermes .cart__ticket_hermes {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.cart__body_hermes .cart__unitPrice_hermes {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.cart__body_hermes .cart__quantity_hermes {
    padding: 10px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: end;
    text-align: right;
}

.cart__body_hermes .cart__total_hermes {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.cart__price_hermes {
    flex: 1;
    background-color: #ddd;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: end;
    font-weight: bold;
}

.cart__link_hermes {
    padding: 10px 20px;
    background: #3160AB;
    color: white;
    font-weight: bold;
    margin-top: 30px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}


/* ユーザー区分選択画面 */

.category__link_hermes {
    display: block;
    background-color: #bbb;
    font-weight: bold;
    color: white;
    padding: 10px 20px;
    text-align: center;
    width: 300px;
    margin: 20px auto 0;
    text-decoration: none;
}

.category__signin_hermes {
    background-color: #3160AB;
    display: block;
    font-weight: bold;
    color: white;
    padding: 10px 20px;
    text-align: center;
    width: 300px;
    margin: 20px auto 0;
    text-decoration: none;
}

.category__login_hermes {
    display: block;
    background-color: #3160AB;
    font-weight: bold;
    color: white;
    padding: 10px 20px;
    text-align: center;
    width: 300px;
    margin: 20px auto 0;
    border: none;
}

.category__block_hermes+.category__block_hermes {
    margin-top: 40px;
}

.category__item_hermes {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.category__label_hermes {
    width: 150px;
}

.category__input_hermes {
    flex: 1;
    max-width: 400px;
}

/* ユーザー情報入力画面 */
.user__block_hermes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.user__block_hermes+.user__block_hermes {
    margin-top: 20px;
}

.user__label_hermes {
    width: 150px;
    display: inline-block;
}

.user__inputBlock_hermes {
    display: flex;
    flex: 1;
    align-items: center;
    flex-wrap: wrap;
}

.user__input_hermes {
    width: 100%;
    padding: 5px 10px;
}

.user__inputName_hermes {
    width: 48%;
    display: block;
    padding: 5px 10px;
}

.user__inputName_hermes+.user__inputName_hermes {
    margin-left: 4%;
}

.user__inputPost_hermes {
    margin: 0 10px;
    width: 30%;
    padding: 5px 10px;
}

.user__button_hermes {
    display: block;
    margin: 30px auto 0;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    background-color: #3160AB;
    border: none;
    cursor: pointer;
}

.user__button_hermes:disabled {
    cursor: not-allowed;
    background-color: #bbb;
}

.user__address_hermes {
    display: block;
    width: 100%;
    flex: 1;
}

.user__address_hermes .user__label_hermes {
    margin-top: 20px;
    display: block;
    width: 100%;
}

.user__address_hermes .user__input_hermes {
    margin-top: 10px;
    display: block;
}

.user__error_hermes {
    font-size: 12px;
    color: red;
}

.require_hermes {
    position: relative;
}

.require_hermes::after {
    content: '*';
    position: absolute;
    transform: translateX(10px);
    text-align: center;
    color: red;
}

/* payment.html */
.payment__item_hermes+.payment__item_hermes {
    margin-top: 20px;
}

.payment__body_hermes {
    display: block;
}

/* DatePicker用CSS */

.is-sunday .ui-state-default,
.is-holiday .ui-state-default {
    background: #ffb6ce;
    color: red;
}

.is-saturday .ui-state-default {
    background: #7fc3ff;
    color: blue;
}

/* ========== */

.select__head_hermes {
    background-color: #ddd;
    padding: 10px 20px;
    border-left: 4px solid #3160AB;
    margin-bottom: 30px;
}

.select__block_hermes {
    margin-left: 20px;
}

.select__sentType_hermes {
    margin-top: 50px;
}

.select__body_hermes {
    margin-left: 20px;
    margin-bottom: 50px;
}

.select__button_hermes {
    display: block;
    margin: 30px auto 0;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    background-color: #3160AB;
    border: none;
    cursor: pointer;
}

.select__ticketName_hermes {
    margin-top: 20px;
}

.select__position_hermes select {
    margin-left: 0px !important;
}

.select__link_hermes {
    display: block;
    margin-left: 20px;
}

/* 確認画面 */
.confirm__head_hermes {
    background-color: #ddd;
    padding: 10px 20px;
    border-left: 4px solid #3160AB;
    margin: 30px 0;
}

.confirm__body_hermes {
    margin-left: 20px;
}

.confirm__userHead_hermes {
    margin-top: 20px;
    margin-left: 20px;
}

.confirm__userBody_hermes {
    margin-left: 20px;
}

.confirm__back_hermes {
    display: block;
    text-align: right;
    margin-top: 20px;
}

.confirm__button_hermes {
    display: block;
    margin: 30px auto 0;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    background-color: #3160AB;
    border: none;
    cursor: pointer;
}

.confirm__button_hermes:disabled {
    background-color: #bbb;
    cursor: not-allowed;
}

.confirm__paymentType_hermes {
    margin-left: 20px;
}


/* 照会情報入力ページ */
.inquiry__head_hermes {
    background-color: #ddd;
    padding: 10px 20px;
    border-left: 4px solid #3160AB;
    margin: 30px 0;
}

.inquiry__label_hermes {
    margin-left: 20px;
    width: 150px;
}

.inquiry__input_hermes {
    width: 100%;
    flex: 1;
    margin-right: 20px;
    padding: 5px 10px;
}

.inquiry__item_hermes {
    display: flex;
}

.inquiry__item_hermes+.inquiry__item_hermes {
    margin-top: 20px;
}

.inquiry__back_hermes {
    display: block;
    text-align: right;
    margin-top: 20px;
}

#show,
.inquiry__login_hermes {
    display: block;
    margin: 30px auto 0;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    background-color: #3160AB;
    border: none;
    cursor: pointer;
}

.inquiry__login_hermes:disabled {
    background-color: #bbb;
    cursor: not-allowed;
}

.inquiry__error_hermes {
    color: red;
    text-align: center;
}

.show__caution_hermes {
    display: block;
    font-size: 18px;
    color: red;
    font-weight: bold;
    width: 100%;
    margin-top: 20px;
}

.show__payment_hermes {
    display: block;
    padding: 10px 20px;
    font-weight: bold;
    color: #fff;
    background-color: #3160AB;
    margin-top: 20px;
}
.flowline li .flow_number {
  line-height: 14px;
  width: 39px;
  height: 41px;
  margin-bottom: 5px;
  font-size: 12px;
  font-size: 1.2rem;
  background: #525263;
  color: #fff;
  top: 0;
  left: 18px;
  display: inline-block;
  margin-bottom: 5px;
  text-align: center;
  vertical-align: middle;
  border-radius: 11%;
  padding-top: 3px;
}




.news-container {
  padding: 15px;
}

.news-item {
  padding: 15px;
}

.news-item h2 {
  font-size: 18px;
}

.pagination ul {
  flex-wrap: wrap;
}

.pagination li {
  margin-bottom: 5px;
}



.single-container {
  padding: 15px;
}

.post-title {
  font-size: 22px;
}

.post-content {
  font-size: 15px;
}

.post-navigation {
  flex-direction: column;
  align-items: center;
}

.post-navigation div {
  margin-bottom: 10px;
}

.related-posts ul {
  flex-direction: column;
}

.related-posts li {
  flex: 1 1 100%;
}
