@charset "UTF-8";

/*##################################################
-------------LIST-------------
 00: Reset
 02: Common
 03: Wrapper
 04: Link
 05: Wrapper
 06: Header
 07: Contents
 08: Footer
 09: Component
 10: Project
------------------------------
##################################################*/
/* --------------------------------------------------
 00: Variables
 -------------------------------------------------- */
:root {
  /* width - Number */
  --base-number-view: 1440;
  --base-number: 1000;
  --base-number-mq: 750;
  --base-number-sp: 375;
  /* width - Base */
  --base-width-view: calc(var(--base-number-view) * 1px);
  --base-width: calc(var(--base-number) * 1px);
  --base-width-mq: calc(var(--base-number-mq) * 1px);
  /* font */
  --font-base: "Noto Serif Japanese", "Hiragino Kaku Gothic W3", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "游ゴシック", "Yu Gothic", YuGothic, Meiryo, メイリオ, system-ui, sans-serif;
  /* color */
  --color-main: #000;
  --color-main-light: #333;
  --color-gray: #666;
  --color-gray-light: #a3a3a3;
  --color-gray-lightest: #d9d9d9;
  --color-accent-primary: #007a52;
  --color-accent-primary-dark: #106b4d;
  --color-accent-primary-medium: #79b9a5;
  --color-accent-primary-light: #cfeae0;
  --color-accent-primary-lighter: #ebf6f2;
  --color-accent-primary-lightest: #f6fdfa;
  --color-accent-secondary: #42b21a;
  --color-accent-secondary-light: #009844;
  --color-accent-orange: #ff7500;
  --color-accent-orange-light: #ffb277;
  --color-accent-blue: #1a70b2;
  --color-accent-blue-light: rgba(26, 112, 178, .5);
  --color-accent-blue-lightest: rgba(26, 112, 178, .1);
  --color-accent-red: #b42700;
  --color-accent-red-lightest: #fff5f2;
  --color-accent-yellow: #fcff35;
  --color-accent-yellow-light: #fdff86;
  --color-accent-yellow-lighter: #feffae;
  /* ▼▼▼202511 リニューアルでスタイル変更▼▼▼ */
  --color-accent-yellow-lightest: #fffee4;
  /* ▲▲▲202511 リニューアルでスタイル変更▲▲▲ */
  /* link color */
  --link-color: var(--color-accent-blue);
  --link-color-hover: var(--link-color);
  /* ground color */
  --ground-color: var(--color-main);
  --ground-color-gray: #f5f5f5;
  --ground-color-yellow: var(--color-accent-yellow-lightest);
  --ground-color-green: var(--color-accent-primary-lighter);
  /* border color */
  --border-color: #d2d2d2;
  /* button color */
  --btn-color: var(--ground-color-gray);
  --btn-color-hover: #e2efd9;
  /* rollover value */
  --opacity-value: .7;
}

/* --------------------------------------------------
 00: Reset Style
 -------------------------------------------------- */
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, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

*[data-color=red] {
  color: #b42700;
}
*[data-color=green] {
  color: var(--color-accent-primary);
}
*[data-color=black] {
  color: var(--color-main);
}

html {
  font-size: 62.5%;
  /* font-size: 200%; */
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

body {
  color: var(--color-main);
  font-family: var(--font-base);
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
body.is-fixed {
  overflow: hidden;
}
body.is-blur .l-header,
body.is-blur .l-main,
body.is-blur .l-footer,
body.is-blur #btn_chatbot,
body.is-blur #btn_chatbot_switch {
  filter: blur(12px);
}
body.is-blur-nav .l-main,
body.is-blur-nav .l-footer,
body.is-blur-nav #btn_chatbot,
body.is-blur-nav #btn_chatbot_switch {
  filter: blur(12px);
}
body#tokudane-page1 .l-nav-footer a[href="/top/tokudane/"], body#ticketless-page .l-nav-footer a[href="/top/ticketless/"], body#e-ticket-page .l-nav-footer a[href="/top/e-ticket/"], body#point-service-top .l-nav-footer a[href="/top/point/"], body#howto-page .l-nav-footer a[href="/top/howto/"] {
  font-weight: 700;
}

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, picture {
  display: block;
}

h1, h2, h3, h4, h5, h6, dt, th {
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

button:focus, a:focus, input[type="button"]:focus {
  outline: solid 2px #06c !important;
  outline-offset: 2px;
  transition: none !important;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select,
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
  background-color: transparent;
  font-family: inherit;
  font-size: 100%;
  vertical-align: middle;
}

select {
  text-indent: 0.01px;
  text-overflow: "";
}

select::-ms-expand {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: 0.3s;
}

em {
  color: var(--color-accent-primary);
  font-style: normal;
  font-weight: 700;
}

strong {
  color: #b42700;
}

i {
  font-style: normal;
}

sub,
sup {
  font-size: 70%;
}

sub {
  vertical-align: text-bottom;
}

sup {
  vertical-align: text-top;
}

br.is-pc {
  display: block;
}
br.is-sp {
  display: none;
}
@media print, screen and (max-width: 749px) {
  br.is-pc {
    display: none;
  }
  br.is-sp {
    display: block;
  }
}

/* 標準 */
:placeholder-shown {
  color: #636060;
}

::-webkit-input-placeholder {
  color: #636060;
}

::-moz-placeholder {
  color: #636060;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #636060;
}

/* フォーカス時 */
:focus:placeholder-shown {
  color: #636060;
}

:focus::-webkit-input-placeholder {
  color: #636060;
}

:focus::-moz-placeholder {
  color: #636060;
  opacity: 1;
}

:focus:-ms-input-placeholder {
  color: #636060;
}

/* --------------------------------------------------
 02:  Common Style
 -------------------------------------------------- */
/* General
 -------------------------------------------------- */
.fwn { font-weight: normal !important;}
.bold { font-weight: bold !important;}
.strong { color: #b42700 !important;}

/* color
 -------------------------------------------------- */
.u-txRed {
  color: var(--color-accent-red) !important;
}

/* float
 -------------------------------------------------- */
.u-fl {
  float: left !important;
}

.u-fr {
  float: right !important;
}

/* align
 -------------------------------------------------- */
.u-taL {
  text-align: left !important;
}

.u-taR {
  text-align: right !important;
}

.u-taC {
  text-align: center !important;
}

/* size
 -------------------------------------------------- */
.u-txXS {
  font-size: 1rem !important;
}

.u-txSS {
  font-size: 1.1rem !important;
}

.u-txS {
  font-size: 1.2rem !important;
}

.u-txM {
  font-size: 1.4rem !important;
}

.u-txL {
  font-size: 1.6rem !important;
}

.u-txLL {
  font-size: 1.8rem !important;
}

.u-txXL {
  font-size: 2rem !important;
}

.u-txXXL {
  font-size: 2.2rem !important;
}

/* weight
 -------------------------------------------------- */
.u-txN {
  font-weight: 400 !important;
}

.u-txB {
  font-weight: 700 !important;
}

/* Margin Padding
 -------------------------------------------------- */
.u-noMargin {
  margin: 0 !important;
}

.u-noPadding {
  padding: 0 !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pr0 {
  padding-right: 0 !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-pl0 {
  padding-left: 0 !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

/* display
-------------------------------------------------- */
@media print, screen and (max-width: 749px) {
  .u-display-pc {
    display: none !important;
  }
}
.u-display-sp {
  display: none;
}

@media print, screen and (max-width: 749px) {
  .u-display-sp {
    display: block !important;
  }
}
.display_none,
.displayNone {
  display: none !important;
}

/*=========================================
ヘッダー部のテキストリーダー読み上げをスキップ
=========================================*/
.screenreader_skipLink {
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  visibility: hidden !important;
}

/*=========================================
スクリーンリーダー用(画面上は表示させないが読み上げる）
=========================================*/
.css_reader {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/*=========================================
モーダル
=========================================*/
.modal {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1000;
}
.modal.active {
  display: block;
  pointer-events: auto;
}
.modal.active_sub {
  display: block;
  pointer-events: auto;
  z-index: 2001;
}

/* --------------------------------------------------
 03: Animation
 -------------------------------------------------- */
/* fadeIn */
@-webkit-keyframes fadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --------------------------------------------------
 04: Link Style
 -------------------------------------------------- */
a {
  color: var(--link-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: var(--link-color-hover);
  text-decoration: underline;
}

/* --------------------------------------------------
 05: Wrapper Style
 -------------------------------------------------- */
.l-wrap {
  box-sizing: content-box;
  max-width: var(--base-width);
  margin-inline: auto;
  padding-inline: 16px;
}

/* --------------------------------------------------
 07: Contents Style
-------------------------------------------------- */
main {
  overflow-x: clip;
}

/* l-page-header */
.l-page-header {
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  background-color: var(--color-accent-primary-lighter);
}
.l-page-header.-lower {
  background-color: #f7f0e1;
}
.l-page-header.-lower .l-page-header__headline {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 68px;
  padding-block: 8px;
  font-size: 2.4rem;
}
.l-page-header.-lower .l-page-header__headline[data-type=guide] {
  padding: 0 0 0 48px;
  position: relative;
}
.l-page-header.-lower .l-page-header__headline[data-type=guide]::before {
  width: 40px;
  height: 30px;
  margin: -15px 0 0;
  position: absolute;
  top: 50%;
  left: 0;
  background-image: url(/top/jrticket/guide/img/ico_page_guide.svg);
  background-size: 40px 30px;
  content: "";
}
.l-page-header.-lower .l-page-header__headline[data-type=jrep] {
  padding: 0 0 0 64px;
  position: relative;
}
.l-page-header.-lower .l-page-header__headline[data-type=jrep]::before {
  width: 56px;
  height: 44px;
  margin: -22px 0 0;
  position: absolute;
  top: 50%;
  left: 0;
  background-image: url(/top/point/img/ico_page_point.png);
  background-size: 56px 44px;
  content: "";
}
.l-page-header.-lower .l-page-header__button.-guide {
  width: 40%;
  max-width: 380px;
  border: 1px solid #007a52;
  border-radius: 5px;
  font-size: 1.3rem;
  color: #007a52;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 40px;
  padding-left: 49px;
  padding-right: 10px;
  text-decoration: none;
  background: url(/top/jrticket/guide/img/pc_uketorimenubtn.png) no-repeat left 10px center;
  background-size: 29px 22px;
}
.l-page-header.-lower .l-page-header__button.-guide:hover {
  background-color: #fff;
}
.l-page-header.-lower[data-type=guide] {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.l-page-header.-other {
  background-color: transparent;
  text-align: center;
}
.l-page-header.-other .l-page-header__headline {
  min-height: auto;
  padding-block: 0;
}
.l-page-header .l-page-header__headline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 88px;
  padding-block: 12px 16px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.l-page-header .l-page-header__headline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  padding-inline: 6px;
  border-radius: 4px;
  background-color: var(--color-accent-secondary-light);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
}
.l-page-header .l-page-header__headline i {
  line-height: 1;
}
@media print, screen and (max-width: 749px) {
  .l-page-header.-lower .l-page-header__headline {
    font-size: 2rem;
  }
  .l-page-header.-lower .l-page-header__button.-guide {
    display: none;
  }
  .l-page-header .l-page-header__headline {
    font-size: 2rem;
  }
}

/* l-breadcrumb */
.l-breadcrumb {
  padding-top: 16px;
  padding-bottom: 16px;
}
.l-breadcrumb ol {
  letter-spacing: -0.4em;
  line-height: 1.2;
}
.l-breadcrumb li {
  display: inline;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: normal;
}
.l-breadcrumb li:not(:last-child)::after {
  content: "＞";
  margin-inline: 0.5em;
  font-weight: 400;
}
.l-breadcrumb a {
  color: var(--color-main-light);
  font-weight: 400;
}
.l-breadcrumb em {
  font-weight: bold;
  color: #000;
}
@media print, screen and (max-width: 749px) {
  .l-breadcrumb li {
    font-size: 1.1rem;
  }
}

/* --------------------------------------------------
 08: Footer Style
 -------------------------------------------------- */
/* l-nav-footer */
.l-nav-footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--color-accent-primary-lighter);
  color: var(--color-main-light);
}
.l-nav-footer .l-nav-footer__unit {
  max-width: 968px;
  margin-inline: auto;
}
.l-nav-footer .l-nav-footer__item:not(:first-child) {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}
.l-nav-footer .l-nav-footer__headline {
  width: 100%;
  font-weight: 700;
  line-height: 1.4;
  pointer-events: none;
  text-align: left;
}
.l-nav-footer .l-nav-footer__headline i {
  display: none;
}
.l-nav-footer .l-nav-footer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 80px;
  margin-top: 16px;
}
.l-nav-footer .l-nav-footer__list li {
  margin: 4px 0 0;
}
.l-nav-footer .l-nav-footer__list li:nth-child(-n+2) {
  margin-top: 0;
}
.l-nav-footer .l-nav-footer__list a {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  font-size: 1.4rem;
  color: var(--color-main-light);
}
@media print, screen and (max-width: 749px) {
  .l-nav-footer .l-nav-footer__list a {
    font-size: 1.6rem;
  }
}
.l-nav-footer .l-nav-footer__list a::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 11px;
  background: url(/top/common/img/ico_link_arrow.svg) center/contain no-repeat;
}
.l-nav-footer .l-nav-footer__list a[target=_blank]::after {
  content: "";
  display: inline-block;
  margin: 0 0 0 5px;
  width: 13px;
  height: 11px;
  position: relative;
  top: 5px;
  background-color: var(--color-accent-primary);
  mask-image: url(/top/common/img/ico_window.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media print, screen and (max-width: 749px) {
  .l-nav-footer {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .l-nav-footer .l-nav-footer__unit {
    display: block;
  }
  .l-nav-footer .l-nav-footer__item:not(:first-child) {
    margin-top: 0;
    padding-top: 0;
  }
  .l-nav-footer .l-nav-footer__headline {
    position: relative;
    padding: 20px 0 20px 40px;
    pointer-events: auto;
    cursor: pointer;
  }
  .l-nav-footer .l-nav-footer__headline[aria-expanded=true] i::after {
    opacity: 0;
  }
  .l-nav-footer .l-nav-footer__headline i {
    display: block;
    position: absolute;
    top: 24px;
    left: 16px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: var(--color-accent-secondary);
  }
  .l-nav-footer .l-nav-footer__headline i::before, .l-nav-footer .l-nav-footer__headline i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    background-color: #fff;
    translate: -50% -50%;
    transition: 0.3s;
  }
  .l-nav-footer .l-nav-footer__headline i::after {
    rotate: 90deg;
  }
  .l-nav-footer .l-nav-footer__list {
    display: none;
    margin-top: 0;
  }
  .l-nav-footer .l-nav-footer__list li {
    border-top: 1px solid var(--border-color);
  }
  .l-nav-footer .l-nav-footer__list li:not(:first-child) {
    margin-top: 0;
  }
  .l-nav-footer .l-nav-footer__list a {
    display: block;
    padding: 20px 0 20px 28px;
  }
  .l-nav-footer .l-nav-footer__list a::before {
    top: 28px;
    left: 16px;
  }
}

/* l-bnr-app */
.l-bnr-app {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
  padding: 60px 32px 60px 40px;
  border-radius: 8px;
  background-color: #fff;
  color: var(--color-main-light);
}
.l-bnr-app .l-bnr-app__image {
  flex: 0 0 156px;
}
.l-bnr-app .l-bnr-app__contents {
  flex: 1;
}
.l-bnr-app .l-bnr-app__headline {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
.l-bnr-app .l-bnr-app__text {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  line-height: 1.4;
}
.l-bnr-app .l-bnr-app__list {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
@media print, screen and (max-width: 749px) {
  .l-bnr-app {
    display: block;
    margin-top: 24px;
    padding: 24px;
  }
  .l-bnr-app .l-bnr-app__image {
    position: relative;
    text-align: center;
  }
  .l-bnr-app .l-bnr-app__image::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 32px;
    left: 0;
    border-top: 1px solid var(--border-color);
  }
  .l-bnr-app .l-bnr-app__image img {
    position: relative;
    z-index: 3;
  }
  .l-bnr-app .l-bnr-app__contents {
    margin-top: 24px;
  }
  .l-bnr-app .l-bnr-app__headline {
    font-size: 2rem;
  }
  .l-bnr-app .l-bnr-app__text {
    padding-top: 0;
    border-top: 0;
  }
  .l-bnr-app .l-bnr-app__list {
    justify-content: center;
    margin-top: 24px;
  }
}

/* l-nav-footer-utility */
.l-nav-footer-utility {
  position: relative;
  padding-top: 32px;
  padding-bottom: 16px;
  background-color: var(--ground-color-gray);
}
.l-nav-footer-utility .l-nav-footer-utility__link {
  max-width: var(--base-width);
  box-sizing: content-box;
  margin: 0 auto 20px;
  padding: 0 16px;
}
.l-nav-footer-utility .l-nav-footer-utility__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  min-height: 32px;
  border-radius: 4px;
  border: 1px solid var(--link-color);
  color: #fff;
  background-color: var(--link-color);
  font-size: 1.2rem;
  font-weight: 700;
}
.l-nav-footer-utility .l-nav-footer-utility__link a:hover {
  background-color: #337BB3;
  color: #fff;
  text-decoration: none;
}
.l-nav-footer-utility .l-nav-footer-utility__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 0;
  max-width: 936px;
  margin-inline: auto;
}
.l-nav-footer-utility .l-nav-footer-utility__list li {
  padding-inline: clamp(24px, -24px + 6.4vw, 40px);
  font-size: 1.2rem;
}
.l-nav-footer-utility .l-nav-footer-utility__list li {
  border-left: 1px solid var(--border-color);
}
.l-nav-footer-utility .l-nav-footer-utility__list li.is-bdn {
  border-left: none;
}
.l-nav-footer-utility .l-nav-footer-utility__list li:nth-child(n+5) {
  padding-inline: clamp(12px, -72px + 11.2vw, 40px);
}
.l-nav-footer-utility .l-nav-footer-utility__list a {
  color: var(--color-main);
}
.l-nav-footer-utility .l-nav-footer-utility__list a[target="_blank"]::after {
  content: "";
  display: inline-block;
  margin: 0 0 0 5px;
  width: 13px;
  height: 11px;
  position: relative;
  top: 5px;
  background-color: var(--color-main);
  mask-image: url(/top/common/img/ico_window.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  transform: translateY(-50%);
  transition: 0.3s;
}
.l-nav-footer-utility .l-copyright {
  margin-bottom: -16px;
  padding-top: 40px;
}
@media print, screen and (max-width: 749px) {
  .l-nav-footer-utility {
    padding-top: 24px;
  }
  .l-nav-footer-utility .l-nav-footer-utility__link {
    margin-bottom: 40px;
  }
  .l-nav-footer-utility .l-nav-footer-utility__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
  }
  .l-nav-footer-utility .l-nav-footer-utility__list li {
    padding-inline: 0;
    font-size: 1.2rem;
  }
  .l-nav-footer-utility .l-nav-footer-utility__list li:not(:nth-child(4n+1)) {
    border-left: 0;
  }
  .l-nav-footer-utility .l-nav-footer-utility__list li:nth-child(n+5) {
    padding-inline: 0;
  }
}

/* l-copyright */
.l-copyright {
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: var(--ground-color-gray);
  color: var(--color-gray);
  font-size: 1.1rem;
  text-align: center;
}

/*=========================================
チャットボット
=========================================*/
#btn_chatbot {
  position: fixed;
  z-index: 1500;
  right: 20px;
  bottom: 50px;
}

@media only screen and (max-width: 749px) {
  #btn_chatbot {
    right: -70px;
    bottom: 70px;
  }
}
#btn_chatbot > a {
  display: block;
  width: 185px;
  height: 185px;
  background-image: url(/top/common/img/chatbot/btn_chatbot_l_pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/*202307*/
#btn_chatbot > a:focus {
  outline: solid 2px #06c !important;
}

@media only screen and (max-width: 749px) {
  #btn_chatbot > a {
    width: 65px;
    height: 94px;
    background-image: url(/top/common/img/chatbot/btn_chatbot_sp.png);
  }
}
#btn_chatbot.small {
  right: 35px;
  bottom: 55px;
}

