@charset "utf-8";
/* 2025年のリニューアルで作成した新規パーツ用のCSS */
/* ---- 共通 ---- */
html {
  scroll-behavior: smooth;
}
.full-width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}
p {
  margin: 0;
  padding: 0;
}
.ttlImage img {
  border-radius: 20px;
}
.boxSubstance p {
  padding: 0;
}
section h2 {
  margin-bottom: 1em;
}
strong {
  font-size: 1.125em;
}

h4 {
  text-align: left;
}
a:hover {
  opacity: 0.8;
}
a.button-lv2 {
  line-height: 1.8em;
}
a.button-lv2 > p {
  display: none;
}
.emp {
  color: #d4362a;
}
.title-head {
  text-align: center;
}
.title-head h3 {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 1em;
}
h3.sub-title {
  text-align: center;
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 1em;
}
.t_cen {
  text-align: center;
}
/*  リストの⚫︎  */
.list-mark li::before {
	content: "";
    position: absolute;
    top: 1.5em;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #31b8bd;
    border-radius: 50%;
}
/*  大きいセクションのマージン  */
.l-section {
  padding: 6em 0 !important;
}

.bg-2 {
  background: #e9f9f7;
  padding: 6em 0;
}
/* コンテンツ幅 */
.inner {
  max-width: 1100px; /* 最大幅 */
  width: 96%;
  margin: 0 auto; /* 中央寄せ */
  box-sizing: border-box; /* paddingを含めた幅計算にする */
}
.inner ul {
  padding: 0;
}
/* 角丸グレーボーダーbox */
.conbox {
  margin: auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e2e2;
  box-sizing: border-box;
  padding: 2.5em 2.5em 3em;
  overflow: hidden;
  margin-top: 3.5em;
}
.conbox .section-cpy {
  text-align: center;
  border-bottom: 2px solid #58bfc2;
  font-weight: 600;
  font-size: 1.6em;
  padding-bottom: 0.8em !important;
  margin-bottom: 1.8em;
}
.conbox .column-box {
  display: flex;
  align-items: center;
  padding-bottom: none;
  justify-content: space-between;
  margin-bottom: 2.8em;
}
.conbox .column-box + .column-box {
  border-top: 1px solid #e2e2e2;
  padding-top: 3em; /* 線と下の要素の間の余白 */
}
.conbox .column-box .column-img {
  width: 40%;
  margin-right: 2.5em;
}
.conbox .column-box .column-img img {
  border-radius: 15px;
}
.conbox .column-box .column-body {
  width: 100%;
}
.conbox .column-box .column-body h4 {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 0.3em;
  text-align: left;
}

