@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
---------------------------------------------*/
* {
  box-sizing: border-box;
}
*::before, *::after {
  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 {
  -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;
}

/*==================================================================
    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 {
  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;
}

/*==================================================================
    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;
  font-feature-settings: "palt" 1;
  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;
  transition: all 200ms ease;
  color: #000;
}

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

/*  a img
---------------------------------------------*/
a img {
  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;
  margin: 0px auto;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 1100px;
    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;
}

.panel02 {
  margin-bottom: 65px;
}

.panel03 {
  margin-bottom: 85px;
}

/*==================================================================
    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 {
  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;
  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;
  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: flex;
  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_arrow_select.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

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

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

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

/*==================================================================
    .h01
===================================================================*/
.h01 {
  display: flex;
  flex-flow: column nowrap;
  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;
}

/*==================================================================
    .mainttl
===================================================================*/
.mainttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.5;
  color: #1e2b40;
}
.mainttl + .mainlead {
  margin-bottom: 20px;
}

.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%;
  transform: translateY(-50%);
  background: #fff;
  font-weight: normal;
  font-size: 1rem;
  border-radius: 2px;
  color: #6F7070;
  border: 1px solid #ccc;
  line-height: 18px;
  padding: 0px 5px;
}
@media screen and (min-width: 768px) {
  .panelttl .edit {
    font-size: 1.2rem;
    right: 20px;
    line-height: 24px;
  }
}
.panelttl .edit a {
  color: #6F7070;
}

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

#event .paragraph_ttl {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 5rem;
  text-align: center;
}
#event .paragraph_ttl span {
  display: block;
  padding-top: 10px;
  font-size: 1.2rem;
  font-style: normal;
}
#event .paragraph_ttl.-about {
  color: #fff;
  opacity: 0.7;
  margin-bottom: 50px;
}
#event .paragraph_ttl.-where {
  color: #000;
  margin-bottom: 50px;
}
#event .paragraph_ttl.-where span {
  color: #999999;
  letter-spacing: 0.1em;
}
#event .paragraph_ttl.-howto {
  color: #fff;
  opacity: 0.7;
  margin-bottom: 50px;
}
#event .paragraph_ttl.-station {
  color: #85BAEA;
  margin-bottom: 30px;
}
#event .paragraph_ttl.-station span {
  color: #000079;
}
#event .paragraph_ttl.-description {
  color: #009245;
  margin-bottom: 30px;
}
#event .paragraph_ttl.-description span {
  color: #999999;
  letter-spacing: 0.1em;
}

