.columnBtn.flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
}
.btn + .btn {
  margin-top: 0;
}
.btn.type03,
.btn.type02 {
  display: block;
  max-width: 392px;
  width: 100%;
}
.btn.type05 {
  display: inline-block;
}
.btn.type03 a,
.btn.type02 a {
  max-width: 392px;
}
.mgn-rgt {
  margin-right: 15px;
}
@media (min-width: 1200px) {
  .btn + .btn {
    margin: 0 0 0 0;
  }
}
@media (min-width: 768px) {
  .btn.type03 a,
  .btn.type02 a {
    min-width: initial;
  }
}
@media (max-width: 768px) {
  .columnBtn.flex {
    display: block;
    max-width: initial;
  }
  .btn.type03,
  .btn.type02 {
    max-width: 320px;
  }
  .mgn-btm {
    margin-bottom: 15px;
  }
  .mgn-rgt {
    margin-right: 0;
  }
}

/*
.newsList
---------------------------*/
.newsList {
  position: relative;
  background-color: #fff;
  padding-bottom: 30px;
}
.newsList p {
  line-height: 1.8;
}
.newsList li {
  position: relative;
  border-bottom: 1px solid #dcdcdc;
}
.newsList li:hover .date > p:before {
  left: 5px;
}
.newsList li a {
  display: block;
  padding: 20px 0;
}
.newsList .date {
  font-size: 12px;
  vertical-align: middle;
  padding-bottom: 10px;
}
.newsList .date > p {
  position: relative;
  padding-left: 18px;
}
.newsList .date > p:before {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  position: absolute;
  content: "";
  background-image: url(../img/common/arrow02.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 8px;
  height: 5px;
  transition: all 0.3s ease;
}
.newsList .date p {
  display: inline-block;
}
.newsList .category {
  display: inline-block;
  min-width: 100px;
  background-color: #012d6b;
  text-align: center;
  padding: 1px 10px;
  margin-left: 10px;
  border-radius: 50px;
}
.newsList .category p {
  color: #fff;
  font-weight: 600;
}

@media (min-width: 1000px) {
  .newsList {
    padding-bottom: 60px;
  }
  .newsList li a {
    display: flex;
    align-items: center;
    padding: 30px 0;
  }
  .newsList .date {
    font-size: 14px;
    width: 286px;
  }
  .newsList .date > p {
    padding-left: 22px;
  }
  .newsList .title {
    width: calc(100% - 286px);
  }
  .newsList .title p {
    text-decoration: underline;
  }
  .newsList .date,
  .newsList .title {
    display: inline-block;
    padding-bottom: 0;
  }
  .newsList .category {
    margin-left: 20px;
  }
  .newsList .category p {
    font-size: 14px;
  }
}

/*
tabNavigation
---------------------------*/
.tabNavigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
}
.tabNavigation .tab {
  position: relative;
  width: 50%;
  text-align: center;
}
.tabNavigation .tab a,
.tabNavigation .tab p {
  display: block;
  line-height: 1.3;
  font-size: 15px;
  padding: 14px 0;
  cursor: pointer;
}
.tabNavigation .tab a:after,
.tabNavigation .tab p:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #dcdcdc;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}
.tabNavigation .tab a.active,
.tabNavigation .tab p.active {
  color: #012d6b;
  font-weight: 600;
  cursor: default;
}
.tabNavigation .tab a.active:after,
.tabNavigation .tab p.active:after {
  content: "";
  height: 2px;
  background: #012d6b;
  bottom: 1px;
}
.tabNavigation .tab:nth-of-type(n + 3) {
  text-align: center;
}
.tabNavigation .tab:nth-of-type(n + 3) a:after,
.tabNavigation .tab:nth-of-type(n + 3) p:after {
  content: none;
}
.tabNavigation .tab:nth-of-type(n + 3) a.active:after,
.tabNavigation .tab:nth-of-type(n + 3) p.active:after {
  content: "";
  bottom: auto;
  top: 0;
}
.tabNavigation.type02 {
  flex-wrap: nowrap;
}
.tabNavigation.type02 .tab {
  width: 33.333%;
}
.tabNavigation.type02 .tab:nth-of-type(n + 3) a:after,
.tabNavigation.type02 .tab:nth-of-type(n + 3) p:after {
  content: "";
}
.tabNavigation.type02 .tab:nth-of-type(n + 3) a.active:after,
.tabNavigation.type02 .tab:nth-of-type(n + 3) p.active:after {
  content: "";
  bottom: 0;
  top: auto;
}
@media (min-width: 769px) {
  .tabNavigation {
    flex-wrap: nowrap;
  }
  .tabNavigation .tab {
    position: relative;
    background-color: #f5f4f3;
    transition: 0.4s ease;
    cursor: pointer;
  }
  .tabNavigation .tab:nth-of-type(n + 3) p:after {
    content: "";
  }
  .tabNavigation .tab:nth-of-type(n + 3) p:hover:after {
    content: "";
    width: 100%;
    opacity: 1;
  }
  .tabNavigation .tab a,
  .tabNavigation .tab p {
    font-size: 18px;
    font-weight: 600;
    color: #012d6b;
    padding: 18px 0;
  }
  .tabNavigation .tab a:after,
  .tabNavigation .tab p:after {
    content: "";
    height: 2px;
    width: 0;
    background: #012d6b;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 2px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    opacity: 0;
  }
  .tabNavigation .tab a:hover:after,
  .tabNavigation .tab p:hover:after {
    content: "";
    width: 100%;
    opacity: 1;
  }
  .tabNavigation .tab a.active,
  .tabNavigation .tab p.active {
    background-color: #012d6b;
    cursor: default;
    filter: drop-shadow(3px -3px 5px rgba(0, 0, 0, 0.2));
    z-index: 1;
    color: #fff;
  }
  .tabNavigation .tab a.active:after,
  .tabNavigation .tab p.active:after {
    content: none;
  }
  .tabNavigation .tab:nth-of-type(n + 3) a.active:after,
  .tabNavigation .tab:nth-of-type(n + 3) p.active:after {
    content: none;
    opacity: 0;
  }
  .tabNavigation .tab:hover {
    opacity: 1;
  }
}

