@charset "utf-8";
:root {
  --main-font: 'M PLUS 1P', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Yu Gothic', sans-serif;
}

/* ボディ全体 */
body {
  font-family: var(--main-font);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
}

/* リンク */
a {
  font-family: var(--main-font);
  color: #0078d4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ボタンや強調テキスト */
button, strong {
  font-family: var(--main-font);
  font-weight: 700;
}

img {
    width: 100%;
}

a img {
    width: 100%;
    transition: opacity 0.3s ease;
}

a:hover img {
    opacity: 0.8;
}

body.no-smooth-scroll,
body.no-smooth-scroll html {
  scroll-behavior: auto !important;
}

/* PC表示 */
.v2__sp { display: none !important; }
.v2__nav__toggle { display: none !important; }

/* SP表示 */
@media screen and (max-width: 768px) {
  .v2__pc { display: none !important; }
  .v2__sp { display: block !important; }
  .v2__nav__toggle { display: block !important; }
}



/* ========================================
  ナビゲーション
======================================== */
/* ナビ全体 */
/* ナビ全体 */
.v2__nav {
  background: #1478e2;
  width: 100%;
  position: relative;
  z-index: 1000;
}

.v2__nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  position: relative;
}

/* リスト代替 */
.v2__nav__list {
  margin: 0;
  padding: 0;
}

/* ナビアイテム */
.v2__nav__item {
  position: relative;
  display: block;
}

.v2__nav__item a,
.v2__nav__item button {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}

.v2__nav__link_img {
  max-height: 20px;
  width: auto;
}

/* PCナビ */
.v2__pc .v2__nav__list {
  display: flex;
  justify-content: center;
  gap: 58px;
  padding: 0.8rem 0;
}

/* サブメニュー */
.v2__pc .v2__nav__item.has-submenu:hover > .v2__nav__submenu {
  opacity: 1;
  visibility: visible;
  max-height: 500px;
}

.v2__pc .v2__nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1478e2;
  min-width: 200px;
  padding: 0.5rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.v2__pc .v2__nav__submenu > div > a {
  padding: 0.5rem 1rem;
  display: block;
}

.v2__pc .v2__nav__submenu > div > a:hover {
  background: #0f62b2;
}

/* SPナビ */
.v2__sp .v2__nav__toggle {
  display: block;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 0.2rem;
  right: 1rem;
  background: transparent;
  border: none;
  padding: 0;
}

.v2__sp .v2__nav__list {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-top: 2.5rem;
  background: #1478e2;
}

.v2__sp .v2__nav__list.open {
  max-height: 2000px;
}

.v2__sp .v2__nav__item {
  width: 100%;
  padding: 0;
  text-align: center;
  margin: 1.5em 0;
}

.v2__sp .v2__nav__item .v2__nav__link {
  padding: 1rem;
  display: inline-block;
  margin: 0 auto;
}

.v2__sp .v2__nav__item .v2__nav__submenu {
  position: relative;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin: 0 0 1rem;
  line-height: 2em;
}

.v2__sp .v2__nav__item .v2__nav__submenu.open {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}


/* ========================================
  下部バナーエリア
======================================== */
/* バナー全体 */
.v2__c-banner {
  background-color: #f4f8f9;
  min-height: 100px;
  padding: 0;
}

/* 内側コンテナ */
.v2__c-banner__inner {
  max-width: 1295px;
  min-height: 100px;
  margin: 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* リスト：横並び + 下揃え */
.v2__c-banner__list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: flex-end; /* 下揃え */
  position: relative;
  padding: 0.5rem 0 2rem;
}

/* 各バナーアイテム */
.v2__c-banner__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* 全て下揃え */
  align-items: center;
  min-height: 80px; /* 高さ最低ライン */
}

/* 最初のアイテムだけテキスト上、画像下 */
.v2__c-banner__item:first-child {
  /* flex-direction は column のまま */
  /* justify-content: flex-start; は削除して下揃えに統一 */
}

/* 最初のアイテムのテキスト */
.v2__c-banner__item:first-child p {
  margin: 0 0 0.5rem;
  text-align: center;
  font-size: 0.7rem;
  line-height: 1.2;
}

/* 画像の高さ固定、幅は自動 */
.v2__c-banner__img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .v2__c-banner__inner {
    background-size: calc(100% - 20px) auto;
    background-position: bottom 20px center;
  }

  .v2__c-banner__list {
    padding: 20px 20px 60px;
  }

  .v2__c-banner__item {
    height: auto;
  }

  .v2__c-banner__item:first-child {
    flex: 0 0 100%;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .v2__c-banner__item:first-child p {
    margin: 0 0 0.5rem;
    font-size: 0.7rem; /* 重複を1つに統一 */
    line-height: 1.4;
    text-align: center;
  }

  .v2__c-banner__img {
    height: 80px;
    width: auto;
  }
}

/* ========================================
  社会貢献活動トップ
======================================== */
.v2__main-wrapper {
  padding: 0;
  width: 100%;
    position: relative;
    z-index: 0;
}
.v2__main-wrapper img {
  max-width: 100%;
  height: auto;
}

.v2__sc_mv {
  max-width: 1920px;
  margin: 0 auto;
}
.v2__sc_mv img {
  width: 100% !important; 
  height: auto; 
  display: block;
}
.v2__title-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  font-size: 2.5em;
  color: #1478e2;
  font-weight: 700;
  margin: 0;
}

.v2__title-with-icon .v2__title-icon {
  width: 1em;
  height: 1em;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.v2__title-with-icon .v2__title-text {
  line-height: 1;
}

@media screen and (max-width: 768px) {
    .v2__title-with-icon {
        font-size: 1.8em;
    }
}

.v2__bracket-box {
  text-align: left;
  position: relative;
  display: inline-block;
  font-size: 1.4em;
  font-weight: 700;
  padding:1.2em 3em;
  line-height: 2em;
}
.v2__bracket-box span{
    color: #1478e2;
}

/* 左上の「 線 */
.v2__bracket-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7.32%;
aspect-ratio: 1 / 1;
  border-top: 6mm solid rgba(20, 120, 226, 0.3);
  border-left: 6mm solid rgba(20, 120, 226, 0.3);
}

/* 右下の 」線 */
.v2__bracket-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 7.32%;
aspect-ratio: 1 / 1;
  border-bottom: 6mm solid rgba(20, 120, 226, 0.3);
  border-right: 6mm solid rgba(20, 120, 226, 0.3);
}
@media screen and (max-width: 768px) {
  .v2__bracket-box {
    font-size: 1.1em;       /* 文字サイズを少し小さく */
    padding: 0.8em 1.5em;  /* 括弧と文字の余白を調整 */
    line-height: 1.8em;
  }

  .v2__bracket-box::before,
  .v2__bracket-box::after {
    width: 50px;            /* 括弧のサイズを小さく */
    height: 50px;
    border-width: 4mm;      /* 線の太さも調整 */
  }
}

.v2__title_bottom-img{
    max-width: 1100px;
    margin: 1rem auto 8rem;
}
@media screen and (max-width: 768px) {
    .v2__title_bottom-img{
    margin: 1rem auto 5rem;
}
}