/*==================================================================
    .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: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  background: linear-gradient(to right, #334BA5 0%, #3D94D9 100%);
  border-radius: 3px;
  border: none;
  outline: none;
  font-size: 1.4rem;
  line-height: normal;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.09em;
  position: relative;
}
.btn:nth-child(2) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .btn {
    height: 60px;
  }
}
.btn.-grad01 {
  background: linear-gradient(to right, #870237 0%, #5f0020 100%);
}
.btn.-grad02 {
  background: linear-gradient(to right, #C01B51 0%, #F5406D 100%);
}
.btn.-grad03 {
  background: linear-gradient(to right, #009245 0%, #00A899 100%);
}
.btn.-gray {
  background: #6d7583;
}
.btn.-gray02 {
  background: #5C636F;
}
.btn.-gold {
  background: #8e7d3b;
}
.btn.-green {
  background: #195120;
}
.btn.-green02 {
  background: #008A65;
}
.btn.-campaign {
  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.-pointpage {
  height: 120px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .btn.-pointpage {
    height: 80px;
    font-size: 1.4rem;
  }
}
.btn.-pointpage:hover {
  opacity: 0.8;
}
.btn.-point_shop {
  background: #4F71BE;
}
.btn.-point_travel {
  background: #7EAB55;
}
.btn.-point_home {
  background: #DF8344;
}
.btn.-lhxl {
  height: 100px;
}
.btn.-lhl {
  height: 75px;
}
.btn.-lhm {
  height: 60px;
}
.btn.-fs-mid {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.btn.-fs-big {
  flex-flow: column nowrap;
  font-size: 2.2rem;
  letter-spacing: 0;
  font-weight: 500;
}
.btn.-fs-big .txt {
  font-size: 1rem;
}
.btn:disabled {
  opacity: 0.3;
}
.btn.-check .icon {
  display: flex;
  flex-flow: row nowrap;
  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: flex;
  flex-flow: row nowrap;
  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: flex;
  flex-flow: row nowrap;
  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%;
  transform: translateY(-50%);
}
.btn.-multi {
  display: flex;
  flex-flow: column;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .goto_btn {
    max-width: 400px;
    margin: 0px auto;
  }
}

/*==================================================================
    .tbl01
===================================================================*/
.tbl01 {
  width: 100%;
  margin-bottom: 20px;
  word-break: break-word;
}
.tbl01 tbody {
  color: #3C3C3C;
}
.tbl01 tbody tr {
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
  border-bottom: 1px solid #a6a6a6;
}
.tbl01 tbody tr.-noline {
  border: none;
}
.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: 500;
}
.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;
}
@media screen and (min-width: 768px) {
  .tbl01 tbody th span {
    font-size: 1.2rem;
  }
}
.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: flex;
  flex-flow: row nowrap;
  padding-top: 0;
}
.tbl01 tbody td.-flex input[type=text]:first-child {
  margin-right: 10px;
}
.tbl01 thead th {
  background-color: rgba(98, 79, 17, 0.15);
  font-weight: 500;
  line-height: 30px;
  color: #4D4D4D;
  padding-left: 10px;
  margin-top: 10px;
}
.tbl01 thead th.-sbw {
  display: flex;
  justify-content: space-between;
}
.tbl01 thead th.-sbw span {
  padding-right: 10px;
  cursor: pointer;
}

/*==================================================================
    .tbl02
===================================================================*/
.tbl02 {
  width: 100%;
  word-break: break-word;
}
.tbl02 tbody {
  color: #3C3C3C;
}
.tbl02 tbody th {
  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: flex;
  flex-flow: row nowrap;
  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: flex;
  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: 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: 500;
  line-height: 30px;
  color: #4D4D4D;
  padding-left: 10px;
  margin-top: 10px;
  position: relative;
}
.tbl02 thead th span {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  font-weight: normal;
  font-size: 1rem;
  border-radius: 2px;
  color: #6F7070;
  border: 1px solid #ccc;
  line-height: 18px;
  padding: 0px 5px;
  cursor: pointer;
}

/*==================================================================
    .header
===================================================================*/
.header_inner {
  padding: 10px 0px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.header_inner img {
  height: 38px;
}
.header_inner img.main {
  height: 70px;
}

/*==================================================================
    .nav
===================================================================*/
.nav {
  width: 89.8666666667vw;
  height: 100vh; /* Fallback */
  height: calc(var(--vh, 1vh) * 100);
  background: linear-gradient(to bottom, #334BA5 30%, #3D94D9 100%) no-repeat;
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  transition: all 200ms ease;
  transform: translateX(100%);
}
@media screen and (min-width: 768px) {
  .nav {
    max-width: 400px;
  }
}
.nav.open {
  transform: translateX(0);
}
.nav_box {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  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: flex;
  flex-flow: row nowrap;
  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: flex;
  flex-flow: row nowrap;
  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: flex;
  flex-flow: row nowrap;
  align-items: 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;
  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: #fff;
}
.footer_sns ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.footer_sns ul li {
  width: 47px;
  margin: 0 10px;
}
.footer_links {
  padding: 30px 0;
  font-size: 1.2rem;
}
.footer_links ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.footer_links ul li {
  display: flex;
  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;
}

/*==================================================================
   #top .hero
===================================================================*/
#top .hero {
  width: 100%;
  height: 575px;
  margin-bottom: 30px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  #top .hero {
    height: 80vh;
    max-height: 500px;
  }
}
#top .hero_inner {
  max-width: 1280px;
  margin: 0px auto;
  position: relative;
  background-image: url(../img/top/hero-bg.jpg);
  background-repeat: no-repeat;
  background-position: right;
  height: 100%;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  #top .hero_inner {
    background-size: cover;
    background-position: center;
  }
}
#top .hero_ttl {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-left: 5vw;
}
@media screen and (max-width: 768px) {
  #top .hero_ttl {
    width: 80%;
    max-width: 400px;
    margin: 0px auto;
    padding-left: 0;
  }
}

