/* 
Theme Name:mizukamiseisakujo
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
html{
    overflow-x: hidden;
  }
  body {
    font-family: 'Noto Sans JP','YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    background-color: #fff;
    color: #333333;
    /* overflow-y: scroll; */
    overflow-x: clip;
    box-sizing: border-box;
}


img,
video {
    width: 100%;
}

a {
    text-decoration: none;
    color:#402E76;
}

li {
    list-style: none;
}
p,a,li {
    line-height:1.75;
}
/* 共通 */
.pc,
.pc_s {
    display: block;
}

.sp,.sp_s {
    display: none !important;
}

@media (max-width: 768px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}
@media (max-width: 480px) {
    .pc_s {
        display: none !important;
    }

    .sp_s {
        display: block !important;
    }
}
.breadcrumb_block {
    background-color: transparent;
    margin-top:-8px;
    color:#fff;
    position: absolute;
    bottom:10px;
    left:40px;
}

.breadcrumbsWrap {
    width: fit-content;
    padding: 4px;
    padding-left: 60px;
    font-size: 12px;
    color: 000;
    white-space: nowrap;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
   
}

.breadcrumbs {
    display: flex;
    align-items: center;
    text-align: center;
}

.breadcrumbs a {
    color:#fff;
}
.breadcrumbs .arrow {
    display: inline-block;
    content: '';
    width: 6px;
    height: 6px;
    border-top: solid 1.5px #fff;
    border-right: solid 1.5px #fff;
    margin-right: 10px;
    margin-left: 10px;
    transform: rotate(45deg);
}


/* swiper */
.swiper-slide {
    width: 100%;
}
/* 
.swiper-slide img {
    height: 400px;
   
    object-fit: cover;

} */

/* スライドの動き等速 */
.swiper .swiper-wrapper,.swiper2 .swiper-wrapper  {
    transition-timing-function: linear;
}
.right-align {
    display: flex;
    justify-content: flex-end;
  }
@media (max-width: 750px) {

    /* 
    .swiper .swiper-slide {
        height: 30vh !important;
        
    } */
    .swiper .swiper-slide img {
        height: 100%;
    }

}


/* header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px;
    background-color: transparent;
    transition: all 0.3s ease;
   
}
header {
    position: relative;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    padding: 15px 5vw;
    z-index: 100;
}

.header-inner h1 {
    margin: 0 0 0 5vw;
    font-weight: 700;
    font-size: clamp(0.75rem, 0.390rem + 1.644vw, 1.5rem);
    text-align: center;
    line-height: 100%;
}
.header-inner h1 span {
    font-weight: 500;
    font-size: clamp(0.5rem, 0.380rem + 0.548vw, 0.75rem);
    line-height: 100%;
}
.logo {
    width:fit-content;
    margin:22px 32px;
}
.header_nav_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: hsla(0, 0%, 100%, 0.274);
    border:1px solid #fff;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}
.header_page .header_nav_wrapper {
    background-color: #fff;
}

.header_nav {
   
   
    height: fit-content;
    padding: 24px 48px;
  
    width:fit-content;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.header.scrolled .header_nav {
    background-color: transparent;
    box-shadow: none;
}

.nav_list {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: flex-end;
}


.nav_item {
    width: fit-content;
    white-space: nowrap;
    position: relative;

}

.nav_item a {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}
.header_dropdowmenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}
.header_dropdowmenu li a {
    display: block;
    padding: 12px 24px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    transition: background 0.3s;
    font-size: 16px;
}
.header_dropdowmenu li a:hover {
    background-color: #f5f5f5;
    color: #402E76;
}
.navItem:hover .header_dropdowmenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.navItem {
    position: relative;
    font-weight: bold;
    cursor: pointer;
}
.navItem > a {
    position: relative;
    padding-right: 20px;
}
.navItem > a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s;
}
.navItem:hover > a::after {
    transform: translateY(-50%) rotate(-135deg);
}
.contact_nav a {
    background: #402E76;
    color: #fff;
    border-radius: 30px;
    position: relative;
    font-size: 16px;
    padding: 10px 45px;
}

/* .contact_nav a:before {
    content: "\f0e0";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: #fff;
} */
.contact-btn-small a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(6.25rem, 1.875rem + 20vw, 15.375rem);
    height: clamp(1.375rem, 0.416rem + 4.384vw, 3.375rem);
    margin: 0 auto;
    padding: 10px 20px;
    background: url("../img/btn-small.webp") no-repeat center center / contain;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 30px;
}
.contact-btn-small:hover {
  opacity: 0.7;
}
.logo img {
    max-width: 250px;
}

