@charset "utf-8";
/* CSS Document */ :root {
  --black: #333333;
  --darkgray: #626262;
  --lightlightblue: #EEF6F8;
  --lightblue: #77C8DF;
  --blue: #3caccc;
  --orange: #FC8F2A;
  --white: #ffffff;
}
/* 共通 */
body {
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--black);
    background-color: var(--white);
}

@media (prefers-color-scheme: dark) {
	body{
		background-color: var(--white);
	}
}

a {
  text-decoration: none;
  transition: all 0.2s;
}
a:hover {
  opacity: 0.5;
}
h2 {
  font-size: 1.6em;
  font-weight: 900;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 1080px) {
  h2 {
    font-size: 48px;
  }
}
h2 span {
  color: var(--lightblue);
  font-size: 0.5em;
  letter-spacing: 0.1em;
  display: block;
  font-weight: 500;
}
@media screen and (min-width: 1080px) {
  h2 span {
    font-size: 20px;
    line-height: 1em;
  }
}
.caption {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8em;
  margin-bottom: 40px;
}
@media screen and (min-width: 1080px) {
  .caption {
    font-size: 18px;
  }
}
h3 {
  text-wrap: initial;
}
.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}
/* ヘッダー */
header {
  width: 100%;
  background-color: var(--white);
  position: sticky;
  top: 0;
  left: 0;
  height: fit-content;
  z-index: 100;
  box-sizing: border-box;
  padding: 8px 20px;
}
@media screen and (min-width: 1080px) {
  header {
    padding: 20px 32px;
  }
}
h1 {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}
@media screen and (min-width: 1080px) {
  h1 {
    font-size: 18px;
  }
}
h1 img {
  height: 40px;
  width: auto;
}
@media screen and (min-width: 1080px) {
  h1 img {
    height: 60px;
  }
}
/* 申し込みボタン（丸） */
.cnv {
  width: 30vw;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  background-color: #626262;
  color: var(--white);
  border-radius: 50%;
  position: fixed;
  right: 8px;
  bottom: 8px;
  z-index: +2;
  box-shadow: 0px 0px 15px -5px var(--black);
}
@media screen and (min-width: 768px) {
  .cnv {
    width: 160px;
    right: 20px;
    bottom: 20px;
  }
}
/* 申し込みボタン（角丸） */
.conv-btn-single {
  display: flex;
  margin: 60px auto;
  max-width: 500px;
}
@media screen and (min-width: 1080px) {
  .conv-btn-single {
    flex-direction: row;
    margin: 20px auto 60px;
  }
}
.conv-btn-single a {
  width: 100%;
  background-color: var(--black);
  color: var(--white);
  font-size: 1.1em;
  letter-spacing: 0.1em;
  border-radius: 100px;
  text-align: center;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 60px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .conv-btn-single a {
    font-size: 1.3em;
  }
}
.conv-btn-single a:after {
  width: 9px;
  height: 9px;
  content: "";
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
  transform: rotate(45deg);
  position: absolute;
  display: block;
  right: 36px;
}
/* キービジュアル */
#kv {
  width: 100%;
  height: 400px;
  background-image: url(../img/kv2_sp.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 20px;
  padding-bottom: 40px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  #kv {
    background-image: url(../img/kv2.jpg);
    height: 80vh;
  }
}
.kv-text {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .kv-text {
    padding: 40px;
    gap: 32px;
  }
}
@media screen and (min-width: 1080px) {
  .kv-text {
    padding: 60px;
    gap: 36px;
  }
}
.kv-text-large {
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .kv-text-large {
    font-size: 64px;
    line-height: 64px;
  }
}
@media screen and (min-width: 1080px) {
  .kv-text-large {
    font-size: 84px;
    line-height: 84px;
  }
}
.kv-text-midi {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.8em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .kv-text-midi {
    font-size: 24px;
    line-height: 24px;
  }
}
@media screen and (min-width: 1080px) {
  .kv-text-midi {
    font-size: 32px;
    line-height: 32px;
  }
}
.kv-text-color {
  display: block;
  background-color: var(--white);
  color: var(--blue);
  padding: 8px 12px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 12px;
    white-space: nowrap;
        font-feature-settings: 'palt';
}
@media screen and (min-width: 768px) {
  .kv-text-color {
    letter-spacing: 0.1em;
    font-size: 20px;
    padding: 12px 24px;
    border-radius: 40px;
    width: fit-content;
  }
}
/* この求人の対象者 */
#target {
  width: 100%;
  background-color: var(--lightblue);
}
.target-wrap {
  color: var(--white);
  flex-direction: column;
  display: flex;
  gap: 20px;
  padding: 32px 20px;
}
@media screen and (min-width: 1080px) {
  .target-wrap {
    width: 100%;
    margin: 0 auto;
    flex-direction: row;
    gap: 40px;
    width: 1080px;
    margin: 0 auto;
  }
}
.target-left {
  padding-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1.1em;
  border-bottom: 1px solid;
}
@media screen and (min-width: 1080px) {
  .target-left {
    border-bottom: none;
    border-right: 1px solid;
    font-size: 20px;
    display: flex;
    align-items: center;
    padding-right: 20px;
    width: fit-content;
  }
}
.target-right table {
  width: 100%;
}
.target-right table tr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .target-right table tr {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1080px) {
  .target-right table tr {
    font-size: 20px;
  }
}
.target-right table tr th {
  color: var(--blue);
  width: fit-content;
  background-color: var(--white);
  padding: 0px 20px;
  line-height: 2em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1080px) {
  .target-right table tr th {
    padding: 0px 12px;
    line-height: 1.5em;
  }
}
.target-right table tr td {
  line-height: 1.8em;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
.target-right table tr .target-right-text {
  background: none;
  width: 100%;
  text-align: right;
  color: var(--white);
  padding: 0;
}
/* NSGグループは学校だけじゃないんです！ */
#about {
  width: 100%;
  padding: 60px 20px;
}
@media screen and (min-width: 1080px) {
  #about {
    width: 1080px;
    margin: 0 auto;
    padding: 96px 0;
  }
}
#about h3 {
  align-items: center;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  background-color: var(--white);
  display: flex;
  width: 100%;
  gap: 16px;
}
@media screen and (min-width: 1080px) {
  #about h3 {
    font-size: 28px;
  }
}
#about h3:before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #FC8F2A;
  border-radius: 8px;
  display: block;
}
#about h3:after {
  content: "";
  height: 1px;
  background-color: var(--lightblue);
  flex-grow: 1;
}
.jigyou-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px 0;
  margin-bottom: 40px;
}
@media screen and (min-width: 1080px) {
  .jigyou-list {
    gap: 5% 1.3%;
    justify-content: normal;
  }
}
.jigyou-list-item {
  flex-wrap: wrap;
  display: flex;
  width: 49%;
  gap: 12px;
}
@media screen and (min-width: 1080px) {
  .jigyou-list-item {
    width: 24%;
    flex-direction: column;
    margin-bottom: 32px;
  }
}
.jigyou-list-item-img {
  width: 100%;
  background-color: var(--lightlightblue);
  border-radius: 8px;
  padding: 16px;
  aspect-ratio: 1 / 0.7;
  display: flex;
  align-items: center;
}
.jigyou-list-item-img img {
  width: 100%;
}
.jigyou-list-item h4 {
  font-weight: 800;
  font-size: 18px;
}
@media screen and (min-width: 1080px) {
  .jigyou-list-item h4 {
    font-size: 24px;
  }
}
.jigyou-list-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.jigyou-list-item ul li {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 33px;
  padding: 0.5em 0.75em;
  font-size: clamp(12px,0.8333vw,16px);
  line-height: 1.2em;
    overflow: hidden
}
.jigyou-list-item ul li span{
    font-size: inherit;
    font-weight: 600;
    font-feature-settings: "palt";
}