.contentWrap {
  background-image: none;
}

/*
header
---------------------------*/
header .siteName {
  display: none;
}
@media (min-width: 1200px) {
  header.is-fixed .siteName {
    display: block;
  }
  header.is-fixed #contentNav a {
    color: #012d6b;
    filter: none;
  }
  header #contentNav a {
    color: #fff;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
  }
}

.contentWrap {
  padding-top: 0;
}

/*
mainVisual
---------------------------*/
#mainVisual {
  position: relative;
  margin-bottom: 60px;
}
#mainVisual:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #012d6b;
  height: 50%;
  z-index: 0;
}
#mainVisual .mvImage {
  position: relative;
  margin-right: 25px;
  border-bottom-left-radius: 30px;
  overflow: hidden;
}
#mainVisual .mvImage:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 0;
}
#mainVisual .mvImage .titleWrap {
  position: absolute;
  bottom: 25px;
  left: 4.8%;
  color: #fff;
  padding-right: 4.8%;
}
#mainVisual .mvImage .titleWrap p,
#mainVisual .mvImage .titleWrap h1,
#mainVisual .mvImage .titleWrap h2 {
  line-height: 1.4;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}
#mainVisual .mvImage .titleWrap p {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  padding-bottom: 20px;
}
#mainVisual .mvImage .titleWrap h1 {
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  padding: 0 0 20px;
}
#mainVisual .mvImage .titleWrap h1 span {
  font-style: italic;
  font-size: 42px;
  font-weight: 400;
}
#mainVisual .mvImage .titleWrap h2 {
  font-size: 14px;
}
#mainVisual .mvImage .titleInner h1,
#mainVisual .mvImage .titleInner img {
  display: inline-block;
  vertical-align: middle;
}
#mainVisual .mvImage .titleInner h1 img {
  width: 60vw;
}
#mainVisual .mvImage .titleInner > img {
  display: block;
  width: 36px;
  margin-bottom: 5px;
}
#mainVisual .scroll {
  position: absolute;
  right: 8px;
  bottom: 0;
}
#mainVisual .scroll > div {
  position: relative;
  padding-bottom: 142px;
}
#mainVisual .scroll > div:after {
  content: "";
  display: block;
  width: 1px;
  height: 112px;
  background-color: #012d6b;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 56px;
  animation: sdl 2s ease infinite;
}
#mainVisual .scroll > div:before {
  content: "";
  display: block;
  width: 1px;
  height: 112px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: rgba(1, 45, 107, 0.2);
}
#mainVisual .scroll img {
  width: 10px;
}
@keyframes sdl {
  0% {
    transform: translateY(-56px);
  }
  50%,
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 1200px) {
  #mainVisual {
    margin-bottom: 80px;
  }
  #mainVisual .mvImage {
    margin-right: 100px;
    border-bottom-left-radius: 50px;
  }
  #mainVisual .mvImage .titleWrap {
    bottom: 80px;
    left: 80px;
    padding: 0;
  }
  #mainVisual .mvImage .titleWrap p {
    font-size: 30px;
    letter-spacing: 0.1em;
    padding-bottom: 40px;
  }
  #mainVisual .mvImage .titleWrap h1 {
    font-size: 70px;
    letter-spacing: 0.075em;
    padding: 0 0 30px;
  }
  #mainVisual .mvImage .titleWrap h1 span {
    font-size: 100px;
  }
  #mainVisual .mvImage .titleWrap h2 {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
  #mainVisual .mvImage .titleInner h1 img {
    width: 50vw;
  }
  #mainVisual .mvImage .titleInner > img {
    width: auto;
  }
  #mainVisual .scroll {
    right: 40px;
  }
  #mainVisual .scroll img {
    width: auto;
  }
  @keyframes sdl {
    0% {
      transform: translateY(-106px);
    }
    50%,
    100% {
      transform: translateY(0px);
    }
  }
}
@media (min-width: 1400px) {
  #mainVisual .scroll > div {
    padding-bottom: 242px;
  }
  #mainVisual .scroll > div:after {
    height: 106px;
  }
  #mainVisual .scroll > div:before {
    height: 212px;
  }
}
@media (max-width: 350px) {
  #mainVisual .mvImage .titleWrap {
    bottom: 30px;
    left: 10px;
  }
  #mainVisual .mvImage .titleWrap p {
    font-size: 17px;
  }
  #mainVisual .mvImage .titleWrap h1 {
    font-size: 28px;
  }
  #mainVisual .mvImage .titleWrap h1 span {
    font-size: 36px;
  }
  #mainVisual .mvImage .titleWrap h2 {
    font-size: 12px;
  }
}