#btn_chatbot.small > a {
  width: 103px;
  height: 67px;
  background-image: url(/top/common/img/chatbot/btn_chatbot_s_pc.png);
}

#btn_chatbot.active {
  bottom: 150px;
}

#btn_chatbot_switch {
  /*202307*/
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  position: fixed;
  z-index: 1510;
  right: 30px;
  bottom: 195px;
  width: 28px;
  height: 28px;
  background-image: url(/top/common/img/chatbot/btn_chatbot_switch.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  cursor: pointer;
}

/*202307*/
#btn_chatbot_switch:focus {
  outline: solid 2px #06c !important;
  outline-offset: 1px;
}

#btn_chatbot_switch:hover {
  background-image: url(/top/common/img/chatbot/btn_chatbot_switch_ov.svg);
}

@media only screen and (max-width: 749px) {
  #btn_chatbot_switch {
    display: none;
  }
}
/* --------------------------------------------------
 09:  Component
 -------------------------------------------------- */
/* AREA
------------------------------ */
/* c-area-header */
.c-area-header {
  padding-top: 16px;
}
.c-area-header > * + * {
  margin-top: 24px;
}
.c-area-header .c-anchor {
  margin-top: 32px;
}
@media print, screen and (max-width: 749px) {
  .c-area-header {
    padding-bottom: 12px;
  }
  .c-area-header .c-anchor {
    margin-top: 24px;
  }
}

/* c-area-common */
.c-area-common {
  padding-top: 40px;
  padding-bottom: 40px;
}
.c-area-common#info_new,
.c-area-common#ticket_info,
.c-area-common#info {
  padding-top: 60px;
}
.c-area-common#info_new {
  padding-bottom: 0;
}
.c-area-common.-bg-yellow, .c-area-common.-bg-green {
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
}
.c-area-common.-bg-yellow {
  background-color: var(--ground-color-yellow);
}
.c-area-common.-bg-green {
  background-color: var(--ground-color-green);
}
.c-area-common:last-child {
  padding-bottom: 80px;
}
.c-area-common > * + * {
  margin-top: 24px;
}
.c-area-common .c-headline-02:not(:first-child) {
  margin-top: 40px;
}
.c-area-common .c-headline-02 ~ .c-area-common .c-headline-02 {
  margin-top: 64px;
}
.c-area-common .c-headline-03:not(:first-child) {
  margin-top: 32px;
}
.c-area-common .c-headline-05 + * {
  margin-top: 16px;
}
.c-area-common .c-list-notes:not(:first-child) {
  margin-top: 8px;
}
.c-area-common .c-list-btn:not(:first-child) {
  margin-top: 16px;
}
.c-area-common .c-list-btn:not(:first-child)[data-align=center] {
  margin-top: 40px;
}
@media print, screen and (max-width: 749px) {
  .c-area-common {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .c-area-common#info_new,
  .c-area-common#ticket_info,
  .c-area-common#info {
    padding-top: 48px;
  }
  .c-area-common:last-child {
    padding-bottom: 56px;
  }
  .c-area-common .c-headline-02:not(:first-child) {
    margin-top: 24px;
  }
  .c-area-common .c-headline-02 ~ .c-area-common .c-headline-02 {
    margin-top: 40px;
  }
  .c-area-common .c-list-btn:not(:first-child)[data-align=center] {
    margin-top: 24px;
  }
}

/* BLOCK
------------------------------ */
/* c-block-common */
.c-block-common.-bg-yellow {
  margin: 40px calc(50% - 50vw) -40px;
  padding: 40px calc(50vw - 50%);
  background-color: var(--ground-color-yellow);
}
.c-block-common > * + * {
  margin-top: 24px;
}
@media print, screen and (max-width: 749px) {
  .c-block-common.-bg-yellow {
    margin-block: 28px -28px;
    padding-block: 28px;
  }
  .c-block-common .c-image-01 {
    margin-top: 12px;
  }
  .c-block-common .c-list-notes {
    margin-top: 8px;
  }
}

/* c-block-btn */
.c-block-btn {
  max-width: 702px;
  margin-inline: auto;
}
.c-block-btn > * + * {
  margin-top: 16px;
}

/* c-block-flow */
.c-block-flow {
  margin-top: 32px;
}
.c-block-flow .c-block-flowr__list {
  display: flex;
  gap: 44px;
}
.c-block-flow .c-block-flow__item {
  position: relative;
  flex: 1;
  margin-right: 3px;
  margin-bottom: 3px;
  padding: 16px;
  border: 1px solid var(--color-accent-primary-light);
  border-radius: 8px;
  background-color: #fff;
  text-align: center;
}
.c-block-flow .c-block-flow__item.-important {
  position: relative;
}
.c-block-flow .c-block-flow__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 8px;
  background-image: linear-gradient(45deg, #fff 25%, var(--color-accent-primary-medium) 25%, var(--color-accent-primary-medium) 50%, #fff 50%, #fff 75%, var(--color-accent-primary-medium) 75%, var(--color-accent-primary-medium));
  background-size: 4px 4px;
  transform: translate(4px, 4px);
}
.c-block-flow .c-block-flow__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -32px;
  width: 16px;
  height: 26px;
  background: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI2IiB2aWV3Qm94PSIwIDAgMTYgMjYiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMTQuOTQxMiAxMi41Mjg2Yy40Mjg2LjM5Ni40Mjg2IDEuMDczMiAwIDEuNDY5MWwtMTIuNTI2MjMgMTEuNTcxM2MtLjY0MDQ4LjU5MTctMS42Nzg1NS4xMzc0LTEuNjc4NTQ5LS43MzQ1bC4wMDAwMDEtMjMuMTQyNThjMC0uODcxOTM2IDEuMDM4MDY4LTEuMzI2MjA2IDEuNjc4NTQ4LS43MzQ1NTZ6IiBmaWxsPSIjMDA3YTUyIi8+PC9zdmc+) center/contain no-repeat;
  transform: translateY(-50%);
}
.c-block-flow .c-block-flow__label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 3;
  width: 84px;
  height: 84px;
  border-radius: 100%;
  background-color: var(--color-accent-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  transform: translateX(50%);
}
.c-block-flow .c-block-flow__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 100px;
}
.c-block-flow .c-block-flow__headline {
  margin-top: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-block-flow .c-block-flow__headline span {
  display: block;
  font-size: 1.4rem;
}
.c-block-flow .c-block-flow__link {
  margin-top: 12px;
}
.c-block-flow .c-block-flow__link li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.c-block-flow .c-block-flow__link li:not(:first-child) {
  margin-top: 8px;
}
@media print, screen and (max-width: 749px) {
  .c-block-flow .c-block-flowr__list {
    flex-direction: column;
    gap: 40px;
  }
  .c-block-flow .c-block-flow__item:not(:first-child)::before {
    top: -32px;
    left: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: 0 50%;
  }
  .c-block-flow .c-block-flow__label {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -28px;
    right: -12px;
    transform: none;
  }
  .c-block-flow .c-block-flow__image {
    min-height: auto;
  }
  .c-block-flow .c-block-flow__headline {
    margin-top: 12px;
    font-size: 2.2rem;
  }
  .c-block-flow .c-block-flow__link li {
    text-align: center;
  }
}

/* c-block-point */
.c-block-point {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px 16px;
  margin-top: 68px;
}
.c-block-point .c-block-point__item {
  position: relative;
  padding: 56px 24px 24px;
  border: 1px solid var(--color-accent-primary-medium);
  border-radius: 4px;
  background-color: var(--color-accent-primary-lightest);
}
.c-block-point .c-block-point__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 72px;
  border: 5px solid #fff;
  border-radius: 100%;
  background-color: var(--color-accent-primary-lighter);
  text-align: center;
  translate: -50% -50%;
}
.c-block-point .c-block-point__headline {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.c-block-point .c-block-point__text {
  margin-top: 24px;
  color: var(--color-main-light);
}
.c-block-point .c-block-point__link {
  margin-top: 24px;
}
.c-block-point .c-block-point__link li:not(:first-child) {
  margin-top: 8px;
}
.c-block-point .c-list-notes:not(:first-child) {
  margin-top: 20px;
}
@media print, screen and (max-width: 749px) {
  .c-block-point {
    grid-template-columns: 1fr;
  }
  .c-block-point .c-block-point__item {
    padding: 48px 16px 16px;
  }
}

/* c-block-products */
.c-block-products {
  text-align: center;
}

/* c-block-app */
.c-block-app {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 80px;
  padding: 52px 40px;
  border: 1px solid var(--color-gray-lightest);
  border-radius: 8px;
}
.c-block-app.-bg {
  border: 0;
  background-color: var(--color-accent-primary-lightest);
}
.c-list-01 + .c-block-app {
  margin-top: 40px;
}
.c-block-app .c-block-app__image {
  flex: 0 0 156px;
  text-align: center;
}
.c-block-app .c-block-app__contents {
  flex: 1;
}
.c-block-app .c-block-app__headline {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-block-app .c-block-app__text {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  line-height: 1.4;
}
.c-block-app .c-block-app__list {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
@media print, screen and (max-width: 749px) {
  .c-block-app {
    display: block;
    margin-top: 40px;
    padding: 24px;
  }
  .c-block-app.-bg {
    border: 0;
    background-color: var(--color-accent-primary-lighter);
  }
  .c-block-app.-bg .c-block-app__image {
    position: relative;
    text-align: center;
  }
  .c-block-app.-bg .c-block-app__image::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 32px;
    left: 0;
    border-top: 1px solid var(--border-color);
  }
  .c-block-app.-bg .c-block-app__image img {
    position: relative;
    z-index: 3;
  }
  .c-block-app.-bg .c-block-app__text {
    margin-top: 8px;
    padding-top: 0;
    border-top: 0;
  }
  .c-list-01 + .c-block-app {
    margin-top: 20px;
  }
  .c-block-app .c-block-app__contents {
    margin-top: 24px;
  }
  .c-block-app .c-block-app__headline {
    font-size: 2rem;
    text-align: center;
  }
  .c-block-app .c-block-app__text {
    margin-top: 24px;
    padding-top: 24px;
  }
  .c-block-app .c-block-app__list {
    justify-content: center;
    margin-top: 24px;
  }
}

/* c-block-search */
.c-block-search {
  max-width: 702px;
  margin-inline: auto;
}
.c-block-search .c-block-search__station {
  display: flex;
  gap: 16px;
}
.c-block-search .c-block-search__station-item {
  flex: 1;
}
.c-block-search .c-block-search__date {
  display: flex;
  gap: 16px;
}
.c-block-search .c-block-search__date-item {
  display: flex;
  gap: 8px;
  flex: 1;
}
.c-block-search .c-block-search__people {
  display: flex;
  gap: 24px;
}
.c-block-search .c-block-search__people-list {
  display: flex;
  gap: 8px;
}
.c-block-search .c-block-search__people-list li {
  width: 220px;
}
.c-block-search .c-block-search__people-group p {
  color: var(--color-accent-primary);
  font-size: 1.4rem;
}
.c-block-search .c-block-search__people-group .c-icon-help {
  font-size: 1.3rem;
}
.c-block-search .c-block-search__btn {
  margin-top: 24px;
}
.c-block-search > * + *,
.c-block-search > form > * + * {
  margin-top: 16px;
}
@media print, screen and (max-width: 749px) {
  .c-block-search .c-block-search__station {
    flex-direction: column;
    gap: 12px;
  }
  .c-block-search .c-block-search__date {
    flex-direction: column;
    gap: 12px;
  }
  .c-block-search .c-block-search__date-item {
    gap: 16px;
  }
  .c-block-search .c-block-search__people {
    flex-direction: column;
    gap: 8px;
  }
  .c-block-search .c-block-search__people-list {
    gap: 16px;
  }
  .c-block-search .c-block-search__people-list li {
    flex: 1;
    width: auto;
  }
  .c-block-search .c-block-search__people-group {
    width: fit-content;
    margin-left: auto;
    text-align: right;
  }
}

/* BOX
------------------------------ */
/* c-box-01 */
.c-box-01 {
  padding: 16px;
  border-radius: 4px;
  background-color: var(--ground-color-gray);
}
.c-box-01.-information {
  background-color: var(--ground-color-yellow);
}
.c-box-01.-caution {
  background-color: var(--color-accent-red-lightest);
}
.c-box-01.-accent {
  background-color: var(--color-accent-primary-lighter);
}
.c-box-01.-advance {
  background-color: #edf6f2;
}
.c-box-01 > * + * {
  margin-top: 16px;
}

/* c-box-02 */
.c-box-02 {
  position: relative;
  flex: 1;
  margin-right: 3px;
  margin-bottom: 3px;
  padding: 24px;
  border: 1px solid var(--color-gray-lightest);
  border-radius: 8px;
  background-color: #fff;
  color: var(--color-main-light);
}
.c-box-02::after {
  content: "";
  position: absolute;
  inset: 4px 0 0;
  z-index: -1;
  border-radius: 8px;
  background-image: linear-gradient(45deg, #fff 25%, var(--color-accent-primary-medium) 25%, var(--color-accent-primary-medium) 50%, #fff 50%, #fff 75%, var(--color-accent-primary-medium) 75%, var(--color-accent-primary-medium));
  background-size: 4px 4px;
  transform: translate(4px, 4px);
}
.c-box-02 > * + * {
  margin-top: 16px;
}
@media print, screen and (max-width: 749px) {
  .c-box-02 {
    padding: 16px;
  }
}

/* c-box-information */
.c-box-information {
  padding: 8px;
  border-radius: 4px;
  border: 2px solid var(--color-accent-red);
  background-color: #fff;
}
.c-box-information .c-box-information__hdg {
  position: relative;
  padding-left: 32px;
  font-size: 1.4rem;
}
.c-box-information .c-box-information__hdg::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 24px;
  height: 24px;
  background: url(/top/common/img/ico_circle_caution.svg) center/contain no-repeat;
}
.c-box-information .c-box-information__txt {
  margin-top: 4px;
  line-height: 1.5;
}
@media print, screen and (max-width: 749px) {
  .c-box-information {
    border: 0;
  }
  .c-box-information .c-box-information__txt {
    font-size: 1.4rem;
  }
}

/* c-box-border */
.c-box-border {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--color-accent-primary);
}
.c-box-border.-gray {
  border-color: var(--color-gray-lightest);
}
@media print, screen and (max-width: 749px) {
  .c-box-border .c-list-notes li {
    font-size: 1.1rem;
  }
}

/* c-box-related */
.c-box-related {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--color-gray-lightest);
}
.c-box-related.-tips dt {
  background-color: var(--color-accent-blue-lightest);
  color: var(--color-accent-blue);
}
.c-box-related.-tips dt::before {
  width: 13px;
  height: 18px;
  background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2013%2018%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E.st0%7Bfill%3A%23a7c1d6%3B%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M6.5%2C18c-2.3%2C0-4.2-1.8-4.2-4.1v-2.7C0.9%2C10%2C0%2C8.2%2C0%2C6.3C0%2C2.8%2C2.9%2C0%2C6.5%2C0C10.1%2C0%2C13%2C2.8%2C13%2C6.3c0%2C1.9-0.9%2C3.7-2.3%2C4.9v2.7C10.7%2C16.2%2C8.8%2C18%2C6.5%2C18z%20M6.5%2C1.8c-2.6%2C0-4.6%2C2-4.6%2C4.5c0%2C1.5%2C0.7%2C2.8%2C1.9%2C3.7l0.4%2C0.3v3.7c0%2C1.2%2C1%2C2.2%2C2.3%2C2.2c1.3%2C0%2C2.3-1%2C2.3-2.2v-3.7L9.2%2C10c1.2-0.8%2C1.9-2.2%2C1.9-3.7C11.1%2C3.8%2C9.1%2C1.8%2C6.5%2C1.8z%22%2F%3E%3Crect%20x%3D%223.8%22%20y%3D%2213.1%22%20class%3D%22st0%22%20width%3D%225.4%22%20height%3D%221.8%22%2F%3E%3Crect%20x%3D%226%22%20y%3D%229.2%22%20class%3D%22st0%22%20width%3D%221%22%20height%3D%223.9%22%2F%3E%3Crect%20x%3D%224.8%22%20y%3D%228.5%22%20class%3D%22st0%22%20width%3D%223.4%22%20height%3D%221.3%22%2F%3E%3C%2Fsvg%3E);
}
.c-box-related dt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  background-color: var(--color-accent-primary-lighter);
  color: var(--color-accent-primary);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
