@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;
}

/* PC表示 */
.v2__pc { display: block !important; }
.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 {
  height: 105px;
  display: flex;
  align-items: flex-end; /* 下揃え */
  justify-content: center;
  flex-direction: column;
  height: auto;
}

/* 最初のアイテムだけテキスト上、画像下 */
.v2__c-banner__item:first-child {
  align-items: center;
  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: 105px;
  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__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 img {
  width: 100%; 
  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: 2.864583333333333vw;
}

@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: 2.083333333333333vw;
  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: 2.34375vw;
    font-weight: bold;
    color: #007130;
    margin-top: 1.5rem;
}
.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: 3.125vw;
    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; /* 幅制限解除 */
    }
}
