
@charset "UTF-8";

#nav.nav {
  z-index: 999;
}
/*----------------------------------------
 * LAYOUT
----------------------------------------*/
.citizens-inner,
.operators-inner {
  position: relative;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: var(--space-20);
}
@media (max-width: 640px) {
  .citizens-inner,
  .operators-inner {
    width: 100%;
  }
}

/*----------------------------------------
 * COMPONENTS
----------------------------------------*/
.heading-1 {
  position: relative;
  margin-bottom: 32px;
  text-align: center;
  overflow: hidden;
}
.heading-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 33%;
  display: block;
  width: 33%;
  height: 3px;
  background-color: var(--color-accent-yellow);
}
.heading-1 span {
  position: relative;
  clear: both;
  display: inline-block;
  min-width: 430px;
  margin-top: var(--space-5);
  padding-bottom: var(--space-20);
  color: var(--color-ink);
  font-family: "じゅん 501";
  font-weight: bold;
  font-size: 28px;
  text-align: center;
}
.heading-1 span:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: block;
  width: 33%;
  height: 3px;
  background-color: #CCBD96;
}
.heading-1 span:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: block;
  width: 33%;
  height: 3px;
  background-color: var(--color-gold);
}

.service-box-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.service-box-item {
  width: 365px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.service-box-item:nth-child(3),
.service-box-item:nth-child(4) {
  margin-top: 80px;
}
.service-box-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 62px;
  border-radius: 10px 10px 0 0;
  background-color: var(--color-accent-yellow);
}
.service-box-title h3 {
  color: var(--color-white);
  font-size: 28px;
  font-weight: bold;
}
.service-box-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 260px;
  padding: 18px 42px;
  border-radius: 0 0 10px 10px;
  background-color: var(--color-white);
  font-size: var(--fs-18);
  text-align: left;
}
.service-box-content.high {
  height: 320px;
}
.service-box-content p {
  margin-bottom: var(--space-40);
}
.service-box-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 12px 0 12px 24px;
  border-radius: 10px;
  border-right: 5px solid #F5D562;
  border-bottom: 5px solid #F5D562;
  background-color: var(--color-accent-yellow);
  color: var(--color-white);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  transition: all 0.3s ease;
}
.service-box-btn a img {
  padding-left: 24px;
  transform: rotate(-90deg) translateX(-12px);
}
.service-box-btn a:hover {
  opacity: 0.7;
}

.info-box {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--space-40) 60px;
  border-radius: 10px;
  background-color: var(--color-white);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.info-box-list {
  min-width: 428px;
}
.info-box-item {
  display: flex;
  padding-bottom: var(--space-20);
  border-bottom: 1px dashed  #707070;
}
.info-box-item + .info-box-item {
  margin-top: 24px;
}
.info-box-item-left {
  padding-left: 24px;
  padding-right: 24px;
  color: var(--color-accent-yellow);
  font-size: var(--fs-16);
  font-weight: bold;
}
.info-box-item-right {
  font-size: var(--fs-16);
  font-weight: bold;
  text-align: left;
}
.info-box-item-right a {
  color: var(--color-text);
}
.info-box-item-right a:hover {
  opacity: 0.7;
}
.link-archive {
  position: absolute;
  top: 40px;
  right: 120px;
  color: #F6B921;
  z-index: 999;
}
.link-archive:hover {
  opacity: 0.7;
}
.link-archive-sp {
  display: none;
}
@media (max-width: 640px) {
  .heading-1::before {
    left: 50%;
    width: 84px;
    margin-left: -42px;
  }
  .heading-1 span {
    min-width: initial;
    width: 249px;
    font-size: 6vw;
  }
  .heading-1 span:before {
    width: 83px;
  }
  .heading-1 span:after {
    width: 83px;
  }
  .service-box-wrap {
    width: 100%;
  }
  .info-box-list {
    min-width: initial;
  }
  .info-box {
    width: 90%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .info-box-item {
    flex-direction: column;
  }
  .info-box-item-left {
    padding-left: 0;
    text-align: left;
  }
  .info-box-item-right {
    width: 100%;
  }
  .service-box-wrap {
    flex-direction: column;
    align-items: center;
  }
  .service-box-item {
    width: 90%;
  }
  .service-box-item:nth-child(1),
  .service-box-item:nth-child(2),
  .service-box-item:nth-child(3),
  .service-box-item:nth-child(4) {
    margin-top: var(--space-40);
  }
  .service-box-title h3 {
    font-size: 6vw;
  }
  .service-box-content {
    height: auto;
  }
  .service-box-btn a {
    font-size: 6vw;
  }
  .link-archive {
    display: none;
  }
  .link-archive-sp {
    display: block;
    margin-top: 24px;
    color: #F6B921;
    font-size: var(--fs-20);
  }
  .link-archive-sp:hover {
    opacity: 0.7;
  }
}

/*----------------------------------------
 * HERO
----------------------------------------*/
.hero {
  position: relative;
  height: 520px;
  margin-top: 140px;
}

.swiper {
  width: 100%;
  height: 520px;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@keyframes zoomUp { /* 1.15倍させる指定 */
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.10);
    transform: scale(1.10);
  }
}