.v2__card-box {
    margin-top: 5em;
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
.v2__card-illustration{
    width: 35%;
}

.row-reverse{
    flex-direction: row-reverse;
}

.v2__sc_card-1,
.v2__sc_card-2,
.v2__sc_card-3{
  position: relative;
  max-width: 100%;
  height: auto;
}
.v2__sc_card-1{
    background: #eaf7fc;
    border: 2px solid #2fb1e1;
    box-shadow: 10px 15px 0 #2fb1e1;
}
.v2__sc_card-2{
    background: #fdf5f8;
    border: 2px solid #ed848c;
    box-shadow: 10px 15px 0 #ed848c;
    margin-top: 3em;
}
.v2__sc_card-3{
    background: #f5f9ec;
    border: 2px solid #a0c346;
    box-shadow: 10px 15px 0 #a0c346;
    margin-top: 3em;
}

.v2__sc_card-1::after,
.v2__sc_card-2::after,
.v2__sc_card-3::after{
  content: "";
  position: absolute;
  top: -2px;
  left: 37px;
  width: 45px;
  height: 3px;
}
.v2__sc_card-1::after{background: #eaf7fc;}
.v2__sc_card-2::after{background: #fdf5f8;}
.v2__sc_card-3::after{background: #f5f9ec;}

.v2__sc_card-1__img {
  position: absolute;
  top: -80px;
  left: 0;
  width: 115px;
  height: auto;
  object-fit: cover;
  z-index: 10;
}

.v2__sc_card-content {
  padding: 50px 60px;
  display: flex;           /* 子要素をフレックスに */
  flex-direction: column;  /* 縦方向に並べる */
  align-items: flex-start; /* タイトルやテキストは左揃え */
  gap: 20px;
}

.v2__sc_card-title-1,
.v2__sc_card-title-2,
.v2__sc_card-title-3{
  position: relative;
  font-size: 1.8em;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
   width: 100%;
}
.v2__sc_card-title-1 {color: #2fb1e1;}
.v2__sc_card-title-2 {color: #ed848c;}
.v2__sc_card-title-3 {color: #a0c346;}

.v2__sc_card-title-1 .v2__sc_dotted-line-1 {
  flex: 1;
  height: 2px;
  border-bottom: 2px dotted #2fb1e1;
  margin-left: 20px;
  opacity: 0.7;
}
.v2__sc_card-title-2 .v2__sc_dotted-line-2 {
  flex: 1;
  height: 2px;
  border-bottom: 2px dotted #ed848c;
  margin-left: 20px;
  opacity: 0.7;
}
.v2__sc_card-title-3 .v2__sc_dotted-line-3 {
  flex: 1;
  height: 2px;
  border-bottom: 2px dotted #a0c346;
  margin-left: 20px;
  opacity: 0.7;
}

.v2__sc_card-text {
  font-size: 1.125rem;
  color: #000;
  line-height:1.8;
  text-align: left;
}

.v2__sc_card-banner{
    width: 200px;
}

.v2__sc_card-button-area{
    width: 100%;
    margin-top: -1em;
    display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}

.v2__sc_card-button {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  background-color: #1478e2;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  padding: 10px 100px;
  border-radius: 40px;
  box-shadow: 4px 6px 0 rgba(0, 0, 0, 0.5);
  transition: 0.2s;
  border: 3px solid #FFF;
}

.v2__sc_card-button:hover {
  transform: translateY(-2px);
  box-shadow: 6px 8px 0 rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.v2__sc_card-button img {
  width: 18px;
  height: auto;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .v2__card-illustration{
    width: 45%;
}
  .v2__sc_card-1__img {
  top: -60px;
  left: 15px;
  width: 85px;
}
  .v2__sc_card-2,
  .v2__sc_card-3{
    margin-top: 0.5em;
}
  .v2__card-box {
    flex-direction: column;
    gap: 20px;
  }
  .v2__card-illustration {
    width: 100%;
    margin-bottom: 20px;
  }
  .row-reverse {
    flex-direction: column;
  }
  .v2__sc_card-content {
    padding: 20px 15px;
    gap: 15px;
  }
  .v2__sc_card-title-1,
  .v2__sc_card-title-2,
  .v2__sc_card-title-3 {
    font-size: 1.4em;
      margin-top: .5em;
  }
  .v2__sc_card-title-1 .v2__sc_dotted-line-1,
  .v2__sc_card-title-2 .v2__sc_dotted-line-2,
  .v2__sc_card-title-3 .v2__sc_dotted-line-3 {
    margin-left: 10px;
  }
  .v2__sc_card-text {
    font-size: 16px;
    line-height: 1.6;
  }
  .v2__sc_card-banner {
      margin: 0 auto;
    width: 100%;
    max-width: 180px;
  }
  .v2__sc_card-button-area {
    flex-direction: column;
    align-items: stretch;
    justify-content: center!important;
    margin-top:0;
    gap: 10px;
  }
  .v2__sc_card-button {
    width: 90%;
    margin-right: 1em;
    padding: 12px 0;
    font-size: 16px;
    justify-content: center;
    box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.5);
  }
  .v2__sc_card-button:hover {
    transform: translateY(-1px);
    box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.8);
  }
  .v2__sc_card-button img {
    width: 16px;
    margin-left: 5px;
  }
}



.v2__sc_news_area{
    background: #f4f8f9;
    width: 100%;
    padding:2rem 0;
    margin: 0 0 5rem;
}
.v2__sc_news_area h2 {
    margin: 0 auto;
  width:320px;
  height: auto;
  font-size: 2.5em;
  color: #1478e2;
  background-image: url('/company/social_contributions/common/img/v2__sc_news_title_bg.png');
  background-size: contain;
background-repeat: no-repeat;
background-position: center;
  padding: 20px;
}
@media screen and (max-width: 767px) {
    .v2__sc_news_area h2 {
        width:200px;
        font-size: 1.5em;
    }
}

.v2__news_carousel_area {
  max-width: 960px;
  margin: 0 auto 3rem;
  padding: 20px;
  box-sizing: border-box;

  /* レスポンシブ対応 */
  width: 100%;
}

#v2__news-content {
  max-height: 300px;
  border: 3px solid #1478e2;
  padding: 0 0 20px 40px;
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    #v2__news-content {
        max-height: 450px;
        padding: 1em;
    }
}
.v2__news_carousel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.v2__year-display{
    font-size: 1.5em;
    font-weight: bold;
    color: #1478e2!important;
}

/* ボタン共通 */
.v2__news_carousel .nav {
  width: 2.6mm;
  height: 2.6mm;
  background-color: #1478e2;
  border: none;
  border-radius: 10%;
  position: relative;
  cursor: pointer;

  /* クリックしやすくするため見た目より余白を広く */
  padding: 8px;
  box-sizing: content-box;
}

/* 矢印線を擬似要素で描く */
.v2__news_carousel .nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  background-color: transparent;
  transform: translate(-50%, -50%) rotate(45deg);
  box-sizing: border-box;
}

/* prev: 上辺と左辺のみ */
#prev::before {
  border-top: none;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  border-right: none;
    transform: translate(calc(-50% + 3px), -50%) rotate(45deg);
}

/* next: 右辺と下辺のみ */
#next::before {
  border-bottom: none;
  border-right: 4px solid #fff;
  border-top: 4px solid #fff;
  border-left: none;
    transform: translate(calc(-50% - 3px), -50%) rotate(45deg);
}

.v2__sc_report_area{
    width: 100%;
    padding:2rem 0;
    margin: 0 0 5rem;
}
.v2__sc_report_area h2 {
margin: 0 auto 1rem;
  width:600px;
  height: auto;
  font-size: 2.5em;
  color: #1478e2;
  background-image: url('/company/social_contributions/common/img/v2__sc_report_title_bg.png');
  background-size: contain;
background-repeat: no-repeat;
background-position: center;
  padding: 20px 0 20px 30px;
}
@media screen and (max-width: 767px) {
    .v2__sc_report_area h2 {
        width:350px;
        font-size: 1.5em;
        padding: 20px 0 20px 20px;
    }
}

.v2__sc_report_area {
  max-width: 960px;
  margin: 0 auto 3rem;
  padding: 20px;
  box-sizing: border-box;

  /* レスポンシブ対応 */
  width: 100%;
}
#v2__sc_report_content{
    max-height: 320px;
  border: 3px solid #1478e2;
  padding: 0 20px 20px 40px;
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    #v2__sc_report_content{
        padding: 1rem;
    }
}
.v2__sc_report_chach{
    font-size: 1.75em;
    font-weight: bold;
    color: #1478e2;
    line-height: 1.8;
}
.v2__sc_report_txt{
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
    .v2__sc_report_chach{
    font-size: 1.2em;
    line-height: 1.2;
    margin-bottom: .5rem;
}
    .v2__sc_report_txt{
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
}

.v2__sc_report_content_area{
    text-align: left;
}


.v2__sc_report_content_area .report-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}

