@charset "UTF-8";
/* CSS Document */
/*=====================================================================================
***************************************************************************************

　reset

***************************************************************************************
=====================================================================================*/
body,div,dl,dt,dd,menu,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,p,fieldset,input,textarea,p,q,blockquote,th,td,nav,small,address,section,article {
   margin:0; 
   padding:0; 
}
a,input,q {border: 0;}
b {font-weight: normal;}
table {
	border-collapse:collapse; 
    border-spacing:0; 
}
button {
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
}
fieldset,img {border:0;}
address,caption,cite,code,dfn,em,strong,th,var,small { 
    font-style:normal; 
    font-weight:normal; 
}
ol,ul,menu {list-style:none;}
caption,th { text-align:left;}
h1,h2,h3,h4,h5,h6 { 
    font-size:100%; 
    font-weight:normal; 
}
q:before,q:after {content:'';}
abbr,acronym {border:0;}
.clear {
	clear: both;
	padding:0;
	margin:0;
	border:0;
}
img{
	border: none;
	padding:0;
	margin:0;
	vertical-align:top;
}
hr{
	padding:0;
	margin:0;
	border:none;
}
/*=====================================================================================
***************************************************************************************

　comomon

***************************************************************************************
=====================================================================================*/
body{
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}
body{
  font-family: "Noto Sans JP", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 300;/*基本の文字の太さは後で調節する*/
}

.mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

a{text-indent: 0;}
*{
	vertical-align: top;
	box-sizing: border-box;
	word-break: break-all;
}
img{max-width: 100%;}
.max_width_1500{max-width: 1500px;}
.max_width_1200{max-width: 1200px;}
.max_width_1000{max-width: 1000px;}
.width_comomon{
    width: 90%;
    margin: 0 auto;
}
.flexBox{
    display: flex;
    flex-wrap: wrap;
}
.chotai_90{
    display: inline-block;
    transform: scaleX(0.9);
    transform-origin: left center;
}
.sp{display: none;}

/*=============== ボタンの共通スタイル ===============*/
.btn{width: 240px;margin-bottom: 20px !important;}
.btn a{
	background-color: #ffffffa6;
	border: solid 1px #224b8f;
	color: #224b8f;
	text-decoration:none;
	display: block;
	padding: .8em;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	transition: all 0.3s ease;
	border-radius: 0 !important;
}
.btn a span{
	transform: scaleX(0.9);
    display: inline-block;
}
.btn a:hover{
	background-color: #224b8f;
	color: #fff;
}
@media screen and (max-width: 750px){
	body{font-size: 14px;}
	.pc{display: none;}
	.sp{display: block;}
}


/*=============== header ===============*/
.header {
	max-width: 1700px;
	width: 90%;
    position: fixed;
    inset: 50px 0 auto 0;
    margin: auto;
    z-index: 10;
    transition: all 1s ease;
}
/* ヘッダーを非表示にするクラス */
header.header-hidden {
	transform: translateY(-180px);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
	position: relative;
	z-index: 9;
}
#top .logo {
	color: #fff;
}
.logo {
	color: #224b8f;
	font-size: 25px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
}
.logo br{display: none;}
@media (max-width: 1220px) {.logo br{display: block;}.logo {font-size: 22px;}}
@media (max-width: 1050px) {.logo br{display: none;}}
/* 共通メニュー */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4%;
    background: #224b8f;
    padding: 0.8em 1em;
	width: 84%;
    max-width: 795px;
}
#top .nav-menu{background: rgba(216, 206, 194, 0.25);}
.nav-item {
	text-align: center;
	transition: all .5s ease;
}
.nav-item a {
    text-decoration: none;
    display: block;
    padding: 0.5em;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 13px;
	line-height: 1.2;
    font-weight: 500;

}
.nav-item a span {
    display: block;
    color: #d8cec2;
    font-size: 12px;
    margin-top: 0.2em;
}
.nav-item:hover {transform: translateY(-2px);}
.nav-item.contact-btn a {
    background-color: #d8cec2;
    color: #173565;
    padding: 0.5em 2em;
	font-weight: bold;
}
.nav-item.contact-btn a span { color: #173565 !important;}


/* ハンバーガーメニューボタン */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
	row-gap: 10px;
    background-color: #d8cec2;
    position: relative;
	padding: 10px;
	z-index: 10;
}
.hamburger-line {
    width: 30px;
    height: 2px;
    transition: all 0.3s ease;
    position: relative;
    background: repeating-linear-gradient(
        to right,
        #173565 0px,
        #173565 7px,
        transparent 7px,
        transparent 8px
    );
}
.hamburger.active .hamburger-line:nth-child(1) {width: 32px;transform: rotate(45deg) translate(9px, 9px);}
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0;}
.hamburger.active .hamburger-line:nth-child(3) {width: 32px;transform: rotate(-45deg) translate(8px, -8px);}
/* モバイルメニュー */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
	background: #0d2957f2;
	padding: 130px 5% 0;
    backdrop-filter: blur(10px);
    transition: right 1s ease;
    z-index: -1;
}
.mobile-nav.active {
    right: 0;
	z-index: 8;
}
.mobile-nav .nav-menu {
    flex-direction: column;
    gap: 1.5rem;
    background: transparent;
    padding: 0;
}
.mobile-nav .nav-item {
    text-align: center;
    padding: 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav .nav-item:last-child {
    border-bottom: none;
    margin-top: 1em;
}
.mobile-nav .nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
}
.mobile-nav .nav-item:hover::after {
    display: none;
}
.mobile-nav .nav-item.contact-btn:hover {
    background: rgba(216, 206, 194, 0.8) !important;
    transform: translateX(5px) translateY(-2px) !important;
    box-shadow: 0 4px 10px rgba(216, 206, 194, 0.3);
}
/* レスポンシブ */
@media (max-width: 1050px) {
    .nav-menu {display: none;}
    .hamburger {display: flex;}
    .header {top: 20px;}
}
/* メインコンテンツ（デモ用） */
.main-content {
    padding: 8rem 2rem 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.main-content h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}