.c-box-related dt::before {
  content: "";
  width: 14px;
  height: 16px;
  background: url(/top/common/img/ico_clip.svg) center/contain no-repeat;
}
.c-box-related dd {
  padding: 24px;
}
.c-box-related .c-link-arrow[target=_blank]::after {
  display: none;
}
@media print, screen and (max-width: 749px) {
  .c-box-related dd {
    padding: 16px;
  }
}

/* ANCHOR
------------------------------ */
/* c-anchor */
.c-anchor[data-col="3"] ol, .c-anchor[data-col="3"] ul {
  grid-template-columns: repeat(3, 1fr);
}
.c-anchor[data-col="4"] ol, .c-anchor[data-col="4"] ul {
  grid-template-columns: repeat(4, 1fr);
}
.c-anchor[data-col="5"] ol, .c-anchor[data-col="5"] ul {
  grid-template-columns: repeat(5, 1fr);
}
.c-anchor ol, .c-anchor ul {
  display: grid;
  gap: 16px;
}
.c-anchor a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 88px;
  height: 100%;
  padding: 16px 12px 24px;
  border: 1px solid var(--color-gray-light);
  border-radius: 8px;
  background-color: var(--btn-color);
  color: var(--color-mai-light);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
.c-anchor a:has(.c-anchor__label) {
  padding-top: 44px;
  line-height: 1.3;
}
.c-anchor a::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 12px;
  height: 7px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEyIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMC41IDFMNiA1LjVMMS41IDEiIHN0cm9rZT0iIzAwN0E1MiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K) center/contain no-repeat;
  transform: translateX(-50%);
  transition: 0.3s;
}
.c-anchor a:hover {
  background-color: var(--btn-color-hover);
  text-decoration: none;
}
.c-anchor a:hover::before {
  translate: 0 3px;
}
.c-anchor a .c-anchor__label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 14px;
  right: 0;
  left: 0;
  width: fit-content;
  min-height: 22px;
  margin-inline: auto;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: var(--color-accent-primary);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}
@media print, screen and (max-width: 749px) {
  .c-anchor[data-col] ol, .c-anchor[data-col] ul {
    grid-template-columns: 1fr;
  }
  .c-anchor[data-col="5"] ol, .c-anchor[data-col="5"] ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-anchor[data-col="5"] a {
    justify-content: center;
    padding: 16px 16px 24px;
    text-align: center;
  }
  .c-anchor[data-col="5"] a:has(.c-anchor__label) {
    padding-top: 40px;
  }
  .c-anchor[data-col="5"] a::before {
    left: 50%;
    bottom: 6px;
    top: auto;
    right: auto;
    transform: translateX(-50%);
  }
  .c-anchor[data-col="5"] a .c-anchor__label {
    position: absolute;
    top: 12px;
    right: 0;
    left: 0;
    width: fit-content;
    margin-inline: auto;
  }
  .c-anchor ol, .c-anchor ul {
    gap: 8px;
  }
  .c-anchor a {
    justify-content: flex-start;
    min-height: 48px;
    padding: 16px 48px 16px 16px;
    text-align: left;
  }
  .c-anchor a:has(.c-anchor__label) {
    gap: 16px;
    padding-top: 16px;
  }
  .c-anchor a::before {
    top: 50%;
    right: 16px;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
  }
  .c-anchor a .c-anchor__label {
    display: inline-flex;
    position: static;
    flex-shrink: 0;
    width: auto;
    margin-inline: 0;
  }
}

/* HEADLINE
------------------------------ */
/* c-headline-01 */
.c-headline-01 {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-headline-01::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background-image: linear-gradient(var(--color-accent-secondary) 20px, var(--color-accent-primary) 21px);
  border-radius: 4px;
}
@media print, screen and (max-width: 749px) {
  .c-headline-01 {
    padding-block: 0;
  }
  .c-headline-01::before {
    background-image: linear-gradient(var(--color-accent-secondary) 14px, var(--color-accent-primary) 15px);
  }
}

/* c-headline-02 */
.c-headline-02 {
  position: relative;
  padding-bottom: 16px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-headline-02.-line {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 3.0rem;
  text-align: center;
}
.c-headline-02.-line + * {
  margin-top: 36px !important;
}
.c-headline-02.-line::before {
  content: none;
}
.c-headline-02.-line::after {
  bottom: 0;
  right: 0;
  width: 66px;
  height: 3px;
  margin-inline: auto;
  border-radius: 0;
  background: url(/top/common/img/line-dot.svg) center/contain no-repeat;
}
.c-headline-02.-number {
  padding-bottom: 0;
  padding-left: 52px;
}
.c-headline-02.-number::before, .c-headline-02.-number::after {
  content: none;
}
.c-headline-02.-number span, .c-headline-02.-number i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -3px;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--color-accent-primary);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}
.c-headline-02.-point span, .c-headline-02.-point i {
  display: flex;
  width: fit-content;
  margin-bottom: 8px;
  margin-left: 0;
}
.c-headline-02::before, .c-headline-02::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 4px;
}
.c-headline-02::before {
  right: 0;
  background-color: var(--color-gray-light);
}
.c-headline-02::after {
  width: 174px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to right, var(--color-accent-secondary) 44px, transparent 44px, transparent 45px, var(--color-accent-primary) 45px, var(--color-accent-primary) 100%);
}
.c-headline-02 span, .c-headline-02 i {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: var(--color-accent-primary);
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  vertical-align: calc(50% - 0.6em);
}
@media print, screen and (max-width: 749px) {
  .c-headline-02 {
    font-size: 2.2rem;
  }
  .c-headline-02.-line {
    font-size: 2.2rem;
  }
  .c-headline-02.-line + * {
    margin-top: 24px !important;
  }
  .c-headline-02.-line::after {
    width: 44px;
    height: 2px;
  }
  .c-headline-02 span, .c-headline-02 i {
    display: flex;
    width: fit-content;
    margin-top: 8px;
    margin-left: 0;
    font-size: 1.6rem;
  }
}

/* c-headline-03 */
.c-headline-03 {
  position: relative;
  padding-left: 24px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-headline-03:has(.c-link-arrow) {
  display: flex;
  align-items: baseline;
  gap: 8px 16px;
  font-size: 1.6rem;
  font-weight: 400;
}
.c-headline-03::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  border-radius: 8px;
  background-color: var(--color-accent-primary);
}
.c-headline-03 span {
  font-size: 1.8rem;
}
.c-headline-03 i {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: var(--color-accent-primary);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  vertical-align: calc(50% - 0.5em);
}
.c-headline-03 .c-link-arrow {
  font-weight: 400;
}
.c-headline-03[data-margin=l] {
  margin-top: 42px !important;
}
@media print, screen and (max-width: 749px) {
  .c-headline-03:has(.c-link-arrow) {
    flex-direction: column;
  }
  .c-headline-03 i {
    display: flex;
    width: fit-content;
    margin-top: 8px;
    margin-left: 0;
  }
}

/* c-headline-04 */
.c-headline-04 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-headline-04:has(.c-link-arrow) {
  display: flex;
  align-items: baseline;
  gap: 8px 16px;
}
.c-headline-04 span {
  font-size: 1.6rem;
}
.c-headline-04 span.-limited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  min-height: 20px;
  padding-inline: 16px;
  border-radius: 20px;
  background-color: var(--color-accent-red);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  vertical-align: calc(50% - 0.5em);
}
.c-headline-04 i {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: var(--color-accent-primary);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  vertical-align: calc(50% - 0.5em);
}
.c-headline-04 .c-link-arrow {
  font-weight: 400;
}
@media print, screen and (max-width: 749px) {
  .c-headline-04 {
    font-size: 1.8rem;
  }
  .c-headline-04:has(.c-link-arrow) {
    flex-direction: column;
  }
  .c-headline-04 i {
    display: flex;
    width: fit-content;
    margin-top: 8px;
    margin-left: 0;
  }
}

/* c-headline-05 */
.c-headline-05 {
  font-weight: 700;
  line-height: 1.4;
}

/* c-headline-step */
.c-headline-step {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.c-headline-step span, .c-headline-step i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  margin: 0 auto 12px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: var(--color-accent-primary);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
}

/* TEXT
------------------------------ */
/* c-text-01 */
.c-text-01 p.-light {
  color: var(--color-gray);
  font-size: 1.4rem;
}
.c-text-01 p.-light strong {
  font-weight: 400;
}
.c-text-01 p:not(:first-child) {
  margin-top: 0.75em;
}
.c-text-01 p img {
  vertical-align: text-bottom;
}
.c-text-01 .c-text-01__label {
  margin: 0 3px 0 0;
  padding: 3px 5px;
  font-size: 1.2rem;
  color: #000;
  line-height: 1;
  display: inline-block;
  border-radius: 5px;
  background: #fdff62;
}
.c-text-01 .c-list-notes {
  margin-top: 8px;
}
@media print, screen and (max-width: 749px) {
  .c-text-01 p.-light {
    font-size: 1.2rem;
  }
}

/* c-text-seat */
.c-text-seat {
  padding: 0 0 0 19px;
  font-weight: bold;
  color: #366ead;
  position: relative;
}
.c-text-seat::before, .c-text-seat::after {
  position: absolute;
  top: 50%;
  content: "";
}
.c-text-seat::before {
  width: 15px;
  height: 15px;
  margin: -7px 0 0;
  left: 0;
  border-radius: 50%;
  background: #366ead;
}
.c-text-seat::after {
  width: 7px;
  height: 1px;
  margin-top: 1px;
  left: 4px;
  background: #fff;
}

/* c-text-check */
.c-text-check dt,
.c-text-check dd {
  font-size: 2rem;
  line-height: 1.4;
}
.c-text-check dt {
  display: flex;
  align-items: baseline;
  position: relative;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 700;
}
.c-text-check dt::before {
  content: "";
  width: 28px;
  height: 24px;
  background: url(/top/common/img/ico_caution.svg) center/contain no-repeat;
  transform: translateY(3px);
}
.c-text-check dd {
  font-size: 1.8rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 16px;
  color: var(--color-main-light);
}
.c-text-check dd:last-child {
  margin-bottom: 0;
}
.c-text-check dd::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--color-accent-red);
}
.c-text-check .c-list-01 {
  margin: 10px 0 0;
}
.c-text-check .c-list-01 li {
  font-size: 1.6rem;
}
@media print, screen and (max-width: 749px) {
  .c-text-check dt,
  .c-text-check dd {
    font-size: 1.8rem;
  }
  .c-text-check dt {
    width: fit-content;
    margin-inline: auto;
  }
  .c-text-check dd::before {
    top: 9px;
  }
}