@media screen and (min-width: 1080px) {
.jigyou-list-item ul li span{
    font-weight: 400;
}
}

/*追加*/
.jigyou-list-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  width: 100%;
}

.jigyou-list-item ul li span.-----narrow {
    white-space: nowrap;
    letter-spacing: -0.15em;

}
/*
.jigyou-list-item ul li {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 33px;
  padding: 0.5em 1em;
  font-size: 13px;
  font-feature-settings: 'palt';
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
}
.jigyou-list-item ul li span {
  font-size: 1em;
  display: block;
  white-space: nowrap;
}
.jigyou-list-item ul li span.-----narrow {
  width: 150%;
  transform: scaleX(.7);
  transform-origin: left;
}
.jigyou-list-item ul li span.-----narrow2 {
  width: 150%;
  transform: scaleX(.8);
  transform-origin: left;
}
.jigyou-list-item ul li span.-----narrow3 {
  width: 150%;
  transform: scaleX(.75);
  transform-origin: left;
}
@media screen and (min-width: 390px) {
  .jigyou-list-item ul li span.-----narrow2 {
    width: 100%;
    transform: none;
  }
}
@media screen and (min-width: 420px) {
  .jigyou-list-item ul li span.-----narrow3 {
    width: 100%;
    transform: none;
  }
}
@media screen and (min-width: 480px) {
  .jigyou-list-item ul li span.-----narrow {
    width: 100%;
    transform: none;
  }
}
*/