/* ハンバーガーメニュー */
#drawer {
    position: relative;
    z-index: 1000;
}

#navTgl {
    display: none;
}

#drawer .open {
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top:16px;
    background-color: hsla(0, 0%, 100%, 0.323);
    border:1px solid #fff;
    border-radius: 50%;
    backdrop-filter: blur(30px);

}

#drawer .open span,
#drawer .open span:before,
#drawer .open span:after {
    content: '';
    display: block;
    height: 2px;
    width: 20px;
    background: #402E76;
    position: absolute;
    left: 0;
}

#drawer .open span {
    top: 23px;
    left: 14px;
}

#drawer .open span:before {
    top: -6px;
}

#drawer .open span:after {
    bottom: -6px;
}

#drawer .close {
    display: none;
}

#drawer .menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: .5s;
    padding: 30px 20px;
    box-sizing: border-box;
    overflow-y: scroll;
}
#drawer .menu .logo {
    width:170px;
}
.header_nav_block {
    margin-top:50px;
}
#drawer .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 48px;
    margin: 0 0 0 0;
    padding: 0;
    list-style: none;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#drawer .menu ul li {
    font-size: 18px;
    color: #402E76;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    white-space: nowrap;
    width: 40%;
    position: relative;
}

#drawer .menu ul li a {
    color: #402E76;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 18px;
    display: block;
}
.header_nav_line {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: #F9B129;
    margin-right: 6px;
    vertical-align: middle;
    content: "";
  }
  #drawer .menu ul.header_nav_sp li:nth-child(3){
    width:100%;
}
#drawer .header_submenu {
    margin-top: 8px;
    display: block;
    width: 100%;

}
#drawer .menu ul.header_submenu {
    gap:0;
}

#drawer .menu ul.header_submenu li {
    position: relative;
    padding-left:25px;
   width:100%;
}

#drawer .header_submenu li::before {
    content:"";
    background-image: url(../images/list_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top:50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 10px;
   
}
#navTgl:checked~.menu {
    right: 0;
}

#navTgl:checked~.open {
    display: none;
}

#navTgl:checked~.close {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1;
}

#navTgl:checked~.close:before,
#navTgl:checked~.close:after {
    content: '';
    display: block;
    height: 2px;
    width: 20px;
    background: #402E76;
    position: absolute;
    top: 50%;
    left: 50%;
}

#navTgl:checked~.close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#navTgl:checked~.close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


/* フッター */
.footer {
    background: #F7F7F7;
    /* padding: 40px 0; */
  }
  
  .footer_inner {
    padding:0 50px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 40px;
    height: 100%;
  }
  
  .footer_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
    height: auto;
  }
  .footer_catchcopy {
    margin-top:32px;
    color:#402E76;
  }
  .footer_url {
    font-size: 12px;
    color: #000;
    margin-top:68px;
    margin-bottom:70px;
    padding:0 40px;
  }
  
  .footer_logo {
    width: 315px;
    max-width: 100%;
    margin-bottom: 8px;
  }
  
  .footer_subtext {
    font-size: 1rem;
    color: #222;
    line-height: 1.5;
  }
  
  .footer_right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    height: 100%;
    gap: 26px;
  }
  
  .footer_nav {
    display: flex;
    gap: 68px;
    margin: 0 0 0 0;
    padding: 0;
    list-style: none;
    width: fit-content;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer_nav:first-child {
    margin-bottom:36px;
}
  .footer_nav li {
    font-size: 16px;
    color: #402E76;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    white-space: nowrap;
    width: fit-content;
    position: relative;
  }
  .footer_nav a {
    color: #402E76;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  
  .footer_nav a:hover {
    opacity: 0.7;
  }
  .footer_nav_line {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: #F9B129;
    margin-right: 6px;
    vertical-align: middle;
    content: "";
  }
  .footer_bottom {
    width: 100%;
    background: #f8f8f8;

    margin: 0 auto;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  }
  
  .footer_bottom_left {
    font-size: 14px;
    margin-top:auto;
  }
  
  .footer_bottom_left p {
    margin: 0 0 8px 0;
  }
  
  .footer_bottom_right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  .footer_cert {
    text-align: end;
  }
  .footer_cert img {
    width: 120px;
    margin-bottom: 8px;
  
  }
  
  .footer_policy {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0 0 8px 0;
    padding: 0;
    font-size: 1.1rem;
    color: #111;
    justify-content: flex-end;
  }
  
  .footer_policy li {
    font-size:14px;
    color: #111;
    width:fit-content;
  }
  
  .footer_policy a {
    color: #402E76;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer_policy a:hover {
    text-decoration: underline;
  }
  
  .footer_copyright {
    font-size: 12px;
    margin-top: 4px;
    text-align: end;
  }

.footer_submenu {
    margin-top: 8px;
    display: block;
    width: 100%;

}
.footer_submenu li {
    position: relative;
    /* padding-left:25px; */
}
/* .footer_submenu li::before {
    content:"";
    background-image: url(../images/list_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top:50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 10px;
   
} */
.footer_nav li:hover .footer_submenu {
    display: block;
}

.footer_submenu li {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 4px;
    width: 100%;
}

.footer_submenu li:last-child {
    margin-bottom: 0;
}

.footer_submenu a {
    color: #402E76;
    transition: color 0.3s;
    font-size:12px;
}


/* main */
.mainvisual {
    width: 100%;
    height: 100vh;
}

/* メインビジュアル */

.mainvisual_swiper {
    height:100vh;
}

.mainvisual_swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: auto;
  }
.mainvisual_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.3); */
    /* background-color: rgba(255, 255, 255, 0.705); */
    z-index: 1;
}