.v2__sc_report_content_area .thumb {
  width: 120px;
  height: 80px;
  flex-shrink: 0; /* 画像サイズを固定 */
  overflow: hidden;
  border-radius: 4px; /* 任意で角丸 */
}

.v2__sc_report_content_area .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 自動トリミングして中央表示 */
  display: block;
}

.v2__sc_report_content_area .report-text {
  flex: 1; /* 右側テキストが余白を広く使う */
}

.v2__sc_report_content_area .report-date {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 4px;
}

.v2__sc_report_content_area .report-link {
  display: inline-block;
  font-size: 1em;
  color: #1478e2;
  text-decoration: none;
}

.v2__sc_report_content_area .report-link:hover {
  text-decoration: underline;
}

/* 項目間の仕切り線 */
.v2__sc_report_content_area hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 4px 0;
}

.v2__sc_report_content_area .icon01{
    width: 150px;
    text-align: center;
    padding: 0.1em;
	left: 135px;
	font-size: .8em;
	font-weight: 700;
}
.v2__sc_report_content_area .icon01.type01 {
	color: #fff;
    background: #df6110;
}

.v2__sc_report_content_area .icon01.type02 {
	color: #fff;
    background:#46B6DF;
}

.v2__sc_report_content_area .icon01.type03 {
	color: #fff;
    background:#69b147;
}

.v2__sc_report_content_area .icon01.type04 {
	color: #fff;
    background:#007130;
}

@media screen and (max-width: 768px) {
  .v2__sc_report_area {
    min-height: 400px; /* 外側枠 */
  }

  .v2__sc_report_content_area {
    min-height: 100%;  /* 外側枠に合わせる */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 上から順に表示 */
  }

  #v2__sc_report_content {
    min-height: 350px; /* 読み込み部分の高さ確保 */
  }
}


/* ========================================
  次世代教育支援
======================================== */

.v2__edu-wrap {
  padding: 0 0 80px;
  width: 100%;
  background-image: url("/company/social_contributions/educational/img/v2__edu_bg.jpg");
  background-size: 100% auto; 
  background-repeat: repeat-y;
  background-position: top center;
  position: relative;
  z-index: 0;
}

.v2__edu_mv {
  max-width: 1920px;
  margin: 0 auto;
}
.v2__edu_mv img {
  width: 100% !important; 
  height: auto; 
  display: block;
}

/* 各バナーアイテム */
.v2__edu_link_bnr-area {
  max-width: 1920px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0 1.5rem;
  margin: 0 auto 5em;
  justify-content: flex-start;
  box-sizing: border-box;
}