/*
.jigyou-list-item ul li {
    background-color: var(--blue);
    color: var(--white);
    border-radius: 4px;
    padding: 0.75em 0.5em;
    font-size: 12px;
    font-feature-settings: 'palt';
    line-height: 1em;
    letter-spacing: -.12em;
    white-space: nowrap;
}
*/
/*追加おわり*/
@media screen and (min-width: 1080px) {
  .jigyou-list-item ul li {
    font-size: 16px;
  }
}
.number-list {
  display: grid;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 1080px) {
  .number-list {
    grid-template-columns: 1fr 1fr;
  }
}
.number-list-item {
  display: flex;
  flex-direction: column;
  background-color: var(--lightlightblue);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  width: 100%;
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .number-list-item {
    width: 100%;
    padding: 32px;
    padding-bottom: 20px;
    justify-content: space-between;
  }
  .number-list-item:nth-of-type(1) {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
  .number-list-item:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .number-list-item:nth-of-type(3) {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
}
.number-list-item h4 {
  font-size: 16px;
  background-color: #333;
  color: var(--white);
  padding: 0 20px;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 1080px) {
  .number-list-item h4 {
    font-size: 18px;
  }
}
.number-list-item-number {
  font-size: 60px;
  font-weight: 900;
  font-style: italic;
}
.number-list-item-number span {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .number-list-item-number {
    font-size: 120px;
  }
}
/*
span {
  font-size: 0.9rem;
}
*/
p.number-list-item-caption {
  font-size: 0.9em;
  text-align: right;
  display: block;
  font-weight: normal;
  width: 100%;
}
.number-list-item-image {
  width: 100%;
  width: fit-content;
  margin: 20px auto;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .number-list-item-image {
    max-width: 80%;
  }
}
/* NSGグループの一員として働くメリットは？ */
#why {
  width: 100%;
  background-image: url("../img/kv_back.jpg");
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.why-content {
  width: 100%;
  padding: 60px 20px;
}
@media screen and (min-width: 1080px) {
  .why-content {
    width: 1080px;
    margin: 0 auto;
    padding: 96px 0;
  }
}
#why h2 span {
  color: var(--white);
}
.why-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1080px) {
  .why-list {
    flex-direction: row;
  }
}
.why-list-item {
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .why-list-item {
width: 32%;
  }
}


.why-list-item-inner {
  background-color: var(--white);
  border-radius: 12px;
  padding: 20px;
  padding-bottom: 110px;
}
@media screen and (min-width: 1080px) {
  .why-list-item-inner {
        height: fit-content;
        padding: 20px;
        padding-bottom: 110px;
  }
}











#why .why-list-item h3 {
    font-feature-settings: 'palt';
  font-size: 21px;
  color: #3CACCC;
  font-weight: 600;
  line-height: 1.8em;
  margin-bottom: 12px;
}
@media screen and (min-width: 1080px) {
  #why .why-list-item h3 {
    /*font-size: 28px;*/
    font-size: 22px;
  }
}


.why-list-headline04 {
font-feature-settings: 'palt';
    font-size: 16px;
    color: #3CACCC;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 12px;
    margin-top: 24px;
}
@media screen and (min-width: 1080px) {
  .why-list-headline04  {
    /*font-size: 28px;*/
    font-size: 18px;
  }
}