/*==================================================================
  #event .hero
===================================================================*/
#event .hero {
  width: 100%;
  position: relative;
  background: url(../img/event/img-hero-bgcolor.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 740px;
}
@media screen and (max-width: 1100px) {
  #event .hero {
    height: auto;
    background: none;
  }
}
#event .hero_flag {
  max-width: 1280px;
  position: relative;
}
#event .hero_flag img {
  position: absolute;
  top: 0;
  right: 0;
}
#event .hero_inner {
  margin: 0px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media screen and (max-width: 1100px) {
  #event .hero_inner {
    display: block;
  }
}
#event .hero_vector {
  background: url(../img/event/img-hero-bgupper.png);
  background-repeat: no-repeat;
  position: relative;
  background-position: top center;
  height: 740px;
}
@media screen and (max-width: 1100px) {
  #event .hero_vector {
    height: auto;
    display: none;
  }
}
#event .hero_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
@media screen and (max-width: 1100px) {
  #event .hero_ttl {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #event .hero_ttl {
    margin: 0px auto;
    padding-left: 0;
  }
}

/*==================================================================
    .search-box
===================================================================*/
@media screen and (min-width: 768px) {
  .search-box {
    max-width: 800px;
    margin: 0px auto;
  }
}
.search-box_ttl {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: #1e2b40;
  letter-spacing: 0.07em;
  margin-bottom: 0.8em;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
.search-box_ttl span {
  line-height: 0;
}
.search-box_ttl span img {
  width: 6.6666666667vw;
  max-width: 25px;
}
.search-box_ttl.-re {
  flex-flow: row nowrap;
  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 th {
  width: 25%;
  padding: 0.6em 0.8em;
  padding-bottom: 0px;
  padding-top: 0px;
  white-space: nowrap;
  line-height: 1.4;
  color: #3c3c3c;
  position: relative;
}
.search-box_tbl th .hint {
  display: inline-block;
  position: absolute;
  right: 0.8em;
  top: 0.6em;
  cursor: pointer;
}
.search-box_tbl td {
  width: 75%;
  padding: 0.4em 0;
  padding-bottom: 0px;
  padding-top: 0px;
  position: relative;
  color: #808080;
}
.search-box_tbl td .flex {
  display: flex;
  flex-flow: row nowrap;
  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: 1rem;
  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;
}
.search-box .select-wrap {
  position: relative;
  width: 100%;
}
.search-box .select-wrap:after {
  display: block;
  content: "";
  width: 9px;
  height: 6px;
  background-image: url(../img/common/icon_arrow_select.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/*==================================================================
    .modal_img
===================================================================*/
.modal_img {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 901;
  display: none;
}
.modal_img.active {
  display: block;
}
.modal_img .btn-modal-close {
  width: 50px;
  height: 50px;
  position: absolute;
  right: -25px;
  top: -25px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  background-color: #666666;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .modal_img .btn-modal-close {
    right: -10px;
  }
}
.modal_img .btn-modal-close:hover {
  opacity: 0.7;
}
.modal_img .btn-modal-close::before, .modal_img .btn-modal-close::after {
  position: absolute;
  top: 25px;
  right: 10px;
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
}
.modal_img .btn-modal-close::after {
  transform: rotate(-45deg);
}
.modal_img .modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 700px;
}
@media screen and (max-width: 768px) {
  .modal_img .modal_content {
    width: 90%;
  }
}

/*==================================================================
    .caution-box
===================================================================*/
.caution-box {
  padding: 15px;
  background-color: rgba(172, 35, 23, 0.1);
  border-radius: 6px;
  margin-bottom: 20px;
}
.caution-box_ttl {
  font-weight: 700;
  color: #bc0000;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 0.6em;
}
@media screen and (min-width: 768px) {
  .caution-box_ttl {
    justify-content: center;
  }
}
.caution-box_ttl::before {
  display: block;
  content: "";
  width: 13px;
  height: 13px;
  background-image: url(../img/common/icon_caution.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-right: 0.4em;
}
.caution-box_txt {
  line-height: 1.7;
  color: #494949;
}
.caution-box_txt span {
  font-weight: 700;
}
.caution-box_txt.-red {
  color: #bc0000;
}

/*==================================================================
    .progress
===================================================================*/
.progress {
  display: flex;
  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: 54px;
  display: flex;
  align-items: center;
  position: relative;
  flex-flow: column;
  justify-content: center;
  font-size: 1rem;
  text-align: left;
  line-height: 1.2;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .progress .item {
    font-size: 1.4rem;
  }
}
.progress .item_txt {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.progress .item em {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  line-height: 1.2;
  display: block;
  padding-bottom: 2px;
}
.progress .item::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 27px 0 27px 25px;
  border-color: transparent transparent transparent #b1bbc4;
  position: absolute;
  right: -25px;
  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;
  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: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;
}

/*==================================================================
    animation
===================================================================*/
/*  setting
---------------------------------------------*/
.animate {
  visibility: hidden;
  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 {
  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;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/*==================================================================
    #top .headline
===================================================================*/
#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: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin-top: -10px;
}
@media screen and (min-width: 768px) {
  #top .headline_lead {
    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_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: 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: 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: 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: 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: flex;
  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%;
  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: flex;
  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: 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: 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: 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: 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: 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 {
  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 .where
===================================================================*/
#top .where {
  padding: 40px 0 50px;
}
#top .where .slider-wherenav .item {
  text-align: center;
  padding-bottom: 10px;
  color: #dbdbdb;
}
#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: flex;
  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: 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%;
  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: linear-gradient(to bottom, #E8ECEC 0%, #fff 20%);
}
#top .where_list {
  display: flex;
  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: flex;
  flex-flow: row nowrap;
  justify-content: 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 p {
  color: #C21C52;
}

/*==================================================================
    #point .hero_ul
===================================================================*/
#point .hero_ul {
  padding: 50px 0 100px;
}
@media screen and (max-width: 768px) {
  #point .hero_ul {
    padding: 30px 0 60px;
  }
}
#point .hero_ul h1 {
  text-align: center;
  color: #007A52;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #point .hero_ul h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
#point .hero_ul h1 span {
  background: linear-gradient(180deg, #fff 0% 60%, #FFFF00 60% 100%);
}
#point .hero_ul h1 + p {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #point .hero_ul h1 + p {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
#point .hero_ul .anchor_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#point .hero_ul .anchor_item {
  width: calc((100% - 20px) / 3);
  padding: 20px 20px 40px;
  border-radius: 4px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  margin-right: 10px;
  box-shadow: inset 0px -5px 0px rgba(0, 0, 0, 0.4);
  transition: all 200ms ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  #point .hero_ul .anchor_item {
    width: calc((100% - 10px) / 3);
    padding: 10px 10px 30px;
    margin-right: 5px;
  }
}
#point .hero_ul .anchor_item a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  #point .hero_ul .anchor_item a {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}
#point .hero_ul .anchor_item span {
  font-size: 2.2rem;
  display: block;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #point .hero_ul .anchor_item span {
    font-size: 1.6rem;
    line-height: 1.4;
    padding-bottom: 5px;
  }
}
#point .hero_ul .anchor_item:last-child {
  margin-right: 0;
}
#point .hero_ul .anchor_item.-shop {
  background-color: #4F71BE;
}
#point .hero_ul .anchor_item.-travel {
  background-color: #7EAB55;
}
#point .hero_ul .anchor_item.-home {
  background-color: #DF8344;
}
#point .hero_ul .anchor_item:hover {
  box-shadow: none;
  transition: all 200ms ease;
  transform: translateY(2.5px);
}
#point .hero_ul .anchor_item::after {
  content: "";
  width: 7px;
  height: 7px;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  position: absolute;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transition: all 0.5s;
}

