@charset "UTF-8";
/*----------------------------------------
  メインビジュアル
----------------------------------------*/
.main-visual {
  position: relative;
  width: 100%;
  height: 70vh;
  background-image: url("/wp-content/themes/wakate/img/main-visual.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1000;
}
.main-visual img {
  width: 100%; 
  height: auto; 
  object-fit: cover; 
}
.main-text {
  position: absolute; 
  top: 50px; 
  left: 50px; 
  color: white;
}
.main-text h1 {
  margin: 10px auto 0;
  color: #10273A; 
  font-size:3.8rem; 
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); 
}
.main-text h3 {
  margin: 0 auto 10px ;
  color: #10273A;
  font-size: 1.8rem; 
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); 
  text-align: left;
}
.main-text__box {
  width: 350px;
  color: #10273A; 
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); 
}
 .main-text__box p {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 500;
  }
@media (min-width: 768px) and (max-width: 1024px) {
  /* メインビジュアルを下げる */
  .main-visual {
  background-image: url("/wp-content/themes/wakate/img/main-visual.jpg");
  background-position: 100% center;
  background-repeat: no-repeat; 
  height: 60vh;
  }
 .main-text h1 {
  margin: 10px auto 0;
  color: #10273A; 
  font-size: clamp(20px, 5vw, 36px); 
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); 
}
.main-text h3 {
  margin: 0 auto;
  color: #10273A;
  font-size: clamp(14px, 3vw, 18px); 
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); 
  text-align: left;
}
.main-text__box {
  width: 300px;
  margin-top: 20px;
  color: #10273A; 
  font-size: clamp(14px, 3vw, 20px); 
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); 
}
 .main-text__box p {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 500;
  }
}
@media (min-width: 432px) and (max-width: 767px) {
  /* メインビジュアルを下げる */
  .main-visual {
	position: relative;  
    background-image: url("/wp-content/themes/wakate/img/main-sp.jpg");
    background-position: right top;
    background-size: cover;
    height: 50vh;
    margin-top: 30px; 
    overflow: hidden;
  }
  .main-text h1 {
    margin: 0 0 0 10px;
    color: #10273A; 
    font-size: clamp(28px, 2vw, 32px); 
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); 
  }
  .main-visual h3 {
    margin: 5px 0 0 10px;
    color: #10273A; 
    font-size: clamp(12px, 2vw, 14px); 
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); 
    text-align: left;
    word-wrap: break-word; 
    word-break: break-word; 
    white-space: normal; 
  }
.main-text {
   position: absolute; 
   top: 10px; 
   left: 10px; 
   color: white; 
  }
 .main-text__box {
display:none;
  }
}
@media (max-width: 431px) {
  /* メインビジュアルを下げる */
  .main-visual {
	position: relative;
    background-image: url("/wp-content/themes/wakate/img/main-sp.jpg");
    background-position: right top;
    background-size: cover;
    height: 45vh;
    margin-top: 60px;
  }
.main-visual img {
  height: 40vh;
  object-fit: cover;
  object-position: right center; 
}
   .main-text {
  position: static; 
  padding: 10px;
  text-align: left;
}
  .main-text h1 {
    margin-top: 0;
    color: #10273A;
    font-size: 2.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  }
  /* h3は非表示のまま */
  .main-visual h3 {
    display: none;
  }
  .main-text__box {
  position: absolute;
  bottom: 120px;
  right: 20px;
  max-width: 60%;
  color: #10273A;
  font-size: 1.8rem;
  font-weight:800;
  text-align: left;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); 
  word-wrap: break-word; 
  word-break: break-word; 
  white-space: normal;
  }
  .main-text__box p {
    margin: 0;
    font-size: 1.0rem;
    line-height: 1.5;
    font-weight: 500;
  }
  .main-text__box p {
  display:none;
	}
}
/*----------------------------------------
	ご挨拶
----------------------------------------*/
.greeting-block {
  display: flex;
  align-items: center; 
  gap: 40px;
  margin: 40px 0;
  border-radius: 16px;
  background: linear-gradient(90deg, #f5f8f9 0%, #ffffff 100%);
  color: #333;
  transition: all 0.6s ease-in-out;
  opacity: 0;
  transform: translateY(30px);
}
.greeting-block.visible {
  opacity: 1;
  transform: translateY(0);
}
.greeting-block:nth-child(even) {
  flex-direction: row-reverse;
}
.greeting__catchphrase {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight:600;
  font-size: 3.2rem;
  text-align: left;
  margin: 30px 0 10px 5px;
}
.greeting-photo-main {
  width: 30%;
  height:auto;
  max-width: 400px;
  padding: 0 10px;
}
.greeting-photo-main img {
  width: 220px !important;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.1); !important;
  border-radius: 8px;
}
  .greeting-photo {
    width: 100%;
    height: auto; 
    max-width: 300px;
    align-self:center;
    padding:0 20px;
  }