/* 各バナーアイテム */
.v2__edu_link_bnr_contents {
  flex: 0 0 calc((100% - 16px * 4) / 5); /* 5列、gapを考慮 */
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.v2__edu_link_bnr_contents img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SP（スマホ）用 */
@media screen and (max-width: 768px) {
  .v2__edu_link_bnr-area {
    margin: 1rem auto;
  }

  .v2__edu_link_bnr_contents {
    flex: 0 0 calc((100% - 16px) / 2); /* 2列、gap考慮 */
    height: auto;
  }

  .v2__edu_link_bnr_contents img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.v2__icon_text_container {
  position: relative;
  max-width: 1100px;
  width: 100%;
  height: auto;
  padding: 5em 3em 3em;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #a0c346;
  box-shadow: 10px 15px 0 #a0c346;
}
.v2__icon_text_container_kazari{
  position: absolute;
  top: -3em;
  left: -3em;
  width: 500px;
  height: auto;
  object-fit: cover;
  z-index: 10;
}
.v2__icon_text_container-flex{
    display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  gap: 20px;
}

.v2__icon_text_container-flex img {
  width: 88px;
  height: 137px;
  object-fit: contain;      /* 縦横比維持 */
  display: block;
}

/* テキスト */
.v2__icon_text_container-flex .text {
  font-size: 1.875rem;      /* 30px相当 */
  line-height: 1.2;
  display: flex;
  align-items: center;      /* アイコンと縦方向中央揃え */
}
/* SP（スマホ）用 */
@media screen and (max-width: 768px) {
    .v2__icon_text_container {
  width: 90%;
  padding: 2em 0 0;
  margin-top: 3em;
}
    .v2__icon_text_container_kazari{
  position: absolute;
  top: -1em;
  left: -1em;
  width: 300px;
  height: auto;
  object-fit: cover;
  z-index: 10;
}
  .v2__icon_text_container-flex {
    flex-direction: column;      /* 縦並び */
    justify-content: center;     /* 縦方向中央 */
    align-items: center;         /* 横方向中央 */
    height: auto;                /* 高さ自動調整 */
    padding: 1em;               /* 上下余白を確保 */
  }

  .v2__icon_text_container-flex img {
    width: 50px;                 /* アイコンを縮小 */
    height: auto;                /* 高さは自動調整 */
    margin-top: .2rem;         /* テキストとの間隔 */
  }

  .v2__icon_text_container-flex .text {
      padding: 0 1rem;
    font-size: 1.1em;          /* 20px相当 */
    line-height: 1.3;
  }
}

.v2__edu_maincopy{
    margin: 5rem 0;
    font-size: 1rem;
    line-height: 2rem;
}
.v2__edu_maincopy h2{
    font-size: 2rem;
    color: #0078d4;
    margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .v2__edu_maincopy{
    padding: 1em;
    margin: 2rem 0;
  }
  .v2__edu_maincopy p{font-size: 0.9em;}
    
    .v2__edu_maincopy h2{
    font-size: 1.65rem;
}
}

.v2__edu_mainbtn-area{
    max-width: 1160px;
  margin: 0 auto;
}

.v2__edu_mainbtn-area {
  display: flex;
  justify-content: center; /* 横方向中央揃え */
  align-items: center;     /* 縦方向中央揃え */
  gap: 20px;               /* ボタン間の隙間 */
  flex-wrap: wrap;         /* 画面幅が狭い場合は折り返し */
  padding: 20px 0;         /* 上下余白 */
}

/* 各ボタンコンテンツ */
.v2__edu_mainbtn-contents {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ボタン画像 */
.v2__edu_mainbtn-contents img {
  max-width: 313px; /* 最大横幅 */
  width: 100%;      /* 横幅は親に合わせて縮小 */
  height: auto;     /* 高さ自動 */
  display: block;
}
@media screen and (max-width: 768px) {
    .v2__edu_mainbtn-area {
        -webkit-flex-direction: column;
	flex-direction: column;
        gap: 10px;
    }
    .v2__edu_mainbtn-contents img {
        max-width:200px;
    }
}

.v2__edu_explanation-area {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3rem;
  background-image: url("/company/social_contributions/educational/img/v2__edu_explanation_bg.png");
  background-size: cover;
  background-position: center;
}

.v2__edu_explanation-contents {
  background-color: #fff;
  border-radius: 3%;
  padding: 3rem;
}

.v2__edu_explanation-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.v2__edu_title-icon {
  height: 100px;
  width: auto;
}

.v2__edu_title-text {
  font-size: 5.3em; /* 約85px想定（16px基準時） */
  font-weight: bold;
  color: #1478e2;
}

.v2__edu_explanation-contents p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #333;
    text-align: left;
}

.v2__edu_explanation_img_area {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.v2__edu_explanation_img {
  text-align: center;
  width: 220px;
}

.v2__edu_explanation_img img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.v2__edu_explanation_img p {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}
/* ===== h3 見出し ===== */
.v2__edu_explanation-contents h3 {
  font-size: 2.5em; /* 約40pt（16px基準時 約64px） */
  font-weight: bold;
  color: #1478e2;
  border-bottom: 1px solid #1478e2;
  padding-bottom: 0.5em;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ===== 画像エリア ===== */
.v2__edu_explanation_img_area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

/* ===== 各画像＋テキスト ===== */
.v2__edu_explanation_img {
  width: 200px;
  height: auto;
  text-align: center;
}

.v2__edu_explanation_img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem;
}

.v2__edu_explanation_img p {
  margin-top: 1.25em; /* 約20pt相当 */
  font-size: 1.25em;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
    text-align: center;
}

/* =========================
   スマートフォン版（768px以下）
========================= */
@media screen and (max-width: 768px) {

  .v2__edu_explanation-area {
    padding: 1.5rem 1rem;
    background-size: cover;
    background-position: center;
  }

  .v2__edu_explanation-contents {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .v2__edu_explanation-ttl {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .v2__edu_title-icon {
    height: 60px;
    width: auto;
  }

  .v2__edu_title-text {
    font-size: 2.2em; /* 約35px想定 */
  }

  .v2__edu_explanation-contents p {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
  }

  .v2__edu_explanation-contents h3 {
    font-size: 1.5em; /* 約24px */
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.4em;
  }

  /* ===== 画像リストエリア ===== */
  .v2__edu_explanation_img_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem; /* 各アイテムの間隔 */
    margin-top: 1.5rem;
      align-items: flex-start;
  }

  .v2__edu_explanation_img {
    width: calc(50% - 1rem); /* 2列に並べる（隙間分調整） */
    text-align: center;
  }

  .v2__edu_explanation_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
  }

  .v2__edu_explanation_img p {
    font-size: 0.95rem;
    margin-top: 0.5em;
    color: #1478e2;
    font-weight: bold;
      text-align: center;
  }
}


.v2__tab-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
}
@media (max-width: 768px) {
   .v2__tab-section {
  padding: 0.5rem;;
} 
}

.v2__tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}

.tab-btn {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn img {
  width: 240px;
  height: auto;
  display: block;
}

/* タブコンテンツ */
.tab-content {
  display: none;
  padding: 2rem;
  border-radius: 1rem;
  animation: fadeIn 0.3s ease;
}
@media (max-width: 768px) {
    .tab-content {
  padding: 0.8rem;
}
}

.tab-content.active {
  display: block;
}

/* タブごとの背景色 */
#tab1 { background-color: #f15a24; }
#tab2 { background-color: #d4145a; }
#tab3 { background-color: #0071bc; }
#tab4 { background-color: #39b54a; }
#tab5 { background-color: #662d91; }

/* 内部白ボックス */
.v2__edu_tab-item {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.8rem;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
    .v2__edu_tab-item {
        padding: 1rem 1rem 0;
    }
}

/* テキスト＋画像横並び */
.v2__edu_tab-inner {
  display: flex !important;        /* 確実にflexに */
  flex-direction: row !important;  /* 横並び固定 */
  align-items: center;         /* 上揃え */
  justify-content: space-between;  /* テキストと画像を左右に */
  gap: 2rem;
  flex-wrap: nowrap;               /* 横並び固定 */
  width: 100%;                     /* 親幅いっぱい */
}

.v2__edu_tab-text {
  flex: 1 1 60%;
  text-align: left;
  font-size: 1.1em;
    min-width: 0;
}
.v2__edu_tab-text-L{font-size: 1.3em;font-weight: bold}

.v2__edu_tab-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: flex-end;
}

.v2__edu_tab-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

@media screen and (max-width: 768px) {

  .v2__edu_tab-inner {
    flex-direction: column !important; /* 縦並びに変更 */
    align-items: center;               /* 中央揃え */
    justify-content: center;
    gap: 1.5rem;                       /* 要素間の余白を少し詰める */
  }

  .v2__edu_tab-text {
    flex: 1 1 auto;
    text-align: left;
    font-size: 1rem;
    width: 100%;
    order: 1; /* テキストを上に */
  }

  .v2__edu_tab-text-L {
    font-size: 1.2em;
    font-weight: bold;
  }

  .v2__edu_tab-image {
    flex: 1 1 auto;
    width: 100%;
    justify-content: center;
    order: 2; /* 画像を下に */
  }

  .v2__edu_tab-image img {
    width: 100%;
    max-width: 360px; /* 適度に制限 */
    height: auto;
    border-radius: 0.5rem;
  }
}


/* タイトルライン */
.v2__edu_title-line-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 2rem 0 0;
}

.v2__edu_line {
  flex: 1;
  height: 3px;
  background-color: #1478e2;
  position: relative;
}

.v2__edu_line .v2__edu_dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1478e2;
  top: 50%;
  transform: translateY(-50%);
}

.v2__edu_left-line .v2__edu_dot { left: 0; }
.v2__edu_right-line .v2__edu_dot { right: 0; }

.v2__edu_title-line {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1478e2;
}

.v2__edu_title-line > span { white-space: nowrap; }

/* SP対応 */
@media (max-width: 768px) {
  .v2__edu_tab-inner {
    flex-direction: column;
  }
  .v2__edu_tab-image {
    justify-content: center;
    margin-top: 1rem;
  }
  .v2__edu_title-line-wrapper { gap: 8px; margin: 0rem 0; }
  .v2__edu_line { height: 2px; }
  .v2__edu_line .v2__edu_dot { width: 8px; height: 8px; }
  .v2__edu_title-line { font-size: 1.5rem; }
}

.v2__edu_contents_bnr_area {
  display: flex;               /* 横並び */
  gap: 1rem;                   /* バナー間の隙間 */
  justify-content: center;      /* 中央揃え */
  flex-wrap: wrap;             /* SPで折り返し */
  padding: 1rem 0;
  list-style: none;            /* liのデフォルトスタイルを消す */
  margin: 0;
}
@media (max-width: 768px) {
    .v2__edu_contents_bnr_area {
        margin-top: -30px;
        gap: .5rem;
  -webkit-flex-direction: column;
	flex-direction: column;
        margin: 0 auto;
}
}