#point .shop {
  padding: 50px 0 100px;
  background-color: #DCE7F1;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #point .shop {
    padding: 30px 0 60px;
    margin-bottom: 30px;
  }
}
#point .shop .ttl {
  background-color: #4F71BE;
}
#point .shop .ttl::after {
  background-image: url(../img/point/icon-sec01-ttl.svg);
}
#point .shop .txt {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #point .shop .txt {
    text-align: left;
    margin-bottom: 30px;
  }
}

#point .travel {
  padding: 50px 0 100px;
  background-color: #E2EDD9;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #point .travel {
    padding: 30px 0 60px;
    margin-bottom: 30px;
  }
}
#point .travel .ttl {
  background-color: #7EAB55;
}
#point .travel .ttl::after {
  background-image: url(../img/point/icon-sec02-ttl.svg);
}
#point .travel .txt {
  margin-bottom: 80px;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #point .travel .txt {
    text-align: left;
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
}
#point .travel .txt em {
  width: 22px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #point .travel .txt em {
    width: 18px;
  }
}

#point .home {
  padding: 50px 0 100px;
  background-color: #F7E5D8;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #point .home {
    padding: 30px 0 60px;
    margin-bottom: 30px;
  }
}
#point .home .ttl {
  background-color: #DF8344;
}
#point .home .ttl::after {
  background-image: url(../img/point/icon-sec03-ttl.svg);
}
#point .home .txt {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #point .home .txt {
    text-align: left;
    margin-bottom: 30px;
  }
}