/* ▼▼▼ 赤いリボン風の見出し ▼▼▼ */
.title-ribbon {
  position: relative;
  display: inline-block;
  padding: 8px 30px 6px;
  color: white;
  font-weight: bold;
  margin-bottom: 25px;
  z-index: 1;
  line-height: 1em;
}
.title-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d4362a;
  z-index: -1;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.title-ribbon::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  /* 三角形 */
  border-top: 8px solid #a82015; /* 濃い赤色（影になる部分） */
  border-left: 20px solid transparent; /* 透明にして斜めを作る */
  width: 0;
  height: 0;
}
/*  メインのキャッチコピー（ドット飾り）  */
.title-lead {
  position: relative;
  display: inline-block;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.5em !important;
  margin-bottom: 0.5em;
  text-align: center;
}
.title-lead .emp {
  color: #d4362a;
}
/* --- ▼左右共通の設定 --- */
.title-lead::before,
.title-lead::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  background-color: #404040;
  border-radius: 50%;
  box-shadow: 0 -8px 0 #404040, 0 -16px 0 #404040, 0 -24px 0 #404040;
  transform-origin: center center;
}
/* --- ▼左のドット（角度調整） --- */
.title-lead::before {
  left: -20px;
  transform: rotate(-35deg); /* 左へ倒す（マイナス角度） */
}
/* --- ▼右のドット（角度調整） --- */
.title-lead::after {
  right: -20px;
  transform: rotate(35deg); /* 右へ倒す（プラス角度） */
}
/* L1ボタン */
.button-lv1 {
  position: relative;
  /* ▼幅の設定 */
  width: 35%;
  min-width: 360px;
  margin: 0 auto;
  font-size: 1.2em;
  /* ▼見た目の設定 */
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  background: #31b8bd;
  color: #ffffff !important;
  font-weight: bold;
  text-decoration: none;
  /* ▼配置の設定 */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 3.5em 1em 3.5em;
  transition: all 0.3s ease;
}
.button-lv1::after {
  content: "";
  background-image: url("../img/common/ico-arrow-wh.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  width: 19px;
  height: 16px;
  transition: right 0.3s ease;
}
/* ▼マウスオーバー時の設定 */
.button-lv1:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  opacity: 0.8;
  color: #ffffff;
  text-decoration: none;
}
.button-lv1:hover::after {
  right: 1em;
}
/* L2ボタン */
.button-lv2 {
  position: relative;
  /* 幅と配置の設定 */
  width: fit-content;
  min-width: 330px;
  margin: 0 auto;
  font-size: 1.1em;
  background: #fff;
  border: 2px solid #31b8bd;
  color: #31b8bd;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em 3em !important;
  transition: all 0.3s ease;
}
.button-lv2::after {
  content: "";
  background-image: url("../img/common/ico-arrow-bl.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  width: 19px;
  height: 16px;
  transition: right 0.3s ease;
}
/* ▼マウスオーバー時の設定 */
.button-lv2:hover {
  opacity: 0.8;
  background: #fff;
  color: #31b8bd !important;
  text-decoration: none;
}
.button-lv2:hover::after {
  right: 1em;
}

/* 影付きリンクbox */
.box-shadow-link {
  border: 1px solid #e2e2e2;
  display: block;
  background-color: #fff;
  color: #404040;
  text-decoration: none !important;
  padding: 0px;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  cursor: pointer;
  overflow: hidden;
}
/* --- マウスオーバー時の動き（影が消えて沈む） --- */
.box-shadow-link:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: translateY(1px);
  text-decoration: none;
  color: #5c5c5c;
}
.box-shadow-link .card-image img {
  transition: opacity 0.3s ease;
}
.box-shadow-link:hover .card-image img {
  opacity: 0.8;
}
.box-shadow-link > a {
  text-decoration: none;
}
/* --- kashikoアイコン --- */
.icon_kashikoName {
  border: 2px solid #404040;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.6em;
  padding: 0 0.4em;
  position: static;
  margin-right: 0.8em;
  vertical-align: middle;
  display: inline-block;
  line-height: 1.8em;
}
/* ------ boxTtl ------ */
#contents .boxTtl {
  background: #eee;
  padding: 50px 0 40px;
  margin-bottom: 2em;
}
#contents .boxTtl .minidata {
  max-width: 998px;
  margin: auto;
  text-align: center;
  padding-top: 2em;
  font-size: 0.8em;
}
#contents .boxTtl h2 {
  padding: 40px 25px 20px;
  margin-bottom: 0;
  color: #404040;
  text-align: center;
  font-size: 1.5em;
  font-weight: 600;
  position: relative;
}
#contents .boxTtl h2:after{
content: "";
  height: 5px;
  width: 100px;
  background: #02c2c4;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
/* ------ page-title h2見出し ------ */
.page-title {
  position: relative;
  text-align: center;
  font-weight: 700;
  font-size: 2.25em;
  padding-bottom: 0.7em;
  margin-bottom: 80px;
  font-style: normal;
  line-height: 1.3;
}
.page-title:after {
  content: "";
  height: 5px;
  width: 125px;
  background: #02c2c4;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.page-title.largepage {
  font-size: 2.3em;
  line-height: 1.5;
  padding-bottom: 0;
}
#contents h2.largepage:after {
  display: none;
}
.page-title.largepage small {
  font-size: 0.65em;
}

