@charset "UTF-8";
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, hgroup, menu, nav, section,
summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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 #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  color: #333;
  line-height: 1.8;
  overflow-x: hidden;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
}
body * {
  box-sizing: border-box;
}

main {
  margin-bottom: auto;
}

p {
  margin-bottom: 1.5em;
}
p:last-child {
  margin-bottom: 0;
}

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

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

@media (hover: hover) {
  p a:hover {
    text-decoration: underline;
  }
}

input:not([type=radio], [type=checkbox]), select {
  width: 100%;
  height: 56px;
  border-radius: 3px;
  background: #fff;
  padding: 0.5em 1em;
  border: none;
}
input:not([type=radio], [type=checkbox])::-moz-placeholder, select::-moz-placeholder {
  color: #C1C1C1;
}
input:not([type=radio], [type=checkbox])::placeholder, select::placeholder {
  color: #C1C1C1;
}

input[type=text] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input {
  font-size: 1rem;
}

@media screen and (max-width: 1279px) {
  ._onlyPc {
    display: none;
  }
}

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

._red {
  color: #dd3232;
}

._cyan {
  color: #28c0ce;
}

/* --------------------------------------------
 * 　基本ブロック幅
 * -------------------------------------------- */
.blContainer {
  width: 92%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.blContainer1040 {
  width: 92%;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}

.blContainer800 {
  width: 92%;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

/* --------------------------------------------
 * 　ボタン
 * -------------------------------------------- */
.button {
  filter: drop-shadow(3px 3px 14px rgba(0, 0, 0, 0.15));
  font-size: 1rem;
  display: inline-block;
  background: #333;
  color: #fff;
  width: 100%;
  max-width: 300px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  border-radius: 3px;
}
.button:hover {
  cursor: pointer;
  text-decoration: none;
}

.button_fullWide {
  max-width: 100%;
}
.button_fullWide:disabled  {
  background-color: #555;
  color:#ccc;
  opacity:0.6;
  cursor:not-allowed;
}

/* --------------------------------------------
 * 　モーダル
 * -------------------------------------------- */
/* モーダルの背景（非表示時は隠す） */
.modal {
  display: none;
  /* デフォルトで非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 背景を半透明に */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal__inner {
  background-color: white;
  width: 92%;
  max-width: 700px;
  padding: 80px 70px 50px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 767px) {
  .modal__inner {
    padding: 60px 30px 30px;
  }
}
.modal__close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  color: red;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .modal__close {
    top: 15px;
    right: 15px;
  }
}
.modal__close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  right: 9px;
  height: 1px;
  background: #333;
  translate: 0 50%;
  rotate: 45deg;
}
.modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  right: 9px;
  height: 1px;
  background: #333;
  translate: 0 50%;
  rotate: -45deg;
}
.modal._active {
  display: flex;
}

/* --------------------------------------------
 * 　フォーム共通
 * -------------------------------------------- */
.formNote {
  font-size: 0.75rem;
  color: #E34B4B;
}

/* --------------------------------------------
 * 　ヘッダー
 * -------------------------------------------- */