/* BUTTON
------------------------------ */
/* c-btn */
.c-btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 342px;
  /* ↓↓【デザインリニューアル】トップページ↓↓ */
  /* height: 100%; */
  /* ↑↑【デザインリニューアル】トップページ↑↑ */
  min-height: 64px;
  margin-inline: auto;
  padding: 6px 8px;
  border: 1px solid var(--color-gray-lightest);
  border-radius: 4px;
  color: var(--color-main-light);
  background-color: var(--btn-color);
  font-weight: 700;
  line-height: 1.4;
}
.c-btn[href*=".pdf"] {
  padding-right: 40px;
}
.c-btn[href*=".pdf"]:has(span) {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.c-btn[href*=".pdf"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 14px;
  height: 15px;
  background: url(/top/common/img/ico_pdf.svg) center/contain no-repeat;
  transform: translateY(-50%);
}
.c-btn:hover {
  background-color: var(--btn-color-hover);
  color: var(--color-main-light);
  text-decoration: none;
}
.c-btn.-border, .c-btn.-entry, .c-btn.-signup, .c-btn.-setting {
  text-align: center;
  justify-content: center;
}
.c-btn.-border::after, .c-btn.-entry::after, .c-btn.-signup::after, .c-btn.-setting::after {
  content: none;
}
.c-btn.-border {
  font-size: 1.6rem;
  gap: 12px;
  border-color: var(--color-accent-primary);
  background-color: #fff;
  box-shadow: none;
  color: var(--color-accent-primary);
}
.c-btn.-border:hover {
  color: #fff;
  background-color: var(--color-accent-primary);
}
.c-btn.-entry, .c-btn.-signup {
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1.8rem;
  transition: 0.3s;
}
.c-btn.-entry {
  border-color: var(--color-accent-blue);
  background-color: var(--color-accent-blue);
}
.c-btn.-entry[target*=_blank] {
  padding-inline: 40px;
}
.c-btn.-entry[target*=_blank]::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 20px;
  height: 17px;
  background-color: #fff;
  mask-image: url(/top/common/img/ico_window.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  transform: translateY(-50%);
  transition: 0.3s;
}
.c-btn.-entry:hover {
  border-color: #337BB3;
  background: #337BB3;
  /* opacity: 0.8; */
  /* background-color: #fff; */
  /*color: var(--color-accent-blue);*/
}
.c-btn.-entry:focus {
  outline-offset: 2px;
}
.c-btn.-entry.nonselect {
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  color: #a6a6a6;
  pointer-events: none;
}
.c-btn.-signup {
  border-color: var(--color-accent-primary);
  background-color: var(--color-accent-primary);
}
.c-btn.-signup[target*=_blank] {
  padding-inline: 40px;
}
.c-btn.-signup[target*=_blank]::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 20px;
  height: 17px;
  background-color: #fff;
  mask-image: url(/top/common/img/ico_window.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  transform: translateY(-50%);
  transition: 0.3s;
}
.c-btn.-signup[target*=_blank]:hover::after {
  background-color: var(--color-accent-primary);
}
.c-btn.-signup:hover {
  background-color: #fff;
  color: var(--color-accent-primary);
}
.c-btn.-setting, .c-btn.-guide, .c-btn.-tokudane, .c-btn.-index {
  max-width: none;
  border: 2px solid var(--color-accent-primary-medium);
  box-shadow: 2px 2px 0 #e0e0e0;
  font-size: 2rem;
}
.c-btn.-setting::before, .c-btn.-setting::after, .c-btn.-guide::before, .c-btn.-guide::after, .c-btn.-tokudane::before, .c-btn.-tokudane::after, .c-btn.-index::before, .c-btn.-index::after {
  content: "";
  position: absolute;
  transition: 0.3s;
}
.c-btn.-setting::before, .c-btn.-guide::before, .c-btn.-tokudane::before, .c-btn.-index::before {
  visibility: hidden;
  opacity: 0;
  inset: 0;
  border: 6px solid var(--color-accent-primary-medium);
}
.c-btn.-setting::after, .c-btn.-guide::after, .c-btn.-tokudane::after, .c-btn.-index::after {
  bottom: 12px;
  right: 16px;
  width: 7px;
  height: 11px;
  background: url(/top/common/img/ico_link_arrow.svg) center/contain no-repeat;
}
.c-btn.-setting:hover::before, .c-btn.-guide:hover::before, .c-btn.-tokudane:hover::before, .c-btn.-index:hover::before {
  visibility: visible;
  opacity: 1;
}
.c-btn.-setting:hover::after, .c-btn.-guide:hover::after, .c-btn.-tokudane:hover::after, .c-btn.-index:hover::after {
  translate: 3px;
}
.c-btn.-setting i, .c-btn.-guide i, .c-btn.-tokudane i, .c-btn.-index i {
  flex-shrink: 0;
  text-align: center;
}
.c-btn.-setting, .c-btn.-tokudane {
  gap: 8px;
  min-height: 104px;
  background-color: #fff;
  color: var(--color-accent-primary);
}
.c-btn.-setting i, .c-btn.-tokudane i {
  flex-basis: 106px;
}
.c-btn.-tokudane {
  gap: 20px;
  padding: 20px 35px;
}
.c-btn.-tokudane i,
.c-btn.-tokudane picture {
  flex-basis: 124px;
}
.c-btn.-guide {
  gap: 24px;
  min-height: 164px;
  padding: 20px 40px;
  background-color: var(--color-accent-primary-lightest);
}
.c-btn.-guide i,
.c-btn.-guide picture {
  flex-basis: 124px;
}
.c-btn.-index {
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-height: 164px;
  padding: 8px 24px;
  background-color: #fff;
  text-align: center;
}
.c-btn.-index i,
.c-btn.-index picture {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 76px;
}
.c-btn.-index span {
  font-weight: bold;
  font-size: inherit;
}
.c-btn.-index span.colorRed {
  color: var(--color-accent-red);
}
.c-btn.-icon {
  text-align: center;
  gap: 12px;
  max-width: none;
  min-height: 96px;
  padding: 8px 44px 8px 24px;
  border-width: 2px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: none;
  text-align: left;
}
.c-btn.-icon::before, .c-btn.-icon::after {
  content: "";
  position: absolute;
  transition: 0.3s;
}
.c-btn.-icon::before {
  visibility: hidden;
  opacity: 0;
  inset: 0;
  border: 6px solid var(--color-gray-lightest);
}
.c-btn.-icon::after {
  top: 50%;
  right: 20px;
  width: 9px;
  height: 16px;
  background: url(/top/common/img/ico_link_arrow.svg) center/contain no-repeat;
  transform: translateY(-50%);
}
.c-btn.-icon:hover::before {
  visibility: visible;
  opacity: 1;
}
.c-btn.-icon:hover::after {
  translate: 3px;
}
.c-btn.-icon i,
.c-btn.-icon picture {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  height: 44px;
  border-radius: 100%;
  background-color: #dfe24a;
  text-align: center;
}
.c-btn.-more {
  justify-content: center;
  max-width: 200px;
  min-height: 44px;
  padding-inline: 40px;
  border-radius: 44px;
  border: 1px solid;
  color: var(--color-accent-primary);
  background-color: var(--color-accent-primary-lighter);
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  transition: 0.3s;
}
.c-btn.-more:hover {
  border-color: var(--color-accent-primary);
  color: #fff;
  background-color: var(--color-accent-primary);
}
.c-btn.-more:focus {
  outline-offset: 2px;
}
.c-btn.-more i {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-color: var(--color-accent-secondary);
  translate: 0 -50%;
}
.c-btn.-more i::before, .c-btn.-more i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background-color: #fff;
  translate: -50% -50%;
  transition: 0.3s;
}
.c-btn.-more i::after {
  rotate: 90deg;
}
.c-btn.-search {
  justify-content: center;
  position: relative;
  max-width: 280px;
  height: auto;
  min-height: 44px;
  padding-inline: 40px;
  border-color: var(--color-accent-blue);
  border-radius: 44px;
  background-color: var(--color-accent-blue);
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
}
.c-btn.-search::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  mask-image: url(/top/common/img/ico_search.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  transform: translateY(-50%);
  transition: 0.3s;
}
.c-btn.-search:hover {
  background-color: #337BB3;
  color: #fff;
}
.c-btn span {
  font-size: 1.4rem;
  font-weight: 400;
}
@media print, screen and (max-width: 749px) {
  .c-btn {
    width: 100%;
  }
  .c-btn.-border {
    min-height: 44px;
  }
  .c-btn.-setting {
    padding-block: 28px;
  }
  .c-btn.-guide {
    gap: 20px;
    min-height: 132px;
    padding: 20px 32px 20px 20px;
  }
  .c-btn.-guide i,
  .c-btn.-guide picture {
    flex: 0 0 84px;
  }
  .c-btn.-index {
    gap: 8px;
    min-height: 96px;
    padding-inline: 20px;
    font-size: 1.2rem;
    letter-spacing: -0.08em;
  }
  .c-btn.-index::after {
    bottom: 12px;
    right: 9px;
  }
  .c-btn.-index i,
  .c-btn.-index picture {
    flex-basis: 48px;
    margin-inline: -4px;
  }
  .c-btn.-icon {
    min-height: 64px;
    padding-left: 16px;
    font-size: 1.4rem;
  }
  .c-btn.-icon i,
  .c-btn.-icon picture {
    flex-basis: 40px;
    height: 40px;
  }
}

/* LINK
------------------------------ */
/* c-link-arrow */
.c-link-arrow {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  color: var(--link-color);
}
.c-link-arrow[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 13px;
  margin-inline: 4px;
  background-color: var(--link-color);
  mask-image: url(/top/common/img/ico_window.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}
.c-link-arrow::before {
  content: "";
  position: absolute;
  /* ↓↓【デザインリニューアル】トップページ↓↓ */
  top: 0;
  left: 0;
  width: 7px;
  height: 1.5em;
  /* ↑↑【デザインリニューアル】トップページ↑↑ */
  background: url(/top/common/img/ico_link_arrow.svg) center/contain no-repeat;
}

/* c-link-blank */
.c-link-blank {
  color: var(--link-color);
}
.c-link-blank::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 13px;
  margin-inline: 4px;
  background-color: var(--link-color);
  mask-image: url(/top/common/img/ico_window.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}

/* c-link-anchor */
.c-link-anchor {
  position: relative;
  margin-right: 4px;
}
.c-link-anchor::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 10px;
  margin-left: 4px;
  background-color: var(--link-color);
  background: url(/top/common/img/ico_arrow_bottom.svg) center/contain no-repeat;
}
.c-link-anchor.-up::after {
  rotate: 180deg;
}

/* ICON
------------------------------ */
/* c-icon-caution */
.c-icon-caution {
  display: inline-block;
  position: relative;
  padding-left: 40px;
}
.c-icon-caution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  width: 25px;
  height: 22px;
  background: url(/top/common/img/ico_caution.svg) center/contain no-repeat;
}

/* c-icon-help */
.c-icon-help {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  color: var(--link-color);
  cursor: pointer;
  text-align: left;
  vertical-align: baseline;
}
.c-icon-help.-before::before {
  content: "";
  margin-right: 4px;
}
.c-icon-help.-before::after {
  content: none;
}
.c-icon-help::before, .c-icon-help::after {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/top/common/img/ico_circle_help.svg) center/contain no-repeat;
  translate: 0 0.15em;
}
.c-icon-help::after {
  content: "";
  margin-left: 4px;
}
.c-icon-help:hover {
  text-decoration: underline;
}

/* LIST
------------------------------ */
/* c-list-01 */
.c-list-01[data-align=center] {
  width: fit-content;
  margin-inline: auto;
}
.c-list-01 li:not(:first-child) {
  margin-top: 8px;
}
.c-list-btn + .c-list-01 {
  margin-top: 16px;
}
@media print, screen and (max-width: 749px) {
  .c-list-01[data-align=center] {
    margin-left: 0;
  }
}

/* c-list-02 */
.c-list-02 > div:not(:first-child) {
  margin-top: 24px;
}
.c-list-02 > div dt:has(img) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-list-02 > div dd {
  margin-top: 8px;
}
.c-list-02 > div dd img {
  vertical-align: middle;
}
.c-list-02 > div dd > * + * {
  margin-top: 4px;
}

/* c-list-03 */
.c-list-03 > div:not(:first-child) {
  margin-top: 16px;
}
.c-list-03 > div dd {
  margin-top: 8px;
}
.c-list-03 > div dd > * + * {
  margin-top: 4px;
}

/* c-list-indent */
.c-list-indent.-example dt {
  padding-left: 2.25em;
  text-indent: -2.25em;
}
.c-list-indent.-example dt::first-letter {
  margin-right: 0;
}
.c-list-indent.-example dd {
  margin-left: 2.25em;
}
.c-list-indent.-example > li {
  padding-left: 2.25em;
  text-indent: -2.25em;
}
.c-list-indent > div:not(:first-child) {
  margin-top: 8px;
}
.c-list-indent > div:last-child .c-image-01 {
  margin-bottom: 0;
}
.c-list-indent > div .c-image-01 {
  margin-bottom: 20px;
}
.c-list-indent dt {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.c-list-indent dt::first-letter {
  margin-right: 0.25em;
}
.c-list-indent dd {
  margin-top: 4px;
  margin-left: 1.25em;
}
.c-list-indent dd > * + * {
  margin-top: 8px;
}
.c-list-indent dd .c-list-indent {
  text-indent: 0;
}
.c-list-indent > li {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.c-list-indent > li::first-letter {
  margin-right: 0.25em;
}
.c-list-indent > li:not(:first-child) {
  margin-top: 8px;
}
.c-list-indent > li > * + * {
  margin-top: 8px;
}
.c-list-indent > li .c-list-indent {
  text-indent: 0;
}
.c-list-indent .c-list-notes:not(:first-child) {
  margin-top: 4px !important;
}

/* c-list-disc */
.c-list-disc {
  list-style: disc;
  margin-left: 1.5em;
}
.c-list-disc > li:not(:first-child) {
  margin-top: 8px;
}
.c-list-disc > li > * + * {
  margin-top: 16px;
}
.c-list-disc > li .c-list-notes {
  margin-top: 8px;
}
.c-list-disc > li .c-table-01 {
  margin-top: 15px;
}
.c-list-disc .c-list-01 {
  margin-top: 4px;
}

/* c-list-count */
.c-list-count {
  counter-reset: number;
}
.c-list-count.-number > li:nth-child(n+10) {
  padding-left: 1.75em;
}
.c-list-count.-number > li:nth-child(n+10)::before {
  width: 1.75em;
  margin-left: -1.75em;
}
.c-list-count.-circle-number > li {
  padding-left: 1.5em;
}
.c-list-count.-circle-number > li::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  margin-inline: -2em 0.5em;
  border: 1px solid;
  border-radius: 100%;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}
.c-list-count > li {
  counter-increment: number;
  padding-left: 1.25em;
}
.c-list-count > li::before {
  content: counter(number) ".";
  display: inline-block;
  width: 1.25em;
  margin-left: -1.25em;
}
.c-list-count > li:not(:first-child) {
  margin-top: 8px;
}
.c-list-count .c-list-01 {
  margin-top: 4px;
}

/* c-list-notes */
.c-list-notes.-count {
  counter-reset: number;
}
.c-list-notes.-count > li {
  counter-increment: number;
  padding-left: 2.25em;
}
.c-list-notes.-count > li::before {
  content: "※" counter(number);
  width: 2.25em;
  margin-left: -2.25em;
}
.c-list-notes.-style-none li {
  padding-left: 0;
}
.c-list-notes.-style-none li::before {
  content: none;
}
.c-list-notes.-attention li {
  color: var(--color-accent-red);
  font-weight: 700;
}
.c-list-notes.-attention li::before {
  color: var(--color-accent-red);
}
.c-list-notes.-center li {
  text-align: center;
}
.c-list-notes > li {
  position: relative;
  padding-left: 1.25em;
  color: var(--color-gray);
  font-size: 1.4rem;
}
.c-list-notes > li.-attention::before {
  color: var(--color-accent-red);
}
.c-list-notes > li::before {
  content: "※";
  display: inline-block;
  width: 1.25em;
  margin-left: -1.25em;
}
.c-list-notes > li:not(:first-child) {
  margin-top: 6px;
}
.c-list-notes > li.-green::before {
  width: 2.2em;
  color: var(--color-accent-primary);
  content: "[※]";
}
.c-list-notes[data-align=right] {
  text-align: right;
}
@media print, screen and (max-width: 749px) {
  .c-list-notes.-center li {
    text-align: left;
  }
}

/* c-list-caution */
.c-list-caution > li {
  position: relative;
  padding-left: 40px;
}
.c-list-caution > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  width: 25px;
  height: 22px;
  background: url(/top/common/img/ico_caution.svg) center/contain no-repeat;
}
.c-list-caution > li:not(:first-child) {
  margin-top: 16px;
}
.c-list-caution > li > * + * {
  margin-top: 12px;
}