.mainvisual_inner {
    position: relative;
    height: 100vh;
    z-index: -1;
}

.mainvisual_swiper .swiper-slide img {
    width: 100%;
    height:100%;
    object-fit: cover;
    

}
.mainvisual_sp {
    display: none;
}
.catch_copy_wrapper {
    position: absolute;
    bottom:0;
    /* right: 5%; */
    
    left:5%;
    width:fit-content;
    margin-bottom:95px;
    z-index: 10;
}
.catch_copy_wrapper img {
    width:300px;
}
.mainvisual_title {
    margin-top:26px;
    z-index: 10;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.5;
    color: #fff;
    width: fit-content;
}

.catch_copy_wrapper p {
    /* color:#402E76; */
    color: #fff;

    font-family: "Noto Sans JP";
    margin-top:21px;
   
}




/* 共通セクションスタイル */
section {
    padding: 80px 0;
}

.top_section_title {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 50px;
    position: relative;
    /* font-family: "Yu Gothic", "游ゴシック", YuGothic; */
    line-height:1.35;
}

.section_title_sub {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color:#402E76;
}
.section_container {
    max-width: 1166px;
    margin: 0 auto;
}
.btn_container {
    text-align: center;
    margin-top: 20px;
    width:320px;
}

.more_btn {
    display: block;
    align-items: center;
    padding: 20px 30px;
    border: 1px solid #402E76;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s;
    color: #402E76;
    background-color: #fff;
    position: relative;
   width:100%;
}

.more_btn:hover {
    background: #402E76;
    color: #fff;
    border: 1px solid #fff;
}

.more_btn::after {
    content:"";
    width: 10px;
    height: 10px;
    background-color: #402E76;
    clip-path: polygon(10px 50%, 0% 0%, 0% 10px);
    padding: 6px 10px;
    margin-left: 20px;
    display: inline-block;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}
.more_btn:hover.more_btn::after {
    background-color: #fff;
}
.width_btn {
    width:fit-content;
    padding: 11px 56px;
    text-decoration: none;
    transition: all 0.2s;
    margin-top:48px;
}
.center_btn {
    margin:48px auto 0;
    display: block;
}
.btn_container .width_btn {
    padding: 11px 56px;
    text-decoration: none;
    transition: all 0.2s;
    margin-top:48px;
    width: auto;
}
/* ABOUT */
.about_section {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: 130px 0 300px;
  }
  
  /* テキスト部分のみ中央寄せ */
  .about_container {
    max-width: 1166px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .about_text {
    color: #333;
    line-height: 1.8;
    /* padding: 80px 0; */
    z-index: 2;
  }
  
  .btn_container {
    margin-top: 20px;
  }
  
  /* 画像を画面右に絶対配置 */
  .about_section_img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 51vw;
    height: 600px;
    z-index: 1;
    pointer-events: none;
    user-select: none;
   
  }
  
  .about_section_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    display: block;
   
  }
  
/* SERVICE */
.service_section {
    background-color: #402E76;
    padding:53px 0;
}

.service_section_title {
    color:#fff;
    margin-top:19px;
    margin-bottom:80px;
    white-space: nowrap;
}
.service_sectuin_title_sub {
    color:#F9B129;
}
.service_section_head_wrapper {
    width:1166px;
    margin:0 auto;
    position: relative;
    overflow: hidden;
}
.service_section_head {
    display: flex;
    align-items: flex-start;
    
}

.service_section_head p {
    height: 100%;
    width: auto;
    margin-top:19px;
    min-width: 60vw; /* 画面の半分以上をカバー */
    z-index: 1;
    /* line-height:1.3; */
    color: #fff;
    transform: translateX(11%); /* 必要に応じて調整。画像の見え方で調整 */

}