#why .why-list-item h3:before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #FC8F2A;
  display: block;
  border-radius: 12px;
  margin-bottom: 12px;
}
.why-list-item p {
  font-size: 15px;
  line-height: 1.8em;
  margin-bottom: 0.75em;
}
@media screen and (min-width: 1080px) {
  .why-list-item p {
    font-size: 16px;
  }
}
.item01 {
  background-image: url("../img/why01.png");
  background-position: bottom right;
  background-size: 160px;
  background-repeat: no-repeat;
}
.item02 {
  background-image: url("../img/why02.png");
  background-position: bottom right;
  background-size: 160px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1080px) {
  .item02 {
    margin-top: 60px;
  }
}
.item03 {
  background-image: url("../img/why03.png");
  background-position: bottom right;
  background-size: 160px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1080px) {
  .item03 {
    margin-top: 120px;
  }
}
/* 活躍するセンパイの声 */
#voice {}
.voice-content {
  width: 100%;
  padding: 60px 20px;
}
@media screen and (min-width: 1080px) {
  .voice-content {
    width: 1080px;
    margin: 0px auto;
    padding: 96px 0;
  }
}
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.voice-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.voice-item-btn {
  border-bottom: 1px solid var(--black);
  padding-left: 88px;
  padding-right: 56px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  margin-bottom: 20px;
  transition: all 0.2s;
}
.voice-item-btn:hover {
  cursor: pointer;
  opacity: 0.6;
}
.voice-item-btn:after {
  position: absolute;
  content: "＋";
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: #333333;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  line-height: 1em;
}
@media screen and (min-width: 1080px) {
  .voice-item-btn {
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
    flex-direction: row;
    gap: 20px;
    padding-right: 68px;
  }
  .voice-item-btn:after {
    width: 48px;
    height: 48px;
  }
}
.voice-item-btn span {
  padding-bottom: 8px;
  font-size: 14px;
}
@media screen and (min-width: 1080px) {
  .voice-item-btn span {
    padding-bottom: 0;
  }
}
.voice-item-btn h3 {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1080px) {
  .voice-item-btn h3 {
    flex-direction: row;
    font-size: 24px;
    gap: 20px;
  }
}
.voice-item-btn h3 span {
  font-size: 0.8rem;
  background-color: var(--lightblue);
  color: var(--white);
  display: block;
  width: fit-content;
  padding: 0px 20px;
  border-radius: 20px;
  font-weight: normal;
  letter-spacing: 0.1em;
}
.voice-item-btn.close:after {
  content: "－";
}
.voice-item ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  line-height: 1.8em;
}
.voice-item ul li .voice-bold {
  font-weight: bold;
  display: block;
}
.voice01 .voice-item-btn {
  position: relative;
}
.voice01 .voice-item-btn:before {
  content: "";
  width: 80px;
  height: 80px;
  background-image: url("../img/voice01.png");
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  bottom: 8px;
}
@media screen and (min-width: 1080px) {
  .voice01 .voice-item-btn:before {
    width: 100px;
    height: 100px;
    bottom: -10px;
  }
}
.voice02 .voice-item-btn {
  position: relative;
}
.voice02 .voice-item-btn:before {
  content: "";
  width: 80px;
  height: 80px;
  background-image: url("../img/voice02.png");
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  bottom: 8px;
}
@media screen and (min-width: 1080px) {
  .voice02 .voice-item-btn:before {
    width: 100px;
    height: 100px;
    bottom: -10px;
  }
}
.voice03 .voice-item-btn {
  position: relative;
}
.voice03 .voice-item-btn:before {
  content: "";
  width: 80px;
  height: 80px;
  background-image: url("../img/voice03.png");
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  bottom: 8px;
}
@media screen and (min-width: 1080px) {
  .voice03 .voice-item-btn:before {
    width: 100px;
    height: 100px;
    bottom: -10px;
  }
}
.voice-item .box {
  display: none;
}
/*お伝えしたいことがまだまだあります*/
#atlast {
  width: 100%;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(119, 200, 223, 1));
}
.atlast-contents {
  width: 100%;
  padding: 60px 32px;
}
.atlast-contents h2 {
  text-align: center;
}
.atlast-contents p {
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.8em;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (min-width: 1080px) {
  .atlast-contents p {
    font-size: 20px;
  }
}
.atlast-contents img {
  max-width: 900px;
  margin: 60px auto;
}
.atlast_contact {
  width: 100%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}
@media screen and (min-width: 1080px) {
  .atlast_contact {
    margin: 0 auto;
      max-width: 1080px;
  }
}
.atlast_contact p {
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8em;
  margin: 0;
  display: block;
}
@media screen and (min-width: 1080px) {
  .atlast_contact p {
    font-size: 1.3rem;
  }
}
.atlast_conv {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px auto;
}
@media screen and (min-width: 1080px) {
  .atlast_conv {
    flex-direction: row;
    max-width: 1080px;
    margin: 96px auto 60px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.atlast_conv a {
  width: 100%;
  background-color: var(--black);
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0.1em;
  border-radius: 100px;
  text-align: center;
  font-weight: bold;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .atlast_conv a {
    width: 48%;
    font-size: 1.3em;
  }
}
.atlast_conv a:after {
  width: 9px;
  height: 9px;
  content: "";
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
  transform: rotate(45deg);
  position: absolute;
  display: block;
  right: 36px;
}
.atlast_conv a span {
  font-size: 0.6em;
  font-weight: normal;
  line-height: 1.3em;
  text-align: left;
}
@media screen and (min-width: 1080px) {
  .atlast_conv a span {
    letter-spacing: 0em;
    font-size: 0.6em;
  }
}
.atlast_conv_mendan {
  background: none;
  background-image: linear-gradient(138deg, rgba(240, 122, 10, 1), rgba(255, 193, 32, 1));
}
.atlast_conv .atlast-mendan-attention {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}
@media screen and (min-width: 1080px) {
  .atlast_conv .atlast-mendan-attention {
    justify-content: flex-end;
  }
}
.atlast_conv .atlast-mendan-attention .atlast-mendan-attention-content span {
  color: #fff;
  display: block;
  line-height: 1.8em;
  width: 100%;
    font-size: 0.9em;
}
.atlast_conv .atlast-mendan-attention .atlast-mendan-attention-content span.indent {
  text-indent: -1em;
  margin-left: 1em;
}
@media screen and (min-width: 1080px) {
  .atlast_conv .atlast-mendan-attention .atlast-mendan-attention-content {
    width: 45%;
  }
}
footer {
  width: 100%;
  text-align: center;
  padding: 20px;
  height: 200px;
}
footer p {
  font-size: 0.8em;
}






/*20250922*/

/* トグルコンテンツ */
.toggle-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    padding: 16px;
    padding-top: 32px;
    margin-top: -16px;
    font-size: 14px;
    border-radius: 12px;
    border: 1px solid #e0e6ef;
    box-shadow: 0 3px 6px rgba(0,0,0,0.04);
    transition: 
        opacity 0.4s ease,
        max-height 0.5s ease,
        padding 0.3s ease;
}

#why .why-list-item .toggle-content p{
  font-size: 14px;
}

.toggle-content.show {
    opacity: 1;
    max-height: 500px;
}

/* トグルボタン */
.js-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    padding: 12px 16px;
    border: 1px solid #d4dce8;
    border-radius: 4px;
    background: #f9fbfd;
    color: #333;
    text-align: left;
    transition: background 0.3s ease, border-color 0.3s ease;
        box-sizing: border-box;
        z-index: 1;
}