.main-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #d8cec2 0px,
        #d8cec2 8px,
        transparent 8px,
        transparent 16px
    );
}
.main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2rem;
}
/*=============== contact ===============*/
.contact_box{
    background-color: #224b8f;
    color: #ebe3d9;
    border-radius:30px 30px 0 0;
    position: relative;
    padding: 50px;
    padding-bottom: 0;
}
.contact_box svg{
    position: absolute;
    padding: 40px 40px 0 40px;
    inset: 0;
    margin: auto;
}
.contact_box .contact_box_in{
    position:relative;
    z-index: 1;
    padding: 100px 0;
}
.contact_box .contact_box_in .contact_box_in_form{
    gap:15px 2%;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: solid 1px #d8cec2;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.contact_box .contact_box_in .contact_box_in_form p{
    font-size: clamp(36px, 4.5vw, 68px);
    text-align: left;
    white-space: nowrap;
}
.contact_box .contact_box_in .contact_box_in_form p img{
    display: block;
    width: 48%;
}
.contact_box .contact_box_in .contact_box_in_form .btn{
    width: 58%;
    max-width: 100%;
    font-size:30px;
}
.contact_box .contact_box_in .contact_box_in_form .btn a:hover{background-color: #fff;
color: #224b8f;}
.contact_box .contact_box_in .sns{
    align-items: center;
    gap:1.5em 5%;
    justify-content: space-between;
}
.contact_box .contact_box_in .sns div{
    width: 60%;
    max-width: 696px;
    justify-content: flex-end;
    gap: 1em 6%;
}
.contact_box .contact_box_in .sns div a{width: 47%;}
@media screen and (max-width: 1050px){
    .contact_box{padding: 30px;}
    .contact_box .contact_box_in{padding: 30px 0;}
    .contact_box .contact_box_in .contact_box_in_form .btn{font-size: 20px;}
    .contact_box svg {padding: 20px 20px 0 20px;}
}
@media screen and (max-width: 850px){
    .contact_box .contact_box_in .sns div{width: 100%;}
}
@media screen and (max-width: 750px){
    .contact_box .contact_box_in .sns div a,
    .contact_box .contact_box_in .contact_box_in_form .btn{width: 100%;}
    
}

/*=============== footer ===============*/
#footer{
	background-color: #173565;
	color: #fff;
	padding-top: 100px;
}
#footer a{color: #fff;}


#footer .footer_in{
	justify-content: space-between;
    flex-wrap: nowrap;
	gap: 50px 3%;
	margin-bottom: 70px;
	text-align: left;
}
#footer .footer_in div a{
	color: #fff;
	font-size: 25px;
	font-weight: 500;
	text-decoration: none;
	text-align: left;
	margin-bottom: 1em;
	display: block;
}
#footer .footer_in div p{font-size: 15px;}
#footer .footer_menu{
	font-size: 20px;
    width: 75%;
	gap: 1em 2%;
    justify-content: flex-end;
}
#footer .footer_menu a{
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}
#footer .footer_menu a:hover{color: #d8cec2;}
.copy{
	border-top: solid 1px #fff ;
	padding: 1.5em 0;
}
@media screen and (max-width: 1050px){
    #footer{padding-top: 60px;}
    #footer .footer_in{margin-bottom: 40px;flex-wrap: wrap;}
    #footer .footer_menu{width: 100%;}
    #footer .footer_in ul li{
        width: 100%;
        font-size: 18px;
        border-bottom: solid 1px #4a6693;
    }
    #footer .footer_in ul li a{
        padding-bottom: 1.2em;
        padding-left: .5em;
    }
    #footer .footer_in ul li:last-child{
        border-bottom: none;
        padding-bottom: 0;
    }
}