.service_card {
    display: flex;
    gap:7px;
    width:100%;
    
}
.service_card .swiper-wrapper {
    gap:7px;
}
.service_card_item {
    
    background: #fff;
    width: calc((100% - 21px) / 4);
    display: flex;
    flex-direction: column;
    height:auto!important;
}
.service_card_item .swiper-slide{
    height:auto!important;
}
.service_card_img {
    position: relative;
    width: 100%;
    
    overflow: hidden;
    flex-shrink: 0;
}

.service_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service_card_title {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    z-index: 2;
    width: 100%;
}

.service_card_body {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    align-items: center;
}

.service_card_lead {
    color: #402E76;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
}

.service_card_text {
    color: #333;
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
    flex: 1;
}

.service_card_btn {
    margin:0;
    padding: 12px 32px 12px 24px;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    width:230px;
}

.service_card_btn:hover {
    background: #402E76;
    color: #fff;
    border: 1px solid #fff;
}
.service_card_btn::after {
    background-color:#402E76;
}
.service_card_btn:hover.service_card_btn::after {
    background-color: #fff;

}
.service_card .swiper-button-prev,
.service_card .swiper-button-next {
    width: 35px;
    height: 35px;
    background-image: url(../images/slide-arrow_l.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.service_card .swiper-button-next {
    background-image: url(../images/slide-arrow_r.png);
}

.service_card .swiper-button-prev::after,
.service_card .swiper-button-next::after {
    display: none;
}

.ICT_center_bg {
    
    background:  linear-gradient(90deg, rgba(0,0,0,0.7), rgba(85,85,85,0.4) 55%),
    url(../images/ICTcenter.png);
    background-repeat: no-repeat;
    background-size: cover;
    width:942px;
    margin: 0 auto;
    margin-top:80px;
    padding:43px 46px;
    border-radius: 12px;
}
.ICT_center_bg h3 {
    color:#fff;
    font-size:23px;
    margin-bottom:25px;
}
.ICT_center_bg p {
    font-size:14px;
    color:#fff;

}
.ictcenter_btn {

}

/* TOPICS */
.info_section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding:0;
    margin:80px 0 60px 0;
}

.info_header {
    width: 30%;
    margin: 0px auto 30px auto;
    padding: 0 20px 0 150px;
}

.info_title {
    font-weight: bold;
    color: #402E76;
    margin-bottom:26px;

}

.info_title span {
    font-size: 16px;
    font-weight: 400;
    color: #402E76;
    margin-left:32px;
}
.info_link {
    margin-top:22px;
    width:fit-content;
    white-space: nowrap;
    border-bottom:1px solid #402E76;
    display:block;
    color:#402E76;
}
.info_link i {
    margin-left:10px;
}
.info_nav {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
    margin-bottom:53px;
    padding-right:100px;
  }
  
  .info_nav button {
    width: 35px;
    height: 35px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .info_nav button img {
    width: 35px;
    height: auto;
  }
  
  .swiper-pagination,
  .swiper-pagination-sp
    {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content:center;
    width:fit-content!important;
    position: static !important;
  }
  
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    opacity: 1;
  }
  
  .swiper-pagination-bullet-active {
    background: #4b3589;
  }
.info_container {
    max-width: 985px;
    /* margin: 0 auto;
    padding: 0 20px; */
    overflow: hidden;
}

.info_list_wrapper {
    width: 100%;
    overflow: hidden;
}

.info_list {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: stretch;
    gap: 30px;
    /* keep the gap */
}
.info_swiper .swiper-wrapper{
    margin:20px;
}
.info_swiper .swiper-slide {
    height: 100% !important;
    
}
.info_item {
    background: #fff;
    border: 1px solid #fff;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
    height: 100%;
    min-height: 100%;
    margin: 20px auto 20px auto;
    display: flex;
    flex-direction: column;
    padding:40px;
    height:440px;
  }
  
  .info_item_link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
  }
  
  .info_image {
    width: 100%;
    height: 200px;
    background: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .info_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .info_content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1 ;
  }

  
  .info_item_title {
    font-size: 14px;
    font-weight:500;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height:19px;
  }
  
  .info_date {
    font-size: 12px;
    color: #BEBEBE;
    font-weight: bold;
    margin-bottom: 32px;
  }
  
  .info_more_area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 24px;
    margin-bottom: 12px;
  }
  .info_link_more_wrapper {
    margin-top: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: space-between;
  }
  .info_link_more_wrapper img {
    height:30px;
    width:23px;
    padding-bottom:6px;
    border-bottom:1px solid #402E76;
    
  }
  .info_more {
    color: #402E76;
    font-weight: bold;
    font-size:12px;
    text-decoration: none;
    border-bottom: 1px solid #EFEFEF;
    padding-bottom: 10px;
    transition: color 0.2s;
    width:100%;
  }

  .info_more_icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 1px solid #4B3396;
    border-radius: 50%;
    position: relative;
    vertical-align: middle;
    margin-left: 4px;
  }
  .info_more_icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #4B3396;
    border-right: 2px solid #4B3396;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .info_category_wrapper {
    width:180px;
  }
  .info_category {
    display: inline-block;
    border: 1px solid #8B7B04;
    color: #8B7B04;
    border-radius: 20px;
    padding: 4px 21px;
    font-size: 12px;
    font-weight: 500;
    background: #fff;
    margin-bottom: 12px;
    margin-top:12px;
    width:fit-content;
    flex: none;
  }
