/* ------------------------------
General Styles
--------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, Arial, Helvetica, sans-serif;
  color: #222222;
  font-size: 62.5%;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #fff;
}

img {
  width: 100%;
  height: auto;
}

picture {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  display: flex;
  flex-flow: column;
}

ul, ul li, ol, ol li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #222222;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  /* Chrome および Safari でデフォルトスタイルを解除 */
  -moz-appearance: none;
  /* Firefox でデフォルトスタイルを解除 */
}

/* ----------------------------
メディアクエリ
------------------------------ */
/*
SPファーストで記述

幅768px以下 スマホサイズ

@media screen and (min-width:768px) and (max-width:1024px)
幅769px以上1000px以下 タブレットサイズ

@media screen and (min-width:1025px)
幅1025px以上〜 PCサイズ-- */
.sp {
  display: block !important;
}

.tab {
  display: none !important;
}

.sp-tab {
  display: block !important;
}

.tab-pc {
  display: none !important;
}

.pc {
  display: none !important;
}

@media screen and (min-width:768px) {
  .sp {
    display: none !important;
  }

  .tab {
    display: block !important;
  }

  .sp-tab {
    display: block !important;
  }

  .tab-pc {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}

@media screen and (min-width:1025px) {
  .sp {
    display: none !important;
  }

  .tab {
    display: none !important;
  }

  .sp-tab {
    display: none !important;
  }

  .tab-pc {
    display: block !important;
  }

  .pc {
    display: block !important;
  }
}

/* ----------------------------
font
------------------------------ */
h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  word-break: auto-phrase;
}

p {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
}

.note {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  margin: 16px auto 0;
  text-align: center;
}