.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img { 
  -webkit-animation: zoomUp 10s linear 0s;
  animation: zoomUp 10s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.slide-img {
  background-size: cover; 
  background-position: center center; 
  height: 520px;
}

.hero-inner {
  position: absolute;
  top: 10%;
  left: calc(50% - 560px);
  text-align: left;
  z-index: 9;
}
.hero-inner h2 {
  color: var(--color-text);
  font-size: 38px;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  text-shadow: 1px 1px 2px var(--color-white);
}

@media (max-width: 1128px) {
  .hero-inner {
    left: 10%;
  }
}

@media (max-width: 640px) {
  .hero {
    margin-top: 0;
  }
  .hero-inner {
    top: 40%;
    left: auto;
    width: 100%;
    padding-left: 4vw;
    text-align: center;
  }
  .hero-inner h2 {
    font-size: 7.4vw;
  }
}

/*----------------------------------------
 * BANNER
----------------------------------------*/
.banner-area-inner {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--space-30);
  padding-bottom: var(--space-10);
}
.banner-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: var(--space-16);
}
.banner-list-item {
  width: 300px;
  height: 90px;
  margin-bottom: var(--space-20);
}
.banner-list-item img {
  width: 100%;
}
.banner-list-item a:hover {
  opacity: 0.7;
}
@media (max-width: 640px) {
  .banner-area-inner {
    width: 100%;
  }
  .banner-list {
    flex-direction: column;
  }
  .banner-list-item {
    margin-left: auto;
    margin-right: auto;
  }
}

/*----------------------------------------
 * CITIZENS
----------------------------------------*/
.citizens {
  background-color: #FFF5D9;
}
.citizens-content {
  position: relative;
  margin-bottom: 80px;
  z-index: 99;
}
.citizens-message,
.operators-message {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  padding-left: var(--space-40);
  padding-right: var(--space-40);
  color: var(--color-text);
  font-size: var(--fs-18);
  text-align: left;
}
.citizens-message.center,
.operators-message.center {
  text-align: center;
}
@media (max-width: 640px) {
  .citizens-message,
  .operators-message {
    width: 100%;
  }
}

/*----------------------------------------
 * OPERATORS
----------------------------------------*/
.operators-content {
  position: relative;
  margin-bottom: 80px;
}
.operators-message.wide {
  width: 1000px;
}

.color_label {
  display: inline;
  border: 1px solid #DFDFDF;
  border-radius: 4px;
  background-color: #eee;
  padding: 6px 8px;
}
.color_label.kensyukai_cat_01 {
  background-color: #d5ffd9;
}
.color_label.renrakukai_cat_01 {
  background-color: #dff8ff;
}
.color_label.benkyoukai_cat_01 {
  background-color: #ebfbbf;
}
.color_label.kamashien_cat_01 {
  background-color: #ffe9ac;
}