/*
main
---------------------------*/
#concept .mainTop {
  position: relative;
  background: linear-gradient(90deg, #014099 0%, #014099 50%, #012d6b 50%, #012d6b 100%);
}
#concept .mainTop:before {
  position: absolute;
  top: -40px;
  left: 0;
  content: "";
  display: block;
  width: 50%;
  height: 40px;
  background-color: #014099;
}
#concept .mainTop .imageBox {
  background-color: #014099;
  text-align: center;
}
#concept .mainTop .textBox {
  position: relative;
  width: 100%;
  background-color: #014099;
  color: #fff;
  padding: 0 4.8% 30px 0;
}
#concept .mainTop .textBox:before {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background-color: #014099;
  border-top-right-radius: 50px;
}
#concept .mainTop .textBox h3 {
  color: #ffef62;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  padding-bottom: 20px;
}
#concept .mainTop .textBox p,
#concept .mainTop .textBox li {
  line-height: 1.6;
}
#concept .mainTop .textBox p + p,
#concept .mainTop .textBox p + li,
#concept .mainTop .textBox li + p,
#concept .mainTop .textBox li + li {
  margin-top: 15px;
}
#concept .mainTop .textBox li {
  position: relative;
  padding-left: 25px;
}
#concept .mainTop .textBox li:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #ffef62;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#concept .mainTop .textBox ul {
  margin-top: 15px;
}
#concept .mainBottom {
  background-color: #012d6b;
  color: #fff;
  padding: 40px 0;
}
#concept .mainBottom .inner {
  position: relative;
}
#concept .mainBottom p {
  line-height: 2;
}
#concept .mainBottom h3 {
  font-size: 18px;
  padding-top: 30px;
}
#concept .mainBottom h3 > span {
  display: inline-block;
  font-weight: 600;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #ffef62;
}
#concept .mainBottom h3 > span > span {
  color: #ffef62;
  font-style: italic;
  font-weight: 600;
}
#concept .mainBottom h3 > span > span > span {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-style: italic;
}
#concept .mainBg {
  height: 200px;
  background-image: url(../img/top/main-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#concept .mainBg2 {
  padding-bottom: 50px;
  height: 48vw;
  background-image: url(../img/top/main-bg2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1000px) {
  #concept .mainTop > div {
    position: relative;
    display: flex;
  }
  #concept .mainTop .imageBox {
    width: 42.16%;
    height: 94%;
    max-height: 457px;
    max-width: 523px;
    position: absolute;
    right: -30px;
    top: 66px;
  }
  #concept .mainTop .imageBox.en {
    bottom: 0;
    top: unset;
  }
  #concept .mainTop .imageBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 28% 50%;
  }
  #concept .mainTop .textBox {
    width: 65%;
    padding: 40px 100px 80px 0;
  }
  #concept .mainTop .textBox h3 {
    letter-spacing: 0.1em;
  }
  #concept .mainTop .textBox li {
    padding-left: 40px;
  }
  #concept .mainTop .textBox li:before {
    width: 20px;
  }
  #concept .mainBottom {
    padding: 200px 0 200px;
  }
  #concept .mainBottom p {
    font-size: 18px;
  }
  #concept .mainBottom h3 {
    font-size: 30px;
  }
  #concept .mainBottom h3 span {
    letter-spacing: 0.05em;
  }
  #concept .mainBottom h3 > span {
    padding: 0 50px 10px 0;
  }
  #concept .mainBg {
    height: 340px;
  }
  #concept .mainBg2 {
    position: absolute;
    position: absolute;
    top: -230px;
    right: 0;
    height: 365px;
    width: 60%;
  }
}
@media (min-width: 1200px) {
  #concept .mainTop .textBox h3 {
    font-size: 30px;
    padding-bottom: 32px;
  }
  #concept .mainTop .textBox ul {
    margin-top: 25px;
  }
  #concept .mainTop .textBox p,
  #concept .mainTop .textBox li {
    font-size: 18px;
    line-height: 2;
  }
  #concept .mainTop .textBox p + p,
  #concept .mainTop .textBox li + p {
    margin-top: 20px;
  }
  #concept .mainTop .textBox p + li,
  #concept .mainTop .textBox li + li {
    margin-top: 10px;
  }
}
@media (max-width: 350px) {
  #concept .mainBottom h3 {
    font-size: 16px;
  }
}

