@charset "utf-8";

/* Page MV
----------------------------------------------------------------------------------------------------*/
.mv-page {
  position: relative;
  margin-top: 15rem;
}

.mv-page__bg {
  display: block;
  width: 100%;
}

.mv-title {
  position: absolute;
  top: 45%;
  left: 55%;
  display: flex;
  align-items: center;
  margin: 0 auto 3rem;
}

.mv-title__en {
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  margin-left: 1.8rem;
  background: #60B867;
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2.8rem;
  height: 4rem;
  /* 平行四辺形のための変形 */
  transform: skew(-20deg);
  /* 左上が上がる形に傾ける */
}

/* 中のテキストを逆に傾けてまっすぐにする */
.mv-title__en>* {
  transform: skew(20deg);
}

.mv-title__jp {
  color: #000;
  font-size: 3.9rem;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .mv-page {
    margin-top: 10rem;
  }

  .mv-title {
    top: 35%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .mv-title__en {
    padding: 0 1rem;
    margin-left: 0;
    font-size: 1.2rem;
    height: 2rem;
  }

  .mv-title__jp {
    margin-bottom: 0;
    font-size: 2rem;
  }
}

/* Common
----------------------------------------------------------------------------------------------------*/
.main {
  padding: 10rem 0;
}

@media screen and (max-width: 1367px) {
  .main {
    padding: 10rem 0;
  }
}

@media screen and (max-width: 767px) {
  .main {
    padding: 5rem 0;
  }
}

.page-copy {
  margin-bottom: 10rem;
  font-size: 3.5rem;
  font-weight: 600;
}

@media screen and (max-width: 1367px) {
  .page-copy {
    margin-bottom: 6rem;
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .page-copy {
    margin-bottom: 6rem;
    font-size: 2rem;
  }
}

/* Main Contents
----------------------------------------------------------------------------------------------------*/
.sec-menu {
  width: min(90%, 1230px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 12rem;
  margin: 0 auto;
}

a.menu-item {
  display: block;
  width: calc(100% / 2 - 1.6em);
  text-decoration: none;
  transition: all ease 0.4s;
}

a.menu-item img {
  transition: all 0.4s;
}

a.menu-item:hover img {
  opacity: 0.5;
}

.menu-item span {
  position: relative;
  font-weight: 700;
  font-size: 3rem;
  background-color: #006cb8;
  color: #FFF;
  padding: 2rem 0 2rem 4rem;
  display: block;
  transition: all 0.4s;
}

.menu-item:hover span {
  background-color: #FFF;
  color: #006cb8;
}

.menu-item span::before {
  position: absolute;
  content: "";
  display: inline-block;
  height: 0.01rem;
  width: 3rem;
  top: 50%;
  left: 0;
  background-color: #FFF;
}

.menu-item:hover span::before {
  background-color: #006cb8;
}

@media screen and (max-width: 1367px) {
  .sec-menu {
    row-gap: 4rem;
  }

  .menu-item span {
    font-size: 2rem;
    padding: 2rem 0 2rem 2rem;
  }

  .menu-item span::before {
    width: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  a.menu-item {
    width: 100%;
  }
}

/* 各ページ構成
----------------------------------------------------------------------------------------------------*/
.business-header {
  color: #FFF;
  margin: 0 auto 12rem;
  display: flex;
  align-items: stretch;
}

.business-left {
  background: url(../business/img/bg_business-header-left.png) no-repeat top right;
  width: calc(320 / 1920 * 100%);
}

.business-header-inner {
  width: min(1230 / 1920 * 100%);
  padding: 10rem 0;
  background-color: #006cb8;
}

.business-right {
  width: calc(370 / 1920 * 100%);
  background-color: #006cb8;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}


.business-header h3 {
  position: relative;
  font-size: 4.6rem;
  font-weight: 600;
  margin-bottom: 6rem;
}

.business-header h3::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  height: 0.01rem;
  margin-left: 40%;
  background-color: #FFF;
}

.business-header .header-sub {
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 2.8rem;
}

.business-header p {
  font-size: 2.4rem;
  line-height: 1.5;
}

.business-box-sec {
  width: min(90%, 1230px);
  margin: 0 auto 10rem;
}

.business-box-sec:last-of-type {
  margin-bottom: 0;
}


.business-box-sec h4 {
  color: #006cb8;
  font-weight: 700;
  font-size: 3.6rem;
  margin-bottom: 4rem;
}

.business-box-sec .box-sub {
  font-size: 2rem;
  margin-bottom: 4rem;
  line-height: 1.5;
}

.business-box-sec .box-flex {
  display: flex;
  justify-content: space-between;
}

.box-flex:not(:last-of-type) {
  margin-bottom: 4rem;
}

.business-box-sec .box-left,
.business-box-sec .box-right {
  width: calc(600 / 1230 * 100%);
}

.business-box-sec .box-left h5 {
  position: relative;
  font-size: 2.4rem;
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #6cbb63;
}

.business-box-sec .box-left h5::after {
  position: absolute;
  background-color: #6cbb63;
  content: "";
  width: 40%;
  top: 50%;
  height: 0.01rem;
  margin-left: 2rem;
}

.business-box-sec ul {
  list-style: none;
  padding-left: 1.6rem;
  margin-bottom: 0;
  position: relative;
}

.business-box-sec ul li {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.business-box-sec ul li::before {
  position: absolute;
  content: "・";
  left: 0;
}

.business-box-sec ul li:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 1367px) {

  .business-header {
    margin-bottom: 4rem;
    background-color: #006cb8;
  }


  .business-left {
    background: none;
    width: 0;
  }

  .business-right {
    width: 0;
    margin-right: 0;
  }

  .business-header-inner {
    margin: 0 auto;
    padding: 4rem 0;
    width: min(90%, 1230px);
  }

  .business-header h3 {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }

  .business-header h3::after {
    top: 20%;
  }

  .business-header .header-sub {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .business-header p {
    font-size: 1.8rem;
  }

  .business-box-sec h4 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-wrap: auto;
  }

  .business-box-sec .box-flex {
    flex-direction: column;
  }

  .box-flex:not(:last-of-type) {
    margin-bottom: 2rem;
  }

  .business-box-sec p.box-sub {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .business-box-sec .box-left,
  .business-box-sec .box-right {
    width: 100%;
  }

  .business-box-sec .box-left {
    margin-bottom: 2rem;
  }

  .business-box-sec .box-right {
    margin: 0 auto;
    max-width: 70rem;
  }

  .business-box-sec .box-left h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .business-box-sec .box-left h5 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .business-box-sec .box-left h5::after {
    width: 20%;
  }

  .business-box-sec ul li {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

/* 各ページ回遊ボタン
----------------------------------------------------------------------------------------------------*/

.bk-tourbtn {
  height: 100%;
  background: url("../business/img/bg_business-tourbtn.png") no-repeat left top;
}

.sec-tourbtn {
  width: min(90%, 1230px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 5rem;
  margin: 0 auto;
}

a.tour-item {
  display: block;
  width: calc(100% / 3 - 0.8em);
  text-decoration: none;
  transition: all ease 0.4s;
  position: relative;
}


a.tour-item::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  transition: all ease 0.4s;

}

a.tour-item:hover::before {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.26);
  color: #000;
}

a.tour-item.link__btnoff {
  pointer-events: none;
}

a.tour-item.link__btnoff::before {
  content: "";
  position: absolute;
  background: rgb(255 255 255 / 80%);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 21;
}

.tour-text {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 2.4rem;
  color: #FFF;
  transition: all 0.4s;
  z-index: 21;
}

a.tour-item:hover .tour-text {
  color: #000;
}

.link__btnoff .tour-text {
  color: #006cb8;
}

@media screen and (max-width: 1367px) {
  .sec-tourbtn {
    row-gap: 2rem;
  }

  .tour-text {
    font-size: 2.2rem;
  }

  a.tour-item {
    width: calc(100% / 2 - 0.8em);
  }
}

@media screen and (max-width: 767px) {
  a.tour-item {
    width: 100%;
  }

  .tour-text {
    font-size: 2rem;
  }

}