/* 採用情報 */
.recruit_section {
    background-color: #402E76;
    padding:0;
}
.recruit_section_title,.recruit_desc {
    color:#fff;
}
.recruit_section_title {
    line-height:50px;
}
.recruit_desc {
    line-height:30px;
}
.recruit_title_sub {
    color:#F9B129;
}
.recruit_section_wrapper {
    display:flex;
    align-items: center;
    gap:130px;
}
.recruit_text_area {
    width:65%;
}
.container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    padding:0 23px;
    width:95%;
  }
  
  .column {
    flex: 1;
    overflow: hidden;
    position: relative;
  }
  
  .slide-track {
    display: flex;
    flex-direction: column;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    gap: 0; /* 画像間の隙間をなくす */
}
  
  .slide-track.up {
    animation-name: scrollUp;
  }
  
  .slide-track.down {
    animation-name: scrollDown;
  }
  
  .slide-item {
    height: 70%;
    margin: 0; /* マージンを0に設定 */
    padding: 0; /* パディングを0に設定 */
}
  .slide-item img {
    height: 100%;
    object-fit: cover;
    display: block; /* 画像下の余白をなくす */
  }
  /* アニメーション定義 */
  @keyframes scrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }
  
  @keyframes scrollDown {
    0%   { transform: translateY(-50%); }
    100% { transform: translateY(0); }
  }
  /* 企業情報 */
  .company_section {
    padding:0 40px;
    margin-top:98px;
    margin-bottom:60px;
  }
  .company_card_wrapper {
    display:flex;
    width: 100%;
    background: #fff;
  }
  .company_card {
    width: 100%;

    padding: 40px 0 48px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .company_card_img {
    width: 90%;
    height: 243px;
    background: #bbb;
    margin: 0 auto 32px auto;
  }
  .card_centerline {
    border-left:1px solid #E5E5E5;
  }
  .company_card_body {
    width: 90%;
    margin: 0 auto;
  }
  
  .company_card_title {
    font-size:30px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #402E76;
  }
  
  .company_card_text {
    font-size: 16px;
    color: #000;
    margin-bottom: 32px;
  }
  
  .company_card_btn {
    display: block;
    padding: 15px 27px;
    border: 1px solid #16376E;
    border-radius: 35px;
    background: #fff;
    color: #16376E;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(34,51,102,0.08);
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.05em;
    text-align: center;
    width:220px;
    margin: 0 auto;
  }
  
  .company_card_btn:hover {
    background: #223366;
    color: #fff;
  }
  
  .company_card_btn .arrow {
    margin-left: 1.5em;
    font-size: 1.2em;
    vertical-align: middle;
  }
/* NEWS */
.news_section {
    background: #fff;

}

.news_container {
    max-width: 1136px;
    margin: 0 auto;
}

.news_section_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 29px;
  }
 .top_news_title {
    font-size:30px;
    font-weight: bold;
    margin-bottom: 0;
    color: #402E76;
 }
 .news_section_head span {
    font-size:16px;
    color:#402E76;
    margin-left:32px;
    font-weight:500;
    display: block;
 }
  .news_section_link {
    width:fit-content;
    white-space: nowrap;
    border-bottom:1px solid #402E76;
    display:block;
    margin-left:auto;
    color:#402E76;
  }
  .news_section_link i{
    margin-left:10px;
  }
.news_list {
    margin-bottom: 50px;
}

.news_item {
    padding: 48px 0;
    display: flex;
    align-items: center;
    border-bottom:1px solid #EAEAEA;
    position: relative;
}
.news_item:first-child{
    border-top:1px solid #EAEAEA;
}
.news_meta  {
    display:flex;
    align-items: center;
}
.info_post_title {
    color:#402E76;
    padding-right:31px;
    flex:1;
}
.top_news_arrow {
    width:18px;
    height:18px;
    margin-left:auto;
}
.news_date {
    width: 120px;
    font-weight:bold;
    color: #BEBEBE;
    font-size: 14px;
    flex: none;
}