.columnBox > div + div {
  margin-top: 40px;
}
.columnBox .columnBtn {
  text-align: center;
  padding-top: 10px;
}
.columnBox .columnBtn .btn + .btn {
  margin-top: 20px;
}
@media (min-width: 1000px) {
  .columnBox > div + div {
    margin-top: 0;
  }
  .columnBox .columnBtn {
    padding-top: 0;
    text-align: left;
  }
  .columnBox .columnBtn02 {
    padding-top: 0;
    text-align: center;
  }
}

/*
news
---------------------------*/
#news {
  position: relative;
}
#news:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #014099;
  height: 40%;
  z-index: 0;
  border-top-right-radius: 50px;
}
#news .newsList {
  padding: 10px 20px 0;
  margin-bottom: 60px;
  border: 1px solid #eee;
}
@media (min-width: 1000px) {
  #news:before {
    height: 50%;
  }
  #news .newsList {
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.1));
  }
}

/*
station
---------------------------*/
/* #station {
  background-color: #f5f4f3;
}  */
#station .facilityArea {
  padding-bottom: 20px;
}
#station h2.contentTitle {
  font-style: normal;
}
#station .contentTitleWrap,
#station .columnBtn {
  padding: 0 4.8% 20px 4.8%;
}
@media (min-width: 1000px) {
  #station .facilityArea {
    padding-bottom: 60px;
  }
  #station .contentTitleWrap,
  #station .columnBtn {
    width: 90%;
    max-width: 1240px;
    margin: auto;
    padding: 0 0 60px 0;
  }
}
#station .contentTitleWrap p {
  font-size: 16px;
}
@media (min-width: 1000px) {
  #station .contentTitleWrap p {
    font-size: 18px;
  }
}
#station .columnBtn p {
  padding-bottom: 20px;
}
#station .name {
  position: relative;
  padding-left: 20px;
}
#station .mark {
  position: relative;
}
#station .name:before,
#station .mark:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #ffef62;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 50px;
  margin: auto;
}
#station .mark:before {
  width: 12px;
  height: 12px;
  top: 15px;
  left: 5px;
  bottom: unset;
  z-index: 2;
}
#station .mark:hover:before {
  background-color: #012d6b;
}
@media (min-width: 1000px) {
  #station .name:before,
  #station .mark:before {
    width: 16px;
    height: 16px;
    top: 0;
  }
  #station .mark:before {
    width: 14px;
    height: 14px;
    top: 15px;
    left: 5px;
  }
}
/*
modelCourse
---------------------------*/
#modelCourse {
  background-color: #012d6b;
}
#modelCourse .columnBox p {
  padding-top: 10px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}