.js-toggle-btn:hover {
    background: #f1f6fb;
    border-color: #c3d1e6;
}

.js-toggle-btn:active {
    background: #e8f0f9;
}

/* プラス/マイナスアイコン */
.js-toggle-btn {
    position: relative; /* アイコン位置用 */
}

.js-toggle-btn::after,
.js-toggle-btn::before {
    content: "";
    position: absolute;
    right: 16px; /* ボタン右端に寄せる */
    top: 50%;
    transform: translateY(-50%);
    background-color: #666;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* 横棒 */
.js-toggle-btn::after {
    width: 12px;
    height: 2px;
}

/* 縦棒（＋の縦ライン） */
.js-toggle-btn::before {
    width: 2px;
    height: 12px;
        right: 21px;
}

/* 開いたときは縦棒を消す → − になる */
.js-toggle-btn.active::before {
    transform: scaleY(0);
    opacity: 0;
}



.graduate_list {
    list-style: none; /* デフォルトの黒丸を消す */
    padding-left: 0;
    margin: 0;
}

.graduate_list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 4px;
    font-size: 15px;
}

.graduate_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #77C8DF;
    border-radius: 50%;
    outline: 3px solid #EEF6F8;
}
.why-list-note {
    background-color: #fffcdc;
    /* padding: 16px; */
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 8px;
    position: relative;
    /* overflow: hidden; */
    border: 2px solid #FC8F2A;
}

/* 上から出る吹き出し */
.why-list-note::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 30px;
    width: 20px;
    height: 12px;
    background-color: #FC8F2A;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}


.note-headline{
    /* text-align: center; */
    font-size: 18px;
    /* border-bottom: 1px solid #FC8F2A; */
    color: #fff;
    margin-bottom: 12px;
    /* padding-left: 8px; */
    padding-bottom: 8px;
    padding-top: 8px;
    /* font-feature-settings: "palt"; */
    background-color: #FC8F2A;
    padding: 12px
}

.note-text{

  padding: 0 16px;
  display: block;
}
.note-text>p{
  font-size: 15px;
}