/* c-list-inline */
.c-list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.c-list-inline.-icon {
  column-gap: 12px;
}
.c-list-inline.-icon li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-list-inline.-child {
  column-gap: 24px;
}
.c-list-inline.-child li {
  position: relative;
}
.c-list-inline.-child li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -12px;
  border-left: 1px solid var(--border-color);
}
.c-list-inline.-child .c-headline-04 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 78px;
  gap: 4px;
}
.c-list-inline[data-col] {
  display: grid;
}
.c-list-inline[data-col="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.c-list-inline[data-col="3"] {
  grid-template-columns: repeat(3, 1fr);
}
.c-list-inline[data-col="4"] {
  grid-template-columns: repeat(4, 1fr);
}
.c-list-inline[data-align=center] {
  justify-content: center;
}
.c-list-inline span {
  display: block;
  margin-top: 4px;
  text-align: center;
  font-size: 1.4rem;
}
.c-list-inline > div > * + * {
  margin-top: 16px;
}
@media print, screen and (max-width: 749px) {
  .c-list-inline {
    gap: 8px 12px;
  }
  .c-list-inline[data-col] {
    grid-template-columns: 1fr;
  }
  .c-list-inline[data-col-sp="2"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-list-inline[data-align=center] {
    gap: 16px;
  }
  .c-list-inline > div:not(:first-child) {
    margin-top: 16px;
  }
}
.c-list-inline[data-type=card] {
  max-width: 800px;
  margin: 0 auto;
}
.c-list-inline[data-type=card] li {
  text-align: center;
}

/* c-list-btn */
.c-list-btn {
  display: grid;
  gap: 16px;
}
.c-list-btn[data-col="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.c-list-btn[data-col="3"] {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.c-list-btn[data-col="4"] {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.c-list-btn[data-align=center] {
  justify-content: center;
  grid-template-columns: repeat(2, 342px);
}
.c-list-btn[data-align=center]:has(li:only-child) {
  grid-template-columns: 342px;
}
.c-list-btn[data-align=center].-start {
  align-items: flex-start;
}
.c-list-btn:has(.c-list-notes) .c-btn, .c-list-btn:has(.c-list-01) .c-btn {
  height: auto;
}
.c-list-btn .c-list-btn__note {
  margin: 10px 0 0 1em;
  font-size: 1.4rem;
  color: #707070;
  line-height: 1.5;
  text-indent: -1em;
  display: block;
}
.c-list-btn .c-btn {
  max-width: none;
}
.c-list-btn .c-list-notes li {
  width: fit-content;
  margin-inline: auto;
}
@media print, screen and (max-width: 749px) {
  .c-list-btn[data-col="2"], .c-list-btn[data-col="3"], .c-list-btn[data-col="4"], .c-list-btn[data-align=center] {
    grid-template-columns: 1fr;
  }
  .c-list-btn[data-col="2"] {
    gap: 16px;
  }
  .c-list-btn[data-col="3"], .c-list-btn[data-col="4"] {
    gap: 8px;
  }
  .c-list-btn[data-align=center] {
    gap: 12px;
  }
  .c-list-btn li:has(.c-btn.-signup):not(:first-child) {
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
  }
}

/* c-list-example */
.c-list-example dd {
  margin-top: 12px;
}

/* c-list-notice */
.c-list-notice {
  border-bottom: 1px solid var(--color-gray-lightest);
}
.c-list-notice > div {
  display: flex;
  gap: 4px;
  padding: 20px 16px;
  align-items: baseline;
  border-top: 1px solid var(--color-gray-lightest);
}
.c-list-notice dt {
  flex-shrink: 0;
}
.c-list-notice dd {
  flex: 1;
}
@media print, screen and (max-width: 749px) {
  .c-list-notice {
    border: none;
  }
  .c-list-notice > div {
    padding: 10px 0;
    display: block;
    border: none;
  }
}



/* IMAGE
------------------------------ */
/* c-image-01 */
.c-image-01 {
  text-align: center;
}
.c-image-01 span {
  display: block;
}
.c-image-01 span:not(:last-child) {
  margin-bottom: 4px;
}

/* LINE
------------------------------ */
/* c-line-01 */
.c-line-01 {
  margin-top: 32px;
  margin-bottom: 32px;
  border-top: 1px solid var(--border-color);
}
.c-line-01.-green {
  border-top-color: var(--color-accent-primary-light);
}
@media print, screen and (max-width: 749px) {
  .c-line-01 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* c-line-arrow */
.c-line-arrow {
  margin: 16px auto;
  width: 38px;
  height: 15px;
  border-top: 0;
  background: url(/top/common/img/ico_arrow_bottom.svg) center/100% 100% no-repeat;
}
.c-line-arrow + * {
  margin-top: 0;
}

/* UNIT
------------------------------ */
/* c-unit-01 */
.c-unit-01 {
  display: flex;
  gap: 50px;
}
.c-unit-01.-right .c-unit-01__image {
  order: 2;
}
.c-unit-01.-right .c-unit-01__contents {
  order: 1;
}
.c-unit-01[data-items=center] {
  place-items: center;
}
.c-unit-01 .c-unit-01__image {
  text-align: center;
}
.c-unit-01 .c-unit-01__caption {
  margin: 10px 0 0 0;
  font-size: 1.4rem;
  color: var(--color-gray);
  text-align: right;
  display: block;
}
.c-unit-01 .c-unit-01__contents {
  flex: 1;
  font-size: 1.4rem;
}
.c-unit-01 .c-unit-01__contents > * + * {
  margin-top: 16px;
}
.c-unit-01 .c-unit-01__contents .c-text-01 p:not(:first-child) {
  margin-top: 1em;
}
.c-unit-01 .c-unit-01__contents .c-list-notes:not(:first-child) {
  margin-top: 16px;
}
.c-unit-01 .c-list-indent dt {
  font-size: 1.6rem;
}
@media print, screen and (max-width: 749px) {
  .c-unit-01 {
    display: block;
  }
  .c-unit-01.-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .c-unit-01.-right .c-unit-01__image {
    order: 2;
  }
  .c-unit-01.-right .c-unit-01__contents {
    margin: 0;
    order: 1;
  }
  .c-unit-01 .c-unit-01__contents {
    margin-top: 16px;
  }
}

/* c-unit-merit */
.c-unit-merit {
  min-height: 68px;
  padding: 0 0 0 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.c-unit-merit .c-unit-merit__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 68px;
  height: 68px;
  border-radius: 100%;
  background-color: #007a52;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  margin: -34px 0 0;
  position: absolute;
  top: 50%;
  left: 0;
}
.c-unit-merit .c-unit-merit__icon::after {
  content: "";
  width: 23px;
  height: 24px;
  background: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGNsaXBQYXRoIGlkPSJhIj48cGF0aCBkPSJtLjY5OTIxOSAwaDIyLjZ2MjMuNzZoLTIyLjZ6Ii8+PC9jbGlwUGF0aD48ZyBjbGlwLXBhdGg9InVybCgjYSkiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cGF0aCBkPSJtMjEuNzM4MyAxNS44OHYtLjAxIi8+PHBhdGggZD0ibTguMTk5MjIgMTEuMjZjMy4zNDk5OC0uOCA2LjcwOTk4LTQuOTM5OTkgNi43MDk5OC05Ljg2OTk5IDAtMS4yMzAwMDQgMi40My0xLjQwMDAwMzU1IDMuMDcuODguNzIgMi41Ny0uNDQgNC44Mi0xLjMyIDcuMDFoNC4zOCIvPjxwYXRoIGQ9Im0yMS4wNDk0IDkuMjhjLjk3IDAgMS43NS43OSAxLjc1IDEuNzUgMCAuOTctLjc5IDEuNzUtMS43NSAxLjc1aC0uNDQiLz48cGF0aCBkPSJtMjAuNjA4IDEyLjc5Yy45NyAwIDEuNzUuNzkgMS43NSAxLjc1IDAgLjk3LS43OSAxLjc1LTEuNzUgMS43NWgtLjQ0Ii8+PHBhdGggZD0ibTE5LjcyOTEgMTYuMjljLjk3IDAgMS43NS43OSAxLjc1IDEuNzUgMCAuOTctLjc5IDEuNzUtMS43NSAxLjc1aC0uNDQiLz48cGF0aCBkPSJtMjAuNjEwNSAxMi43OWMuOTcgMCAxLjc1Ljc5IDEuNzUgMS43NSAwIC45Ny0uNzkgMS43NS0xLjc1IDEuNzVoLS44OCIvPjxwYXRoIGQ9Im0xOS4yODkyIDIyLjg3aC02LjEzYy0xLjc2IDAtNC45NTk5OC0xLjYxLTQuOTU5OTgtMS42MSIvPjxwYXRoIGQ9Im0xOC44NTAyIDE5LjhoLjIyYy44NSAwIDEuNTMuNjkgMS41MyAxLjUzIDAgLjg1LS42OSAxLjUzLTEuNTMgMS41M2gtLjY2Ii8+PHBhdGggZD0ibTYuMTM5MjIgMjEuNTZjLjI0MyAwIC40NC0uMTk3LjQ0LS40NHMtLjE5Ny0uNDQtLjQ0LS40NGMtLjI0MzAxIDAtLjQ0LjE5Ny0uNDQuNDRzLjE5Njk5LjQ0LjQ0LjQ0eiIvPjxwYXRoIGQ9Im03LjE5OTIyIDkuMjU5OTloLTVjLS41NTIyOSAwLTEgLjQ0NzcyLTEgMS4wMDAwMXYxMmMwIC41NTIzLjQ0NzcxIDEgMSAxaDVjLjU1MjI4IDAgMS0uNDQ3NyAxLTF2LTEyYzAtLjU1MjI5LS40NDc3Mi0xLjAwMDAxLTEtMS4wMDAwMXoiLz48L2c+PC9zdmc+) center/contain no-repeat;
}
.c-unit-merit dd {
  margin: 0;
  padding: 0 0 0 1.2em;
  color: var(--color-main-light);
  font-size: 1.4rem;
  line-height: 1.2;
  display: block;
  position: relative;
}
.c-unit-merit dd::before {
  width: 5px;
  height: 5px;
  margin: -2px 0 0;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 50%;
  background: #000;
  content: "";
}
.c-unit-merit .c-unit-merit__contents {
  flex: 1;
}
.c-unit-merit .c-list-disc li {
  color: var(--color-main-light);
  font-size: 1.4rem;
}
@media print, screen and (max-width: 749px) {
  .c-unit-merit .c-unit-merit__list {
    flex: 1;
  }
  .c-unit-merit .c-unit-merit__list li {
    font-size: 1.2rem;
    text-indent: -1rem;
  }
}

/* c-table-01
------------------------------ */
/* c-table-01 */
.c-table-01 table {
  width: 100%;
  table-layout: fixed;
}
.c-table-01 caption {
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
.c-table-01 caption span {
  font-size: 1.4rem;
  font-weight: 400;
}
.c-table-01 caption span.is-pc {
  display: block;
}
.c-table-01 caption.c-table-01__caption {
  margin: 10px 0 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-accent-primary);
  text-align: left;
}
.c-table-01 caption.c-table-01__caption small {
  margin: 5px 0 5px;
  position: relative;
  padding-left: 1.25em;
  color: var(--color-gray);
  font-size: 1.4rem;
  font-weight: normal;
  display: block;
}
.c-table-01 caption.c-table-01__caption small::before {
  content: "※";
  display: inline-block;
  width: 1.25em;
  margin-left: -1.25em;
}
.c-table-01 col.-w5per {
  width: 5%;
}
.c-table-01 col.-w10per {
  width: 10%;
}
.c-table-01 col.-w15per {
  width: 15%;
}
.c-table-01 col.-w18per {
  width: 18%;
}
.c-table-01 col.-w20per {
  width: 20%;
}
.c-table-01 col.-w25per {
  width: 25%;
}
.c-table-01 col.-w30per {
  width: 30%;
}
.c-table-01 col.-w35per {
  width: 35%;
}
.c-table-01 col.-w36per {
  width: 36%;
}
.c-table-01 col.-w40per {
  width: 40%;
}
.c-table-01 col.-w45per {
  width: 45%;
}
.c-table-01 col.-w50per {
  width: 50%;
}
.c-table-01 col.-w55per {
  width: 55%;
}
.c-table-01 col.-w60per {
  width: 60%;
}
.c-table-01 col.-w65per {
  width: 65%;
}
.c-table-01 col.-w70per {
  width: 70%;
}
.c-table-01 col.-w75per {
  width: 75%;
}
.c-table-01 col.-w80per {
  width: 80%;
}
.c-table-01 col.-w85per {
  width: 85%;
}
.c-table-01 col.-w90per {
  width: 90%;
}
.c-table-01 col.-w95per {
  width: 95%;
}
.c-table-01 th,
.c-table-01 td {
  padding: 12px 16px;
  border: 1px solid var(--color-gray-lightest);
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
}
.c-table-01 td > * + * {
  margin-top: 16px;
}
.c-table-01 td .c-list-notes {
  margin-top: 8px;
}
.c-table-01 thead th {
  height: 64px;
  background-color: var(--color-accent-primary-lighter);
  color: var(--color-accent-primary);
  font-weight: 700;
}
.c-table-01 tbody th,
.c-table-01 tbody td {
  padding-block: 24px;
  height: 100px;
}
@media print, screen and (max-width: 749px) {
  .c-table-01 .c-table-01__inner {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
    white-space: nowrap;
  }
  .c-table-01 .c-table-01__inner[data-type=scroll] {
    overflow: hidden;
    white-space: normal;
  }
  .c-table-01 .c-table-01__inner[data-type=scroll] table {
    width: 100%;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
    white-space: nowrap;
  }
  .c-table-01 .c-table-01__inner[data-type=scroll] colgroup {
    display: none;
  }
  .c-table-01 .c-table-01__inner[data-type=scroll] caption {
    width: 100%;
    white-space: break-spaces;
    position: sticky;
    left: 0;
    z-index: 1;
    display: block;
  }
  .c-table-01 .c-table-01__inner[data-type=scroll] thead th.is-fixed, .c-table-01 .c-table-01__inner[data-type=scroll] thead td.is-fixed,
  .c-table-01 .c-table-01__inner[data-type=scroll] tbody th.is-fixed,
  .c-table-01 .c-table-01__inner[data-type=scroll] tbody td.is-fixed {
    position: sticky;
    left: 0;
    z-index: 1;
  }
  .c-table-01 .c-table-01__inner[data-type=scroll] thead th.is-fixed::before, .c-table-01 .c-table-01__inner[data-type=scroll] thead td.is-fixed::before,
  .c-table-01 .c-table-01__inner[data-type=scroll] tbody th.is-fixed::before,
  .c-table-01 .c-table-01__inner[data-type=scroll] tbody td.is-fixed::before {
    width: calc(100% + 2px);
    height: 100%;
    position: absolute;
    top: 0;
    left: -1px;
    box-sizing: border-box;
    border-left: 1px solid var(--color-gray-lightest);
    border-right: 1px solid var(--color-gray-lightest);
    content: "";
  }
  .c-table-01 .c-table-01__inner[data-type=scroll] thead th.is-fixed::after, .c-table-01 .c-table-01__inner[data-type=scroll] thead td.is-fixed::after,
  .c-table-01 .c-table-01__inner[data-type=scroll] tbody th.is-fixed::after,
  .c-table-01 .c-table-01__inner[data-type=scroll] tbody td.is-fixed::after {
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -1px;
    background: var(--color-gray-lightest);
    content: "";
  }
  .c-table-01 .c-table-01__inner[data-type=scroll] thead th:nth-child(1) {
    width: 10%;
  }
  .c-table-01 .c-table-01__inner[data-type=scroll] thead th:nth-child(2) {
    width: 30%;
  }
  .c-table-01 .c-table-01__inner[data-type=scroll] thead th:nth-child(3) {
    width: 30%;
  }
  .c-table-01 .c-table-01__inner[data-type=scroll] thead th:nth-child(4) {
    width: 30%;
  }
  .c-table-01 .c-table-01__inner[data-type=scroll] thead th.is-fixed {
    background-color: var(--color-accent-primary-lighter);
  }
  .c-table-01 .c-table-01__inner[data-type=scroll] tbody th.is-fixed, .c-table-01 .c-table-01__inner[data-type=scroll] tbody td.is-fixed {
    background-color: #fff;
  }
  .c-table-01 .c-table-01__inner table {
    width: auto;
  }
  .c-table-01 .c-table-01__inner span.is-pc {
    display: none;
  }
}

/* c-table-price */
.c-table-price table {
  width: 100%;
  table-layout: fixed;
}
.c-table-price col.-w5per {
  width: 5%;
}
.c-table-price col.-w10per {
  width: 10%;
}
.c-table-price col.-w15per {
  width: 15%;
}
.c-table-price col.-w18per {
  width: 18%;
}
.c-table-price col.-w20per {
  width: 20%;
}
.c-table-price col.-w25per {
  width: 25%;
}
.c-table-price col.-w30per {
  width: 30%;
}
.c-table-price col.-w35per {
  width: 35%;
}
.c-table-price col.-w36per {
  width: 36%;
}
.c-table-price col.-w40per {
  width: 40%;
}
.c-table-price col.-w45per {
  width: 45%;
}
.c-table-price col.-w50per {
  width: 50%;
}
.c-table-price col.-w55per {
  width: 55%;
}
.c-table-price col.-w60per {
  width: 60%;
}
.c-table-price col.-w65per {
  width: 65%;
}
.c-table-price col.-w70per {
  width: 70%;
}
.c-table-price col.-w75per {
  width: 75%;
}
.c-table-price col.-w80per {
  width: 80%;
}
.c-table-price col.-w85per {
  width: 85%;
}
.c-table-price col.-w90per {
  width: 90%;
}
.c-table-price col.-w95per {
  width: 95%;
}
.c-table-price th,
.c-table-price td {
  padding: 4px 8px;
  border-right: 0;
  text-align: center;
  vertical-align: middle;
}
.c-table-price th.-none,
.c-table-price td.-none {
  visibility: hidden;
  border: 0;
}
.c-table-price thead th,
.c-table-price thead td {
  height: 128px;
  border-left: 1px solid #fff;
  color: var(--color-accent-primary);
  font-weight: 700;
}
.c-table-price thead th {
  background-color: var(--color-accent-primary-light);
}
.c-table-price thead td {
  background-color: var(--color-accent-primary-lighter);
}
.c-table-price thead td b {
  font-size: 1.8rem;
}
.c-table-price thead td sup {
  font-size: 100%;
}
.c-table-price thead span {
  font-size: 1.4rem;
}
.c-table-price thead i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  min-height: 20px;
  padding-inline: 16px;
  border-radius: 20px;
  background-color: var(--color-accent-red);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}