#modelCourse .columnBox p.large {
  font-size: 16px;
}
#modelCourse .columnBox span {
  padding-top: 5px;
  display: block;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.6;
}
#modelCourse .courseArea {
  padding-top: 20px;
}
#modelCourse .courseArea h4 {
  position: relative;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  padding: 10px 0 10px 26px;
}
#modelCourse .courseArea h4:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  background-color: #ffef62;
  border-radius: 50px;
  margin: auto;
}
#modelCourse .courseDetail {
  padding: 2%;
  margin-bottom: 40px;
  border: 1px solid #ffffff;
}
#modelCourse .courseDetail > div {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  width: 100%;
}

#modelCourse .courseDetail > div > div {
  width: 100%;
}
#modelCourse .courseImageArea > div:not(.columnBtn) {
  padding: 5px;
  display: flex;
  justify-content: space-between;
  border: 1px solid #ffffff;
}
#modelCourse .courseImageArea.special > div > div {
  width: 49.5%;
}
#modelCourse .courseImageArea .twoImage {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1%;
}
#modelCourse .courseImageArea .twoImage > div {
  width: 99%;
  height: 49.5%;
}
#modelCourse .courseImageArea .twoImage img {
  height: 100%;
  width: 100%;
}
#modelCourse .courseImageArea:not(.special) .twoImage img {
  object-fit: contain;
}
#modelCourse .courseTextArea p {
  padding-top: 0;
  padding-bottom: 10px;
  font-size: 12px;
  line-height: 2;
}
@media (max-width: 350px) {
  #modelCourse .columnBox p.large {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  #modelCourse .courseTextArea p {
    font-size: 14px;
  }
  #modelCourse .columnBox p.large {
    font-size: 18px;
  }
}
@media (min-width: 1000px) {
  #modelCourse .columnBox > p {
    width: 51%;
  }
  #modelCourse .columnBox span {
    width: 50%;
  }
  #modelCourse .courseArea h4 {
    font-size: 24px;
  }
  #modelCourse .courseDetail {
    padding: 5%;
  }
  #modelCourse .courseDetail > div {
    flex-direction: row;
  }
  #modelCourse .courseDetail > div > div {
    width: 47.5%;
  }
  #modelCourse .columnBtn {
    padding-top: 40px;
  }
  #modelCourse .courseArea {
    padding-top: 60px;
  }
  #modelCourse .columnBox p {
    font-size: 16px;
  }
  #modelCourse .courseTextArea p {
    font-size: 18px;
  }
}