/*=====================================================================================
***************************************************************************************

　TOP

***************************************************************************************
=====================================================================================*/
#top .naka{padding: 0;}
#top p{margin-bottom: 0 !important;/*= 共通css打消し =*/}
#top ul {
    text-align: initial;
    margin: initial;
}
#top ul li {
    margin-bottom: auto;
    text-indent: initial;
	padding-left: initial;
}
#top ul li::before{content: none;}
.mv{
	padding-top: 250px;
}
/*=============== スライダー ===============*/
.slider-container {
	position: relative;
	overflow: hidden;
	margin-bottom: -22px;
}
/* 背景画像 */
.background-image {
    position: absolute;
	top: -1%;
    left: -1%;
    width: 102%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    transition: all 0.8s ease-in-out;
    z-index: -1;
}
.background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 81, 199, 0.733);
    mix-blend-mode: multiply;
    z-index: 2;
}
/* メイン画像 */
.slider-container-mainbox{
	display: flex;
    align-items: center;
	flex-wrap: wrap;
    gap:10px 5%;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
	margin: 0 auto 200px;
    justify-content: center;
}
.top_h2{
	font-size: clamp(52px, 7vw, 90px);
	line-height: 1.4;
	color: #fff;
	text-align: left;
	white-space: nowrap;
}
.top_h2 span{
	display: inline-block;
	margin-left: -0.1em;
}
.main-image {
    position: relative;
    width: 50%;
    max-width: 420px;
    aspect-ratio: 40 / 62;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.8s ease-in-out;
}
.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease-in-out;
}
/* ナビゲーション */
.navigation {
    position: absolute;
    right: 5%;
    top: 25%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5;
}
.nav-dot {
    width: 2px;
    height: 30px;
    background: #d8cec2;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.nav-dot.active {
    height: 60px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
.nav-dot:hover {transform: scale(1.2);}
@media (max-width: 1050px) {
	.mv {padding-top: 110px;}
	.main-image {
		width: 80%;
		aspect-ratio: 40 / 58;
	}
	.navigation{top: 15%;}
	.slider-container-mainbox{margin-bottom:120px;}
}
/*=============== TOPNews ===============*/

.topnews_box{
	position: absolute;
    background-color: #fff;
    border-radius: 5px;
    z-index: 1;
    right: 5%;
    bottom: 48%;
	max-width: 490px;
	width: 80%;
}
.topnews_box a{
	padding: 20px;
	text-align: left;
	color: #224b8f;
	align-items: flex-start;
	column-gap: 5%;
}
.topnews_box .topnews_tag{
	font-size: 13px;
	background-color: #224b8f;
	color: #fff;
	padding: .2em .4em;
	display: inline-block;
}
.topnews_box img{
	width: 30%;
	aspect-ratio: 3/2;
	object-fit: cover;
}
.topnews_box div{width: 65%;}
.topnews_box p{	
	margin-top: .3em;
	display: -webkit-box;
	-webkit-line-clamp: 2;  /* ← ここで2行で切る */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;	
	line-height: 1.4;
}
@media screen and (max-width: 1030px){.topnews_box{bottom: 44%;}}
@media screen and (max-width: 950px){.topnews_box{bottom: auto; top:60%;}}
@media screen and (max-width: 520px){.topnews_box{top:55%;}}
@media screen and (max-width: 400px){.topnews_box{top:51%;}}
@media screen and (max-width: 350px){.topnews_box{top:45%;}}
/*=============== About ===============*/
.about_box{
	padding: 300px 0;
	position: relative;
	color: #fff;
}
.about_box::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	top: 0;
	background-image: repeating-linear-gradient(
	  to right,
	  #d8cece,
	  #d8cece 6px,
	  transparent 6px,
	  transparent 9px
	);
	mix-blend-mode: color-dodge;
}
.about_box img{
	position: absolute;
    top: -150px;
    left: -45px;
    mix-blend-mode: color-dodge;
}
.about_box_in{
	margin: 0 auto 100px;
	position: relative;
	text-align: justify;
	align-items: center;
	justify-content: space-between;
	gap:1em 5%;
}
.about_box .about_box_in .top_h3{font-size: 45px;}
.about_box .about_box_in p{
	font-size: 18px;
	width: 35%;
}
.about_box .btn{margin: 0 auto;}
@media (max-width: 1200px) {
    .about_box {padding-bottom: 180px;}
    .about_box .about_box_in .top_h3{font-size: 35px;}
    .about_box .about_box_in p{width: 47%;}
}
@media (max-width: 1020px) {
    .about_box{padding: 200px 0 100px;}
    .about_box_in{margin-bottom: 50px;}
    .about_box .about_box_in .top_h3{font-size: 30px;}
    .about_box .about_box_in p{
        font-size: 16px;
        width: 100%;
    }
    .about_box img{top: -100px;}
}
/*=============== 事業紹介 ===============*/

