.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px); }

/* Default theme styles of the overlay */
.remodal-overlay {
  background: #000;
  opacity: 0.8; }

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes; }

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes; }

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 30px 20px; }

/* Default theme styles of the modal dialog */
.remodal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
  border-radius: 20px 0 0 0; }

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes; }

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes; }

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle; }

/* Close button */
.remodal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #1A1311;
  border: 0;
  outline: 0;
  background: transparent; }

.remodal-close:hover,
.remodal-close:focus {
  color: #1A1311; }

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center; }

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0; }

.remodal-confirm {
  color: #fff;
  background: #81c784; }

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a; }

.remodal-cancel {
  color: #fff;
  background: #e57373; }

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350; }

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0); } }
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0); } }
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0); } }
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0); } }
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 1000px; } }
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38; }

.lt-ie9 .remodal {
  width: 700px; }

html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none; }

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none; }

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none; }

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch; }

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: ""; }

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%; }

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block; }

body {
  background: #f7f7f7; }

.access {
  padding-top: 81px;
  position: relative;
  line-height: 1.5; }
  @media screen and (max-width: 767px) {
    .access {
      padding-top: 41px; } }
  .access::before {
    content: "";
    display: block;
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    background: url("/assets/images/recruit/bg_shop.png") no-repeat;
    background-size: cover;
    z-index: -1; }
    @media screen and (max-width: 767px) {
      .access::before {
        height: 180px;
        background: url("/assets/images/recruit/bg_shop-sp.png") no-repeat;
        background-size: cover; } }
  .access__wrapper {
    width: 1200px;
    margin: 62px auto 0;
    background: #fff;
    border-radius: 40px 0 0 0;
    padding: 101px 101px 120px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    @media screen and (max-width: 767px) {
      .access__wrapper {
        width: 92%;
        margin: 65px auto 0;
        border-radius: 20px 0 0 0;
        padding: 41px 29px 46px;
        -webkit-box-sizing: border-box;
                box-sizing: border-box; } }
  .access__ttl {
    font-size: 42px;
    font-family: "VenusSB-MediumExtended", sans-serif;
    color: #fff;
    text-align: center;
    letter-spacing: 0.06em; }
    @media screen and (max-width: 767px) {
      .access__ttl {
        width: 100%;
        font-size: 27px;
        line-height: 1.3; } }
  .access__subttl {
    text-align: center;
    font-size: 16px;
    font-family: "VenusSB-MediumExtended", sans-serif;
    color: #fff;
    margin-top: 10px;
    letter-spacing: 0.15em; }
    @media screen and (max-width: 767px) {
      .access__subttl {
        font-size: 12px;
        margin-top: 3px; } }
  .access__map__ttl {
    font-size: 41px;
    font-weight: bold;
    text-align: center;
    position: relative;
    color: #231815; }
    @media screen and (max-width: 767px) {
      .access__map__ttl {
        font-size: 21px;
        font-weight: normal; } }
    .access__map__ttl::after {
      content: "";
      display: block;
      width: 59px;
      height: 1px;
      background: #c4c4c4;
      position: absolute;
      bottom: -30px;
      right: 50%;
      -webkit-transform: translateX(50%);
              transform: translateX(50%); }
      @media screen and (max-width: 767px) {
        .access__map__ttl::after {
          width: 29px;
          bottom: -20px; } }
  .access__map__img {
    margin-top: 70px;
    width: 100%; }
    @media screen and (max-width: 767px) {
      .access__map__img {
        margin-top: 37px; } }
  .access__map__adress {
    font-size: 16px;
    color: #231815;
    text-align: center;
    margin-top: 30px; }
    @media screen and (max-width: 767px) {
      .access__map__adress {
        margin-top: 16px;
        font-size: 13px; } }
  .access__map__btn {
    margin-top: 25px; }
    @media screen and (max-width: 767px) {
      .access__map__btn {
        margin-top: 13px; } }
  .access__map__link {
    display: block;
    font-size: 16px;
    color: #231815;
    text-align: center;
    width: 420px;
    background: #ffe100;
    padding: 25px 0;
    border-radius: 40px;
    margin: 0 auto;
    letter-spacing: 0.1em;
    position: relative; }
    @media screen and (max-width: 767px) {
      .access__map__link {
        width: 100%;
        font-size: 13px;
        padding: 19px 0; } }
    .access__map__link::after {
      content: "";
      display: block;
      width: 27px;
      height: 27px;
      background: url("/assets/images/facility/btn_icon.png") no-repeat;
      background-size: contain;
      position: absolute;
      top: 50%;
      right: 21px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
      @media screen and (max-width: 767px) {
        .access__map__link::after {
          width: 18px;
          height: 18px;
          right: 15px; } }
  .access__train {
    margin-top: 60px; }
    @media screen and (max-width: 767px) {
      .access__train {
        margin-top: 50px; } }
    .access__train__ttl {
      font-size: 21px;
      font-weight: bold;
      text-align: center;
      color: #fff;
      background: #1a1311;
      border-radius: 20px 0 0 0;
      padding: 19px 0;
      border-bottom: 4px solid #ffe100;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      @media screen and (max-width: 767px) {
        .access__train__ttl {
          font-size: 15px;
          border-radius: 10px 0 0 0;
          border-bottom: 2px solid #ffe100;
          padding: 12px 0; } }
      .access__train__ttl__txt {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .access__train__ttl__txt::before {
          content: "";
          display: inline-block;
          width: 25px;
          height: 29px;
          background: url("/assets/images/access/train_icon.png") no-repeat;
          background-size: contain;
          margin-right: 10px; }
          @media screen and (max-width: 767px) {
            .access__train__ttl__txt::before {
              width: 13px;
              height: 15px;
              margin-right: 7px; } }
    .access__train__list {
      margin-top: 25px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media screen and (max-width: 767px) {
        .access__train__list {
          display: block;
          margin-top: 20px; } }
    .access__train__item {
      width: 50%;
      padding: 0 23px 0 23px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      @media screen and (max-width: 767px) {
        .access__train__item {
          width: 100%;
          padding: 0 0 0 23px;
          margin-top: 17px; } }
      @media screen and (max-width: 767px) {
        .access__train__item:first-child {
          margin-top: 0; } }
    .access__train__name {
      font-size: 18px;
      font-weight: bold;
      line-height: 1.6;
      position: relative;
      color: #393432; }
      @media screen and (max-width: 767px) {
        .access__train__name {
          font-size: 15px;
          line-height: 1.4; } }
      .access__train__name::before {
        content: "";
        display: block;
        width: 18px;
        height: 18px;
        background: url("/assets/images/access/access_circle.png") no-repeat;
        background-size: contain;
        position: absolute;
        top: 50%;
        left: -5px;
        -webkit-transform: translate(-100%, -50%);
                transform: translate(-100%, -50%); }
        @media screen and (max-width: 767px) {
          .access__train__name::before {
            width: 15px;
            height: 15px;
            left: -8px; } }
    .access__train__detail {
      font-size: 16px;
      line-height: 1.875;
      margin-top: 3px;
      color: #393432; }
      @media screen and (max-width: 767px) {
        .access__train__detail {
          font-size: 13px;
          line-height: 1.75;
          margin-top: 5px; } }
  .access__bus {
    margin-top: 60px;
    margin-bottom: 45px; }
    @media screen and (max-width: 767px) {
      .access__bus {
        margin-top: 50px; } }
    .access__bus__ttl {
      font-size: 21px;
      font-weight: bold;
      text-align: center;
      color: #fff;
      background: #1a1311;
      border-radius: 20px 0 0 0;
      padding: 19px 0;
      border-bottom: 4px solid #ffe100;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      @media screen and (max-width: 767px) {
        .access__bus__ttl {
          font-size: 15px;
          border-radius: 10px 0 0 0;
          border-bottom: 2px solid #ffe100;
          padding: 12px 0; } }
      .access__bus__ttl__txt {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .access__bus__ttl__txt::before {
          content: "";
          display: inline-block;
          width: 26px;
          height: 29px;
          background: url("/assets/images/access/bus_icon.png") no-repeat;
          background-size: contain;
          margin-right: 10px; }
          @media screen and (max-width: 767px) {
            .access__bus__ttl__txt::before {
              width: 14px;
              height: 16px;
              margin-right: 7px; } }
    .access__bus__list {
      margin-top: 30px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      @media screen and (max-width: 767px) {
        .access__bus__list {
          display: block;
          margin-top: 20px; } }
    .access__bus__item {
      width: 49.4%; }
      @media screen and (max-width: 767px) {
        .access__bus__item {
          width: 100%; } }
      .access__bus__item:last-child {
        padding-left: 23px;
        -webkit-box-sizing: border-box;
                box-sizing: border-box; }
        @media screen and (max-width: 767px) {
          .access__bus__item:last-child {
            padding-left: 0;
            margin-top: 51px; } }
    .access__bus__txt {
      font-size: 16px;
      color: #231815;
      line-height: 1.875;
      padding-right: 12px; }
      @media screen and (max-width: 767px) {
        .access__bus__txt {
          font-size: 13px;
          line-height: 1.75;
          padding-right: 0; } }
    .access__bus__route {
      width: 100%;
      margin-top: 18px; }
      @media screen and (max-width: 767px) {
        .access__bus__route {
          margin-top: 14px; } }
    .access__bus__illust {
      width: 333px;
      margin-top: 15px;
      margin-left: 57px; }
      @media screen and (max-width: 767px) {
        .access__bus__illust {
          margin-left: 10%;
          margin-top: 8px;
          width: 65.7%; } }
    .access__bus__guide {
      font-size: 18px;
      font-weight: bold;
      line-height: 1.6;
      position: relative;
      color: #393432; }
      @media screen and (max-width: 767px) {
        .access__bus__guide {
          font-size: 15px;
          line-height: 1.4;
          padding-left: 23px; } }
      .access__bus__guide::before {
        content: "";
        display: block;
        width: 18px;
        height: 18px;
        background: url("/assets/images/access/access_circle.png") no-repeat;
        background-size: contain;
        position: absolute;
        top: 50%;
        left: -5px;
        -webkit-transform: translate(-100%, -50%);
                transform: translate(-100%, -50%); }
        @media screen and (max-width: 767px) {
          .access__bus__guide::before {
            width: 15px;
            height: 15px;
            -webkit-transform: translate(0, -50%);
                    transform: translate(0, -50%);
            left: 0px; } }
    .access__bus__station {
      font-size: 16px;
      color: #393432;
      line-height: 1.875; }
      @media screen and (max-width: 767px) {
        .access__bus__station {
          margin-top: 6px;
          font-size: 13px;
          line-height: 1.75;
          padding-left: 23px; } }
    .access__bus__map {
      width: 100%;
      margin-top: 18px; }
      @media screen and (max-width: 767px) {
        .access__bus__map {
          margin-top: 10px; } }
    .access__bus__btn {
      margin-top: 40px; }
      @media screen and (max-width: 767px) {
        .access__bus__btn {
          margin-top: 30px; } }
    .access__bus__link {
      display: block;
      font-size: 16px;
      color: #231815;
      text-align: center;
      width: 420px;
      background: #ffe100;
      padding: 25px 0;
      border-radius: 40px;
      margin: 0 auto;
      letter-spacing: 0.1em;
      position: relative; }
      @media screen and (max-width: 767px) {
        .access__bus__link {
          width: 100%;
          font-size: 13px;
          padding: 19px 0; } }
      .access__bus__link::after {
        content: "";
        display: block;
        width: 27px;
        height: 27px;
        background: url("/assets/images/facility/btn_icon.png") no-repeat;
        background-size: contain;
        position: absolute;
        top: 50%;
        right: 21px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
        @media screen and (max-width: 767px) {
          .access__bus__link::after {
            width: 18px;
            height: 18px;
            right: 15px; } }
  .access__car {
    position: relative;
    padding-top: 250px; }
    @media screen and (max-width: 767px) {
      .access__car {
        padding-top: 50px; } }
    .access__car .parking-anchor {
      position: absolute;
      top: 130px; }
      @media screen and (max-width: 767px) {
        .access__car .parking-anchor {
          top: -20px; } }
    .access__car__ttl {
      font-size: 21px;
      font-weight: bold;
      text-align: center;
      color: #fff;
      background: #1a1311;
      border-radius: 20px 0 0 0;
      padding: 19px 0;
      border-bottom: 4px solid #ffe100;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      @media screen and (max-width: 767px) {
        .access__car__ttl {
          font-size: 15px;
          border-radius: 10px 0 0 0;
          border-bottom: 2px solid #ffe100;
          padding: 12px 0; } }
      .access__car__ttl__txt {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .access__car__ttl__txt::before {
          content: "";
          display: inline-block;
          width: 32px;
          height: 22px;
          background: url("/assets/images/access/car_icon.png") no-repeat;
          background-size: contain;
          margin-right: 10px; }
          @media screen and (max-width: 767px) {
            .access__car__ttl__txt::before {
              width: 17px;
              height: 12px;
              margin-right: 6px; } }
    .access__car__txt {
      font-size: 16px;
      color: #231815;
      line-height: 1.875;
      margin-top: 25px; }
      @media screen and (max-width: 767px) {
        .access__car__txt {
          font-size: 13px;
          margin-top: 20px;
          line-height: 1.75; } }
    .access__car__guide {
      margin-top: 10px; }
      @media screen and (max-width: 767px) {
        .access__car__guide {
          margin-top: 20px; } }
      .access__car__guide__ttl {
        font-size: 18px;
        font-weight: bold;
        line-height: 1.6;
        position: relative;
        color: #393432;
        padding-left: 23px; }
        @media screen and (max-width: 767px) {
          .access__car__guide__ttl {
            font-size: 15px;
            line-height: 1.4;
            padding-left: 23px; } }
        .access__car__guide__ttl::before {
          content: "";
          display: block;
          width: 18px;
          height: 18px;
          background: url("/assets/images/access/access_circle.png") no-repeat;
          background-size: contain;
          position: absolute;
          top: 50%;
          left: 0;
          -webkit-transform: translate(0, -50%);
                  transform: translate(0, -50%); }
          @media screen and (max-width: 767px) {
            .access__car__guide__ttl::before {
              width: 15px;
              height: 15px;
              -webkit-transform: translate(0, -50%);
                      transform: translate(0, -50%);
              left: 0px; } }
      .access__car__guide__map {
        margin-top: 12px; }
        @media screen and (max-width: 767px) {
          .access__car__guide__map {
            margin-top: 10px; } }
        .access__car__guide__map__intro {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; }
          @media screen and (max-width: 767px) {
            .access__car__guide__map__intro {
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
                  -ms-flex-direction: column;
                      flex-direction: column;
              -webkit-box-align: start;
                  -ms-flex-align: start;
                      align-items: flex-start; } }
          .access__car__guide__map__intro__txt {
            font-size: 16px;
            font-weight: 500; }
            @media screen and (max-width: 767px) {
              .access__car__guide__map__intro__txt {
                font-size: 12px; } }
            .access__car__guide__map__intro__txt .note {
              font-size: 13px; }
              @media screen and (max-width: 767px) {
                .access__car__guide__map__intro__txt .note {
                  font-size: 11px; } }
          .access__car__guide__map__intro__icos {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            width: 240px; }
            @media screen and (max-width: 767px) {
              .access__car__guide__map__intro__icos {
                -webkit-box-pack: center;
                    -ms-flex-pack: center;
                        justify-content: center;
                width: 100%;
                margin-top: 15px; } }
            .access__car__guide__map__intro__icos .ico {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center; }
              @media screen and (max-width: 767px) {
                .access__car__guide__map__intro__icos .ico:nth-child(1) {
                  margin-right: 15px; } }
              .access__car__guide__map__intro__icos .ico__img {
                width: 50px;
                margin-right: 10px;
                line-height: 0; }
                @media screen and (max-width: 767px) {
                  .access__car__guide__map__intro__icos .ico__img {
                    width: 32px;
                    margin-right: 8px; } }
                .access__car__guide__map__intro__icos .ico__img img {
                  width: 100%; }
              .access__car__guide__map__intro__icos .ico__txt {
                font-size: 20px;
                font-weight: 500; }
                @media screen and (max-width: 767px) {
                  .access__car__guide__map__intro__icos .ico__txt {
                    font-size: 13px; } }
        .access__car__guide__map__img {
          position: relative;
          margin-top: 22px; }
          @media screen and (max-width: 767px) {
            .access__car__guide__map__img {
              margin-top: 5px; } }
          .access__car__guide__map__img .map {
            width: 100%; }
          .access__car__guide__map__img .map-ico {
            position: absolute;
            width: calc(50/998*100%); }
            @media screen and (max-width: 767px) {
              .access__car__guide__map__img .map-ico {
                width: calc(32/301*100%); } }
            .access__car__guide__map__img .map-ico--p1 {
              left: calc(307/998*100%);
              top: calc(204/1048*100%); }
            @media screen and (max-width: 767px) {
              .access__car__guide__map__img .map-ico {
                left: calc(62/287*100%);
                top: calc(52/301*100%); } }
            .access__car__guide__map__img .map-ico--p2 {
              left: calc(307/998*100%);
              top: calc(738/1048*100%); }
              @media screen and (max-width: 767px) {
                .access__car__guide__map__img .map-ico--p2 {
                  left: calc(72/287*100%);
                  top: calc(202/301*100%); } }
            .access__car__guide__map__img .map-ico--p3 {
              left: calc(616/998*100%);
              top: calc(924/1048*100%); }
              @media screen and (max-width: 767px) {
                .access__car__guide__map__img .map-ico--p3 {
                  left: calc(157/287*100%);
                  top: calc(259/301*100%); } }
        .access__car__guide__map__txt {
          margin-top: 35px;
          font-size: 16px; }
          @media screen and (max-width: 767px) {
            .access__car__guide__map__txt {
              margin-top: 16px; } }
        .access__car__guide__map__caution {
          margin-top: 22px;
          font-size: 12px; }
          @media screen and (max-width: 767px) {
            .access__car__guide__map__caution {
              margin-top: 10px; } }
      .access__car__guide__list {
        margin-top: 30px; }
        @media screen and (max-width: 767px) {
          .access__car__guide__list {
            margin-top: 20px; } }
      .access__car__guide__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .access__car__guide__item:first-child .access__car__guide__item__ttl {
          border-top: 1px solid #1a1311; }
        .access__car__guide__item:first-child .access__car__guide__item__detail {
          border-top: 1px solid #d8d8d8; }
        @media screen and (max-width: 767px) {
          .access__car__guide__item:last-child .access__car__guide__item__ttl {
            border-bottom: 1px solid #1a1311; } }
        @media screen and (max-width: 767px) {
          .access__car__guide__item:last-child .access__car__guide__item__detail {
            border-bottom: 1px solid #d8d8d8; } }
        .access__car__guide__item__ttl {
          width: 240px;
          background: #f4f4f4;
          padding: 18px;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          border-top: 1px solid #1a1311; }
          @media screen and (max-width: 767px) {
            .access__car__guide__item__ttl {
              width: 40%;
              padding: 17px 6px; } }
          .access__car__guide__item__ttl__txt {
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            color: #231815; }
            @media screen and (max-width: 767px) {
              .access__car__guide__item__ttl__txt {
                font-size: 13px; } }
        .access__car__guide__item__detail {
          width: calc(100% - 240px);
          padding: 24px 18px;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          border-top: 1px solid #d8d8d8; }
          @media screen and (max-width: 767px) {
            .access__car__guide__item__detail {
              width: 60%;
              padding: 17px 2px 17px 15px; } }
          .access__car__guide__item__detail__txt {
            font-size: 16px;
            color: #231815;
            line-height: 1.875; }
            @media screen and (max-width: 767px) {
              .access__car__guide__item__detail__txt {
                font-size: 13px;
                line-height: 1.5;
                margin-top: 2px; } }
            .access__car__guide__item__detail__txt:first-child {
              margin-top: 0; }
          @media screen and (max-width: 767px) {
            .access__car__guide__item__detail__indent {
              text-indent: -3em;
              padding-left: 3em; } }
      .access__car__guide__caution {
        font-size: 12px;
        color: #231815;
        margin-top: 17px; }
        @media screen and (max-width: 767px) {
          .access__car__guide__caution {
            margin-top: 20px;
            font-size: 13px;
            line-height: 1.6; } }
    .access__car__service {
      margin-top: 66px; }
      @media screen and (max-width: 767px) {
        .access__car__service {
          margin-top: 36px; } }
      .access__car__service__ttl {
        font-size: 18px;
        font-weight: bold;
        line-height: 1.6;
        position: relative;
        color: #393432;
        padding-left: 23px; }
        @media screen and (max-width: 767px) {
          .access__car__service__ttl {
            font-size: 15px;
            line-height: 1.4;
            padding-left: 23px; } }
        .access__car__service__ttl::before {
          content: "";
          display: block;
          width: 18px;
          height: 18px;
          background: url("/assets/images/access/access_circle.png") no-repeat;
          background-size: contain;
          position: absolute;
          top: 50%;
          left: 0;
          -webkit-transform: translate(0, -50%);
                  transform: translate(0, -50%); }
          @media screen and (max-width: 767px) {
            .access__car__service__ttl::before {
              width: 15px;
              height: 15px;
              -webkit-transform: translate(0, -50%);
                      transform: translate(0, -50%);
              left: 0px; } }
      .access__car__service__list {
        margin-top: 20px; }
        @media screen and (max-width: 767px) {
          .access__car__service__list {
            margin-top: 10px; } }
      .access__car__service__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .access__car__service__item:first-child .access__car__guide__item__ttl {
          border-top: 1px solid #1a1311; }
        .access__car__service__item:first-child .access__car__guide__item__detail {
          border-top: 1px solid #d8d8d8; }
        .access__car__service__item__ttl {
          width: 240px;
          background: #f4f4f4;
          padding: 18px;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          border-top: 1px solid #1a1311; }
          @media screen and (max-width: 767px) {
            .access__car__service__item__ttl {
              width: 40%;
              padding: 17px 6px; } }
          .access__car__service__item__ttl__txt {
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            color: #231815; }
            @media screen and (max-width: 767px) {
              .access__car__service__item__ttl__txt {
                font-size: 13px; } }
        .access__car__service__item__detail {
          width: calc(100% - 240px);
          padding: 24px 18px;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          border-top: 1px solid #d8d8d8; }
          @media screen and (max-width: 767px) {
            .access__car__service__item__detail {
              width: 60%;
              padding: 17px 2px 17px 15px; } }
          .access__car__service__item__detail__txt {
            font-size: 16px;
            color: #231815;
            margin-top: 14px; }
            @media screen and (max-width: 767px) {
              .access__car__service__item__detail__txt {
                font-size: 13px;
                line-height: 1.5;
                margin-top: 2px; } }
            .access__car__service__item__detail__txt:first-child {
              margin-top: 0; }
      .access__car__service__txt {
        font-size: 16px;
        color: #231815;
        margin-top: 18px; }
        @media screen and (max-width: 767px) {
          .access__car__service__txt {
            font-size: 13px;
            margin-top: 10px;
            line-height: 1.75; } }
      .access__car__service__caution {
        margin-top: 18px; }
        @media screen and (max-width: 767px) {
          .access__car__service__caution {
            margin-top: 8px; } }
        .access__car__service__caution__txt {
          margin-top: 10px;
          font-size: 12px;
          color: #231815; }
          @media screen and (max-width: 767px) {
            .access__car__service__caution__txt {
              font-size: 13px;
              line-height: 1.6;
              margin-top: 0; } }
          .access__car__service__caution__txt:first-child {
            margin-top: 0; }
  .access__seabus {
    margin-top: 150px; }
    @media screen and (max-width: 767px) {
      .access__seabus {
        margin-top: 50px; } }
    .access__seabus__ttl {
      font-size: 21px;
      font-weight: bold;
      text-align: center;
      color: #fff;
      background: #1a1311;
      border-radius: 20px 0 0 0;
      padding: 19px 0;
      border-bottom: 4px solid #ffe100;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      @media screen and (max-width: 767px) {
        .access__seabus__ttl {
          font-size: 15px;
          border-radius: 10px 0 0 0;
          border-bottom: 2px solid #ffe100;
          padding: 12px 0; } }
      .access__seabus__ttl__txt {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .access__seabus__ttl__txt::before {
          content: "";
          display: inline-block;
          width: 37px;
          height: 11px;
          background: url("/assets/images/access/seabus_icon.png") no-repeat;
          background-size: contain;
          margin-right: 10px; }
          @media screen and (max-width: 767px) {
            .access__seabus__ttl__txt::before {
              width: 37px;
              margin-right: 6px; } }
    .access__seabus__txt {
      font-size: 16px;
      color: #231815;
      line-height: 1.875;
      margin-top: 25px; }
      @media screen and (max-width: 767px) {
        .access__seabus__txt {
          font-size: 13px;
          margin-top: 20px;
          line-height: 1.75; } }
    .access__seabus__guide {
      margin-top: 10px; }
      @media screen and (max-width: 767px) {
        .access__seabus__guide {
          margin-top: 20px; } }
      .access__seabus__guide__ttl {
        margin-top: 35px;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.6;
        position: relative;
        color: #393432;
        padding-left: 23px; }
        @media screen and (max-width: 767px) {
          .access__seabus__guide__ttl {
            font-size: 15px;
            line-height: 1.4;
            padding-left: 23px; } }
        .access__seabus__guide__ttl::before {
          content: "";
          display: block;
          width: 18px;
          height: 18px;
          background: url("/assets/images/access/access_circle.png") no-repeat;
          background-size: contain;
          position: absolute;
          top: 27%;
          left: 0;
          -webkit-transform: translate(0, -50%);
                  transform: translate(0, -50%); }
          @media screen and (max-width: 767px) {
            .access__seabus__guide__ttl::before {
              width: 15px;
              height: 15px;
              -webkit-transform: translate(0, -50%);
                      transform: translate(0, -50%);
              left: 0px; } }
      .access__seabus__guide__map {
        margin-top: 12px; }
        @media screen and (max-width: 767px) {
          .access__seabus__guide__map {
            margin-top: 16px; } }
        .access__seabus__guide__map__img {
          width: 1000px; }
          @media screen and (max-width: 767px) {
            .access__seabus__guide__map__img {
              width: 100%; } }
      .access__seabus__guide__list {
        margin-top: 20px;
        margin-bottom: 20px; }
        @media screen and (max-width: 767px) {
          .access__seabus__guide__list {
            margin-top: 20px; } }
      .access__seabus__guide__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .access__seabus__guide__item:first-child .access__seabus__guide__item__ttl {
          border-top: 1px solid #1a1311; }
        .access__seabus__guide__item:first-child .access__seabus__guide__item__detail {
          border-top: 1px solid #d8d8d8; }
        @media screen and (max-width: 767px) {
          .access__seabus__guide__item:last-child .access__seabus__guide__item__ttl {
            border-bottom: 1px solid #1a1311; }
          .access__seabus__guide__item:last-child .access__seabus__guide__item__detail {
            border-bottom: 1px solid #d8d8d8; } }
        .access__seabus__guide__item__ttl {
          width: 240px;
          background: #f4f4f4;
          padding: 18px;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          border-top: 1px solid #1a1311; }
          @media screen and (max-width: 767px) {
            .access__seabus__guide__item__ttl {
              width: 40%;
              padding: 17px 6px; } }
          .access__seabus__guide__item__ttl__txt {
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            color: #231815;
            line-height: 1.2; }
            @media screen and (max-width: 767px) {
              .access__seabus__guide__item__ttl__txt {
                font-size: 13px; } }
        .access__seabus__guide__item__detail {
          width: calc(100% - 240px);
          padding: 24px 18px;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          border-top: 1px solid #d8d8d8; }
          @media screen and (max-width: 767px) {
            .access__seabus__guide__item__detail {
              width: 60%;
              padding: 17px 2px 17px 15px; } }
          .access__seabus__guide__item__detail__txt {
            font-size: 16px;
            color: #231815;
            line-height: 1.875; }
            @media screen and (max-width: 767px) {
              .access__seabus__guide__item__detail__txt {
                font-size: 13px;
                line-height: 1.5;
                margin-top: 2px; } }
            .access__seabus__guide__item__detail__txt:first-child {
              margin-top: 0; }
            @media screen and (max-width: 767px) {
              .access__seabus__guide__item__detail__txt__indent {
                text-indent: -3em;
                padding-left: 3em; } }
      .access__seabus__guide__caution {
        font-size: 12px;
        color: #231815;
        margin-top: 17px; }
        @media screen and (max-width: 767px) {
          .access__seabus__guide__caution {
            margin-top: 20px;
            font-size: 13px;
            line-height: 1.6; } }
    .access__seabus__service {
      margin-top: 66px; }
      @media screen and (max-width: 767px) {
        .access__seabus__service {
          margin-top: 36px; } }
      .access__seabus__service__ttl {
        font-size: 18px;
        font-weight: bold;
        line-height: 1.6;
        position: relative;
        color: #393432;
        padding-left: 23px; }
        @media screen and (max-width: 767px) {
          .access__seabus__service__ttl {
            font-size: 15px;
            line-height: 1.4;
            padding-left: 23px; } }
        .access__seabus__service__ttl::before {
          content: "";
          display: block;
          width: 18px;
          height: 18px;
          background: url("/assets/images/access/access_circle.png") no-repeat;
          background-size: contain;
          position: absolute;
          top: 50%;
          left: 0;
          -webkit-transform: translate(0, -50%);
                  transform: translate(0, -50%); }
          @media screen and (max-width: 767px) {
            .access__seabus__service__ttl::before {
              width: 15px;
              height: 15px;
              -webkit-transform: translate(0, -50%);
                      transform: translate(0, -50%);
              left: 0px; } }
      .access__seabus__service__list {
        margin-top: 20px; }
        @media screen and (max-width: 767px) {
          .access__seabus__service__list {
            margin-top: 10px; } }
      .access__seabus__service__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .access__seabus__service__item:first-child .access__seabus__guide__item__ttl {
          border-top: 1px solid #1a1311; }
        .access__seabus__service__item:first-child .access__seabus__guide__item__detail {
          border-top: 1px solid #d8d8d8; }
        .access__seabus__service__item__ttl {
          width: 240px;
          background: #f4f4f4;
          padding: 18px;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          border-top: 1px solid #1a1311; }
          @media screen and (max-width: 767px) {
            .access__seabus__service__item__ttl {
              width: 40%;
              padding: 17px 6px; } }
          .access__seabus__service__item__ttl__txt {
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            color: #231815; }
            @media screen and (max-width: 767px) {
              .access__seabus__service__item__ttl__txt {
                font-size: 13px; } }
        .access__seabus__service__item__detail {
          width: calc(100% - 240px);
          padding: 24px 18px;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          border-top: 1px solid #d8d8d8; }
          @media screen and (max-width: 767px) {
            .access__seabus__service__item__detail {
              width: 60%;
              padding: 17px 2px 17px 15px; } }
          .access__seabus__service__item__detail__txt {
            font-size: 16px;
            color: #231815;
            margin-top: 14px; }
            @media screen and (max-width: 767px) {
              .access__seabus__service__item__detail__txt {
                font-size: 13px;
                line-height: 1.5;
                margin-top: 2px; } }
            .access__seabus__service__item__detail__txt:first-child {
              margin-top: 0; }
      .access__seabus__service__txt {
        font-size: 16px;
        color: #231815;
        margin-top: 18px; }
        @media screen and (max-width: 767px) {
          .access__seabus__service__txt {
            font-size: 13px;
            margin-top: 10px;
            line-height: 1.75; } }
      .access__seabus__service__caution {
        margin-top: 18px; }
        @media screen and (max-width: 767px) {
          .access__seabus__service__caution {
            margin-top: 8px; } }
        .access__seabus__service__caution__txt {
          margin-top: 10px;
          font-size: 12px;
          color: #231815; }
          @media screen and (max-width: 767px) {
            .access__seabus__service__caution__txt {
              font-size: 13px;
              line-height: 1.6;
              margin-top: 0; } }
          .access__seabus__service__caution__txt:first-child {
            margin-top: 0; }
  .access__bicycle {
    margin-top: 60px; }
    @media screen and (max-width: 767px) {
      .access__bicycle {
        margin-top: 45px; } }
    .access__bicycle__ttl {
      font-size: 21px;
      font-weight: bold;
      text-align: center;
      color: #fff;
      background: #1a1311;
      border-radius: 20px 0 0 0;
      padding: 19px 0;
      border-bottom: 4px solid #ffe100;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      @media screen and (max-width: 767px) {
        .access__bicycle__ttl {
          font-size: 15px;
          border-radius: 10px 0 0 0;
          border-bottom: 2px solid #ffe100;
          padding: 12px 0; } }
    .access__bicycle__wrapper {
      margin-top: 35px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      @media screen and (max-width: 767px) {
        .access__bicycle__wrapper {
          display: block;
          margin-top: 20px; } }
    .access__bicycle__parking {
      width: 49.4%; }
      @media screen and (max-width: 767px) {
        .access__bicycle__parking {
          width: 100%;
          margin-top: 30px; } }
      @media screen and (max-width: 767px) {
        .access__bicycle__parking:first-child {
          margin-top: 0; } }
      .access__bicycle__parking__ttl {
        font-size: 18px;
        font-weight: bold;
        line-height: 1.6;
        position: relative;
        color: #393432;
        padding-left: 23px; }
        @media screen and (max-width: 767px) {
          .access__bicycle__parking__ttl {
            font-size: 15px;
            line-height: 1.4;
            padding-left: 23px; } }
        .access__bicycle__parking__ttl::before {
          content: "";
          display: block;
          width: 18px;
          height: 18px;
          background: url("/assets/images/access/access_circle.png") no-repeat;
          background-size: contain;
          position: absolute;
          top: 50%;
          left: 0;
          -webkit-transform: translate(0, -50%);
                  transform: translate(0, -50%); }
          @media screen and (max-width: 767px) {
            .access__bicycle__parking__ttl::before {
              width: 15px;
              height: 15px;
              -webkit-transform: translate(0, -50%);
                      transform: translate(0, -50%);
              left: 0px; } }
      .access__bicycle__parking__list {
        margin-top: 20px; }
        @media screen and (max-width: 767px) {
          .access__bicycle__parking__list {
            margin-top: 10px; } }
      .access__bicycle__parking__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .access__bicycle__parking__item:first-child .access__bicycle__parking__item__ttl {
          border-top: 1px solid #1a1311; }
        .access__bicycle__parking__item:first-child .access__bicycle__parking__item__detail {
          border-top: 1px solid #d8d8d8; }
        @media screen and (max-width: 767px) {
          .access__bicycle__parking__item:last-child .access__bicycle__parking__item__ttl {
            border-bottom: 1px solid #1a1311; } }
        @media screen and (max-width: 767px) {
          .access__bicycle__parking__item:last-child .access__bicycle__parking__item__detail {
            border-bottom: 1px solid #d8d8d8; } }
        .access__bicycle__parking__item__ttl {
          width: 240px;
          background: #f4f4f4;
          padding: 18px;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          border-top: 1px solid #1a1311; }
          @media screen and (max-width: 767px) {
            .access__bicycle__parking__item__ttl {
              width: 40%;
              padding: 17px 6px; } }
          .access__bicycle__parking__item__ttl__txt {
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            color: #231815; }
            @media screen and (max-width: 767px) {
              .access__bicycle__parking__item__ttl__txt {
                font-size: 13px; } }
        .access__bicycle__parking__item__detail {
          width: calc(100% - 240px);
          padding: 24px 18px;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
          border-top: 1px solid #d8d8d8; }
          @media screen and (max-width: 767px) {
            .access__bicycle__parking__item__detail {
              width: 60%;
              padding: 17px 2px 17px 15px; } }
          .access__bicycle__parking__item__detail__txt {
            font-size: 16px;
            color: #231815;
            margin-top: 14px; }
            @media screen and (max-width: 767px) {
              .access__bicycle__parking__item__detail__txt {
                font-size: 13px;
                line-height: 1.5;
                margin-top: 2px; } }
            .access__bicycle__parking__item__detail__txt:first-child {
              margin-top: 0; }

.pankuzu {
  background: #fff;
  margin-top: 109px; }
  @media screen and (max-width: 767px) {
    .pankuzu {
      margin-top: 60px; } }

.footer .copyright::before {
  display: none; }

.blur__list {
  overflow: hidden;
  position: relative; }

.bg__blur {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0; }

.blur__target {
  position: relative; }

.access__bus_top {
  margin-top: 35px;
  font-size: 16px; }
  .access__bus_top .text2 {
    margin-top: 10px; }
  .access__bus_top .top-img {
    margin-top: 30px; }
    .access__bus_top .top-img img {
      width: 100%; }

.access__bus_box {
  position: relative;
  margin-top: 60px; }
  .access__bus_box .route-name {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    position: relative;
    color: #393432;
    padding-left: 130px; }
    .access__bus_box .route-name:before {
      content: "";
      display: block;
      width: 18px;
      height: 18px;
      background: url("/assets/images/access/access_circle.png") no-repeat;
      background-size: contain;
      position: absolute;
      top: 50%;
      left: 105px;
      -webkit-transform: translate(0, -50%);
      transform: translate(0, -50%); }
  .access__bus_box .route-note {
    margin-top: 5px;
    font-size: 13px;
    position: relative;
    line-height: 1.5;
    padding-left: 130px; }
  .access__bus_box .item-img {
    width: 49%; }
    .access__bus_box .item-img img {
      width: 100%; }
  .access__bus_box .item-dec {
    width: 60%;
    position: absolute;
    right: 0;
    bottom: 0; }
    .access__bus_box .item-dec .item-dec-box {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-top: 25px;
      background-color: #ffe100;
      border-radius: 20px 0 0 0;
      padding: 25px; }
      .access__bus_box .item-dec .item-dec-box .dec-text {
        width: 60%;
        font-size: 16px;
        border-right: 1px solid #d8c113; }
        .access__bus_box .item-dec .item-dec-box .dec-text .text2 {
          margin-top: 10px; }
      .access__bus_box .item-dec .item-dec-box .timer-link {
        width: 40%;
        padding-left: 20px;
        line-height: 25px;
        position: relative;
        cursor: pointer; }
        .access__bus_box .item-dec .item-dec-box .timer-link:before {
          content: "";
          display: block;
          width: 27px;
          height: 27px;
          background: url("/assets/images/facility/btn_icon.png") no-repeat;
          background-size: contain;
          position: absolute;
          top: 50%;
          right: 15px;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%); }
    .access__bus_box .item-dec .timer-text {
      font-size: 12px;
      margin-top: 20px;
      text-align: right; }
  .access__bus_box.type1 .item-dec {
    top: 0;
    bottom: auto; }
    .access__bus_box.type1 .item-dec .item-dec-box.type1 {
      margin-top: 10px; }

.remodal {
  padding: 90px; }
  .remodal .btn-pop-close {
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer; }
    .remodal .btn-pop-close img {
      width: 33px; }
  .remodal .pop-ttl {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    position: relative; }
    .remodal .pop-ttl:before {
      content: "";
      display: block;
      width: 59px;
      height: 1px;
      background: #c4c4c4;
      position: absolute;
      bottom: -30px;
      right: 50%;
      -webkit-transform: translateX(50%);
              transform: translateX(50%); }
  .remodal .bus-route-box {
    margin-top: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .remodal .bus-route-box .route-name {
      font-size: 18px;
      font-weight: bold;
      line-height: 1.6;
      position: relative;
      color: #393432;
      text-align: left;
      margin-bottom: 20px;
      padding-left: 25px; }
      .remodal .bus-route-box .route-name::before {
        content: "";
        display: block;
        width: 18px;
        height: 18px;
        background: url("/assets/images/access/access_circle.png") no-repeat;
        background-size: contain;
        position: absolute;
        left: 0;
        top: 6px; }
    .remodal .bus-route-box .box-l {
      width: calc((100% - 30px) / 2); }
      .remodal .bus-route-box .box-l.type1 {
        width: calc((100% - 30px) / 3); }
      .remodal .bus-route-box .box-l img {
        width: 100%; }
    .remodal .bus-route-box .box-r {
      margin-left: 30px;
      width: calc((100% - 30px) / 2); }
      .remodal .bus-route-box .box-r.type1 {
        margin-left: 15px;
        width: calc((100% - 30px) / 3); }
      .remodal .bus-route-box .box-r .route-img.no-ttl {
        margin-top: 45px; }
      .remodal .bus-route-box .box-r .text1 {
        text-align: left;
        font-size: 20px;
        margin-top: 20px; }
      .remodal .bus-route-box .box-r .text2 {
        text-align: left;
        margin-top: 10px;
        font-size: 16px; }
      .remodal .bus-route-box .box-r img {
        width: 100%; }

.disp-sp {
  display: none; }

@media screen and (max-width: 768px) {
  .disp-pc {
    display: none; }

  .disp-sp {
    display: block; }

  .access__bus_top {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.75; }
    .access__bus_top .text2 {
      margin-top: 5px; }
    .access__bus_top .top-img {
      margin-top: 20px; }

  .access__bus_box {
    position: relative;
    margin-top: 30px; }
    .access__bus_box .route-name {
      font-size: 15px;
      line-height: 1.4;
      padding-left: 20px; }
      .access__bus_box .route-name:before {
        width: 15px;
        height: 15px;
        background: url("/assets/images/access/access_circle.png") no-repeat;
        background-size: contain;
        top: 55%;
        left: -5px; }
    .access__bus_box .route-note {
      font-size: 12px;
      line-height: 1.4;
      padding-left: 20px; }
    .access__bus_box .item-img {
      margin-top: 15px;
      width: 100%; }
    .access__bus_box .item-dec {
      width: 100%;
      position: relative;
      right: 0;
      bottom: 0; }
      .access__bus_box .item-dec .item-dec-box {
        display: block;
        margin-top: 15px;
        border-radius: 10px 0 0 0;
        padding: 15px 15px 10px 15px; }
        .access__bus_box .item-dec .item-dec-box .dec-text {
          width: 100%;
          font-size: 12px;
          padding-bottom: 10px;
          border-right: none;
          border-bottom: 1px solid #d8c113; }
          .access__bus_box .item-dec .item-dec-box .dec-text .text2 {
            margin-top: 10px; }
        .access__bus_box .item-dec .item-dec-box .timer-link {
          width: 100%;
          padding-left: 0;
          line-height: 25px;
          font-size: 12px;
          text-align: center;
          position: relative;
          margin-top: 5px; }
          .access__bus_box .item-dec .item-dec-box .timer-link:before {
            content: "";
            display: block;
            width: 18px;
            height: 18px;
            background: url("/assets/images/facility/btn_icon.png") no-repeat;
            background-size: contain;
            position: absolute;
            top: 50%;
            right: 35px;
            -webkit-transform: translateY(-50%);
                    transform: translateY(-50%); }
      .access__bus_box .item-dec .timer-text {
        font-size: 9px;
        margin-top: 10px;
        text-align: left; }

  .remodal {
    padding: 40px 20px 20px 20px;
    margin-bottom: 0;
    height: 85vh; }
    .remodal .box-frame {
      height: 100%;
      overflow: auto; }
    .remodal .box-in {
      height: 100%; }
    .remodal .btn-pop-close {
      position: absolute;
      right: 20px;
      top: 20px; }
      .remodal .btn-pop-close img {
        width: 15px; }
    .remodal .pop-ttl {
      font-weight: bold;
      font-size: 20px;
      margin-top: 0; }
      .remodal .pop-ttl:before {
        width: 30px;
        height: 1px;
        bottom: -15px; }
    .remodal .bus-route-box {
      margin-top: 30px;
      display: block; }
      .remodal .bus-route-box .route-name {
        font-size: 15px;
        font-weight: bold;
        line-height: 1.6;
        margin-bottom: 10px;
        padding-left: 20px; }
        .remodal .bus-route-box .route-name::before {
          content: "";
          display: block;
          width: 15px;
          height: 15px;
          background: url("/assets/images/access/access_circle.png") no-repeat;
          background-size: contain;
          left: 0;
          top: 5px; }
      .remodal .bus-route-box .box-l {
        width: 100%; }
        .remodal .bus-route-box .box-l.type1 {
            width: 100%; }
      .remodal .bus-route-box .box-r {
        margin-left: 0;
        width: 100%; }
        .remodal .bus-route-box .box-r.type1 {
            width: 100%; }
        .remodal .bus-route-box .box-r .route-img.no-ttl {
          margin-top: 45px; }
        .remodal .bus-route-box .box-r .text1 {
          text-align: left;
          font-size: 16px;
          margin-top: 10px; }
        .remodal .bus-route-box .box-r .text2 {
          margin-top: 10px;
          font-size: 12px; }
        .remodal .bus-route-box .box-r img {
          width: 100%; } }

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