/* ------------------------------
Transition elsements
------------------------------ */
a, button {
  -webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

button:hover {
  cursor: pointer !important;
  opacity: 1;
}

a:hover {
  opacity: 0.7;
  cursor: pointer !important;
}

/* ----------------------------
ボタン共通
------------------------------ */
.btn {
  display: block;
  margin: 0 auto;
  cursor: pointer;
  box-sizing: border-box;
}

.btn:hover {
  opacity: 1;
}

.btn p {
  width: fit-content;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}

.sales-btn {
  width: calc(100% - 96px);
  max-width: 360px;
  padding: 16px;
  background: #000;
  border-radius: 4px;
  box-shadow: 0 4px 0 0 rgba(88, 88, 88, 1);
}

.sales-btn p {
  font-size: min(4.267vw, 16px);
  color: #fff;
  padding-right: 32px;
  position: relative;
}

.sales-btn p::after {
  content: '';
  width: 24px;
  height: 24px;
  background: url(../images/icon-cart-w.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -2px;
  right: 0;
}

@media screen and (min-width:768px) {
  .sales-btn p {
    -webkit-transition: all .3s;
    transition: all .3s;
  }

  .sales-btn:hover p {
    letter-spacing: 0.12em;
    text-indent: 0.12em;
  }
}

@media screen and (min-width:1025px) {
   .sales-btn {
    padding: 25px 20px;
  }

   .sales-btn p {
    font-size: 1.8rem;
  }
}

/* ------------------------------
ハンバーガーメニューボタン
------------------------------ */
.openbtn {
  position: relative;
  cursor: pointer;
  width: 36px;
  height: 28px;
  z-index: 101;
  margin: 0;
  float: right;
  background-color: #fff;
  border: none !important;
}

.openbtn span {
  display: inline-block;
  transition: all .6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 4px;
  border-radius: 50px;
  background: #45B035;
}

.openbtn span:nth-of-type(1) {
  top: 0;
}

.openbtn span:nth-of-type(2) {
  top: 50%;
}

.openbtn span:nth-of-type(3) {
  top: unset;
  bottom: -3px;
}

.is-menu-active .openbtn span:nth-of-type(1) {
  top: 5px;
  left: 0px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}

.is-menu-active .openbtn span:nth-of-type(2) {
  opacity: 0;
}

.is-menu-active .openbtn span:nth-of-type(3) {
  top: 17px;
  left: 0px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}

body.is-menu-active {
  overflow: hidden;
}

@media screen and (min-width:1025px) {
  .openbtn {
    display: none;
  }
}

/* ------------------------------
header
------------------------------ */
header {
  width: 100%;
  padding: 12px 16px 12px;
  box-sizing: border-box;
  border-bottom: 4px solid #45B035;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 10;
}

header .header-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header-wrapper .logo {
  width: 41px;
  height: auto;
}

header .header-wrapper .menu {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
  height: calc(100vh - 50px);
  transform: translateX(100vw);
  transition: all 0.6s ease;
  background: rgba(0 0 0 / 75%);
  margin: 59px auto 0
}

header .header-wrapper .menu.is-active {
  transform: translateX(0);
  right: 0;
  width: 100%;
}

header .header-wrapper .menu .menu-wrapper{
  display: flex;
  flex-direction: column;
}

header .header-wrapper .menu .menu-item a{
  display: block;
  width: 100%;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  color: #555555;
  text-align: center;
  padding: 32px 16px;
  background: #fff;
  border-bottom: 1px solid #E0EED3;
  box-sizing: border-box;
}

header .header-wrapper .menu .menu-item a:hover{
  opacity: 1;
}

.page-smartphone-commuter-pass header .header-wrapper .menu .item-1 a,
.page-limited-express-epass header .header-wrapper .menu .item-2 a,
.page-smartphone-ticket header .header-wrapper .menu .item-3 a{
  color: #45B035;
  background: #bee0c2;
}

.page-smartphone-commuter-pass header .header-wrapper .menu .item-1 a:hover,
.page-limited-express-epass header .header-wrapper .menu .item-2 a:hover,
.page-smartphone-ticket header .header-wrapper .menu .item-3 a:hover{
  opacity: 1;
}

@media screen and (min-width:768px) {
  header .header-wrapper .logo {
    width: 61px;
  }

  header .header-wrapper .menu {
  position: absolute;
    margin: 73px auto 0
}
}

@media screen and (min-width:1025px) {
  header {
    padding: 12px 16px 0;
  }

  header .header-wrapper .logo {
    margin: 0 0 12px;
  }

  header .header-wrapper .menu {
    transform: unset;
    top: 25px;
    right: 16px;
    width: auto;
    height: fit-content;
    transition: unset;
    background: none;
    margin: 0;
  }

  header .header-wrapper .menu .menu-wrapper{
    flex-direction: row;
    gap:16px;
  }

  header .header-wrapper .menu .menu-item a{
    padding: 14px 12px 12px;
    border-bottom: none;
    color: #585858;
    background: #bee0c2;
    border-radius: 4px 4px 0 0;
  }

    header .header-wrapper .menu .menu-item a:hover{
    background: #79c06e;
  }

  .page-smartphone-commuter-pass header .header-wrapper .menu .item-1 a,
  .page-limited-express-epass header .header-wrapper .menu .item-2 a,
  .page-smartphone-ticket header .header-wrapper .menu .item-3 a{
    background: #45B035;
    color: #F7ED12;
  }
}


/* ------------------------------
追尾_チケット購入ボタン_SP
------------------------------ */
.tracking-sales-btn {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 16px 16px 24px;
  box-sizing: border-box;
  position: fixed;
  bottom: 0px;
  z-index: 10;
  display: none;
}

.tracking-sales-btn .btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.btn-wrapper {
  border: none;
  outline: none;
  padding: 0;
  appearance: none;
  border-radius: 0;
}

.web-app {
  width: 100%;
  padding: 16px 13px;
  background: #fff;
  border: 1px solid #45B035;
  border-radius: 4px;
  box-shadow: 0 4px 0 0 rgba(61, 128, 29, 1);
}

.web-app p {
  font-size: min(3.4vw, 14px);
  color: #45B035;
  padding-right: 20px;
  position: relative;
}

.web-app p::after {
  content: '';
  width: 18px;
  height: 18px;
  background: url(../images/icon-cart.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
}

.download {
  width: 100%;
  padding: 16px 13px;
  background: #45B035;
  border: 1px solid #fff;
  border-radius: 4px;
  box-shadow: 0 4px 0 0 rgba(61, 128, 29, 1);
}

.download p {
  font-size: min(3.4vw, 14px);
  color: #fff;
  padding-right: 20px;
  position: relative;
}

.download p::after {
  content: '';
  width: 18px;
  height: 18px;
  background: url(../images/icon-download-w.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
}

@media screen and (min-width:768px) {
  .tracking-sales-btn {
    width: fit-content;
    background: none;
    padding: 0;
    right: 0;
    bottom: 24px;
  }

  .tracking-sales-btn .btn-wrapper{
    flex-direction: column;
    gap:0;
  }

  .web-app {
    padding: 12px 18px;
    box-shadow: none;
    border-radius: 4px 0 0 4px;
    border-right: none;
  }

  .web-app:hover {
    background: #F5F5F5;
  }

  .web-app p {
    font-size: 1.6rem;
    writing-mode: vertical-rl;
    padding-right: 0;
    padding-bottom: 24px;
  }

  .web-app p::after {
    width: 18px;
    height: 18px;
    bottom: 0;
  }

  .download {
    padding: 12px 18px;
    box-shadow: none;
    border-radius: 4px 0 0 4px;
    border-right: none;
  }

  .download:hover {
    background: #3D801D;
  }

  .download p {
    font-size: 1.6rem;
    writing-mode: vertical-rl;
    padding-right: 0;
    padding-bottom: 24px;
  }

  .download p::after {
    width: 16px;
    height: 16px;
    right: 2px;
    bottom: 0;
  }
}

/* ----------------------------
notice
------------------------------ */
.notice-area {
  width: 100%;
  margin: 80px auto 0;
  background: #ECF5E9;
}

.notice-area .notice-area-wrapper {
  width: calc(100% - 32px);
  max-width: 920px;
  margin: 32px auto 0;
}

.notice-area .notice-area-wrapper .notice h2 {
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 700;
  padding-left: 9px;
  text-align: left;
  margin: 0 0 8px 0;
  position: relative;
}

.notice-area .notice-area-wrapper .notice h2::before {
  display: block;
  content: '';
  width: 5px;
  height: 100%;
  background: #3D801D;
  position: absolute;
  left: 0;
}

.notice-area .notice-area-wrapper .notice ul {
  margin: 0 0 16px 0;
}

.notice-area .notice-area-wrapper .notice ul,
.notice-area .notice-area-wrapper .notice ol {
  font-size: 1.2rem;
  line-height: 1.45;
  padding-left: 16px;
  font-weight: 500;
}

.notice-area .notice-area-wrapper .notice ul li {
  list-style: disc;
}

.notice-area .notice-area-wrapper .notice ol li {
  list-style: decimal;
}

@media screen and (min-width:768px) {
  .notice-area .notice-area-wrapper {
    margin: 40px auto 0;
  }
}

/* ----------------------------
contact-info
------------------------------ */
.contact-info-area {
  width: 100%;
  padding: 16px 0 40px;
  background: #ECF5E9;
}

.contact-info-area .contact-info-area-wrapper {
  width: calc(100% - 32px);
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-area .contact-info-area-wrapper .contact-info {
  width: 100%;
  background: #fff;
  border: 1px solid #3D801D;
  border-radius: 8px;
  overflow: hidden;
}

.contact-info-area .contact-info-area-wrapper .contact-info h2 {
  font-size: 1.4rem;
  line-height: 1.25;
  color: #fff;
  background: #3D801D;
  padding: 8px;
  text-align: center;
  margin: 0 auto 10px;
}

.contact-info-area .contact-info-area-wrapper .contact-info h3 {
  font-size: 1.4rem;
  line-height: 1.25;
  text-align: center;
  margin: 0 auto 8px;
}

.contact-info-area .contact-info-area-wrapper .contact-info .tel-weapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 auto 12px;
}

.contact-info-area .contact-info-area-wrapper .contact-info .tel-weapper a {
  font-size: 2.4rem;
  line-height: 1.25;
  padding-left: 28px;
  position: relative;
  font-weight: 700;
}

.contact-info-area .contact-info-area-wrapper .contact-info .tel-weapper a::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon-telephone.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}

.contact-info-area .contact-info-area-wrapper .contact-info .tel-weapper p {
  font-size: 1.2rem;
  line-height: 1.25;
}

@media screen and (min-width:768px) {
  .contact-info-area {
    padding: 36px 0 40px;
  }

  .contact-info-area .contact-info-area-wrapper {
    flex-direction: row;
    gap: 24px;
  }

  .contact-info-area .contact-info-area-wrapper .contact-info .tel-weapper {
    flex-direction: row;
    gap: 4px;
    margin: 0 auto 12px;
    justify-content: center;
  }
}

/* ----------------------------
footer
------------------------------ */
footer {
  width: 100%;
  background: #000;
  padding: 10px 16px 102px;
  text-align: center;
  box-sizing: border-box;
}

footer a {
  font-size: 1.2rem;
  line-height: 1.25;
  color: #fff;
}

@media screen and (min-width:768px) {
  footer {
    padding: 10px 16px;
  }
}