/*
service
---------------------------*/
#service {
  background-image: url(../img/station/service-bg.jpg);
  background-position: center top;
  background-size: cover;
}
#service .serviceContent > div:not(:last-of-type) {
  padding-bottom: 50px;
}
#service .serviceContent .serviceImage {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}
#service .serviceContent .serviceTitle {
  width: 90%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(1, 45, 107, 0.9);
  color: #fff;
  text-align: left;
}
#service .serviceContent .serviceTitle > div {
  position: relative;
  padding: 15px 0 15px 25px;
}
#service .serviceContent .serviceTitle > div:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #ffef62;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#service .serviceContent .serviceTitle h4 {
  font-weight: 600;
  font-size: 16px;
}
#service .serviceContent p {
  line-height: 1.6;
}
#service .contentTitle {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  #service .serviceContent {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  #service .serviceContent > div:not(:last-of-type) {
    padding-bottom: 75px;
  }
  #service .serviceContent p {
    line-height: 1.8;
  }
}
@media (min-width: 1000px) {
  #service .serviceContent .serviceTitle > div {
    padding: 20px 0 20px 30px;
  }
  #service .serviceContent .serviceTitle > div:before {
    width: 20px;
  }
  #service .serviceContent .serviceTitle h4 {
    font-size: 18px;
  }
  #service .contentTitle {
    padding-bottom: 60px;
  }
}

/*
  informationContent
  ---------------------------*/
#information {
  position: relative;
  padding-bottom: 70px;
}
.informationContent {
  position: relative;
}
.informationContent .spot {
  padding: 20px 4.8%;
  border: 1px solid rgba(220, 220, 220, 0.5);
}
.informationContent .spot > div + div {
  text-align: center;
  padding-top: 15px;
}
.informationContent .exLink {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
.informationContent .exLink > div {
  width: 100%;
}
.informationContent .exLink > div img {
  width: 170px;
}
.informationContent .exLink > div + div {
  text-align: right;
  padding: 20px 0 0;
  width: 100%;
}
.informationContent .mapLink {
  position: relative;
  padding-right: 15px;
  padding-left: 20px;
}
.informationContent .mapLink:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  background-image: url(../img/station/icon-map.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 14px;
  margin: auto;
}
.informationContent .spotContent {
  position: relative;
  /*background-color: #33854c;*/
  background-color: #012d6b;
  padding: 30px 4.8%;
}
.informationContent .spotContent .soptTitle {
  position: relative;
  font-size: 18px;
  color: #fff;
  padding-top: 0;
  padding-left: 26px;
}
.informationContent .spotContent .soptTitle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  background-color: #ffef62;
  border-radius: 50px;
  margin: auto;
}
.informationContent .spotContent .spotInfomation {
  padding-top: 10px;
  color: #ffffff;
  line-height: 1.8;
}
.informationContent .lineLink {
  padding-top: 15px;
}
.informationContent .lineLink img {
  width: 116px;
}
@media (min-width: 1000px) {
  .informationContent {
    background-size: 50px auto;
  }
  .informationContent .run-base-sapporo img {
    width: auto;
  }
  .informationContent .name {
    padding-left: 25px;
  }
  #station .name:before {
    width: 16px;
    height: 16px;
    top: 0;
  }
  .informationContent .exLink {
    margin-top: 20px;
  }
  .informationContent .exLink > div {
    width: 68%;
  }
  .informationContent .exLink > div + div {
    width: 28%;
    padding: 0;
  }
  .informationContent .exLink > div + div img {
    width: 340px;
  }
  .informationContent .spotContent {
    padding: 40px;
  }
  .informationContent .spotContent .soptTitle {
    font-size: 24px;
  }
  .informationContent .lineLink {
    position: absolute;
    right: 40px;
    top: 40px;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .informationContent .spot {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
  }
  .informationContent .spot > div {
    width: 48%;
  }
  .informationContent .spot > div + div {
    padding-top: 0;
  }
}

.bottomImage {
  display: flex;
}

/*
  tableStyle
  ---------------------------*/