.news_link {
    flex: 1;
    color: #333;
    transition: all 0.3s;
}

.news_link:hover {
    opacity: 0.7;
}

.news_btn_container {
    text-align: center;
}

.contact_section {
    background: #402E76;
    background-image: url('../images/contact_section_bg.png');
    background-size: cover;
    padding: 0;
    display: flex;
    align-items: center;
    border-bottom:2px solid #F9B129;
  }
  
  .contact_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1166px;
    margin: 150px auto;
  }
  
  .contact_left {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .contact_label {
    font-size:16px;
    margin-bottom: 22px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color:#F9B129;
  }

  .contact_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
    /* width:50%; */
  }
  
  .contact_box {
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 59px 133px 62px 133px;
    text-align: center;
    margin-left: auto;
    width:100%;
  }
  
  .contact_icon {
    margin-bottom: 26px;
    text-align: center;
  }
  .far {
    font-size:30px;
    line-height:1rem;
  }
  .contact_box_title {
    font-size: 18px;
    color: #000;
    margin-bottom: 26px;
    font-weight: 500;
  }
  
  .contact_btn {
    display: inline-block;
    width:195px;
    padding: 15px 50px 15px 39px;
    border: 1px solid #402E76;
    border-radius: 50px;
    background: #fff;
    color: #402E76;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    filter: drop-shadow(0px 0px 10px rgba(22, 55, 110, 0.2));
    transition: background 0.2s, color 0.2s;
    position: relative;
    margin-bottom: 15px;
    margin-top: 8px;
    text-align: center;
    transition: all 0.3s;
    /* font-family: 'Noto Sans'; */
    letter-spacing:-0.1em;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-family: "Noto Sans";
  }
  .contact_btn:hover {
    opacity: 0.7;
  }
  .contact_btn::after {
    content:"";
    /* background-image: url(../images/list_icon.png); */
    background-image: url(../images/contact_arrow.png);
    background-repeat: no-repeat;
    background-size: 10px;
    width:10px;
    height:10px;
    position: absolute;
    top:50%;
    right:19px;
    transform: translateY(-50%);
  }
  
  .contact_note {
    color: #000;
    font-size: 14px;
    line-height: 1.7;
  }



/* 採用 */
.recruit_headtext {
    text-align: center;
    margin: 32px auto 64px;
    font-size: 18px;
    line-height: 2;
}




.name_wrapper {
    display: flex;
    width: 50%;
    align-items: flex-end;
    margin-left: auto;
}

.name {
    width: 60%;
}

.name p {
    font-size: 20px;
}

.ceo_image {
    width: 40%;
}
.map_image {
    width:600px;
    margin:0 auto;
}
.company_image_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 480px repeat(2, 0.5fr) 1fr;
grid-column-gap: 16px;
grid-row-gap: 16px;

  }

  .company_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    
  }
  
  /* グリッド配置 */
  .primary_left {
    grid-area: 1 / 1 / 2 / 2;
  }
  
  .primary_right {
    grid-area: 1 / 2 / 2 / 3;
  }
  
  .secondary_left {
    grid-area: 2 / 1 / 4 / 2;

  }
  
  .secondary_right_top {
    grid-area: 2 / 2 / 3 / 3;
    height:300px;
  }
  
  .secondary_right_bottom {
    grid-area: 3 / 2 / 4 / 3; 
    height:300px;

  }
  
  .tertiary_left {
    grid-area: 4 / 1 / 5 / 2; 
    height:600px;
   
  }
  
  .tertiary_right {
    grid-area: 4 / 2 / 5 / 3; 
    height:600px;
}

.page_content table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}

.page_content table th,
.page_content table td {
    padding: 24px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    line-height: 1.8;
}

.page_content table th {
    width: 30%;
    font-weight: bold;
    vertical-align: top;
}

.recruit_table ul {
    margin: 0;
    padding: 0;
}

.recruit_table ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.recruit_table ul li:last-child {
    margin-bottom: 0;
}

.recruit_table h3 {
    font-size: 16px;
    margin: 16px 0 8px;
    font-weight: bold;
}

.recruit_table h3:first-child {
    margin-top: 0;
}

.recruit_table p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.recruit_table p:last-child {
    margin-bottom: 0;
}
.align_left {
    text-align: left;
}
.line_left span {
    margin-left:0;

  }
  .page_section_container {
    width: 100%;
    padding: 50px 40px;
  }
  .policy_section {
    padding:30px;
  }
  .policy_title {
    font-size: 18px;
    color:#402E76;
  }
  .policy_item {
    font-size:16px;
    color:#402E76;
    margin-top:29px;
    margin-bottom:21px;
  }
