@charset "UTF-8";

/*---------------------------------------------

	全ページ共通

---------------------------------------------*/
/* ↓ 色とテキストの定義 ------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 14px;
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 15px;
  }
}

@media screen and (min-width: 1400px) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 540px) {
  html {
    font-size: 3.3vw;
    /*文字量L-3.3vw/文字量M-3.5vw  */
  }
}

body {
  color: #333333;
  letter-spacing: 0.1rem;
  line-height: 1.7;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  background: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
.mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-m {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-b {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

footer {
  margin-top: auto;
}

/* ↓ 共通アニメーション------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ↓ 共通コンテンツ横幅とマージン ------------------------*/
/*pcの横幅*/
.pcWidth-xl {
  max-width: 1400px;
  width: 87%;
  margin: 0 auto;
}

.pcWidth-l {
  max-width: 1200px;
  width: 87%;
  margin: 0 auto;
}

.pcWidth-m {
  max-width: 960px;
  width: 87%;
  margin: 0 auto;
}

.pcWidth-s {
  max-width: 760px;
  width: 87%;
  margin: 0 auto;
}

@media screen and (min-width: 1450px) {
  .pcWidth-xl {
    max-width: 1600px;
  }

  .pcWidth-l {
    max-width: 1400px;
  }

  .pcWidth-m {
    max-width: 1100px;
  }

  .pcWidth-s {
    max-width: 960px;
  }
}

/*セクションの上下のマージン*/
.secOuter-s {
  padding: 4rem 0px 5rem 0px;
}

.secOuter-m {
  padding: 5rem 0px 6.5rem 0px;
}

.secOuter-l {
  padding: 7rem 0px 8rem 0px;
}

@media screen and (max-width: 540px) {
  .secOuter-s {
    padding: 3rem 0px 4.2rem 0px;
  }

  .secOuter-m {
    padding: 3.5rem 0px 4.8rem 0px;
  }

  .secOuter-l {
    padding: 4.2rem 0px 4.8rem 0px;
  }
}

/* ↓ リンクと共通パーツ ------------------------*/
.textalign-center {
  text-align: center;
}

.textalign-left {
  text-align: left;
}

.textalign-right {
  text-align: right;
}

a {
  color: #333333;
  text-decoration: none;
}

img {
  width: 100%;
}
.btn a {
  display: inline-flex;
  padding: 2rem 4rem;
  align-items: center;
  color: #fff;
  border-radius: 50px;
  background: linear-gradient(270deg, #3f7f9c, #3e5f98);
  background-size: 200% 100%;
  background-position: left center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  font-size: 1rem;
  transition: background-position 0.5s ease, color 0.3s ease;
}

.btn a::after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../img/arrow.svg);
  width: 0.8rem;
  height: 0.8rem;
  background-size: contain;
  background-repeat: no-repeat;
  right: 1.25rem;
  transition: transform 0.3s ease;
}

.btn a:hover {
  background-position: right center;
}

.btn a:hover::after {
  transform: translateX(5px);
}

/* ↓ ナビゲーションバー ------------------------*/
.globalmenu {
  height: 10vh;
  width: 100%;
  padding: 0.75rem 1.5rem;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 1000;
  background-color: #fff;
}
@media screen and (max-width: 540px) {
  .globalmenu {
    height: 5vh;
    z-index: 1001;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}
.header_logo {
  height: 2.5rem;
  transition: 0.3s ease;
}
.header_logo:hover {
  opacity: 0.7;
  transition: 0.3s ease;
}
@media screen and (max-width: 540px) {
  .header_logo {
    height: 2.5rem;
    padding: 0.7rem;
  }
  .header_logo {
    height: 5vh;
  }
}
.header_logo img {
  height: 100%;
  width: auto;
}

.globalmenu-right ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}
.globalmenu-right li {
  text-align: center;
  margin-left: 1.75rem;
  letter-spacing: 0.05rem;
}
.globalmenu-right li a {
  transition: 0.3s ease;
}
.globalmenu-right li a:hover {
  color: #1387a4;
  transition: 0.3s ease;
}

.globalmenu-right li .eng {
  font-size: 0.7rem;
  margin-top: 0.2rem;
  color: #1387a4;
}

@media screen and (max-width: 1040px) {
  .globalmenu-right ul {
    display: none;
  }
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: none;
}

@media screen and (max-width: 1039px) {
  .hamburger {
    display: block;
    position: relative;
    z-index: 10000;
    right: 0;
    top: 0;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    transform: scale(0.6, 0.6);
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0.5rem;
}

.hamburger span:nth-child(1) {
  top: 5px;
}

.hamburger span:nth-child(2) {
  top: 15px;
}

.hamburger span:nth-child(3) {
  top: 25px;
}

.hamburger.active span:nth-child(1) {
  top: 16px;
  /*    left: 6px;*/
  background: #333;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #333;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ↓ スマホメニュー ------------------------*/
nav.globalmenu-sp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  height: 100vh;
  z-index: 100;
}

.globalmenuSp-inner {
  height: 100%;
  color: #333;
  text-align: left;
  margin-left: 8rem;
  margin-top: 8rem;
}
.globalmenuSp-inner li {
  margin-bottom: 1.75rem;
}
.globalmenuSp-inner li .jpn {
  font-size: 1.2rem;
}
.globalmenuSp-inner li .eng {
  color: #1387a4;
  font-size: 0.9rem;
}

@media screen and (max-width: 540px) {
  .globalmenuSp-inner {
    margin-left: 4rem;
    margin-top: 7rem;
  }
}

nav.globalmenu-sp.active {
  display: block;
  opacity: 1;
}

/*---------------------------------------------

	テストコード

---------------------------------------------*/
/* ↓ セクション ｜ ファーストビュー ------------------------*/

.fv {
  height: 90vh;
  width: 100%;
  min-height: 640px;
  position: relative;
  margin-top: 10vh;
}
@media screen and (max-width: 540px) {
  .fv {
    height: 95vh;
    margin-top: 5vh;
  }
}
.fv .fvimg1 {
  left: 0;
  top: 0;
  width: 47%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 1500px) {
  .fv .fvimg1 {
    width: 40%;
  }
}

@media screen and (max-width: 540px) {
  .fv .fvimg1 {
    width: 90%;
    height: 42%;
    left: initial;
    right: 0;
    top: 0;
  }
}
.fvimg1 img,
.fvimg2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.5s ease;
  z-index: 0;
}
.fvimg1 img.active,
.fvimg2 img.active {
  opacity: 1 !important;
  z-index: 1;
}

.fv .fvimg2 {
  right: 0;
  top: 0;
  width: 47%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 1500px) {
  .fv .fvimg2 {
    width: 52%;
  }
}
@media screen and (max-width: 540px) {
  .fv .fvimg2 {
    top: initial;
    right: initial;
    bottom: 4rem;
    left: 0;
    width: 80%;
    height: 45%;
  }
}
.fv .fvimg2 img {
  width: 100%;
  height: 84%;
  object-fit: cover;
}
@media screen and (max-width: 540px) {
  .fv .fvimg2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.fv .catch {
  left: 50vw;
  bottom: 8rem;
  position: absolute;
  z-index: 2;
  font-size: 5.5vw;
}

@media screen and (min-width: 1300px) {
  .fv .catch {
    font-size: 70px;
  }
}
@media screen and (max-width: 1500px) {
  .fv .catch {
    left: 43vw;
    bottom: 9rem;
  }
}
@media screen and (max-width: 540px) {
  .fv .catch {
    left: initial;
    right: 0vw;
    bottom: 34%;
    font-size: 3rem;
    text-align: right;
  }
}

.fv .catch p {
  background: rgba(34, 36, 47, 0.6);
  backdrop-filter: blur(3px);
  color: #fff;
  padding: 0 1.2rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.fv .catch .name {
  right: -24%;
  bottom: -36%;
  position: absolute;
  z-index: 2;
  width: 25rem;
}
@media screen and (max-width: 540px) {
  .fv .catch .name {
    right: 0%;
    bottom: -25%;
    width: 15rem;
  }
}
.fv .back_box {
  height: 25vh;
  width: 100%;
  background: linear-gradient(270deg, #3f7f9c 0%, #3e5f98 100%);
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 540px) {
  .fv .back_box {
    height: 38vh;
  }
}
/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  right: 2rem;
  bottom: 60px;
  writing-mode: vertical-rl;
  z-index: 3;
  font-size: 0.8rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 540px) {
  /* スクロールダウンの位置 */
  .scroll {
    bottom: 60px;
  }
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -60px;
  content: "";
  height: 50px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/*---------------------------------------------

	コラム

---------------------------------------------*/
.bg_blue {
  background-color: #f4fafb;
}

.top_article {
  padding: 15rem 0 6rem;
  background-color: #f4fafb;
  position: relative;
}
.top_article .readmorearea .btn a {
  font-size: 0.75rem;
  padding: 1rem 3rem;
}
@media screen and (max-width: 540px) {
  .top_article {
    padding: 5rem 0 6rem;
  }
  .top_article .readmorearea .btn a {
    font-size: 1rem;
    padding: 1.5rem 4rem;
  }
}

.top_article .article_list {
  position: relative;
  min-width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: -8rem;
}
@media screen and (max-width: 540px) {
  .top_article .article_list {
    position: relative;
    min-width: initial;
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 0rem;
  }
}

.top_article .article_list .readmore {
  position: absolute;
  bottom: 20.5vw;
  transform: translateY(-100%);
  right: 0;
  color: #000;
}
@media screen and (max-width: 1100px) {
  .top_article .article_list .readmore {
    position: absolute;
    bottom: 22vw;
  }
}
@media screen and (max-width: 950px) {
  .top_article .article_list .readmore {
    bottom: 210px;
  }
}
@media screen and (max-width: 540px) {
  .top_article .article_list .readmore {
    top: 0;
    position: relative;
    bottom: initial;
    text-align: center;
    left: 0;
    transform: initial;
  }
}
.top_article .article_list .readmore_text {
  color: #fff;
}

.top_article .article_list .item {
  width: 22vw;
  max-width: 388px;
}
.article_list .item {
  transition: 0.3s ease;
  display: block;
}

.article_list .item:hover {
  transform: scale(1.025);
  transition: 0.3s ease;
  opacity: 1;
}

.top_article .article_list .item_l {
  width: 35vw;
  max-width: 616px;
}
@media screen and (max-width: 950px) {
  .top_article .article_list .item {
    width: 206px;
  }
  .top_article .article_list .item_l {
    width: 330px;
  }
}

@media screen and (max-width: 540px) {
  .top_article .article_list .item {
    width: 100%;
    margin-bottom: 2rem;
  }
  .top_article .article_list .item_l {
    width: 100%;
  }
  .top_article .article_list .item_last {
    margin-bottom: 0rem;
  }

  .top_article .article_list .item:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 540px) {
  .top_article .article_list {
    display: block;
    justify-content: space-between;
    align-items: end;
  }
}

.top_article .article_list .item .thamnal {
  height: 15vw;
}

.top_article .article_list .item_l .thamnal {
  height: 23vw;
}
@media screen and (max-width: 950px) {
  .top_article .article_list .item .thamnal {
    height: 142px;
  }

  .top_article .article_list .item_l .thamnal {
    height: 218px;
  }
}
@media screen and (max-width: 540px) {
  .top_article .article_list .item .thamnal {
    height: 25vh;
    margin-bottom: 1rem;
  }

  .top_article .article_list .item_l .thamnal {
    height: 25vh;
  }
}

.top_article .article_list .item .thamnal img {
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.top_article .article_list .item_l .thamnal img {
  border-radius: 0.5rem 0.5rem;
}

.top_article .article_list .item .info {
  padding: 0.75rem 0rem 1rem;
  border-radius: 0 0 0.25rem 0.25rem;
  height: 7rem;
}

.top_article .article_list .item_l .info {
  padding: 1rem 0rem 2rem;
  border-radius: 0 0 0.5rem 0.5rem;
  height: 7rem;
}

@media screen and (max-width: 540px) {
  .top_article .article_list .item .info {
    height: auto;
  }
}

.article_list .category_area {
  margin-bottom: 0.5rem;
}

/* --------- 特集カテゴリ設定 --------- */

.article_list .category {
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: 1rem;
  line-height: 1;
  letter-spacing: 0;
  display: inline-block;
}
@media screen and (max-width: 540px) {
  .article_list .category {
    font-size: 1rem;
  }
}
.article_list .category.cat_colmn {
  background-color: #ffc400;
}
.article_list .category.cat_interview {
  background-color: #a16deb;
  color: #fff;
}
.article_list .category.cat_attempt {
  background-color: #5f72dc;
  color: #fff;
}
.article_list .category.cat_colmn_recruit {
  background-color: #49aa4b;
  color: #fff;
}
.article_list .category.cat_case {
  background-color: #e97c28;
  color: #fff;
}

/* ------ コンテンツ詳細カテゴリカラー ------*/
.contetns_date .category.cat_colmn {
  background-color: #ffc400;
  color: #333;
}
.contetns_date .category.cat_interview {
  background-color: #a16deb;
  color: #fff;
}
.contetns_date .category.cat_attempt {
  background-color: #5f72dc;
  color: #fff;
}
.contetns_date .category.cat_colmn_recruit {
  background-color: #49aa4b;
  color: #fff;
}
.contetns_date .category.cat_case {
  background-color: #e97c28;
  color: #fff;
}
/* --------------------------- */
.article_list .item .title {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 500;
  font-size: 1.2rem;
}

.article_list .item_l .title {
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (max-width: 540px) {
  .article_list .item .title {
    font-size: 1.4rem;
    font-weight: 500;
  }
}

.top_article .sec_head {
  position: absolute;
  left: 46%;
  z-index: 10;
  background: linear-gradient(270deg, #3f7f9c 0%, #3e5f98 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4.5vw;
  line-height: 1;
}
@media screen and (max-width: 950px) {
  .top_article .sec_head {
    left: 426px;
  }
}
.sec_head_sub {
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: 1vw;
  background: initial;
  background-clip: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}
@media screen and (min-width: 1700px) {
  .top_article .sec_head {
    font-size: 76px;
  }
  .sec_head_sub {
    font-size: 17px;
  }
}
@media screen and (max-width: 540px) {
  .top_article .sec_head {
    font-size: 4rem;
    position: relative;
    left: 0%;
    top: 0rem;
    margin-bottom: 3rem;
  }
  .sec_head_sub {
    font-size: 1rem;
  }
}

.top_message {
  position: relative;
  overflow: hidden;
}

.top_message .backcircle {
  position: absolute;
  width: 45vw;
  right: -6vw;
  top: -10vw;
}
.top_message .backtext {
  position: absolute;
  right: -50vw;
  top: 4vw;
  color: #fff;
  font-size: 9vw;
  font-weight: bolder;
  transform: rotate(90deg);
  transform-origin: left top; /* 回転の基準点を調整 */
  text-shadow: 0px 4px 50px rgba(19, 135, 164, 0.1);
}

.top_message .message_flex {
  display: flex;
  margin: 0;
  margin-bottom: 6rem;
}
.top_message .message_flex .left {
  width: 40%;
  height: 100vh;
}

.top_message .message_flex .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_message .message_flex .right {
  padding: 20vh 0rem 10vw 12vw;
}
@media screen and (max-width: 540px) {
  .top_message .message_flex {
    flex-direction: column;
    margin: 0;
    margin-bottom: 6rem;
  }
  .top_message .message_flex .left {
    width: 100%;
    height: 30vh;
  }
  .top_message .message_flex .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0 2rem;
  }
}
.top_message .message_flex .right .catch {
  font-size: 3.75vw;
  font-weight: bold;
  margin-bottom: 3vw;
}
@media screen and (min-width: 1500px) {
  .top_message .message_flex .right .catch {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 540px) {
  .top_message .message_flex .right .catch {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-left: 1.5rem;
  }
}
.top_message .message_flex .right .catch span {
  background: linear-gradient(270deg, #3f7f9c 0%, #3e5f98 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top_message .message_flex .right .disc {
  font-size: 1.2vw;
  font-weight: 400;
  margin-bottom: 6vw;
}
@media screen and (min-width: 1200px) {
  .top_message .message_flex .right .disc {
    font-size: 1rem;
  }
}
@media screen and (max-width: 540px) {
  .top_message .message_flex .right .disc {
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 4rem;
  }
}
.top_message .photo_area {
  position: relative;
  padding-bottom: 8rem;
  margin-top: -10rem;
}
.top_message .photo_area .flex {
  display: flex;
  justify-content: space-between;
}

.top_message .photo_area .image1 {
  width: 35%;
  position: relative;
  left: 11vw;
  margin-top: 13rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 540px) {
  .top_message .photo_area .image1 {
    width: 60%;
    left: 0;
    margin-bottom: 0rem;
  }
}
.top_message .photo_area .illust {
  margin-bottom: -6rem;
  width: 45%;
  z-index: 10;
}
@media screen and (max-width: 540px) {
  .top_message .photo_area .illust {
    position: absolute;
    margin-bottom: 0;
    width: 80%;
    top: -5rem;
    right: 0;
    z-index: 10;
  }
}

.fade-slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-slide-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.top_message .photo_area .image2 {
  width: 45vw;
  position: relative;
  margin-left: 3rem;
  margin-top: 14rem;
}
.top_message .photo_area .image3 {
  width: 32vw;
  margin-left: 4rem;
}
.top_message .photo_area .image4 {
  width: 45vw;
  margin: 2rem;
  margin-bottom: 0;
  margin-top: 14rem;
}
@media screen and (max-width: 540px) {
  .top_message .photo_area .flex {
    flex-direction: column;
  }
  .top_message .photo_area .image2 {
    width: 95vw;
    position: relative;
    margin-left: 5rem;
    margin-top: 5rem;
  }
  .top_message .photo_area .image3 {
    width: 60vw;
    margin-left: 2rem;
    margin-top: 5rem;
  }
  .top_message .photo_area .image4 {
    width: 70vw;
    right: 0;
    text-align: right;
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 0;
    margin-top: 5rem;
  }
}
/*---------------------------------------------

	statement

---------------------------------------------*/
.sec-statement {
  background-color: #eff5f8;
}

.sec-statement .flex {
  display: flex;
}
@media screen and (max-width: 540px) {
  .sec-statement .flex {
    flex-direction: column;
  }
}
.sec-statement .flex .left {
  width: 50%;
  padding: 0 4rem;
  position: relative;
}

.sec-statement .flex .left .inner {
  position: relative;
  top: 40%;
  transform: translateY(-50%);
}

.sec-statement .flex .right {
  width: 50%;
}
@media screen and (max-width: 540px) {
  .sec-statement .flex .left {
    width: 100%;
    padding: 3rem 2rem;
    position: relative;
  }
  .sec-statement .flex .left .inner {
    position: relative;
    top: 100%;
    transform: initial;
  }
  .sec-statement .flex .right {
    width: 90%;
    margin: auto;
    margin-bottom: 3rem;
  }
}
.sec-statement .right img {
  width: 100%;
}

.sec-statement .head .text_l {
  font-size: 4rem;
  position: relative;
  color: #fff;
  font-weight: bold;
}
.sec-statement .head .text_s {
  position: absolute;
  font-size: 1rem;
  top: 50%;
  left: 2rem;
  color: #333;
}
.sec-statement .lead {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 540px) {
  .sec-statement .lead {
    font-size: 1.35rem;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1100px) {
  .sec-statement .lead br {
    display: none;
  }
}
.sec-statement .sentence {
  font-weight: 400;
}
@media screen and (max-width: 540px) {
  .sec-statement .lead br {
    display: none;
  }
  .sec-statement .sentence {
    margin-bottom: 4rem;
  }
}
/*---------------------------------------------

	whatwedo

---------------------------------------------*/
.sec-whatwedo {
  background-color: #fff;
}
.sec-whatwedo .head .text_l {
  color: #eff5f8;
}

.sec-whatwedo .flex .right {
  padding: 5rem 3rem 5rem 0;
}
@media screen and (max-width: 540px) {
  .sec-whatwedo .flex .right {
    padding: 0;
  }
}
.btn_s {
  position: absolute;
  bottom: 3rem;
  right: 6rem;
}

.arrow-button a {
  display: inline-block;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  background: linear-gradient(270deg, #3f7f9c 0%, #3e5f98 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 0.8rem;
}
.arrow-button a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% 10px);
  left: 0%;
  width: 7rem;
  height: 5px;
  border: none;
  border-right: 2px solid #3f7f9c;
  border-bottom: 1px solid #3f7f9c;
  transform: skew(45deg);
  transition: 0.3s;
}
.arrow-button a:hover::after {
  position: absolute;
  top: calc(50% 10px);
  left: 0%;
  width: 8rem;
  height: 5px;
}

/*---------------------------------------------

	ニュース

---------------------------------------------*/

.news .sec_head {
  font-weight: 500;
}

.news .sec_head small {
  font-size: 1.1rem;
  color: #7f7671;
}

.top_news .secOuter-l {
  padding-top: 6rem;
  padding-bottom: 8rem;
}

@media screen and (max-width: 540px) {
  .top_news .secOuter-l {
    padding-bottom: 5rem;
  }
}

.top_news .sec_head {
  font-size: 2.2rem;
}
.top_news .sec_head small {
  margin-left: 1rem;
  color: #2499a8;
}

.news .contents {
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 540px) {
  .news .contents {
    padding: 2rem 0;
    padding-top: 0rem;
    margin-bottom: 2rem;
  }
}

.news .contents li {
  padding: 2.3rem 2rem;
  border-bottom: 1px solid #e1e1e1;
  transition: 0.3s ease;
  cursor: pointer;
}

.news .contents li:hover {
  background-color: #ecf1f9;
}

.news .contents li:first-child {
  border-top: 1px solid #e1e1e1;
}

.news .contents .row a {
  color: #333;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 540px) {
  .news .contents .row a {
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .news .contents .row {
    padding: 1.5rem 0rem;
  }
}

.news .contents .row .day {
  width: 27%;
  color: #666666;
  font-size: 0.9rem;
}

.news .contents .row .category {
  display: inline-block;
  width: 7.5rem;
  padding: 0.35rem 0;
  font-size: 0.75rem;
  border-radius: 1.2rem;
  background-color: #00a933;
  color: #fff;
  text-align: center;
  margin-left: 1rem;
}
.news .contents .row .category.cat_news {
  background-color: #ffc400;
  color: #333;
}
.news .contents .row .category.cat_pr {
  background-color: #a16deb;
  color: #fff;
}
.news .contents .row .category.cat_recruit {
  background-color: #5f72dc;
  color: #fff;
}

.news .contents .row .title {
  font-size: 0.9rem;
  width: 73%;
}
@media screen and (max-width: 540px) {
  .news .contents .row .category {
    padding: 0.2rem 0;
    margin-left: 0.5rem;
  }
  .news .contents .row .day {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  .news .contents .row .title {
    width: 100%;
    font-size: 1.1rem;
  }
}
.textCenter {
  text-align: center;
}
/*---------------------------------------------

	フッター

---------------------------------------------*/
.footer_banner {
  display: flex;
  position: relative;
}

.textCenter {
  text-align: center;
}
.footer_banner .item {
  position: relative;
}

.footer_banner .text {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(30, 30, 30, 0.9);
  padding: 0.8rem 1.5rem;
  color: #fff;
  width: 12rem;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .footer_banner .text {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(30, 30, 30, 0.9);
    padding: 0.8rem 1.5rem;
    color: #fff;
    width: 100%;
    text-align: center;
  }
}
.footer_banner .item {
  width: 50%;
  height: 20rem;
  overflow: hidden; /* 拡大してもはみ出さないように */
}
@media screen and (max-width: 540px) {
  .footer_banner .item {
    width: 100%;
    height: 15rem;
    overflow: hidden; /* 拡大してもはみ出さないように */
  }
  .footer_banner {
    display: block;
  }
}
.footer_banner .item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
  opacity: 1;
}

.footer_banner .item a img:hover {
  transform: scale(1.05); /* 拡大 */
  transition: 0.6s ease;
  opacity: 1;
}

.footer-menu {
  background: linear-gradient(270deg, #3f7f9c 0%, #3e5f98 100%);
  text-align: center;
  padding: 4rem 1rem 1rem;
}

.footerMenu-logo img {
  width: 12rem;
  margin-bottom: 1rem;
}

.footerMenu-menus {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.footerMenu-menus a {
  color: white;
}

.footerMenu-copy {
  font-size: 0.8rem;
  letter-spacing: normal;
  color: white;
}

/* ↓ PCとSP表示切り替え（末尾に設置） ------------------------*/
.pcArea {
  display: block;
}

.spArea {
  display: none;
}

@media screen and (max-width: 540px) {
  .pcArea {
    display: none;
  }

  .spArea {
    display: block;
  }
}