.tableStyle dl {
  border-bottom: 1px solid rgba(220, 220, 220, 0.5);
}
.tableStyle dl:last-of-type {
  margin-bottom: 20px;
  border-bottom: none;
}
.tableStyle dl dt,
.tableStyle dl dd {
  line-height: 1.6;
}
.tableStyle dl dt {
  color: #ffef62;
  font-weight: 600;
  padding: 20px 0 0;
}
.tableStyle dl dd {
  color: #fff;
  padding: 10px 0 20px;
}
.tableStyle dl dd .note {
  font-size: 12px;
}
.tableStyle dl dd .tel {
  display: block;
  padding-top: 10px;
}
.tableStyle dl dd p,
.tableStyle dl dd li {
  line-height: 1.8;
}
.tableStyle dl dd p + p,
.tableStyle dl dd p + li,
.tableStyle dl dd p + ul,
.tableStyle dl dd li + p,
.tableStyle dl dd li + li,
.tableStyle dl dd li + ul {
  padding-top: 10px;
}
.tableStyle dl dd a {
  text-decoration: underline;
}
.tableStyle dl dd li {
  text-indent: -1em;
  padding-left: 1em;
}
.tableStyle dl .price li {
  display: flex;
  align-items: center;
  text-indent: 0;
  padding-left: 0;
}
.tableStyle dl .price li > p {
  width: 50%;
}
.tableStyle dl .price li > p + p {
  text-align: right;
}
.tableStyle dl .price li + li {
  padding-top: 1em;
}
@media (min-width: 768px) {
  .tableStyle dl {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 0;
  }
  .tableStyle dl:last-of-type {
    margin-bottom: 10px;
  }
  .tableStyle dl dt,
  .tableStyle dl dd {
    letter-spacing: 0.1em;
    padding: 16px 0;
  }
  .tableStyle dl dt {
    width: 180px;
  }
  .tableStyle dl dd {
    width: calc(100% - 180px);
  }
  .tableStyle dl dd .note {
    font-size: 14px;
  }
  .tableStyle dl dd .tel {
    display: inline-block;
    padding: 0 0 0 20px;
  }
}
@media (min-width: 1000px) {
  .tableStyle dl dt {
    width: 300px;
  }
  .tableStyle dl dd {
    width: calc(100% - 300px);
  }
  .tableStyle dl .price li > p {
    width: 50%;
  }
  .tableStyle dl .price li > p + p {
    text-align: left;
  }
}

/*
  calender
  ---------------------------*/
#calender {
  background-color: #f5f4f3;
}
/*
  reservations
  ---------------------------*/
#reservations .reservationsWrap {
  /*
      circleTitleWrap
      ---------------------------*/
}
#reservations .reservationsWrap > div {
  background-color: #012d6b;
  color: #fff;
  text-align: center;
  padding: 40px 4.8%;
}
#reservations .reservationsWrap > div + div {
  background-color: #014099;
}
#reservations .reservationsWrap .circleTitleWrap {
  position: relative;
  padding-left: 26px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
#reservations .reservationsWrap .circleTitleWrap:after {
  content: "";
  height: 1px;
  background-color: #ffef62;
  flex-grow: 1;
}
#reservations .reservationsWrap .circleTitleWrap:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  background-color: #ffef62;
  border-radius: 50px;
  margin: auto;
}
#reservations .reservationsWrap .circleTitleWrap .circleTitle {
  font-weight: 600;
  font-size: 16px;
  padding: 0 20px 0 0;
}
#reservations .reservationsWrap .btn + .btn {
  margin: 20px 0 0 0;
}
@media (min-width: 768px) {
  #reservations .reservationsWrap {
    display: flex;
  }
  #reservations .reservationsWrap > div {
    width: 50%;
    padding: 60px 20px 90px;
  }
  #reservations .reservationsWrap .circleTitleWrap .circleTitle {
    font-size: 15px;
  }
}
@media (min-width: 1000px) {
  #reservations .reservationsWrap > div {
    padding: 60px 40px 90px;
  }
  #reservations .reservationsWrap .circleTitleWrap {
    margin-bottom: 60px;
  }
  #reservations .reservationsWrap .circleTitleWrap:before {
    width: 16px;
    height: 16px;
  }
  #reservations .reservationsWrap .circleTitleWrap .circleTitle {
    font-size: 18px;
  }
}
@media (max-width: 350px) {
  #reservations .reservationsWrap .circleTitleWrap .circleTitle {
    font-size: 13px;
  }
}