@media (max-width: 768px) {

    .recruit_table th,
    .recruit_table td {
        padding: 16px;
    }

    .recruit_table ul li {
        padding-left: 1em;
        text-indent: -1em;
    }

    .recruit_table ul li:before {
        content: "・";
    }
}


@media (max-width: 768px) {
  
}
#privacy-poricy h2 {
    font-size:16px;
    font-weight: bold;
    margin-bottom:0;
    margin-top:32px;
}
#privacy-poricy p {
    line-height:1.75;
}
/* レスポンシブ対応 */
@media (max-width: 1365px) {
    .info_header {
        padding: 0 20px 0 100px;
    }
    .page_content {
        width:980px;
    }

    .service_section_head_wrapper {
        width:100%;
        padding:0 20px;
    }
    .service_section_head p {
        min-width:auto;
        transform: none;
        width:100%;
        margin-top:0;
    }
}
@media (max-width: 1099px) {

    /* .header_nav_wrapper {
        flex-direction: column;
    } */
    .header_nav {
        width: fit-content;
    }

    .about_text {
        padding:0 20px;
    }
    .service_card_body {
        padding:24px 12px;
    }
    .info_header {
        width: 40%;
        margin: 0px auto 30px auto;
        padding: 0 20px 0 32px;
    }

    .service_item_title {
        font-size: 1.7rem;
    }

    .service_number span {
        font-size: 3rem;
    }
    .recruit_text_area {
        width:100%;
        padding: 0 20px;
    }
    .recruit_box {
        margin-right: 16px;
        margin-left: 32px;
    }

    .company_box {
        margin-right: 32px;
        margin-left: 16px;
    }

    .map_container {
        flex-direction: column;
    }

    .page_content {
        padding: 32px;
        width:100%;
    }
    .news_section {
        padding: 40px 20px;
    }
    .contact_section {
        padding:0 40px;
    }
    .contact_box {
        padding: 60px 40px 32px 40px;
    }
}