.v2__edu_contents_bnr_item {
  flex: 1 1 200px;             /* 横幅最低200px、伸縮可 */
  max-width: 400px;            /* 横幅最大300px */
  text-align: center;          /* 中央揃え */
}

.v2__edu_contents_bnr_item a {
  display: block;
}

.v2__edu_contents_bnr_item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;       /* 任意で角丸 */
}

.v2__edu_contents_bnr_item2 {
  flex: 1 1 200px;             /* 横幅最低200px、伸縮可 */
  max-width: 200px;            /* 横幅最大300px */
  text-align: center;          /* 中央揃え */
}

.v2__edu_contents_bnr_item2 a {
  display: block;
}

.v2__edu_contents_bnr_item2 img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;       /* 任意で角丸 */
}

/* ===== SP対応例 ===== */
@media (max-width: 768px) {
  .v2__edu_contents_bnr_item {
    flex: 1 1 45%;              /* SPで2列にする場合 */
    margin-bottom: 1rem;
  }
    .v2__edu_contents_bnr_item2:first-child{
        margin-top: -40px;
    }
    .v2__edu_contents_bnr_item2 {
    flex: 1 1 45%;              /* SPで2列にする場合 */
    margin-bottom: 1rem;
  }
}

.v2__edu_title_with_icons {
   margin-top: 5rem;
  display: flex;
  align-items: center;           /* 垂直中央揃え */
  justify-content: center;       /* 中央揃え */
  gap: 1rem;                     /* 文字とアイコンの間隔 */
  text-align: center;
}

.v2__edu_title_with_icons .v2__title-text {
  font-size: 2.5em;              /* 約40px換算 */
  font-weight: bold;
  color: #1478e2;
}

.v2__edu_title_with_icons .v2__title-icon {
  width: auto;                   /* 必要に応じて調整 */
  height: 5em;                 /* テキストサイズに合わせて高さ調整 */
}
@media (max-width: 768px) {
    .v2__edu_title_with_icons .v2__title-text {
  font-size: 1.2em;
        line-height: 1.2;
}
    .v2__edu_title_with_icons {
   margin-top:1rem;
}
    .v2__edu_title_with_icons .v2__title-icon {
  height: 2em; 
}
}

.v2__edu_tab01-2_area{
    margin-top: 5em;
}
@media (max-width: 768px) {
    .v2__edu_tab01-2_area{
    margin-top: 1em;
}
}

.v2__edu_tab01-2_title{
    margin: 0 auto;
    max-width: 700px;
    background: #f85900;
    padding: .3em 0;
    border-radius:50px;
    color: #fff;
    font-size: 2em;
}

@media (max-width: 768px) {
    .v2__edu_tab01-2_title{
    font-size: 1.2em;
}
}

.v2__edu_tab01-2_cont01{
    margin: 1em auto;
    padding: 0 2em 2em;
    background: #edf2c4;
    border-radius:15px;
}
.v2__edu_tab01-2_cont01_txt1{
    font-size: 2.5em;
    color: #252525;
    font-weight: bold;
}
@media (max-width: 768px) {
    .v2__edu_tab01-2_cont01_txt1{
    font-size: 1.5em;
}
}
.v2__edu_tab01-2_cont01_txt1 span{
    font-size: 2.8em;
    color: #f85900;
}
@media (max-width: 768px) {
    .v2__edu_tab01-2_cont01_txt1 span{
    font-size: 2.3em;
}
}
.v2__edu_tab01-2_cont01_txt2{
    margin-top: -1em;
    font-size: 1.5em;
}
@media (max-width: 768px) {
    .v2__edu_tab01-2_cont01_txt2{
    font-size: 1em;
}
}

.v2__edu_tab01-2_cont02_txt1{
    font-size: 2.5em;
    color: #f85900;
    font-weight: bold;
    margin: .5em 0;
}
@media (max-width: 768px) {
    .v2__edu_tab01-2_cont02_txt1{
    font-size: 1.2em;
}
    .v2__edu_tab01-2_cont02{
        
    }
}
.v2__edu_tab01-2_cont02_txt2{
    font-size: 1.8em;
    color: #f85900;
    font-weight: bold;
    margin: 1em 0 .5em;
}
@media (max-width: 768px) {
    .v2__edu_tab01-2_cont02_txt2{
    font-size: 1.2em;
    margin: .5em 0;
}
}
.v2__edu_tab01-2_cont02_txt3{
    font-size: 1.3em;
    font-weight: bold;
    margin: 1.5em 0 .5em;
    color: #f85900;
    border-bottom: 2px dotted #f85900;
}
@media (max-width: 768px) {
    .v2__edu_tab01-2_cont02_txt3{
    font-size: 1em;
    font-weight: bold;
    margin: 1em 0 .5em;
    color: #f85900;
}
}
.v2__edu_tab01-2_cont02_flex {
  display: flex;                 /* 横並び */
  justify-content: center;       /* 中央揃え */
  gap: 1rem;                     /* 画像間の隙間 */
  flex-wrap: wrap;               /* SPで折り返し */
  padding: 1rem 0;
    margin-top: .5em;
}

.v2__edu_tab01-2_cont02_img {
  flex: 1 1 200px;               /* 最小幅200pxで伸縮可 */
  max-width: 400px;              /* 最大幅400px */
  text-align: center;            /* 画像中央揃え */
}

.v2__edu_tab01-2_cont02_img img {
  width: 100%;                   /* 横幅いっぱい */
  height: auto;                  /* アスペクト比維持 */
  display: block;
  border-radius: 0.5rem;         /* 任意で角丸 */
}

/* ===== SP対応例 ===== */
@media (max-width: 768px) {
  .v2__edu_tab01-2_cont02_img {
    flex: 1 1 45%;               /* 2列表示 */
    margin-bottom: 1rem;
  }
    .v2__edu_tab01-2_cont02 p{
        font-size: .8em;
    }
}

.v2__edu_tab01-2_cont02-2_flex {
  display: flex;
  flex-wrap: wrap;           /* 折り返し可能 */
  gap: 1rem;                 /* 要素間の隙間 */
  justify-content: center;    /* 中央揃え */
    margin-top: 1.5rem;
}

.v2__edu_tab01-2_cont02-2_img {
  flex: 1 1 calc(50% - 0.5rem); /* 2列表示 */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;       /* 中身を縦並び */
  align-items: center;          /* 中央寄せ */
  justify-content: flex-start;  /* 上詰め */
  padding: 1.5rem;
  font-size: 1.2em;
  border: 3px solid;
  border-radius: 0.5rem;
  text-align: center;
  height: auto;                /* 高さ自動 */
  overflow: hidden;            /* はみ出る場合は隠す */
}
.v2__edu_tab01-2_cont02-2_ttl-1,
.v2__edu_tab01-2_cont02-2_ttl-2,
.v2__edu_tab01-2_cont02-2_ttl-3,
.v2__edu_tab01-2_cont02-2_ttl-4
{
    font-size: 1.8em;
    font-weight: bold;
    line-height: 1.5;
}
.v2__edu_tab01-2_cont02-2_img p{
    font-size: .8em;
    text-align: left;
}