.c-table-price tbody th,
.c-table-price tbody td {
  height: 136px;
  border: 1px solid var(--color-gray-lightest);
}
.c-table-price tbody th {
  background-color: var(--ground-color-yellow);
  font-size: 2rem;
  font-weight: 700;
}
.c-table-price tbody th span {
  display: block;
  color: var(--color-gray);
  font-size: 1.6rem;
  font-weight: 400;
}
.c-table-price tbody th span > span {
  margin-top: 2px;
  font-size: 1.3rem;
}
.c-table-price tbody td > b {
  display: block;
  color: var(--color-accent-red);
  line-height: 1.4;
}
.c-table-price tbody td > b strong {
  font-size: 2.8rem;
}
.c-table-price tbody td > b span {
  font-size: 1.4rem;
  font-weight: 400;
}
.c-table-price tbody td > span {
  display: block;
  color: var(--color-gray);
  font-size: 1.4rem;
}
.c-table-price tbody td > span b {
  font-size: 1.8rem;
}
.c-table-price tbody i {
  margin: 5px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  min-height: 20px;
  padding-inline: 16px;
  border-radius: 20px;
  background-color: var(--color-accent-red);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}
@media print, screen and (max-width: 749px) {
  .c-table-price table {
    width: auto;
  }
  .c-table-price thead th,
  .c-table-price thead td {
    font-size: 1.4rem;
  }
  .c-table-price thead th {
    width: 172px;
  }
  .c-table-price thead td {
    width: 140px;
  }
  .c-table-price thead td b {
    font-size: 1.4rem;
  }
  .c-table-price thead i {
    font-size: 1.1rem;
  }
  .c-table-price tbody th {
    font-size: 1.8rem;
  }
  .c-table-price tbody th span {
    font-size: 1.4rem;
  }
  .c-table-price tbody th span > span {
    font-size: 1.2rem;
  }
  .c-table-price tbody td > b strong {
    font-size: 2rem;
  }
  .c-table-price tbody td > b span {
    font-size: 1.2rem;
  }
  .c-table-price tbody td > span {
    font-size: 1.2rem;
  }
  .c-table-price tbody td > span b {
    font-size: 1.6rem;
  }
  .c-table-price tbody i {
    font-size: 1.1rem;
  }
  .c-table-price .c-table-price__inner {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
    white-space: nowrap;
  }
}
.c-table-price + .c-list-notes {
  margin-top: 15px !important;
}

/* c-table-type */
.c-table-type table {
  width: 100%;
  table-layout: fixed;
}
.c-table-type col.-w5per {
  width: 5%;
}
.c-table-type col.-w10per {
  width: 10%;
}
.c-table-type col.-w15per {
  width: 15%;
}
.c-table-type col.-w18per {
  width: 18%;
}
.c-table-type col.-w20per {
  width: 20%;
}
.c-table-type col.-w25per {
  width: 25%;
}
.c-table-type col.-w30per {
  width: 30%;
}
.c-table-type col.-w35per {
  width: 35%;
}
.c-table-type col.-w36per {
  width: 36%;
}
.c-table-type col.-w40per {
  width: 40%;
}
.c-table-type col.-w45per {
  width: 45%;
}
.c-table-type col.-w50per {
  width: 50%;
}
.c-table-type col.-w55per {
  width: 55%;
}
.c-table-type col.-w60per {
  width: 60%;
}
.c-table-type col.-w65per {
  width: 65%;
}
.c-table-type col.-w70per {
  width: 70%;
}
.c-table-type col.-w75per {
  width: 75%;
}
.c-table-type col.-w80per {
  width: 80%;
}
.c-table-type col.-w85per {
  width: 85%;
}
.c-table-type col.-w90per {
  width: 90%;
}
.c-table-type col.-w95per {
  width: 95%;
}
.c-table-type th,
.c-table-type td {
  padding: 4px 8px;
  border: 1px solid #fff;
  border-right: 0;
  text-align: center;
  vertical-align: middle;
}
.c-table-type thead th,
.c-table-type thead td {
  height: 60px;
  font-weight: 700;
}
.c-table-type thead th {
  width: calc(222 / var(--base-number) * 100%);
  background-color: var(--color-accent-primary-light);
  color: var(--color-accent-primary);
}
.c-table-type thead td {
  color: #fff;
  font-size: 2rem;
  background-color: var(--color-gray);
}
.c-table-type tbody th,
.c-table-type tbody td {
  height: 76px;
  color: var(--color-main-light);
}
.c-table-type tbody th {
  position: relative;
  background-color: var(--ground-color-yellow);
  font-weight: 700;
  line-height: 1.4;
}
.c-table-type tbody th span {
  display: block;
  font-size: 1.4rem;
}
.c-table-type tbody th sup {
  position: absolute;
  right: 4px;
  bottom: 2px;
  color: var(--color-gray);
}
.c-table-type tbody th sup {
  bottom: calc(1em + 6px);
}
.c-table-type tbody td {
  border-color: var(--color-gray-lightest);
  font-size: 1.4rem;
}
.c-table-type tbody td.-bg {
  border-color: #fff;
  background-color: var(--ground-color-gray);
}
.c-table-type tbody td.-bg span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 2px auto 0;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: var(--color-accent-primary);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}
.c-table-type tbody td b,
.c-table-type tbody td strong {
  font-size: 2rem;
}
.c-table-type tbody td a {
  display: inline-block;
  margin-top: 4px;
  font-size: 1.4rem;
  font-weight: 700;
}
@media print, screen and (max-width: 749px) {
  .c-table-type table {
    width: auto;
  }
  .c-table-type thead th {
    width: 168px;
  }
  .c-table-type thead td {
    width: 108px;
    font-size: 1.6rem;
  }
  .c-table-type tbody th {
    font-size: 1.4rem;
  }
  .c-table-type tbody th span {
    font-size: 1.2rem;
  }
  .c-table-type tbody td.-bg span {
    font-size: 1.1rem;
  }
  .c-table-type tbody td b,
  .c-table-type tbody td strong {
    font-size: 1.6rem;
  }
  .c-table-type .c-table-type__inner {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
    white-space: nowrap;
  }
}

/* ACCORDION
------------------------------ */
/* c-accordion-01 */
.c-accordion-01 {
  margin-top: 32px;
}
.c-accordion-01 > div {
  overflow: hidden;
  border: 1px solid var(--color-accent-primary);
  border-radius: 8px;
}
.c-accordion-01 > div:not(:first-child) {
  margin-top: 28px;
}
.c-accordion-01 > div > dt button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 68px;
  padding: 16px 48px 16px 24px;
  background-color: var(--color-accent-primary);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s, color 0.3s;
}
.c-accordion-01 > div > dt button[aria-expanded=true] i::after {
  opacity: 0;
}
.c-accordion-01 > div > dt button:focus {
  outline: 2px solid #fff !important;
  outline-offset: -6px;
}
.c-accordion-01 > div > dt button span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: #fff;
  color: var(--color-accent-primary);
  font-size: 1.2rem;
  text-align: center;
}
.c-accordion-01 > div > dt i {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-color: #fff;
  translate: 0 -50%;
}
.c-accordion-01 > div > dt i::before, .c-accordion-01 > div > dt i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background-color: var(--color-accent-primary);
  translate: -50% -50%;
  transition: 0.3s;
}
.c-accordion-01 > div > dt i::after {
  rotate: 90deg;
}
.c-accordion-01 > div > dd {
  position: relative;
  height: 56px;
  padding: 24px 32px 32px;
  color: var(--color-main-light);
}
.c-accordion-01 > div > dd::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: linear-gradient(transparent, #fff 95%);
  transition: 0.3s;
}
.c-accordion-01 > div > dd[aria-hidden=false]::before {
  visibility: hidden;
  opacity: 0;
}
.c-accordion-01 > div > dd > * + * {
  margin-top: 24px;
}
.c-accordion-01 .c-accordion-01__list {
  margin-top: 16px;
}
.c-accordion-01 .c-accordion-01__list > div:not(:first-child) {
  margin-top: 16px;
}
.c-accordion-01 .c-accordion-01__list dt {
  color: var(--color-main-light);
  font-size: 1.4rem;
  font-weight: 700;
}
.c-accordion-01 .c-accordion-01__list dd {
  margin-top: 8px;
}
.c-accordion-01 .c-list-btn:not(:first-child) {
  margin-top: 8px;
}
@media print, screen and (max-width: 749px) {
  .c-accordion-01 > div:not(:first-child) {
    margin-top: 20px;
  }
  .c-accordion-01 > div > dt span {
    display: flex;
    width: fit-content;
  }
  .c-accordion-01 > div > dd {
    padding: 16px;
  }
}

/* c-accordion-02 */
.c-accordion-02 > div {
  /* overflow: hidden; */
  border: 1px solid var(--color-accent-primary-medium);
  border-radius: 8px;
}
.c-accordion-02 > div:not(:first-child) {
  margin-top: 28px;
}
.c-accordion-02 > div > dt button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 64px;
  padding: 16px 40px 16px 16px;
  background-color: var(--color-accent-primary-lighter);
  color: var(--color-accent-primary);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 7px;
}
.c-accordion-02 > div > dt button[aria-expanded=true] {
  background-color: #fff;
}
.c-accordion-02 > div > dt button[aria-expanded=true] i::after {
  opacity: 0;
}
.c-accordion-02 > div > dt button:hover {
  background-color: var(--color-accent-primary);
  color: #fff;
}
.c-accordion-02 > div > dt button:hover:focus {
  outline: solid 2px #fff !important;
}
.c-accordion-02 > div > dt button:focus {
  transition: none;
  outline-offset: -4px;
}
.c-accordion-02 > div > dt i {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-color: var(--color-accent-secondary);
  translate: 0 -50%;
}
.c-accordion-02 > div > dt i::before, .c-accordion-02 > div > dt i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background-color: #fff;
  translate: -50% -50%;
  transition: 0.3s;
}
.c-accordion-02 > div > dt i::after {
  rotate: 90deg;
}
.c-accordion-02 > div > dd {
  display: none;
  position: relative;
  padding: 24px;
  color: var(--color-main-light);
}
.c-accordion-02 > div > dd::before {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  left: 16px;
  border-top: 1px solid var(--color-accent-primary-medium);
}
.c-accordion-02 > div > dd > * + * {
  margin-top: 24px;
}
@media print, screen and (max-width: 749px) {
  .c-accordion-02 > div:not(:first-child) {
    margin-top: 20px;
  }
  .c-accordion-02 > div > dt button {
    min-height: 44px;
  }
  .c-accordion-02 > div > dd {
    padding: 16px;
  }
}

/* MODAL
------------------------------ */
/* c-modal */
.c-modal {
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  backface-visibility: hidden;
}
.c-modal[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  z-index: 2000;
}
.c-modal[aria-hidden=false] .c-modal__overlay,
.c-modal[aria-hidden=false] .c-modal__contents {
  visibility: visible;
  opacity: 1;
}
.c-modal .c-modal__overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(81, 81, 81, 0.7);
}
.c-modal .c-modal__contents {
  visibility: hidden;
  opacity: 0;
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
  width: calc(100% - 32px);
  max-width: var(--base-width);
  height: calc(100% - 80px);
  margin-inline: auto;
  padding: 40px 16px;
  pointer-events: none;
  transition: 0.3s;
}
.c-modal .c-modal__header,
.c-modal .c-modal__main {
  pointer-events: auto;
}
.c-modal .c-modal__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-basis: 48px;
  padding: 8px 56px;
  border-radius: 4px 4px 0 0;
  background-color: var(--color-accent-primary);
  text-align: center;
}
.c-modal .c-modal__headline {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-modal .c-modal__close {
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 2000;
  padding-top: 16px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.3s;
}
.c-modal .c-modal__close::before, .c-modal .c-modal__close::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 16px;
  margin: auto;
  background-color: #fff;
  transition: 0.3s;
  translate: -50%;
}
.c-modal .c-modal__close::before {
  rotate: 45deg;
}
.c-modal .c-modal__close::after {
  rotate: -45deg;
}
.c-modal .c-modal__close:hover {
  opacity: 0.5;
}
.c-modal .c-modal__main {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 4px 4px;
  font-size: 1.4rem;
}
.c-modal .c-modal__headline-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 64px;
  padding: 8px 16px;
  background-color: var(--color-gray-lightest);
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
}
.c-modal .c-modal__caution {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: var(--color-accent-red-lightest);
}
.c-modal .c-modal__inner {
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 32px 40px;
  background-color: #fff;
}
.c-modal .c-modal__inner > * + * {
  margin-top: 24px;
}
.c-modal .c-modal__inner .c-headline-03:not(:first-child) {
  margin-top: 32px;
}
.c-modal .c-modal__inner .c-headline-05 + * {
  margin-top: 16px;
}
.c-modal .c-modal__inner .c-list-notes:not(:first-child) {
  margin-top: 8px;
}
.c-modal .c-modal__inner .c-list-notes li {
  font-size: 1.2rem;
}
.c-modal .c-modal__inner .c-list-notes li:not(:first-child) {
  margin-top: 4px;
}
@media print, screen and (max-width: 749px) {
  .c-modal .c-modal__contents {
    height: calc(100% - 32px);
    padding-block: 16px;
  }
  .c-modal .c-modal__headline {
    font-size: 1.6rem;
  }
  .c-modal .c-modal__main {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
  }
  .c-modal .c-modal__headline-sub {
    font-size: 1.6rem;
  }
  .c-modal .c-modal__inner {
    padding: 24px 16px;
  }
}

