@charset "utf-8";
/* Page MV
----------------------------------------------------------------------------------------------------*/
.mv-page {
  position: relative;
  margin-top: 15rem;
}
.mv-page__bg {
  display: block;
  width: 100%;
}
.mv-title {
  position: absolute;
  top: 40%;
  left: 45%;
  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: 1367px) {
  .mv-title {
    left: 45%;
  }
  .mv-title__en {
    font-size: 2rem;
  }
  .mv-title__jp {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .mv-page {
    margin-top: 10rem;
  }
  .mv-title {
    top: 30%;
    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;
  }
}
@media screen and (max-width: 767px) {
  .mv-title {
    left: 23%;
  }
}
/* 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 {
	width: min(90%, 1230px);
	margin: 0 auto;
}
section {
	margin: 0 auto 100px;
}
section:last-child {
	margin: 0;
}
section h4 {
  font-size: 2.8rem;
  border-bottom: 1px solid #000;
  padding: 0 0 20px;
  margin: 0;
	text-wrap: unset;
}
.linkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 0;
  padding: 0;
}
.linkBox .link__left,
.linkBox .link__right {
  width: calc(100% / 2 - 20px);
}
.link__left p {
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 1.75;
	padding: 0 0 50px;
}
/*.link__left a {
  display: block;
  text-decoration: none;
  font-size: 2.0rem;
}*/

@media screen and (max-width: 767px) {
	section h4 {
		font-size: 2.4rem;
	}
  .linkBox .link__left,
  .linkBox .link__right {
    width: 100%;
  }
  .link__left p {
    padding: 0 0 20px;
  }
  .sec-link__button {
    margin: 0 0 30px;
  }
}

/*ボタン*/
.sec-link__button {
  display: inline-block;
  border: 2px solid #006CB8;
  background: #FFF;
  transition: background-color 0.3s ease;
  overflow: hidden;
}
.sec-link__button a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 29rem;
  padding: 0 3rem 0 0;
  color: #006CB8;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}
/* 左の斜めの緑帯 */
.sec-link__button .slant {
  width: 20px;
  height: 60px;
  background: #6CBB63;
  clip-path: polygon(0 0, 100% 0, 0% 100%);
  flex-shrink: 0;
  margin-right: 1rem;
}
/* テキスト */
.sec-link__button .text {
  position: relative;
  z-index: 1;
}
/* ホバー時の色変更 */
.sec-link__button:hover {
  background: #006CB8;
}
.sec-link__button:hover .text {
  color: #FFF;
}