@media (max-width: 768px) {
    .v2__edu_tab01-2_cont02-2_img p{
        font-size: .7em;
    }
}

/* 枠色を順番に指定 */
.v2__edu_tab01-2_cont02-2_img:nth-child(1) { border-color: #009245; }
.v2__edu_tab01-2_cont02-2_img:nth-child(2) { border-color: #c1272d; }
.v2__edu_tab01-2_cont02-2_img:nth-child(3) { border-color: #0071bc; }
.v2__edu_tab01-2_cont02-2_img:nth-child(4) { border-color: #fcee21; }

.v2__edu_tab01-2_cont02-2_ttl-1{ color: #009245; }
.v2__edu_tab01-2_cont02-2_ttl-2 { color: #c1272d; }
.v2__edu_tab01-2_cont02-2_ttl-3{ color: #0071bc; }
.v2__edu_tab01-2_cont02-2_ttl-4{ color: #ceb82d; }

.v2__edu_tab01-2_cont02-2_img img {
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 0.5rem;
}

/* ===== SP対応 ===== */
@media (max-width: 768px) {
  .v2__edu_tab01-2_cont02-2_img {
    flex: 1 1 100%;            /* SPでは縦並び */
    margin-bottom: 1rem;
  }
}

.v2__edu_tab01-2_cont03{
    width: 100%;
    border: #f85900 1px solid;
    background: #fff;
    border-radius: 15px;
    margin-top: 1.5em;
    padding: 1em 5em 3em;
    text-align: left;
    line-height: 2;
}
@media (max-width: 768px) {
    .v2__edu_tab01-2_cont03{
       padding: 1em; 
    }  
}
/* タイトルライン */
.v2__edu_tab01-2_cont03 .v2__edu_title-line-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 2rem 0 0;
}

.v2__edu_tab01-2_cont03 .v2__edu_line {
  flex: 1;
  height: 3px;
  background-color: #f85900;
  position: relative;
}

.v2__edu_tab01-2_cont03 .v2__edu_line .v2__edu_dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f85900;
  top: 50%;
  transform: translateY(-50%);
}

.v2__edu_tab01-2_cont03 .v2__edu_left-line .v2__edu_dot { left: 0; }
.v2__edu_tab01-2_cont03 .v2__edu_right-line .v2__edu_dot { right: 0; }

.v2__edu_tab01-2_cont03 .v2__edu_title-line {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #f85900;
}
@media (max-width: 768px) {
    .v2__edu_tab01-2_cont03 .v2__edu_title-line {
  font-size: 1.5rem;
}
}
.v2__edu_tab01-2_cont03 .v2__edu_title-line > span { 
  white-space: nowrap; 
}

/* SP対応 */
@media (max-width: 768px) {
  .v2__edu_tab01-2_cont03 .v2__edu_tab-inner {
    flex-direction: column;
  }
}
.v2__edu_tab01-2_cont03 .txt_L{
    font-size: 1.2em;
    margin-top: .8em;
    font-weight: bold;
}
.v2__edu_tab01-2_cont03 p{
    font-size: 1.2em;
}
.v2__edu_tab01-2_cont03 .indent{
    text-indent: 1.2em;
}
@media (max-width: 768px) {
    .v2__edu_tab01-2_cont03 .txt_L{
    font-size: 1em;
    margin-top: .2em;
}
    .v2__edu_tab01-2_cont03 p{
    font-size: 1em;
}
}


/* ========================================
  アソビのマナビ　アニア
======================================== */
.v2__ania-wrap {
  padding: 0 0 80px;
  width: 100%;
  background-image: url("/company/social_contributions/educational/asobi_no_manabi/common/img/v2__ania_bg.png");
  background-size: 100% auto; 
  background-repeat: repeat-y;
  background-position: top center;
  position: relative;
  z-index: 0;
}

.v2__ania_mv {
  max-width: 1920px;
  margin: 0 auto;
}
.v2__ania_mv img {
  width: 100% !important; 
  height: auto; 
  display: block;
}

.v2__ania_maincopy{
    margin: 5rem 0;
    font-size: 1rem;
    line-height: 2rem;
}
.v2__ania_maincopy h2{
    font-size: 1.6rem;
    color: #0078d4;
    margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .v2__ania_maincopy{
    padding: 1em;
    margin: 2rem 0;
  }
  .v2__ania_maincopy p{font-size: 0.9em;}
}

.v2__ania_whats_btn{
max-width: 800px;
width: 100%;
margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .v2__ania_whats_btn{
padding: 0 1em;
margin-bottom: 2em;
}
}

.v2__ania-sec_wrap{
    max-width: 1295px;
    width: 100%;
    margin: 5rem auto;
}
@media screen and (max-width: 767px) {
    .v2__ania-sec_wrap{
        padding: 0 1rem;
    }
}

.v2__ania-sec_title {
  width: 100%;
  padding:2.5rem 0;
  background-image: url("/company/social_contributions/educational/asobi_no_manabi/common/img/v2__ania_title_bg.png");
  background-size: contain;        /* 横幅に合わせて全体表示 */
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;              /* 文字を中央寄せ */
  color: #007130;                     /* 文字色は画像に応じて調整 */
  line-height: 1.2;
  font-weight: bold;
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
    .v2__ania-sec_wrap{
        margin: 1.5rem auto;
    }
    .v2__ania-sec_title {
        background-image: url("/company/social_contributions/educational/asobi_no_manabi/common/img/v2__ania_title_bg_sp.png");
        font-size: 7vw;
        padding:0.5rem 0;
        background-position:bottom;
    }
}

/* 親コンテナ：横並び */
.v2__ania_guide_flex {
    margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;          /* 画面幅が狭い場合は折り返す */
  gap: 20px;                /* 要素間のスペース */
  align-items: center;  /* 上揃え */
}

/* 画像コンテナ：横並び */
.v2__ania_guide_image-flex {
    width: 50%;
  display: flex;
  gap: 20px;                /* 画像間のスペース */
  flex-wrap: wrap;           /* 小さい画面で折り返し */
}

/* 画像アイテム */
.v2__ania_guide_image-flex_item {
  list-style: none;         /* li のマーカーを消す */
}

/* 画像自体 */
.v2__ania_guide_image-flex_item img {
  display: block;
  max-width: 285px;          /* 横幅制限 */
  height: auto;
}

/* 文字とボタンの縦並び */
.v2__ania_guide_txt-btn {
    width: 50%;
  display: flex;
  flex-direction: column;   /* 縦並び */
  justify-content: flex-start;
  gap: 10px;                /* 文字とボタンの間 */
  flex: 1;                   /* 横幅を自動調整 */
}

/* 文字部分 */
.v2__ania_guide_txt-btn_txt {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
}

/* ボタン画像 */
.v2__ania_guide_txt-btn_btn img {
  display: block;
  width: auto;
  max-width: 380px;
  height: auto;
  cursor: pointer;
  margin: 0 auto;
}

/* SP用レスポンシブ */
@media screen and (max-width: 767px) {
  .v2__ania_guide_flex {
    flex-direction: column; /* 縦並びに変更 */
    align-items: center;    /* 中央揃え */
    gap: 15px;              /* スペース調整 */
  }

  .v2__ania_guide_image-flex {
    width: 100%;            /* 横幅いっぱい */
    justify-content: center; /* 画像を中央揃え */
    gap: 10px;              /* 画像間スペース */
    flex-wrap: nowrap;      /* 折り返さず横並び維持 */
  }

 .v2__ania_guide_image-flex_item img {
    max-width: 45%;         /* 2枚が収まるよう調整（%は画像数に応じて変更） */
    height: auto;
  }
  .v2__ania_guide_image-flex_item{
    max-width: 100%;
  }

  .v2__ania_guide_image-flex_item img {
    max-width: 100%;        /* 画面幅に合わせる */
  }
  .v2__ania_guide_txt-btn {
    width: 100%;
  }

  .v2__ania_guide_txt-btn_txt {
    width: 100%;
    font-size: 1rem;        /* 文字サイズ少し小さく */
  }

 .v2__ania_guide_txt-btn_btn{
    padding-top: 0rem;
 }

  .v2__ania_guide_txt-btn_btn img {
    max-width: 100%;         /* ボタンも画面幅に合わせる */
    margin: 0 auto;         /* 中央揃え */
  }
}

.v2__ania_sec2_area{
    background-image: url("/company/social_contributions/educational/asobi_no_manabi/common/img/v2__ania_bg_mini01.jpg");
    padding: 2em;
    border-radius: 15px;
    margin: 1rem 0;
}

.v2__ania_sec3_area{
    background-image: url("/company/social_contributions/educational/asobi_no_manabi/common/img/v2__ania_bg_mini02.png");
    padding: 2em;
    border-radius: 15px;
    margin: 8rem 0 5rem;
}
@media screen and (max-width: 768px) {
.v2__ania_sec3_area{
  padding: 1em 2em 2em;
}
}

.v2__ania_kyouzai_box{
    background-color: #fff;
border-radius: 15px;
border: 5px solid #007130;
margin-top: 2rem;
}
.v2__ania_kyouzai_box:first-child{
margin-top: 0;
}

.accordion {
  margin-bottom: 10px;
  border-radius: 15px;
  overflow: hidden;
}

.accordion-toggle {
  display: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 1rem;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #fff;
}

.accordion-title {
    width: 33%;
  font-weight: bold;
  margin-right: 1rem;
  background-color:#007130;
  max-width: 18.75vw;
  color: #fff;
  font-size: 1.7rem;
  border-radius: 10px;
}

.accordion-desc {
  flex: 1;
  font-size: 1rem;
  color: #666;
  width: 33%;
  text-align: left;
}

/* アイコン部分 */
.accordion-icon {
  margin-left: 3rem;
  width: 74px;
  height: 74px;
  position: relative;
}

.accordion-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

.icon-minus {
  opacity: 0; /* 初期状態は非表示 */
}

/* 開いたらプラス非表示・マイナス表示 */
.accordion-toggle:checked + .accordion-header .icon-plus {
  opacity: 0;
}

.accordion-toggle:checked + .accordion-header .icon-minus {
  opacity: 1;
}

/* コンテンツ部分 */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1rem;
}

.accordion-toggle:checked ~ .accordion-content {
    max-height: 1000vh; /* 実質自動で伸ばす */
    padding: 1rem;
}
@media screen and (max-width: 768px) {

  .accordion-header {
    flex-direction: column;      /* タイトル・説明・アイコン縦並び */
    align-items: flex-start;
    padding: 0.8rem;
    gap: 0.5rem;
  }

  .accordion-title {
    width: 100%;                 /* タイトルは横幅いっぱい */
    max-width: 100%;
    font-size: 1.2rem;           /* フォントサイズ調整 */
    margin-right: 0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
  }

  .accordion-desc {
    width: 100%;                 /* 説明文も横幅いっぱい */
    font-size: 1rem;
    text-align: left;
    margin: 0;
  }

  .accordion-icon {
    margin-left: 0;
    width: 48px;                 /* アイコン小さめ */
    height: 48px;
     align-self: center;
  }

  .accordion-icon img {
    width: 100%;
    height: auto;
  }

  .accordion-content {
    padding: 0.3rem;             /* コンテンツ余白調整 */
  }
}

/* タイトル外端に●付きライン */
.title-line-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;  /* タイトルを中央 */
  gap: 12px;                /* タイトルと線の間隔 */
  margin: 2rem 0 0;
}

/* 線部分 */
.line {
  flex: 1;                  /* タイトルまで伸ばす */
  height: 3px;
  background-color: #007130;
  position: relative;
}

/* 線の端の● */
.line .dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #007130;
  top: 50%;
  transform: translateY(-50%);
}

/* 左右で●の位置を調整 */
.left-line .dot { left: 0; }
.right-line .dot { right: 0; }

/* タイトル部分 */
.title-line {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #007130;
}

.title-line > span {
  white-space: nowrap;
}

@media screen and (max-width: 768px) {

  /* タイトル＋ライン全体 */
  .title-line-wrapper {
    gap: 8px;                /* タイトルと線の間隔を狭める */
    margin: 1.5rem 0;
  }

  /* 線部分 */
  .line {
    height: 2px;             /* 線の太さを細く */
  }

  /* 線の端の● */
  .line .dot {
    width: 8px;
    height: 8px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* タイトル部分 */
  .title-line {
    font-size: 1.5rem;       /* SP用にフォント縮小 */
  }
}

.v2__ania_kyouzai_cotents {
    padding: 2em;
    text-align: left;
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
}
.v2__ania_kyouzai_cotents_l {
    width: 60%;
    padding: 2em;
    text-align: left;
}
.v2__ania_kyouzai_cotents_r {
    padding: 2em;
    text-align: left;
}
.w40par{
  width: 40%;
}
.w35par{
  width: 30%;
}
.w30par{
  width: 30%;
}
.v2__ania_kyouzai_tit{
    font-size: 1.5rem;
    font-weight: bold;
    color: #007130;
    margin-top: 1.7rem;
}
.v2__ania_kyouzai_tit:first-child{
margin-top: 0;
}
.v2__ania_kyouzai_txt{
    font-size:1rem;
    line-height: 1.5rem;
    padding-left: 0.5rem;
}
@media screen and (max-width: 768px) {

  /* 親コンテナ：縦並びに変更 */
  .v2__ania_kyouzai_cotents {
    display: flex;
    flex-direction: column;   /* 横並び → 縦並び */
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1rem;
  }

  /* 左右コンテンツの幅を100%に */
  .v2__ania_kyouzai_cotents_l,
  .v2__ania_kyouzai_cotents_r {
    width: 100%;
    padding: 1rem 0;         /* 上下の余白だけ確保 */
  }

  /* タイトル文字サイズを縮小 */
  .v2__ania_kyouzai_tit {
    font-size: 1.2rem;
    margin-top: 1rem;
  }

  .v2__ania_kyouzai_tit:first-child {
    margin-top: 0;
  }

  /* 説明文の文字サイズと余白を調整 */
  .v2__ania_kyouzai_txt {
    font-size: 0.95rem;
    line-height: 1.4rem;
    padding-left: 0.3rem;
  }
}

.v2__ania_kyouzai_cotents2 {
    padding: 2em;
    text-align: center;
}
.v2__ania_kyouzai_txt2{
    font-size:1.5rem;
    line-height: 1.5rem;
    padding: 0.5rem 0 1.5rem;
}
@media screen and (max-width: 768px) {
    .v2__ania_kyouzai_cotents2 {
    padding: 1em;}
    .v2__ania_kyouzai_txt2{
      font-size:0.9rem;
      text-align: left;
    }
}

.v2__ania_other_box{
background-color: #fff;
border-radius: 15px;
border: 5px solid #007130;
margin-top: 2.5rem;
padding: 2rem;
}

.v2__ania_other_txt{
    text-align: left;
    font-weight: bold;
    margin: 1.2rem 0;
}
.v2__ania_other_txt:first-child{
margin: 0;
}
.v2__ania_other_txt2{
    text-align: center;
    font-weight: bold;
    margin: 1.5rem 0;
    line-height: 2em;
  }

.v2__ania_cooperation_area{
border-bottom: 5px solid #007130;
padding: 0 0 3rem;
}
.v2__ania_cooperation_area:last-child{
border-bottom: none;
}
.v2__ania_cooperation_tit{
margin: 1rem 0;
text-align: left;
border-bottom: 2px solid #007130;
}
.v2__ania_cooperation_tit span{
    font-size: 35px;
    font-weight: bold;
    color: #007130;
}
.v2__company-name_area{
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: start;
}
.v2__company-name_txt{
    font-size: 25px;
    color: #007130;
    text-align: left;
}
.v2__company-name_link-btn{
    max-width: 165px;
}

.v2__company-detail_txt1{
    margin-top: 1.5rem;
    text-align: left;
    font-size: 1.1em;
}
.v2__company-detail_area{
    margin-top: 2rem;
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: start;
}
.v2__company-detail_img{
    width: 30%;
}
.v2__company-detail_txt2{
    width: 65%;
    margin-top: 1.5rem;
    text-align: left;
    font-size: 1.1em;
}
.v2__company-detail_txt2 span{
font-weight: bold;
font-size: 1.2em;
}
.v2__company-detail_txt3{
    width: 100%;
    margin-top: 1.5rem;
    text-align: left;
    font-size: 1.1em;
}
.v2__company-detail_txt3 span{
font-weight: bold;
font-size: 1.2em;
}

@media screen and (max-width: 768px) {

  .v2__ania_other_box {
    padding: 1rem;
  }

  .v2__ania_other_txt {
    font-size: 1rem;
    margin: 1rem 0;
  }

  .v2__ania_other_txt2 {
    font-size: 1rem;
    margin: 1rem 0;
  }

  .v2__ania_cooperation_tit span {
    font-size: 1.4rem; /* 35px → 読みやすいrem基準に */
  }

  .v2__company-name_area {
    display: block; /* 横並び → 縦積み */
    text-align: center;
  }

  .v2__company-name_txt {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: l;
  }

  .v2__company-name_link-btn {
    max-width: 70%;
    margin: 0 auto;
    display: block;
  }

  .v2__company-detail_area {
    display: block; /* 横並び → 縦積み */
  }

  .v2__company-detail_img {
    width: 100%;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .v2__company-detail_txt2,
  .v2__company-detail_txt3 {
    width: 100%;
    font-size: 1rem;
  }

  .v2__company-detail_txt2 span,
  .v2__company-detail_txt3 span {
    font-size: 1.1rem;
  }
}


.v2__ania_prezent_box{
    background-color: #fff;
border-radius: 15px;
border: 5px solid #534741;
margin-top: 2rem;
padding: 3em;
text-align: left;
font-size: 1.2em;
background-image: url("/company/social_contributions/educational/asobi_no_manabi/common/img/v2__present_img_bg.png"); 
    background-repeat: no-repeat; 
    background-position: right 50px bottom 130px;
    background-size: 35%;
}
@media screen and (max-width: 768px) {
  .v2__ania_prezent_box{
    padding: 1em;
    font-size: 1em;
    background-position: center bottom 60px;
    background-size: 70%;
  }
}

.v2__ania_prezent_tit{
    background-color: #534741;
    color: #fff;
    padding: 1rem 0;
    border-radius: 15px;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}
@media screen and (max-width: 768px) {
  .v2__ania_prezent_tit{
    font-size: 20px;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.v2__ania_prezent_sub-tit{
font-weight: bold;
color: #f85900;
margin-top: 2rem;
}

.v2__ania_present_txt-btn_btn img {
  display: block;
  width: auto;
  max-width: 380px;
  height: auto;
  cursor: pointer;
  margin: 6rem auto 0;
}
@media screen and (max-width: 768px) {
  .v2__ania_present_txt-btn_btn img {width: 100%;}
}
.v2__ania_prezent_box {
  position: relative; /* これで子要素のabsolute配置が有効になる */
  background-color: #fff;
  border-radius: 15px;
  border: 5px solid #534741;
  margin-top: 2rem;
  padding: 3em;
  text-align: left;
  font-size: 1.2em;
  background-image: url("/company/social_contributions/educational/asobi_no_manabi/common/img/v2__present_img_bg.png"); 
  background-repeat: no-repeat; 
  background-position: right 50px bottom 130px;
  background-size: 35%;
}

.v2__ania_prezent_img {
  position: absolute;
  top: -130px; /* ボックスより少しかぶせる */
  left: 50%;
  transform: translateX(-50%);
  max-width: 878px; /* 任意サイズ */
}

.v2__ania_prezent_img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .v2__ania_prezent_box {
    padding: 1em;
    font-size: 1em;
    background-position: center bottom 60px;
    background-size: 70%;
  }
  .v2__ania_prezent_img {
    top: -100px; /* モバイルは少しだけ重ねる */
    width: 120%;
  }
}

.v2__contacts_area {
    margin: 0 auto;
    width: 80%;
    background: #f4f8f9;
    padding: 0;
    background-image: url("/company/social_contributions/educational/asobi_no_manabi/common/img/sdgs_illust_01.png"); 
    background-repeat: no-repeat; 
    background-position: right 50px bottom 160px;
    background-size: 35%;
}

.v2__contacts_mainttl {
    background: #08396b;
    padding: 0.5em 0;
    font-size: 3rem;
    color: #fff;
    text-align: center;
}

.v2__contacts_detail_area {
    padding: 1em 3em 3em;
    text-align: left;
}

.v2__contacts_detail_ttl {
    font-weight: bold;
    font-size: 1.3em;
    color: #08396b;
    margin-top: 1em;
}

.v2__contacts_detail_link-btn {
    max-width: 480px;
}

/* =========================
   タブレット（〜1024px）
========================= */
@media screen and (max-width: 1024px) {
    .v2__contacts_area {
        width: 90%;
        background-size: 35%; /* 少し大きめに */
        background-position: right 20px top 180px;
    }

    .v2__contacts_mainttl {
        font-size: 2.2rem; /* 固定値で読みやすく */
        padding: 1em;
    }

    .v2__contacts_detail_area {
        padding: 2em;
    }
}

/* =========================
   スマホ（〜767px）
========================= */
@media screen and (max-width: 767px) {
    .v2__contacts_area {
        width: 95%;
        background-size: 40%;
        background-position: right top 88px;
    }

    .v2__contacts_mainttl {
        font-size: 1.3rem;
        padding: 0.5em;
    }

    .v2__contacts_detail_area {
        padding: 1.5em;
    }

    .v2__contacts_detail_area p{
        font-size: 0.9rem;
    }

    .v2__contacts_detail_ttl {
        font-size: 1.1rem;
    }

    .v2__contacts_detail_link-btn {
        width: 100%;
        max-width: none; /* 幅制限解除 */
    }
}

/* =========================
   非表示用
========================= */
.hidden {
  display: none !important;
}