/* FORM
------------------------------ */
/* c-input-text */
.c-input-text {
  display: grid;
  grid-template-columns: 80px 1fr;
  width: 100%;
  height: 44px;
}
.c-input-text label,
.c-input-text select {
  display: flex;
  align-items: center;
  height: 100%;
}
.c-input-text label {
  justify-content: center;
  border-radius: 4px 0 0 4px;
  background-color: var(--color-accent-primary);
  color: #fff;
  font-size: 1.4rem;
}
.c-input-text select {
  padding-inline: 8px;
  border: 1px solid var(--color-accent-primary-medium);
  border-left: 0;
  border-radius: 0 4px 4px 0;
}

/* c-select */
.c-select {
  display: flex;
  align-items: center;
  width: 100%;
}
.c-select.-split .c-select__input + .c-select__input {
  margin-left: 4px;
  border-left: 1px solid var(--color-accent-primary-medium);
  border-radius: 4px;
}
.c-select .c-select__label,
.c-select .c-select__input {
  height: 44px;
}
.c-select .c-select__label {
  flex: 0 0 80px;
}
.c-select .c-select__label label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 4px 0 0 4px;
  background-color: var(--color-accent-primary);
  color: #fff;
  font-size: 1.4rem;
}
.c-select .c-select__input {
  position: relative;
  width: 100%;
  border: 1px solid var(--color-accent-primary-medium);
  border-left: 0;
  border-radius: 0 4px 4px 0;
}
.c-select .c-select__input.-auto {
  width: auto;
}
.c-select .c-select__input::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 8px;
  height: 4px;
  background-color: #a3a3a3;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  translate: 0 -50%;
}
.c-select .c-select__input select {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-inline: 8px;
  &:focus {
    outline: solid 2px #06c;
  }
}

/* c-input-toggle */
.c-input-toggle {
  display: flex;
}
.c-input-toggle li:first-child label {
  border-radius: 4px 0 0 4px;
}
.c-input-toggle li:last-child label {
  border-radius: 0 4px 4px 0;
}
.c-input-toggle input {
  position: absolute;
  opacity: 0;
}
.c-input-toggle input:focus + label {
  outline: solid 2px #06c;
  outline-offset: -6px;
}
.c-input-toggle input + label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 44px;
  border: 1px solid var(--color-accent-primary-light);
  background: #fff;
  font-size: 1.4rem;
  text-align: center;
  cursor: pointer;
}
.c-input-toggle input:checked + label {
  border: 2px solid;
  background-color: var(--color-accent-primary-light);
  box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.25);
  color: var(--color-accent-primary);
  font-weight: 700;
}

/* --------------------------------------------------
 Element
 -------------------------------------------------- */
/* CautionModal */
.modal_generalPurpose .tmp_btn_h_l-auto,
.modal_generalPurpose .tmp_btn_m_s_green-auto {
  transition: 0.3s;
}
.modal_generalPurpose .tmp_btn_h_l-auto:hover {
  background: #337BB3;
}
.p-modal-caution {
  font-size: 1.4rem;
  /* Layout */
  /* Alert */
  /* Order */
  /* Area */
  /* Receipt */
}
.p-modal-caution .p-modal-cautionLayout {
  margin: 20px -25px 0;
  padding: 0 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-modal-caution .p-modal-cautionLayout__item[data-type=order] {
  min-width: 300px;
  max-width: 300px;
}
.p-modal-caution .p-modal-cautionLayout__item[data-type=area] {
  min-width: 390px;
  max-width: 390px;
}
.p-modal-caution .p-modal-cautionLayout__item[data-type=receipt] {
  width: 100%;
  margin: 25px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid #a6a6a6;
}
.p-modal-caution .p-modal-cautionAlert {
  margin: -25px -25px 0;
  padding: 20px 25px 20px 90px;
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
  background: #fffde7;
}
.p-modal-caution .p-modal-cautionAlert::before {
  width: 50px;
  height: 50px;
  margin: -25px 0 0;
  position: absolute;
  top: 50%;
  left: 25px;
  background-image: url(/Personal/reserve/wb/img/trainsearch/ts_modal_caution_alert.png);
  background-size: 50px 50px;
  content: "";
}
.p-modal-caution .p-modal-cautionOrder__item {
  margin: 30px 0 0;
  padding: 0 0 0 24px;
  position: relative;
}
.p-modal-caution .p-modal-cautionOrder__item:first-child {
  margin-top: 0;
}
.p-modal-caution .p-modal-cautionOrder__num {
  width: 20px;
  height: 20px;
  font-weight: bold;
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2px;
  left: 0;
  border-radius: 50%;
  background: var(--color-accent-primary);
}
.p-modal-caution .p-modal-cautionOrder__txt {
  line-height: 1.6;
}
.p-modal-caution .p-modal-cautionOrder__txt strong span {
  background: #fdff94;
}
.p-modal-caution .p-modal-cautionOrder__notes {
  margin: 5px 0 0;
}
.p-modal-caution .p-modal-cautionOrder__notes li {
  padding: 0 0 0 1em;
  font-size: 1.1rem;
  line-height: 1.5;
  position: relative;
}
.p-modal-caution .p-modal-cautionOrder__notes li::before {
  color: #707070;
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}
.p-modal-caution .p-modal-cautionOrder__img[data-type="1"] {
  margin: 10px auto 0;
  display: table;
}
.p-modal-caution .p-modal-cautionOrder__img[data-type="2"] {
  margin: 10px 0 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.p-modal-caution .p-modal-cautionOrder__img[data-type="2"] span {
  padding: 0 60px 0 0;
  position: relative;
}
.p-modal-caution .p-modal-cautionOrder__img[data-type="2"] span::before {
  width: 45px;
  height: 16px;
  margin: -8px 0 0;
  position: absolute;
  top: 50%;
  right: 8px;
  background-image: url(/Personal/reserve/wb/img/trainsearch/ts_modal_caution_order_03.svg);
  background-size: 45px 16px;
  content: "";
}
.p-modal-caution .p-modal-cautionArea__hdg {
  padding: 0 0 15px;
  position: relative;
}
.p-modal-caution .p-modal-cautionArea__hdg::before, .p-modal-caution .p-modal-cautionArea__hdg::after {
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  content: "";
}
.p-modal-caution .p-modal-cautionArea__hdg::before {
  width: 84px;
  z-index: 1;
  background: var(--color-accent-primary);
}
.p-modal-caution .p-modal-cautionArea__hdg::after {
  width: 100%;
  z-index: 0;
  background: #eee;
}
.p-modal-caution .p-modal-cautionArea__btn {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
  pointer-events: none;
  position: relative;
}
.p-modal-caution .p-modal-cautionArea__body {
  margin: 20px 0 0;
}
.p-modal-caution .p-modal-cautionArea__item {
  padding: 40px 0 0 0;
  position: relative;
}
.p-modal-caution .p-modal-cautionArea__list {
  padding: 0 0 20px;
}
.p-modal-caution .p-modal-cautionArea__listItem {
  max-width: 120px;
  padding: 10px 10px 5px;
  font-weight: bold;
  font-size: 1.4rem;
  color: #000;
  line-height: 1.2;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  box-shadow: 0 0 2px #999;
  border-radius: 5px;
  background: var(--color-accent-primary);
}
.p-modal-caution .p-modal-cautionArea__listItem::after {
  width: 67px;
  height: 27px;
  margin: 3px auto 0;
  display: table;
  background-image: url(/Personal/reserve/wb/img/trainsearch/ts_modal_caution_area_02.svg);
  background-size: 67px 27px;
  content: "";
}
.p-modal-caution .p-modal-cautionArea__listItem span {
  text-indent: -999em;
  position: absolute;
  z-index: -1;
}
.p-modal-caution .p-modal-cautionArea__listItem[data-order="1"] {
  top: -10px;
  left: 185px;
  background: #d8eaad;
}
.p-modal-caution .p-modal-cautionArea__listItem[data-order="1"]::after {
  background-image: url(/Personal/reserve/wb/img/trainsearch/ts_modal_caution_area_02.svg);
}
.p-modal-caution .p-modal-cautionArea__listItem[data-order="2"] {
  top: 335px;
  background: #acbfe4;
}
.p-modal-caution .p-modal-cautionArea__listItem[data-order="2"]::after {
  background-image: url(/Personal/reserve/wb/img/trainsearch/ts_modal_caution_area_03.svg);
}
.p-modal-caution .p-modal-cautionArea__listItem[data-order="3"] {
  top: 415px;
  left: 225px;
  background: #b6dda4;
}
.p-modal-caution .p-modal-cautionArea__listItem[data-order="3"]::after {
  background-image: url(/Personal/reserve/wb/img/trainsearch/ts_modal_caution_area_04.svg);
}
.p-modal-caution .p-modal-cautionArea__listItem[data-order="4"] {
  top: 555px;
  left: 60px;
  background: #eececa;
}
.p-modal-caution .p-modal-cautionArea__listItem[data-order="4"]::after {
  background-image: url(/Personal/reserve/wb/img/trainsearch/ts_modal_caution_area_05.svg);
}
.p-modal-caution .p-modal-cautionArea__link {
  margin: 10px auto 0;
  display: table;
}
.p-modal-caution .p-modal-cautionArea__link a {
  position: relative;
}
.p-modal-caution .p-modal-cautionArea__link a::after {
  width: 16px;
  height: 12px;
  margin: 0 0 0 5px;
  display: inline-block;
  position: relative;
  top: 1px;
  background-image: url(/Personal/reserve/wb/img/trainsearch/ts_modal_caution_blank.svg);
  background-size: 16px 12px;
  content: "";
}
.p-modal-caution .p-modal-cautionArea__alert {
  margin: 15px 0 0;
}
.p-modal-caution .p-modal-cautionArea__alert li {
  margin: 10px 0 0;
  padding: 0 0 0 35px;
  position: relative;
}
.p-modal-caution .p-modal-cautionArea__alert li:first-child {
  margin-top: 0;
}
.p-modal-caution .p-modal-cautionArea__alert li::before {
  width: 25px;
  height: 25px;
  position: absolute;
  top: -2px;
  left: 0;
  background-image: url(/Personal/reserve/wb/img/trainsearch/ts_modal_caution_order_alert.svg);
  background-size: 25px 25px;
  content: "";
}
.p-modal-caution .p-modal-cautionReceipt__grid {
  max-width: 600px;
  margin: 20px auto 0;
  display: flex;
  flex-wrap: nowrap;
}
.p-modal-caution .p-modal-cautionReceipt__gridItem {
  width: 50%;
}
.p-modal-caution .p-modal-cautionReceipt__gridItem:first-child {
  margin: 0 20px 0 0;
}
.p-modal-caution .p-modal-cautionReceipt__gridItem:last-child {
  margin: 0 0 0 20px;
}
.p-modal-caution .p-modal-cautionReceipt__hdg {
  line-height: 1;
}
.p-modal-caution .p-modal-cautionReceipt__hdg[data-level="5"] {
  font-weight: bold;
}
.p-modal-caution .p-modal-cautionReceipt__img {
  margin: 5px auto;
  mix-blend-mode: multiply;
  display: table;
}
.p-modal-caution .p-modal-cautionReceipt__list li {
  margin: 7px 0 0 1em;
  text-indent: -1em;
}
.p-modal-caution .p-modal-cautionReceipt__list li:first-child {
  margin-top: 0;
}
.p-modal-caution .p-modal-cautionReceipt__list strong {
  font-weight: normal;
}
.p-modal-caution .p-modal-cautionReceipt__link {
  margin: 15px 0 0;
}
.p-modal-caution .p-modal-cautionReceipt__link a {
  position: relative;
}
.p-modal-caution .p-modal-cautionReceipt__link a::after {
  width: 16px;
  height: 12px;
  margin: 0 0 0 5px;
  display: inline-block;
  position: relative;
  top: 1px;
  background-image: url(/Personal/reserve/wb/img/trainsearch/ts_modal_caution_blank.svg);
  background-size: 16px 12px;
  content: "";
}

@media print, screen and (min-width: 750px) {
  .p-modal-caution {
    /* Area */
  }
  .p-modal-caution .p-modal-cautionLayout {
    display: block;
  }
  .p-modal-caution .p-modal-cautionLayout__item[data-type=order], .p-modal-caution .p-modal-cautionLayout__item[data-type=area] {
    min-width: inherit;
    max-width: inherit;
  }
  .p-modal-caution .p-modal-cautionLayout__item[data-type=area] {
    margin-top: 40px;
  }
  .p-modal-caution .p-modal-cautionOrder {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .p-modal-caution .p-modal-cautionOrder .p-modal-cautionOrder__item {
    width: 46%;
    margin: 0;
  }
  .p-modal-caution .p-modal-cautionArea__item {
    display: flex;
    flex-direction: column;
  }
  .p-modal-caution .p-modal-cautionArea__item .p-modal-cautionArea__map {
    max-width: 390px;
    min-width: 390px;
    margin: 0 auto;
    order: 1;
    position: relative;
  }
  .p-modal-caution .p-modal-cautionArea__item .p-modal-cautionArea__link {
    margin-left: 35px;
    order: 3;
  }
  .p-modal-caution .p-modal-cautionArea__item .p-modal-cautionArea__alert {
    margin-top: 30px;
    order: 2;
  }
  .p-modal-caution .p-modal-cautionArea__body {
    display: block !important;
  }
  .p-modal-caution .p-modal-cautionArea__route {
    width: 150px;
    position: absolute;
    top: -20px;
    left: -80px;
  }
  .p-modal-caution .p-modal-cautionArea__listItem[data-order="1"] {
    top: -20px;
    left: 350px;
    white-space: nowrap;
  }
  .p-modal-caution .p-modal-cautionArea__listItem[data-order="2"] {
    top: 295px;
    left: -45px;
  }
  .p-modal-caution .p-modal-cautionArea__listItem[data-order="3"] {
    top: 415px;
    left: 240px;
  }
  .p-modal-caution .p-modal-cautionArea__listItem[data-order="4"] {
    top: 515px;
    left: 150px;
  }
}
@media print, screen and (max-width: 749px) {
  .p-modal-caution {
    /* Layout */
    /* Alert */
    /* Order */
    /* Area */
    /* Receipt */
  }
  .p-modal-caution .p-modal-cautionLayout {
    margin: 20px -20px 0;
    padding: 0 20px;
    display: block;
  }
  .p-modal-caution .p-modal-cautionLayout__item[data-type=order] {
    min-width: inherit;
    max-width: inherit;
  }
  .p-modal-caution .p-modal-cautionLayout__item[data-type=area] {
    min-width: inherit;
    max-width: inherit;
  }
  .p-modal-caution .p-modal-cautionLayout__item[data-type=receipt] {
    margin: 30px 0 0;
    padding: 30px 0 0;
  }
  .p-modal-caution .p-modal-cautionAlert {
    margin: -20px -20px 0;
    padding: 15px 20px 15px 50px;
  }
  .p-modal-caution .p-modal-cautionAlert::before {
    width: 25px;
    height: 25px;
    margin-top: -12px;
    left: 15px;
    background-size: 25px 25px;
  }
  .p-modal-caution .p-modal-cautionAlert br {
    display: none;
  }
  .p-modal-caution .p-modal-cautionOrder__img[data-type="2"] {
    justify-content: center;
  }
  .p-modal-caution .p-modal-cautionArea {
    margin: 30px 0 0;
    padding: 30px 0 0;
    border-top: 1px solid #a6a6a6;
  }
  .p-modal-caution .p-modal-cautionArea__inner {
    border-radius: 8px;
    border: 1px solid #42b21a;
    background: #fff;
  }
  .p-modal-caution .p-modal-cautionArea__hdg {
    padding: 0;
    position: relative;
  }
  .p-modal-caution .p-modal-cautionArea__hdg::before, .p-modal-caution .p-modal-cautionArea__hdg::after {
    display: none;
  }
  .p-modal-caution .p-modal-cautionArea__btn {
    width: 100%;
    min-height: 35px;
    text-align: center;
    pointer-events: inherit;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-primary);
  }
  .p-modal-caution .p-modal-cautionArea__btn::before, .p-modal-caution .p-modal-cautionArea__btn::after {
    width: 18px;
    height: 18px;
    margin: -9px 0 0;
    position: absolute;
    top: 50%;
    right: 10px;
    background-size: 18px 18px;
    content: "";
  }
  .p-modal-caution .p-modal-cautionArea__btn::before {
    opacity: 1;
    background-image: url(/Personal/reserve/wb/img/trainsearch/ts_modal_caution_area_ac_01.svg);
  }
  .p-modal-caution .p-modal-cautionArea__btn::after {
    opacity: 0;
    background-image: url(/Personal/reserve/wb/img/trainsearch/ts_modal_caution_area_ac_02.svg);
  }
  .p-modal-caution .p-modal-cautionArea__btn.is-active::before {
    opacity: 0;
  }
  .p-modal-caution .p-modal-cautionArea__btn.is-active::after {
    opacity: 1;
  }
  .p-modal-caution .p-modal-cautionArea__body {
    margin: 0;
    padding: 0 15px 15px;
    overflow: hidden;
    display: none;
    border-top: 1px solid #42b21a;
  }
  .p-modal-caution .p-modal-cautionArea__item {
    padding: 30px 0 0;
  }
  .p-modal-caution .p-modal-cautionArea__map {
    margin: 0 auto;
    padding: 40px 0 0 0;
    position: relative;
    display: table;
  }
  .p-modal-caution .p-modal-cautionArea__list {
    padding: 0 0 20px;
  }
  .p-modal-caution .p-modal-cautionArea__link {
    margin-left: 0;
    padding-left: 35px;
  }
  .p-modal-caution .p-modal-cautionReceipt__grid {
    max-width: inherit;
    display: block;
  }
  .p-modal-caution .p-modal-cautionReceipt__gridItem {
    width: 100%;
    margin: 25px 0 0;
    padding: 25px 0 0;
    border-top: 1px dotted #a6a6a6;
  }
  .p-modal-caution .p-modal-cautionReceipt__gridItem:first-child {
    margin: 0;
    padding-top: 0;
    border-top: none;
  }
  .p-modal-caution .p-modal-cautionReceipt__gridItem:last-child {
    margin: 25px 0 0;
  }
  .p-modal-caution .p-modal-cautionReceipt__img img {
    width: 272px;
    height: 140px;
  }
}
@media print, screen and (max-width: 510px) {
  .p-modal-caution {
    /* Area */
  }
  .p-modal-caution .p-modal-cautionArea__body {
    padding: 0 2.941vw 2.941vw;
  }
  .p-modal-caution .p-modal-cautionArea__item {
    padding: 5.882vw 0 0;
  }
  .p-modal-caution .p-modal-cautionArea__map {
    padding: 7.843vw 0 0 0;
  }
  .p-modal-caution .p-modal-cautionArea__list {
    padding: 0 0 3.922vw;
  }
  .p-modal-caution .p-modal-cautionArea__img {
    width: 76.471vw;
    height: 109.804vw;
  }
  .p-modal-caution .p-modal-cautionArea__listItem {
    max-width: 23.529vw;
    padding: 1.961vw 1.961vw 0.98vw;
    font-size: 2.745vw;
    border-radius: 0.98vw;
  }
  .p-modal-caution .p-modal-cautionArea__listItem::after {
    width: 13.137vw;
    height: 5.294vw;
    margin: 0.588vw auto 0;
    background-size: 13.137vw 5.294vw;
  }
  .p-modal-caution .p-modal-cautionArea__listItem[data-order="1"] {
    top: -1.961vw;
    left: 36.275vw;
  }
  .p-modal-caution .p-modal-cautionArea__listItem[data-order="2"] {
    top: 65.686vw;
  }
  .p-modal-caution .p-modal-cautionArea__listItem[data-order="3"] {
    top: 81.373vw;
    left: 44.118vw;
  }
  .p-modal-caution .p-modal-cautionArea__listItem[data-order="4"] {
    top: 108.824vw;
    left: 11.765vw;
  }
}
/* --------------------------------------------------
 OverRide
 -------------------------------------------------- */
/* Button */
.top_modalW_headerBtnClose:focus,
.top_slidePopupHeaderBtnClose:focus {
  outline: solid 2px #fff !important;
  outline-offset: -4px;
}

/* ModalWindow */
.modal_generalPurpose .top_modalW_header,
.modal_generalPurpose .tmp_btn_h_l-auto {
  font-size: 1.9rem;
}
.modal_generalPurpose .top_puWHTxt {
  font-size: 2.8rem;
}
.modal_generalPurpose .top_puMainW-cation {
  font-size: 1.6rem;
}
.modal_generalPurpose .top_puMainWleadtxt {
  font-size: 1.4rem;
}
.modal_generalPurpose .top_puMainWleadtxt strong {
  color: #333;
}
.modal_generalPurpose .top_puOt9MainWleadtxt-ex {
  font-size: 1.4rem;
}
.modal_generalPurpose .top_puOt9MainWleadtxt-ex span {
  font-size: 1.6rem;
}
.modal_generalPurpose .top_puMainWleadtxt-ex,
.modal_generalPurpose .top_puTashaMainWleadtxt-ex,
.modal_generalPurpose .top_puMainWleadtxt-link,
.modal_generalPurpose .round_trip_application,
.modal_generalPurpose .possible_ride_date,
.modal_generalPurpose .top_puSubListTextItem {
  font-size: 1.4rem;
}
.modal_generalPurpose .tmp_btn_m_s_green-auto {
  font-size: 1.2rem;
}
.modal_generalPurpose .top_modalW_inner .fz14 {
  font-size: 1.4rem !important;
}
.modal_generalPurpose .top_modalW_inner .fz12 {
  font-size: 1.2rem !important;
}
.modal_generalPurpose #adult-child-pc table td ul,
.modal_generalPurpose #adult-child-pc table td span:nth-child(2) {
  font-size: 1.4rem;
}
.modal_generalPurpose #adult-child-pc table td ul strong,
.modal_generalPurpose #adult-child-pc table td span:nth-child(2) strong {
  color: #333;
}
.modal_generalPurpose #adult-child-layout .tac strong {
  color: #333 !important;
}
.modal_generalPurpose #adult-child-layout .tac strong .tmp_fontColor-cautionRed {
  color: var(--color-accent-red) !important;
}
.modal_generalPurpose .adult-child-infant-two,
.modal_generalPurpose .modal-title01 {
  font-weight: bold;
}
.modal_generalPurpose .new-division .selService_formTrainSeatSelListItemLink-sale {
  font-size: 1.1rem;
  line-height: 1.2;
}