/* ------ bracket-title h3見出し ------ */
.bracket-title {
  text-align: center;
  display: table;
  margin: 0 auto 0.1em;
  margin-bottom: 1em;
  position: relative;
  padding: 0 20px;
  color: #58bfc2;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.4;
  font-weight: 600;
}
/*カッコの共通設定*/
.bracket-title::before,
.bracket-title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  border: 2px solid #58bfc2;
}
/* [ 左カッコ*/
.bracket-title::before {
  left: 0;
  border-right: none;
}
/*右カッコ ] */
.bracket-title::after {
  right: 0;
  border-left: none;
}
/* --- リード文 --- */
.t_lead {
  font-size: 1.125em;
}
/* --- 特大文字 --- */
.t_big {
  font-size: 1.3em;
  font-weight: 600;
  color: #404040 !important;
}
/* --- リンクボックスレイアウト --- */
.course-box ul {
  text-align: left;
  display: block;
}
.course-box ul li {
  margin-bottom: 3em;
  width: 100%;
  max-width: 100%;
}
.course-box ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.card-image {
  width: 40%;
  flex-shrink: 0;
  margin: 0;
  object-position: right center;
}
.card-image img {
  width: 100%;
  height: 260px;
  vertical-align: bottom;
  display: block;
  object-fit: cover;
}
.card-body {
  flex: 1;
}
.card-body p.button-lv2 {
  width: 100%;
  margin: 0 !important;
}
.card-body h4 {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 0.2em;
  line-height: 150%;
  text-align: left;
}
/*  左肩ラベル設定 */
.card-label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #58bfc2;
  color: #fff;
  font-weight: 500;
  font-size: 0.9em;
  padding: 4px 15px;
  /* 角丸の調整 */
  border-radius: 0 0 15px 0;
  z-index: 10;
}
.card-label span {
  position: static;
  background: #fff;
  border-radius: 3px;
  color: #58bfc2;
  padding: 0.1em 0.5em;
  margin-right: 0.8em;
  font-size: 0.8em;
}
.card-body {
  padding: 1.5em 2.5em;
  color: #404040;
}
.box-shadow-link a,
#others-area .box-shadow-link a {
  color: #404040;
}
.box-shadow-link a:hover {
  color: #7b7b7b;
}
.card-body p {
  margin-bottom: 1.3em;
}
/* ----ページ内リンクボタンー----- */
.link_btm-arrow {
  color: #58bfc1;
  font-weight: 600;
  font-size: 1.125em;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* アイコン画像 */
.link_btm-arrow:before {
  content: "";
  display: block;
  background-image: url("../img/common/ico-arrow-bottom.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-right: 8px;
}
/* ----写真ギャラリー----- */
/* 親枠の設定 */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin: 0 0;
  padding: 0;
  box-sizing: border-box;
}
/* 画像の設定 */
.img-item {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  /* 念のため余計な余白を消す */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: bottom;
}
/* 「じぶん色」強調 */
.kenten {
  -webkit-text-emphasis: filled dot #d4362a;
  text-emphasis: filled dot #d4362a;
  -webkit-text-emphasis-position: over right;
  text-emphasis-position: over right;
}
/* 共通リード */
.cmn-lead {
  text-align: center;
  margin-bottom: 5em;
}
.cmn-lead h3 {
  font-size: 2em;
  font-weight: 600;
  margin: 1.7em 0 0.5em;
}
.cmn-lead .cmn-p {
  margin-bottom: 3em;
	line-height: 2em;
}
/* 概要エリア */
.summary-box .title-head .icon_kashikoName {
  font-size: 1.125em;
  display: inline-block;
  margin: 0 0 0.7em;
  line-height: 1.4em;
}
.summary-box .title-head h3 {
  margin-bottom: 0.6em;
}
.summary-box .title-head ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 1.8em;
	width: 75%;
	margin: 0 auto;
}
.summary-box .title-head ul li {
  position: relative;
  padding: 0;
}
.summary-box .title-head ul li a {
  display: block;
  color: #404040;
  font-weight: 600;
  padding-left: 24px;
}
.summary-box .title-head ul li a:hover {
  color: #404040;
}

