@charset "UTF-8";

/* ======================
   全ページ共通
====================== */
html {
  scroll-behavior: smooth;
  font-size: clamp(14px, 1.4vw, 18px);
}
@media (max-width: 540px) {
  html {
    scroll-behavior: smooth;
    font-size: 3.3vw;
  }
}

.font_s {
  font-size: clamp(12px, 1.2vw, 15px);
}
@media (max-width: 540px) {
  .font_s {
    font-size: 3vw;
  }
}
body {
  color: #333;
  letter-spacing: 0.05rem;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.font_maru {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font_asap {
  font-family: "Asap", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.bold {
  font-weight: bold;
}

footer {
  margin-top: auto;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

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

.textlink:hover {
  color: #4eb6cf;
  transition: 0.3s ease;
}
@media (max-width: 540px) {
  .textlink:hover {
    color: #333;
  }
}

.sec_head {
  position: relative;
  margin-bottom: 3rem;
}
@media (max-width: 540px) {
  .sec_head {
    margin-bottom: 2.5rem;
  }
}
.sec_head img {
  position: absolute;
  width: 6rem;
  left: -3rem;
  top: -1rem;
  z-index: 0;
}
.sec_head .main {
  font-size: 4rem;
  z-index: 0;
  font-weight: 700;
  font-family: "Asap", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  z-index: 5;
  position: relative;
  line-height: 1.5;
}
@media (max-width: 540px) {
  .sec_head img {
    width: 6rem;
    left: -3rem;
    top: -2rem;
  }
  .sec_head .main {
    font-size: 3.5rem;
  }
}
.sec_head .sub {
  font-size: 1.1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

.back_yellow {
  background-color: #fff8dd;
}

/* ======================
   コンテンツ幅
====================== */
.pcWidth-xl {
  max-width: 1600px;
  width: 80%;
  margin: 0 auto;
}
.pcWidth-l {
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
}
.pcWidth-m {
  max-width: 960px;
  width: 80%;
  margin: 0 auto;
}
.pcWidth-s {
  max-width: 700px;
  width: 80%;
  margin: 0 auto;
}
.pcWidth-ss {
  max-width: 500px;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 540px) {
  .pcWidth-xl {
    width: 90%;
  }
  .pcWidth-l {
    width: 90%;
  }
  .pcWidth-m {
    width: 90%;
  }
  .pcWidth-s {
    width: 90%;
  }
  .pcWidth-ss {
    width: 90%;
  }
}

/* ======================
   セクション余白
====================== */
.secOuter-s {
  padding: 4rem 0 5rem;
}
.secOuter-m {
  padding: 5rem 0 6.5rem;
}
.secOuter-l {
  padding: 7rem 0 8rem;
}

@media (max-width: 540px) {
  .secOuter-s {
    padding: 3rem 0 4rem;
  }
  .secOuter-m {
    padding: 3rem 0 4.5rem;
  }
  .secOuter-l {
    padding: 3.5rem 0 4.5rem;
  }
}

/* ======================
   ヘッダー
====================== */
.globalmenu {
  height: 5rem;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  background-color: #fff8dd;
  z-index: 100;
}

.globalmenu-left {
  height: 100%;
}
@media (max-width: 540px) {
  .globalmenu-left {
    height: 90%;
  }
}

.globalmenu-left img {
  height: 100%;
  width: auto;
}

.globalmenu-right ul {
  display: flex;
  align-items: center;
}

.globalmenu-right li {
  margin-left: 2vw;
}
.globalmenu-right li:last-child {
  margin-left: 1vw;
}
.globalmenu-right .textlink a {
  transition: 0.3s ease;
}
.globalmenu-right .textlink a:hover {
  color: #2aa5c8;
  transition: 0.3s ease;
}

@media (max-width: 850px) {
  .globalmenu-right ul {
    display: none;
  }
}
.globalmenu-right .btn_header {
  background-color: #2aa5c8;
  color: #fff;
  border-radius: 3rem;
  transition: 0.3s ease;
}

.globalmenu-right .btn_header:hover {
  opacity: 0.7;
  transition: 0.3s ease;
}

.globalmenu-right .btn_header img {
  width: 1.75rem;
  margin-right: 0.25rem;
}
.btn_header a {
  background-color: #2aa5c8;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
}
/* ---------- ハンバーガー ---------- */
.hamburger {
  width: 48px;
  height: 48px;
  background: #4eb6cf;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  cursor: pointer;
  z-index: 200;
  right: 0.75rem;
  top: 0.75rem;
}
@media (min-width: 850px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  left: 50%;
  bottom: 50%;
  transform: translateX(-50%);
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* 中央基準で均等 */
.hamburger span:nth-child(1) {
  transform: translate(-50%, -8px);
}
.hamburger span:nth-child(2) {
  transform: translate(-50%, 0);
}
.hamburger span:nth-child(3) {
  transform: translate(-50%, 8px);
}

/* クリックで × */
.hamburger.active span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

/* ---------- SPメニュー ---------- */

/* 背景スライドパネル */
.drawer-bg {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #4eb6cf;
  transition: left 0.45s ease;
  z-index: 150;
}

.drawer-bg.active {
  left: 0;
}

/* 内部コンテンツ */
.drawer-inner {
  padding: 100px 30px 40px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.drawer-bg.active .drawer-inner {
  opacity: 1;
  transform: translateY(0px);
}

.drawer-menu {
  list-style: none;
  padding: 0;
}

.drawer-menu li {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2rem;
}
.drawer-menu li a {
  color: #fff;
}
.drawer-button {
  margin-bottom: 2rem;
}
@media (min-width: 541px) {
  .drawer-button {
    max-width: 300px;
  }
}
/* ボタン */
.btn {
  display: inline-block;
  width: auto;
  border-radius: 2rem;
  background: #32b5d9;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  transform: scale(1.03);
  transition: 0.3s ease;
}

.btn a {
  position: relative;
  padding: 1.2rem 0rem 1.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
}
@media (max-width: 540px) {
  .btn {
    border-radius: 3rem;
    width: 90%;
    margin: auto;
  }
  .btn a {
    padding: 1.6rem 0rem 1.6rem 2.5rem;
  }
}

.btn_white {
  background: #fff;
}
.btn.btn_white a {
  color: #32b5d9;
}
.btn a::after {
  position: absolute;
  right: 1.25rem;
  content: "";
  display: block;
  width: 2rem;
  height: 0.5rem;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='8' viewBox='0 0 30 8' fill='none'><path d='M-2.62267e-07 6.71094L27.0645 6.71093L21.0001 0.710938' stroke='white' stroke-width='2'/></svg>")
    no-repeat center / contain;
}
.btn.btn_white a::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='8' viewBox='0 0 30 8' fill='none'><path d='M-2.62267e-07 6.71094L27.0645 6.71093L21.0001 0.710938' stroke='%2332b5d9' stroke-width='2'/></svg>")
    no-repeat center / contain;
}
main {
  padding-top: 5rem;
  overflow-y: hidden;
}
/* ======================
   FV
====================== */
.fv {
  position: relative;
  padding: 3vw 0;
  background: #fff8dd;
}
.sec-test2 {
  background: #00b300;
}
/* --- エリア全体 --- */
.fv-slider-area {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* --- スライド：比率固定 16:9 --- */
.fv-slide {
  aspect-ratio: 16 / 9;
  width: 90vw;
  overflow: hidden;
  border-radius: 1.5rem;
  margin: 0 0vw;
}
@media (max-width: 540px) {
  .fv-slide {
    border-radius: 1rem;
  }
}
/* 画像のアスペクト比保持 */
.fv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* slick の中央拡大 */
.fv-slider .slick-slide {
  transition: transform 0.4s ease;
  transform: scale(0.9);
}
.fv-slider .slick-center {
  transform: scale(1);
}

/* --- 矢印ボタン（左右端に安定配置） --- */
.fv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5vw;

  height: 5vw;
  max-width: 60px;
  max-height: 60px;
  border-radius: 50%;
  background: #4eb6cf;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 50;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

/* 左右端に固定（消えない・ズレない） */
.fv-prev {
  left: 5.5vw; /* 必要に応じて調整可能 */
}
.fv-next {
  right: 5.5vw;
}
@media (min-width: 768px) {
  .fv-prev {
    left: 7.5vw; /* 必要に応じて調整可能 */
  }
  .fv-next {
    right: 7.5vw;
  }
}

@media (min-width: 1400px) {
  .fv-prev {
    left: 16vw; /* 必要に応じて調整可能 */
  }
  .fv-next {
    right: 16vw;
  }
}
/* SVG矢印 */
.fv-arrow .arrow-svg {
  display: block;
  width: 2.5vw;
  height: 8px;
  margin: 0 auto;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='8' viewBox='0 0 30 8' fill='none'><path d='M0 6.7L27.06 6.7L21 0.7' stroke='white' stroke-width='2'/></svg>")
    no-repeat center / contain;
}

.fv-prev .arrow-svg {
  transform: scaleX(-1);
}
@media (max-width: 540px) {
  .fv-arrow {
    display: none;
  }
}

.fv_topics {
  display: flex;
  align-items: center;
  margin: 3vw auto 5vw;
}

.fv_topics_head {
  font-weight: bold;
}
.fv_topics a {
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}

.fv_topics_info {
  padding: 0 1rem;
  border-left: 1px solid;
  margin-left: 1rem;
  width: 100%;
}

.fv_topics_info a {
  display: flex;
  align-items: center;
}
@media (max-width: 540px) {
  .fv_topics_info a {
    display: block;
    line-height: 1.5;
  }
}
.wave_b {
  position: absolute;
  bottom: 0;
  width: 100%;
}
/* ======================
   top_message
====================== */
.top_message {
  padding: 5rem 0 40rem;
  background-image: url(../img/top/back_about.jpg);
  background-position: bottom;
  background-size: cover;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.top_message .wave_b {
  z-index: 20;
}

@media (max-width: 540px) {
  .top_message {
    background-image: url(../img/top/back_about_sp.jpg);
    padding: 3rem 0 24rem;
  }
}
.top_message .back_white {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}
.top_message .back_object {
  position: absolute;
  top: 15vw;
  width: 100%;
  z-index: 5;
}

@media (min-width: 1500px) {
  .top_message .back_object {
    top: 2vw;
  }
}

@media (max-width: 1500px) {
  .top_message .back_object {
    top: 13rem;
  }
}
.top_message .sentence {
  line-height: 200%;
  position: relative;
  z-index: 10;
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 500;
  font-size: 1.1rem;
}

.top_message .sentence .strong {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 200%;
}

/* ======================
   top_about
====================== */

.top_about {
  padding: 4rem 0 9rem;
  position: relative;
}

.top_about .sec_flex {
  display: flex;
  align-items: center;
}
@media (max-width: 540px) {
  .top_about {
    padding: 3rem 0 6rem;
    position: relative;
  }
  .top_about .sec_flex {
    display: block;
  }
}
.top_about .sec_flex .left {
  width: 45%;
}
.top_about .sec_flex .right {
  width: 55%;
}
@media (max-width: 540px) {
  .top_about .sec_flex .left {
    width: 100%;
  }
  .top_about .sec_flex .right {
    width: 90%;
    margin: auto;
    margin-bottom: 2rem;
  }
}
.top_about .sentence {
  line-height: 200%;
  font-weight: 400;
  margin-bottom: 2rem;
}
.top_about .btn {
  width: 80%;
}

.top_about .arrow {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 2rem;
}
@media (max-width: 540px) {
  .top_about .arrow {
    right: 2rem;
    width: 1.3rem;
  }
}
/* ======================
   top_activity
====================== */
.top_activity {
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 540px) {
  .top_activity {
    padding: 3rem 0 0rem;
  }
}
.sec_activity_wrap {
  max-width: 1500px;
  margin: auto;
}
.sec_activity {
  display: flex;
  align-items: stretch;
  width: 90vw;
  max-width: 100%;
  margin-right: -1.5rem;
  margin-left: auto;
  margin-bottom: 8rem;
}

@media (max-width: 540px) {
  .sec_activity {
    flex-direction: column;
    margin-bottom: 6rem;
  }

  .sec_activity:last-child {
    margin-bottom: 5rem;
  }
}
.sec_activity.reverse {
  margin-left: -1.5rem;
  margin-right: auto;
  flex-direction: row-reverse;
}
@media (min-width: 1500px) {
  .sec_activity {
    margin-right: -5rem;
  }
  .sec_activity.reverse {
    margin-left: -5rem;
  }
}

@media (max-width: 540px) {
  .sec_activity.reverse {
    flex-direction: column;
  }
}

.sec_activity .left {
  width: 50%;
  background: #fff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 1.5rem 0 0 1.5rem;
}
.sec_activity.reverse .left {
  border-radius: 0 1.5rem 1.5rem 0;
}
@media (max-width: 540px) {
  .reverse {
    flex-direction: column;
  }
  .sec_activity .left {
    width: 100%;
    padding: 3.5rem 3rem;
    border-radius: 1.5rem 0 0 0;
    position: relative;
  }

  .sec_activity.reverse .left {
    border-radius: 0rem 1.5rem 0 0;
  }
  .sec_activity .left .number_sp {
    position: absolute;
    font-size: 7rem;
    top: -20vw;
    right: initial;
    right: 8vw;
    color: #4eb6cf;
  }
  .sec_activity.reverse .left .number_sp {
    position: absolute;
    font-size: 7rem;
    top: -20vw;
    right: initial;
    left: 8vw;
    color: #4eb6cf;
  }
}
.sec_activity .left .head {
  margin-bottom: 1.5rem;
}

.sec_activity .left .head .main {
  font-size: 1.4rem;
  font-weight: bold;
}
.sec_activity .left .head .sub {
  margin-bottom: 0.75rem;
  color: #848484;
}
.sec_activity .right {
  width: 50%;
  position: relative;
}
@media (max-width: 540px) {
  .sec_activity .right {
    width: 100%;
  }
}

.sec_activity.reverse .right .number {
  position: absolute;
  font-size: 8rem;
  top: -9rem;
  right: initial;
  left: 8vw;
  color: #4eb6cf;
}

.sec_activity .right .number {
  position: absolute;
  font-size: 8rem;
  top: -9rem;
  right: 8vw;
  color: #4eb6cf;
}

@media (min-width: 1660px) {
  .sec_activity.reverse .right .number {
    left: 100px;
  }

  .sec_activity .right .number {
    right: 100px;
  }
}

.sec_activity .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 1.5rem 1.5rem 0;
}

.sec_activity.reverse .right img {
  border-radius: 1.5rem 0 0 1.5rem;
}
@media (max-width: 540px) {
  .sec_activity .right img {
    border-radius: 0 0 0 1.5rem;
  }
  .sec_activity.reverse .right img {
    border-radius: 0 0 1.5rem 0;
  }
}
.sec_activity .left .sentence {
  font-size: 1rem;
  line-height: 200%;
}
.sec_activity .left .sentence2 {
  margin-bottom: 2rem;
}
.sec_activity .left .btn a {
  padding: 0.8rem 0rem 0.8rem 2.5rem;
}
@media (max-width: 540px) {
  .sec_activity .left .btn {
    width: 100%;
  }
  .sec_activity .left .btn a {
    padding: 0.8rem 5rem 0.8rem 2rem;
  }
}
.other_activity .head {
  font-size: 1.3rem;
  background-color: #fff;
  border: 2px solid #4eb6cf;
  border-radius: 2rem;
  text-align: center;
  padding: 0.75rem;
  font-weight: bold;
  color: #4eb6cf;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 540px) {
  .other_activity .head {
    width: 90%;
    margin: auto;
    margin-bottom: 3rem;
  }
}

.top_activity .back_objectwrap {
  position: relative;
}
.top_activity .back_objectwrap .back_object {
  position: absolute;
  z-index: 0;
  top: -4rem;
  width: 100%;
}

@media (max-width: 540px) {
  .top_activity .back_objectwrap .back_object {
    top: 2rem;
  }
}
.other_activity .sec_flex {
  display: flex;
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}

/* --- PCレイアウト --- */
.other_activity .sec_flex .item {
  padding: 2rem 1rem;
  background-color: #fff;
  width: 32%;
  border-radius: 0.75rem;
}

.other_activity .sec_flex .item:nth-child(3n-1) {
  margin: 0 2%;
}

.other_activity .sec_flex .item .read {
  color: #4eb6cf;
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 540px) {
  .other_activity .sec_flex .item .read {
    font-size: 1.1rem;
  }
}
.other_activity .sec_flex .item .icon {
  margin-bottom: 1rem;
}

/* ================================
   ▼ 540px 以下：横スクロール化
   ================================ */
@media (max-width: 540px) {
  .other_activitywarap_sp.pcWidth-l {
    width: 100%;
  }
  .other_activity .sec_flex {
    padding: 0 2rem;
    display: flex;
    flex-direction: row; /* 横並びのまま */
    overflow-x: auto; /* 横スクロール有効 */
    overflow-y: hidden;
    gap: 1.2rem; /* ボックス間の余白 */
    padding-bottom: 2rem; /* スクロールバーの余白 */
    position: relative;
    margin-bottom: 4rem;
  }
  @media (max-width: 540px) {
    .other_activity .sec_flex {
      scrollbar-width: none; /* Firefox */
      margin-bottom: 0rem;
    }
    .other_activity .sec_flex::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Edge */
    }
  }
  .other_activity .sec_flex .item {
    min-width: 75%; /* 見切れる幅（70〜80%がオススメ） */
    flex-shrink: 0;
    padding: 1.6rem;
  }

  /* 中央のアイテム margin をリセット */
  .other_activity .sec_flex .item:nth-child(3n-1) {
    margin: 0;
  }
}

/* ================================
   ▼ カスタムスクロールバー
   ================================ */
/* ▼ スクロールラッパー */
.scroll-wrapper {
  position: relative;
  margin-bottom: 3rem;
}

/* ▼ 自作スクロールバー（スマホのみ表示） */
@media (max-width: 540px) {
  .scrollbar-fake {
    width: 90%;
    margin: auto;
    height: 2px;
    background: #e5e5e5;
    border-radius: 2px;
    margin-top: 6px;
    position: relative;
  }
  .scrollbar-thumb {
    height: 2px;
    width: 60%; /* JSで可変 */
    background: #32b5d9;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
    transition: left 0.1s linear;
  }
}
/* 枠 */
.flow-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* 横並びコンテナ（2セット分） */
.flow-inner {
  display: inline-flex;
  animation: flow-left 20s linear infinite;
}

/* 1セット（画像2枚） */
.flow-items {
  display: inline-flex;
}

/* 画像 */
.flow-inner img {
  height: 80px;
  width: auto;
  user-select: none;
  -webkit-user-drag: none;
}

/* アニメーション（1セット分ちょうど左へ流す） */
@keyframes flow-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ======================
   top_report
====================== */
.top_report {
  padding: 4rem 0 8rem;
  position: relative;
}
@media (max-width: 540px) {
  .top_report {
    padding: 3rem 0 6rem;
    position: relative;
  }
}

.sec_report .btnwrap_right {
  width: 15rem;
  margin-right: 0;
  margin-left: auto;
  margin-top: -4rem;
  margin-bottom: 2rem;
}
.sec_report .btn_right {
  display: inline-block;
  width: 100%;
}
.sec_report .btn_right a {
  padding: 0.75rem 0rem 0.75rem 2.5rem;
}
.sec_report .head {
  background-color: #fff;
  border: 2px solid #4eb6cf;
  border-radius: 2rem;
  text-align: center;
  padding: 0.75rem;
  font-weight: bold;
  color: #4eb6cf;
  margin-bottom: 3rem;
}
.sec_report .sec_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* ←子要素の高さが揃う */
}
@media (max-width: 540px) {
  .sec_report .sec_flex {
    flex-direction: column;
  }
}
.sec_report .sec_flex .item {
  background-color: #fff;
  border-radius: 1rem;
  width: 30%;
  border-radius: 0.75rem;
  box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.11);
  transition: 0.3s ease;
}
@media (max-width: 540px) {
  .sec_report .sec_flex .item {
    width: 80%;
    margin: auto;
    margin-bottom: 2.5rem;
  }
}
.sec_report .sec_flex .item:hover {
  transform: scale(1.03);
  transition: 0.3s ease;
}
.sec_report .sec_flex .item:nth-child(3n-1) {
  margin: auto 5%;
}
@media (max-width: 540px) {
  .sec_report .sec_flex .item:nth-child(3n-1) {
    margin: initial;
    margin: auto;
    margin-bottom: 2.5rem;
  }

  .sec_report .btnwrap {
    margin: auto;
    text-align: center;
  }
  .sec_report .btn {
    width: 80%;
    margin: auto;
  }
}
.sec_report .sec_flex .item .image {
  height: 11rem;
  width: 100%;
}
@media (max-width: 540px) {
  .sec_report .sec_flex .item .image {
    height: 14rem;
  }
}
.sec_report .sec_flex .item .image img {
  border-radius: 0.75rem 0.75rem 0 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.sec_report .sec_flex .item .disc {
  padding: 1.5rem;
  font-size: 1rem;
  letter-spacing: 0;
  height: 10.5rem;
}

.sec_report .sec_flex .item .disc .day {
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}
.sec_report .sec_flex .item .disc p {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* ←3行で丸める */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* ======================
   top_online
====================== */
.top_online {
  padding: 4rem 0 4rem;
  position: relative;
}
@media (max-width: 540px) {
  .top_online {
    padding: 3rem 0 3rem;
    position: relative;
  }
}
.top_online .back_object {
  position: absolute;
  top: 0vw;
  width: 100%;
  z-index: 5;
}

.top_online .disc_flex {
  display: flex;
  position: relative;
  z-index: 10;
}
@media (max-width: 540px) {
  .top_online .back_object {
    position: absolute;
    top: 40vw;
    width: 100%;
    z-index: 5;
  }
  .top_online .disc_flex {
    flex-direction: column;
  }
}
.top_online .disc_flex .sec_head {
  flex: 0 0 auto;
} /* 固定幅・縮まない */
.top_online .disc_flex .disc {
  flex: 1 1 auto;
  padding-left: 3rem;
} /* 右だけ可変・残り幅いっぱい */
@media (max-width: 540px) {
  .top_online .disc_flex .disc {
    padding-left: initial;
    margin-bottom: 3rem;
  }
}
.top_online .banner {
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.11);
  border-radius: 1.5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 4rem;
}
@media (max-width: 540px) {
  .top_online .banner {
    margin-bottom: 3rem;
  }
}
.top_online .banner img {
  border-radius: 1.5rem;
}

.top_online .btnwrap {
  text-align: center;
}

.top_online .btn {
  width: 20rem;
}

.top_recruit {
  background-color: #fff8dd;
  position: relative;
}
.top_recruit .head {
  position: absolute;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -130%);
  color: #fff;
  text-align: center;
}
.top_recruit .head .sub {
  font-size: 1.6vw;
}
.top_recruit .head .main {
  font-size: 3vw;
}
@media (max-width: 540px) {
  .top_recruit .head {
    background-color: #4eb6cf;
    position: relative;
    left: initial;
    transform: initial;
    padding-bottom: 2rem;
  }
  .top_recruit .head .sub {
    font-size: 1.1rem;
  }
  .top_recruit .head .main {
    font-size: 2rem;
  }
}
.recruit_info {
  background-color: #4eb6cf;
  color: #fff;
  padding-top: 1rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 20;
}
.recruit_info .disc {
  margin-bottom: 2rem;
  position: relative;
  z-index: 20;
}
.recruit_info .btnwrap {
  text-align: center;
}
.top_footerdog {
  position: absolute;
  right: 9vw;
  width: 18vw;
  bottom: -0.5vw;
  z-index: 5;
}
.ashiato {
  position: absolute;
  left: 1.5vw;
  width: 18vw;
  top: -7vw;
  z-index: 5;
}
.recruit_info .btnwrap {
  width: 60%;
  margin: auto;
}

.recruit_info .btnwrap .btn {
  display: block;
}
@media (max-width: 540px) {
  .recruit_info .btnwrap {
    width: 60%;
    margin: auto;
  }

  .recruit_info .btnwrap .btn a {
    padding: 1.6rem 0rem 1.6rem 2.5rem;
  }

  .top_footerdog {
    right: 5vw;
    bottom: -1vw;
    width: 26vw;
  }
  .ashiato {
    position: absolute;
    left: -4rem;
    width: 9rem;
    top: -14rem;
    z-index: 5;
  }
}
/* ======================
   フッター
====================== */
footer {
  background: #4d4d4d;
}
.footer-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #4d4d4d;
  color: #fff;
  padding: 8rem 1rem 1rem;
}
@media (max-width: 540px) {
  .footer-menu {
    flex-direction: column-reverse;
    justify-content: initial;
    align-items: initial;
    padding: 2rem 1rem;
  }
}

.footer-menu_left {
  display: flex;
  margin-left: 1.75rem;
}
@media (max-width: 540px) {
  .footer-menu_left {
    flex-direction: column;
    margin-left: initial;
    justify-content: initial;
  }
}
.footerMenu-logo img {
  width: 8rem;
  margin: 0 auto;
}

.footerMenu-menus a {
  color: #fff;
  margin-left: 1.75rem;
}
@media (max-width: 540px) {
  .footerMenu-menus a {
    color: #fff;
    margin-left: initial;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
}
.footerMenu-copy {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ======================
   PC/SP 切り替え
====================== */
.pcArea {
  display: block;
}
.spArea {
  display: none;
}

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