@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Overpass:300,400,600,700,800&display=swap");
/*----------------------------------------
	Fonts
----------------------------------------*/
/*----------------------------------------
	Common
----------------------------------------*/
body {
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: #004ea2;
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

/*----------------------------------------
	Reset CSS
----------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, hgroup, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

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

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

img {
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

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

caption, th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

.l-footer {
  width: 100%;
  padding: 60px 0;
  background-color: #004ea2;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .l-footer {
    padding: 4.688vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer {
    padding: 6.6666vw 0;
  }
}

.l-header {
  width: 100%;
}

.l-main {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .l-main {
    width: 93.75vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-main {
    width: auto;
    padding: 0 4vw;
  }
}

.l-primary {
  width: 900px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .l-primary {
    width: 70.313vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-primary {
    width: 100%;
  }
}

.l-sidebar {
  width: 300px;
  padding-left: 20px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .l-sidebar {
    width: 23.438vw;
    padding-left: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-sidebar {
    width: 100%;
    padding-left: 0;
  }
}

/*----------------------------------------
	コンテンツブロック フルサイズ
----------------------------------------*/
.c-block-full {
  width: 100%;
  padding: 60px;
  margin: 0 auto 80px;
  background-color: #fff;
  border-radius: 3px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-block-full {
    padding: 4.688vw;
    margin: 0 auto 6.25vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-block-full {
    width: 100%;
    padding: 6.3333vw;
    margin: 0 0 8.6666vw;
  }
}

/*----------------------------------------
	コンテンツブロック ハーフサイズ
----------------------------------------*/
.c-block-half {
  width: calc(50% - 20px);
  padding: 30px;
  margin: 0 40px 40px 0;
  background-color: #fff;
  border-radius: 3px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-block-half {
    width: calc(50% - 1.563vw);
    padding: 2.344vw;
    margin: 0 3.125vw 3.125vw 0;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-block-half {
    width: 100%;
    padding: 6.3333vw;
    margin: 0 0 8.6666vw;
  }
}
.c-block-half:nth-of-type(even) {
  margin-right: 0;
}

/*----------------------------------------
	コンテンツブロック CMS用2列
----------------------------------------*/
.c-block-2row-cms {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}
.c-block-2row-cms__left, .c-block-2row-cms__right {
  width: calc(50% - 20px);
  margin: 0 40px 40px 0;
  background-color: #fff;
  border-radius: 3px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-block-2row-cms__left, .c-block-2row-cms__right {
    margin: 0 3.125vw 3.125vw 0;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-block-2row-cms__left, .c-block-2row-cms__right {
    width: 100%;
    margin: 0 0 8.6666vw;
  }
}
.c-block-2row-cms__left .c-heading-cms-lg, .c-block-2row-cms__right .c-heading-cms-lg {
  width: 100%;
}
.c-block-2row-cms__right {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-block-2row-cms__right {
    margin-right: 0;
  }
}

/*----------------------------------------
	パンくずリスト
----------------------------------------*/
.c-breadcrumbs {
  background-color: #0E355D;
  box-sizing: border-box;
}
.c-breadcrumbs ul {
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-breadcrumbs ul {
    width: 93.75vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-breadcrumbs ul {
    width: 100%;
    padding: 0 2.6666vw;
  }
}
.c-breadcrumbs ul li {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 30px;
  padding-right: 20px;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-breadcrumbs ul li {
    font-size: 0.938vw;
    line-height: 2.344vw;
    padding-right: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-breadcrumbs ul li {
    font-size: 2.9333vw;
    line-height: 8vw;
    padding-right: 5.333vw;
  }
}
.c-breadcrumbs ul li:after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: 7px;
  top: 13px;
  transform: rotate(45deg);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-breadcrumbs ul li:after {
    width: 0.391vw;
    height: 0.391vw;
    border-width: 0.078vw;
    right: 0.547vw;
    top: 1.016vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-breadcrumbs ul li:after {
    width: 1.333vw;
    height: 1.333vw;
    border-width: 0.267vw;
    right: 1.867vw;
    top: 3.467vw;
  }
}
.c-breadcrumbs ul li:last-child:after {
  display: none;
}
.c-breadcrumbs ul li a {
  color: #fff;
  text-decoration: none;
}
.c-breadcrumbs ul li a:hover {
  text-decoration: underline;
}

/*----------------------------------------
	VIEWMOREボタン
----------------------------------------*/
@media only screen and (max-width: 767px) {
  .c-viewmore-btn {
    padding: 0 8vw;
  }
}
.c-viewmore-btn a {
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  background-color: #004EA2;
  border-radius: 3px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-viewmore-btn a {
    line-height: 4.688vw;
    border-radius: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-viewmore-btn a {
    line-height: 13.3333vw;
  }
}
.c-viewmore-btn a:hover {
  opacity: 0.8;
}
.c-viewmore-btn a span {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-viewmore-btn a span {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-viewmore-btn a span {
    font-size: 3.7333vw;
  }
}
.c-viewmore-btn a span:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 5px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-viewmore-btn a span:after {
    border-width: 0.469vw 0 0.469vw 0.391vw;
    right: -0.781vw;
  }
}

/*----------------------------------------
	汎用リンクボタン
----------------------------------------*/
.c-link-btn {
  width: 100%;
  padding: 18px 31px;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #004EA2;
  border-radius: 3px;
  display: inline-block;
  transition: all 0.3s ease;
  box-sizing: border-box;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-link-btn {
    padding: 1.406vw 2.422vw;
    border-width: 0.156vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-btn {
    padding: 4.135vw 7.036vw;
    overflow: visible;
    white-space: normal;
  }
}
.c-link-btn:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 5px;
  border-color: transparent transparent transparent #004EA2;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-link-btn:after {
    border-width: 0.469vw 0 0.469vw 0.391vw;
    right: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-btn:after {
    border-width: 1.6vw 0 1.6vw 1.333vw;
    right: 2.667vw;
  }
}
.c-link-btn:hover {
  background-color: #004EA2;
}
.c-link-btn:hover:after {
  border-color: transparent transparent transparent #fff;
}
.c-link-btn:hover span {
  color: #fff;
}
.c-link-btn span {
  color: #004EA2;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-link-btn span {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-btn span {
    font-size: 3.7333vw;
  }
}
.c-link-btn.pdf span:before {
  content: "";
  width: 16.5px;
  height: 22px;
  background: transparent url("../../assets/images/common/icon_pdf.svg") 0 0 no-repeat;
  background-size: 16.5px 22px;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-link-btn.pdf span:before {
    width: 1.289vw;
    height: 1.719vw;
    background-size: 1.289vw 1.719vw;
    left: -1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-btn.pdf span:before {
    width: 4.4vw;
    height: 5.867vw;
    background-size: 4.4vw 5.867vw;
    left: -6.667vw;
  }
}
.c-link-btn.pdf:hover span:before {
  background-image: url("../../assets/images/common/icon_pdf_white.svg");
}
.c-link-btn.pdf span:before {
  content: "";
  width: 16.5px;
  height: 22px;
  background: transparent url("../../assets/images/common/icon_pdf.svg") 0 0 no-repeat;
  background-size: 16.5px 22px;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-link-btn.pdf span:before {
    width: 1.289vw;
    height: 1.719vw;
    background-size: 1.289vw 1.719vw;
    left: -1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-btn.pdf span:before {
    width: 4.4vw;
    height: 5.867vw;
    background-size: 4.4vw 5.867vw;
    left: -6.667vw;
  }
}
.c-link-btn.pdf:hover span:before {
  background-image: url("../../assets/images/common/icon_pdf_white.svg");
}
.c-link-btn.print span:before {
  content: "";
  width: 16.5px;
  height: 22px;
  background: transparent url("../../assets/images/common/icon_print_blue.svg") 0 0 no-repeat;
  background-size: 16.5px 22px;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-link-btn.print span:before {
    width: 1.289vw;
    height: 1.719vw;
    background-size: 1.289vw 1.719vw;
    left: -1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-btn.print span:before {
    width: 4.4vw;
    height: 5.867vw;
    background-size: 4.4vw 5.867vw;
    left: -6.667vw;
  }
}
.c-link-btn.print span:after {
  display: none;
}
.c-link-btn.print:hover span:before {
  background-image: url("../../assets/images/common/icon_print.svg");
}
.c-link-btn.mini {
  line-height: 45px;
  width: auto;
  padding: 0 50px 0 40px;
  margin: 0 0 20px;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-link-btn.mini {
    line-height: 3.516vw;
    padding: 0 3.906vw 0 3.125vw;
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-btn.mini {
    line-height: 12vw;
    width: 100%;
    padding: 0 13.333vw 0 10.667vw;
    margin-bottom: 5.333vw;
  }
}
.c-link-btn.ext span:before {
  content: "";
  width: 16.5px;
  height: 22px;
  background: transparent url("../../assets/images/common/icon_external.svg") 0 0 no-repeat;
  background-size: 16.5px 22px;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-link-btn.ext span:before {
    width: 1.289vw;
    height: 1.719vw;
    background-size: 1.289vw 1.719vw;
    right: -1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-link-btn.ext span:before {
    width: 4.4vw;
    height: 5.867vw;
    background-size: 4.4vw 5.867vw;
    right: -6.667vw;
  }
}
.c-link-btn.ext span:after {
  display: none;
}
.c-link-btn.ext:hover span:before {
  background-image: url("../../assets/images/common/icon_external_white.svg");
}

/*----------------------------------------
	検索ボタン
----------------------------------------*/
.c-search-btn {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 0.05em;
  text-decoration: none;
  width: 100%;
  background-color: #004ea1;
  border: none;
  border-radius: 3px;
  outline: none;
  transition: all 0.3s ease;
  cursor: pointer;
  appearance: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-search-btn {
    font-size: 1.406vw;
    line-height: 4.688vw;
    border-radius: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-search-btn {
    font-size: 4.8vw;
    line-height: 13.3333vw;
  }
}
.c-search-btn:hover {
  opacity: 0.8;
}

/*----------------------------------------
	PREV/NEXT
----------------------------------------*/
.bx-prev,
.bx-next {
  font-size: 0px;
  font-size: 0rem;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #004ea2;
  position: absolute;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .bx-prev,
.bx-next {
    width: 1.953vw;
    height: 1.953vw;
  }
}
.bx-prev:before,
.bx-next:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.bx-prev {
  left: -40px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .bx-prev {
    left: -3.125vw;
  }
}
.bx-prev:before {
  border-width: 3.5px 5px 3.5px 0;
  border-color: transparent #fff transparent transparent;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .bx-prev:before {
    border-width: 0.273vw 0.391vw 0.273vw 0;
  }
}

.bx-next {
  right: -40px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .bx-next {
    right: -3.125vw;
  }
}
.bx-next:before {
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent #fff;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .bx-next:before {
    border-width: 0.273vw 0 0.273vw 0.391vw;
  }
}

/*----------------------------------------
	ページーネーション
----------------------------------------*/
.bx-pager {
  line-height: 1;
  text-align: center;
  width: 100%;
}
.bx-pager .bx-pager-item {
  margin: 0 8px;
  vertical-align: middle;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .bx-pager .bx-pager-item {
    margin: 0 0.625vw;
  }
}
.bx-pager .bx-pager-item a {
  font-size: 0px;
  font-size: 0rem;
  width: 10px;
  height: 10px;
  border: 1px solid #014EA2;
  background-color: #fff;
  border-radius: 50%;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .bx-pager .bx-pager-item a {
    width: 0.781vw;
    height: 0.781vw;
    border-width: 0.078vw;
  }
}
.bx-pager .bx-pager-item a.active {
  background-color: #014EA2;
  border: 3px solid #014EA2;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .bx-pager .bx-pager-item a.active {
    border-width: 0.234vw;
  }
}

/*----------------------------------------
	チェックボックス
----------------------------------------*/
.c-checkbox {
  color: #666;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.05em;
  padding-left: 25px;
  position: relative;
  cursor: pointer;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-checkbox {
    font-size: 1.25vw;
    line-height: 1.563vw;
    padding-left: 1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-checkbox {
    font-size: 3.733vw;
    letter-spacing: 0;
    line-height: 1.4;
    background-color: #fff;
    padding: 2.66vw 4vw 2.66vw 10.66vw;
    border: 0.267vw solid #dadcdc;
    border-radius: 3px;
    box-sizing: border-box;
    display: block;
  }
  .c-checkbox .frame {
    width: 100%;
    height: 100%;
    border: 1px solid #004ea2;
    border-radius: 3px;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    border-width: 0.267vw;
  }
}
.c-checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.c-checkbox input:checked ~ .indicator:after {
  display: block;
}
.c-checkbox input:checked ~ .indicator {
  border: none;
  background-color: #004ea2;
}
.c-checkbox input:checked ~ .frame {
  display: block;
}
.c-checkbox .indicator {
  height: 20px;
  width: 20px;
  border: 2px solid #C3C3C3;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-checkbox .indicator {
    height: 1.563vw;
    width: 1.563vw;
    border-width: 0.156vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-checkbox .indicator {
    height: 4.66vw;
    width: 4.66vw;
    top: 3vw;
    left: 4vw;
  }
}
.c-checkbox .indicator:after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-checkbox .indicator:after {
    left: 0.625vw;
    top: 0.313vw;
    width: 0.234vw;
    height: 0.625vw;
    border-width: 0 0.156vw 0.156vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-checkbox .indicator:after {
    width: 0.8vw;
    height: 2.133vw;
    border-width: 0 0.533vw 0.533vw 0;
    top: 0.8vw;
    left: 1.6vw;
  }
}

/*----------------------------------------
	セクション見出し Sサイズ
----------------------------------------*/
.c-heading-sm {
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-sm {
    font-size: 1.875vw;
    margin-bottom: 3.906vw;
  }
}
.c-heading-sm .en {
  color: #004EA2;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Overpass", sans-serif;
  margin-top: 10px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-sm .en {
    font-size: 1.094vw;
    margin-top: 0.781vw;
  }
}

/*----------------------------------------
	セクション見出し Lサイズ
----------------------------------------*/
.c-heading-lg {
  color: #333;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-lg {
    font-size: 2.5vw;
    margin-bottom: 3.906vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-lg {
    font-size: 4.8vw;
    margin-bottom: 5.3333vw;
  }
}
.c-heading-lg .icon {
  margin-right: 10px;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-lg .icon {
    margin-right: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-lg .icon img {
    width: auto;
    height: 5.3333vw;
  }
}
.c-heading-lg .en {
  color: #004EA2;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Overpass", sans-serif;
  letter-spacing: 0.05em;
  margin-top: 15px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-lg .en {
    font-size: 1.25vw;
    margin-top: 1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-lg .en {
    font-size: 3.4666vw;
    margin-top: 2.6666vw;
  }
}

/*----------------------------------------
	第３階層見出し
----------------------------------------*/
.c-heading-lv3 {
  color: #333;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-lv3 {
    font-size: 2.188vw;
    margin-bottom: 4.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-lv3 {
    font-size: 6.4vw;
    line-height: 1.6;
    margin-bottom: 12vw;
  }
}
.c-heading-lv3.sm {
  font-size: 24px;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-lv3.sm {
    font-size: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-lv3.sm {
    font-size: 5.3333vw;
  }
}
.c-heading-lv3.lg {
  font-size: 32px;
  font-size: 2rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-lv3.lg {
    font-size: 2.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-lv3.lg {
    font-size: 6.4vw;
  }
}
.c-heading-lv3:after {
  content: "";
  width: 30px;
  height: 5px;
  background-color: #004EA2;
  border-radius: 3px;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-lv3:after {
    width: 2.344vw;
    height: 0.391vw;
    border-radius: 0.234vw;
    bottom: -1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-lv3:after {
    width: 8vw;
    height: 1.0666vw;
    bottom: -5.3333vw;
  }
}
.c-heading-lv3 .icon {
  margin-bottom: 25px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-lv3 .icon {
    margin-bottom: 1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-lv3 .icon {
    margin-bottom: 3.3333vw;
  }
}
.c-heading-lv3 .icon img {
  width: auto;
  height: 50px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-lv3 .icon img {
    height: 3.906vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-lv3 .icon img {
    height: 9vw;
  }
}

/*----------------------------------------
	CMSコンポーネント見出し大
----------------------------------------*/
.c-heading-cms-lg {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.6;
  padding-left: 20px;
  margin: 0 auto 20px;
  position: relative;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-cms-lg {
    font-size: 2.031vw;
    padding-left: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-cms-lg {
    font-size: 4.8vw;
    padding-left: 4vw;
    margin-bottom: 4vw;
  }
}
.c-heading-cms-lg:before {
  content: "";
  width: 5px;
  height: 30px;
  background-color: #004EA2;
  border-radius: 3px;
  position: absolute;
  top: 5px;
  left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-cms-lg:before {
    width: 5px;
    height: 30px;
    border-radius: 0.234vw;
    top: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-cms-lg:before {
    width: 1.333vw;
    height: 5.333vw;
    border-radius: 0.8vw;
    top: 1.333vw;
  }
}

/*----------------------------------------
	CMSコンポーネント見出し中
----------------------------------------*/
.c-heading-cms-md {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
  padding-bottom: 10px;
  margin: 0 auto 20px;
  border-bottom: 2px solid #DADCDC;
  position: relative;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-cms-md {
    font-size: 1.406vw;
    padding-bottom: 0.781vw;
    margin-bottom: 1.5625vw;
    border-width: 0.156vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-cms-md {
    font-size: 4.267vw;
    padding-bottom: 1.333vw;
    margin-bottom: 5.333vw;
    border-width: 0.533vw;
  }
}
.c-heading-cms-md:before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #004EA2;
  border-radius: 3px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-cms-md:before {
    width: 3.906vw;
    height: 0.156vw;
    border-radius: 0.234vw;
    bottom: -0.156vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-cms-md:before {
    width: 13.333vw;
    height: 0.533vw;
    border-radius: 0.8vw;
    bottom: -0.533vw;
  }
}
.c-heading-cms-md .icon {
  padding: 0 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-cms-md .icon {
    padding: 0 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-cms-md .icon {
    padding: 0 2.667vw;
  }
}
.c-heading-cms-md .icon img {
  width: 22px;
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-cms-md .icon img {
    width: 1.719vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-cms-md .icon img {
    width: 5.333vw;
  }
}

/*----------------------------------------
	CMSコンポーネント見出し小
----------------------------------------*/
.c-heading-cms-sm {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.6;
  background-color: #F6F7F8;
  padding: 10px 10px 10px 35px;
  margin: 0 auto 20px;
  border-radius: 3px;
  position: relative;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-cms-sm {
    font-size: 1.172vw;
    padding: 0.781vw 0.781vw 0.781vw 2.734vw;
    margin-bottom: 1.563vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-cms-sm {
    font-size: 3.733vw;
    padding: 1.333vw 4vw 1.333vw 8vw;
    margin-bottom: 5.333vw;
    border-radius: 0.8vw;
  }
}
.c-heading-cms-sm:before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #004EA2;
  border-radius: 3px;
  position: absolute;
  top: 15px;
  left: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-cms-sm:before {
    width: 1.094vw;
    height: 1.094vw;
    border-radius: 0.234vw;
    top: 1.172vw;
    left: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-cms-sm:before {
    width: 3.2vw;
    height: 3.2vw;
    top: 2.933vw;
    left: 2.667vw;
  }
}

/*----------------------------------------
	CMSコンポーネント見出し最小
----------------------------------------*/
.c-heading-cms-xsm {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.6;
  padding: 0 0 0 25px;
  margin: 0 auto 20px;
  border-radius: 3px;
  position: relative;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-cms-xsm {
    font-size: 1.094vw;
    padding: 0 0 0 1.953vw;
    margin-bottom: 1.563vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-cms-xsm {
    font-size: 3.467vw;
    padding: 0 0 0 5.333vw;
    margin-bottom: 5.333vw;
    border-radius: 0.8vw;
  }
}
.c-heading-cms-xsm:before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #333;
  border-radius: 3px;
  position: absolute;
  top: 5px;
  left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-heading-cms-xsm:before {
    width: 1.094vw;
    height: 1.094vw;
    border-radius: 0.234vw;
    top: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-heading-cms-xsm:before {
    width: 3.2vw;
    height: 3.2vw;
    border-radius: 0.8vw;
    top: 1.067vw;
  }
}

/*----------------------------------------
	CMSコンポーネント イメージボックス
----------------------------------------*/
.c-imgbox-cms {
  text-align: center;
  padding: 0 40px;
  margin: 0 auto 30px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-imgbox-cms {
    padding: 0 3.125vw;
    margin-bottom: 2.343vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-imgbox-cms {
    padding: 0;
    margin-bottom: 5.333vw;
  }
}
.c-imgbox-cms img {
  width: auto;
  height: auto;
  max-width: 100%;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-imgbox-cms img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .c-imgbox-cms img {
    width: 100%;
    height: auto;
  }
}
.c-imgbox-cms figcaption {
  color: #666;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 5px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-imgbox-cms figcaption {
    font-size: 1.01vw;
    margin-top: 0.39vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-imgbox-cms figcaption {
    font-size: 2.933vw;
  }
}

/*----------------------------------------
	CMSコンポーネント イメージ+テキスト
----------------------------------------*/
.c-imgbox-combo-cms {
  text-align: left;
  margin: 0 auto 30px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-imgbox-combo-cms {
    margin-bottom: 2.343vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-imgbox-combo-cms {
    margin-bottom: 5.333vw;
  }
}
.c-imgbox-combo-cms figure {
  text-align: center;
  width: 40%;
  padding: 20px;
  border: 1px solid #ccc;
  position: relative;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-imgbox-combo-cms figure {
    padding: 1.563vw;
    border-width: 0.078vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-imgbox-combo-cms figure {
    width: 100%;
    margin-bottom: 5.333vw;
  }
}
.c-imgbox-combo-cms figure img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.c-imgbox-combo-cms .text {
  width: 60%;
  padding-left: 5%;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .c-imgbox-combo-cms .text {
    width: 100%;
    padding-left: 0;
  }
}
.c-imgbox-combo-cms .text p {
  color: #666;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 20px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-imgbox-combo-cms .text p {
    font-size: 1.17vw;
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-imgbox-combo-cms .text p {
    font-size: 3.733vw;
    margin-bottom: 5.333vw;
  }
}

.c-imgbox-flex-cms {
  display: flex;
}
.c-imgbox-flex-cms .c-imgbox-cms {
  padding: 0 20px;
  width: 100%;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-imgbox-flex-cms .c-imgbox-cms {
    padding: 0 1.563vw;
    margin-bottom: 2.343vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-imgbox-flex-cms .c-imgbox-cms {
    padding: 0 2.064vw;
    margin-bottom: 5.333vw;
  }
}

/*----------------------------------------
	テキストインプット
----------------------------------------*/
.c-header-search {
  width: 480px;
  height: 50px;
  padding-top: 5px;
  margin-right: 40px;
  position: relative;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-header-search {
    width: 37.5vw;
    height: 3.906vw;
    padding-top: 0.391vw;
    margin-right: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-header-search {
    display: none;
    width: 100%;
    height: auto;
    margin-right: 0;
    padding: 4vw 4.6666vw;
    background-color: #004ea2;
    box-sizing: border-box;
    position: absolute;
    top: 17.3333vw;
    left: 0;
    z-index: 10;
  }
}
.c-header-search input {
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
  height: 40px;
  padding: 0 15px;
  background-color: #ecedef;
  border: 1px solid #ecedef;
  border-radius: 20px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-header-search input {
    font-size: 1.25vw;
    height: 3.125vw;
    padding: 0 1.172vw;
    border: 0.078vw solid #ecedef;
    border-radius: 1.563vw;
  }
}
.c-header-search input::-ms-clear {
  visibility: hidden;
}
.c-header-search input:focus {
  outline: none;
  background-color: #fff;
  border-color: #004ea1;
}
.c-header-search button {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  appearance: none;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-header-search button {
    right: 1.172vw;
  }
  .c-header-search button img {
    width: 1.328vw;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .c-header-search button {
    right: 8vw;
  }
}

/*----------------------------------------
	汎用テキストインプット
----------------------------------------*/
.c-input input {
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
  height: 55px;
  padding: 0 15px;
  background-color: #ecedef;
  border: 1px solid #ecedef;
  border-radius: 3px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-input input {
    font-size: 1.25vw;
    height: 4.297vw;
    padding: 0 1.172vw;
    border-width: 0.078vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-input input {
    font-size: 4vw;
    height: 12vw;
  }
}
.c-input input::-ms-clear {
  visibility: hidden;
}
.c-input input:focus {
  outline: none;
  background-color: #fff;
  border-color: #004ea1;
}
.c-input.mini input {
  color: #333;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  width: 220px;
  height: 35px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-input.mini input {
    font-size: 1.172vw;
    width: 17.188vw;
    height: 2.734vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-input.mini input {
    font-size: 4vw;
    width: 100%;
    height: 13.33vw;
  }
}
.c-input.label {
  position: relative;
  /*
  .icon{
  	position: absolute;
  	top: 10px;
  	left: 10px;
  	@include tablet{
  		top: .781vw;
  		left: .781vw;

  		img{
  			width: 2.81vw;
  			height: 2.81vw;
  		}//img
  	}//tablet
  	@include sp{
  		top: 2vw;
  		left: 2vw;

  		img{
  			width: 9.33vw;
  			height: 9.33vw;
  		}//img
  	}//sp
  }//.icon
  */
}
.c-input.label.is_active input {
  border: 2px solid #004ea1;
}
.c-input.label.bus input {
  background-image: url(../images/common/icon_bus_frame.svg);
}
.c-input.label.com-bus input {
  background-image: url(../images/common/icon_com_bus_stop_frame.svg);
}
.c-input.label.train input {
  background-image: url(../images/common/icon_train_frame.svg);
}
.c-input.label.landmark input {
  background-image: url(../images/common/icon_land_mark_frame.svg);
}
.c-input.label input {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  padding: 0 0 0 60px;
  border-width: 2px;
  background-repeat: no-repeat;
  background-position: 10px 50%;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-input.label input {
    font-size: 1.719vw;
    padding: 0 0 0 4.688vw;
    border-width: 0.156vw;
    background-position: 0.781vw 50%;
    background-size: 2.813vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-input.label input {
    font-size: 5.3333vw;
    height: 13.33vw;
    padding: 0 0 0 13.33vw;
    background-size: 8.667vw;
    background-position: 1.781vw 50%;
  }
}
.c-input.label input::-ms-clear {
  visibility: hidden;
}
.c-input.label input:focus {
  background-color: #ecedef;
}

/*----------------------------------------
	汎用テキストリンク
----------------------------------------*/
.c-text-link {
  line-height: 1;
  margin: 0 0 20px;
  display: block;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-text-link {
    margin: 0 0 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-text-link {
    margin: 0 0 5.333vw;
  }
}
.c-text-link a {
  color: #004ea2;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: underline;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-text-link a {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-text-link a {
    font-size: 3.733vw;
  }
}
.c-text-link a:hover {
  text-decoration: none;
}
.c-text-link.pdf:before {
  content: "";
  width: 16.5px;
  height: 22px;
  background: transparent url("../../assets/images/common/icon_pdf.svg") 0 0 no-repeat;
  background-size: 16.5px 22px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-text-link.pdf:before {
    width: 1.289vw;
    height: 1.719vw;
    background-size: 1.289vw 1.719vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-text-link.pdf:before {
    width: 4.4vw;
    height: 5.867vw;
    background-size: 4.4vw 5.867vw;
  }
}

/*----------------------------------------
	CMSコンポーネント スタンダードリスト
----------------------------------------*/
.c-list-cms-std {
  margin: 0 auto 60px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-list-cms-std {
    margin-bottom: 4.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-list-cms-std {
    margin-bottom: 8vw;
  }
}
.c-list-cms-std li {
  color: #666;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 0 0 0 20px;
  margin-bottom: 5px;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-list-cms-std li {
    font-size: 1.172vw;
    padding: 0 0 0 1.563vw;
    margin-bottom: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-list-cms-std li {
    font-size: 3.733vw;
    padding: 0 0 0 5.333vw;
    margin-bottom: 1.333vw;
  }
}
.c-list-cms-std li:before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #004EA2;
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-list-cms-std li:before {
    width: 0.938vw;
    height: 0.938vw;
    border-radius: 0.234vw;
    top: 0.625vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-list-cms-std li:before {
    width: 3.2vw;
    height: 3.2vw;
    top: 2.133vw;
  }
}

/*----------------------------------------
	CMSコンポーネント 番号付きリスト
----------------------------------------*/
.c-list-cms-num {
  margin: 0 auto 60px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-list-cms-num {
    margin-bottom: 4.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-list-cms-num {
    margin-bottom: 8vw;
  }
}
.c-list-cms-num li {
  color: #666;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 0 0 0 25px;
  margin-bottom: 5px;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-list-cms-num li {
    font-size: 1.172vw;
    padding: 0 0 0 1.953vw;
    margin-bottom: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-list-cms-num li {
    font-size: 3.733vw;
    padding: 0 0 0 6.667vw;
    margin-bottom: 1.333vw;
  }
}
.c-list-cms-num li:before {
  content: "1";
  color: #004EA2;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  width: 16px;
  height: 16px;
  border: 1px solid #004EA2;
  border-radius: 3px;
  position: absolute;
  top: 5px;
  left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-list-cms-num li:before {
    font-size: 0.938vw;
    line-height: 1.25vw;
    width: 1.25vw;
    height: 1.25vw;
    border-width: 0.078vw;
    border-radius: 0.234vw;
    top: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-list-cms-num li:before {
    font-size: 3.2vw;
    line-height: 4.5vw;
    width: 4vw;
    height: 4vw;
    border-width: 0.267vw;
    border-radius: 0.8vw;
    top: 0.8vw;
  }
}
.c-list-cms-num li:nth-child(2):before {
  content: "2";
}
.c-list-cms-num li:nth-child(3):before {
  content: "3";
}
.c-list-cms-num li:nth-child(4):before {
  content: "4";
}
.c-list-cms-num li:nth-child(5):before {
  content: "5";
}
.c-list-cms-num li:nth-child(6):before {
  content: "6";
}
.c-list-cms-num li:nth-child(7):before {
  content: "7";
}
.c-list-cms-num li:nth-child(8):before {
  content: "8";
}
.c-list-cms-num li:nth-child(9):before {
  content: "9";
}
.c-list-cms-num li:nth-child(10):before {
  content: "10";
}

/*----------------------------------------
	CMSコンポーネント シンプル番号付きリスト
----------------------------------------*/
.c-list-cms-num-simple {
  margin: 0 0 40px 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-list-cms-num-simple {
    margin-bottom: 4.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-list-cms-num-simple {
    margin-bottom: 8vw;
  }
}
.c-list-cms-num-simple li {
  color: #666;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 5px;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-list-cms-num-simple li {
    font-size: 1.172vw;
    margin-bottom: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-list-cms-num-simple li {
    font-size: 3.733vw;
    margin-bottom: 1.333vw;
  }
}

/*----------------------------------------
	モーダル
----------------------------------------*/
.c-modal {
  display: none;
  z-index: 1000;
  position: relative;
}
.c-modal__bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
}
.c-modal__container {
  width: 800px;
  background-color: #fff;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-modal__container {
    width: 62.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__container {
    width: 89.333vw;
  }
}
.c-modal__container h4 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.4;
  background-color: #FFEC05;
  padding: 20px 40px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-modal__container h4 {
    font-size: 2.031vw;
    padding: 1.563vw 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__container h4 {
    font-size: 4.8vw;
    padding: 2.667vw 4vw;
  }
}
.c-modal__container__inner {
  padding: 30px 40px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-modal__container__inner {
    padding: 2.344vw 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__container__inner {
    font-size: 4.8vw;
    padding: 4vw;
  }
}
.c-modal__container__inner p {
  color: #666;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-modal__container__inner p {
    font-size: 1.172vw;
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__container__inner p {
    font-size: 3.467vw;
    margin-bottom: 2.667vw;
  }
}
.c-modal__container__inner .close-btn a {
  line-height: 56px;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #004EA2;
  border-radius: 5px;
  display: block;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-modal__container__inner .close-btn a {
    line-height: 4.688vw;
    border-radius: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__container__inner .close-btn a {
    line-height: 13.3333vw;
  }
}
.c-modal__container__inner .close-btn a:hover {
  opacity: 0.8;
}
.c-modal__container__inner .close-btn a span {
  color: #004EA2;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-modal__container__inner .close-btn a span {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__container__inner .close-btn a span {
    font-size: 3.7333vw;
  }
}
.c-modal__container__inner .btns {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-modal__container__inner .btns {
    margin-top: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__container__inner .btns {
    margin-top: 5.333vw;
  }
}
.c-modal__container__inner .btns li {
  width: 330px;
  margin: 0 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-modal__container__inner .btns li {
    width: 25.781vw;
    margin: 0 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-modal__container__inner .btns li {
    width: 100%;
    margin: 0;
  }
  .c-modal__container__inner .btns li:first-child {
    margin-bottom: 2.667vw;
  }
  .c-modal__container__inner .btns li .c-viewmore-btn {
    padding: 0;
  }
}

/*----------------------------------------
	ニュース一覧
----------------------------------------*/
.c-news-list dl {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-news-list dl {
    margin-bottom: 3.906vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-news-list dl {
    margin-bottom: 8vw;
  }
}
.c-news-list dl dt {
  color: #666;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Overpass", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-news-list dl dt {
    font-size: 1.094vw;
    margin-bottom: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-news-list dl dt {
    padding: 0 5.3333vw;
  }
}
.c-news-list dl dt .cat {
  color: #004EA2;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  padding: 6px 4px 4px;
  border: 1px solid #004EA2;
  border-radius: 3px;
  margin-left: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-news-list dl dt .cat {
    font-size: 0.859vw;
    padding: 0.469vw 0.313vw 0.313vw;
    border-width: 0.078vw;
    border-radius: 0.234vw;
    margin-left: 0.781vw;
  }
}
.c-news-list dl dt .cat:hover {
  color: #fff;
  background-color: #004EA2;
}
.c-news-list dl dd {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #dadcdc;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-news-list dl dd {
    padding-bottom: 2.344vw;
    margin-bottom: 2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-news-list dl dd {
    padding: 0 5.3333vw 5.3333vw;
    margin-bottom: 5.3333vw;
  }
}
.c-news-list dl dd.release {
  padding-left: 30px;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-news-list dl dd.release {
    padding-left: 2.344vw;
  }
}
.c-news-list dl dd.release:before {
  content: url(../images/common/icon_pdf.svg);
  position: absolute;
  top: 0;
  left: 0;
}
.c-news-list dl dd a {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-news-list dl dd a {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-news-list dl dd a {
    font-size: 3.7333vw;
    line-height: 1.4;
  }
}
.c-news-list dl dd a:hover {
  opacity: 0.6;
}

/*----------------------------------------
	簡易ニュース一覧
----------------------------------------*/
.c-news-list-simple ul li {
  border-bottom: 1px solid #DADCDC;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-news-list-simple ul li {
    border-width: 0.078vw;
    padding-bottom: 1.563vw;
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-news-list-simple ul li {
    padding-bottom: 4vw;
    margin-bottom: 4vw;
  }
}
.c-news-list-simple ul li dl {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .c-news-list-simple ul li dl {
    display: block;
  }
}
.c-news-list-simple ul li dl dt {
  color: #666;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-right: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-news-list-simple ul li dl dt {
    font-size: 1.172vw;
    margin-right: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-news-list-simple ul li dl dt {
    font-size: 3.467vw;
  }
}
.c-news-list-simple ul li dl dd a {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-news-list-simple ul li dl dd a {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-news-list-simple ul li dl dd a {
    font-size: 3.733vw;
  }
}
.c-news-list-simple ul li dl dd a:hover {
  text-decoration: underline;
}

/*----------------------------------------
	ページネーション 
----------------------------------------*/
.c-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.c-pagination ul li {
  margin: 0 10px 0 0;
  text-align: center;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-pagination ul li {
    margin: 0 0.781vw 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-pagination ul li {
    margin: 0 2.667vw 2.667vw 0;
  }
}
.c-pagination ul li:last-child {
  margin-right: 0;
}
.c-pagination ul li a {
  color: #004EA2;
  font-size: 14px;
  font-size: 0.875rem;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-decoration: none;
  border: 1px solid #004EA2;
  border-radius: 3px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-pagination ul li a {
    font-size: 1.094vw;
    width: 2.344vw;
    height: 2.344vw;
    line-height: 2.344vw;
    border-width: 0.078vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-pagination ul li a {
    font-size: 3.733vw;
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
    border-width: 0.267vw;
    border-radius: 0.8vw;
  }
}
.c-pagination ul li a:hover, .c-pagination ul li a.active {
  color: #fff;
  background-color: #004EA2;
}
.c-pagination ul li.prev a, .c-pagination ul li.next a {
  width: 50px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-pagination ul li.prev a, .c-pagination ul li.next a {
    width: 3.906vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-pagination ul li.prev a, .c-pagination ul li.next a {
    width: 13.333vw;
  }
}

/*----------------------------------------
	ラジオボタン
----------------------------------------*/
.c-radio {
  width: 100%;
  position: relative;
}
.c-radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.c-radio input[type=radio] + label {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 25px;
  cursor: pointer;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-radio input[type=radio] + label {
    font-size: 1.25vw;
    padding-left: 1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-radio input[type=radio] + label {
    font-size: 3.733vw;
    padding-left: 6.667vw;
  }
}
.c-radio input[type=radio] + label:before {
  content: "";
  text-align: center;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #C3C3C3;
  border-radius: 100%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.25s ease;
  box-sizing: border-box;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-radio input[type=radio] + label:before {
    width: 1.563vw;
    height: 1.563vw;
    border-width: 0.078vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-radio input[type=radio] + label:before {
    width: 5.333vw;
    height: 5.333vw;
    border-width: 0.267vw;
  }
}
.c-radio input[type=radio]:checked + label:before {
  border-color: #004EA2;
  background-color: #004EA2;
  box-shadow: inset 0 0 0 4px #fff;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-radio input[type=radio]:checked + label:before {
    box-shadow: inset 0 0 0 0.313vw #fff;
  }
}
@media only screen and (max-width: 767px) {
  .c-radio input[type=radio]:checked + label:before {
    box-shadow: inset 0 0 0 1.067vw #fff;
  }
}

/*----------------------------------------
	ラジオボタン 太め
----------------------------------------*/
.c-radio-thick {
  width: 100%;
  position: relative;
}
.c-radio-thick input[type=radio] {
  width: 100%;
  height: 55px;
  opacity: 0;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-radio-thick input[type=radio] {
    height: 4.297vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-radio-thick input[type=radio] {
    width: 100%;
    height: 12vw;
  }
}
.c-radio-thick input[type=radio]:checked + label {
  color: #fff;
  background-color: #004ea1;
}
.c-radio-thick input[type=radio]:disabled + label {
  color: #fff;
  background-color: #ecedef;
}
.c-radio-thick label {
  color: #333;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  line-height: 55px;
  width: 100%;
  height: 100%;
  background: #ecedef;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-radio-thick label {
    font-size: 1.172vw;
    line-height: 4.297vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-radio-thick label {
    line-height: 12vw;
    width: 100%;
  }
}
.c-radio-thick label:hover {
  background-color: #d9d9d9;
}
.c-radio-thick.mini input[type=radio] {
  width: 100%;
  height: 38px;
  opacity: 0;
  cursor: pointer;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-radio-thick.mini input[type=radio] {
    height: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-radio-thick.mini input[type=radio] {
    height: 10.66vw;
  }
}
.c-radio-thick.mini label {
  color: #666;
  font-size: 16px;
  font-size: 1rem;
  line-height: 37px;
  height: 100%;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-radio-thick.mini label {
    font-size: 1.25vw;
    line-height: 2.891vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-radio-thick.mini label {
    font-size: 4.266vw;
    line-height: 10.133vw;
  }
}

/*----------------------------------------
	CMSコンポーネント シンプル路線図
----------------------------------------*/
.c-routemap-cms {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-routemap-cms {
    margin-bottom: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-routemap-cms {
    margin-bottom: 5.333vw;
  }
}
.c-routemap-cms ul li {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 20px;
  border: 2px solid #DADCDC;
  border-radius: 3px;
  background-color: #F6F7F8;
  margin-bottom: 20px;
  box-sizing: border-box;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-routemap-cms ul li {
    font-size: 1.25vw;
    padding: 1.172vw 1.563vw;
    border-width: 0.156vw;
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-routemap-cms ul li {
    font-size: 3.733vw;
    padding: 2vw 2.667vw;
    border-width: 0.267vw;
    margin-bottom: 2.667vw;
  }
}
.c-routemap-cms ul li:after {
  content: "";
  width: 10px;
  height: 20px;
  background-color: #0E355D;
  position: absolute;
  bottom: -22px;
  left: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-routemap-cms ul li:after {
    width: 0.781vw;
    height: 1.563vw;
    bottom: -1.719vw;
    left: 1.563vw;
  }
}
.c-routemap-cms ul li:last-child:after {
  display: none;
}

/*----------------------------------------
	スクロールトップ
----------------------------------------*/
.c-scroll-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-scroll-top {
    width: 4.688vw;
    height: 4.688vw;
    right: 3.125vw;
    bottom: 3.906vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-scroll-top {
    right: 5.333vw;
    bottom: 10.667vw;
    width: 10.667vw;
    height: 10.667vw;
  }
}
.c-scroll-top img {
  width: 100%;
  height: auto;
}

/*----------------------------------------
	CMSコンポーネント 路線検索
----------------------------------------*/
.c-search-cms {
  width: 660px;
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-search-cms {
    width: 51.563vw;
    margin-bottom: 3.906vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-search-cms {
    width: 100%;
  }
}
.c-search-cms form {
  display: flex;
  flex-wrap: wrap;
}
.c-search-cms form dl {
  width: 300px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-search-cms form dl {
    width: 23.438vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-search-cms form dl {
    width: 100%;
  }
}
.c-search-cms form dl dt {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-search-cms form dl dt {
    font-size: 1.25vw;
    margin-bottom: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-search-cms form dl dt {
    font-size: 4.8vw;
    margin-bottom: 5.333vw;
  }
}
.c-search-cms form dl dt .icon {
  margin-right: 5px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-search-cms form dl dt .icon {
    margin-right: 0.391vw;
  }
}
.c-search-cms form dl dt .icon img {
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-search-cms form dl dt .icon img {
    width: 1.289vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-search-cms form dl dt .icon img {
    width: 3.6vw;
  }
}
.c-search-cms form dl dt a {
  color: #004ea1;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  padding: 7px 10px;
  border: 1px solid #004ea1;
  background-color: #fff;
  border-radius: 3px;
  margin-left: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-search-cms form dl dt a {
    font-size: 1.016vw;
    padding: 0.547vw 0.781vw;
    border-width: 0.078vw;
    border-radius: 0.234vw;
    margin-left: 0.781vw;
  }
}
.c-search-cms form dl dt a:hover {
  color: #fff;
  background-color: #004ea1;
}
.c-search-cms form .trade {
  line-height: 50px;
  text-align: center;
  width: 60px;
  height: 50px;
  margin: 35px 0 0;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-search-cms form .trade {
    line-height: 3.906vw;
    width: 4.688vw;
    height: 3.906vw;
    margin: 2.734vw 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-search-cms form .trade {
    line-height: 13.333vw;
    height: 13.333vw;
    margin: 0;
  }
}
.c-search-cms form .trade img {
  width: 25px;
  height: auto;
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-search-cms form .trade img {
    width: 1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-search-cms form .trade img {
    width: 9.333vw;
  }
}
.c-search-cms form .c-search-btn {
  margin-top: 15px;
  line-height: 50px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-search-cms form .c-search-btn {
    margin-top: 1.172vw;
    line-height: 3.906vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-search-cms form .c-search-btn {
    margin-top: 5.333vw;
    line-height: 13.3333vw;
  }
}

/*----------------------------------------
	セレクトボックス
----------------------------------------*/
.c-select {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  line-height: 25px;
  margin: 0;
  padding: 14px 55px 14px 15px;
  background-color: #EBEDEF;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%), linear-gradient(to right, #004EA2, #004EA2);
  background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%, 100% 0;
  background-size: 5px 5px, 5px 5px, 40px 55px;
  background-repeat: no-repeat;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-select {
    font-size: 1.25vw;
    line-height: 1.953vw;
    padding: 1.094vw 4.297vw 1.094vw 1.172vw;
    background-position: calc(100% - 1.563vw) 50%, calc(100% - 1.172vw) 50%, 100% 0;
    background-size: 0.391vw 0.391vw, 0.391vw 0.391vw, 3.125vw 4.297vw;
    border-radius: 0.313vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-select {
    font-size: 3.7333vw;
    line-height: 1.6;
    padding: 3vw 8.5vw 3vw 3vw;
    background-position: calc(100% - 2.6vw) 5.7vw, calc(100% - 1.4vw) 5.7vw, 100% 0;
    background-size: 1.3333vw 1.3333vw, 1.3333vw 1.3333vw, 6vw 12vw;
  }
}
.c-select::-ms-expand {
  display: none;
}
.c-select:focus {
  outline: 0;
}
.c-select:disabled {
  color: #fff !important;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%), linear-gradient(to right, #DEDEDE, #DEDEDE);
  pointer-events: none;
}
.c-select::-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.c-select::-ms-expand {
  display: none;
}
.c-select.mini {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 5px 30px 5px 10px;
  background-size: 5px 5px, 5px 5px, 20px 35px;
  background-position: calc(100% - 10px) 50%, calc(100% - 5px) 50%, 100% 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-select.mini {
    font-size: 1.406vw;
    padding: 0.391vw 2.344vw 0.391vw 0.781vw;
    background-size: 0.391vw 0.391vw, 0.391vw 0.391vw, 1.563vw 2.734vw;
    background-position: calc(100% - 0.781vw) 50%, calc(100% - 0.391vw) 50%, 100% 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-select.mini {
    color: #333;
    font-size: 5.6vw;
    font-weight: 600;
    padding: 2.3vw 8.5vw 2.3vw 4vw;
    background-size: 1.33vw 1.33vw, 1.33vw 1.33vw, 6vw 14vw;
    background-position: calc(100% - 2.667vw) 50%, calc(100% - 1.333vw) 50%, 100% 0;
  }
}

.c-select-cms {
  position: relative;
}
.c-select-cms:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4.5px 6px 4.5px;
  border-color: transparent transparent #666 transparent;
  position: absolute;
  top: 42%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-select-cms:before {
    border-width: 0 0.352vw 0.469vw 0.352vw;
    right: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-select-cms:before {
    border-width: 0 1.2vw 1.6vw 1.2vw;
    right: 2.667vw;
  }
}
.c-select-cms.label {
  position: relative;
}
.c-select-cms.label.is_active select {
  border: 2px solid #004ea1;
}
.c-select-cms.label.bus select {
  background-image: url(../images/common/icon_bus_frame.svg);
}
.c-select-cms.label.com-bus select {
  background-image: url(../images/common/icon_com_bus_stop_frame.svg);
}
.c-select-cms.label.train select {
  background-image: url(../images/common/icon_train_frame.svg);
}
.c-select-cms.label.landmark select {
  background-image: url(../images/common/icon_land_mark_frame.svg);
}
.c-select-cms.label select {
  color: #333;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  padding: 12px 65px 12px 60px;
  border: 2px solid #EBEDEF;
  background-repeat: no-repeat;
  background-position: 10px 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-select-cms.label select {
    font-size: 1.719vw;
    padding: 0.938vw 5.078vw 0.938vw 4.688vw;
    border-width: 0.156vw;
    background-position: 0.781vw 50%;
    background-size: 2.813vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-select-cms.label select {
    font-size: 5.3333vw;
    height: 13.33vw;
    padding: 0 16vw 0 13.33vw;
    background-size: 8.667vw;
    background-position: 1.781vw 50%;
  }
}
.c-select-cms.label select:focus {
  background-color: #ecedef;
}
.c-select-cms.label:before {
  right: 45px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-select-cms.label:before {
    right: 3.516vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-select-cms.label:before {
    right: 10.667vw;
  }
}
.c-select-cms.label:after {
  right: 45px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-select-cms.label:after {
    right: 3.516vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-select-cms.label:after {
    right: 10.667vw;
  }
}
.c-select-cms:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4.5px 0 4.5px;
  border-color: #666 transparent transparent transparent;
  position: absolute;
  top: 58%;
  right: 10px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-select-cms:after {
    border-width: 0.469vw 0.352vw 0 0.352vw;
    right: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-select-cms:after {
    border-width: 1.6vw 1.2vw 0 1.2vw;
    right: 2.667vw;
  }
}
.c-select-cms select {
  color: #666;
  font-size: 16px;
  font-size: 1rem;
  line-height: 25px;
  width: 100%;
  margin: 0;
  padding: 14px 55px 14px 15px;
  background-color: #EBEDEF;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-select-cms select {
    font-size: 1.25vw;
    line-height: 1.953vw;
    padding: 1.094vw 4.297vw 1.094vw 1.172vw;
    border-radius: 0.313vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-select-cms select {
    font-size: 4.267vw;
    line-height: 6.667vw;
    padding: 3.733vw 14.667vw 3.733vw 4vw;
    border-radius: 1.067vw;
  }
}
.c-select-cms select::-ms-expand {
  display: none;
}
.c-select-cms select:focus {
  outline: 0;
}
.c-select-cms select:disabled {
  color: #fff !important;
  pointer-events: none;
}

/*----------------------------------------
	CMSコンポーネント 表バーティカル
----------------------------------------*/
.c-table-cms-vtcl {
  width: 100%;
  margin: 0 auto 60px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-table-cms-vtcl {
    margin-bottom: 4.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-table-cms-vtcl {
    margin-bottom: 8vw;
  }
}
.c-table-cms-vtcl th {
  color: #333;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.6;
  background-color: #F6F7F8;
  border: 1px solid #DADCDC;
  max-width: 160px;
  padding: 10px 20px;
  vertical-align: middle;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-table-cms-vtcl th {
    font-size: 1.172vw;
    border-width: 0.078vw;
    max-width: 12.5vw;
    padding: 0.781vw 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-table-cms-vtcl th {
    font-size: 3.733vw;
    border-width: 0.267vw;
    max-width: 100%;
    padding: 2.667vw;
    border-bottom: none;
    display: block;
  }
}
.c-table-cms-vtcl td {
  color: #666;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  border: 1px solid #DADCDC;
  padding: 10px 20px;
  vertical-align: middle;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-table-cms-vtcl td {
    font-size: 1.094vw;
    border-width: 0.078vw;
    padding: 0.781vw 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-table-cms-vtcl td {
    font-size: 3.467vw;
    border-width: 0.267vw;
    padding: 2.667vw;
    display: block;
  }
}

/*----------------------------------------
	CMSコンポーネント 表ホライゾナル
----------------------------------------*/
.c-table-cms-hrzn {
  width: 100%;
  margin: 0 auto 60px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-table-cms-hrzn {
    margin-bottom: 4.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-table-cms-hrzn {
    margin-bottom: 8vw;
  }
}
.c-table-cms-hrzn th {
  color: #333;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  background-color: #F6F7F8;
  border: 1px solid #DADCDC;
  padding: 15px 20px;
  vertical-align: middle;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-table-cms-hrzn th {
    font-size: 1.172vw;
    border-width: 0.078vw;
    padding: 1.172vw 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-table-cms-hrzn th {
    font-size: 3.733vw;
    border-width: 0.267vw;
    max-width: 100%;
    padding: 2.667vw;
  }
}
.c-table-cms-hrzn td {
  color: #666;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  border: 1px solid #DADCDC;
  padding: 15px 20px;
  vertical-align: middle;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-table-cms-hrzn td {
    font-size: 1.094vw;
    border-width: 0.078vw;
    padding: 1.172vw 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-table-cms-hrzn td {
    font-size: 3.467vw;
    border-width: 0.267vw;
    padding: 2.667vw;
  }
}

.c-table-cms-wrap {
  width: 100%;
  overflow-x: scroll;
}

/*----------------------------------------
	CMSコンポーネント タブ
----------------------------------------*/
.c-tabs-cms {
  margin-bottom: 40px;
  overflow: hidden;
}
.c-tabs-cms__selector {
  width: calc(100% - 80px);
  margin: 0 auto;
  position: relative;
  z-index: 5;
  transform: translateY(2px);
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-tabs-cms__selector {
    width: calc(100% - 6.25vw);
    border-width: 0.156vw;
    transform: translateY(0.156vw);
  }
}
@media only screen and (max-width: 767px) {
  .c-tabs-cms__selector {
    width: 100%;
    border: 2px solid #DADCDC;
    border-bottom: none;
    transform: translateY(0);
    overflow-x: scroll;
  }
}
.c-tabs-cms__selector .prev,
.c-tabs-cms__selector .next {
  width: 25px;
  height: 25px;
  background-color: #999;
  border-radius: 50%;
  position: absolute;
  top: 25px;
  z-index: 1;
  box-sizing: border-box;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-tabs-cms__selector .prev,
.c-tabs-cms__selector .next {
    width: 1.953vw;
    height: 1.953vw;
    top: 1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-tabs-cms__selector .prev,
.c-tabs-cms__selector .next {
    display: none;
  }
}
.c-tabs-cms__selector .prev:before,
.c-tabs-cms__selector .next:before {
  content: "";
  width: 5px;
  height: 5px;
  border: 2px solid #fff;
  position: absolute;
  top: 10px;
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-tabs-cms__selector .prev:before,
.c-tabs-cms__selector .next:before {
    width: 0.391vw;
    height: 0.391vw;
    border-width: 0.156vw;
    top: 0.781vw;
  }
}
.c-tabs-cms__selector .prev.swiper-button-disabled,
.c-tabs-cms__selector .next.swiper-button-disabled {
  opacity: 0;
}
.c-tabs-cms__selector .prev {
  left: -30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-tabs-cms__selector .prev {
    left: -2.344vw;
  }
}
.c-tabs-cms__selector .prev:before {
  border-right: none;
  border-bottom: none;
  transform: rotate(-45deg);
  left: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-tabs-cms__selector .prev:before {
    left: 0.781vw;
  }
}
.c-tabs-cms__selector .next {
  right: -30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-tabs-cms__selector .next {
    right: -2.344vw;
  }
}
.c-tabs-cms__selector .next:before {
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  right: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-tabs-cms__selector .next:before {
    right: 0.781vw;
  }
}
.c-tabs-cms__selector ul {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .c-tabs-cms__selector ul {
    padding: 0;
  }
}
.c-tabs-cms__selector ul li {
  text-align: center;
  width: auto;
  padding: 15px 20px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  /* 選択されている */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-tabs-cms__selector ul li {
    padding: 1.172vw 1.563vw;
    transform: translateY(0.156vw);
  }
}
@media only screen and (max-width: 767px) {
  .c-tabs-cms__selector ul li {
    padding: 0;
  }
}
.c-tabs-cms__selector ul li:hover p {
  opacity: 0.8;
}
.c-tabs-cms__selector ul li p {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 40px;
  background-color: #004ea2;
  border-radius: 3px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-tabs-cms__selector ul li p {
    font-size: 1.406vw;
    padding: 1.172vw 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-tabs-cms__selector ul li p {
    font-size: 4.667vw;
    width: 100%;
    padding: 5.333vw 10.667vw;
    border-radius: 0;
  }
}
.c-tabs-cms__selector ul li.is_select {
  border: 2px solid #DADCDC;
  border-bottom: none;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-tabs-cms__selector ul li.is_select {
    border-width: 0.156vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-tabs-cms__selector ul li.is_select {
    border: none;
    transform: translateY(0);
  }
}
.c-tabs-cms__selector ul li.is_select p {
  color: #333;
  background-color: transparent;
}
.c-tabs-cms__content {
  padding: 30px 40px;
  border: 2px solid #DADCDC;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-tabs-cms__content {
    padding: 2.344vw 3.125vw;
    border-width: 0.156vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-tabs-cms__content {
    padding: 4vw;
    border-top: none;
  }
}
.c-tabs-cms__content__tab {
  display: none;
}
.c-tabs-cms__content__tab:nth-of-type(1) {
  display: block;
}

/*----------------------------------------
	CMSコンポーネント テキスト
----------------------------------------*/
.c-text-cms {
  color: #666;
  word-break: break-all;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 auto 20px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-text-cms {
    font-size: 1.17vw;
    margin-bottom: 1.563vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-text-cms {
    font-size: 3.733vw;
    margin-bottom: 5.333vw;
  }
}
.c-text-cms .c-text-link {
  margin-bottom: 0;
  display: inline;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-text-cms .c-text-link {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-text-cms .c-text-link {
    margin-bottom: 0;
  }
}

/*----------------------------------------
	CMSコンポーネント テキストボックス
----------------------------------------*/
.c-textbox-cms {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-textbox-cms {
    margin-bottom: 2.344vw;
  }
}
.c-textbox-cms dl {
  padding: 20px;
  background-color: #F6F7F8;
  border-radius: 3px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-textbox-cms dl {
    padding: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-textbox-cms dl {
    padding: 2.667vw;
  }
}
.c-textbox-cms dl dt {
  color: #333;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 0 0 15px 20px;
  border-bottom: 1px solid #DADCDC;
  margin-bottom: 20px;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-textbox-cms dl dt {
    font-size: 1.172vw;
    padding: 0 0 1.172vw 1.563vw;
    border-width: 0.078vw;
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-textbox-cms dl dt {
    font-size: 3.733vw;
    padding: 0 0 1.333vw 5.333vw;
    margin-bottom: 4vw;
  }
}
.c-textbox-cms dl dt:before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #004EA2;
  border-radius: 3px;
  position: absolute;
  top: 5px;
  left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-textbox-cms dl dt:before {
    width: 0.938vw;
    height: 0.938vw;
    border-radius: 0.234vw;
    top: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-textbox-cms dl dt:before {
    width: 3.2vw;
    height: 3.2vw;
    top: 1.133vw;
  }
}
.c-textbox-cms dl dd p {
  color: #666;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-textbox-cms dl dd p {
    font-size: 1.172vw;
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-textbox-cms dl dd p {
    font-size: 3.733vw;
  }
}
.c-textbox-cms dl dd p:last-of-type {
  margin-bottom: 0;
}

/*----------------------------------------
	ティッカー
----------------------------------------*/
.c-ticker {
  width: 100%;
  margin-bottom: 5px;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  /* オレンジカラー */
  /* 重要 */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-ticker {
    margin-bottom: 0.39vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-ticker {
    margin-bottom: 1.333vw;
    border-radius: 0.8vw;
  }
}
.c-ticker dt {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  width: 135px;
  background-color: #e83820;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-ticker dt {
    font-size: 1.25vw;
    width: 10.547vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-ticker dt {
    font-size: 2.9333vw;
    width: 17.3333vw;
  }
}
.c-ticker dd {
  width: calc(100% - 135px);
  min-height: 40px;
  padding: 10px 30px;
  background-color: #555;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-ticker dd {
    width: calc(100% - 10.547vw);
    min-height: 3.125vw;
    padding: 0.781vw 2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-ticker dd {
    padding: 2.6666vw 4vw;
    width: calc(100% - 17.3333vw);
  }
}
.c-ticker dd a {
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-ticker dd a {
    font-size: 1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-ticker dd a {
    font-size: 3.4666vw;
  }
}
.c-ticker dd a:hover {
  opacity: 0.6;
}
.c-ticker.ora dt {
  background-color: #F5A100;
}
.c-ticker.ora dd {
  background-color: #F6F7F8;
}
.c-ticker.ora dd a {
  color: #333;
}
.c-ticker.important dt {
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  background-color: #FFEC05;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-ticker.important dt {
    font-size: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-ticker.important dt {
    font-size: 3.467vw;
  }
}
.c-ticker.important dd {
  padding: 20px 30px;
  background-color: #FFEC05;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-ticker.important dd {
    padding: 1.563vw 2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-ticker.important dd {
    padding: 2.6666vw 4vw;
  }
}
.c-ticker.important dd a {
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-ticker.important dd a {
    font-size: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-ticker.important dd a {
    font-size: 3.733vw;
  }
}

.c-youtube-cms {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 60px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-youtube-cms {
    margin-bottom: 4.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-youtube-cms {
    margin-bottom: 8vw;
  }
}
.c-youtube-cms iframe {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  height: 100% !important;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .c-youtube-cms iframe {
    width: 100% !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-youtube-cms iframe {
    width: 100% !important;
  }
}

/*----------------------------------------
	CMS コンテンツブロック 
----------------------------------------*/
.p-cms-block {
  width: 100%;
  padding: 60px;
  margin: 0 auto 80px;
  background-color: #fff;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-cms-block {
    padding: 4.68vw;
    margin: 0 auto 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-cms-block {
    width: 100%;
    padding: 8vw;
    margin: 0 0 8.6666vw;
  }
}
.p-cms-block__sep {
  width: calc(100% + 120px);
  padding: 60px 0 0;
  margin-top: 60px;
  background-color: #fff;
  border-top: 60px solid #eff4f8;
  position: relative;
  left: -60px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-cms-block__sep {
    width: calc(100% + 9.375vw);
    padding: 4.688vw 0 0;
    margin-top: 4.688vw;
    left: -4.687vw;
    border-top: 4.688vw solid #eff4f8;
  }
}
@media only screen and (max-width: 767px) {
  .p-cms-block__sep {
    width: calc(100% + 16vw);
    padding: 8.6666vw 0 0;
    margin-top: 8.6666vw;
    left: -8vw;
    border-top: 4.688vw solid #eff4f8;
  }
}

/*----------------------------------------
	フッター上部
----------------------------------------*/
.p-footer-above {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  /* フッターナビ */
  /* ロゴ */
  /* ソーシャルナビ */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above {
    width: 93.75vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above {
    width: auto;
    padding: 0 5vw;
  }
}
.p-footer-above h2 {
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-family: "Overpass", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above h2 {
    font-size: 2.5vw;
    margin-bottom: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above h2 {
    display: none;
  }
}
.p-footer-above__fnavi {
  width: 100%;
  margin-bottom: 35px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__fnavi {
    margin-bottom: 2.734vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__fnavi {
    display: none;
  }
}
.p-footer-above__fnavi ul {
  display: flex;
  flex-wrap: wrap;
}
.p-footer-above__fnavi ul:nth-child(2) {
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__fnavi ul:nth-child(2) {
    margin-top: 1.563vw;
  }
}
.p-footer-above__fnavi ul li {
  margin-right: 35px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__fnavi ul li {
    margin-right: 2.734vw;
  }
}
.p-footer-above__fnavi ul li a {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__fnavi ul li a {
    font-size: 1.25vw;
  }
}
.p-footer-above__fnavi ul li a:hover {
  color: #F5A100;
}
.p-footer-above__fnavi ul li a:hover svg path {
  fill: #F5A100;
  transition: all 0.3s ease;
}
.p-footer-above__fnavi ul li a .icon {
  padding-right: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__fnavi ul li a .icon {
    padding-right: 0.781vw;
  }
}
.p-footer-above__fnavi ul li a .icon svg {
  vertical-align: middle;
}
.p-footer-above__logo {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__logo {
    font-size: 1.094vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__logo {
    font-size: 12px;
    font-size: 0.75rem;
    text-align: center;
  }
}
.p-footer-above__logo .icon {
  padding-right: 15px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__logo .icon {
    padding-right: 1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__logo .icon {
    padding-right: 0;
    display: block;
  }
}
.p-footer-above__logo .icon img {
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .p-footer-above__logo .icon img {
    width: 42.6666vw;
    margin-bottom: 2.6666vw;
    vertical-align: bottom;
  }
}
.p-footer-above__social {
  width: 186px;
  position: absolute;
  top: -20px;
  right: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social {
    width: 14.531vw;
    top: -1.562vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social {
    text-align: center;
    width: 100%;
    margin-bottom: 5.3333vw;
    position: static;
    top: auto;
    right: auto;
  }
}
.p-footer-above__social h4 {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
  border-radius: 3px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social h4 {
    font-size: 1.563vw;
    margin-bottom: 0.391vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social h4 {
    font-size: 15px;
    font-size: 0.9375rem;
    font-size: 4vw;
    line-height: 9.3333vw;
    margin: 0 auto 1.3333vw;
  }
}
.p-footer-above__social ul {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social ul {
    display: block;
  }
}
.p-footer-above__social ul li {
  margin: 0 3px 3px 0;
  width: 90px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social ul li {
    margin: 0 0.234vw 0.234vw 0;
    width: 7.031vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social ul li {
    float: none;
    width: 20vw;
    margin: 0 0.5333vw 0 0;
    vertical-align: top;
    display: inline-block;
  }
}
.p-footer-above__social ul li a {
  color: #004EA2;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  padding: 15px 15px;
  border-radius: 3px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social ul li a {
    padding: 1.172vw 1.172vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social ul li a {
    padding: 2.6666vw 1.3333vw;
  }
}
.p-footer-above__social ul li a:hover {
  opacity: 0.8;
}
.p-footer-above__social ul li a .icon svg path {
  fill: #004EA2;
}
.p-footer-above__social ul li a .icon.mid {
  padding: 10px 0;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social ul li a .icon.mid {
    padding: 0.781vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social ul li a .icon.mid {
    padding: 3.2vw 0;
  }
}
.p-footer-above__social ul li a .icon.mid svg {
  width: 40px;
  height: 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social ul li a .icon.mid svg {
    width: 3.125vw;
    height: 2.344vw;
  }
}
.p-footer-above__social ul li a p {
  color: #004EA2;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social ul li a p {
    font-size: 1.016vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social ul li a p {
    font-size: 3.2vw;
  }
}
.p-footer-above__social ul li a p span {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  padding: 3px 0;
  background-color: #004EA2;
  border-radius: 3px;
  margin-top: 5px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social ul li a p span {
    font-size: 0.938vw;
    padding: 0.234vw 0;
    border-radius: 0.234vw;
    margin-top: 0.391vw;
  }
}

/*----------------------------------------
	フッター上部
----------------------------------------*/
.p-footer-above {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  /* フッターナビ */
  /* ロゴ */
  /* ソーシャルナビ */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above {
    width: 93.75vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above {
    width: auto;
    padding: 0 5vw;
  }
}
.p-footer-above h2 {
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-family: "Overpass", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above h2 {
    font-size: 2.5vw;
    margin-bottom: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above h2 {
    display: none;
  }
}
.p-footer-above__fnavi {
  width: 100%;
  margin-bottom: 35px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__fnavi {
    margin-bottom: 2.734vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__fnavi {
    display: none;
  }
}
.p-footer-above__fnavi ul {
  display: flex;
  flex-wrap: wrap;
}
.p-footer-above__fnavi ul:nth-child(2) {
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__fnavi ul:nth-child(2) {
    margin-top: 1.563vw;
  }
}
.p-footer-above__fnavi ul li {
  margin-right: 35px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__fnavi ul li {
    margin-right: 2.734vw;
  }
}
.p-footer-above__fnavi ul li a {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__fnavi ul li a {
    font-size: 1.25vw;
  }
}
.p-footer-above__fnavi ul li a:hover {
  color: #F5A100;
}
.p-footer-above__fnavi ul li a:hover svg path {
  fill: #F5A100;
  transition: all 0.3s ease;
}
.p-footer-above__fnavi ul li a .icon {
  padding-right: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__fnavi ul li a .icon {
    padding-right: 0.781vw;
  }
}
.p-footer-above__fnavi ul li a .icon svg {
  vertical-align: middle;
}
.p-footer-above__logo {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__logo {
    font-size: 1.094vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__logo {
    font-size: 12px;
    font-size: 0.75rem;
    text-align: center;
  }
}
.p-footer-above__logo .icon {
  padding-right: 15px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__logo .icon {
    padding-right: 1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__logo .icon {
    padding-right: 0;
    display: block;
  }
}
.p-footer-above__logo .icon img {
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .p-footer-above__logo .icon img {
    width: 42.6666vw;
    margin-bottom: 2.6666vw;
    vertical-align: bottom;
  }
}
.p-footer-above__social {
  width: 186px;
  position: absolute;
  top: -20px;
  right: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social {
    width: 14.531vw;
    top: -1.562vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social {
    text-align: center;
    width: 100%;
    margin-bottom: 5.3333vw;
    position: static;
    top: auto;
    right: auto;
  }
}
.p-footer-above__social h4 {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
  border-radius: 3px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social h4 {
    font-size: 1.563vw;
    margin-bottom: 0.391vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social h4 {
    font-size: 15px;
    font-size: 0.9375rem;
    font-size: 4vw;
    line-height: 9.3333vw;
    margin: 0 auto 1.3333vw;
  }
}
.p-footer-above__social ul {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social ul {
    display: block;
  }
}
.p-footer-above__social ul li {
  margin: 0 3px 3px 0;
  width: 90px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social ul li {
    margin: 0 0.234vw 0.234vw 0;
    width: 7.031vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social ul li {
    float: none;
    width: 20vw;
    margin: 0 0.5333vw 0 0;
    vertical-align: top;
    display: inline-block;
  }
}
.p-footer-above__social ul li a {
  color: #004EA2;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  padding: 15px 15px;
  border-radius: 3px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social ul li a {
    padding: 1.172vw 1.172vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social ul li a {
    padding: 2.6666vw 1.3333vw;
  }
}
.p-footer-above__social ul li a:hover {
  opacity: 0.8;
}
.p-footer-above__social ul li a .icon svg path {
  fill: #004EA2;
}
.p-footer-above__social ul li a .icon.mid {
  padding: 10px 0;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social ul li a .icon.mid {
    padding: 0.781vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social ul li a .icon.mid {
    padding: 3.2vw 0;
  }
}
.p-footer-above__social ul li a .icon.mid svg {
  width: 40px;
  height: 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social ul li a .icon.mid svg {
    width: 3.125vw;
    height: 2.344vw;
  }
}
.p-footer-above__social ul li a p {
  color: #004EA2;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social ul li a p {
    font-size: 1.016vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-above__social ul li a p {
    font-size: 3.2vw;
  }
}
.p-footer-above__social ul li a p span {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  padding: 3px 0;
  background-color: #004EA2;
  border-radius: 3px;
  margin-top: 5px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-above__social ul li a p span {
    font-size: 0.938vw;
    padding: 0.234vw 0;
    border-radius: 0.234vw;
    margin-top: 0.391vw;
  }
}

/*----------------------------------------
	フッター下部
----------------------------------------*/
.p-footer-under {
  width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  /* サブナビ */
  /* コピーライト */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-under {
    width: 93.75vw;
    padding-top: 2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-under {
    width: auto;
    padding: 30px 5vw 0;
  }
}
.p-footer-under__snavi {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-under__snavi {
    margin-bottom: 2.344vw;
  }
}
.p-footer-under__snavi ul {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .p-footer-under__snavi ul {
    text-align: center;
    margin-bottom: 30px;
    display: block;
  }
}
.p-footer-under__snavi ul li {
  margin-right: 25px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-under__snavi ul li {
    margin-right: 1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-under__snavi ul li {
    margin-right: 0;
    display: inline-block;
  }
  .p-footer-under__snavi ul li:after {
    color: #fff;
    content: " / ";
  }
  .p-footer-under__snavi ul li:last-child:after {
    display: none;
  }
}
.p-footer-under__snavi ul li a {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-under__snavi ul li a {
    font-size: 1.094vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-under__snavi ul li a {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-footer-under__snavi ul li a:hover {
  opacity: 0.6;
}
.p-footer-under__copyright {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-footer-under__copyright {
    font-size: 0.938vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer-under__copyright {
    text-align: center;
  }
}

/*----------------------------------------
	ヘッダー上部
----------------------------------------*/
.p-header-above {
  width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-above {
    width: 93.75%;
    padding: 1.1718vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-above {
    width: auto;
    padding: 2.6666vw 0;
    position: relative;
    display: block;
  }
}
.p-header-above__logo {
  margin: 0 50px 0 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-above__logo {
    margin: 0 3.906vw 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-above__logo {
    margin: 0;
    text-align: center;
  }
}
.p-header-above__logo a {
  display: block;
}
@media only screen and (max-width: 767px) {
  .p-header-above__logo a {
    display: inline-block;
  }
}
.p-header-above__logo a img {
  width: auto;
  height: 50px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-above__logo a img {
    width: auto;
    height: 3.906vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-above__logo a img {
    width: auto;
    height: 12vw;
  }
}
.p-header-above__snavi {
  padding: 15px 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-above__snavi {
    padding: 1.172vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-above__snavi {
    display: none;
  }
}
.p-header-above__snavi.lang {
  margin-left: auto;
  /*
  @include tablet{
  	padding-left: 40.625vw;
  }//tablet
  @include sp{
  	padding-left: 0;
  }//sp
  */
}
_:-ms-fullscreen, :root .p-header-above__snavi.lang ul li:nth-child(1) {
  white-space: nowrap;
}

.p-header-above__snavi ul {
  font-size: 0px;
  font-size: 0rem;
  vertical-align: middle;
}
.p-header-above__snavi ul li {
  line-height: 1;
  min-width: 100px;
  margin-right: 40px;
  position: relative;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-above__snavi ul li {
    min-width: 7.813vw;
    margin-right: 3.125vw;
  }
}
.p-header-above__snavi ul li:last-child {
  margin-right: 0;
}
.p-header-above__snavi ul li a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-above__snavi ul li a {
    font-size: 1.25vw;
  }
}
.p-header-above__snavi ul li a:hover {
  opacity: 0.6;
}
.p-header-above__snavi ul li a .icon {
  margin-right: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-above__snavi ul li a .icon {
    margin-right: 0.781vw;
  }
}
.p-header-above__snavi ul li a .icon img {
  width: auto;
  height: 18px;
  vertical-align: top;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-above__snavi ul li a .icon img {
    height: 1.406vw;
  }
}
.p-header-above__snavi ul li.global {
  position: relative;
}
.p-header-above__snavi ul li.global a.is_active:after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.p-header-above__snavi ul li.global a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #004EA2 transparent transparent transparent;
  position: absolute;
  top: 45%;
  right: -14px;
  transform: translate(-50%, -50%);
  transition: border 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-above__snavi ul li.global a:after {
    border-width: 0.391vw 0.391vw 0 0.391vw;
    right: -1.094vw;
  }
}
.p-header-above__snavi ul li.global ul {
  text-align: center;
  background-color: #fff;
  border: 2px solid #004EA2;
  padding: 15px 20px;
  position: absolute;
  top: 30px;
  left: 60%;
  transform: translateX(-50%);
  z-index: 101;
  display: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-above__snavi ul li.global ul {
    border-width: 0.156vw;
    padding: 1.172vw 1.563vw;
    top: 2.344vw;
  }
}
.p-header-above__snavi ul li.global ul li {
  line-height: 1;
  width: 130px;
  padding: 0 0 15px;
  margin: 0 0 15px;
  border-bottom: 2px solid #004EA2;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-above__snavi ul li.global ul li {
    width: 10.156vw;
    padding: 0 0 1.172vw;
    margin: 0 0 1.172vw;
    border-width: 0.156vw;
  }
}
.p-header-above__snavi ul li.global ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.p-header-above__snavi ul li.global ul li a {
  color: #004EA2;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-above__snavi ul li.global ul li a {
    font-size: 1.406vw;
  }
}
.p-header-above__snavi ul li.global ul li a:after {
  display: none;
}

/*----------------------------------------
	ヘッダーグロナビ
----------------------------------------*/
.p-header-global {
  padding: 10px 0;
  background-color: #004ea1;
  /* 多言語対応 */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global {
    padding: 0.781vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-global {
    padding: 2.6666vw 0 1.3333vw;
  }
}
.p-header-global.is_fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.p-header-global__gnavi {
  width: 1330px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi {
    width: 93.75vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-global__gnavi {
    width: 100%;
    margin: 0 auto;
  }
}
.p-header-global__gnavi ul {
  display: flex;
  position: relative;
}
.p-header-global__gnavi ul.no-arrow li a:after {
  display: none;
}
.p-header-global__gnavi ul li {
  border-right: 1px solid #fff;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li {
    border-width: 0.078vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-global__gnavi ul li {
    width: 25vw;
    border-right: none;
  }
}
.p-header-global__gnavi ul li:first-child {
  padding-right: 0.84vw;
}
@media only screen and (max-width: 767px) {
  .p-header-global__gnavi ul li:first-child {
    display: none;
  }
}
.p-header-global__gnavi ul li:first-child a {
  color: #004ea1;
  text-decoration: none;
  padding: 0 1.153vw;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li:first-child a {
    padding-left: 2.34vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-global__gnavi ul li:first-child a {
    padding: 0;
    margin-top: -0.48vw;
  }
}
.p-header-global__gnavi ul li:first-child a:after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-header-global__gnavi ul li:nth-child(n+6) {
    display: none;
  }
}
.p-header-global__gnavi ul li:last-child {
  border-right: none;
}
@media only screen and (max-width: 767px) {
  .p-header-global__gnavi ul li:last-child {
    display: none;
  }
}
.p-header-global__gnavi ul li:hover a {
  color: #F5A100;
}
.p-header-global__gnavi ul li:hover a:after {
  border-color: #F5A100 transparent transparent transparent;
}
.p-header-global__gnavi ul li:hover a svg path {
  fill: #F5A100;
  transition: all 0.3s ease;
}
.p-header-global__gnavi ul li:hover .children {
  opacity: 1;
  pointer-events: auto;
}
.p-header-global__gnavi ul li a {
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 50px;
  text-decoration: none;
  padding: 0 40px;
  display: block;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li a {
    font-size: 1.172vw;
    line-height: 3.906vw;
    padding: 0 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-global__gnavi ul li a {
    font-size: 2.6666vw;
    line-height: 6.6666vw;
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
.p-header-global__gnavi ul li a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #3382d1 transparent transparent transparent;
  position: absolute;
  top: 43px;
  left: 50%;
  transform: translateX(-50%);
  transition: border 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li a:after {
    top: auto;
    bottom: 0;
    border-width: 0.391vw 0.391vw 0 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-global__gnavi ul li a:after {
    display: none;
  }
}
.p-header-global__gnavi ul li a .icon {
  padding-right: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li a .icon {
    padding-right: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-global__gnavi ul li a .icon {
    padding-right: 0;
    display: block;
  }
}
.p-header-global__gnavi ul li a .icon svg, .p-header-global__gnavi ul li a .icon img {
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li a .icon svg, .p-header-global__gnavi ul li a .icon img {
    height: 1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-global__gnavi ul li a .icon svg, .p-header-global__gnavi ul li a .icon img {
    height: 5.3333vw;
  }
}
.p-header-global__gnavi ul li .children {
  width: 1240px;
  padding: 40px 20px 20px;
  background-color: #004ea1;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 0 0 3px 3px;
  box-sizing: border-box;
  display: flex;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li .children {
    width: 96.875vw;
    padding: 3.125vw 1.563vw 1.563vw;
    top: 3.906vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-global__gnavi ul li .children {
    display: none;
  }
}
.p-header-global__gnavi ul li .children.pict {
  padding: 30px 20px 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li .children.pict {
    padding: 2.344vw 1.563vw 1.563vw;
  }
}
.p-header-global__gnavi ul li .children.pict li a {
  padding: 10px 0;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li .children.pict li a {
    padding: 0.781vw 0;
    border-radius: 0.234vw;
  }
}
.p-header-global__gnavi ul li .children.pict li a:hover {
  opacity: 0.8;
}
.p-header-global__gnavi ul li .children.pict li a dl {
  position: static;
  transform: translate(0);
}
.p-header-global__gnavi ul li .children.pict li a dl dt {
  margin-bottom: 0;
}
.p-header-global__gnavi ul li .children.pict li a dl dt img {
  width: auto;
  height: 23px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li .children.pict li a dl dt img {
    height: 1.797vw;
  }
}
.p-header-global__gnavi ul li .children.pict li a dl dd {
  color: #004ea1;
  font-size: 14px;
  font-size: 0.875rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li .children.pict li a dl dd {
    font-size: 1.094vw;
  }
}
.p-header-global__gnavi ul li .children.pict li:last-child {
  margin-right: 0;
  padding-left: 0;
}
.p-header-global__gnavi ul li .children.pict li:last-child a {
  background-color: #fff;
}
.p-header-global__gnavi ul li .children li {
  width: 224px;
  margin-right: 20px;
  border-right: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li .children li {
    width: 17.5vw;
    margin-right: 1.563vw;
  }
}
.p-header-global__gnavi ul li .children li:last-child {
  margin-right: 0;
  padding-left: 0;
}
.p-header-global__gnavi ul li .children li:last-child a {
  background-color: transparent;
}
.p-header-global__gnavi ul li .children li a {
  padding: 0;
  position: relative;
  display: block;
}
.p-header-global__gnavi ul li .children li a:hover figure img {
  opacity: 0.4;
}
.p-header-global__gnavi ul li .children li a:after {
  display: none;
}
.p-header-global__gnavi ul li .children li a figure {
  background-color: #000;
  border-radius: 3px;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li .children li a figure {
    border-radius: 0.234vw;
  }
}
.p-header-global__gnavi ul li .children li a figure img {
  width: 100%;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.p-header-global__gnavi ul li .children li a dl {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-header-global__gnavi ul li .children li a dl dt {
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li .children li a dl dt {
    font-size: 2.5vw;
    margin-bottom: 0.781vw;
  }
}
.p-header-global__gnavi ul li .children li a dl dd {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global__gnavi ul li .children li a dl dd {
    font-size: 1.25vw;
  }
}
.p-header-global.lang {
  padding: 20px 0;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global.lang {
    padding: 1.563vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-global.lang {
    padding: 2.667vw 3vw;
  }
}
.p-header-global.lang ul li {
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .p-header-global.lang ul li {
    text-align: center;
  }
  .p-header-global.lang ul li:nth-child(1), .p-header-global.lang ul li:nth-child(4), .p-header-global.lang ul li:nth-child(5) {
    display: none;
  }
}
.p-header-global.lang ul li:last-child {
  padding-left: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global.lang ul li:last-child {
    padding-left: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-global.lang ul li:last-child {
    padding-left: 0;
    display: block;
  }
}
.p-header-global.lang ul li:last-child a {
  color: #fff;
  text-decoration: none;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}
.p-header-global.lang ul li:last-child a:hover {
  color: #F5A100;
}
.p-header-global.lang ul li a {
  padding: 0 20px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-global.lang ul li a {
    padding: 0 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-global.lang ul li a {
    font-size: 3.2vw;
    line-height: 1;
    letter-spacing: 0;
    padding: 0;
  }
}
.p-header-global.lang ul li a:after {
  display: none;
}
.p-header-global.lang ul li a .icon {
  margin-bottom: 1.4vw;
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-header-global.lang ul li a .icon {
    display: block;
  }
}
.p-header-global.lang ul li a .icon img {
  width: auto;
  height: 4.667vw;
}
.p-header-global.lang ul li a .pc-inline {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .p-header-global.lang ul li a .pc-inline {
    display: none;
  }
}

/*----------------------------------------
	ヘッダー SP
----------------------------------------*/
.p-header-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-header-sp {
    display: block;
  }
}
.p-header-sp__search {
  width: 21.3333vw;
  height: 17.3333vw;
  padding-top: 5.333vw;
  display: block;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
}
.p-header-sp__search.is_active {
  background-color: #004EA2;
}
.p-header-sp__search.is_active svg path {
  fill: #fff;
}
.p-header-sp__search svg {
  width: 6.6666vw;
  height: 6.6666vw;
}
.p-header-sp__text-btn {
  line-height: 1;
  position: absolute;
  top: 6vw;
  left: 4vw;
}
.p-header-sp__text-btn a {
  color: #333;
  font-size: 2.933vw;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}
.p-header-sp__text-btn a .icon {
  margin-right: 1.333vw;
  display: inline-block;
}
.p-header-sp__text-btn a .icon img {
  width: 4vw;
  height: 4vw;
  vertical-align: middle;
}
.p-header-sp__global {
  display: block;
  position: absolute;
  top: 4.6vw;
  right: 20vw;
  cursor: pointer;
}
.p-header-sp__global .trg img {
  width: 8vw;
  height: auto;
}
.p-header-sp__global ul {
  text-align: center;
  background-color: #fff;
  border: 0.533vw solid #004EA2;
  padding: 4vw 5.333vw;
  position: absolute;
  top: 10.667vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
  display: none;
}
.p-header-sp__global ul li {
  line-height: 1;
  width: 34.667vw;
  padding: 0 0 4vw;
  margin: 0 0 4vw;
  border-bottom: 0.533vw solid #004EA2;
}
.p-header-sp__global ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.p-header-sp__global ul li a {
  color: #004EA2;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.p-header-sp__menu-btn {
  width: 10vw;
  height: 17.3333vw;
  display: block;
  position: absolute;
  top: 0;
  right: 5vw;
  cursor: pointer;
}
.p-header-sp__menu-btn.is_active span {
  left: 45%;
}
.p-header-sp__menu-btn.is_active span:nth-of-type(1) {
  top: 11.6vw;
  transform: rotate(45deg) translateX(-50%);
}
.p-header-sp__menu-btn.is_active span:nth-of-type(2) {
  transform: translateX(200%);
}
.p-header-sp__menu-btn.is_active span:nth-of-type(3) {
  top: 5.2vw;
  transform: rotate(-45deg) translateX(-50%);
}
.p-header-sp__menu-btn span {
  line-height: 1;
  width: 9.3333vw;
  height: 0.9333vw;
  background-color: #004ea1;
  display: block;
  position: absolute;
  left: 50%;
  transform-origin: center;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.p-header-sp__menu-btn span:nth-of-type(1) {
  top: 5.7333vw;
}
.p-header-sp__menu-btn span:nth-of-type(2) {
  top: 8.2666vw;
}
.p-header-sp__menu-btn span:nth-of-type(3) {
  top: 10.8888vw;
}
.p-header-sp__gnavi {
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 17.3333vw;
  left: 0;
  z-index: 50;
  overflow-y: scroll;
  display: none;
}
.p-header-sp__gnavi .list {
  border-top: 0.2666vw solid #004ea2;
}
.p-header-sp__gnavi .list .item {
  border-bottom: 0.2666vw solid #004ea2;
}
.p-header-sp__gnavi .list .item dl dt {
  position: relative;
}
.p-header-sp__gnavi .list .item dl dt a {
  color: #004ea2;
  font-size: 4.8vw;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  padding: 6vw 5.3333vw;
  display: block;
}
.p-header-sp__gnavi .list .item dl dt a .icon {
  margin-right: 2.6666vw;
}
.p-header-sp__gnavi .list .item dl dt a .icon img {
  width: 5.3333vw;
  height: auto;
  vertical-align: middle;
}
.p-header-sp__gnavi .list .item dl dt .trig {
  width: 7.3333vw;
  height: 7.3333vw;
  border-radius: 50%;
  border: 1px solid #004ea2;
  position: absolute;
  box-sizing: border-box;
  position: absolute;
  right: 5.3333vw;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.p-header-sp__gnavi .list .item dl dt .trig.is_active span:nth-of-type(2) {
  display: none;
}
.p-header-sp__gnavi .list .item dl dt .trig span:nth-of-type(1) {
  width: 4vw;
  height: 0.5333vw;
  background-color: #004ea2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-header-sp__gnavi .list .item dl dt .trig span:nth-of-type(2) {
  width: 0.5333vw;
  height: 4vw;
  background-color: #004ea2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-header-sp__gnavi .list .item dl dd {
  display: none;
}
.p-header-sp__gnavi .list .item dl dd ul li {
  margin-bottom: 0.2666vw;
}
.p-header-sp__gnavi .list .item dl dd ul li a {
  color: #004ea2;
  font-size: 4.2666vw;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  padding: 4vw 13.3333vw;
  background-color: #f6f7f8;
  display: block;
}
.p-header-sp__gnavi .list .item dl dd ul li a .icon {
  margin-right: 2.6666vw;
}
.p-header-sp__gnavi .list .item dl dd ul li a .icon img {
  max-width: 5.3333vw;
  max-height: 5.3333vw;
  vertical-align: middle;
}
.p-header-sp__gnavi .bnr {
  padding: 5.3333vw 2.6666vw;
}
.p-header-sp__gnavi .bnr img {
  width: 100%;
  height: auto;
}
.p-header-sp__gnavi .info-navi {
  margin-bottom: 80px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-sp__gnavi .info-navi {
    margin-bottom: 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-sp__gnavi .info-navi {
    padding: 4vw 0;
    margin-bottom: 10.6666vw;
  }
}
.p-header-sp__gnavi .info-navi ul {
  font-size: 0px;
  font-size: 0rem;
  text-align: center;
}
.p-header-sp__gnavi .info-navi ul li {
  margin: 0 10px;
  vertical-align: top;
  display: inline-block;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-sp__gnavi .info-navi ul li {
    margin: 0 0.781vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-sp__gnavi .info-navi ul li {
    margin: 0 5.3333vw;
    border-radius: 0;
  }
}
.p-header-sp__gnavi .info-navi ul li a {
  text-decoration: none;
  width: 280px;
  padding: 30px 0;
  background-color: #fafafa;
  display: block;
  transition: all 0.3s ease;
  border-radius: 3px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-sp__gnavi .info-navi ul li a {
    width: 21.875vw;
    padding: 2.344vw 0;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-sp__gnavi .info-navi ul li a {
    width: auto;
    padding: 0;
    background-color: transparent;
  }
}
.p-header-sp__gnavi .info-navi ul li a:hover {
  background-color: #efefef;
}
@media only screen and (max-width: 767px) {
  .p-header-sp__gnavi .info-navi ul li a:hover {
    background-color: transparent;
  }
}
.p-header-sp__gnavi .info-navi ul li a .icon {
  margin-bottom: 20px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-sp__gnavi .info-navi ul li a .icon {
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-sp__gnavi .info-navi ul li a .icon {
    margin-bottom: 2.6666vw;
  }
  .p-header-sp__gnavi .info-navi ul li a .icon img {
    width: auto;
    height: 6.6666vw;
  }
}
.p-header-sp__gnavi .info-navi ul li a dl dt {
  color: #004ea2;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-sp__gnavi .info-navi ul li a dl dt {
    font-size: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-sp__gnavi .info-navi ul li a dl dt {
    font-size: 4.8vw;
  }
}
.p-header-sp__gnavi .info-navi ul li a dl dt span {
  color: #004ea2;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Overpass", sans-serif;
  letter-spacing: 0.1em;
  margin-top: 10px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-sp__gnavi .info-navi ul li a dl dt span {
    font-size: 0.938vw;
    margin-top: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-sp__gnavi .info-navi ul li a dl dt span {
    font-size: 3.2vw;
    letter-spacing: 0.05em;
  }
}
.p-header-sp__gnavi .info-navi ul li a dl dd {
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-header-sp__gnavi .info-navi ul li a dl dd {
    font-size: 1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-header-sp__gnavi .info-navi ul li a dl dd {
    display: none;
  }
}

/*----------------------------------------
	多言語サイト ガテゴリーメニュー 
----------------------------------------*/
.p-lang-category {
  width: 100%;
  margin-bottom: 120px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-category {
    margin-bottom: 9.375vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-category {
    margin-bottom: 21.333vw;
  }
}
.p-lang-category ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .p-lang-category ul {
    align-items: flex-start;
    position: relative;
  }
}
.p-lang-category ul .card {
  text-align: center;
  width: 224px;
  padding: 30px 20px;
  margin-right: 20px;
  background-color: #004EA2;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-category ul .card {
    width: 17.5vw;
    padding: 2.344vw 1.563vw;
    margin-right: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-category ul .card {
    width: calc(50% - 1.333vw);
    padding: 4vw 2.8vw;
    margin-right: 0;
    margin-bottom: 4vw;
  }
  .p-lang-category ul .card:nth-child(1) {
    margin-right: 2.667vw;
  }
  .p-lang-category ul .card:nth-child(3) {
    height: 108vw;
    padding-top: 16vw;
  }
  .p-lang-category ul .card:nth-child(4) {
    min-height: 52vw;
    position: absolute;
    bottom: 56vw;
    right: 0;
  }
  .p-lang-category ul .card:nth-child(5) {
    min-height: 52vw;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
.p-lang-category ul .card:last-child {
  margin-right: 0;
}
.p-lang-category ul .card .icon {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-category ul .card .icon {
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-category ul .card .icon {
    height: 4vw;
  }
}
.p-lang-category ul .card .icon img {
  width: auto;
  height: 35px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-category ul .card .icon img {
    height: 2.734vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-category ul .card .icon img {
    height: 6.667vw;
  }
}
.p-lang-category ul .card h4 {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-category ul .card h4 {
    font-size: 1.875vw;
    margin-bottom: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-category ul .card h4 {
    font-size: 4.667vw;
    margin-bottom: 2.667vw;
  }
}
.p-lang-category ul .card p {
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-category ul .card p {
    font-size: 1.172vw;
    margin-bottom: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-category ul .card p {
    font-size: 3.733vw;
    margin-bottom: 4vw;
  }
}
.p-lang-category ul .card .links {
  width: auto;
  margin: 0 auto;
  display: inline-block;
}
.p-lang-category ul .card .links li {
  line-height: 1.3;
  text-align: left;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-category ul .card .links li {
    margin-bottom: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-category ul .card .links li {
    margin-bottom: 4vw;
  }
}
.p-lang-category ul .card .links li:last-child {
  margin-bottom: 0;
}
.p-lang-category ul .card .links li a {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-category ul .card .links li a {
    font-size: 1.094vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-category ul .card .links li a {
    font-size: 4.267vw;
    line-height: 1.2;
  }
}
.p-lang-category ul .card .links li a:hover {
  text-decoration: underline;
}
.p-lang-category ul .card .links li a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 5px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-category ul .card .links li a:after {
    border-width: 0.469vw 0 0.469vw 0.391vw;
    right: -1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-category ul .card .links li a:after {
    border-width: 1.6vw 0 1.6vw 1.333vw;
    right: -3vw;
  }
}

/*----------------------------------------
	多言語サイト インフォリスト 
----------------------------------------*/
.p-lang-info {
  width: 100%;
  margin-bottom: 120px;
  display: flex;
  justify-content: center;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-info {
    margin-bottom: 9.375vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-info {
    margin-bottom: 0;
    display: block;
  }
}
.p-lang-info__list {
  text-align: center;
  width: 490px;
  margin: 0 15px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-info__list {
    width: 38.281vw;
    margin: 0 1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-info__list {
    width: 100%;
    margin: 0;
  }
}
.p-lang-info__list.wide {
  width: 800px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-info__list.wide {
    width: 62.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-info__list.wide {
    width: 100%;
  }
}
.p-lang-info__list h4 {
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 60px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-info__list h4 {
    font-size: 2.188vw;
    margin-bottom: 4.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-info__list h4 {
    font-size: 5.333vw;
    margin-bottom: 8vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-info__list ul {
    margin-bottom: 16vw;
  }
}
.p-lang-info__list ul li {
  padding-bottom: 20px;
  border-bottom: 1px solid #DADCDC;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-info__list ul li {
    padding-bottom: 1.563vw;
    border-width: 0.078vw;
    margin-bottom: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-info__list ul li {
    padding-bottom: 4vw;
    border-width: 0.133vw;
    margin-bottom: 6.667vw;
  }
}
.p-lang-info__list ul li a {
  color: #004EA2;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-info__list ul li a {
    font-size: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-info__list ul li a {
    font-size: 4.267vw;
  }
  .p-lang-info__list ul li a .sm {
    font-size: 3.2vw;
    display: block;
  }
}
.p-lang-info__list ul li a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 5px;
  border-color: transparent transparent transparent #004EA2;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-info__list ul li a:after {
    border-width: 0.469vw 0 0.469vw 0.391vw;
    right: -1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-info__list ul li a:after {
    border-width: 1.6vw 0 1.6vw 1.333vw;
    right: -4vw;
  }
}
.p-lang-info__list ul li a:hover {
  text-decoration: underline;
}

/*----------------------------------------
	多言語サイト メインビジュアル 
----------------------------------------*/
.p-lang-main-visual {
  width: 100%;
  margin-bottom: 60px;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-main-visual {
    margin-bottom: 4.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-main-visual {
    margin-bottom: 4vw;
  }
}
.p-lang-main-visual .bg img {
  width: 100%;
  height: auto;
}
.p-lang-main-visual h2 {
  color: #fff;
  font-size: 80px;
  font-size: 5rem;
  font-family: "Overpass", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-main-visual h2 {
    font-size: 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-main-visual h2 {
    font-size: 10.667vw;
    letter-spacing: 0.03em;
  }
}
.p-lang-main-visual h2 .sm {
  font-size: 36px;
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-main-visual h2 .sm {
    font-size: 2.813vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-main-visual h2 .sm {
    font-size: 4.8vw;
  }
}

/*----------------------------------------
	多言語サイト 観光名所 
----------------------------------------*/
.p-lang-sightseeing {
  width: 100%;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-sightseeing {
    margin-bottom: 2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-sightseeing {
    margin-bottom: 8vw;
  }
}
.p-lang-sightseeing h3 {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-sightseeing h3 {
    font-size: 2.813vw;
    margin-bottom: 2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-sightseeing h3 {
    font-size: 6.667vw;
    line-height: 1.3;
    margin-bottom: 8vw;
  }
}
.p-lang-sightseeing h3 span {
  color: #004EA2;
  font-size: 28px;
  font-size: 1.75rem;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-sightseeing h3 span {
    font-size: 2.188vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-sightseeing h3 span {
    font-size: 3.733vw;
  }
}
.p-lang-sightseeing ul {
  display: flex;
  flex-wrap: wrap;
}
.p-lang-sightseeing ul li {
  width: 388px;
  margin-right: 18px;
  border-radius: 3px;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-sightseeing ul li {
    width: 30.312vw;
    margin-right: 1.406vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-sightseeing ul li {
    margin-right: 0;
    margin-bottom: 4vw;
  }
}
.p-lang-sightseeing ul li:last-child {
  margin-right: 0;
}
.p-lang-sightseeing ul li a {
  display: block;
  position: relative;
}
.p-lang-sightseeing ul li a:hover picture img {
  transform: scale(1.1);
}
.p-lang-sightseeing ul li a h4 {
  color: #fff;
  font-size: 44px;
  font-size: 2.75rem;
  font-family: "Overpass", sans-serif;
  letter-spacing: 0.05em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-sightseeing ul li a h4 {
    font-size: 3.438vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-sightseeing ul li a h4 {
    font-size: 8.8vw;
  }
}
.p-lang-sightseeing ul li a picture img {
  width: 100%;
  height: auto;
  transition: all 0.6s ease-out;
}
.p-lang-sightseeing ul li a .wrap {
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .p-lang-sightseeing ul li a .wrap {
    display: none;
  }
}
.p-lang-sightseeing ul li a .wrap img {
  width: 100%;
  height: auto;
}

/*----------------------------------------
	多言語サイト サブメニュー 
----------------------------------------*/
.p-lang-subnavi {
  width: 100%;
  margin-bottom: 120px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-subnavi {
    margin-bottom: 9.375vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-subnavi {
    margin-bottom: 20vw;
  }
}
.p-lang-subnavi ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.p-lang-subnavi ul .card {
  text-align: center;
  width: 388px;
  padding: 30px 20px;
  margin-right: 18px;
  background-color: #004EA2;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-subnavi ul .card {
    width: 30.312vw;
    padding: 2.344vw 1.563vw;
    margin-right: 1.406vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-subnavi ul .card {
    width: 100%;
    padding: 5.333vw;
    margin-right: 0;
    margin-bottom: 5.333vw;
  }
}
.p-lang-subnavi ul .card:last-child {
  margin-right: 0;
}
.p-lang-subnavi ul .card .wrap {
  width: 100%;
  height: 100%;
  display: block;
}
.p-lang-subnavi ul .card .wrap:hover {
  opacity: 0.6;
}
.p-lang-subnavi ul .card .icon {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-subnavi ul .card .icon {
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-subnavi ul .card .icon {
    margin-bottom: 4vw;
  }
}
.p-lang-subnavi ul .card .icon img {
  width: auto;
  height: 35px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-subnavi ul .card .icon img {
    height: 2.734vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-subnavi ul .card .icon img {
    height: 9.333vw;
  }
}
.p-lang-subnavi ul .card h4 {
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-subnavi ul .card h4 {
    font-size: 1.719vw;
    margin-bottom: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-subnavi ul .card h4 {
    font-size: 5.333vw;
    margin-bottom: 2.667vw;
  }
}
.p-lang-subnavi ul .card p {
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-subnavi ul .card p {
    font-size: 1.172vw;
    margin-bottom: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-subnavi ul .card p {
    font-size: 3.733vw;
    margin-bottom: 2.667vw;
  }
}
.p-lang-subnavi ul .card .links {
  width: auto;
  margin: 0 auto;
  display: inline-block;
}
.p-lang-subnavi ul .card .links li {
  line-height: 1.3;
  text-align: left;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-subnavi ul .card .links li {
    margin-bottom: 0.391vw;
  }
}
.p-lang-subnavi ul .card .links li:last-child {
  margin-bottom: 0;
}
.p-lang-subnavi ul .card .links li a {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-subnavi ul .card .links li a {
    font-size: 1.094vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-lang-subnavi ul .card .links li a {
    font-size: 4.267vw;
  }
}
.p-lang-subnavi ul .card .links li a:hover {
  text-decoration: underline;
}
.p-lang-subnavi ul .card .links li a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 5px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-lang-subnavi ul .card .links li a:after {
    border-width: 0.469vw 0 0.469vw 0.391vw;
    right: -1.172vw;
  }
}

/*----------------------------------------
	メインビジュアル
----------------------------------------*/
.p-main-visual {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-main-visual {
    display: none;
  }
}
.p-main-visual__slider li img {
  width: 100%;
  height: auto;
}
.p-main-visual .bx-controls {
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-main-visual .bx-controls {
    bottom: 2.344vw;
  }
}

/*----------------------------------------
	お知らせエリア（共通）
----------------------------------------*/
.p-news-area {
  margin-bottom: 100px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-news-area {
    margin-bottom: 7.813vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-area {
    padding-top: 21.3333vw;
    margin-bottom: 8vw;
    position: relative;
    width: 100%;
  }
}
.p-news-area__wrapper {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .p-news-area__wrapper {
    padding-top: 5.3333vw;
    display: block;
    border-top: 1px solid #DADCDC;
  }
}
.p-news-area__wrapper li {
  width: 560px;
  /* SP時：２列目のお知らせ一覧を非表示に */
  /* SP時：h3をタブ化 */
  /* SP時：記事表示数制限 */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-news-area__wrapper li {
    width: 43.75vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-area__wrapper li {
    width: 100%;
  }
}
.p-news-area__wrapper li:nth-child(odd) {
  margin-right: 80px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-news-area__wrapper li:nth-child(odd) {
    margin-right: 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-area__wrapper li:nth-child(odd) {
    margin-right: 0;
    /* SP時：h3をタブ化 */
  }
  .p-news-area__wrapper li:nth-child(odd) h3 {
    left: 2.6666vw;
    padding-top: 5.3333vw;
  }
  .p-news-area__wrapper li:nth-child(odd) h3.is_select {
    padding-top: 8vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-area__wrapper li:nth-child(even) {
    /* SP時：h3をタブ化 */
  }
  .p-news-area__wrapper li:nth-child(even) h3 {
    right: 2.6666vw;
    padding-top: 2.6666vw;
  }
  .p-news-area__wrapper li:nth-child(even) h3.is_select {
    padding-top: 5.3333vw;
  }
  .p-news-area__wrapper li:nth-child(even) .c-news-list {
    display: none;
  }
}
.p-news-area__wrapper li h3 {
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .p-news-area__wrapper li h3 {
    color: #fff;
    font-size: 4.2666vw;
    line-height: 1.4;
    width: calc(50% - 4vw);
    margin-bottom: 0;
    position: absolute;
    top: 0;
    height: 21.3333vw;
    background-color: #014EA2;
    box-sizing: border-box;
    transform: translateY(-2.6666vw);
    cursor: pointer;
    pointer-events: auto;
    /* セレクト時 */
  }
  .p-news-area__wrapper li h3 .en {
    color: #fff;
    font-size: 2.6666vw;
    margin-top: 1.3333vw;
  }
  .p-news-area__wrapper li h3.is_select {
    color: #333;
    height: 26.6666vw;
    background-color: #fff;
    border: 1px solid #DADCDC;
    border-bottom-color: #fff;
    top: -5.3333vw;
    transform: translateY(1px);
  }
  .p-news-area__wrapper li h3.is_select .en {
    color: #014EA2;
  }
}
.p-news-area__wrapper li h3 br.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-news-area__wrapper li h3 br.sp {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-area__wrapper li .c-news-list dl dt {
    display: none;
  }
  .p-news-area__wrapper li .c-news-list dl dt:nth-of-type(1), .p-news-area__wrapper li .c-news-list dl dt:nth-of-type(2), .p-news-area__wrapper li .c-news-list dl dt:nth-of-type(3) {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-area__wrapper li .c-news-list dl dd {
    display: none;
  }
  .p-news-area__wrapper li .c-news-list dl dd:nth-of-type(1), .p-news-area__wrapper li .c-news-list dl dd:nth-of-type(2), .p-news-area__wrapper li .c-news-list dl dd:nth-of-type(3) {
    display: block;
  }
}

/*----------------------------------------
	ニュース 詳細
----------------------------------------*/
.p-news-detail h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
  padding-bottom: 10px;
  margin: 0 auto 10px;
  border-bottom: 2px solid #DADCDC;
  position: relative;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-news-detail h4 {
    font-size: 1.406vw;
    padding-bottom: 0.781vw;
    margin-bottom: 1.5625vw;
    border-width: 0.156vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-detail h4 {
    font-size: 4.267vw;
    padding-bottom: 1.333vw;
    margin-bottom: 5.333vw;
    border-width: 0.533vw;
  }
}
.p-news-detail h4:before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #004EA2;
  border-radius: 3px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-news-detail h4:before {
    width: 3.906vw;
    height: 0.156vw;
    border-radius: 0.234vw;
    bottom: -0.156vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-detail h4:before {
    width: 13.333vw;
    height: 0.533vw;
    border-radius: 0.8vw;
    bottom: -0.533vw;
  }
}
.p-news-detail .post-date {
  color: #666;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-news-detail .post-date {
    font-size: 1.172vw;
    margin-bottom: 2.344vw;
  }
}
.p-news-detail p {
  color: #666;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-news-detail p {
    font-size: 1.17vw;
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-detail p {
    font-size: 3.733vw;
    margin-bottom: 4vw;
  }
}
.p-news-detail .back-btn {
  margin-top: 60px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-news-detail .back-btn {
    margin-top: 4.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-detail .back-btn {
    margin-top: 10.667vw;
  }
}
.p-news-detail .back-btn a {
  line-height: 56px;
  text-align: center;
  text-decoration: none;
  width: 330px;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid #004EA2;
  border-radius: 5px;
  display: block;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-news-detail .back-btn a {
    line-height: 4.688vw;
    width: 25.781vw;
    border-radius: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-detail .back-btn a {
    line-height: 13.3333vw;
    width: 100%;
  }
}
.p-news-detail .back-btn a:hover {
  opacity: 0.8;
}
.p-news-detail .back-btn a span {
  color: #004EA2;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-news-detail .back-btn a span {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-news-detail .back-btn a span {
    font-size: 3.7333vw;
  }
}

/*----------------------------------------
	下層 バナーエリア
----------------------------------------*/
.p-page-bnr-area {
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 80px;
  /* ４分割バナー */
  /* ハーフバナー */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-bnr-area {
    width: 93.75vw;
    margin-bottom: 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-bnr-area {
    width: 100%;
    margin-bottom: 10.6666vw;
  }
}
.p-page-bnr-area__four {
  display: flex;
  flex-wrap: wrap;
  /*
  @include sp{
  	padding: 0 2.6666vw;
  	display: block;
  }//sp
  */
}
.p-page-bnr-area__four li {
  margin: 0 8px 8px 0;
  border-radius: 3px;
  overflow: hidden;
  width: 294px;
  /*
  @include sp{
  	margin-right: 0;
  	margin-bottom: 2.6666vw;
  }//sp
  */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-bnr-area__four li {
    width: 22.969vw;
    margin: 0 0.625vw 0.625vw 0;
    border-radius: 0.234vw;
  }
  .p-page-bnr-area__four li img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-bnr-area__four li {
    width: calc(50% - 1.3333vw);
    margin: 0 2.6666vw 2.6666vw 0;
  }
}
.p-page-bnr-area__four li:nth-child(4n) {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .p-page-bnr-area__four li:nth-child(4n) {
    margin-right: 2.6666vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-bnr-area__four li:nth-child(even) {
    margin-right: 0;
  }
}
.p-page-bnr-area__four li a {
  display: block;
}
.p-page-bnr-area__four li a:hover {
  opacity: 0.6;
}
.p-page-bnr-area__four li a img {
  width: 100%;
  height: auto;
}
.p-page-bnr-area__half {
  display: flex;
  flex-wrap: wrap;
}
.p-page-bnr-area__half li {
  width: calc(50% - 4px);
  margin: 0 8px 8px 0;
  background-color: #000;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-bnr-area__half li {
    width: calc(50% - 0.313vw);
    margin: 0 0.625vw 0.625vw 0;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-bnr-area__half li {
    width: 100%;
    margin: 0 0 2.6666vw 0;
  }
}
.p-page-bnr-area__half li:nth-child(even) {
  margin-right: 0;
}
.p-page-bnr-area__half li a:hover {
  opacity: 1;
}
.p-page-bnr-area__half li a:hover .bg img {
  transform: scale(1.1);
}
.p-page-bnr-area__half li a .bg {
  opacity: 0.6;
}
.p-page-bnr-area__half li a .bg img {
  transition: all 0.6s ease;
  width: 100%;
  height: auto;
}
.p-page-bnr-area__half li a dl {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-page-bnr-area__half li a dl dt {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-bnr-area__half li a dl dt {
    font-size: 1.875vw;
    margin-bottom: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-bnr-area__half li a dl dt {
    font-size: 4.2666vw;
    margin-bottom: 1.3333vw;
  }
}
.p-page-bnr-area__half li a dl dd {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Overpass", sans-serif;
  font-weight: 400;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-bnr-area__half li a dl dd {
    font-size: 1.094vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-bnr-area__half li a dl dd {
    font-size: 2.9333vw;
  }
}

/*----------------------------------------
	路線図
----------------------------------------*/
.p-page-faq {
  padding: 80px 0;
  /* 検索 */
  /* セレクター */
  /* 一覧 */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq {
    padding: 6.25vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq {
    padding: 0;
    border-top: 1px solid #dadada;
  }
}
.p-page-faq .faq_search {
  width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background-color: #fff;
  box-sizing: border-box;
  margin-bottom: 60px;
  /* position: fixed;
  display: none; */
  z-index: 102;
  left: 0;
  right: 0;
  top: 50%;
  /* transform: translateY(-50%); */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq .faq_search {
    width: 93.75vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq .faq_search {
    width: 100%;
    border-bottom: none;
    margin: 10.43vw auto;
  }
}
.p-page-faq .faq_search.active {
  /* display: block; */
  display: none;
}
.p-page-faq .faq_search .conditions {
  display: table;
  width: 100%;
}
.p-page-faq .faq_search .conditions > div {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .p-page-faq .faq_search .conditions > div {
    width: 100%;
    display: block;
  }
}
.p-page-faq .faq_search .conditions .condition_sel ul li {
  display: inline-block;
  margin-right: 15px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq .faq_search .conditions .condition_sel ul li {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq .faq_search .conditions .condition_sel ul li {
    font-size: 3.733vw;
  }
}
.p-page-faq .faq_search .conditions .condition_sel ul li input {
  margin-right: 3px;
}
@media only screen and (max-width: 767px) {
  .p-page-faq .faq_search .conditions .condition_input {
    margin-top: 1rem;
  }
}
.p-page-faq .faq_search .conditions .condition_input input {
  height: 40px;
  width: 70%;
  box-sizing: border-box;
  padding: 5px;
}
.p-page-faq .faq_search .conditions .condition_input button {
  border: none;
  background: #004ea2;
  height: 40px;
  width: 25%;
  color: #fff;
  font-weight: bold;
  vertical-align: top;
}
.p-page-faq .back_btn {
  background: #004ea2;
  text-decoration: none;
  padding: 13px;
  width: 25%;
  max-width: 150px;
  color: #fff;
  font-weight: bold;
  vertical-align: top;
  display: block;
  margin: 60px auto 0;
  text-align: center;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq .back_btn {
    margin-top: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq .back_btn {
    margin-top: 8vw;
  }
}
.p-page-faq__selector {
  width: 1200px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq__selector {
    width: 93.75vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq__selector {
    width: 100%;
    border-bottom: none;
    overflow-x: scroll;
  }
}
.p-page-faq__selector ul {
  width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq__selector ul {
    width: 89.063vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq__selector ul {
    width: 170.6666vw;
    padding: 0;
  }
}
.p-page-faq__selector ul li {
  text-align: center;
  width: 20%;
  padding: 15px 20px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq__selector ul li {
    padding: 1.172vw 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq__selector ul li {
    height: 16vw;
    padding: 0;
  }
}
.p-page-faq__selector ul li:hover p {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .p-page-faq__selector ul li:hover p {
    opacity: 1;
  }
}
.p-page-faq__selector ul li p {
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
  padding: 20px 15px;
  background-color: #004ea2;
  border-radius: 3px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq__selector ul li p {
    font-size: 1.719vw;
    padding: 1.563vw 1.172vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq__selector ul li p {
    font-size: 3.7333vw;
    width: 100%;
    height: 16vw;
    padding: 6.4vw 0 0;
    border-radius: 0;
  }
}
.p-page-faq__selector ul li.is_select {
  background-color: #fff;
}
.p-page-faq__selector ul li.is_select p {
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  background-color: transparent;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq__selector ul li.is_select p {
    font-size: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq__selector ul li.is_select p {
    font-size: 3.7333vw;
  }
}
.p-page-faq__wrapper {
  width: 1200px;
  padding: 40px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq__wrapper {
    width: 93.75vw;
    padding: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq__wrapper {
    width: auto;
    padding: 8vw 4vw;
  }
}
.p-page-faq__wrapper__content {
  position: relative;
  display: none;
}
.p-page-faq__wrapper__content:nth-of-type(1) {
  display: block;
}
.p-page-faq__wrapper__content dl dt {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  padding-left: 40px;
  margin-bottom: 20px;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq__wrapper__content dl dt {
    font-size: 1.875vw;
    padding-left: 3.125vw;
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq__wrapper__content dl dt {
    font-size: 4.8vw;
    line-height: 1.4;
    padding-left: 10.667vw;
    margin-bottom: 5.333vw;
  }
}
.p-page-faq__wrapper__content dl dt:before {
  content: "Q";
  color: #004EA2;
  font-size: 36px;
  font-size: 2.25rem;
  font-family: "Overpass", sans-serif;
  line-height: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq__wrapper__content dl dt:before {
    font-size: 2.813vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq__wrapper__content dl dt:before {
    font-size: 9.6vw;
  }
}
.p-page-faq__wrapper__content dl dd {
  color: #666;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  padding: 0 0 30px 40px;
  border-bottom: 1px solid #DADCDC;
  margin-bottom: 40px;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq__wrapper__content dl dd {
    font-size: 1.25vw;
    padding: 0 0 2.344vw 3.125vw;
    border-width: 0.078vw;
    margin-bottom: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq__wrapper__content dl dd {
    font-size: 3.733vw;
    padding: 0 0 5.333vw 10.667vw;
    margin-bottom: 8vw;
  }
}
.p-page-faq__wrapper__content dl dd:before {
  content: "A";
  color: #004EA2;
  font-size: 36px;
  font-size: 2.25rem;
  font-family: "Overpass", sans-serif;
  line-height: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq__wrapper__content dl dd:before {
    font-size: 2.813vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq__wrapper__content dl dd:before {
    font-size: 9.6vw;
  }
}
.p-page-faq .c-link-list {
  width: 100%;
  padding: 18px 31px;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #004EA2;
  border-radius: 3px;
  display: inline-block;
  transition: all 0.3s ease;
  box-sizing: border-box;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #004EA2;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0.5rem 0 1rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq .c-link-list {
    font-size: 1.406vw;
    padding: 1.3vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq .c-link-list {
    font-size: 3.7333vw;
    padding: 3.7vw 0;
  }
}
.p-page-faq .c-link-list option {
  color: #004EA2;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-faq .c-link-list option {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-faq .c-link-list option {
    font-size: 3.7333vw;
  }
}

/*----------------------------------------
	くらし インデックス
----------------------------------------*/
.p-page-life-index {
  /* セレクター */
  /* 一覧 */
}
.p-page-life-index__selector {
  margin: -100px 0 40px;
  border-bottom: 2px solid #DADCDC;
  position: relative;
  z-index: 5;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__selector {
    margin: -7.812vw 0 3.125vw;
    border-width: 0.156vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__selector {
    margin: 0 0 5.3333vw;
    border-bottom: none;
    overflow-x: scroll;
  }
}
.p-page-life-index__selector ul {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 0;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__selector ul {
    width: 93.75vw;
    padding: 3.125vw 3.125vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__selector ul {
    width: 224vw;
    padding: 0;
  }
}
.p-page-life-index__selector ul li {
  text-align: center;
  width: calc(16.6666666667% - 0.5px);
  height: 100px;
  box-sizing: border-box;
  transform: translateY(2px);
  position: relative;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__selector ul li {
    width: calc(16.6666666667% - 0.039vw);
    height: 7.813vw;
    transform: translateY(0.156vw);
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__selector ul li {
    height: 16vw;
    transform: translateY(0);
  }
}
.p-page-life-index__selector ul li:hover dl {
  opacity: 0.8;
}
.p-page-life-index__selector ul li.is_select {
  border: 2px solid #DADCDC;
  border-bottom: 2px solid #fff;
  transform: translateY(2px);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__selector ul li.is_select {
    border-width: 0.156vw;
    transform: translateY(0.156vw);
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__selector ul li.is_select {
    border: none;
    transform: translateY(0);
  }
}
.p-page-life-index__selector ul li.is_select dl {
  width: auto;
  height: auto;
  background-color: transparent;
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__selector ul li.is_select dl {
    height: 16vw;
  }
}
.p-page-life-index__selector ul li.is_select dl dt {
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  padding-top: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__selector ul li.is_select dl dt {
    font-size: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__selector ul li.is_select dl dt {
    font-size: 4.2666vw;
  }
}
.p-page-life-index__selector ul li.is_select dl dd.en {
  color: #004ea2;
}
.p-page-life-index__selector ul li dl {
  width: 125px;
  height: 65px;
  padding-top: 15px;
  background-color: #004ea2;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__selector ul li dl {
    width: 9.766vw;
    height: 5.078vw;
    padding-top: 1.172vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__selector ul li dl {
    font-size: 4.2666vw;
    width: 100%;
    height: 16vw;
    border-radius: 0;
  }
}
.p-page-life-index__selector ul li dl dt {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__selector ul li dl dt {
    font-size: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__selector ul li dl dt {
    font-size: 3.7333vw;
  }
}
.p-page-life-index__selector ul li dl dd.en {
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  margin-top: 5px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__selector ul li dl dd.en {
    font-size: 0.859vw;
    margin-top: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__selector ul li dl dd.en {
    font-size: 2.6666vw;
  }
}
.p-page-life-index__list {
  width: 1200px;
  margin: 0 auto 100px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__list {
    width: 93.75vw;
    margin: 0 auto 7.813vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__list {
    width: 100%;
    padding: 0 4vw;
    margin: 0 auto 13.3333vw;
    box-sizing: border-box;
  }
}
.p-page-life-index__list .list-inner {
  overflow: hidden;
  transition: all 0.5s ease;
}
.p-page-life-index__list ul {
  display: flex;
  flex-wrap: wrap;
}
.p-page-life-index__list ul .item {
  width: 270px;
  margin: 0 15px 60px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__list ul .item {
    width: 21.094vw;
    margin: 0 1.171875vw 4.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__list ul .item {
    width: calc(50% - 3vw);
    margin: 0 1.5vw 10.6666vw;
  }
}
.p-page-life-index__list ul .item a {
  color: #666;
  text-decoration: none;
  display: block;
}
.p-page-life-index__list ul .item a:hover {
  opacity: 0.6;
}
.p-page-life-index__list ul .item a figure {
  margin-bottom: 15px;
  border-radius: 3px;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__list ul .item a figure {
    margin-bottom: 1.172vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__list ul .item a figure {
    margin-bottom: 2.6666vw;
    border-radius: 2px;
  }
}
.p-page-life-index__list ul .item a figure img {
  width: 100%;
  height: auto;
}
.p-page-life-index__list ul .item a h4 {
  color: #333;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__list ul .item a h4 {
    font-size: 1.563vw;
    margin-bottom: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__list ul .item a h4 {
    font-size: 4.2666vw;
    margin-bottom: 1.3333vw;
  }
}
.p-page-life-index__list ul .item a p {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__list ul .item a p {
    font-size: 1.094vw;
    margin-bottom: 2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__list ul .item a p {
    font-size: 3.2vw;
    margin-bottom: 4vw;
  }
}
.p-page-life-index__list ul .item .meta {
  display: flex;
  flex-wrap: wrap;
}
.p-page-life-index__list ul .item .meta li {
  color: #004EA2;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 25px;
  padding: 0 8px;
  border: 1px solid #004EA2;
  border-radius: 3px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-life-index__list ul .item .meta li {
    font-size: 0.859vw;
    line-height: 1.953vw;
    padding: 0 0.625vw;
    border-width: 0.078vw;
    border-radius: 0.234vw;
    margin-right: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-life-index__list ul .item .meta li {
    font-size: 2.9333vw;
    line-height: 2;
    padding: 0 2.1333vw;
    margin-right: 2.6666vw;
  }
}
.p-page-life-index__list ul .item .meta li:hover {
  color: #fff;
  background-color: #004EA2;
}
.p-page-life-index__list .c-viewmore-btn.accordion-btn a span:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 2px;
  height: 15px;
  background: #fff;
  transition: all 0.3s ease;
}
.p-page-life-index__list .c-viewmore-btn.accordion-btn a span:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background: #fff;
  border: none;
}
.p-page-life-index__list .c-viewmore-btn.accordion-btn.open a span:before {
  transform: translateY(-50%) rotate(90deg);
}

/*----------------------------------------
	下層 おすすめ情報
----------------------------------------*/
.p-page-recommend {
  width: 100%;
  min-width: 1010px;
  background-color: #EFF4F8;
  padding: 100px 0 140px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-recommend {
    min-width: 78.906vw;
    padding: 7.813vw 0 10.938vw;
    margin-bottom: 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-recommend {
    min-width: 100%;
    padding: 10.6666vw 0 16vw;
    margin-bottom: 10.6666vw;
  }
}
.p-page-recommend__wrapper {
  position: relative;
  left: 50%;
  width: 3000px;
  margin-left: -1500px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-recommend__wrapper {
    width: 234.375vw;
    margin-left: -117.187vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-recommend__wrapper {
    width: 200vw;
    margin-left: -100vw;
  }
}
.p-page-recommend__wrapper .bx-wrapper {
  margin: 0 auto;
}
.p-page-recommend__slider {
  overflow: hidden;
}
.p-page-recommend__slider li {
  padding: 0 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-recommend__slider li {
    padding: 0 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-recommend__slider li {
    padding: 0 1.3333vw;
  }
}
.p-page-recommend__slider li img {
  width: 100%;
  height: auto;
}
.p-page-recommend .bx-controls {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-recommend .bx-controls {
    bottom: -1.172vw;
  }
}

/*----------------------------------------
	路線図
----------------------------------------*/
.p-page-routemap {
  padding: 80px 0;
  /* 停車駅のご案内 */
  /* セレクター */
  /* 一覧 */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap {
    padding: 6.25vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap {
    padding: 0;
    border-top: 1px solid #dadada;
  }
}
.p-page-routemap__guide {
  width: 1200px;
  background-color: #fff;
  margin: 0 auto 40px;
  padding: 30px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__guide {
    width: 93.75vw;
    margin: 0 auto 3.125vw;
    padding: 2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__guide {
    width: 100%;
    margin: 0;
    padding: 4vw 4vw 9.333vw;
    border-bottom: 1px solid #DADCDC;
  }
}
.p-page-routemap__guide .heading {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__guide .heading {
    margin-bottom: 2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__guide .heading {
    margin-bottom: 4vw;
    display: block;
  }
}
.p-page-routemap__guide .heading h3 {
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  margin-right: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__guide .heading h3 {
    font-size: 1.875vw;
    margin-right: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__guide .heading h3 {
    font-size: 4.267vw;
    margin: 0 0 5.333vw;
  }
}
.p-page-routemap__guide figure {
  margin-bottom: 20px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__guide figure {
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__guide figure {
    margin-bottom: 2.667vw;
  }
}
.p-page-routemap__guide figure img {
  width: 100%;
  height: auto;
}
.p-page-routemap__guide .c-link-btn {
  width: 330px;
  margin: 0 auto;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__guide .c-link-btn {
    width: 25.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__guide .c-link-btn {
    width: 100%;
  }
}
.p-page-routemap__selector {
  width: 1200px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__selector {
    width: 93.75vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__selector {
    width: 100%;
    border-bottom: none;
    overflow-x: scroll;
  }
}
.p-page-routemap__selector ul {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__selector ul {
    width: 83.594vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__selector ul {
    width: 170.6666vw;
    padding: 0;
  }
}
.p-page-routemap__selector ul li {
  text-align: center;
  width: 20%;
  height: 100px;
  box-sizing: border-box;
  transform: translateY(2px);
  position: relative;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__selector ul li {
    height: 7.1825vw;
    transform: translateY(0.156vw);
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__selector ul li {
    height: 16vw;
    transform: translateY(0);
  }
}
.p-page-routemap__selector ul li:hover dl {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__selector ul li:hover dl {
    opacity: 1;
  }
}
.p-page-routemap__selector ul li.is_select {
  padding: 0;
  background-color: #fff;
  transform: translateY(2px);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__selector ul li.is_select {
    transform: translateY(0.156vw);
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__selector ul li.is_select {
    border: none;
    transform: translateY(0);
  }
}
.p-page-routemap__selector ul li.is_select dl {
  width: 100%;
  padding-top: 10px;
  background-color: transparent;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__selector ul li.is_select dl {
    padding-top: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__selector ul li.is_select dl {
    padding-top: 4vw;
    height: 16vw;
  }
}
.p-page-routemap__selector ul li.is_select dl dt {
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  padding-top: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__selector ul li.is_select dl dt {
    font-size: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__selector ul li.is_select dl dt {
    font-size: 3.7333vw;
  }
}
.p-page-routemap__selector ul li.is_select dl dd.en {
  color: #004ea2;
  margin-top: 8px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__selector ul li.is_select dl dd.en {
    margin-top: 0.625vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__selector ul li.is_select dl dd.en {
    font-size: 2.6666vw;
    margin-top: 3px;
  }
}
.p-page-routemap__selector ul li dl {
  width: calc(100% - 40px);
  height: 65px;
  padding-top: 15px;
  background-color: #004ea2;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__selector ul li dl {
    width: calc(100% - 4.688vw);
    height: 5.078vw;
    padding-top: 1.172vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__selector ul li dl {
    font-size: 4.2666vw;
    width: 100%;
    height: 16vw;
    padding-top: 4vw;
    border-radius: 0;
  }
}
.p-page-routemap__selector ul li dl dt {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__selector ul li dl dt {
    font-size: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__selector ul li dl dt {
    font-size: 3.7333vw;
  }
}
.p-page-routemap__selector ul li dl dd.en {
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  margin-top: 3px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__selector ul li dl dd.en {
    font-size: 0.859vw;
    margin-top: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__selector ul li dl dd.en {
    font-size: 2.6666vw;
  }
}
.p-page-routemap__content {
  width: 1200px;
  padding: 25px 95px 55px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content {
    width: 93.75vw;
    padding: 1.953vw 7.422vw 4.297vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content {
    width: auto;
    padding: 4vw 0 0;
  }
}
.p-page-routemap__content__type {
  margin-bottom: 30px;
  display: flex;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__type {
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__type {
    margin-bottom: 5.33vw;
  }
}
.p-page-routemap__content__type li {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-right: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__type li {
    font-size: 1.406vw;
    margin-right: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__type li {
    font-size: 4.266vw;
    margin-right: 5.33vw;
  }
}
.p-page-routemap__content__type li:last-child {
  margin-right: 0;
}
.p-page-routemap__content__type li:before {
  content: "";
  width: 30px;
  height: 8px;
  margin-right: 10px;
  background-color: #DADCDC;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__type li:before {
    width: 2.34vw;
    height: 0.625vw;
    margin-right: 0.781vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__type li:before {
    width: 10.66vw;
    height: 2.4vw;
    margin-right: 1.3333vw;
    border-radius: 8vw;
  }
}
.p-page-routemap__content__type li:nth-child(1):before {
  background-color: #E85577;
}
.p-page-routemap__content__type li:nth-child(2):before {
  background-color: #85D685;
}
.p-page-routemap__content__type.mb0 {
  margin-bottom: 0;
}
.p-page-routemap__content__path {
  padding: 30px 40px;
  background-color: #F6F7F8;
  position: relative;
  display: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path {
    padding: 2.34vw 3.12vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path {
    padding: 5.33vw 4vw;
  }
}
.p-page-routemap__content__path:nth-of-type(1) {
  display: block;
}
.p-page-routemap__content__path ul {
  position: relative;
}
.p-page-routemap__content__path ul .station {
  color: #fff;
  font-size: 0px;
  font-size: 0rem;
  padding: 15px;
  width: 100%;
  margin: 0 0 20px;
  border: 2px solid #E85577;
  background-color: #E85577;
  position: relative;
  z-index: 5;
  border-radius: 3px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station {
    padding: 1.172vw;
    margin: 0 0 1.56vw;
    border-width: 0.156vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station {
    margin: 0 0 4vw;
    padding: 2.6666vw;
    border-width: 0.5333vw;
    border-radius: 0.8vw;
  }
}
.p-page-routemap__content__path ul .station .label {
  padding: 6px 6px 5px 6px;
  margin-right: 15px;
  border: 2px solid #fff;
  background-color: #fff;
  border-radius: 3px;
  vertical-align: middle;
  display: inline-block;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .label {
    padding: 0.469vw 0.469vw 0.391vw 0.469vw;
    margin-right: 1.172vw;
    border-width: 0.156vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .label {
    padding: 0.8vw;
    margin-right: 2.6677vw;
    border-width: 0.5333vw;
    border-radius: 0.8vw;
  }
}
.p-page-routemap__content__path ul .station .label .mark {
  color: #F5A100;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  padding: 0 4px;
  margin-right: 5px;
  border: 2px solid #F5A100;
  border-radius: 3px;
  display: inline-block;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .label .mark {
    font-size: 1.406vw;
    padding: 0 0.313vw;
    margin-right: 0.391vw;
    border-width: 0.156vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .label .mark {
    font-size: 3.7333vw;
    padding: 0 1.067vw;
    margin-right: 0.533vw;
    border-width: 0.5333vw;
    border-radius: 0.8vw;
  }
}
.p-page-routemap__content__path ul .station .label .num {
  color: #004EA2;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .label .num {
    font-size: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .label .num {
    font-size: 3.7333vw;
  }
}
.p-page-routemap__content__path ul .station h3 {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  width: 220px;
  vertical-align: middle;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station h3 {
    font-size: 2.031vw;
    width: 17.188vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station h3 {
    font-size: 4.2666vw;
    width: auto;
  }
}
.p-page-routemap__content__path ul .station h3 span {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station h3 span {
    font-size: 1.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station h3 span {
    font-size: 2.4vw;
  }
}
.p-page-routemap__content__path ul .station .transfer {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 40px;
  height: 40px;
  border-left: 2px solid #DADCDC;
  padding: 0 0 0 20px;
  vertical-align: middle;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .transfer {
    font-size: 1.094vw;
    line-height: 3.125vw;
    height: 3.125vw;
    border-width: 0.156vw;
    padding: 0 0 0 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .transfer {
    font-size: 3.2vw;
    line-height: 1.4;
    height: auto;
    margin-top: 2.6666vw;
    padding: 2.6666vw 0 0;
    border-left: none;
    border-top: 1px dashed #dadada;
    vertical-align: bottom;
    display: block;
  }
}
.p-page-routemap__content__path ul .station .transfer .icon {
  margin-right: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .transfer .icon {
    margin-right: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .transfer .icon {
    margin-right: 1.3333vw;
  }
}
.p-page-routemap__content__path ul .station .transfer .icon img {
  width: auto;
  height: 20px;
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .transfer .icon img {
    height: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .transfer .icon img {
    height: 4vw;
  }
}
.p-page-routemap__content__path ul .station .transfer .txt {
  margin-right: 10px;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .transfer .txt {
    margin-right: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .transfer .txt {
    margin-right: 1.3333vw;
  }
}
.p-page-routemap__content__path ul .station .transfer a {
  color: #fff;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  padding: 0 25px 0 15px;
  margin-right: 5px;
  background-color: #004EA2;
  border-radius: 5px;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .transfer a {
    line-height: 3.125vw;
    padding: 0 1.953vw 0 1.172vw;
    margin-right: 0.391vw;
    border-radius: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .transfer a {
    line-height: 1;
    margin-right: 1.3333vw;
    border-radius: 0.8vw;
    padding: 1.6vw 4.8vw 1.6vw 2.133vw;
  }
}
.p-page-routemap__content__path ul .station .transfer a:hover {
  opacity: 0.8;
}
.p-page-routemap__content__path ul .station .transfer a span {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .transfer a span {
    font-size: 1.094vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .transfer a span {
    font-size: 3.2vw;
  }
}
.p-page-routemap__content__path ul .station .transfer a span:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 5px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .transfer a span:after {
    border-width: 0.469vw 0 0.469vw 0.391vw;
    right: -0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .transfer a span:after {
    border-width: 0.8vw 0 0.8vw 0.667vw;
    right: -1.333vw;
  }
}
.p-page-routemap__content__path ul .station .links {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .links {
    right: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .links {
    top: 1.3333vw;
    right: 2.667vw;
    transform: translateY(0);
  }
}
.p-page-routemap__content__path ul .station .links li {
  margin-left: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .links li {
    margin-left: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .links li {
    margin-left: 1.333vw;
  }
}
.p-page-routemap__content__path ul .station .links li a {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 3px;
  background-color: #004EA2;
  box-sizing: border-box;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .links li a {
    font-size: 1.406vw;
    padding: 0.938vw 1.563vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .links li a {
    font-size: 2.667vw;
    text-align: center;
    min-width: 8vw;
    padding: 1.333vw;
  }
}
.p-page-routemap__content__path ul .station .links li a:hover {
  opacity: 0.6;
}
.p-page-routemap__content__path ul .station .links li a .icon {
  padding-right: 5px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .links li a .icon {
    padding-right: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .links li a .icon {
    margin: 0 0 1.333vw;
    padding-right: 0;
    display: block;
  }
}
.p-page-routemap__content__path ul .station .links li a .icon img {
  width: auto;
  height: 18px;
  vertical-align: top;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station .links li a .icon img {
    height: 1.406vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station .links li a .icon img {
    height: 3.2vw;
  }
}
_:-ms-fullscreen, :root .p-page-routemap__content__path ul .station .links li a .icon img {
  max-width: 21px;
}

.p-page-routemap__content__path ul .station.step1 {
  background-color: #85D685;
  border-color: #85D685;
  width: calc(100% - 60px);
  margin: 0 0 20px 60px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station.step1 {
    width: calc(100% - 4.68vw);
    margin: 0 0 1.56vw 4.68vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station.step1 {
    width: calc(100% - 8vw);
    margin: 0 0 4vw 8vw;
  }
}
.p-page-routemap__content__path ul .station.step2 {
  color: #666;
  background-color: #fff;
  border-color: #DADCDC;
  width: calc(100% - 120px);
  margin: 0 0 20px 120px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station.step2 {
    width: calc(100% - 9.375vw);
    margin: 0 0 1.563vw 9.375vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station.step2 {
    width: calc(100% - 16vw);
    margin: 0 0 4vw 16vw;
  }
}
.p-page-routemap__content__path ul .station.step2 .label {
  border-color: #DADCDC;
}
.p-page-routemap__content__path ul .station.step3 {
  color: #666;
  background-color: #fff;
  border-color: #DADCDC;
  margin: 0 0 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path ul .station.step3 {
    margin: 0 0 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path ul .station.step3 {
    margin: 0 0 4vw;
  }
}
.p-page-routemap__content__path ul .station.step3 .label {
  border-color: #DADCDC;
}
.p-page-routemap__content__path__lines {
  width: 10px;
  height: calc(100% - 130px);
  background-color: #DADCDC;
  position: absolute;
  top: 80px;
  left: 70px;
  display: block;
  z-index: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path__lines {
    width: 0.781vw;
    height: calc(100% - 11.719vw);
    top: 6.25vw;
    left: 14.84vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path__lines {
    width: 2.66vw;
    height: calc(100% - 25.333vw);
    top: 15vw;
    left: 6.66vw;
  }
}
.p-page-routemap__content__path__lines.full {
  left: 190px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path__lines.full {
    left: 14.84vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path__lines.full {
    left: 22.66vw;
  }
}
.p-page-routemap__content__path__lines.full:before, .p-page-routemap__content__path__lines.full:after {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  display: none;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path__lines.full:before, .p-page-routemap__content__path__lines.full:after {
    width: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path__lines.full:before, .p-page-routemap__content__path__lines.full:after {
    width: 2.66vw;
  }
}
.p-page-routemap__content__path__lines.full:before {
  background-color: #85D685;
  left: -60px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path__lines.full:before {
    left: -4.68vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path__lines.full:before {
    left: -8vw;
  }
}
.p-page-routemap__content__path__lines.full:after {
  background-color: #E85577;
  left: -120px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-routemap__content__path__lines.full:after {
    left: -9.37vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-routemap__content__path__lines.full:after {
    left: -16vw;
  }
}

/*----------------------------------------
	第2階層 タイトル部分
----------------------------------------*/
.p-page-title-lv2 {
  margin-bottom: 80px;
  position: relative;
  /* くらし */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2 {
    margin-bottom: 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2 {
    margin-bottom: 5.3333vw;
  }
}
.p-page-title-lv2.life {
  margin-bottom: 0;
}
.p-page-title-lv2__visual {
  width: 100%;
  height: 500px;
  background-color: #000;
  position: relative;
  overflow: hidden;
  /* くらし */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__visual {
    height: 39.063vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__visual {
    height: 42.6666vw;
  }
}
.p-page-title-lv2__visual.life {
  height: 340px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__visual.life {
    height: 26.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__visual.life {
    height: 42.6666vw;
  }
}
.p-page-title-lv2__visual img {
  width: 100%;
  height: auto;
  opacity: 0.6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__visual img {
    width: auto;
    height: 100%;
  }
}
.p-page-title-lv2__visual:before, .p-page-title-lv2__visual:after {
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
}
.p-page-title-lv2__visual:before {
  width: 100px;
  height: 80px;
  background-image: url(../images/common/deco_red.svg);
  background-size: 100px 80px;
  bottom: 0;
  left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__visual:before {
    width: 7.813vw;
    height: 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__visual:before {
    width: 13.3333vw;
    height: 10.6666vw;
    background-size: 13.3333vw 10.6666vw;
  }
}
.p-page-title-lv2__visual:after {
  content: "";
  background-image: url(../images/common/deco_yellow.svg);
  background-size: 125px 100px;
  width: 125px;
  height: 100px;
  top: -1px;
  right: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__visual:after {
    background-size: 9.766vw 7.813vw;
    width: 9.766vw;
    height: 7.813vw;
    top: -0.078vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__visual:after {
    width: 16.6666vw;
    height: 13.3333vw;
    background-size: 16.6666vw 13.3333vw;
  }
}
.p-page-title-lv2__heading {
  color: #fff;
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 140px;
  left: 0;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
  /* くらし */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__heading {
    font-size: 3.438vw;
    top: 10.938vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__heading {
    font-size: 8.5333vw;
    top: 12.3333vw;
  }
}
.p-page-title-lv2__heading .en {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Overpass", sans-serif;
  font-weight: 800;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__heading .en {
    font-size: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__heading .en {
    font-size: 3.7333vw;
  }
}
.p-page-title-lv2__heading.life {
  top: 80px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__heading.life {
    top: 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__heading.life {
    top: 12.3333vw;
  }
}
.p-page-title-lv2__navi {
  width: 1200px;
  margin: -140px auto 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__navi {
    width: 93.75vw;
    margin: -10.938vw auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__navi {
    width: 100%;
    margin: 0 auto;
  }
}
.p-page-title-lv2__navi ul {
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__navi ul {
    padding: 2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__navi ul {
    padding: 2.6666vw;
    justify-content: flex-start;
  }
}
.p-page-title-lv2__navi ul li {
  width: 360px;
  height: 240px;
  margin: 0 30px 30px 0;
  background-color: #004EA2;
  border-radius: 3px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__navi ul li {
    width: 28.125vw;
    height: 18.75vw;
    margin: 0 2.344vw 2.344vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__navi ul li {
    width: calc(50% - 1.3333vw);
    height: 48vw;
    margin: 0 2.6666vw 2.6666vw 0;
  }
}
.p-page-title-lv2__navi ul li:nth-child(3n) {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__navi ul li:nth-child(3n) {
    margin-right: 2.6666vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__navi ul li:nth-child(even) {
    margin-right: 0;
  }
}
.p-page-title-lv2__navi ul li a {
  height: 100%;
  display: block;
  position: relative;
}
.p-page-title-lv2__navi ul li a:hover {
  opacity: 0.8;
}
.p-page-title-lv2__navi ul li a dl {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__navi ul li a dl {
    padding: 4vw;
    top: 2vw;
    transform: translate(-50%, 0);
  }
}
.p-page-title-lv2__navi ul li a dl dt {
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__navi ul li a dl dt {
    margin-bottom: 1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__navi ul li a dl dt {
    margin-bottom: 2.6666vw;
  }
}
.p-page-title-lv2__navi ul li a dl dt .icon {
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__navi ul li a dl dt .icon {
    margin-bottom: 1.172vw;
  }
}
.p-page-title-lv2__navi ul li a dl dt .icon img {
  width: auto;
  height: 45px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__navi ul li a dl dt .icon img {
    height: 3.516vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__navi ul li a dl dt .icon img {
    height: 9.3333vw;
  }
}
.p-page-title-lv2__navi ul li a dl dt span {
  color: #004EA2;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 45px;
  width: 320px;
  background-color: #fff;
  border-radius: 3px;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__navi ul li a dl dt span {
    font-size: 1.875vw;
    line-height: 3.516vw;
    width: 25vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__navi ul li a dl dt span {
    font-size: 3.4666vw;
    line-height: 2;
    width: 38vw;
  }
}
.p-page-title-lv2__navi ul li a dl dd {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__navi ul li a dl dd {
    font-size: 1.406vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__navi ul li a dl dd {
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .p-page-title-lv2__navi ul li a dl dd br {
    display: none;
  }
}
.p-page-title-lv2__bnr {
  width: 1140px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv2__bnr {
    width: 89.063vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv2__bnr {
    width: 100%;
    padding: 0 4vw;
    box-sizing: border-box;
  }
}
.p-page-title-lv2__bnr a:hover {
  opacity: 0.6;
}
.p-page-title-lv2__bnr a img {
  width: 100%;
  height: auto;
}

/*----------------------------------------
	第3階層 タイトル部分
----------------------------------------*/
.p-page-title-lv3 {
  text-align: center;
  padding: 60px 0 90px;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv3 {
    padding: 4.688vw 0 7.031vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv3 {
    padding: 8.6666vw 0 14vw;
  }
}
.p-page-title-lv3.mini {
  padding: 15px 0 35px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv3.mini {
    padding: 1.172vw 0 2.734vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv3.mini {
    padding: 4vw 0 9.333vw;
  }
}
.p-page-title-lv3__heading {
  font-size: 44px;
  font-size: 2.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv3__heading {
    font-size: 3.438vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv3__heading {
    font-size: 4.8vw;
  }
}
.p-page-title-lv3__heading:after {
  content: "";
  width: 60px;
  height: 6px;
  background-color: #004EA2;
  border-radius: 3px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv3__heading:after {
    width: 4.688vw;
    height: 0.469vw;
    border-radius: 0.234vw;
    bottom: -2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv3__heading:after {
    width: 10.6666vw;
    height: 1.0666vw;
    bottom: -5.3333vw;
  }
}
.p-page-title-lv3__heading.mini {
  font-size: 28px;
  font-size: 1.75rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv3__heading.mini {
    font-size: 2.188vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv3__heading.mini {
    font-size: 5.333vw;
  }
}
.p-page-title-lv3__heading.mini:after {
  bottom: -15px;
  height: 4px;
  border-radius: 2px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-title-lv3__heading.mini:after {
    height: 0.313vw;
    border-radius: 0.156vw;
    bottom: -1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-title-lv3__heading.mini:after {
    bottom: -4vw;
    height: 1.067vw;
    border-radius: 0.533vw;
  }
}

/*----------------------------------------
	電車／きっぷ・定期券
----------------------------------------*/
.p-page-train-ticket {
  display: flex;
  flex-wrap: wrap;
}
.p-page-train-ticket__desc {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-train-ticket__desc {
    font-size: 1.406vw;
    margin-bottom: 3.906vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-train-ticket__desc {
    font-size: 3.7333vw;
    margin-bottom: 8vw;
  }
}
.p-page-train-ticket__links {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .p-page-train-ticket__links {
    display: block;
  }
}
.p-page-train-ticket__links li {
  width: calc(50% - 10px);
  margin: 0 20px 20px 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-train-ticket__links li {
    width: calc(50% - 0.781vw);
    margin: 0 1.563vw 1.563vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-train-ticket__links li {
    width: 100%;
    margin: 0 0 2.6666vw 0;
  }
}
.p-page-train-ticket__links li:nth-child(even) {
  margin-right: 0;
}
.p-page-train-ticket__links li:last-child {
  margin-right: 0;
}
.p-page-train-ticket__detail {
  text-align: center;
  padding: 50px;
  margin-bottom: 40px;
  background-color: #F6F7F8;
  border-radius: 3px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-train-ticket__detail {
    padding: 3.906vw;
    margin-bottom: 3.125vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-train-ticket__detail {
    padding: 5.3333vw;
    margin-bottom: 8vw;
  }
}
.p-page-train-ticket__detail dt {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-train-ticket__detail dt {
    font-size: 1.875vw;
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-train-ticket__detail dt {
    font-size: 4.2666vw;
  }
}
.p-page-train-ticket__bnr {
  text-align: center;
  width: 1000px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-page-train-ticket__bnr {
    width: 78.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-page-train-ticket__bnr {
    width: 100%;
  }
}
.p-page-train-ticket__bnr a {
  display: block;
}
.p-page-train-ticket__bnr a img {
  width: 100%;
  height: auto;
}

/*----------------------------------------
	CMSコンポーネント 発売窓口
----------------------------------------*/
.p-sales-counter {
  margin: 0 auto 60px;
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-sales-counter {
    margin-bottom: 4.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-sales-counter {
    margin-bottom: 8vw;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .p-sales-counter dl {
    display: block;
    margin-bottom: 4.688vw;
  }
}
.p-sales-counter dl:nth-of-type(1) {
  width: 100px;
  margin-right: 40px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-sales-counter dl:nth-of-type(1) {
    width: 7.813vw;
    margin-right: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-sales-counter dl:nth-of-type(1) {
    width: 100%;
    margin-right: 0;
  }
}
.p-sales-counter dl:nth-of-type(2) {
  width: 160px;
  margin-right: 40px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-sales-counter dl:nth-of-type(2) {
    width: 12.5vw;
    margin-right: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-sales-counter dl:nth-of-type(2) {
    width: 100%;
    margin-right: 0;
  }
}
.p-sales-counter dl:nth-of-type(3) {
  width: 380px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-sales-counter dl:nth-of-type(3) {
    width: 29.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-sales-counter dl:nth-of-type(3) {
    width: 100%;
  }
}
.p-sales-counter dl dt {
  color: #666;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-sales-counter dl dt {
    font-size: 1.172vw;
    margin-bottom: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-sales-counter dl dt {
    font-size: 3.733vw;
    margin-bottom: 2.667vw;
  }
}
.p-sales-counter dl dd {
  color: #666;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-sales-counter dl dd {
    font-size: 1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-sales-counter dl dd {
    font-size: 3.733vw;
  }
}
.p-sales-counter dl dd ul {
  font-size: 0px;
  font-size: 0rem;
}
.p-sales-counter dl dd ul li {
  color: #666;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  background: #F6F7F8;
  padding: 10px;
  margin: 0 10px 10px 0;
  border-radius: 3px;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-sales-counter dl dd ul li {
    font-size: 1.016vw;
    padding: 0.781vw;
    margin: 0 0.781vw 0.781vw 0;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-sales-counter dl dd ul li {
    font-size: 3.2vw;
    padding: 2.667vw;
    margin: 0 2.667vw 2.667vw 0;
    border-radius: 0.8vw;
  }
}
.p-sales-counter dl dd ul li .icon {
  margin-right: 5px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-sales-counter dl dd ul li .icon {
    margin-right: 0.391vw;
  }
  .p-sales-counter dl dd ul li .icon img {
    width: 0.938vw;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .p-sales-counter dl dd ul li .icon {
    margin-right: 1.333vw;
  }
  .p-sales-counter dl dd ul li .icon img {
    width: 3.2vw;
    height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .p-search-site {
    padding: 0 4vw;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-search-site .search_condition_block {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .p-search-site .search_condition_block {
    width: 100%;
  }
}
.p-search-site .search_condition_block .c-input {
  margin-bottom: 10px;
}
.p-search-site .search_condition_block .c-input .search_word {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .p-search-site .search_condition_block .c-input .search_word {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}
.p-search-site .search_condition_block .c-input .c-search-btn {
  width: 100px;
  line-height: 53px;
  vertical-align: middle;
  background-color: #004ea1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-search-site .search_condition_block .c-input .c-search-btn {
    line-height: 4.297vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-search-site .search_condition_block .c-input .c-search-btn {
    width: 100%;
    line-height: 12vw;
  }
}
.p-search-site .search_filter_block {
  display: table;
  width: 100%;
  background: none;
}
.p-search-site .search_filter_block .search_filter_ttl {
  float: none;
  display: table-cell;
  width: 90px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
  background: #004ea1;
  vertical-align: middle;
}
.p-search-site .search_filter_block ul {
  float: none;
  display: table-cell;
  vertical-align: middle;
  background: #ecedef;
  padding: 5px 5px 5px 10px;
}
.p-search-site .search_filter_block ul svg {
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .p-search-site #contents_block {
    width: 100%;
    padding: 20px 0;
  }
}
.p-search-site #contents_block #main_contents {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-search-site #contents_block #main_contents .search_info_ttl {
    width: 100%;
    float: none;
  }
}
@media only screen and (max-width: 767px) {
  .p-search-site #contents_block #main_contents .result_set .ph > div {
    margin: 0 auto;
    display: block;
    height: auto;
    width: auto;
  }
}
.p-search-site #contents_block #main_contents .result_set .ph img {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-search-site #contents_block #main_contents .result_set .ph {
    width: 100%;
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
}
.p-search-site #contents_block #main_contents .result_set .txt {
  width: 800px;
}
@media only screen and (max-width: 767px) {
  .p-search-site #contents_block #main_contents .result_set .txt {
    width: 100%;
    float: none;
  }
}
.p-search-site #contents_block #main_contents .search_info_block {
  background: #004ea1;
}
/*----------------------------------------
	サイドナビゲーション
----------------------------------------*/
.p-side-navi {
  border-radius: 3px;
  overflow: hidden;
}
.p-side-navi h3 {
  color: #004EA2;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  padding: 20px 20px 20px 40px;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-side-navi h3 {
    font-size: 1.563vw;
    padding: 1.563vw 1.563vw 1.563vw 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-side-navi h3 {
    font-size: 6vw;
    padding: 5.333vw 5.333vw 5.333vw 10.667vw;
  }
}
.p-side-navi h3 .icon {
  margin-right: 10px;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-side-navi h3 .icon {
    margin-right: 0.781vw;
  }
}
.p-side-navi h3 .icon img {
  width: auto;
  height: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-side-navi h3 .icon img {
    height: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-side-navi h3 .icon img {
    height: 6.667vw;
  }
}
.p-side-navi dl dt a {
  color: #004EA2;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  padding: 15px 15px 15px 60px;
  background-color: #F6F7F8;
  border-bottom: 1px solid #fff;
  transition: all 0.3s ease;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-side-navi dl dt a {
    font-size: 1.25vw;
    padding: 1.172vw 1.172vw 1.172vw 4.688vw;
    border-width: 0.078vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-side-navi dl dt a {
    font-size: 5.333vw;
    padding: 4vw 10.667vw;
  }
}
.p-side-navi dl dt a .icon {
  margin-right: 10px;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-side-navi dl dt a .icon {
    margin-right: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-side-navi dl dt a .icon {
    margin-right: 2.667vw;
  }
}
.p-side-navi dl dt a .icon img {
  width: auto;
  height: 15px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-side-navi dl dt a .icon img {
    height: 1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-side-navi dl dt a .icon img {
    height: 5.333vw;
  }
}
.p-side-navi dl dt a .icon img:nth-of-type(2) {
  display: none;
}
.p-side-navi dl dt a:hover, .p-side-navi dl dt a.is_active {
  color: #F5A100;
}
.p-side-navi dl dt a:hover .icon img:nth-of-type(1), .p-side-navi dl dt a.is_active .icon img:nth-of-type(1) {
  display: none;
}
.p-side-navi dl dt a:hover .icon img:nth-of-type(2), .p-side-navi dl dt a.is_active .icon img:nth-of-type(2) {
  display: block;
}
.p-side-navi dl dt.navy {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 20px 0 20px 60px;
  background-color: #0E355D;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-side-navi dl dt.navy {
    font-size: 1.094vw;
    padding: 1.563vw 0 1.563vw 4.688vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-side-navi dl dt.navy {
    font-size: 4.8vw;
    text-align: center;
    padding: 5.333vw 0;
  }
}
.p-side-navi dl dt.navy + dd {
  display: none;
}
.p-side-navi dl dt.navy:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateX(-50%) rotate(0);
  transition: border 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-side-navi dl dt.navy:after {
    border-width: 0.391vw 0.391vw 0 0.391vw;
    right: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-side-navi dl dt.navy:after {
    border-width: 1.333vw 1.333vw 0 1.333vw;
    right: 5.333vw;
  }
}
.p-side-navi dl dt.navy.is_active:after {
  transform: translateX(-50%) rotate(180deg);
}
.p-side-navi dl dd ul li {
  background: #F0F0F0;
  border-bottom: 1px solid #fff;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-side-navi dl dd ul li {
    border-width: 0.078vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-side-navi dl dd ul li {
    border-width: 0.267vw;
  }
}
.p-side-navi dl dd ul li a {
  color: #004EA2;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-decoration: none;
  padding: 15px 40px 15px 80px;
  display: block;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-side-navi dl dd ul li a {
    font-size: 1.094vw;
    padding: 1.172vw 3.125vw 1.172vw 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-side-navi dl dd ul li a {
    font-size: 4.533vw;
    padding: 4vw 10.667vw 4vw 21.333vw;
  }
}
.p-side-navi dl dd ul li a:hover, .p-side-navi dl dd ul li a.is_active {
  color: #F5A100;
}
.p-side-navi dl dd ul li a:hover:after, .p-side-navi dl dd ul li a.is_active:after {
  border-color: #F5A100 transparent transparent transparent;
}
.p-side-navi dl dd ul li a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #004EA2 transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateX(-50%) rotate(-90deg);
  transition: border 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-side-navi dl dd ul li a:after {
    border-width: 0.391vw 0.391vw 0 0.391vw;
    right: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-side-navi dl dd ul li a:after {
    right: 2.667vw;
    border-width: 1.333vw 1.333vw 0 1.333vw;
  }
}
.p-side-navi .back a {
  color: #004EA2;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  padding: 20px 20px 20px 25px;
  display: block;
  background-color: #fff;
  transition: color 0.3s ease;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-side-navi .back a {
    font-size: 1.172vw;
    padding: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-side-navi .back a {
    font-size: 4.8vw;
    padding: 5.333vw;
  }
}
.p-side-navi .back a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #004EA2 transparent transparent transparent;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateX(-50%) rotate(90deg);
  transition: border 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-side-navi .back a:after {
    border-width: 0.391vw 0.391vw 0 0.391vw;
    left: 1.553vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-side-navi .back a:after {
    border-width: 1.333vw 1.333vw 0 1.333vw;
    left: 3.667vw;
  }
}
.p-side-navi .back a:hover {
  color: #F5A100;
}
.p-side-navi .back a:hover:after {
  border-color: #F5A100 transparent transparent transparent;
}

/*----------------------------------------
	運行状況ティッカー
----------------------------------------*/
.p-ticker-status {
  padding: 5px 5px 0;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-ticker-status {
    padding: 0.391vw 0.391vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-ticker-status {
    padding: 1.3333vw 1.3333vw 0;
  }
}
.p-ticker-status.train {
  min-height: 95px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-ticker-status.train {
    min-height: 7.421vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-ticker-status.train {
    min-height: auto;
  }
}
.p-ticker-status__btn {
  height: 100%;
  padding: 5px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-ticker-status__btn {
    padding: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-ticker-status__btn {
    padding: 0;
    margin-bottom: 1.3333vw;
    position: static;
    top: auto;
    right: auto;
  }
}
.p-ticker-status__btn li {
  margin-right: 5px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-ticker-status__btn li {
    margin-right: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-ticker-status__btn li {
    margin-right: 1.3333vw;
  }
}
.p-ticker-status__btn li:last-child {
  margin-right: 0;
}
.p-ticker-status__btn li a {
  color: #fff;
  text-align: center;
  text-decoration: none;
  width: 90px;
  height: 90px;
  border-radius: 3px;
  box-sizing: border-box;
  display: block;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-ticker-status__btn li a {
    width: 7.03vw;
    height: 7.03vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-ticker-status__btn li a {
    width: 48vw;
    height: 16vw;
  }
}
.p-ticker-status__btn li a:hover {
  opacity: 0.8;
}
.p-ticker-status__btn li a .inner {
  line-height: 1;
  width: 100%;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-ticker-status__btn li a .inner {
    padding: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-ticker-status__btn li a .inner {
    padding: 1.3333vw;
    left: auto;
    transform: translateY(-50%);
  }
}
.p-ticker-status__btn li a .inner .icon svg {
  width: auto;
  height: 22px;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-ticker-status__btn li a .inner .icon svg {
    height: 1.718vw;
    margin-bottom: 0.39vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-ticker-status__btn li a .inner .icon svg {
    height: 3.2vw;
    margin-bottom: 0.5333vw;
  }
}
.p-ticker-status__btn li a .inner .icon svg path {
  fill: #fff;
}
.p-ticker-status__btn li a .inner p {
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-ticker-status__btn li a .inner p {
    font-size: 1.016vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-ticker-status__btn li a .inner p {
    font-size: 2.933vw;
  }
}
.p-ticker-status__btn li a .inner p span {
  color: #004EA2;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  padding: 3px 0;
  background-color: #fff;
  border-radius: 3px;
  margin-top: 5px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-ticker-status__btn li a .inner p span {
    font-size: 0.938vw;
    padding: 0.234vw 0;
    border-radius: 0.234vw;
    margin-top: 0.391vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-ticker-status__btn li a .inner p span {
    font-size: 2.666vw;
  }
}
.p-ticker-status__btn li.blue a {
  background-color: #004EA2;
}
.p-ticker-status__btn li.red a {
  background-color: #E83820;
}

/*----------------------------------------
	お知らせティッカー
----------------------------------------*/
.p-ticker-news {
  width: 100%;
  padding: 20px 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-ticker-news {
    padding: 1.563vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-ticker-news {
    padding: 9.3333vw 0;
  }
}

/*----------------------------------------
	時刻表検索
----------------------------------------*/
.p-timetable-search {
  padding: 40px 0;
  background-color: #004ea1;
  /* 検索フォーム */
  /* 右バナー */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search {
    padding: 3.125vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search {
    padding: 5.3333vw;
  }
}
.p-timetable-search__wrapper {
  width: 1200px;
  margin: 0 auto;
  display: flex;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__wrapper {
    width: 93.75vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__wrapper {
    width: 100%;
    display: block;
  }
}
.p-timetable-search__form {
  width: 930px;
  background-color: #fff;
  padding: 25px;
  position: relative;
  box-sizing: border-box;
  /* 見出し */
  /* 出発地・到着地 */
  /* 日時・時間 */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form {
    width: 72.656vw;
    padding: 1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form {
    width: 100%;
    padding: 5.3333vw;
  }
}
.p-timetable-search__form h3 {
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  /*
  &:after{
  	content: "";
  	width: 50px;
  	height: 3px;
  	background-color: #004EA2;
  	position: absolute;
  	bottom: -15px;
  	left: 50%;
  	transform: translateX(-50%);
  	border-radius: 3px;
  }//:after
  */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form h3 {
    font-size: 1.875vw;
    margin-bottom: 2.734vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form h3 {
    font-size: 5.3333vw;
    text-align: center;
    margin-bottom: 5.3333vw;
  }
}
.p-timetable-search__form h3 .line {
  border-bottom: 3px solid #004EA2;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form h3 .line {
    border-width: 0.234vw;
  }
}
.p-timetable-search__form h3 .icon {
  margin-right: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form h3 .icon {
    margin-right: 0.781vw;
  }
  .p-timetable-search__form h3 .icon img {
    width: auto;
    height: 1.797vw;
  }
}
.p-timetable-search__form dl {
  /* タイトル */
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form dl {
    width: 100%;
  }
}
.p-timetable-search__form dl dt {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form dl dt {
    font-size: 1.25vw;
    margin-bottom: 0.781vw;
  }
}
.p-timetable-search__form dl dt .icon {
  margin-right: 5px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form dl dt .icon {
    margin-right: 0.391vw;
  }
}
.p-timetable-search__form dl dt .icon img {
  vertical-align: top;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form dl dt .icon img {
    width: auto;
    height: 1.797vw;
  }
}
.p-timetable-search__form dl dt a {
  color: #004ea1;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  padding: 7px 10px;
  border: 1px solid #004ea1;
  background-color: #fff;
  border-radius: 3px;
  margin-left: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form dl dt a {
    font-size: 1.016vw;
    padding: 0.547vw 0.781vw;
    border-width: 0.078vw;
    border-radius: 0.234vw;
    margin-left: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form dl dt a {
    display: none;
  }
}
.p-timetable-search__form dl dt a:hover {
  color: #fff;
  background-color: #004ea1;
}
.p-timetable-search__form dl dt a .icon svg {
  width: 13px;
  height: auto;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form dl dt a .icon svg {
    width: 1.016vw;
  }
}
.p-timetable-search__form .destination {
  margin-bottom: 15px;
  display: flex;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form .destination {
    margin-bottom: 1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .destination {
    display: block;
  }
}
.p-timetable-search__form .destination dl {
  width: 420px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form .destination dl {
    width: 32.813vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .destination dl {
    width: 100%;
  }
}
.p-timetable-search__form .destination .trade {
  line-height: 45px;
  text-align: center;
  width: 35px;
  height: 45px;
  padding: 0;
  margin: 45px 0 0;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form .destination .trade {
    line-height: 3.516vw;
    width: 2.734vw;
    height: 3.516vw;
    margin: 3.516vw 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .destination .trade {
    line-height: 9.3333vw;
    height: 9.3333vw;
    margin: 3.33vw 0 5.33vw;
    vertical-align: middle;
  }
}
.p-timetable-search__form .destination .trade img {
  width: 20px;
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form .destination .trade img {
    width: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .destination .trade img {
    width: 6.6666vw;
  }
}
.p-timetable-search__form .time {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  /* コンディション */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form .time {
    margin-bottom: 1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .time {
    margin-bottom: 5.3333vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .time dl {
    width: calc(50% - 1.3333vw);
  }
}
.p-timetable-search__form .time dl.datepicker {
  width: 180px;
  margin-right: 25px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form .time dl.datepicker {
    width: 14.063vw;
    margin-right: 1.953vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .time dl.datepicker {
    margin-right: 2.6666vw;
    width: calc(50% - 1.3333vw);
  }
}
.p-timetable-search__form .time dl dd {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .time dl dd {
    display: block;
  }
}
.p-timetable-search__form .time dl dd .hour_minute {
  margin-right: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form .time dl dd .hour_minute {
    margin-right: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .time dl dd .hour_minute {
    margin-right: 0;
  }
}
.p-timetable-search__form .time dl dd .hour_minute ul {
  display: flex;
}
.p-timetable-search__form .time dl dd .hour_minute ul li span {
  font-weight: bold;
  vertical-align: bottom;
  padding: 0 5px 0 3px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form .time dl dd .hour_minute ul li span {
    font-size: 1.25vw;
    padding: 0 0.391vw 0 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .time dl dd .hour_minute ul li span {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .time dl dd .hour_minute ul li.hour {
    padding-right: 20px;
    position: relative;
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form .time dl dd .hour_minute ul li.hour {
    padding-right: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .time dl dd .hour_minute ul li.hour:after {
    content: ":";
    font-size: 16px;
    font-size: 1rem;
    line-height: 12vw;
    position: absolute;
    right: 1.8666vw;
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form .time dl dd .hour_minute ul li.hour:after {
    font-size: 1.25vw;
  }
}
.p-timetable-search__form .time .condition {
  width: auto;
  padding-top: 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form .time .condition {
    padding-top: 2.3444vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .time .condition {
    width: 100%;
    padding-top: 2.6666vw;
  }
}
.p-timetable-search__form .time .condition ul {
  border-radius: 3px;
  overflow: hidden;
  vertical-align: middle;
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form .time .condition ul {
    border-radius: 0.234vw;
  }
}
.p-timetable-search__form .time .condition ul li {
  width: 100px;
  height: 55px;
  border-right: 1px solid #dadcdc;
  box-sizing: border-box;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__form .time .condition ul li {
    width: 7.813vw;
    height: 4.297vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__form .time .condition ul li {
    width: 25%;
    height: 12vw;
  }
}
.p-timetable-search__form .time .condition ul li:last-child {
  border-right: none;
}
.p-timetable-search__bnr {
  width: 250px;
  margin-left: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__bnr {
    width: 19.531vw;
    margin-left: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-timetable-search__bnr {
    width: auto;
    margin: 5.3333vw 0 0 0;
  }
}
.p-timetable-search__bnr a {
  display: block;
}
.p-timetable-search__bnr a img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-timetable-search__bnr a img {
    border-radius: 0.234vw;
  }
}
.p-timetable-search__bnr a:hover {
  opacity: 0.8;
}

/*----------------------------------------
	トップ ナビゲーション（PC表示のみ）
----------------------------------------*/
.p-top-navigation {
  padding: 0 0 80px;
  /* 大カテゴリー */
  /* 小カテゴリー */
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation {
    padding: 0 0 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-navigation {
    display: none;
  }
}
.p-top-navigation__big ul {
  display: flex;
  flex-wrap: wrap;
}
.p-top-navigation__big ul li {
  width: 390px;
  margin-right: 15px;
  border-radius: 3px;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__big ul li {
    width: 30.469vw;
    margin-right: 1.172vw;
    border-radius: 0.234vw;
  }
}
.p-top-navigation__big ul li:last-child {
  margin-right: 0;
}
.p-top-navigation__big ul li h3 {
  width: 100%;
  position: relative;
}
.p-top-navigation__big ul li h3 figure {
  background-color: #000;
}
.p-top-navigation__big ul li h3 figure img {
  opacity: 0.6;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__big ul li h3 figure img {
    width: auto;
    height: 23.438vw;
  }
}
.p-top-navigation__big ul li h3 .ovl {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__big ul li h3 .ovl img {
    width: auto;
    height: 23.438vw;
  }
}
.p-top-navigation__big ul li h3 dl {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-top-navigation__big ul li h3 dl dt {
  color: #fff;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__big ul li h3 dl dt {
    font-size: 2.813vw;
    margin-bottom: 1.172vw;
  }
}
.p-top-navigation__big ul li h3 dl dd {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Overpass", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__big ul li h3 dl dd {
    font-size: 1.25vw;
  }
}
.p-top-navigation__big ul li .wrap {
  padding: 30px;
  background-color: #F6F7F8;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__big ul li .wrap {
    padding: 2.344vw;
  }
}
.p-top-navigation__big ul li .wrap ul li {
  float: left;
  width: 160px;
  margin: 0 10px 10px 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__big ul li .wrap ul li {
    width: 12.5vw;
    margin: 0 0.781vw 0.781vw 0;
  }
}
.p-top-navigation__big ul li .wrap ul li:nth-child(even) {
  margin-right: 0;
}
.p-top-navigation__big ul li .wrap ul li a {
  height: 100px;
  background-color: #004EA2;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__big ul li .wrap ul li a {
    height: 7.813vw;
  }
}
.p-top-navigation__big ul li .wrap ul li a dl {
  text-align: center;
  padding-top: 25px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__big ul li .wrap ul li a dl {
    padding-top: 1.953vw;
  }
}
.p-top-navigation__big ul li .wrap ul li a dl dt {
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__big ul li .wrap ul li a dl dt {
    margin-bottom: 0.781vw;
  }
}
.p-top-navigation__big ul li .wrap ul li a dl dt img {
  width: auto;
  height: 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__big ul li .wrap ul li a dl dt img {
    height: 2.344vw;
  }
}
.p-top-navigation__big ul li .wrap ul li a dl dd {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__big ul li .wrap ul li a dl dd {
    font-size: 1.25vw;
  }
}
.p-top-navigation__big ul li .wrap ul li a:hover {
  opacity: 0.8;
}
.p-top-navigation__small {
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__small {
    margin-top: 1.563vw;
  }
}
.p-top-navigation__small ul {
  display: flex;
  flex-wrap: wrap;
}
.p-top-navigation__small ul li {
  border-right: none;
  margin-right: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__small ul li {
    margin-right: 1.563vw;
  }
}
.p-top-navigation__small ul li:last-child {
  margin-right: 0;
}
.p-top-navigation__small ul li a {
  display: block;
  padding: 0;
  position: relative;
}
.p-top-navigation__small ul li a:hover figure img {
  opacity: 0.4;
}
.p-top-navigation__small ul li a:after {
  display: none;
}
.p-top-navigation__small ul li a figure {
  background-color: #000;
  border-radius: 3px;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__small ul li a figure {
    border-radius: 0.234vw;
  }
}
.p-top-navigation__small ul li a figure img {
  width: 100%;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__small ul li a figure img {
    width: auto;
    height: 10.938vw;
  }
}
.p-top-navigation__small ul li a dl {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-top-navigation__small ul li a dl dt {
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__small ul li a dl dt {
    font-size: 2.5vw;
    margin-bottom: 0.781vw;
  }
}
.p-top-navigation__small ul li a dl dd {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Overpass", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-navigation__small ul li a dl dd {
    font-size: 1.25vw;
  }
}

/*----------------------------------------
	トップ にしてつチャンネル
----------------------------------------*/
.p-top-nishitetsu-channel {
  padding-top: 100px;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel {
    padding-top: 7.813vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel {
    padding-top: 0;
    margin-bottom: 5.3333vw;
  }
}
.p-top-nishitetsu-channel__bg {
  width: 100%;
  height: 850px;
  background: transparent url(../images/index/index_channel_bg.jpg) 50% 50%/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__bg {
    height: 66.406vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel__bg {
    display: none;
  }
}
.p-top-nishitetsu-channel__bg .left {
  position: absolute;
  left: 0;
  bottom: 30px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__bg .left {
    bottom: 2.344vw;
  }
}
.p-top-nishitetsu-channel__bg .right {
  position: absolute;
  right: 0;
  top: 0;
}
.p-top-nishitetsu-channel__wrapper {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 100px 30px;
  background-color: #fff;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper {
    width: 93.75vw;
    padding: 4.688vw 7.813vw 2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel__wrapper {
    width: auto;
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel__wrapper h3 {
    display: none;
  }
}
.p-top-nishitetsu-channel__wrapper .channel-navi ul {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .channel-navi ul {
    margin-bottom: 3.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel__wrapper .channel-navi ul {
    display: none;
  }
}
.p-top-nishitetsu-channel__wrapper .channel-navi ul li {
  width: 490px;
  margin: 0 20px 20px 0;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .channel-navi ul li {
    width: 38.281vw;
    margin: 0 1.563vw 1.563vw 0;
  }
}
.p-top-nishitetsu-channel__wrapper .channel-navi ul li:nth-child(2n) {
  margin-right: 0;
}
.p-top-nishitetsu-channel__wrapper .channel-navi ul li a {
  display: block;
  position: relative;
}
.p-top-nishitetsu-channel__wrapper .channel-navi ul li a:hover figure img {
  transform: scale(1.1);
}
.p-top-nishitetsu-channel__wrapper .channel-navi ul li a figure {
  background-color: #000;
  overflow: hidden;
}
.p-top-nishitetsu-channel__wrapper .channel-navi ul li a figure img {
  height: 9.375vw;
  opacity: 0.6;
  transition: all 0.6s ease;
}
.p-top-nishitetsu-channel__wrapper .channel-navi ul li a dl {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .channel-navi ul li a dl {
    left: 3.125vw;
  }
}
.p-top-nishitetsu-channel__wrapper .channel-navi ul li a dl dt {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  background-color: #004ea1;
  padding: 8px 12px;
  border-radius: 4px;
  margin-bottom: 5px;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .channel-navi ul li a dl dt {
    font-size: 1.094vw;
    padding: 0.625vw 0.938vw;
    border-radius: 0.313vw;
    margin-bottom: 0.391vw;
  }
}
.p-top-nishitetsu-channel__wrapper .channel-navi ul li a dl dd {
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .channel-navi ul li a dl dd {
    font-size: 2.031vw;
  }
}
.p-top-nishitetsu-channel__wrapper .channel-navi ul li a dl dd.small {
  font-size: 23px;
  font-size: 1.4375rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .channel-navi ul li a dl dd.small {
    font-size: 1.787vw;
  }
}
.p-top-nishitetsu-channel__wrapper .channel-navi ul li a .icon {
  width: 40px;
  height: 40px;
  position: absolute;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .channel-navi ul li a .icon {
    width: 3.125vw;
    height: 3.125vw;
    right: 2.344vw;
  }
}
.p-top-nishitetsu-channel__wrapper .channel-navi ul li a .icon img {
  width: 100%;
  height: auto;
}
.p-top-nishitetsu-channel__wrapper .channel-navi .sp-bnr {
  padding: 0 15px;
  margin-bottom: 40px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel__wrapper .channel-navi .sp-bnr {
    display: block;
  }
}
.p-top-nishitetsu-channel__wrapper .channel-navi .sp-bnr img {
  width: 100%;
  height: auto;
}
.p-top-nishitetsu-channel__wrapper .info-navi {
  margin-bottom: 80px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .info-navi {
    margin-bottom: 6.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel__wrapper .info-navi {
    margin-bottom: 10.6666vw;
  }
}
.p-top-nishitetsu-channel__wrapper .info-navi ul {
  font-size: 0px;
  font-size: 0rem;
  text-align: center;
}
.p-top-nishitetsu-channel__wrapper .info-navi ul li {
  margin: 0 10px;
  vertical-align: top;
  display: inline-block;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .info-navi ul li {
    margin: 0 0.781vw;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel__wrapper .info-navi ul li {
    margin: 0 5.3333vw;
    border-radius: 0;
  }
}
.p-top-nishitetsu-channel__wrapper .info-navi ul li a {
  text-decoration: none;
  width: 280px;
  padding: 30px 0;
  background-color: #fafafa;
  display: block;
  transition: all 0.3s ease;
  border-radius: 3px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .info-navi ul li a {
    width: 21.875vw;
    padding: 2.344vw 0;
    border-radius: 0.234vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel__wrapper .info-navi ul li a {
    width: auto;
    padding: 0;
    background-color: transparent;
  }
}
.p-top-nishitetsu-channel__wrapper .info-navi ul li a:hover {
  background-color: #efefef;
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel__wrapper .info-navi ul li a:hover {
    background-color: transparent;
  }
}
.p-top-nishitetsu-channel__wrapper .info-navi ul li a .icon {
  margin-bottom: 20px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .info-navi ul li a .icon {
    margin-bottom: 1.563vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel__wrapper .info-navi ul li a .icon {
    margin-bottom: 2.6666vw;
  }
  .p-top-nishitetsu-channel__wrapper .info-navi ul li a .icon img {
    width: auto;
    height: 6.6666vw;
  }
}
.p-top-nishitetsu-channel__wrapper .info-navi ul li a dl dt {
  color: #004ea2;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .info-navi ul li a dl dt {
    font-size: 1.875vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel__wrapper .info-navi ul li a dl dt {
    font-size: 4.8vw;
  }
}
.p-top-nishitetsu-channel__wrapper .info-navi ul li a dl dt span {
  color: #004ea2;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Overpass", sans-serif;
  letter-spacing: 0.1em;
  margin-top: 10px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .info-navi ul li a dl dt span {
    font-size: 0.938vw;
    margin-top: 0.781vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel__wrapper .info-navi ul li a dl dt span {
    font-size: 3.2vw;
    letter-spacing: 0.05em;
  }
}
.p-top-nishitetsu-channel__wrapper .info-navi ul li a dl dd {
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-nishitetsu-channel__wrapper .info-navi ul li a dl dd {
    font-size: 1.172vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-nishitetsu-channel__wrapper .info-navi ul li a dl dd {
    display: none;
  }
}

/*----------------------------------------
	トップ おすすめ情報
----------------------------------------*/
.p-top-recommend {
  max-width: 1500px;
  margin: 0 auto 80px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-recommend {
    max-width: 117.188vw;
    margin: 0 auto 6.25vw;
    padding-bottom: 2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-recommend {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 5.3333vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-recommend h3 {
    display: none;
  }
}
.p-top-recommend__slider {
  width: 1500px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-recommend__slider {
    width: 117.188vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-recommend__slider {
    display: none;
  }
}
.p-top-recommend__slider li {
  overflow: hidden;
}
.p-top-recommend__slider li ul {
  width: 1500px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-recommend__slider li ul {
    width: 117.188vw;
  }
}
.p-top-recommend__slider li ul li {
  margin-right: 20px;
  width: 100%;
  max-width: 360px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-recommend__slider li ul li {
    margin-right: 1.563vw;
    max-width: 28.125vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-recommend__slider li ul li {
    width: 100%;
    margin: 10px 0 0;
  }
}
.p-top-recommend__slider li ul li:last-child {
  margin-right: 0;
}
.p-top-recommend__slider li ul li a {
  display: block;
}
.p-top-recommend__slider li ul li a img {
  width: 100%;
  height: auto;
}
.p-top-recommend__slider li ul li a:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .p-top-recommend .bx-wrapper {
    display: none;
  }
}
.p-top-recommend .bx-wrapper .bx-controls {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  display: inline-block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-top-recommend .bx-wrapper .bx-controls {
    bottom: -1.172vw;
  }
}
.p-top-recommend .sp-bnr {
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-top-recommend .sp-bnr {
    padding: 0 4vw;
    display: block;
  }
}
.p-top-recommend .sp-bnr img {
  width: 100%;
  height: auto;
}

/*----------------------------------------
	トップ トピックス（SP表示のみ）
----------------------------------------*/
.p-top-topics {
  margin-bottom: 60px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-top-topics {
    display: block;
  }
}
.p-top-topics ul li {
  margin-bottom: 15px;
}
.p-top-topics ul li img {
  width: 100%;
  height: auto;
}

.p-train-routemap-modal {
  display: none;
  z-index: 1000;
  position: relative;
}
.p-train-routemap-modal .c-modal__container {
  height: 80vh;
  width: 720px;
  background-color: #f6f7f8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-train-routemap-modal .c-modal__container {
    width: 56.25vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-train-routemap-modal .c-modal__container {
    width: 85.333vw;
  }
}
.p-train-routemap-modal .c-modal__container .close-btn {
  position: absolute;
  top: -30px;
  right: -30px;
  cursor: pointer;
  z-index: 10;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-train-routemap-modal .c-modal__container .close-btn {
    top: -2.344vw;
    right: -2.344vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-train-routemap-modal .c-modal__container .close-btn {
    top: -8vw;
    right: -8vw;
  }
}
.p-train-routemap-modal .c-modal__container .close-btn img {
  width: 50px;
  height: 50px;
  display: block;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-train-routemap-modal .c-modal__container .close-btn img {
    width: 3.906vw;
    height: 3.906vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-train-routemap-modal .c-modal__container .close-btn img {
    width: 13.333vw;
    height: 13.333vw;
  }
}
.p-train-routemap-modal .c-modal__container .wrapper {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector {
    overflow-x: scroll;
  }
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul {
    width: 170vw;
  }
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul li {
  height: auto;
  background-color: #014EA2;
  transform: translate(0);
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul li dl {
  width: auto;
  padding-top: 18px;
  position: static;
  top: auto;
  left: auto;
  transform: translate(0);
  border-radius: 0;
  background-color: transparent;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul li dl {
    padding-top: 1.406vw;
  }
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul li dl dt {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul li dl dt {
    font-size: 1.25vw;
    margin-bottom: 0.391vw;
  }
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul li dl dd.en {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul li dl dd.en {
    font-size: 0.781vw;
  }
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul li.is_select {
  background-color: #f6f7f8;
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul li.is_select dl {
  height: 65px;
  padding-top: 18px;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul li.is_select dl {
    height: 5.078vw;
    padding-top: 1.406vw;
  }
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul li.is_select dl dt {
  font-size: 16px;
  font-size: 1rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__selector ul li.is_select dl dt {
    font-size: 1.25vw;
  }
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__content {
  width: 100%;
  padding: 0;
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__content .station {
  padding: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__content .station {
    padding: 0.781vw;
  }
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__content .station:hover {
  opacity: 0.8;
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__content .station h3 {
  font-size: 20px;
  font-size: 1.25rem;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__content .station h3 {
    font-size: 1.563vw;
  }
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__content .station.pink {
  color: #fff;
  background-color: #E85574;
  border-color: #E85574;
}
.p-train-routemap-modal .c-modal__container .wrapper .p-page-routemap__content .station.green {
  color: #fff;
  background-color: #85d685;
  border-color: #85d685;
}

/*----------------------------------------
	第３階層ラッパー
----------------------------------------*/
.p-wrapper-lv3 {
  background-color: #EFF4F8;
}
.p-wrapper-lv3__wrapper {
  padding: 80px 100px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-wrapper-lv3__wrapper {
    padding: 6.25vw 7.813vw;
  }
}
@media only screen and (max-width: 767px) {
  .p-wrapper-lv3__wrapper {
    padding: 8vw 4vw;
  }
}
.p-wrapper-lv3__wrapper--mini {
  padding: 40px 0;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
  .p-wrapper-lv3__wrapper--mini {
    padding: 3.125vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-wrapper-lv3__wrapper--mini {
    padding: 10.667vw 4vw;
  }
}

.u-align-l {
  text-align: left;
}

.u-align-c {
  text-align: center;
}

.u-align-r {
  text-align: right;
}

.u-color-red {
  color: #ff0000;
}

.u-color-blue {
  color: #0078D8;
}

.u-sp-display {
  display: none;
}
@media only screen and (max-width: 767px) {
  .u-sp-display {
    display: block;
  }
}

.u-pc-display {
  display: block;
}
@media only screen and (max-width: 767px) {
  .u-pc-display {
    display: none;
  }
}

.u-flex {
  display: flex;
}

/* マージンボトム0 */
.u-mb0 {
  margin-bottom: 0;
}

.u-mb-s {
  margin-bottom: 5px !important;
}

/*# sourceMappingURL=style.css.map */