@media (max-width: 768px) {
    .header_nav_wrapper {
        background-color:unset;
        border: none;
        backdrop-filter: none;
    }
    /* .top_section_title {
        font-size:24px;
    } */
    .page_section_subtitle {
        font-size: 20px;
        margin: 32px 0 20px;
    }

    section {
        padding: 50px 0;
    }

    .logo {
        width: 280px;
        margin:0;
    }
    .mainvisual_sp {
        display: block;
    }
    .mainvisual,.mainvisual_swiper,.mainvisual_sp {
        height:80vh;
    }
    .mainvisual_swiper img ,.mainvisual_sp img{
        object-fit: cover;
        object-position: 45% 0;
        height:80vh;

    }

    .page_content table th,
    .page_content table td {
        display: block;
        width: 100%;
    }

    .page_content table th {
        padding-bottom: 16px;
        background: #f5f5f5;
    }

    .page_content table td {
        padding-top: 16px;
    }
    .map_image {
    width:100%;   
    }
    .more_btn {
        text-align: center;
        margin:48px auto 0 auto;
     }
    .top_section_title {
        margin-bottom:30px;
    }
    .catch_copy_wrapper {
        top:50%;
        left:auto;
        right:5%;
        transform: translateY(-50%);
    }
    .catch_copy_wrapper img {
        display:none;
    }
    .mainvisual_title {
        font-size:32px;
        color:#402E76;
    }
    .catch_copy_wrapper p {
        margin-top:13px;
        color:#402E76;

    }
    
    .about_section {
        padding: 80px 0;
    }
    .about_container {
        display:flex;
        flex-direction: column;
        gap:80px;
    }
    .about_text {
       
        width:100%;
        white-space: wrap;
    }
    .about_container img {
    width:100%;
    display:block;
    min-height:325px;
    margin-bottom:0;
    }

    .service_section {
        padding:50px 0;
    }
    .service_section_head_wrapper {
        width:100%;
        padding:0 20px;
        min-width: unset;
    }
    .service_section_head {
        flex-direction: column;
        width:100%;
    }
    .service_section_head p {
        margin-bottom:100px;
    }
    .service_card .swiper-wrapper {
        gap:0;
    }
    .service_card_item.swiper-slide {
        width: 85%;
    }
    .service_card_text {
        margin-bottom:0;
    }
    .service_card_btn {
        margin:24px auto 0 auto;
    }
    .top_ICT_center {
        padding:0 20px;
    }
    .ICT_center_bg {
        width:100%;
    }
    .ICT_center_text {
        color:#fff;
        margin-top:18px;

    }
    .company_card_wrapper {
        flex-direction: column;
    }
    .card_centerline {
        border-left:none;
        border-top:1px solid#E5E5E5;
    }
    .company_section {
        padding:0 20px;
    }
  
    .company_card_title {
        font-size: 20px;
      }
      
      .company_card_text {
        font-size: 12px;
        margin-bottom:24px;
      }
      
      .container {
        height:400px;
      }



    .info_section {
        flex-direction: column;
    }

    .info_header {
        width: 100%;
        display:flex;
        justify-content: space-between;
        align-items: center;
    }
    .info_title {
        margin-bottom:0;
    }
    .info_link {
        margin-top:0;
    }
    .info_container {
        max-width:100%;
        margin: 0 auto;
        margin-top: 0;
        padding: 0 0 0 20px;
        overflow: hidden;
    }
    .info_nav {
        margin-top:34px;
        padding-right:0;
        justify-content: center;
    }
    .info_swiper .swiper-wrapper {
        margin:0;
    }
    .info_btn_container.sp {
        text-align: center;
    }
    .recruit_section_wrapper {
        flex-direction: column;
        gap:60px;
        padding:60px 0 0;
    }


    .news_section_head {
        flex-direction: column;
    }
    .news_container {
        flex-direction: column;
        gap: 16px;
        padding: 0;
    }

    .top_news_title {
        margin-bottom: 16px;
        font-size:20px;
        text-align: center;
    }
    .top_news_title span {
        margin-left:0;
    }
    .news_item {
        flex-direction: column;
        align-items: flex-start;
        gap:15px;
    }

    .news_date {
        margin-bottom: 0;
    }
    .news_item .info_category {
        margin-top:0;
        margin-bottom:0;
    }
    .contact_inner {
        flex-direction: column;
        max-width: 100%;
        padding:0 20px;
        margin: 47px auto;
    }
    .contact_left {
        text-align: center;
        align-items: center;
    }

    .contact_right {
        width:100%;
    }
    .contact_label {
        text-align: center;
    }
    .contact_box {
        margin-top:30px;
        padding: 45px 35px;
        width:100%;
    }
    .footer_url {
        padding:20px;
        margin-top:20px;
        margin-bottom:0px;
    }
    .footer_inner{
        flex-direction: column;
        padding:20px;
    }
    .footer_left{
        width:100%;
    }
    .footer_right {
        width:100%;
    }
    .footer_catchcopy {
        font-size: 24px;
        white-space: nowrap;
    }
    .footer_nav {
        margin-top:40px;
        gap:40px;
    }
    .footer_nav:first-child {
        margin-bottom:48px;
    }
        .footer_nav li {
        width:40%;
    }
    .footer_nav  li:nth-child(3) {
        width:100%;
    }

    .footer_bottom {
       padding:0 20px;
    }
    .footer_policy {
        justify-content: center;
    }
    .footer_policy li {
        font-size:12px;
    }
    .footer_copyright {
        text-align: center;
    }
    .page_content {
        padding: 16px;
    }
    .pege_title {
        font-size: 36px;
    }

    .page_section_title {
        font-size: 24px;
    }

    .name_wrapper {
        width: 100%;
    }
    .companySwiper img {
        height:200px;
    }

    .contact_btn {
      margin-bottom:24px;
    }
}
@media (max-width: 480px) {
    .header {
        padding:32px 20px;
    }
    .logo img {
        width:170px;
    }
    .header.scrolled { 
    padding:28px 20px 20px 20px;
    backdrop-filter: blur(10px);
    }
     /* .mainvisual,.mainvisual_swiper {
        height:70vh;
    } */
    .mainvisual_sp img {
        object-position: 55% 0;

    }
    .info_section {
        margin: 80px 0 40px 0;
    }
    .info_container {
        padding:0;
    }
    .info_item {
        padding:33px;
    }
    .info_nav {
        margin-bottom:0;
    }
    .company_section {
        margin-top: 60px;
    }
    .news_item {
        padding:30px;
    }
    .info_post_title {
        padding-right:0;
    }
    .contact_section {
        padding:0 20px;
    }
    .contact_box_title {
        margin-bottom:20px;
    }
    .footer_catchcopy {
        letter-spacing: -0.08em;
    }
   
}
/* NEWS一覧ページ */

/* 講習案内 カテゴリごとの色設定 */
.category-beginner {
    color: #0000FF;
    border-color: #0000FF;
}

.category-intermediate {
    color: #FFA500;
    border-color: #FFA500;
}

.category-advanced {
    color: #800080;
    border-color: #800080;
}