.header {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  margin-bottom: 50px;
}
.header__logo {
  margin-right: auto;
}
.header__align {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header__siteTitle {
  text-align: center;
  margin: 10px 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.header__siteTitle br {
  display: none;
}
@media screen and (max-width: 412px) {
  .header__siteTitle br {
    display: inline;
  }
}
@media screen and (max-width: 280px) {
  .header__siteTitle br {
    display: none;
  }
}
/* --------------------------------------------
 * 　メニュー
 * -------------------------------------------- */
.hamburger {
  position: fixed;
  top: 32px;
  right: 30px;
  width: 58px;
  height: 42px;
  z-index: 9999;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  top: 50%;
  left: 8px;
  right: 8px;
  height: 3px;
  background: #333;
  transition: all ease 0.2s;
}
.hamburger::before {
  content: "";
  position: absolute;
  top: calc(50% - 11px);
  left: 8px;
  right: 8px;
  height: 3px;
  background: #333;
  transition: all ease 0.2s;
}
.hamburger::after {
  content: "";
  position: absolute;
  bottom: calc(50% - 14px);
  left: 8px;
  right: 8px;
  height: 3px;
  background: #333;
  transition: all ease 0.2s;
}

.mainMenu {
  transform: translateX(105%);
  transition: all ease 0.2s;
  position: fixed;
  top: 110px;
  right: 0;
  z-index: 10;
}
.mainMenu__list {
  background: #28C0CE;
  border-radius: 10px 0 0 10px;
}
.mainMenu__item {
  border-bottom: 1px solid #fff;
}
.mainMenu__item:last-child {
  border-bottom: none;
}
.mainMenu__link {
  display: block;
  color: #fff;
  padding: 1.2em 1.5em;
}
@media screen and (max-width: 767px) {
  .mainMenu__link {
    padding: 0.9em 1.1em;
  }
}

#menuToggle {
  position: fixed;
  left: -110vw;
}

#menuToggle:checked ~ .hamburger span {
  position: absolute;
  top: 50%;
  right: 15px;
}
#menuToggle:checked ~ .hamburger::after {
  right: 25px;
}

#menuToggle:checked ~ .mainMenu {
  transform: translateX(0);
}

/* --------------------------------------------
 * 　TOP
 * -------------------------------------------- */
.topScreen_description {
  padding:0 0 10px 0;
}
.selectTabs {
  display: flex;
  filter: drop-shadow(3px 3px 14px rgba(0, 0, 0, 0.15));
}
.selectTabs__item {
  font-size: 1.3125rem;
  line-height: 1;
  flex: 0 0 50%;
  height: 90px;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .selectTabs__item {
    font-size: 1.0625rem;
    height: 60px;
  }
}
.selectTabs__item:hover {
  cursor: pointer;
}
.selectTabs__item:first-child {
  border-radius: 5px 0 0 5px;
}
.selectTabs__item:last-child {
  border-radius: 0 5px 5px 0;
}
.selectTabs__item._active {
  background: #333;
  color: #fff;
}
.selectTabs__item i {
  margin-right: 0.35em;
}

.fixedRouteNote {
  text-align: right;
  padding-right: 5px;
}
.fixedRouteNote i:hover {
  cursor: pointer;
}

.aboutFixedRoute__heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.aboutFixedRoute__content p {
  margin-bottom: 1em;
}
.aboutFixedRoute__content p:last-child {
  margin-bottom: 0;
}

.fixedRouteInputNumber__heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 35px;
}
.fixedRouteInputNumber__date {
  margin-bottom: 20px;
}
.fixedRouteInputNumber__dateHeading {
  font-weight: 700;
  margin-bottom: 0.2em;
}
.fixedRouteInputNumber__dateHeading i {
  margin-right: 5px;
}
.fixedRouteInputNumber__dateInput {
  max-width: 310px;
  background: #F6F6F6 !important;
}
.fixedRouteInputNumber__numberHeading {
  font-weight: 700;
  margin-bottom: 0.2em;
}
.fixedRouteInputNumber__numberHeading i {
  margin-right: 5px;
}
.fixedRouteInputNumber__numberInput {
  max-width: 90px;
  margin-right: 7px;
  background: #F6F6F6 !important;
}
.fixedRouteInputNumber__button {
  max-width: 160px !important;
  margin-top: 20px;
  margin-right: unset !important;
}
@media screen and (max-width: 767px) {
  .fixedRouteInputNumber__button {
    margin-right: auto;
    margin-left: unset;
  }
}