/* アイコン画像 */
.summary-box .title-head ul li a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 2px;
  background-image: url("../img/common/ico-arrow-bottom.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 0;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  vertical-align: middle;
}
.summary-box-head {
  background: #58bfc1;
  text-align: center;
  color: #ffffff;
  margin: -2.5em -2.5em 0 -2.5em;
  overflow: hidden;
  padding: 1.3em 1.25em;
}
.summary-box-head h4 {
  text-align: center;
  font-weight: 600;
  font-size: 1.5em;
}
.summary-box-head p {
  font-size: 1.125em;
}
.summary-box-head p span {
  display: inline-block;
  background: #ffffff;
  border-radius: 2px;
  color: #58bfc1;
  font-size: 0.75em;
  line-height: 1.5em;
  padding: 0 0.3em;
	margin-right: 10px;
}
.listData {
  margin: 0;
}
.listData ul li {
  margin-bottom: 0;
}

/* bottom-contact-area */
.bottom-contact-area {
  background: url(../img/common/bgi-hogan_002.webp);
  background-size: 20px 18px;
  padding: 90px 0 105px 0;
}
.bottom-contact-area .contact-area-btn br {
  display: none;
}
.bottom-contact-area .wideFrame {
  text-align: center;
}
.bottom-contact-area .wideFrame h3 {
  font-weight: 600;
  color: #fff;
  font-size: 2.25em;
  margin-bottom: 40px;
}
.bottom-contact-area .btn-type-a {
  background: #31b8bd;
  color: #fff;
  font-size: 24px;
  padding: 25px 50px 25px 50px;
  min-width: 510px;
	width: auto;
}
#about .bottom-contact-area .btn-type-a {
	 min-width: 330px;
}
.bottom-contact-area .btn-type-a::after {
  content: "";
  width: 20px;
  height: 17px;
  background: url(../img/common/ico-arrow-wh.svg) no-repeat;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.bottom-contact-area .contact-area-btn {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.bottom-contact-area .btn-type-a:hover {
  color: #fff;
}
.button {
  position: relative;
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  font-weight: 600;
}
.button:hover {
  text-decoration: none;
}

/***************************************************
max-width: 768px以下のウィンドウ幅に適応 ＊PC用＊
***************************************************/

@media screen and (min-width: 768px) {
  .pcHide {
    display: none !important;
  }
}

/***************************************************
max-width: 768px以下のウィンドウ幅に適応 ＊SP用＊
***************************************************/

@media screen and (max-width: 768px) {
  /*共通*/
  .spHide {
    display: none !important;
  }
  .inner {
    padding: 0 2%;
    box-sizing: border-box;
  }
  .box-shadow-link .card-image img {
    object-position: center;
  }
  .ttlImage img {
    border-radius: 10px;
  }
  /* 角丸グレーボーダーbox */
  .conbox {
    padding: 5%;
    margin-top: 1.25em;
  }
  .conbox .column-box {
    gap: 20px;
    margin-bottom: 1.5em;
  }
  .conbox .section-cpy {
    line-height: 1.5;
    text-align: left;
    font-size: 1.5em;
    margin-bottom: 1.2em;
  }
  .conbox .column-box .column-img {
    margin-right: 0;
  }
  .conbox .column-box + .column-box {
    padding-top: 2em;
  }
  .conbox .section-cpy {
    line-height: 1.5;
    text-align: left;
    font-size: 1.3em;
  }
  .conbox .column-box .column-img {
    margin-right: 0;
  }
  .summary-box-head h4{
		text-align: left;
  }
  .summary-box-head p {
	  line-height: 1.5em;
  }
	.cmn-lead .cmn-p {
	line-height: 1.8em;
	}
 

  /* アイコン画像 */
  .summary-box-head {
    padding: 5%;
    margin-top: -6%;
    margin-left: -6%;
    margin-right: -6%;
  }
  /*  メインのキャッチコピー（ドット飾り）  */
  .section .title-lead {
    text-align: center;
  }

  /* h2見出し */
  .page-title {
    font-size: 1.875em;
    margin-bottom: 40px;
  }
  .page-title:after {
    width: 105px;
  }
  /* h3見出し */
  .bracket-title {
    font-size: 1.375em;
  }

  /* L1ボタン */
  a.button-lv1 {
    width: 90%;
    min-width: auto;
    padding: 1em 3em 1em 2em;
    font-size: 1.1em;
  }
  /* L2ボタン */
  a.button-lv2 {
    max-width: 100%;
    min-width: auto;
    font-size: 1em;
    line-height: 1.4;
    padding: 0.7em 3em 0.7em 2em !important;
  }
  a.button-lv2::after {
    right: 1em;
    width: 16px;
    height: 16px;
  }
  /*  大きいセクションのマージン  */
  .l-section {
    padding: 4em 0 !important;
  }

  .bg-2 {
    padding: 4em 0;
  }
	.title-head h3{
		font-size: 1.5em;
	}
	.summary-box-head h4{
		font-size: 1.4em;
	}

  /* 概要エリア */
  .summary-box .title-head ul li {
    padding: 0;
    text-align: left;
  }
  .summary-box .title-head ul li a {
    text-align: left;
  }

  /* --- リンクボックスレイアウト --- */
  .course-box ul li a {
    flex-direction: column;
  }

  .card-body p.button-lv2 {
	  max-width: 100%;
	  min-width: auto;
	  padding: 0.5em 3.5em 0.5em 3.5em !important;
	  text-align: center;
	 position: relative;
  }
  .course-box ul li {
    margin-bottom: 1.25em;
  }

  .card-body h4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625em;
  }
  .card-image {
    width: 100%;
  }
  .card-image img {
    width: 100%;
    height: calc(90vw * 0.5625);
  }
  /*  左肩ラベル設定 */
  .card-label {
    font-size: 0.8125em;
  }
  .card-body {
    padding: 1.25em 1.25em 1.875em 1.25em;
  }
  /*bottom-contact-area*/
  .bottom-contact-area {
    padding: 50px 0 60px 0;
  }
  .bottom-contact-area .wideFrame {
    padding: 0 5%;
  }
  .bottom-contact-area .wideFrame h3 {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .bottom-contact-area .wideFrame .contact-area-btn {
    gap: 20px;
    flex-direction: column;
  }
  .bottom-contact-area .wideFrame .contact-area-btn .btn-type-a {
    width: 100%;
	  min-width: 0;
  }
	
  .bottom-contact-area .btn-type-a {
	  width: 80%;
    font-size: 20px;
    padding: 25px 40px 25px 20px;
  }

 /* --- 7つの力 スマホだけ説明見せる --- */
.accordion-check {
  display: none;
}
.accordion-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
	.sp-skills-accordion{
		margin-top: 20px;
	}


/* 開いた時：中身を表示する */
.accordion-check:checked ~ .accordion-content {
  height: auto; 
  opacity: 1; 
  padding: 20px 0; /* 少し余白を入れる */
}

/* 開いた時：ボタンの矢印をひっくり返す */
.accordion-check:checked + .accordion-label::after {
  transform: rotate(180deg);
}

/* --- 中身のリストのデザイン（既存調整） --- */
.accordion-content dl {
  margin: 0;
  padding: 0 10px;
}
.accordion-content dt {
  font-weight: 600;
  margin-top: 1em;
}
.accordion-content dd {
  margin: 0 0 1em 0;
}
	
}