#calender .calenderBox > div {
  background-color: #fff;
  text-align: center;
  padding: 20px 0;
}
#calender .calenderBox > div img {
  width: 253px;
}
#calender .calenderBox > div + div {
  margin-top: 20px;
}
#calender .infomation {
  padding-bottom: 20px;
}
#calender .infomation img,
#calender .infomation p {
  display: inline-block;
  vertical-align: middle;
}
#calender .infomation > div + div {
  padding-top: 10px;
}
#calender .eventDetail {
  background-color: #fff;
  padding: 0 20px;
  margin-top: 30px;
}
#calender .eventDetail dl {
  padding: 25px 0;
}
#calender .eventDetail dl:not(:last-of-type) {
  border-bottom: 1px solid #dcdcdc;
}
#calender .eventDetail dt,
#calender .eventDetail dd {
  line-height: 1.6;
}
#calender .eventDetail dt {
  position: relative;
  color: #012d6b;
  font-size: 18px;
}
#calender .eventDetail dt span {
  vertical-align: middle;
  font-weight: 600;
}
#calender .eventDetail dt:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background-image: url(../img/station/calender_icon03.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}
#calender .eventDetail dd {
  line-height: 1.8;
}
#calender .eventDetail .info {
  padding: 15px 0;
}
#calender .eventDetail .info span {
  font-weight: 600;
  line-height: 1.4;
}
#calender .eventDetail .info .price {
  display: inline-block;
  min-width: 100px;
  background-color: #012d6b;
  text-align: center;
  color: #fff;
  padding: 3px 10px;
  margin-right: 10px;
  border-radius: 50px;
}
#calender .eventDetail .info .price + span {
  display: block;
  font-size: 16px;
  padding-top: 5px;
}
@media (min-width: 1000px) {
  #calender .calenderBox {
    display: flex;
    justify-content: space-between;
  }
  #calender .calenderBox > div {
    width: 48.7%;
    padding: 40px 0 65px;
  }
  #calender .calenderBox > div img {
    width: auto;
  }
  #calender .calenderBox > div + div {
    margin-top: 0;
  }
  #calender .infomation {
    padding-bottom: 40px;
  }
  #calender .infomation img,
  #calender .infomation p {
    display: inline-block;
    vertical-align: middle;
  }
  #calender .infomation > div {
    display: inline-block;
    vertical-align: middle;
  }
  #calender .infomation > div + div {
    padding: 0 0 0 50px;
  }
  #calender .eventDetail {
    padding: 30px 50px;
    margin-top: 60px;
  }
  #calender .eventDetail dl {
    padding: 30px 0;
  }
  #calender .eventDetail dt,
  #calender .eventDetail dd {
    line-height: 1.8;
  }
  #calender .eventDetail dt {
    font-size: 22px;
  }
  #calender .eventDetail dt:before {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  #calender .eventDetail .info {
    font-size: 18px;
    padding: 10px 0 20px;
  }
  #calender .eventDetail .info .price {
    font-size: 14px;
  }
  #calender .eventDetail .info .price + span {
    display: inline-block;
    padding-top: 0;
  }
}

#information02,
.bottomBtn {
  padding-bottom: 80px;
}
@media (min-width: 1000px) {
  #information02,
  .bottomBtn {
    padding-bottom: 140px;
  }
}

.bottomBtn {
  text-align: center;
}
@media (min-width: 1000px) {
  .bottomBtn {
    text-align: left;
  }
}
.center {
  text-align: center;
}

.center .btn {
  padding-bottom: 20px;
}

.contentWrap > p {
  line-height: 1.6;
}
@media (min-width: 1000px) {
  .contentWrap > p {
    text-align: center;
  }
}

.mb_20 {
  margin-bottom: 20px;
}
/*# sourceMappingURL=top.css.map */

/* 2025/03/25 追加↓ */
.pd-tb {
  padding: 50px 4.8% 20px;
}
.bottom-btn {
  width: 90.4%;
  max-width: 1240px;
  margin: 0 auto;
}
/* 2025/03/25 追加↑ */