.doc-download-btn {
  margin-top: 80px;
  margin-bottom: 24px;
}
.doc-download-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 12px 0 12px 24px;
  border-radius: 10px;
  border-right: 5px solid #F5D562;
  border-bottom: 5px solid #F5D562;
  background-color: var(--color-accent-yellow);
  color: var(--color-white);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  transition: all 0.3s ease;
}
.doc-download-btn a img {
  padding-left: 24px;
  transform: rotate(-90deg) translateX(-12px);
}
.doc-download-btn a:hover {
  opacity: 0.7;
}

@media (max-width: 640px) {
  .operators-message.wide {
    width: 100%;
  }
  .schedule_label {
    line-height: 2;
  }
  .doc-download-btn a {
    font-size: 25px;
  }
}

/*----------------------------------------
 * UTILITY
----------------------------------------*/
.sp {
  display: none!important;
}
.btn-disabled {
  position: relative;
  pointer-events: none;
  opacity: .5;
}
@media (max-width: 640px){
  .sp {
    display: block!important;
  }
}

/* 2024.10.01 */
.banner-guide-btn {
  display: inline-flex;
  align-items: center;
  padding: var(--space-10) var(--space-20);
  margin-bottom: var(--space-16);
  background-color: #4CAF50;
  color: var(--color-white);
  text-decoration: none;
  border-radius: 13px;
  font-size: var(--fs-18);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.banner-guide-btn:hover {
  opacity: 0.8;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.banner-guide-btn span {
  margin-right: var(--space-10);
}

.banner-guide-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.banner-guide-btn:hover svg {
  transform: translateX(5px);
}

/* 20240725 */
.training-button-wrapper {
  background-color: #0f96cf24;
  padding: var(--space-40) 24px;
}
.training-button__inner {
  padding: var(--space-40) 24px;
}
.training-button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 24px 12px;
  border-radius: 10px;
  border-right: 5px solid #F5D562;
  border-bottom: 5px solid #F5D562;
  background-color: var(--color-accent-yellow);
  color: var(--color-white);
  font-size: 22px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-weight: 600;
  line-height: 1.5;
}
.training-button:hover {
  opacity: 0.7;
}
@media (max-width: 640px) {
  .training-button-wrapper {
    padding: 24px 0;
  }
  .training-button {
    font-size: var(--fs-18);
  }
}

/* 20240912 追加 */
.visible-sp {
display: none!important;
}
.hidden-sp {
display: block!important;
}
.seniorguideListWrap.support-center {
max-width: 800px;
margin: 0 auto 49px;
padding: 32px 24px;
border: 6px solid #EAB947;
background-color: #fefad8;
border-radius: 16px;
}
.seniorguideListWrap.support-center h3 {
padding: 0 32px;
font-size: 28px;
font-family: 'Kosugi Maru', sans-serif;
line-height: 1.4;
}
.seniorguideListWrap.support-center h3 span {
  background: linear-gradient(transparent 70%, #EAB947 40%);
}
.support-center__btn-wrap {
display: flex;
justify-content: center;
margin: 24px auto;
}
.support-center__photo-wrap {
display: flex;
justify-content: center;
column-gap: 24px;
margin: 32px auto 24px;
}
.support-center__photo-wrap img {
width: 200px;
height: auto;
border-radius: 16px;
}
p.support-center__text {
font-size: var(--fs-18);
text-align: center;
line-height: 1.8;
}
.support-center__btn-wrap a {
display: flex;
justify-content: space-between;
align-items: center;
width: 47%;
height: 72px;
padding: 8px 24px;
background: #EAB947;
border-radius: 24px;
box-shadow: 4px 2px 0px 4px #E9E89B;
color: #333;
font-size: var(--fs-20);
}
.support-center__btn-wrap a:hover {
transform: translateY(2px);
box-shadow: 2px 1px 0px 2px #E9E89B;
opacity: 0.8;
}
.support-center__btn-name {
width: calc(100% - 40px);
text-align: center;
}
.support-center__btn-arrow {
width: 40px;
}
@media (max-width: 640px) {
.visible-sp {
  display: block!important;
}
.hidden-sp {
  display: none!important;
}
.seniorguideListWrap.support-center {
  width: 90%;
}
.seniorguideListWrap.support-center h3 {
  font-size: 21px;
}
p.support-center__text {
  font-size: var(--fs-16);
  text-align: left;
}
.support-center__photo-wrap img {
  width: 100%;
}
.support-center__photo-wrap img:nth-child(2),
.support-center__photo-wrap img:nth-child(3) {
  display: none;
}
.support-center__btn-wrap a {
  width: 100%;
}
}

/* 20250225 */
.zinseikaigi {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 32px 24px;
  height: 100%;
  border-radius: 10px;
  background-color: #E3F2FD;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.zinseikaigi__title {
  /* padding: 0 32px;
  font-size: 32px;
  font-family: 'Kosugi Maru', sans-serif;
  line-height: 1.4; */
  margin-left: 60px;
  margin-right: 60px;
  margin-bottom: 32px;
  padding: 8px 0;
  font-size: 40px;
  font-family: 'Kosugi Maru', sans-serif;
  line-height: 1.7;
  /* background: linear-gradient(90deg, var(--color-white), #e3f2fd); */
  /* background-color: #fff; */
  /* background-color: #FFF5D9; / */
  /* background-color: #faf7e6; */
  background-color: #fffaf0;
  /* background-color: #fff5e6; */
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

}
.zinseikaigi__title span {
  background: linear-gradient(transparent 74%, #54a9fa 40%);
}
.zinseikaigi__text {
  margin-top: 24px;
  margin-bottom: var(--space-40);
  margin-left: 60px;
  margin-right: 60px;
  text-align: left;
  line-height: 1.7;
}
.support-center__btn-wrap.zinseikaigi__btn a {
  padding: 8px var(--space-10);
  background: #54a9fa;
  box-shadow: 4px 2px 0px 4px #75bcff;
  color: var(--color-white);
}
.support-center__btn-arrow {
  margin-top: 6px;
}

.zinseikaigi__video-wrap {
  margin-bottom: var(--space-40);
}
.zinseikaigi__video-wrap-inner {
  padding: 0 60px;
}
.zinseikaigi__video-item {
  /* width: calc((100% - 24px) / 2); */
  width: 100%;
}
.zinseikaigi__video-item + .zinseikaigi__video-item {
  margin-top: 72px;
}
.zinseikaigi__video-item iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
.zinseikaigi__video-item-title {
  margin-top: 8px;
  margin-bottom: var(--space-20);
  text-align: left;
  font-size: 24px;
  line-height: 2;
  
}
.zinseikaigi__video-item-title .title-main {
  display: block;
  margin-top: 4px;
  margin-bottom: 12px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  border-left: 4px solid #54a9fa;
  background-color: var(--color-white);
}
.zinseikaigi__video-item-title .title-main .title-main-text {
  display: inline-block;
  padding-left: 12px;
  padding-right: 12px;
  /* border-left: 4px solid #54a9fa;
  background-color: #fff; */
  font-size: var(--fs-20);
}
.zinseikaigi__video-item-title span {
  display: block;
  font-size: var(--fs-16);
  line-height: 1.7;
}
.zinseikaigi__video-item-title span.small {
  display: inline-block;
}
.zinseikaigi__video-item-title span.small.accent {
  font-weight: bold;
  /* color: #54a9fa; */
  color: #000;
}
@media (max-width: 640px) {
  .zinseikaigi__title {
    font-size: 24px;
  }
  .zinseikaigi__video-item-title span.small {
    display: block;
    padding-left: 12px;
  }
  .zinseikaigi__text {
    margin-left: 24px;
    margin-right: 24px;
  }
  .zinseikaigi__video-wrap-inner {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .zinseikaigi__video-item + .zinseikaigi__video-item {
    margin-top: var(--space-40);
  }
  .zinseikaigi__title {
    margin-left: 0;
    margin-right: 0;
    
  }
  .zinseikaigi__video-item-title .title-main .title-main-text {
    padding-left: 8px;
    padding-right: 8px;
  }
  .zinseikaigi__video-item-title span {
    font-size: var(--fs-14);
    line-height: 1.5;
  }
  .zinseikaigi__text {
    margin-left: 0;
    margin-right: 0;
  }
  .zinseikaigi__video-wrap-inner {
    padding: 0;
  }
  .support-center__btn-wrap.zinseikaigi__btn a {
    padding: 8px 4px;
  }
  .support-center__btn-name {
    font-size: var(--fs-16);
  }
}

/* 20250331 追加 */
.note-embed-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto 49px;
  padding: 32px 24px;
  border: 6px solid #EC6E18;
  background-color: var(--color-white);
  border-radius: 16px;
}
.note-embed-wrap h3 {
  padding: 0 32px;
  font-size: 40px;
  font-family: 'Kosugi Maru', sans-serif;
  line-height: 1.4;
}
.note-embed-wrap h3 span {
  background: linear-gradient(transparent 70%, #F9C576 40%);
}
.note-embed-wrap p {
  margin-top: var(--space-16);
  margin-bottom: 24px;
  font-size: var(--fs-18);
  font-family: 'Kosugi Maru', sans-serif;
  line-height: 1.8;
}
.note-embed-list {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.note-embed-item {
  width: calc(33% - 12px);
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.note-embed-item a {
  color: #000!important;
  transition: all 0.3s ease;
}
.note-embed-item a:hover {
  opacity: 0.8;
}
.note-embed-item a:visited {
  color: #000!important;
}
.note-embed-item img {
  max-width: 100%;
  height: auto;
}
.note-embed-item-title {
  padding: 12px 8px;
  text-align-last: left;
  
}
@media (max-width: 640px) {
  .note-embed-wrap {
    padding: 32px var(--space-16);
  }
  .note-embed-wrap h3 {
    font-size: 24px;
  }
  .note-embed-wrap h3 span {
    background: linear-gradient(transparent 85%, #F9C576 70%);
  }
  .note-embed-wrap p {
    font-size: var(--fs-16);
  }
  .note-embed-list {
    flex-direction: column;
    row-gap: 24px;
  }
  .note-embed-item {
    width: 100%;
  }
}

/* 20250402 追加 */
.citizens-message.secondary {
  position: relative;
  margin-top: 32px;
}
.citizens-message.secondary a {
  position: absolute;
  right: 24px;
  bottom: 0;
  color: #F6B921;
  font-size: var(--fs-16);
}
.secondary.sp {
  display: none;
}
@media (max-width: 768px) {
  .secondary.sp {
    display: block;
    margin-top: 24px;
    font-size: 24px;
    color: #F6B921;
  }
}

/* ============================================================
   home.php の直書き<style>から移植（F4, 2026-06-03）。
   注意: 上の「20240725」.training-button 系（黄色 #F5D562 /
   accent-yellow）と同セレクタだが、本ブロックは赤橙系
   （#e34c26 / #ee6d4d / #ffffff）で値が異なる。元々この直書きが
   body内で head の home.css を後勝ちで上書きしており、実画面は
   赤橙が表示されていた。挙動維持のため末尾に置いて後勝ちを保持。
   どちらの配色が正かは別途デザイン判断（重複解消は要検討）。
   ============================================================ */
.training-button-wrapper {
  background-color: #0f96cf24;
  padding: var(--space-40) 24px;
}
.training-button__inner {
  padding: var(--space-40) 24px;
}
.training-button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 24px 12px;
  border-radius: 10px;
  border-right: 5px solid #ee6d4d;
  border-bottom: 5px solid #ee6d4d;
  background-color: #e34c26;
  color: var(--color-white);
  font-size: 22px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-weight: 600;
  line-height: 1.5;
}
.training-button:hover {
  opacity: 0.7;
}
@media (max-width: 640px) {
  .training-button-wrapper {
    padding: 24px 0;
  }
  .training-button {
    font-size: var(--fs-18);
  }
}