@charset "UTF-8";
#TopicPath {
  display: none;
}

#topimage {
  padding: 0;
  background: none;
}

#topimage:after {
  display: none;
}

#topmainimage {
  position: relative;
  padding-bottom: 0px;
}
@media screen and (min-width: 992px) {
  #topmainimage {
    max-height: 100dvh;
  }
  #topmainimage .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.swiper-slide {
  line-height: 0.1;
}

.slide_text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 3;
}
.slide_text img {
  display: block;
  width: 50%;
  margin: auto;
}

.scrolldown {
  position: absolute;
  bottom: 0%;
  left: 5%;
  animation: arrowmove 1.5s ease-in-out infinite;
  z-index: 10;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 2%;
  }
  100% {
    bottom: 1%;
  }
}
/*Scrollテキストの描写*/
.scrolldown a {
  position: absolute;
  left: 0px;
  bottom: 0px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown a:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -16px;
  width: 1px;
  height: 20px;
  background: #eee;
  transform: skewX(-31deg);
}

.scrolldown a:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 1px;
  height: 50px;
  background: #eee;
}

#main {
  position: relative;
  z-index: 1;
}

#maincol {
  position: relative;
  z-index: 1;
}

#maincol h2 {
  text-align: center;
  margin: 0 0 1em;
  padding: 0;
  background-image: none;
  position: relative;
  border: 0 !important;
}
ul.bochu_contents {
  list-style: none;
  margin: 0;
  padding: 0 5%;
  display: flex;
  flex-wrap: wrap;
  background-color: rgb(42, 52, 97);
}
ul.bochu_contents li {
  text-align: center;
  margin: 0;
  padding: 0;
  width: 50%;
}
@media screen and (max-width: 767px) {
  ul.bochu_contents li {
    width: 100%;
  }
}
ul.bochu_contents li a {
  font-size: clamp(18px, 3vw, 32px);
  position: relative;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  z-index: 1;
  height: 240px;
}
@media screen and (max-width: 767px) {
  ul.bochu_contents li a {
    height: 120px;
  }
}
ul.bochu_contents li a::before {
  transition: all 0.2s linear;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: rgb(235, 97, 0);
  transform: skewX(-15deg);
}
ul.bochu_contents li:nth-child(odd) a::before {
  background-color: rgb(99, 106, 193);
}
@media screen and (min-width: 768px) {
  ul.bochu_contents li a:hover::before {
    background-color: #444e75;
  }
}
ul.bochu_contents small.new {
  transform: skewX(-15deg);
  border: solid 1px #FFF;
  position: absolute;
  top: 5px;
  left: 1em;
  font-size: clamp(16px, 2vw, 28px);
  padding: 0.1em 0.5em;
}

ul.recruit_contents {
  list-style: none;
  margin: 0;
  padding: 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
ul.recruit_contents li {
  margin: 0;
  padding: 0;
  width: 33%;
}
@media screen and (max-width: 767px) {
  ul.recruit_contents li {
    width: 49%;
  }
}
ul.recruit_contents li a {
  border: solid 1px rgb(99, 106, 193);
  font-size: clamp(16px, 2vw, 28px);
  position: relative;
  padding: 1em;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: rgb(99, 106, 193);
  font-weight: bold;
  text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.5);
  z-index: 1;
  height: 180px;
}
@media screen and (max-width: 767px) {
  ul.recruit_contents li a {
    height: 90px;
  }
}
ul.recruit_contents a:after {
  transition: all 0.2s linear;
  display: block;
  content: "";
  border-top: solid 2px rgb(99, 106, 193);
  border-right: solid 2px rgb(99, 106, 193);
  width: 6px;
  height: 6px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  ul.recruit_contents li a:hover {
    color: rgb(235, 97, 0);
    border-color: rgb(235, 97, 0);
    background-color: rgba(235, 97, 0, 0.05);
  }
  ul.recruit_contents a:hover:after {
    border-color: rgb(235, 97, 0);
    right: 5px;
  }
}

.motomeru_content {
  width: 90%;
  max-width: 720px;
  margin: auto;
}

dl#jinzai {
  font-size: 1.2em;
  border: solid 1px rgba(42, 52, 97, 0.3);
  padding: 0 40px 20px 40px;
  background-color: #FFF;
  margin: 40px 0 40px 0;
  font-weight: bold;
}
dl#jinzai dt {
  margin: 1em 0 1em 0em;
  padding: 10px;
  text-align: center;
}
dl#jinzai dd {
  color: rgb(235, 97, 0);
  margin: 0 0 1em 0em;
  padding-left: 1.5em;
  text-indent: 0em;
  position: relative;
}
dl#jinzai dd:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0em;
  width: 10px;
  height: 5px;
  border-left: 3px solid rgb(235, 97, 0);
  border-bottom: 3px solid rgb(235, 97, 0);
  transform: rotate(-45deg);
}

.motomeru_content p {
  margin-bottom: 2em;
}

/*whatsnew
-------------------------------------------------*/
dl.whats {
  margin: 30px 0 20px 0;
  border-bottom: 1px dotted #CCC;
  overflow: hidden;
}
dl.whats div {
  display: flex;
}
dl.whats dt {
  width: max 20%, 12em;
  padding: 5px 0 0 10px;
  margin: 0 0 0.5em 0em;
  border-top: 1px dotted #CCC;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
dl.whats dt:after {
  color: #FFF;
  padding: 0.25em;
  font-size: 80%;
  text-align: center;
  width: 8em;
  display: inline-block;
  margin-left: 0.5em;
}
dl.whats dt.iyotetsu:after, dl.whats dt.iyogroup:after {
  content: "伊予鉄グループ";
  background-color: #FF5900;
}
dl.whats dt.iyorail:after, dl.whats dt.rail:after {
  content: "伊予鉄道";
  background-color: #F28339;
}
dl.whats dt.iyobus:after, dl.whats dt.bus:after {
  content: "伊予鉄バス";
  background-color: #FFAC00;
}
dl.whats dt.nanyobus:after {
  content: "伊予鉄南予バス";
  background-color: #4986D2;
}
dl.whats dt.taxi:after {
  content: "伊予鉄タクシー";
  background-color: #0078B8;
}
dl.whats dt.auto:after {
  content: "伊予鉄オート";
  background-color: #00336A;
}
dl.whats dt.hino:after {
  content: "日野自動車";
  background-color: #EA6063;
}
dl.whats dt.commerce:after {
  content: "伊予鉄商事";
  background-color: #FF8AB4;
}
dl.whats dt.estate:after {
  content: "伊予鉄不動産";
  background-color: #1B51AC;
}
dl.whats dt.travel:after {
  content: "伊予鉄トラベル";
  background-color: #FFA554;
}
dl.whats dt.takashimaya:after {
  content: "いよてつ髙島屋";
  background-color: #EE0011;
}
dl.whats dt.iyoplan:after {
  content: "総合企画";
  background-color: #FFD053;
}
dl.whats dt.fs:after {
  content: "ﾌｨﾅﾝｼｬﾙｻｰﾋﾞｽ";
  background-color: rgb(40, 100, 240);
}
dl.whats dt.ishizaki:after {
  content: "石崎汽船";
  background-color: #2151b0;
}
dl.whats dd {
  padding: 5px 0 0px 10px;
  margin: 0 0 0 0;
  border-top: 1px dotted #CCC;
  width: 80%;
}

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