.greeting-photo img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.greeting-text {
  display: flex; 
  flex-direction: column;
  justify-content: flex-start;
  width: 60%;
  padding: 0 30px;
  font-size: 1.6rem;
  line-height: 1.8;
}
.greeting-name {
  font-weight: bold;
  margin-top: 0.5em; 
  padding-top: 0;
}
@media (max-width: 767px) {
  .greeting-block {
	display: flex;
    gap: 5px;
    flex-direction: column !important; 
    align-items: center;
    text-align: center;
    padding: 20px;
	background: linear-gradient(180deg, #f5f8f9 0%, #ffffff 70%);
  }
.greeting__catchphrase {
  text-align: center;
}
  .greeting-photo-main,
  .greeting-text {
    width: 100%;
    max-width: none;
    padding: 0;
  }
  .greeting-photo-main img {
    width: 80%;
    max-width: 300px;
  }
  .greeting-photo img {
    width: 80%;
    height: auto;
　text-align:center;
　align-self:center;
	  margin-top:20px;
  }
  .greeting-text {
    display: block; 
    width: 100%;
    padding: 0;
    line-height: 1.8;
	text-align:left;
  }
.greeting-name {
  margin-top: 0.5em;
  padding-top: 0;
}
}
/*----------------------------------------
	若手委員会とは
----------------------------------------*/
#about {
  position: relative;
  background: url('背景画像のURL') no-repeat center;
  background-size: cover;
  padding: 50px;
}
.about_box {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-position: right bottom;
  background-size: 60%; 
  background-repeat: no-repeat;
}
.about_box dl {
  display: grid; 
  grid-template-columns: 30% 1fr; 
  align-items: start; 
  max-width: 1000px;
  margin: 50px auto 0;
  background: rgba(255, 255, 255, 0.8); 
  border-radius: 10px;
}
.about_box dt {
  background: #3D5B81;
  color: white;
  padding: 15px;
  text-align: center;
  margin-bottom: 30px;
}
.about_box dd {
  padding: 0 0 40px;
}
.about_box dd p {
  margin: 0 0 20px;
  line-height: 1.6;
}
.about_box dd ol {
  margin: 0;
}
.about_box dd ol li {
  padding: 0;
  margin-bottom: 10px;
}
.symbol-image {
  width: 500px;
  height:auto;
}
.symbol-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 428px) {
  #about {
    position: relative;
    background: url('背景画像のURL') no-repeat center;
    background-size: cover;
    padding: 10px;
  }
  .about_box dl {
    display: block; 
  }
  .about_box dt, .about_box dd {
    display: block; 
  }
  .about_box dd {
    padding: 0 5px; 
  }
  .about_box ol {
    font-size: 1.2rem;
  }
}
@media (min-width: 429px) and (max-width: 767px) {
  #about {
    position: relative;
    background: url('背景画像のURL') no-repeat center;
    background-size: cover;
    padding: 10px;
  }
  .about_box dl {
    display: block; 
  }
  .about_box dt, .about_box dd {
    display: block; 
  }
  .about_box dd {
    padding: 0 5px; 
  }
}
/*----------------------------------------
	活動内容
----------------------------------------*/
.activity_contents{
  width:100%;
  display:flex;
  flex-wrap: wrap;
  gap: 20px; 
  justify-content: space-between;
  padding:0;
  counter-reset: number; 
}
.activity_box{
  width:48%;
  box-sizing: border-box;
}
.activity_text{
  padding:1rem 0 3rem 6rem;
}
.activity_contents h3 {
  counter-increment: number;
  position: relative;
  padding:1rem 0.5rem 1rem 7rem;
  background: #f1f8ff;
  margin: 0;
  text-align: left;
  font-size: 2.0rem;
}
.activity_contents h3:before {
  content: counter(number);
  position: absolute;
  left: 0; 
  top: 50%;
  transform: translateY(-50%);
  background-color: #3D5B81;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem; 
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
  border-radius: 5%; 
}
/* ロゴアニメーション用スタイル */
.logo-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.logo-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
}
.logo-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent 45%, rgba(255, 255, 255, 0.6) 50%, transparent 55%);
  transform: rotate(25deg);
  animation: shineMove 1.5s ease-in-out 3s forwards;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
}
.logo-wrapper .logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  object-fit: contain;
  animation: showBackground 1s ease-in forwards;
}
.logo-wrapper .shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  object-fit: contain;
  animation: showShine 1s ease-out 1s forwards, shineEffect 1s ease-out 2s forwards;
}
@keyframes showBackground {
  0% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes showShine {
  0% { opacity: 0; transform: translateX(100%); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes shineEffect {
  0% { filter: brightness(1); }
  50% { filter: brightness(2); }
  100% { filter: brightness(1); }
}
@keyframes glowEffect {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.5); }
  100% { filter: brightness(1); }
}
@keyframes shineMove {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(25deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(25deg);
    opacity: 0;
  }
}

/* キランアニメーション */
@media screen and (max-width: 768px) {
  .activity_box {
    width: 100%;
  }
}
@media (max-width: 428px) {
.activity_contents{
  width:100%;
  display:flex;
  flex-wrap: wrap; 
  gap: 20px; 
  justify-content: space-between;
  padding:0;
  counter-reset: number;
}
.activity_box{
  width:90%;
  box-sizing: border-box;
  margin:0 auto;
}
.activity_text{
  padding:2rem;
}
.activity_contents h3 {
  counter-increment: number;
  position: relative;
  padding:1rem 0.5rem 1rem 7rem;
  background: #f1f8ff;
  margin: 0;
  text-align: left;
  font-size: 1.6rem;
}
.activity_contents h3:before {
  content: counter(number);
  position: absolute;
  left: 0; 
  top: 50%;
  transform: translateY(-50%);
  background-color: #3D5B81;
  color: #fff; 
  font-weight: bold;
  width: 2.0em;
  line-height: 2.5em;
  text-align: center;
  border-radius: 5%; 
}
}
/*----------------------------------------
	メンバー
----------------------------------------*/
/* 途中で1280に拡大したい時
.member {
  width: 1280px;
  max-width: 100vw; 画面サイズが小さい時も対応
  position: relative;
  left: 50%;  中央寄せしつつ幅を広げるときはleft＋sransform!! 
  transform: translateX(-50%);
}
*/
.member-card {
  position: relative; 
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #f9f9f9;
  text-align: left;
}
.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 10%;
  object-fit: cover;
  position: absolute;
  top: 30px;
  right: 35px;
  border: 2px solid #fff;
}
.member-card h4 {
  margin: 0 0 5px;
  font-size: 2.0rem;
}
.member-card dt {
  margin: 10px 0 0;
}
.member-card dd {
  margin: 0 15px;
  line-height: normal;
  padding-bottom: 10px;
}
/*----------------------------------------
  アコーディオン
----------------------------------------*/
.accordion {
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.accordion__title {
  padding: 15px 50px 15px 15px;
  color: #10273A;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  position: relative; 
}
.accordion__content {
  display: none;
  position: relative; 
  padding: 0 30px 15px;
}
.member-info {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.member-info dd {
  text-align: left;
  white-space: nowrap;
}
.member-info dd:nth-child(2) { 
  flex: 1; 
  min-width: 200px; 
}
.sotunen {
  font-size: 1.6rem;
  font-weight: 400;
  margin-left: 20px;
}
/*----------------------------------------
  開閉
----------------------------------------*/
/* アイコンの指定 */
.accordion__title::before {
  position: absolute;
  content: "\f13a"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.8rem;
  right: 50px;
  top: 50%;
  color:#e66b89;
  transform: translateY(-50%);
  transition: transform 0.3s ease; 
}
/* アクティブ時のアイコン変更 */
.accordion__title.active::before {
  content: "\f077"; 
  font-weight: 900;
  font-size: 1.6rem;
}
/* アコーディオンの内容 */
.accordion__content {
  display: none;
  padding: 0 30px 15px;
}
/* コンテンツなし（押せない状態） */
.accordion__title.disabled {
  pointer-events: none;
  cursor: not-allowed;
  transform: none !important;
}
/* 押せないときは「＋」を非表示に */
.accordion__title.disabled::before {
  content: "" !important;
}
@media (max-width: 767px) {
  .accordion__title {
    padding-right: 60px;
  }
  .accordion__title::before {
    position: absolute;
    content: "\f13a"; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900;
    font-size: 1.4rem;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
	  	  	  padding-right:15px;
	  padding-top:30px;
  }
  .member-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
  }
  .member-info dd:nth-child(1) { 
    text-align: left;
  }
  .member-info dd:nth-child(2) { 
    display: block;
    flex-grow: 1; 
    white-space: normal;
    margin-left: 15px; 
    min-width: 100px; 
  }
  .sotunen {
    font-size: 1.2rem;
    font-weight: 400;
    margin-left: 20px;
  }
  .list_open { 
    flex: none;
    min-width: 30px; 
    margin-left: 5px; 
  }
  .accordion__title {
    padding: 15px;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
  }
  .member-card {
    overflow: hidden; 
    margin: 0;
  }
  .member-card dl {
    margin: 0;
  }
  .member-photo {
    float: left;
    margin: 0; 
    width: 100px; 
    border-radius: 10px; 
  }
  .member_dd { 
    margin: 0;
    padding: 0;
    max-width: 100px;
  }
/* アコーディオンの内容 */
.accordion__content {
  display: none;
  padding: 0 15px 15px;
}
/* コンテンツなし（押せない状態） */
.accordion__title.disabled {
  pointer-events: none;
  cursor: not-allowed;
  transform: none !important;
}
/* 押せないときは「＋」を非表示に */
.accordion__title.disabled::before {
  content: "" !important;
}
.member-card dd:first-of-type { 
  max-width:70%;
  margin:0 0 0 15px;
  line-height: normal;
  padding-bottom: 10px;
  }
}
@media (max-width: 428px) {
  .accordion__title::before {
    position: absolute;
    content: "\f067"; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900;
    font-size: 1.4rem;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .sotunen {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    display: block;
  }
/* アコーディオンの内容 */
.accordion__content {
  display: none;
  padding: 0 15px 15px;
}
/* コンテンツなし（押せない状態） */
.accordion__title.disabled {
  pointer-events: none;
  cursor: not-allowed;
  transform: none !important;
}
/* 押せないときは「＋」を非表示に */
.accordion__title.disabled::before {
  content: "" !important;
}
.member-card dd:first-of-type { 
  max-width:150px;
  margin:0 0 0 15px;
  line-height: normal;
  padding-bottom: 10px;
  }
}
@media (min-width: 391px) and (max-width: 430px) {
  .accordion__title::before {
    font-size: 1.2rem;
    right: 15px;
	  padding-right:15px;
	  padding-top:30px;
  }
}
/*----------------------------------------
	意見箱
----------------------------------------*/
.opinion_message {
  width: 80%;
  margin: 40px auto 80px;
}
.opinion_example {
  background-image: url("/wp-content/themes/wakate/img/opinion_bg.png"); 
  height: 100%;
  position: relative;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.4);
  background-blend-mode: lighten;
  padding: 80px 0 400px;
}
.circle-container {
  display: flex;
  justify-content: space-between;
  height: auto;
  padding: 0 50px;
}
.circle {
  width: 30vw; 
  max-width: 80%;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 20px;  
}
.circle-container .circle:nth-child(1) {
  background-image: url("/wp-content/themes/wakate/img/ring1.png");
}
.circle-container .circle:nth-child(2) {
  background-image: url("/wp-content/themes/wakate/img/ring2.png");
}
.circle-container .circle:nth-child(3) {
  background-image: url("/wp-content/themes/wakate/img/ring3.png");
}
.circle {
  transition: box-shadow 0.3s ease, transform 0.3s ease; 
}
.circle:hover {
  transform: scale(1.05); 
}
.circle dt {
  font-size: 2.4rem;
  align-items: start; 
  margin-bottom: 20px;
}
.circle dd {
  font-size: 90%;
  max-width: 100%; 
  margin-inline-start: 0;
  line-height: 1.6; 
}
.opinion_note {
  font-size: 1.4rem;
  margin: 0 auto;
  width: 85%;
}
.opinion_note ul {
  list-style: square; 
}
/* スマホ対応 */
@media (max-width: 940px) {
  /* .opinion_message */
  .opinion_message {
    width: 90%; 
    margin: 20px auto 40px; 
  }
  /* .opinion_example */
  .opinion_example {
    padding: 0; 
    background-position: center center; 
    background-image: url("/wp-content/themes/wakate/img/opinion_bg.png"); 
    height: 100%;
    position: relative;
    background-size: 130% auto;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.4);
    background-blend-mode: lighten;
  }
  /* .circle-container */
  .circle-container {
    flex-direction: column; 
    gap: 20px; 
  }
  /* .circle */
  .circle {
    width: 100%; 
    max-width: 250px;
    height: auto; 
    background-size: contain;
    background-position: center; 
    background-repeat: no-repeat;
    padding: 20px;
    margin: 0 auto; 
  }
  .circle dt {
    font-size: 2.4rem;
    align-items: start; 
    margin-bottom: 10px;
  }
  /* .circle dl */
  .circle dl {
    flex-direction: column;
    align-items: flex-start;
  }
  /* .circle dd */
  .circle dd {
    max-width: 100%; 
    margin-inline-start: 0;
    font-size: 1.4rem;
  }
  .circle_bg {
    background-color: #fff;
  }
  /* .opinion_note */
  .opinion_note {
    width: 95%; 
  }
  /* .opinion_note ul */
  .opinion_note ul {
    padding-left: 20px; 
  }
}
/*----------------------------------------
	送信ボタン
----------------------------------------*/
/*borer-boxに */
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%; 
}
.btn, a.btn, button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn-wrap {
  margin: 130px auto 50px;
  text-align: center;
}
a.btn-c {
  font-size: 2.2rem;
  position: relative;
  padding: 0.25rem 5rem 2.5rem 7.5rem;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#24c389), to(#2ba5e2));
  background-image: -webkit-linear-gradient(left, #24c389 0%, #2ba5e2 100%);
  background-image: linear-gradient(90deg, #24c389 0%, #2ba5e2 100%);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 2px 0 rgba(0, 0, 0, .0.3);
}
a.btn-c span {
  font-size: 1.5rem;
  position: absolute;
  top: -10px;
  left: calc(50% - 150px);
  display: block;
  width: 300px;
  padding: 0.2rem 0;
  color: #32b16c;
  border: 2px solid #32b16c;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
a.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #30a967;
  -webkit-box-shadow: 0 2px 0 #2c9d60;
  box-shadow: 0 2px 0 #2c9d60;
}
a.btn-c:hover:before {
  left: 2rem;
}
/* フォーム完成まで */
a.btn-c.is-disabled {
  pointer-events: none;  /* 押せない */
  background: linear-gradient(90deg, #e94b4b 0%, #ff7b7b 100%);
  color: #fff;
  opacity: 0.9;
  cursor: default;
  box-shadow: none;
}

a.btn-c.is-disabled span {
  border-color: #e94b4b;
  color: #e94b4b;
  background: #fff0f0;
}

@media (max-width: 428px) {	
a.btn-c {
  font-size: 1.8rem;
  position: relative;
  padding: 1rem 3rem 2.5rem 3rem;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#24c389), to(#2ba5e2));
  background-image: -webkit-linear-gradient(left, #24c389 0%, #2ba5e2 100%);
  background-image: linear-gradient(90deg, #24c389 0%, #2ba5e2 100%);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 2px 0 rgba(0, 0, 0, .0.3);
}		
}
/*----------------------------------------
	トピックス
----------------------------------------*/
.news_container {
  width: 90%;
  max-width: 1000px;
  margin: 50px auto;
}
.news_list {
  margin: 20px 0;
  border-top: 1px dashed #3D5B81;
}
.news_list li {
  font-size: 1.6rem;
  padding: 15px 5px;
  border-bottom: 1px dashed #3D5B81;
  white-space: normal; 
  overflow: visible; 
  text-overflow: clip; 
  word-wrap: break-word; 
}
.date {
  font-size: 1.6rem;
  margin-right: 10px;
}
.category {
  display: inline-block;
  color: #fff;
  width: 120px;
  font-size: 1.4rem;
  text-align: center;
  margin-right: 10px;
  padding: 2px 10px;
  background-color: #3D5B81;
}
.news_text a {
  color: #10273A;
  font-size: 1.6rem;
}
.news_btn {
  text-align: center;
  margin-top: 50px;
}
.news_btn a {
  color: #3D5B81;
}
.btn2 {
  color: #75b46e;
  padding: 10px 50px;
  background: #fff;
  border: 2px solid #3D5B81;
  border-radius: 50px;
  transition: all 0.5s;
}
.btn2:hover {
  color: #fff;
  background: #3589d4;
}
.btn2:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  font-weight: 900;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .news_list ul {
    display: flex;
    flex-direction: column; 
    gap: 10px; 
  }
  .news_list li {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    gap: 10px; 
  }
  .date {
    white-space: nowrap; 
  }
  .category {
    white-space: nowrap; 
  }
  .news_text {
    max-width: 100%; 
    overflow-wrap: break-word; 
    word-wrap: break-word; 
  }
}
/*----------------------------------------
	リンク
----------------------------------------*/
.link__box {
  margin: 0 100px 100px;
}
/*
.link_box h3 {
    padding: 1rem 2rem;
  border-bottom: 3px solid #22ac38;
  background: linear-gradient(90deg, #2af598 0%, #009efd 100%);
}
*/
.link__box h3 {
  position: relative;
  padding: 1rem 2rem;
  border-bottom: 6px solid #3589d4;
}
.link__box h3:before {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20%;
  height: 6px;
  content: '';
  background: #6ab7ea;
}
.dl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 14px;
}
.dtdd {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 16px;
  margin: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.dtdd dt {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 5px;
  color: #333;
}
.dtdd dd {
  margin: 4px 0;
}
.dtdd dd a:hover {
  background-color: #3D5B81;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .link__box {
    margin: 0 20px 80px;
  }
  .dl-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dtdd {
    padding: 18px;
  }
  .dtdd dt {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .dtdd dd {
    font-size: 1.3rem;
  }
  .dtdd dd a:hover {
     font-size: 1.2rem;
    padding: 10px 14px;
    background-color: #0077cc;
    color: #fff;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
  }
  .link__box h3 {
    font-size: 1.6rem;
  }
  #link h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}

/*-----改行オンオフ------------------------
    .sp-hide {
    display: none; /* 改行しない  */