.fixedRoute {
  display: flex;
  align-items: flex-start;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  .fixedRoute {
    display: block;
  }
}
.fixedRoute__select {
  flex: 0 1 435px;
}
@media screen and (max-width: 767px) {
  .fixedRoute__select {
    margin-bottom: 25px;
  }
}
.fixedRoute__detail {
  flex: 0 1 800px;
}
.fixedRoute__inputNumber {
  display: none;
  margin-top: 35px;
  height: 66px !important;
}
.fixedRoute__inputNumber._active {
  display: flex;
}
@media screen and (max-width: 767px) {
  .fixedRoute__inputNumber {
    position: fixed;
    bottom: 10px;
    width: auto;
    left: 4%;
    right: 4%;
  }
}
@media screen and (max-width: 767px) {
  .fixedRoute__list {
    overflow-x: auto;
    display: flex;
    gap: 15px;
    padding-top: 30px;
    padding-left: 4%;
    padding-bottom: 20px;
    margin-top: -40px;
    margin-left: -4.347826087%;
    margin-right: -4.347826087%;
  }
}
.fixedRoute__item {
  padding: 20px 50px 20px 20px;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 3px;
  filter: drop-shadow(3px 3px 14px rgba(0, 0, 0, 0.15));
  position: relative;
}
@media screen and (max-width: 767px) {
  .fixedRoute__item {
    flex: 0 0 190px;
    padding: 15px 15px 42px;
    margin-bottom: 0;
  }
}
.fixedRoute__item:last-child {
  margin-bottom: 0;
}
.fixedRoute__item:hover {
  cursor: pointer;
}
.fixedRoute__item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: calc(100% - 42px);
  z-index: 1;
  border-radius: 0 3px 3px 0;
  background: #ccc;
}
@media screen and (max-width: 767px) {
  .fixedRoute__item::after {
    top: calc(100% - 30px);
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 3px 3px;
  }
}
.fixedRoute__item::before {
  content: "\f0da";
  font: var(--fa-font-solid);
  position: absolute;
  top: 50%;
  right: 17px;
  z-index: 2;
  color: #fff;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .fixedRoute__item::before {
    top: unset;
    bottom: 8px;
    right: 50%;
    rotate: 90deg;
    translate: 50% 0;
  }
}
.fixedRoute__item._active::after, .fixedRoute__item:hover::after {
  background: #28C0CE;
}
.fixedRoute__itemTitle {
  font-size: 1rem;
  font-weight: bold;
}
.fixedRoute__itemOutline {
  font-size: 0.9375rem;
}

.fixedRouteIntroduction {
  display: none;
  background: #F4F8F9;
  border-radius: 3px;
  padding: 35px 50px;
}
@media screen and (max-width: 767px) {
  .fixedRouteIntroduction {
    padding: 20px;
  }
}
.fixedRouteIntroduction._active {
  display: block;
}
.fixedRouteIntroduction__title {
  font-weight: 700;
  font-size: 1.375rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .fixedRouteIntroduction__title {
    font-size: 1.25rem;
  }
}
.fixedRouteIntroduction__lead {
  margin-bottom: 1.5em;
}
.fixedRouteIntroduction__gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .fixedRouteIntroduction__gallery {
    flex-direction: column;
  }
}
.fixedRouteIntroduction__gallery > div {
  flex: 0 0 calc((100% - 20px) / 2);
}