#point .ttl {
  padding: 20px;
  min-height: 120px;
  position: relative;
  font-size: 2.2rem;
  line-height: 1.5;
  border-radius: 4px;
  color: #fff;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #point .ttl {
    padding: 10px;
    min-height: 80px;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
#point .ttl span {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  #point .ttl span {
    font-size: 2rem;
  }
}
#point .ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 110px;
  height: 110px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  #point .ttl::after {
    width: 70px;
    height: 70px;
  }
}

#point .flowimage {
  max-width: 600px;
  width: 100%;
  margin: 0px auto 50px;
}
@media screen and (max-width: 768px) {
  #point .flowimage {
    margin: 0px auto 30px;
  }
}

#point .links {
  max-width: 600px;
  width: 100%;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #point .links {
    width: 90%;
  }
}

#point dl {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #point dl {
    margin-bottom: 30px;
  }
}
#point dl:last-child {
  margin-bottom: 0;
}
#point dl dt {
  width: 20%;
  max-width: 210px;
  padding-right: 30px;
  border-right: 1px solid #7F909E;
}
@media screen and (max-width: 768px) {
  #point dl dt {
    padding-right: 10px;
    width: 30%;
  }
}
#point dl dd {
  width: 80%;
  max-width: unset;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  #point dl dd {
    width: 70%;
    padding-left: 10px;
  }
}
#point dl dd li {
  margin-bottom: 15px;
  font-size: 2rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #point dl dd li {
    font-size: 1.3rem;
  }
}
#point dl dd li:last-child {
  margin-bottom: 0px;
}
#point dl dd li.adj {
  padding-left: 1rem;
  text-indent: -1rem;
}
#point dl dd li span {
  color: #C21C52;
}
#point dl dd li sup {
  font-size: 1.1rem;
}