@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
/*----------------------------------------------------
  アニメーション
----------------------------------------------------*/
.fadein {
  opacity: 0;
}

.fadeinAnime {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fadeinAnime;
  visibility: visible !important;
  animation-delay: 0.1s;
}

@-webkit-keyframes fadeinAnime {
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeinAnime {
  30% {
    opacity: 0;
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
/*----------------------------------------------------
  メイン
----------------------------------------------------*/
.mainimage-wrap {
  position: relative;
  overflow: hidden;
}
.mainimage-wrap .catch {
  text-align: left;
  font-size: min(6vw, 7.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 90%;
}
@media screen and (max-width: 575.98px) {
  .mainimage-wrap .catch {
    font-size: 8vw;
  }
}

/*スライダー*/
.main-slider {
  overflow: hidden;
  width: 100%;
}
.main-slider .image {
  height: 100vh;
}
@media screen and (max-width: 767.98px) {
  .main-slider .image {
    height: 85vh;
  }
}
.main-slider img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

/*----------------------------------------------------
  これからも地域と共に歩む
----------------------------------------------------*/
.about-wrap {
  padding: 14rem 0 24rem;
  background-image: url(../images/home/bg_about.png), url(../images/home/bg_about_bottom.png);
  background-repeat: no-repeat, repeat-x;
  background-position: right -3rem top -2rem, bottom -3rem center;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1199.98px) {
  .about-wrap {
    background-position: right -12rem top -2rem, bottom -3rem center;
    background-size: 1200px, auto;
  }
}
@media screen and (max-width: 991.98px) {
  .about-wrap {
    background-position: right -18rem top -2rem, bottom -3rem center;
  }
}
@media screen and (max-width: 767.98px) {
  .about-wrap {
    padding: 8rem 0 23rem;
    background-position: right -14rem top -1rem, bottom -2rem center;
    background-size: 850px, 1000px;
  }
}
@media screen and (max-width: 575.98px) {
  .about-wrap {
    padding: 27vw 0 16rem;
    background-position: right -8vw top -5vw, bottom -2rem center;
    background-size: 121vw, 800px;
  }
}
.about-wrap::after {
  content: "";
  width: 100%;
  min-width: 3000px;
  height: 235px;
  background-color: #00A2E9;
  display: block;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.about-wrap h2 {
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 1199.98px) {
  .about-wrap h2 {
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .about-wrap h2 {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 575.98px) {
  .about-wrap h2 {
    font-size: 8vw;
  }
}
.about-wrap h3 {
  font-size: 3.2rem;
  font-weight: 900;
  margin: 2em 0;
}
@media screen and (max-width: 1199.98px) {
  .about-wrap h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .about-wrap h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 575.98px) {
  .about-wrap h3 {
    font-size: 1.8rem;
  }
}
.about-wrap p {
  font-size: 2.4rem;
  line-height: 2.6;
  font-weight: 700;
}
@media screen and (max-width: 1199.98px) {
  .about-wrap p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .about-wrap p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 575.98px) {
  .about-wrap p {
    font-size: 3.2vw;
  }
}

/*----------------------------------------------------
  事業内容
----------------------------------------------------*/
.business-wrap {
  padding: 3rem 0 5rem;
  margin-top: -1px;
  margin-bottom: 5rem;
  background-color: #00A2E9;
}
@media screen and (max-width: 767.98px) {
  .business-wrap {
    margin-bottom: 2rem;
  }
}
.business-wrap h2 {
  text-align: center;
  font-size: 5.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}
@media screen and (max-width: 991.98px) {
  .business-wrap h2 {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .business-wrap h2 {
    font-size: 4.2rem;
  }
}
.business-wrap .business-list {
  display: flex;
  flex-wrap: wrap;
}
.business-wrap .business-list > div {
  flex: 0 0 25%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (max-width: 991.98px) {
  .business-wrap .business-list > div {
    flex-basis: 50%;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .business-wrap .business-list > div {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 575.98px) {
  .business-wrap .business-list > div {
    flex-basis: 100%;
    padding: 0;
  }
}
.business-wrap .business-list > div section {
  background-color: #fff;
  padding: 1.5rem 2rem 0rem;
  height: 100%;
}
@media screen and (max-width: 991.98px) {
  .business-wrap .business-list > div section {
    padding: 1.5rem 2rem 2rem;
  }
}
.business-wrap .business-list > div section img {
  width: 150px;
  margin: 2rem auto;
}
@media screen and (max-width: 991.98px) {
  .business-wrap .business-list > div section img {
    width: 120px;
    margin: 1.5rem auto;
  }
}
.business-wrap .business-list > div section h3 {
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 767.98px) {
  .business-wrap .business-list > div section h3 {
    font-size: 2rem;
  }
}
.business-wrap .business-list > div section p {
  text-align: justify;
}
.business-wrap .business-list > div section .text-center {
  margin-top: 1.5em;
}
.business-wrap .business-list > div section a.btn-reservation {
  display: block;
  width: 165px;
  margin: 3rem auto 0;
  text-decoration: none;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  background-color: #00A2E9;
  padding: 1.2rem 2rem 1.2rem 4rem;
  border-radius: 3rem;
  transition: all 0.2s;
  user-select: none;
}
@media screen and (max-width: 767.98px) {
  .business-wrap .business-list > div section a.btn-reservation {
    width: 136px;
    font-size: 1.5rem;
    padding: 1rem 1.5rem 1rem 3rem;
  }
}
.business-wrap .business-list > div section a.btn-reservation::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 17px;
  background: url(../images/common/ico_arrow.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 1.2rem;
  margin-top: -0.4rem;
}
@media screen and (max-width: 767.98px) {
  .business-wrap .business-list > div section a.btn-reservation::after {
    width: 16px;
    height: 14px;
  }
}
.business-wrap .business-list > div section a.btn-reservation:hover {
  background-color: #0081ba;
}

/*----------------------------------------------------
  会社概要
----------------------------------------------------*/
.home-wrap {
  padding: 8rem 0;
}
@media screen and (max-width: 767.98px) {
  .home-wrap {
    padding: 5rem 0;
  }
}
.home-wrap h2 {
  font-size: 4rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 0.6em;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .home-wrap h2 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 575.98px) {
  .home-wrap h2 {
    font-size: 2.8rem;
  }
}
.home-wrap table.tbl-normal {
  width: 100%;
}
.home-wrap table.tbl-normal tr {
  border-bottom: 1px solid #ddd;
}
.home-wrap table.tbl-normal tr:first-child {
  border-top: 1px solid #ddd;
}
.home-wrap table.tbl-normal th, .home-wrap table.tbl-normal td {
  padding: 1.8rem 3rem;
}
@media screen and (max-width: 767.98px) {
  .home-wrap table.tbl-normal th, .home-wrap table.tbl-normal td {
    padding: 1.2rem 1.5rem;
  }
}
.home-wrap table.tbl-normal th {
  width: 184px;
  background-color: #F6F6F6;
  font-weight: 400;
}
@media screen and (max-width: 767.98px) {
  .home-wrap table.tbl-normal th {
    width: 150px;
  }
}
@media screen and (max-width: 575.98px) {
  .home-wrap table.tbl-normal th {
    width: 110px;
  }
}

/*----------------------------------------------------
  アクセス
----------------------------------------------------*/
.access-area {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .access-area {
    display: block;
  }
}
.access-area .map {
  width: 65%;
}
@media screen and (max-width: 767.98px) {
  .access-area .map {
    width: auto;
  }
}
.access-area .map > div {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 55%;
}
@media screen and (max-width: 991.98px) {
  .access-area .map > div {
    padding-top: 68%;
  }
}
@media screen and (max-width: 767.98px) {
  .access-area .map > div {
    padding-top: 50%;
  }
}
.access-area .map > div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access-area .text {
  flex: 1;
  padding-left: 6rem;
}
@media screen and (max-width: 991.98px) {
  .access-area .text {
    padding-left: 3rem;
  }
}
@media screen and (max-width: 767.98px) {
  .access-area .text {
    padding-left: 0;
    margin-top: 2rem;
  }
}
.access-area .text h3 {
  font-size: 2.4rem;
  font-weight: 900;
}
@media screen and (max-width: 767.98px) {
  .access-area .text h3 {
    font-size: 2rem;
  }
}
.access-area .text .access {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.access-area .text p + h3 {
  margin-top: 4rem;
}
@media screen and (max-width: 991.98px) {
  .access-area .text p + h3 {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767.98px) {
  .access-area .text p + h3 {
    margin-top: 2rem;
  }
}
.access-area .text .button-area {
  text-align: right;
  margin-top: 2rem;
}
@media screen and (max-width: 767.98px) {
  .access-area .text .button-area {
    text-align: left;
    margin-top: 1rem;
  }
}
.access-area .text .button-area a {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  background-color: #191919;
  text-decoration: none;
  padding: 1.2rem 2rem;
  border-radius: 3rem;
  transition: all 0.2s;
  user-select: none;
}
.access-area .text .button-area a:hover {
  opacity: 0.75;
}

/*----------------------------------------------------
  関連会社
----------------------------------------------------*/
.affiliated-company {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 575.98px) {
  .affiliated-company {
    display: block;
  }
}
.affiliated-company > div {
  flex: 0 1 calc(394px + 6rem);
  padding-left: 3rem;
  padding-right: 3rem;
}
@media screen and (max-width: 991.98px) {
  .affiliated-company > div {
    flex: 0 1 calc(394px + 3rem);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .affiliated-company > div {
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 575.98px) {
  .affiliated-company > div {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 575.98px) {
  .affiliated-company > div:last-child {
    margin-bottom: 0;
  }
}
.affiliated-company > div .block {
  border: 1px solid #ddd;
  padding: 3rem 4rem;
  height: 100%;
}
@media screen and (max-width: 575.98px) {
  .affiliated-company > div .block {
    padding: 4rem 2rem 3rem;
  }
}
.affiliated-company > div .block .logo {
  margin-bottom: 4rem;
  display: flex;
  min-height: 108px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 575.98px) {
  .affiliated-company > div .block .logo {
    display: block;
    min-height: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 575.98px) {
  .affiliated-company > div .block .logo img {
    width: 180px;
  }
}
.affiliated-company > div .block > p a {
  color: #222;
  text-decoration: underline;
}
.affiliated-company > div .block > p a:hover {
  color: #00A2E9;
}
.affiliated-company > div .block .link {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 575.98px) {
  .affiliated-company > div .block .link {
    margin-top: 2rem;
  }
}
.affiliated-company > div .block .link a {
  color: #222;
  text-decoration: none;
  display: inline-block;
  font-weight: 900;
  position: relative;
  padding: 1rem 4.5rem 1rem 0;
  text-align: left;
}
@media screen and (max-width: 575.98px) {
  .affiliated-company > div .block .link a {
    padding-right: 3.8rem;
  }
}
.affiliated-company > div .block .link a::after {
  content: "";
  width: 36px;
  height: 36px;
  display: inline-block;
  background: url(../images/common/ico_arrow.svg) no-repeat center center;
  background-color: #00A2E9;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -18px;
}
@media screen and (max-width: 575.98px) {
  .affiliated-company > div .block .link a::after {
    background-size: 16px;
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
.affiliated-company > div .block .link a:hover {
  color: #00A2E9;
}

/*----------------------------------------------------
  沿革
----------------------------------------------------*/
.history .column {
  display: flex;
}
@media screen and (max-width: 575.98px) {
  .history .column {
    display: block;
  }
}
.history .column .text {
  width: 60%;
  padding-right: 3rem;
}
@media screen and (max-width: 575.98px) {
  .history .column .text {
    width: auto;
    margin-bottom: 1rem;
  }
}
.history .column .image {
  flex: 1;
}

a.bnr_nagahama {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 10;
}

.bnr_nagahama_biz {
  width: 100% !important;
  padding: 15px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}/*# sourceMappingURL=home.css.map */