.fixedRouteDetail {
  display: none;
  background: #F4F8F9;
  border-radius: 3px;
  padding: 35px 50px;
}
@media screen and (max-width: 767px) {
  .fixedRouteDetail {
    padding: 20px;
  }
}
.fixedRouteDetail._active {
  display: block;
}
.fixedRouteDetail__heading {
  font-weight: 700;
  font-size: 1.375rem;
  border-bottom: 3px solid #C3DFE1;
  margin-bottom: 0.8em;
}
.fixedRouteDetail__table {
  width: 100%;
}
.fixedRouteDetail__tableHeader {
  text-align: left;
  font-weight: 500;
  width: 10.5em;
  padding-top: 0.7em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #ddd;
}
.fixedRouteDetail__tableData {
  padding-top: 0.7em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #ddd;
}
.fixedRouteDetail__explanation {
  margin-top: 2em;
  margin-bottom: 3em;
  line-height: 2;
}
.fixedRouteDetail__map {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
.fixedRouteDetail__mapRideOn {
  flex: 1 1 50%;
}
.fixedRouteDetail__mapRideOff {
  flex: 1 1 50%;
}
.fixedRouteDetail__mapTitle {
  font-weight: 900;
  font-size: 1.125rem;
  margin-bottom: 0.1em;
}
.fixedRouteDetail__mapContent {
  font-size: 0.875rem;
  margin-bottom: 0.8em;
}
.fixedRouteDetail__about {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
}
.fixedRouteDetail__aboutTextArea {
  flex: 0 1 390px;
}
.fixedRouteDetail__aboutImgArea {
  flex: 0 1 280px;
}
.fixedRouteDetail__aboutTitle {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.2em;
}
.fixedRouteDetail__aboutContent {
  font-size: 0.875rem;
}
.fixedRouteDetail__noteHeading {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.2em;
}
.fixedRouteDetail__noteItem {
  display: flex;
  align-items: flex-start;
  font-size: 0.8125rem;
}
.fixedRouteDetail__noteItem::before {
  content: "※";
  flex: 0 0 auto;
}

.fixedRoute__tooltip {
  right: 0;
  margin-top: 8px;
}
.serviceContainer {
  margin-top: 40px;
}
.serviceContainer__content {
  display: none;
}
.serviceContainer__content._active {
  display: flex;
}
@media screen and (max-width: 767px) {
  .serviceContainer__content._active {
    display: block;
  }
}
.timeRouteSearchTooltip__container {
  text-align: right;
  max-width: 255px;
  width: 100%;
}
.timeRoute__search {
  flex: 0 1 450px;
}
@media screen and (max-width: 767px) {
  .timeRoute__search {
    margin-bottom: 25px;
  }
}
.timeRoute__map {
  flex: 0 1 800px;
}
@media screen and (max-width: 767px) {
  .timeRoute__map {
    margin-bottom: 25px;
  }
}
.timeRouteInputNumber__numberHeading {
  font-weight: 700;
  margin-bottom: 0.2em;
}
.timeRouteInputNumber__numberHeading i {
  margin-right: 5px;
}
.timeRouteInputNumber__numberInput {
  max-width: 90px;
  margin-right: 7px;
  background: #F6F6F6 !important;
}
.timeRouteInputNumber__radioHeading {
  font-weight: 700;
  margin-bottom: 0.2em;
}
.timeRouteInputNumber__radioHeading i {
  margin-right: 5px;
}
.timeRouteInputNumber__earthHeading {
  display: flex;
  font-weight: 700;
  margin-bottom: 0.2em;
}
.timeRouteInputNumber__earthHeading i {
  margin-right: 5px;
}
.timeRouteInputNumber__earthInput {
  max-width: 250px;
  margin-right: 7px;
  background: #F6F6F6 !important;
}
.timeRouteInputNumber__earthSelect {
  max-width: 250px;
  margin-right: 7px;
  background: #F6F6F6 !important;
}
.timeRouteInputNumber__sreachbuttons  {
  align-items: center;
  justify-content: center;
  max-width: 60px !important;
  margin-top: 20px;
  margin-right: unset !important;
  margin: 0;
}
.timeRouteInputNumber__sreachbuttons i {
  font-size: 1.5em;
}
.timeRouteInputNumber__sreach {
  display: flex;
  align-items: center;
}
.timeRouteInputNumber__Item {
  margin-bottom: 20px; 
}
.timeRouteInputRadio__Item {
  margin-bottom: 20px;
}
.timeRouteInputNumber__fareSreachButton  {
  width: 120px;
  margin-top: 30px;
  margin-left: 200px;
}
.timeRouteInputNumber__fareSreachButton:disabled  {
  background-color: #555;
  color:#ccc;
  opacity:0.6;
  cursor:not-allowed;
}
.timeRouteInputNumber__mapBbox {
  position: relative;
  flex: 0 1 800px;
  width: 100%;
  height: 600px;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .timeRouteInputNumber__mapBbox {
    margin-bottom: 25px;
    height: 400px;
  }
}
.timeRouteInputNumber__map {
  height: 100%;
  width: 100%;
}
.timeRouteInputNumber__mapButton{
  display: flex; 
  position: absolute; 
  bottom: 60px; 
  left: 50%; 
  transform: translateX(-50%); 
  z-index: 9999;
  gap: 20px; 
}
.timeRouteInputNumber__mapButton button{
  padding: 10px 20px;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 150px;
  display: none;
}
.timeRouteInputNumber__mapButton button._red{
  background-color: red;
}
.timeRouteInputNumber__mapButton button._blue{
  background-color: blue;
}
.timeRouteInputNumber__Item span {
  display: block;
  margin-top: 5px;
}
.timeRouteInputNumber__sreach span {
  display: block;
  margin-top: 5px;
}
.fixedRouteDetail__explanation{
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
  margin-top: 20px;
}
.fixedRouteDetail__explanationTextArea {
  flex: 0 1 390px;
}
.fixedRouteDetail__explanationImgArea {
  flex: 0 1 280px;
}
.fixedRouteDetail__explanationTitle {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.2em;
}
.fixedRouteDetail__explanationContent {
  font-size: 0.875rem;
}
.fixedRouteInputNumber__date span {
  display: block;
  margin-top: 5px;
}
.fixedRouteInputNumber__number span {
  display: block;
  margin-top: 5px;
}
.modal__inner__mapSearchErr {
  background-color: white;
  width: 80%;
  max-width: 500px;
  padding: 80px 70px 50px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}
.modal__mapSearchErr__message {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.modal__inner__validationErr {
  background-color: white;
  width: 80%;
  max-width: 500px;
  padding: 80px 70px 50px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}
.modal__validationErr__message {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* --------------------------------------------
 * 　確認画面
 * -------------------------------------------- */
.confirm {
  border-radius: 10px;
  border: 1px solid #ddd;
}
.confirm__title {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 40px 85px 36px;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .confirm__title {
    padding: 20px;
  }
}
.confirm__inner {
  padding: 65px 85px;
}
@media screen and (max-width: 767px) {
  .confirm__inner {
    padding: 35px 20px;
  }
}
.confirm__block {
  margin-bottom: 50px;
}
.confirm__heading {
  font-size: 1.3125rem;
  font-weight: 700;
  border-bottom: 5px solid #ccc;
  padding-bottom: 0.2em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .confirm__heading {
    font-size: 1.25rem;
  }
}
.confirm__table {
  width: 100%;
}
.confirm__tableHeader {
  text-align: left;
  font-weight: 700;
  width: 7em;
  padding-top: 0.9em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid #ddd;
}
.confirm__tableHeader._w13em {
  width: 9em;
}
@media screen and (max-width: 767px) {
  .confirm__tableHeader {
    display: block;
    width: 100%;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.confirm__tableData {
  padding-top: 0.9em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .confirm__tableData {
    display: block;
    width: 100%;
    padding-top: 0.2em;
  }
}
.confirm__tableData input {
  background: #f6f6f6;
  border: none;
  height: 56px;
  border-radius: 3px;
}
.confirm__map {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  gap: 40px;
  margin-top: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .confirm__map {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.confirm__mapRideOn {
  flex: 1 1 50%;
}
.confirm__mapRideOff {
  flex: 1 1 50%;
}
.confirm__mapTitle {
  font-weight: 900;
  font-size: 1.125rem;
  margin-bottom: 0.1em;
}
.confirm__mapContent {
  font-size: 0.875rem;
  margin-bottom: 0.8em;
}
.confirm__tableInput {
  width: 100%;
}
.confirm__tableInputHeader {
  text-align: left;
  font-weight: 700;
  width: 10em;
  padding-top: 0.7em;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .confirm__tableInputHeader {
    display: block;
    padding-top: 0.5em;
    padding-bottom: 0.3em;
  }
}
.confirm__tableInputData {
  padding-top: 0.7em;
  padding-bottom: 0.5em;
  width: calc(100% - 10em);
}
@media screen and (max-width: 767px) {
  .confirm__tableInputData {
    display: block;
    padding-top: 0;
    width: 100%;
  }
}
.confirm__tableInputData input[type=text], .confirm__tableInputData input[type=mail], .confirm__tableInputData input[type=tel], .confirm__tableInputData input[type=password], .confirm__tableInputData select {
  width: 100%;
  background: #f6f6f6;
  padding: 12px;
  border: none;
  height: 56px;
  border-radius: 3px;
}
.confirm__tableInputData input[type=radio] {
  margin-top: 0;
}
.confirm__tableConfirm {
  width: 100%;
}
.confirm__tableConfirmHeader {
  text-align: left;
  font-weight: 700;
  width: 10em;
  padding-top: 0.9em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .confirm__tableConfirmHeader {
    display: block;
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }
}
.confirm__tableConfirmData {
  padding-top: 0.9em;
  padding-bottom: 0.6em;
  width: calc(100% - 10em);
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .confirm__tableConfirmData {
    display: block;
    width: 100%;
    padding-top: 0.2em;
  }
}
.confirm__note {
  border-top: 1px solid #aaa;
  padding-top: 35px;
}
.confirm__noteHeading {
  font-weight: 700;
  margin-bottom: 0.4em;
}
.confirm__noteDetail {
  padding: 17px 20px;
  background: #F3F3F3;
}
.confirm__termConsent {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 15px;
}
.confirm__termConsent a {
  color: #28C0CE;
  text-decoration: underline;
}
.confirm__termConsentCheck {
  display: block;
  margin-bottom: 20px;
}
.confirm__cancel {
  margin-top: 25px;
  text-align: right;
}
.confirm__cancel a {
  padding-bottom: 0.4em;
  border-bottom: 1px solid #333;
}

.confirm__cancel button {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  padding-bottom: 0.4em;
  border: none;
  border-bottom: 1px solid #333;
  cursor: pointer;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
}

.cardNumber__data {
  display: flex;
  gap: 5px;
  width: 100%;
}
.cardNumber__dataNumber {
  width: 100%;
  max-width: 120px;
  display: flex;
  align-items: center;
}
.cardNumber__hyphen {
  display: flex;
  align-items: center;
}
.dateOfExpiry__data {
  display: flex;
  gap: 10px;
}
.dateOfExpiry__dataYear {
  width: 120px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dateOfExpiry__dataMonth {
  width: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.securityCode__data input {
  width: 5em !important;
}
.confirm__guidance__break {
  word-break: break-all;
}
.resavationInformation__guidance__break {
  word-break: break-all;
}
.modal__inner__termConsentCheckErr {
  background-color: white;
  width: 80%;
  max-width: 500px;
  padding: 80px 70px 50px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}
.modal__termConsentCheckErr__message {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* --------------------------------------------
 * 　予約完了
 * -------------------------------------------- */
.resavationCompleted {
  background: #ECF3F4;
  border-radius: 10px;
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .resavationCompleted {
    padding: 40px 30px 30px;
  }
}
.resavationCompleted__icon {
  text-align: center;
  margin-bottom: 1.5em;
}
.resavationCompleted__heading {
  font-size: 1.4375rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.4em;
}
@media screen and (max-width: 767px) {
  .resavationCompleted__heading {
    font-size: 1.3125rem;
  }
}
.resavationCompleted__lead {
  text-align: center;
  margin-bottom: 1.5em;
}
.resavationCompleted__card {
  margin-bottom: 50px;
}
.resavationCompleted__informations {
  margin-bottom: 50px;
}
.resavationCompleted__backToResavation {
  margin-top: 40px;
}

.resavationCard {
  text-align: center;
  padding: 50px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .resavationCard {
    padding: 20px;
  }
}
.resavationCard__number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #28C0CE;
  word-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .resavationCard__number {
    font-size: 1.3125rem;
    margin-bottom: 7px;
  }
}
.resavationCard__mail {
  font-weight: 500;
  word-wrap: break-word;
}

.resavationInformation {
  margin-bottom: 1.3em;
}
.resavationInformation:last-child {
  margin-bottom: 0;
}
.resavationInformation__title {
  font-weight: 700;
  margin-bottom: 0.2em;
}

/* --------------------------------------------
 * 　ログイン画面
 * -------------------------------------------- */
.login {
  background: #ECF3F4;
  border-radius: 10px;
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .login {
    padding: 40px 30px 30px;
  }
}
.login__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .login__heading {
    font-size: 1.3125rem;
  }
}
.login__heading i {
  font-size: 1rem;
  padding-left: 8px;
}
.login__tooltip {
  right: -38px;
  margin-top: -32px;
}
.login__caseForgot {
  margin-top: 1.5em;
  text-align: center;
}
.login__caseForgot a {
  text-decoration: underline;
}

.loginForm__number {
  margin-bottom: 20px;
}
.loginForm__main {
  margin-bottom: 30px;
}

/* --------------------------------------------
 * 　予約確認メール再受診
 * -------------------------------------------- */
.resavationSearch {
  background: #ECF3F4;
  border-radius: 10px;
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .resavationSearch {
    padding: 40px 30px 30px;
  }
}
.resavationSearch__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .resavationSearch__heading {
    font-size: 1.3125rem;
  }
}
.resavationSearch__heading i {
  font-size: 1rem;
  padding-left: 8px;

}
.resavationSearch__tooltip {
  right: -38px;
  margin-top: -32px;
}
.resavationSearch__inputDate {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .resavationSearch__inputDate {
    display: block;
  }
}
.resavationSearch__inputDateBlock {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .resavationSearch__inputDateBlock {
    margin-bottom: 10px;
  }
}
.resavationSearch__button {
  margin-top: 30px;
}
.resavationSearch table {
  width: 100%;
}
.resavationSearch table th {
  width: 8em;
  min-width: 8em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .resavationSearch table th {
    display: block;
    margin-bottom: 5px;
  }
}
.resavationSearch table td {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .resavationSearch table td {
    display: block;
  }
}
.resavationSearch table select {
  flex: 1 1 4em;
  margin-bottom: 0;
  padding: 0.3em 0.5em;
}
@media screen and (max-width: 767px) {
  .resavationSearch table select {
    flex: 0 1 6em;
  }
}
.resavationSearch table select.year {
  flex: 1 1 6em;
}
@media screen and (max-width: 767px) {
  .resavationSearch table select.year {
    flex: 0 1 8em;
  }
}
.resavationSearch table input {
  margin-bottom: 0;
  padding: 0.3em 0.5em;
}

/* --------------------------------------------
 * 　キャンセル確認
 * -------------------------------------------- */
.cancelConfirm {
  background: #ECF3F4;
  border-radius: 10px;
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .cancelConfirm {
    padding: 40px 30px 30px;
  }
}
.cancelConfirm__heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .cancelConfirm__heading {
    font-size: 1.3125rem;
  }
}
.cancelConfirm__lead {
  text-align: center;
  margin-bottom: 1.5em;
}
.cancelConfirm__target {
  margin-bottom: 40px;
}

.cancelTarget {
  background: #fff;
  padding: 30px 50px;
}
.cancelTarget__heading {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
.cancelTarget__table th {
  width: 8em;
  min-width: 8em;
  text-align: left;
  padding-top: 0.9em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid #ddd;
}
.cancelTarget__table td {
  width: 100%;
  padding-top: 0.9em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid #ddd;
}

/* --------------------------------------------
 * 　キャンセル完了
 * -------------------------------------------- */
.cancelComplete {
  background: #ECF3F4;
  border-radius: 10px;
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .cancelComplete {
    padding: 40px 30px 30px;
  }
}
.cancelComplete__heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .cancelComplete__heading {
    font-size: 1.3125rem;
  }
}
.cancelComplete__lead {
  text-align: center;
  margin-bottom: 1.5em;
}
.cancelComplete__card {
  margin-bottom: 45px;
}
.cancelComplete__buttons {
  display: flex;
  justify-content: center;
  align-items: center; 
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .cancelComplete__buttons {
    flex-direction: column;
    gap: 10px;
  }
}
.cancelComplete__button {
  flex: 0 1 220px;
  margin-left: unset;
  margin-right: unset;
}
@media screen and (max-width: 767px) {
  .cancelComplete__button {
    flex: 0 0 auto;
  }
}

/* --------------------------------------------
 * 　ニュース一覧
 * -------------------------------------------- */
.news__heading {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .news__heading {
    font-size: 1.3125rem;
  }
}
.news__inner {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1279px) {
  .news__inner {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .news__inner {
    display: block;
  }
}
.news__list {
  flex: 1 1 420px;
}
@media screen and (max-width: 767px) {
  .news__list {
    margin-bottom: 30px;
  }
}
.news__article {
  flex: 1 1 800px;
}

@media screen and (max-width: 767px) {
  .newsList {
    max-height: 180px;
    overflow: auto;
  }
}
.newsList__item {
  padding: 15px 50px 13px 17px;
  border-bottom: 1px solid #DDD;
  position: relative;
}
.newsList__item:hover {
  cursor: pointer;
}
.newsList__item._active, .newsList__item:hover {
  background: #ECF3F4;
}
.newsList__item._active::before, .newsList__item:hover::before {
  color: #28C0CE;
}
.newsList__item::before {
  content: "\f0da";
  font: var(--fa-font-solid);
  position: absolute;
  top: 50%;
  right: 17px;
  z-index: 2;
  color: #333;
  transform: translateY(-50%);
}
.newsList__itemDate {
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .newsList__itemDate {
    font-size: 0.75rem;
  }
}
.newsList__itemTitle {
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .newsList__itemTitle {
    font-size: 0.875rem;
  }
}

.newsArticle {
  border-radius: 10px;
  background: #fff;
  padding: 42px 50px;
  filter: drop-shadow(3px 3px 14px rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 767px) {
  .newsArticle {
    padding: 25px 20px;
  }
}
.newsArticle__date {
  font-size: 0.875rem;
}
.newsArticle__title {
  font-size: 1.125rem;
  font-weight: 700;
  padding-bottom: 1em;
  margin-bottom: 1.3em;
  border-bottom: 1px solid #ddd;
}
.newsArticle__container {
  font-size: 0.9375rem;
}

/* --------------------------------------------
 * 　フッター
 * -------------------------------------------- */
.footer {
  margin-top: 45px;
  padding-bottom: 10px;
}
.footer__copyRight {
  font-size: 0.8125rem;
  text-align: right;
}

/* --------------------------------------------
 * 　利用規約/個人情報
 * -------------------------------------------- */
.terms__heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .terms__heading {
    font-size: 1.3125rem;
  }
}
.terms__lead {
  margin-bottom: 50px;
}
.terms__list {
  list-style: none;
}
.terms__item {
  margin-bottom: 40px;
  font-weight: bold;
}
.terms__listChild {
  margin-left: 40px;
  font-weight: normal;
}
.terms__itemChild {
  margin-bottom: 5px;
}
.terms__listChildDepth2 {
  margin-left: 40px;
  counter-reset: counter;
}
.terms__itemChildDepth2 {
  counter-increment: counter;
}
.terms__itemChildDepth2::marker {
  content: "(" counter(counter) ")";
}
.terms__insertBulletList {
  list-style: disc;
  margin-left: 40px;
}
.terms li._noNumber {
  list-style: none;
  margin-left: -20px;
}
.terms__link {
  color: #288fb5;
}
.terms__date {
  font-size: 0.875rem;
}
.text-danger {
  color: #E9EDEF;
  background-color: rgba(231, 76, 60, 0.88);
  border-color: rgba(231, 76, 60, 0.88);
  list-style: none;
  padding-left: 20px;
}
.alert-danger {
  color: #E9EDEF;
  background-color: rgba(231, 76, 60, 0.88);
  border-color: rgba(231, 76, 60, 0.88);
  list-style: none;
  margin-bottom: 5px;
  padding-left: 20px;
}

/* --------------------------------------------
 * 　共通
 * -------------------------------------------- */
.tooltip__container {
  width: 100%;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip {
  visibility: hidden;
  width:340px;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  transform: none;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .tooltip {
    width: 100%;
  }
}
.tooltip__container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
.tooltip__heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.tooltip__content {
  font-weight: normal;
}
.tooltip__content p {
  margin-bottom: 1em;
}
.tooltip__content p:last-child {
  margin-bottom: 0;
}
/*# sourceMappingURL=style.css.map */