@media print, screen and (max-width: 749px) {
  .modal_generalPurpose .top_modalW_header {
    font-size: 1.4rem;
  }
  .modal_generalPurpose .top_puWHTxt {
    font-size: 2.2rem;
  }
}
/* Element */




/* *************************************************************

	新着情報・お知らせ

************************************************************* */
#info .c-list-information.pc,
#idxInfoW.pc .idxInfoW_list {margin-bottom: 40px;}
#member__logout_index #info_new {
	max-width: 990px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

/* 見出し
----------------------------------- */
#info_new .idx_h-2 {
	position: relative;
	padding-bottom: 12px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}
#info_new .idx_h-2::before, #info_new .idx_h-2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 4px;
	border-radius: 4px;
}
#info_new .idx_h-2::before {
	content: none;
}
#info_new .idx_h-2::after {
	width: 174px;
	bottom: 0;
	right: 0;
	width: 66px;
	height: 3px;
	margin-inline: auto;
	border-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	background: url(/top/common/img/line-dot.svg) center/contain no-repeat;
}
@media print, screen and (max-width: 749px) {
	#info_new .idx_h-2 {
		font-size: 2rem;
	}
	#info_new .idx_h-2::after {
		width: 44px;
		height: 2px;
	}
}

/* リスト
----------------------------------- */
#info_new .idxInfoW_list,
#info .c-list-information,
.idxInfoW .idxInfoW_list {
	position: relative;
	margin-top: 36px !important;
	margin-left: auto;
	margin-right: auto;
	max-width: inherit;
	border-top: 1px solid var(--color-accent-primary);
}
.idxInfoW .idxInfoW_list {
	border-top: 1px solid var(--color-gray-lightest) !important;
}
@media print, screen and (max-width: 749px) {
	#info_new .idxInfoW_list,
	#info .c-list-information,
	.idxInfoW .idxInfoW_list {
		margin-top: 24px !important;
		width: 100%;
		height: auto;
	}
}
#info_new .idxInfoW_list.tmp_pB-30 {
	padding-bottom: 0 !important;
}
#info_new .idxInfoW_list .idxInfoW_listItem,
#info .c-list-information .idxInfoW_listItem,
#info .c-list-information > li,
.idxInfoW .idxInfoW_list .idxInfoW_listItem {
	border-bottom: 1px solid var(--color-gray-lightest);
	width: 100%;
	height: auto;
	transition-duration: 0.4s;
}
#info_new .idxInfoW_list .idxInfoW_listItem:nth-child(n+6) {
	display: none;
}
.idxInfoW_listItemText-none {
	padding-top: 25px;
	padding-bottom: 30px;
	text-align: center;
	font-size: 1rem;
	font-weight: bold;
}
#info_new .idxInfoW_list .idxInfoW_listItem_dateTrg {
	display: none;
}
#info_new .idxInfoW_list .idxInfoW_listItemLink,
#info .c-list-information .idxInfoW_listItemLink,
.idxInfoW .idxInfoW_list .idxInfoW_listItemLink {
	position: relative;
	display: block;
	padding: 0;
	width: 100%;
	height: auto;
	text-decoration: none;
	color: #000;
	transition-duration: 0.4s;
	word-wrap: break-word;
}
.idxInfoW_listItemLink:hover {
	color: #000;
	background: #f0f7f0;
	cursor: pointer;
	text-emphasis: none;
}
.idxInfoW_listItemLink.nolink:hover {
	background: none;
	cursor: auto;
}
#info_new .idxInfoW_list .idxInfoW_listItemLink[target*=_blank]:hover::after,
#info_new .idxInfoW_list .idxInfoW_listItemLink[href*=".pdf"]:hover::after,
#info .c-list-information .idxInfoW_listItemLink[target*=_blank]:hover::after,
#info .c-list-information .idxInfoW_listItemLink[href*=".pdf"]:hover::after,
.idxInfoW .idxInfoW_list .idxInfoW_listItemLink[target*=_blank]:hover::after,
.idxInfoW .idxInfoW_list .idxInfoW_listItemLink[href*=".pdf"]:hover::after {
	translate: none;
}
#info_new .idxInfoW_list .idxInfoW_listItemLink[target*=_blank]::after,
#info .c-list-information .idxInfoW_listItemLink[target*=_blank]::after,
.idxInfoW .idxInfoW_list .idxInfoW_listItemLink[target*=_blank]::after {
	right: 8px;
	width: 16px;
	height: 19px;
	background-image: url(/top/common/img/ico_info_window.svg);
}
#info_new .idxInfoW_list .idxInfoW_listItemLink[href*=".pdf"]::after,
#info .c-list-information .idxInfoW_listItemLink[href*=".pdf"]::after,
.idxInfoW .idxInfoW_list .idxInfoW_listItemLink[href*=".pdf"]::after {
	right: 10px;
	width: 14px;
	height: 15px;
	background-image: url(/top/common/img/ico_pdf.svg);
}
.idxInfoW_list .idxInfoW_listItemLink::after,
.c-list-information .idxInfoW_listItemLink::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 12px;
	width: 7px;
	height: 11px;
	background: url(/top/common/img/ico_link_arrow.svg) center/contain no-repeat;
	transform: translateY(-50%);
	transition: 0.3s;
}
.idxInfoW_list .idxInfoW_listItemLink:hover,
.c-list-information .idxInfoW_listItemLink:hover {
	background-color: var(--color-accent-primary-lighter);
	text-decoration: none;
}
.idxInfoW_list .idxInfoW_listItemLink:hover::after,
.c-list-information .idxInfoW_listItemLink:hover::after {
	translate: 3px;
}

/* アコーディオン */
.idxInfoW_listItem_acc {}
.idxInfoW_listItem_acc:hover {
	background: var(--color-accent-primary-lighter);
}
.idxInfoW_listItem .idxInfoW_listItem_acc .idxInfoW_listItemLink.acc::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 9px;
	width: 16px;
	height: 16px;
	background: url(/top/jrticket/img/index_linkopen-icon.png) center/contain no-repeat;
	transform: translateY(-50%);
	transition: 0.3s;
}
.idxInfoW_listItem .idxInfoW_listItem_acc .idxInfoW_listItemLink.acc:hover::after {
	translate: none;
}
.idxInfoW_listItem .idxInfoW_listItem_acc .idxInfoW_listItemLink.acc.active::after {
	background: url(/top/jrticket/img/index_linkclose-icon.png) center/contain no-repeat;
}
.idxInfoW_listItem_acc .idxInfoW_listItemLink:focus {
  outline: solid 2px #06c;
}
.idxInfoW_listItemLinkDdAccW {
	display: none;
	width: auto;
	padding: 18px 10px;
	width: 100%;
}
@media print, screen and (min-width: 750px) {
	.idxInfoW_listItemLinkDdAccW {
		padding: 20px 55px 20px 170px;
	}
}
.active .idxInfoW_listItemLinkDdAccW {
	border-top: 1px dotted #d9d9d9;
}

.idxInfoW_listItemLinkDl_new,
.idxInfoW_listItemLinkDl {
	display: flex;
	flex-wrap: wrap;
	flex-shrink: 0;
	gap: 8px 12px;
	align-content: flex-start;
	align-items: flex-start;
	padding: 16px 40px 16px 8px;
	width: 100%;
	height: auto;
	color: var(--color-main);
}
@media print, screen and (min-width: 750px) {
	.idxInfoW_listItemLinkDl_new,
	.idxInfoW_listItemLinkDl {
		justify-content: space-between;
		padding-top: 20px;
		padding-bottom: 0px;
	}
	.idxInfoW_listItemLinkDl {
		gap: 8px 30px;
	}
}
.active .idxInfoW_listItemLinkDl_new,
.active .idxInfoW_listItemLinkDl {
	outline: none;
}
.idxInfoW_listItemLinkDt_new,
.idxInfoW_listItemLinkDt {
	margin: 0;
	padding: 0;
	width: auto;
	min-width: 7.15em;
	font-weight: bold;
}

.bl_topNewList_ddcategory {
	display: flex;
	flex: 0;
	justify-content: center;
	align-self: flex-start;
	flex-shrink: 0;
	border-radius: 4px;
	padding: 3px 12px 2px;
	width: 100%;
	max-width: 75px;
	min-width: 75px;
	height: 1.5rem;
	min-height: 22px;
	background-color: #007a52;
	font-size: 12px;
	line-height: 1.3;
	color: #fff;
	white-space: nowrap;
}
.bl_topNewList_ddcategory.rentacar {
	letter-spacing: -0.1em;
}
.idxInfoW_listItemLinkDd_new,
.idxInfoW_listItemLinkDd {
	position: relative;
	flex: 1;
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	align-self: baseline;
	text-align: left;
}
@media print, screen and (max-width: 749px) {
	.idxInfoW_listItemLinkDd_new,
	.idxInfoW_listItemLinkDd {
		flex-basis: 100% !important;
	}
}
@media print, screen and (min-width: 750px) {
	.idxInfoW_listItemLinkDd_new,
	.idxInfoW_listItemLinkDd {
		width: calc(100% - 270px);
		padding-bottom: 20px;
		padding-top: 0px;
	}
}
.nolink .idxInfoW_listItemLinkDd:hover {
	cursor: auto;
}
.nolink .idxInfoW_listItemLinkDd::after {
	content: none;
}