.business_box{
    background-color: #d8cec2;
    position: relative;
    padding: 100px 0;
}
.business_box::before,
.business_box::after{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(to right, #fff, #fff 6px, transparent 6px, transparent 9px);
}
.business_box::before{top:30px;}
.business_box::after{bottom: 30px;}
.business_box_in{
    gap: 20px 5%;
}
.business_box_in .text_box{
    position: relative;
    width: 50%;
    text-align: justify;
}
.business_box_in .text_box img{
    position: absolute;
    left: -50px;
}
.top_h4{
    color: #224b8f;
    font-size: 30px;
    font-weight: 500;
}
.business_box_in .text_box .top_h4{margin: 2em 0 0.5em;}
.business_box_in .text_box .btn{
    margin-top: 2em;
    text-align: center;
}
.business_box_in>img{width: 45%;max-width: 540px;}
@media (max-width: 1020px) {
	.business_box{padding: 60px 0;}
	.business_box::after{bottom: 15px;}
}

@media (max-width: 750px) {
	.business_box_in .text_box img{left: -10px;}
	.business_box{padding: 40px 0;}
	.business_box::before{top:15px;}
    .business_box_in .text_box,
	.business_box_in>img{width: 100%;}
}
/*=============== インタビュー ===============*/

.recruit_box{
    background-color: #ebe3d9;
    padding: 100px 0;
}
.interview_box {margin-bottom: 100px;}
.interview_box .titleicon{
    display: block;
    margin: 0 auto 20px;
}
.interview-slider-container {
    margin: 50px auto;
    position: relative;
}
.interview-slider-main {
    display: flex;
	align-items: flex-end;
    gap: 20px 3%;
}
.interview-main-image-container {
    width: 45%;
    height: 100%;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.interview-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(1.1);
    position: absolute;
    inset: 0;
}
.interview-main-image.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}
.interview-right-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}
.interview-text-content {
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    transition: all 0.3s ease;
    text-align: left;
    color: #224b8f;
}
.interview-text-content.active {
    opacity: 1;
    visibility: visible;
	position: inherit;
}
.interview-slide-number {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.1s;
}
.interview-slide-title {
    font-size: clamp(28px, 3.5vw, 45px);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing:-0.1em;
    margin: .3em 0 .5em;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.interview-slide-description {
    color: #173565;
    display: flex;
    column-gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}
.interview-slide-description li{
    padding: 0.2em 0.5em!important;
    border: solid 1px #173565;
}
.interview-text-content a{
    display: inline-flex;
    align-items: center;
    color: #224b8f;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
	margin-top: 1em;
}
.interview-view-more:hover::after {
    width: 100%;
}
.interview-text-content.active .interview-slide-title,
.interview-text-content.active .interview-slide-number,
.interview-text-content.active .interview-slide-description,
.interview-text-content.active a{
    opacity: 1;
    transform: translateY(0);
}
.interview-thumbnail-container {
    display: flex;
    gap: 15px 2%;
}
.interview-thumbnail {
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.4s ease;
}
.interview-thumbnail.active{
    display: none;
}
.interview-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.interview-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.interview-navigation {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 54%;
}
.interview-nav-bar {
    height: 1px;
    background-color:  #173565;
    cursor: pointer;
    transition: all 0.4s ease;
    flex: 1;
}
.interview-nav-bar.active {
    height: 3px;
    background-color: #173565;
}

.interview_box .btn{margin: 100px auto 0;}
@media (max-width: 1020px) {
	.recruit_box {padding: 50px 0;}
	.interview_box .titleicon{
		width: 250px;
		margin-bottom: 0;
	}
	.interview-slider-container {margin: 25px auto;}
}
@media (max-width: 750px) {
	.interview_box {margin-bottom: 50px;}
    .interview-slider-main {
        flex-direction: column;
        gap: 20px;
    }
    .interview-main-image-container,
	.interview-right-content {width: 100%;}
    .interview-thumbnail-container {
        height: 100px;
        margin-bottom: 20px;
    }
    .interview-navigation {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
	.interview_box .btn{margin: 50px auto 0;}
}

/*=============== 採用情報ボタン ===============*/
.recruit_info_box{margin-bottom: 120px;}
.recruit_info_box img{transition-duration: .5s;}
.recruit_info_box img:hover{
	transform: scale(1.05);
}
.recruit_info_box .sp{display: none;}
@media (max-width: 750px) {
	.recruit_info_box{margin-bottom: 50px;}
	.recruit_info_box .sp{
		display: block;
		max-width: 320px;
		margin: 0 auto;
	}
	.recruit_info_box .pc{display: none;}
}
/*=============== 採用情報ボタン ===============*/
.recruit_about_box {
    align-items: center;
	gap:20px 5%;
}
.recruit_about_box ul{width: 45%;}
.recruit_about_box ul li{
	position: relative;
	font-size: clamp(25px, 3.5vw, 45px);
	text-align: left;
	border-bottom: solid 1px #173565;
	padding-left: 0;
}
.recruit_about_box ul li:last-child {border-bottom: none;}
.recruit_about_box ul li a{
	color: #173565;
	padding: 0.8em 0;
	display: block;
}
.recruit_about_box ul li a:hover{color: #224b8f;}

#top .recruit_about_box ul li::before,
#top .recruit_about_box ul li::after {
	content: "";
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	width: 20px;
	height: 1px;
	background-color: #173565;
	transform-origin: calc(100% - 0.5px) 50%;
	margin-right: 0;
}
#top .recruit_about_box ul li::before {transform: rotate(45deg);}
#top .recruit_about_box ul li::after {transform: rotate(-45deg);}
#top .recruit_about_box ul li:hover::before,
#top .recruit_about_box ul li:hover::after {
	background-color: #224b8f;
}
.recruit_about_box div {
	position: relative;
	width: 50%;
	aspect-ratio: 65/56;
	overflow: hidden;
}
.recruit_about_box div img {
	position: absolute;
	object-fit: cover;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease; /* ふわっと */
	display: block; 
}
.recruit_about_box div img.active {
  opacity: 1;
  z-index: 1;
}
.recruit_about_box div::before{
	content: "";
	position: relative;
	display: block;
	width: 95%;
    height: 95%;
    inset: 2.5% 0;
	margin: auto;
	z-index:2;
	background-image: repeating-linear-gradient(90deg, #224b8f, #224b8f 6px, transparent 6px, transparent 9px), repeating-linear-gradient(180deg, #224b8f, #224b8f 6px, transparent 6px, transparent 9px), repeating-linear-gradient(90deg, #224b8f, #224b8f 6px, transparent 6px, transparent 9px), repeating-linear-gradient(180deg, #224b8f, #224b8f 6px, transparent 6px, transparent 9px);
	background-position: left top, right top, left bottom, left top;
	background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
	background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
}
@media (max-width: 800px) {
	.recruit_about_box ul,
	.recruit_about_box div{width: 100%;}
	.recruit_about_box div {aspect-ratio: 3/2;}
}
/*=============== NEWS ===============*/

.news_box{
	background-color: #d8cec2;
	padding: 100px 0 130px;
    margin-bottom: -30px;
}
.news_box .news_box_in{
	gap:20px 3%;
	text-align: left;
}
.news_box .news_title_box{
	width: 27%;
}
.news_box .news_title_box img{display: block;}
.news_box .news_title_box .btn{
	margin-top: 120px;
	text-align: center;
}
.news_box ul{width: 70%;}
.news_box ul li{
	border-bottom: solid 1px #173565;
}
.news_box ul li::before {
	content: none;
}
.news_box ul li a{
	text-decoration: none;
	padding: 1.6em 0.5em;
	display: block;
	transition: opacity 0.5s ease; 
}
.news_box ul li a .day{
	color: #224b8f;
	margin-right: 0.5em;
}
.news_box ul li a .tag{
	font-size: 12px;
	background-color:#224b8f;
	color:#d8cec2;
	padding: 0.2em 0.5em;
}
.news_box ul li a p{
	color: #313131;
	margin-top: 0.5em;
	margin-bottom: 0.5em !important;
	width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;  /* ← ここで2行で切る */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news_box ul li a:hover p{color: #224b8f;}
@media (max-width: 800px) {
	.news_box{padding: 40px 0 80px;}
	.news_box .news_title_box,
	.news_box ul{width: 100%}
	.news_box .news_title_box .btn{margin-top: 10px;}
}
/*=============== NEWS ===============*/

.news_box{
	background-color: #d8cec2;
	padding: 100px 0 130px;
    margin-bottom: -30px;
}
.news_box .news_box_in{
	gap:20px 3%;
	text-align: left;
}
.news_box .news_title_box{
	width: 27%;
}
.news_box .news_title_box img{display: block;}
.news_box .news_title_box .btn{
	margin-top: 120px;
	text-align: center;
}
#top .news_box ul{width: 70%;}
.news_box ul li{
	border-bottom: solid 1px #173565;
}
@media (max-width: 800px) {
	#top .news_box ul{width: 100%;}	
}
.news_box ul li a{
	text-decoration: none;
	padding: 1.6em 0.5em;
	display: block;
	transition: opacity 0.5s ease; 
}
.news_box ul li a .day{
	color: #224b8f;
	margin-right: 0.5em;
}
.news_box ul li a .tag{
	font-size: 12px;
	background-color:#224b8f;
	color:#d8cec2;
	padding: 0.2em 0.5em;
}
.news_box ul li a p{
	color: #313131;
	margin-top: 0.5em;
	width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;  /* ← ここで2行で切る */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news_box ul li a:hover p{color: #224b8f;}
@media (max-width: 800px) {
	.news_box{padding: 40px 0 80px;}
	.news_box .news_title_box,
	.news_box ul{width: 100%}
	.news_box .news_title_box .btn{margin-top: 10px;}
}
/*=====================================================================================
***************************************************************************************

　社員インタビュー

***************************************************************************************
=====================================================================================*/
.interview_contents .page{
	font-size: 46px;
	margin-bottom: .3em;
}
.interview_contents .interview_mv img{
	width: 48%;
	margin-bottom: 0;
}
.interview_contents .interview_mv{
	max-width: 1100px;
	margin: 60px auto 30px;
	align-items: flex-start;
}
.interview_contents .interview_mv>div{margin-top: 40px;}
.interview_contents .name{
	font-size: 24px;
	font-weight: 500;
	margin: .3em 0 .5em!important;
}
.interview_contents .tag{
	border:solid 1px #173565;
	color: #173565;
	font-size: 14px;
	padding: .2em .6em;
	margin-right: .5em;
}
.interview_contents .mv_naka h1{
	font-size: 35px;
	background-color: #224b8f;
	color: #fff;
	box-decoration-break: clone;	
	-webkit-box-decoration-break: clone;
	display: inline;
	padding: .2em .3em;
	line-height: 2;
	margin-bottom: .3em;
}
@media screen and (max-width: 750px) {
	.interview_li .column2_textbox_L{flex-direction: column-reverse;}
	.interview_contents .page{font-size: 36px;}
	.interview_contents .interview_mv{margin: 40px auto 10px;}
	.interview_contents .interview_mv>div{margin-top: 0;}
	.interview_contents .mv_naka img{width: 100%;}
	.interview_contents .mv_naka h1{font-size: 25px;}
}
/*=====================================================================================
***************************************************************************************

　凡庸ページ共通設定

***************************************************************************************
=====================================================================================*/
.naka{padding: 100px 0 150px;}
@media screen and (max-width: 750px) {.naka{padding: 50px 0 60px;}}
/*=============== 中ページMV ===============*/
.mv_naka{
	background: #ebe3d9;
	padding: 250px 0 30px;
	text-align: left;
	color: #224b8f;
}
.page{
	font-weight: 500;
	font-size: 60px;
	position: relative;
	margin-bottom:70px;
}
.page::before{
	content: "";
	background: url("../img/common/SagaShoes.png") no-repeat;
	display: inline-block;
	height: 47px;
	width: 207px;
	position: absolute;
	top: -40px;
}
.mv_naka img{
	width: 90%;
	margin: 0 auto 30px;
	display: block;
}
.mv_naka .sp{display: none;}
.pnkz{
	font-family: "Shippori Mincho", serif;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0;
}
.pnkz span{
	padding: 0 5px;
}
.pnkz a{
	color: #224b8f;
	text-decoration: none;
	border-bottom: 1px #224b8f solid;
}

@media screen and (max-width: 750px){
	.mv_naka{padding: 120px 0 25px;}
	.page{
		font-size: 36px;
		margin: 0 auto 10px;
	}
	.page::before{
		width: 125px;
        position: absolute;
        top: -15px;
        background-size: 100%;
	}
	.mv_naka img{margin: 0 auto 25px;}
	.mv_naka .pc{display: none;}
	.mv_naka .sp{display: block;}
	.pnkz{font-size: 14px;line-height: 2;}
	.pnkz span{padding: 0 5px;}
}


/*=============== 各見出しの設定 ===============*/
h1,h2,h3,h4{
	font-family: "Shippori Mincho", serif;
	font-style: normal;
	text-align: left;
	color: #224b8f;
	margin-bottom: 2em!important;
}
h1{
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
}
h2{
	font-size: 22px;
	font-weight: 500;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #224b8f;
}
h3{
	font-size: 18px;
	font-weight: 500;
}
h3::before{
	content: "－";
	color: #224b8f;
	margin-right: 0.5em;
}
h4{
	font-size: 18px;
	font-weight: 800;
	text-align: left;
}
p{
	font-size: 16px;
	line-height: 2;
	text-align: justify;
	margin-bottom: 2em!important;
}
@media screen and (max-width: 750px){
	h1{font-size: 28px;}
	h2{font-size: 21px;}
	h3{font-size: 18px;}
	h4{font-size: 16px;}
	p{
		font-size: 14px;
		line-height: 1.5;
	}
}
/*=============== BOX ===============*/
.color_box{
	background: #dfe5ee;
	border-radius: 5px;
	padding: 40px 30px;
}
.Process >div{position: relative;}
.Process >div::before{
	position: absolute;
	font-family: "Shippori Mincho", serif;
	color: #fff;
	background-color: #224b8f;
	font-size: 15px;
	line-height: 1;
	padding: .5em 1em .5em 2em;
	display:inline-block;
	inset:-10px auto auto -30px;
}
.Process h2{margin-top: 40px;}
.Process_01 >div:before{content: "Process 01";}
.Process_02 >div::before{content: "Process 02";}
.Process_03 >div::before{content: "Process 03";}
.Process_04 >div::before{content: "Process 04";}
.Process_05 >div::before{content: "Process 05";}
@media screen and (max-width: 750px){
	.color_box{padding: 20px;}
	.Process >div::before{inset:-2px auto auto -20px;}
}
/*=============== ２カラム ===============*/
.column2,
.column2_textbox_L,
.column2_textbox_R,
.data_column_box{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 20px 4%;
}
.column2>*,
.column2_textbox_L>*,
.column2_textbox_R>*{width: 48%;}

.data_column_content{width: 48%;}

.column2_textbox_L p:last-child,
.column2_textbox_R p:last-child{margin-bottom: 0!important;}


@media screen and (max-width: 750px){
	.column2>*,
	.column2_textbox_L>*,
	.column2_textbox_R>*{width: 100%;}

	.data_column_box{gap: 10px 2%;}
	.data_column_content{width: 49%;}
}

/*=============== tableデザイン ===============*/


.wp-block-table td,
.wp-block-table th {
  border: none;
  padding: 0;
}

table{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 20px;
}
tr{
	border-bottom: 1px solid #224b8f;
	border-top: 1px solid #224b8f;
}
/*th{
	background: #dfe5ee;
	color: #224b8f;
	width: 250px;
	text-align: center;
	padding: 20px 30px;
}
*/
.wp-block-table td:first-child {
	background: #dfe5ee;
	color: #224b8f;
	width: 250px;
	text-align: center;
	padding: 20px 30px;	
}
.wp-block-table td{
	text-align: left;
	padding: 20px 30px;
}
@media screen and (max-width: 750px){
	th,td{
		display: block;
		padding: 15px 20px;
		text-align: center;
	}
	th{width: 100%;}
	.wp-block-table td:first-child {width: 100%;}
		
}
/*=============== btn ===============*/
.btn2 {
	max-width: 165px;
	margin-top: 2em;
}
.btn2 a{
	font-size: 14px;
	font-weight: 400;
	color: #173565;
	text-align: center;
	text-decoration: none;
	border: 1px solid #b7a694;
	border-radius: 5px;
	background: #d8cec2;
	padding: 0.5em 1em;
	display: inline-block;
	width: 100%;
	transition: all 0.3s ease;
}
.btn2 a:hover{background: #b7a694;}
.btn_dl{
	width: 240px;
	margin-top: 2em;
}
.btn_dl a{
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
	position: relative;
	background-color: #224b8f;
	text-decoration: none;
	display: inline-block;
	text-align: left;
	color: #fff;
	border: 1px solid #224b8f;
	padding:0.6em 1em;
	width: 100%;
	vertical-align: bottom;
	transition: all 0.3s ease;
	border-radius: 0 !important;
}
.btn_dl a::after{
	content: "";
	background: url("../img/template/dl.jpg");
	background-size: 100%;
	width: 44px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.btn_dl a:hover{background: #173565;}
@media screen and (max-width: 750px){
	.btn2{
		border-radius: 5px;
		padding: 13px;
		width: 165px;
		margin: 0 auto 80px;
		display: block;
	}
}
/*=============== ulデザイン ===============*/
ul{
	text-align: left;
	margin: 0 auto 20px;
	max-width: 1000px;
	width: 90%;
}
ul li{
	text-indent: -1.4em;
    padding-left: 1.4em;
	margin-bottom: 13px;
}
ul li:last-child{margin-bottom: 0;}
ul li::before{
	content: "－";
	color: #224b8f;
	margin-right: 5px;
}

/*=============== olデザイン ===============*/
ol{
	text-align: left;
	margin: 0 auto 20px;
	max-width: 1000px;
	width: 90%;
	counter-reset: ol li;
}
ol li{
	list-style: none;
	margin-bottom: 13px;
	text-indent: -1.4em;
    padding-left: 1.4em;
}
ol li:last-child{margin-bottom: 0;}
ol li:before{
	color: #224b8f;
	margin-right: 10px;
	counter-increment: li;
	content: counter(li)'.';
}

/*=============== img_box ===============*/
.img_box{
	display: flex;
	gap: 30px 2%;
	flex-wrap: wrap;
}
.img_box>*{width: 49%;}
@media screen and (max-width: 750px){
	.img_box{row-gap:10px;}
}

/*=============== img_box ===============*/
.accordion {
	max-width: 1000px;
	width: 90%;
	margin: 20px auto 40px;
	overflow: hidden;
}
.accordion-item {
	background: #f5f7fb;
	margin-bottom: 20px; 
	border-radius: 5px;
	padding: 0 40px;
}
.accordion-item:last-child {
	margin-bottom: 0;
}
.accordion-item:hover {
	background: #eaeaea;
}
.accordion-title {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 25px 0;
	cursor: pointer;
	font-size: 18px;
	font-weight: bold;
	color: #333;
	position: relative;
}
.accordion-title::before{
	content: "";
	background: url("../img/template/Q.png") no-repeat;
	background-position: center;
	background-size: 100%;
	width: 22px;
	height: 27px;
	margin-right: 20px;
}
.accordion-title::after {
	content: ""; 
	display: inline-block;
	border-right: 2px solid #224b8f;
	border-top: 2px solid #224b8f;
	transition: transform 0.3s ease;
	width: 15px;
	height: 15px;
	transform: rotate(135deg);
	transform-origin: 70% 30%;
	position: absolute;
	top: 35px;
	right: 15px;
}

input[type="checkbox"] {
	display: none;
}
input[type="checkbox"]:checked + .accordion-title::after {
	transform: rotate(315deg); /* 矢印を上向きに回転 */
}
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
	text-indent: -2.5em;
    padding-left: 2.5em;
}
input[type="checkbox"]:checked + .accordion-title {
	border-bottom: #224b8f 2px dashed;
	padding-bottom: 25px;
}
.accordion-content p {
	margin: 25px 0;
	font-size: 16px;
	color: #555;
	width: 100%;
}
.accordion-content p::before{
	content: "";
	background: url("../img/template/A.png") no-repeat;
	background-position: center;
	background-size: 100%;
	display: inline-block;
	width: 22px;
	height: 25px;
	margin-right: 20px;
	vertical-align: middle;
}
input[type="checkbox"]:checked ~ .accordion-content {
	max-height: 400px; /* 必要に応じて調整 */
	padding-top: 20px;
}

@media screen and (max-width: 750px){
	.accordion {width: 100%;}
	.accordion-item {
		margin-bottom: 20px; 
		border-radius: 5px;
		padding: 0 20px;
	}
	.accordion-title {
		padding: 15px 24px 15px 0;
		font-size: 16px;
		text-align: left;
	}
	.accordion-title::before{
		width: 16px;
		height: 28px;
		margin: -3px 8px 0 0;
	}
	.accordion-title::after {
		border-right: 2px solid #224b8f;
		border-top: 2px solid #224b8f;
		width: 10px;
		height: 10px;
		transform-origin: 70% 30%;
		top: 25px;
		right: 5px;

	}
	input[type="checkbox"]:checked + .accordion-title {
		border-bottom: #224b8f 2px dashed;
		padding-bottom: 15px;
	}
	.accordion-content {
		text-indent: -1.3em;
		padding-left: 1.3em;
	}
	.accordion-content p {
		margin: 15px 0;
		font-size: 16px;
	}
	.accordion-content p::before{
		width: 16px;
		height: 20px;
		margin: -2px 7px 0 0;
	}
	input[type="checkbox"]:checked ~ .accordion-content {
		max-height: 1000px; /* 必要に応じて調整 */
	}
}

/*=============== 共通 ===============*/
.margin_btm{margin-bottom: 80px!important;}
.magin0{margin: 0 auto;}
@media screen and (max-width: 750px){
	.margin_btm{margin-bottom: 40px!important;}
}

/*===ここまで打消しcss==*/
.common_box p{margin-bottom: 0 !important;}
.common_box ul{
	text-align: initial;
    margin: initial;
    max-width: none;
    width: auto;
}
.common_box ul li{
	margin-bottom: auto;
	text-indent: initial;
}
.common_box ul li::before{content: none;}
/*===ここまで打消しcss==*/
/*=====================================================================================
***************************************************************************************

フォームページ

***************************************************************************************
=====================================================================================*/
.form_page p{margin-bottom: 57px;}
#form{
	padding: 60px 145px 80px;
	background-color: #ebe2d9;
	border-radius: 5px;
}
.field input{
	width: 100%;
	font-size: 15px;
	padding: .8em 1em;
	border: 1px solid #224b8f;
	margin-bottom: 1em;
}
.field p{
	color: #224b8f;
	margin-bottom: .5em!important;
	font-weight: 500;
	text-align: left;
}
.required::after{
	font-size: 12px;
	content: "必須";
	color: #ffffff;
	padding: .2em .5em;
	background: #c12323;
	margin-left: 10px;
}
.field textarea{
	width: 100%;
	font-size: 15px;
	line-height: 1.8;
	padding: .2em 1em;
	border: 1px solid #224b8f;
}
::placeholder{color: #cccccc;}
#form button{
	color: #FFFFFF;
	background-color: #224b8f;
	max-width: 300px;
	width: 100%;
	padding: .8em 1em;
	margin-top: 3em;
	font-size: 16px;
	transition: all 1s ease;
}
#form button:hover{background: #173565;}
@media (max-width: 1050px){
	#form{padding: 30px 24px 40px;}
}



.txt_box p,h1,h2,h3,h4 {
	margin: 0 auto;
	max-width: 1000px;
}

/* WordPress標準の2カラム全体にフレックスを適用 */
.wp-block-columns.is-layout-flex {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 20px 4%;
	margin-bottom: 4%;
	
}

/* 子カラムの比率調整（任意：必要に応じて調整） */
.wp-block-columns.is-layout-flex > .wp-block-column {
  flex: 1 1 48%; /* 2カラムならちょうど良く */
}

/* 画像が figure > img の場合の対応（任意） */
.wp-block-columns.is-layout-flex .wp-block-image {
  margin: 0;
}



/* 基本の横並び（flexベース） */
.wp-block-media-text {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 4%;
  align-items: flex-start;
	margin-bottom: 4%;
}

/* 左テキスト・右画像：比率調整 */
.wp-block-media-text__content {
  flex: 1 1 48%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.wp-block-media-text__media {
  flex: 1 1 48%;
  margin: 0; /* figureのデフォルト余白を打ち消し */
}

/* モバイル時は縦並び */
@media (max-width: 768px) {
  .wp-block-media-text {
    flex-direction: column;
  }

  .wp-block-media-text__content,
  .wp-block-media-text__media {
    flex: 1 1 100%;
  }
}

.wp-block-table {
  margin: 0;
  padding: 0;
  border: none;
}


.wp-block-gallery.is-layout-flex figure.wp-block-image {
  width: calc((100% - 4%) / 2) !important;
  margin: 0 !important;
}

.wp-block-gallery.is-layout-flex {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  row-gap: 20px !important;
  column-gap: 20px !important;
}

.margin0 {
	margin:0 auto !important;
}

#form input[type="submit"] {
    color: #FFFFFF;
    background-color: #224b8f;
    max-width: 300px;
    width: 100%;
    padding: .8em 1em;
    margin-top: 3em;
    font-size: 16px;
    transition: all 1s ease;
    border: none;
    cursor: pointer;
}

.deco0 a {
	text-decoration: none;
	color: #333;
}
