/*
 * スタイルシートのリセットと基本的な設定
 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.5;
    color: #fff;
    background-color: #fff;
    font-size: 16px;
	overflow-x: clip;
	font-feature-settings: 'palt';
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h2{
	font-family: "IBM Plex Sans JP", sans-serif;
}

p,dd{
	word-break: break-all;
}

/*
 * ヘルパークラス
 */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0;
}

.green{color:#45b035;}

.yellow{color:rgb(255, 241, 0);}

.white{color: #fff;}

.flex-box{
	display: flex;
}

.inner-left,
.inner-right{
	width: 50%;
}

.text{
	color: #000;
	font-size: 16px;
	/*line-height: 1.5;*/
	line-height: 2;
}

.emphasis{
	/*text-emphasis: circle;*/
	text-emphasis: dot;
}


.top-back-gradient-02 {
    background: linear-gradient(
        to right,
        #fef7f4  0%,       /* 252,230,215 with opacity 0.4 over white */
        #f2f4f3  4.943%,   /* cddad3 */
        #e1f1f1 11.357%,   /* 97cece */
        #d4efef 17.846%,   /* 69c3ca */
        #c8ecee 24.277%,   /* 43bac7 */
        #c0eaed 30.639%,   /* 25b2c5 */
        #bae9ed 36.909%,   /* 10aec3 */
        #b7e9ed 43.045%,   /* 04abc2 */
        #b7e9ed 48.901%,   /* 00aac2 */
        #b2b7d5 100%       /* 454e9e */
    );
}



.top-back-gradient{
background: linear-gradient(
    to left,
    rgba(69, 78, 158, 0.4), 
    rgba(0, 170, 194, 0.4), 
    rgba(252, 230, 215, 0.4) 
  );
}
.top-back-gradient-reverse{
background: linear-gradient(
    to right,
    rgba(69, 78, 158, 0.4), 
    rgba(0, 170, 194, 0.4), 
    rgba(252, 230, 215, 0.4) 
  );
}

.back-gradient{
background: linear-gradient(to left, rgb(255, 241, 0), #009b63);
}

.back-gradient-reverse{
background: linear-gradient(to right, rgb(255, 241, 0), #009b63);
}




/* ヘッダー ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.site-header {
	width: 100%;
	height: 190px;
	position: relative;
    top: 0;
    left: 0;
	z-index: 999;
}


.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
	max-width: 100%;
	padding: 0 140px 0 120px;
}

.site-logo{
	/*width: 17.24%;*/
	width: 19.94%;
	max-width:331px;
	/*min-width: 240px;*/
	min-width: 192px;
	height: auto;
	aspect-ratio: 331 / 42;
	align-self: flex-end;
    margin-bottom: 52px;
}

.site-header .flex-box{
	gap: 34px;
	align-items: center;
}


.main-nav {
    display: flex;
    height: 100%;
}



    .main-nav ul {
		display: flex;
        justify-content: center;
        align-items: center;
		height: 100%;
    position: relative;
    }

    .main-nav li {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
    }
.main-nav li.nav-recruit{
	width: 190px;
	background: rgb(255, 241, 0);
	
}
.main-nav li.nav-contact{
	width: 190px;
	background: #45b035;
}	
	.main-nav a{
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-end;
        /*margin-bottom: 58px;*/
		margin-bottom: 53px;
		transition: 0.3s;
		font-size: 16px;
		font-weight: 500;
		color: #fff;
		    letter-spacing: 0.1em;
	}
.main-nav a:hover{
	opacity: 0.5;
}

.main-nav li.nav-contact a,
.main-nav li.nav-recruit a{
	height: 100%;
	/*padding-bottom: 42px;*/
	padding-bottom: 36px;
	margin-bottom: 0;
}
.main-nav li.nav-recruit a{
	color: #45b035;
}

.main-nav li.nav-contact a span,
.main-nav li.nav-recruit a span{
	/*margin-bottom: 1em;*/
	margin-bottom: 23px;
}

.main-nav li.nav-recruit a img{
	width: 96px;
	height: 16px;
}
.main-nav li.nav-contact a img{
	width: 106px;
	height: 16px;
}

.main-nav li.nav-about_us a img{
	width: 83px;
	height: 10px;
	margin-top: 12px;
	filter: invert(100%) sepia(13%) saturate(7459%) hue-rotate(286deg) brightness(117%) contrast(111%);
}

.main-nav li.nav-service a img{
	width: 68px;
	height: 10px;
	margin-top: 12px;
	filter: invert(100%) sepia(13%) saturate(7459%) hue-rotate(286deg) brightness(117%) contrast(111%);
}

.main-nav li.nav-about_us{
	padding-right: 50px;
}
.main-nav li.nav-service{
	padding-right: 42px;
}
   


.menu-toggle { /* ハンバーガーメニューボタン（モバイル用） */
    display: none; /* デスクトップでは非表示 */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    /*background-color: #3d3f4a;*/
	/*background-color: rgb(255, 241, 0);*/
	background-color: #45b035;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}


.child-page .main-nav .nav-about_us a,
.child-page .main-nav .nav-service a{
	color: #45b035;
}
.child-page .main-nav .nav-about_us a img, 
.child-page .main-nav .nav-service a img{
	filter: invert(52%) sepia(60%) saturate(584%) hue-rotate(65deg) brightness(98%) contrast(83%);
}



/* フッター ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.site-footer{
	background-color: rgb(255, 241, 0);
	width: 100%;
	height: auto;
	min-height: 260px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px;
	position: relative;
}

.site-footer .content-wrapper{
	width: 100%;
	max-width: 1278px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-logo{
	width: 330px;
	aspect-ratio: 330 / 42;
}


.footer-nav{
	display: flex;
	gap: 20px 45px;
}

.footer-nav li a{
	color: #45b035;
	letter-spacing: 0.01em;
}

#pagetop{
	position: absolute;
    right: 68px;
    top: -90px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
	transition: 0.3s;
}
.pagetop img{
	width: 72px;
	aspect-ratio: 72/ 38;
}

#pagetop:hover{
	top: -95px;
}




/* TOP ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#hero{
    margin-top: -190px;
    padding-top: 190px;
	width: 100%;
	position: relative;
	padding-bottom: 136px;
}

#hero::after{
	content: '';
	width: 83px;
	aspect-ratio: 83 / 89;
	background-image: url("../images/scroll.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
}

.hero-inner{
	margin-top: 78px;
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 662;
	background-image: url("../images/top-image.png");
	background-size: 95.42%;
	background-position: right top;
	background-repeat: no-repeat;
	position: relative;
}

.top-copy{
	margin-top: 78px;
    margin-left: 18.75vw;
    position: absolute;
}

.top-copy h2{
	font-size: clamp(26px, 3.6vw, 41.8px);
	z-index: 2;
    position: relative;
	    letter-spacing: 0.2em;
}
	  
#top-01{
	border-bottom-left-radius: 25.52vw;
	padding:130px 40px 150px;
}
#top-01 h3{
	width: 60%;
	max-width: 525px;
	aspect-ratio: 525 / 63;
	align-self: flex-start;
	margin-left: -8px;
}
#top-01 h3 img{
	/*filter: invert(99%) sepia(0%) saturate(284%) hue-rotate(314deg) brightness(113%) contrast(100%);*/
}



#top-01 .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1280px;
}

.white-box{
	width: 80%;
	max-width: 845px;
	aspect-ratio: 1 / 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	color: #45b035;
	position: relative;
	margin-bottom: 125px;
}
.white-box::after{
	content: '';
	width: clamp(64px,10.78vw,207px);
	max-width: 207px;
	aspect-ratio: 207 / 175;
	display: block;
	background: url("../images/character.svg");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -10px;
	left: 3.91vw;
}
	 
.white-box p{
	writing-mode: vertical-rl;
	font-size: clamp(20px, 3.82vw, 46px);
	font-weight: bold;
	font-family: "IBM Plex Sans JP", sans-serif;
	letter-spacing: 0.15em;
}

.square-button{
	aspect-ratio: 1 / 1;
	width: 116px;
	background: #45b035;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 0;
	bottom: 0;
    transform: translateY(50%);
	transition: 0.3s all;
}
.square-button img{
	width: 25px;
	aspect-ratio: 25 / 18;
	/*filter: invert(100%) sepia(2%) saturate(7496%) hue-rotate(152deg) brightness(106%) contrast(101%);*/
	transition: 0.3s all;
}

.square-button:hover img{
	transform: translateY(5px);
}

.rectangle-button{
	color: #45b035;
	background: rgb(255, 241, 0);
	width: 180px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s all;
}
.rectangle-button:hover{
	filter: brightness(1.2);
}

	



#top-02 .inner-wrapper{
	border-bottom-right-radius: 25.52vw;
	padding:130px 40px 266px;
	background: #fff;
}


#top-02 h3{
	width: 60%;
	max-width: 433px;
	aspect-ratio: 433 / 63;
	align-self: flex-start;
	/*margin-bottom: 2em;*/
	margin-left: -54px;
	/*margin-left: -82px;*/
	margin-bottom: 96px;
}

#top-02 .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1280px;
}

#top-02 .container .flex-box{
	width: 100%;
	    padding: 0 40px;
}


#top-02 .inner-left{
	/*width: 83.125%;*/
	width: 85.67%;
	/*border-right: solid 1px #45b035;*/
	position: relative;
	/*padding-right: 45px;*/
	/*margin-left: 40px;*/
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
	align-items: flex-end;
	/*padding-left: 40px;*/
	/*padding-right: 40px;*/
	padding-right: 48px;
}
#top-02 .inner-right{
	/*width: calc(100% - 85.67%);*/
	width: auto;
    border-left: solid 1px #45b035;
}

#top-02 .inner-right h3{
	width: auto;
	max-width: none;
	aspect-ratio: unset;
	align-self: flex-start;
	margin-bottom: 0;
	writing-mode: vertical-rl;
	margin-left: 50px;
	font-size: 24px;
	letter-spacing: 0.075em;
}


.large{
	font-size: clamp(18px,5vw,24px);
	font-weight: bold;
	margin-bottom: 1.5em;
	display: block;
}

#top-02 .text{
	margin-bottom: 50px;
	max-width: 914px;
	letter-spacing: 0.025em;
	text-align: justify;
    overflow-wrap: anywhere;
}

#top-02 .large.green{
	width: 100%;
    max-width: 916px;
	margin-bottom: 20px;
	letter-spacing: 0.075em;
	text-align: justify;
    overflow-wrap: anywhere;
}

.split-box{
	background: rgb(255, 241, 0);
	display: flex;
	/*gap: 64px;*/
	gap: 44px;
	padding: 28px 65px 78px;
	justify-content: space-between;
	max-width: 914px;
	position: relative;
}

.split-box li{
	width: calc(100% / 3);
	display: flex;
	flex-direction: column;
	align-items: center;
}
.split-inner h4{
	font-size: clamp(18px,1.9vw,24px);
	margin-bottom: 1em;
	letter-spacing: 0.075em;
}
.split-inner p{
	color: #000;
	letter-spacing: 0.025em;
	/*font-weight: 300;*/
    text-align: justify;
    overflow-wrap: anywhere;
}

#top-02 .square-button{
	left: 0;
}


#top-03{
	border-bottom-left-radius: 25.52vw;
	padding:130px 40px 150px;
}
#top-03 h3{
	width: 60%;
	max-width: 444px;
	aspect-ratio: 444 / 63;
	align-self: flex-start;
	margin-bottom: 2.5em;
	margin-left: -54px;
}

.tagline{
	display: block;
	/*font-size: clamp(18px,4vw,48px);*/
	font-size: clamp(18px,5vw,48px);
	font-weight: bold;
	font-family: "IBM Plex Sans JP", sans-serif;
	margin-bottom: 2em;
	letter-spacing: 0.075em;
}


#top-03 .tagline{
	margin-left: 60px;
}

#top-03 .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1280px;
}

#top-03 .flex-box{
	width: 100%;
    padding: 0 40px;
}


#top-03 .inner-left{
	/*width: 83.125%;*/
	width: 85.67%;
	border-right: solid 1px #fff;
	position: relative;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#top-03 .inner-right{
	/*width: calc(100% - 83.125%);*/
	width: auto;
}

#top-03 .inner-right h3{
	width: auto;
	max-width: none;
	aspect-ratio: unset;
	align-self: flex-start;
	margin-bottom: 0;
	writing-mode: vertical-rl;
	margin-left: 50px;
    font-size: 24px;
    letter-spacing: 0.075em;
}

#top-03 .rectangle-button{
	background: #fff;
	width: 277px;
	font-size: 14px;
	    margin-left: 27.72%;
	letter-spacing: 0.2em;
}


#top-04 .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 110px 40px;
}

#top-04 .large{
	letter-spacing: 0.1em;
}

#top-04 a{
	font-size: 30px;
	font-size: clamp(18px,5vw,30px);
	font-weight: bold;
	display: flex;
	align-items: center;
	position: relative;
	letter-spacing: 0.1em;
}
#top-04 a:after{
	content:'';
	background: url("../images/arrow-02.svg");
	background-repeat: no-repeat;
	display: inline-block;
	width: 21px;
	height: 25px;
	filter: invert(56%) sepia(72%) saturate(470%) hue-rotate(65deg) brightness(89%) contrast(89%);
	margin-left: 20px;
}


/* 採用情報 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#recruit-01{
	background: linear-gradient(to bottom, transparent 50%, #45b035 50%);
}

#recruit-01 .outer-wrapper{
	border-top-left-radius: 25.52vw;
	border-bottom-right-radius: 6.41vw;
	background: #fff;
}

#recruit-01 .inner-wrapper{
	border-top-left-radius: 25.52vw;
	border-bottom-right-radius: 6.41vw;
    /*padding: 130px 40px 16.24vw 16.67vw;*/
	padding: 130px 40px 17.24vw 16.67vw;
	position: relative;
}
#recruit-01 .inner-wrapper::after{
	content: '';
	width: 100%;
	height: 45.45vw;
	position: absolute;
	bottom: -8px;
	left: 0;
	background: url("../images/recruit-top.png");
	background-size: contain;
	background-repeat: no-repeat;
}


#recruit-01 .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1280px;
}

#recruit-01 h2{
	width: 60%;
	max-width: 444px;
	aspect-ratio: 444 / 63;
	align-self: flex-start;
	/*margin-bottom: 2em;*/
	margin-bottom: 4.52em;
}

#recruit-01 .center-adjust{
	margin-left: -16.67vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
    z-index: 1;
}

#recruit-01 .tagline{
	/*margin-bottom: 0.5em;*/
	margin-bottom: 1.85em;
}

#recruit-01 .tagline-text{
	max-width: 658px;
	word-break: break-all;
	margin-bottom: 65px;
	text-align: justify;
    overflow-wrap: anywhere;
}
.features-list{
	display: flex;
	flex-wrap: wrap;
	gap: 35px;
	justify-content: center;
	width: fit-content;
	width: 100%;
	max-width: 592px;
	/*margin-bottom: 168px;*/
	/*margin-bottom: 72px;*/
	margin-bottom: 58px;
}
.features-list li{
	width: 174px;
	aspect-ratio: 174 / 164;
	background: rgb(255, 241, 0);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 20px;
	color: #45b035;
	text-align: center;
	line-height: 2;
	letter-spacing: 0.075em;
}

.features-list li .mini{
	font-size: 0.8em;
	line-height: 1.5;
}

.benefit-box{
	display: flex;
	/*align-self: flex-start;*/
	flex-direction: column;
	width: 100%;
    align-items: center;
}
/*.benefit-box .inner-left{
	border-right: solid 1px #fff;
	width: 11.41%;
	max-width: 146px;
	display: flex;
	align-items: center;
}
*/
.benefit-box h3{
	font-size: 24px;
	/*padding-right: 42px;*/
	margin-bottom: 30px;
	letter-spacing: 0.075em;
}

/*.benefit-box .inner-right{
	padding-left: 80px;
}*/

.benefit-box h3 p{
	letter-spacing: 0.1em;
}


#recruit-02{
	background: #45b035;
	padding-bottom: 110px;
}

.recruit-swiper-wrapper{
	width: 100%;
    max-width: 1048px;
    margin: 0 auto;
}

.thumbs-wrapper{
	display: flex;
	width: 100%;
	/*max-width: 1048px;*/
	margin: 0 auto 90px;
	align-items: flex-end;
}

#recruit-02 h3{
	writing-mode: vertical-rl;
	color: #45b035;
	background: rgb(255, 241, 0);
	padding: 55px 25px 30px;
	margin-right: 68px;
	font-size: 24px;
}

.recruit-thumbs{
	display: flex;
	gap: 18px 18px;
	/*flex-wrap: wrap;*/
	/*margin-top: 40px;*/
	/*margin-right: 40px;*/
}

.recruit-thumbs li{
	width: 113px;
	height: 113px;
}

.recruit-thumbs li button{
	margin: 0;
    border: none;
    background: #fff;
	/*padding: 14px 19px;*/
	padding: 14px 16px 14px 19px;
	color: #45b035;
	height: 100%;
	width: 100%;
    display: flex;
    flex-direction: column;
	align-items: flex-start;
	cursor: pointer;
}
.recruit-thumbs li button img{
	filter: invert(56%) sepia(72%) saturate(470%) hue-rotate(65deg) brightness(89%) contrast(89%);
	margin-bottom: 12px;
}
.recruit-thumbs li button img:nth-child(1){
	width: 39px;
	height: 25px;
}
.recruit-thumbs li button img:nth-child(2){
	width: 42px;
	height: 25px;
}
.recruit-thumbs li button img:nth-child(3){
	width: 43px;
	height: 25px;
}
.recruit-thumbs li button img:nth-child(4){
	width: 44px;
	height: 25px;
}
.recruit-thumbs li button img:nth-child(5){
	width: 44px;
	height: 25px;
}
.recruit-thumbs li button img:nth-child(6){
	width: 43px;
	height: 25px;
}
.recruit-thumbs li button img:nth-child(7){
	width: 45px;
	height: 25px;
}

.recruit-thumbs li button .thumb-title{
	font-size: 18px;
	font-family: "IBM Plex Sans JP", sans-serif;
	font-weight: bold;
	line-height: 1.1;
	letter-spacing: 0.075em;
}
.recruit-thumbs li button .mini{
	font-family: "IBM Plex Sans JP", sans-serif;
	margin-top: 0.5em;
	font-size: 12px;
	line-height: 1.4;
    text-align: left;
}


.swiper-container{
	position: relative;
}

.swiper-slide{
	color: #000;
}

.slide-title-box{
	display: flex;
	align-items: center;
	background: #45b035;
	color: #fff;
}

.slide-title-box h4{
	font-size: 28px;
	letter-spacing: 0.075em;
}
.slide-title-box h4 .mini{
	font-size: 16px;
	margin-left: 42px;
	font-weight: 400;
}

.slide-title-box img{
	/*filter: invert(100%) sepia(1%) saturate(7500%) hue-rotate(44deg) brightness(121%) contrast(101%);*/
	margin-right: 52px;
	margin-bottom: -2px;
}

.slide1 .slide-title-box img{
	width: 98px;
	height: 63px;
	aspect-ratio: 98 / 63;
}
.slide2 .slide-title-box img{
	width: 106px;
	height: 63px;
	aspect-ratio: 106 / 63;
}
.slide3 .slide-title-box img{
	width: 109px;
	height: 63px;
	aspect-ratio: 109 / 63;
}
.slide4 .slide-title-box img{
	width: 112px;
	height: 64px;
	aspect-ratio: 112 / 64;
}
.slide5 .slide-title-box img{
	width: 110px;
	height: 63px;
	aspect-ratio: 110 / 63;
}
.slide6 .slide-title-box img{
	width: 109px;
	height: 63px;
	aspect-ratio: 109 / 63;
}
.slide7 .slide-title-box img{
	width: 113px;
	height: 63px;
	aspect-ratio: 113 / 63;
}

.swiper-slide h5{
	color: #45b035;
	font-size: 21px;
	font-family: "IBM Plex Sans JP", sans-serif;
	font-weight: bold;
	margin-bottom: 0.5em;
    letter-spacing: 0.075em;
}
.slide-inner-01,
.slide-inner-02{
	background: #fff;
}
.slide-inner-01{
	padding: 110px 106px 0;
}
.slide-inner-02{
	padding: 76px 106px 110px;
	display: flex;
	flex-direction: column;
	gap: 50px;
	text-align: justify;
    overflow-wrap: anywhere;
}

.slide1 .slide-inner-01 .inner-right img{
	aspect-ratio:365 / 342;
	max-width: 365px;
    margin-left: auto;
}
.slide2 .slide-inner-01 .inner-right img{
	aspect-ratio:366 / 304;
	max-width: 366px;
    margin-left: auto;
}
.slide3 .slide-inner-01 .inner-right img{
	aspect-ratio:366 / 394;
	max-width: 366px;
    margin-left: auto;
}
.slide4 .slide-inner-01 .inner-right img{
	aspect-ratio:366 / 346;
	max-width: 366px;
    margin-left: auto;
}
.slide5 .slide-inner-01 .inner-right img{
	aspect-ratio:389 / 344;
	max-width: 389px;
    margin-left: auto;
}
.slide6 .slide-inner-01 .inner-right img{
	aspect-ratio:405 / 336;
	max-width: 405px;
    margin-left: auto;
}
.slide7 .slide-inner-01 .inner-right img{
	aspect-ratio:403 / 311;
	max-width: 403px;
    margin-left: auto;
}


.schedule {
  display: grid;
  grid-template-columns: 2.5em 1fr;
  row-gap: 0.6em;
	font-size: 16px;
    /*font-weight: 300;*/
    letter-spacing: 0.05em;
}
.schedule dt {
  /*font-weight: bold;*/
	text-align: right;
}
.schedule dd {
  margin: 0;
	padding-left: 20px;
}

.overflow{
	width: 12ch;
    white-space: nowrap;
    overflow: visible;
	/*font-weight: 300;*/
    letter-spacing: 0.05em;
}

/*.slide5 .schedule{
	grid-template-columns: 7em 1fr;
}
.schedule dt.text-adjust{margin-right: 3.5em;}
.schedule dd.text-adjust{margin-left: -3.5em;}
*/

.slide-inner-02 h5{
	margin-bottom: 0.5em;
}

.swiper-button-prev,
.swiper-button-next{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
	cursor: pointer;
	pointer-events: auto;
	width: 56px;
    height: 56px;
    border-radius: 50%;
	background: #b5dfae;
}

.swiper-button-prev{
	left: 0;
	transform: translateX(-50%);
}

.swiper-button-next{
	right: 0;
	transform: translateX(50%);
}

.swiper-button-prev img,
.swiper-button-next img{
	width: 9px;
	height: 19px;
	filter: invert(100%) sepia(1%) saturate(7500%) hue-rotate(44deg) brightness(121%) contrast(101%);
}

.swiper-button-prev img{
	transform: scaleX(-1);
}


.swiper-slide{
	min-height: 1111px;
	background: #fff;
}

.slide-inner-02 p{
	line-height: 2;
	font-size: 16px;
    /*font-weight: 300;*/
    letter-spacing: 0.05em;
	text-align: justify;
    overflow-wrap: anywhere;
}



#recruit-03{
	background: #f2f2f2;
	color: #45b035;
	padding: 150px 40px;
}
#recruit-03 .container{
	width: 100%;
	max-width: 1046px;
}

#recruit-03 h3{
	font-size: 24px;
	letter-spacing: 0.075em;
}

#recruit-03 .flex-box .inner-left{
	width:  19.27%;
	padding-right: 40px;
}
#recruit-03 .flex-box .inner-right{
	width: auto;
}
#recruit-03 dl dt{
	margin-bottom: 0.5em;
	letter-spacing: 0.1em;
}
#recruit-03 dl dd{
	margin-bottom: 50px;
}

#recruit-04{
	padding: 110px 40px;
}

#recruit-04 .container{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 1046px;
}

#recruit-04 img{
	width: clamp(64px, 7.19vw, 138px);
	aspect-ratio: 138 / 175;
	margin-right: clamp(20px, 3.65vw, 70px);
}

#recruit-04 a{
	font-size: 30px;
	font-size: clamp(18px,5vw,30px);
	font-weight: bold;
	display: flex;
	align-items: center;
	position: relative;
	letter-spacing: 0.2em;
}
#recruit-04 a br{
	display: none;
}

#recruit-04 a:after{
	content:'';
	background: url("../images/arrow-02.svg");
	background-repeat: no-repeat;
	display: inline-block;
	width: 21px;
	height: 25px;
	filter: invert(56%) sepia(72%) saturate(470%) hue-rotate(65deg) brightness(89%) contrast(89%);
	margin-left: 20px;
}





/* わたしたちについて ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#about_us-01{
	position: relative;
	z-index: 2;
}

#about_us-01 .container{
	width: 100%;
	max-width: none;
	aspect-ratio: 1920 / 837;
	background: url("../images/about_us-top.svg");
	background-size: contain;
	background-repeat: no-repeat;
	border-bottom-left-radius: 6.77vw;
	border-bottom-right-radius: 6.77vw;
	/*padding: 8.13vw 40px 40px 16.67vw;*/
	/*padding-top: clamp(32px, 8.13vw, 155px);*/
	padding-top: 130px;
	padding-left:16.67vw;
	padding-right: 40px;
	padding-bottom: 40px;
}

#about_us-01 h2{
	width: 60%;
    max-width: 525px;
    aspect-ratio: 525 / 63;
    align-self: flex-start;
}

#about_us-01 h2 img{
	filter: invert(99%) sepia(0%) saturate(284%) hue-rotate(314deg) brightness(113%) contrast(100%);
}

#about_us-02{
	margin-top: -130px;
	padding-top: calc(120px + 6.77vw);
	padding-bottom: 138px;
	padding-right: 40px;
	padding-left: 40px;
}

#about_us-02 .container{
	/*max-width: 1280px;*/
	max-width: 1048px;
}


#about_us-02 .inner-left{
	/*width: 32.5%;*/
	width: 28.63%;
	display: flex;
    /*justify-content: center;*/
	justify-content: flex-start;
}
#about_us-02 .inner-right{
	/*width: 58.44%;*/
    width: 71.37%;
	padding-top: 120px;
}

.vertical-tagline{
	writing-mode: vertical-rl;
	font-size: clamp(20px, 3.82vw, 53px);
	font-weight: bold;
	font-family: "IBM Plex Sans JP", sans-serif;
	color: rgb(255, 241, 0);
	letter-spacing: 0.15em;
}

.card{
	background: #fff;
	color: #45b035;
	display: flex;
	flex-direction: row-reverse;
	margin-bottom: 22px;
}
.card-inner{
	/*padding: 67px 86px 58px;*/
	padding: 58px 86px;
}
.card h3 {
    writing-mode: vertical-rl;
    color: #45b035;
    background: rgb(255, 241, 0);
    /*padding: 60px 25px;*/
	padding: 65px 25px;
	height: fit-content;
	min-height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	font-weight: bold;
    letter-spacing: 0.075em;
	font-family: "IBM Plex Sans JP", sans-serif;
}

.card p{
	line-height: 2;
	font-size: 16px;
    /*font-weight: 300;*/
	letter-spacing: 0.025em;
	text-align: justify;
    overflow-wrap: anywhere;
}

#about_us-02 .card-inner ul{
	margin-top: 5px;
}



.card-wrapper-02{
	flex-direction: column;
}


.card-wrapper-02 .card:nth-child(1){
	flex-direction: row;
	/*width: 58.52%;*/
	width: 100%;
    max-width: 71.47%;
}
.card-wrapper-02 .card:nth-child(2){
	/*width: 69.22%;*/
	width: 100%;
    max-width: 84.54%;
	align-self: flex-end;
	margin-bottom: 0;
	position: relative;
}
.card-wrapper-02 .card:nth-child(2) .card-inner{
	padding: 58px 84px 58px 86px;
}


.card-wrapper-02 .card:nth-child(2)::before{
	content: '';
    width: clamp(64px, 11.46vw, 220px);
    aspect-ratio: 220 / 146;
    display: block;
    background: url(../images/character-03.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -7.19vw;
    right: 40px;
}


.card-wrapper-02 .card:nth-child(2) ul li{
	margin-bottom: 1.5em;
	font-size: 15px;
}
.card-wrapper-02 .card:nth-child(2) ul li .mini{
	font-size: 10px;
}


#about_us-03{
	padding: 130px 40px 120px;
	color: #000;
}

#about_us-03 .container{
	max-width: 1280px;
}

#about_us-03 h3.section-title{
	width: 60%;
    max-width: 510px;
    aspect-ratio: 510 / 63;
    align-self: flex-start;
    margin-bottom: 95px;
}

#about_us-03 .inner-right {
    width: 94.53%;
    border-left: solid 1px #45b035;
    position: relative;
    padding-left: 45px;
}

#about_us-03 .inner-left {
    /*width: calc(100% - 94.53%);*/
	width: auto;
}

#about_us-03 .inner-left h3:not(.section-title){
	width: auto;
    max-width: none;
    aspect-ratio: unset;
    align-self: flex-start;
    margin-bottom: 0;
    writing-mode: vertical-rl;
    margin-right: 50px;
	/*font-size: 24px;*/
    letter-spacing: 0.075em;
}

.inner-flex-box{
	display: flex;
}
#about_us-03  dl{
	display: flex;
	margin-bottom: 48px;
	    font-size: 16px;
    /*font-weight: 300;*/
	letter-spacing: 0.05em;
}
#about_us-03  dl dt{
	min-width: 7em;
}

#about_us-03  dl dd{
	line-height: 2;
}

#about_us-03  dl dd .dd-flex{
	display: flex;
}
#about_us-03  dl dd .item{
	min-width: 8em;
	display: inline-block;
}
#about_us-03  dl dd .year{
	min-width: 7em;
	display: inline-block;
}
#about_us-03  dl dd .number{
	min-width: 17em;
	display: inline-block;
}

#about_us-03  dl dd .year-number{
	display: inline-block;
	width: 1.3em; 
	text-align: right;
}


/* 事業内容 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#service-01{
	position: relative;
	z-index: 2;
}

#service-01 .container{
	width: 100%;
	max-width: none;
	background: linear-gradient(to right, #f7fdfd, #a0dfe8);
	border-top-left-radius: 26.04vw;
	border-bottom-left-radius: 6.77vw;
	border-bottom-right-radius: 6.77vw;
	/*padding: 8.13vw 40px 136px 16.67vw;*/
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	position: relative;
	/*padding-top: clamp(32px, 8.13vw, 155px);*/
	padding-top: 130px;
    padding-left: 16.67vw;
    padding-right: 40px;
    padding-bottom: 136px;
}
#service-01 .container::after{
	content: '';
    width: clamp(64px, 33.8vw, 649px);
    aspect-ratio: 649 / 396;
    display: block;
    background: url("../images/service-top.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    /*top: 138px;*/
	top: 130px;
    /*right: 14.38%;*/
	right: 12.38%;
	z-index: 0;
}

#service-01 h2{
	width: 60%;
    max-width: 432px;
    aspect-ratio: 432 / 63;
    align-self: flex-start;
	position: relative;
	z-index: 2;
}

.tagline-wrapper{
	width: 100%;
	/*padding-left: 9.22%;*/
	padding-left: 7.42%;
}

#service-01 .tagline{
	font-size: clamp(17px, 2.2vw, 36px);
	margin-top: 4em;
	margin-bottom: 1em;
	position: relative;
	z-index: 2;
	letter-spacing: 0.075em;
}

#service-01 p{
	width: 71.41%;
	max-width: 914px;
	line-height: 2;
	position: relative;
	z-index: 2;
	font-size: 16px;
    /*font-weight: 300;*/
    letter-spacing: 0.05em;
	text-align: justify;
    overflow-wrap: anywhere;
}

#service-02{
	margin-top: -130px;
	padding-top: calc(265px + 6.77vw);
	padding-bottom: 138px;
	padding-right: 40px;
	padding-left: 40px;
	background-color: #f2f2f2;
}

#service-02 .container{
	background: rgb(255, 241, 0);
	border-radius: 140px;
	text-align: center;
	padding: 80px 20px 113px;
	position: relative;
	max-width: 1050px;
}

#service-02 .container::before{
	content: '';
    width: clamp(100px, 11.46vw, 220px);
    aspect-ratio: 220 / 193;
    display: block;
    background: url(../images/character-04.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -9.53vw;
    left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
#service-02 .container::after{
	content: '';
    width: 194px;
    aspect-ratio: 194 / 86;
    display: block;
    background: url(../images/service-image.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 4px;
    right: 10.95%;
}


#service-02 .container h3{
	font-size: 24px;
	/*margin-bottom: 55px*/;
	margin-bottom: 27px;
}


.split-box-02 {
    display: flex;
    gap: 55px;
    padding: 28px 33px 0;
    justify-content: center;
}
.split-inner-01 {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
	max-width: 249px;
}

.circular-title{
	border-radius: 50%;
    background: #45b035;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    width: 100%;
	margin-bottom: 20px;
}

.circular-title h4{
	font-size: 24px;
	position: relative;
}
.circular-title h4::after{
	content:'くわしくはこちら';
	display: block;
	font-size: 14px;
	/*font-weight: normal;*/
	font-weight: 300;
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	/*min-width: 8em;*/
	    min-width: 10em;
    letter-spacing: 0.2em;
	
}

.split-tagline{
	font-size: 21px;
	font-weight: bold;
	margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
	letter-spacing: 0.075em;
}

.split-inner-01 p{
	color: #000;
	/*text-align: left;*/
	/*font-weight: 300;*/
	line-height: 1.69;
	letter-spacing: 0.025em;
    word-break: break-all;
    text-align: justify;
    overflow-wrap: anywhere;
}


/* サステナビリティ ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#sustainability-01{
	background: linear-gradient(to bottom, transparent 50%, #45b035 50%);
}

#sustainability-01 .outer-wrapper{
	border-top-left-radius: 25.52vw;
	background: #fff;
}

#sustainability-01 .inner-wrapper{
	border-top-left-radius: 25.52vw;
    padding: 130px 40px 150px 16.67vw;
	position: relative;
	background: #45b035;
}



#sustainability-01 .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1280px;
	margin: 0;
}

#sustainability-01 h2{
	width: 80%;
	max-width: 855px;
	aspect-ratio: 855 / 63;
	align-self: flex-start;
	margin-bottom: 4em;
}

#sustainability-01 .center-adjust{
	/*margin-left: -16.67vw;*/
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
    z-index: 1;
	width: 100%;
	max-width: 910px;
	margin: 0 auto 64px;
}

#sustainability-01 .tagline{
	/*margin-bottom: 0.5em;*/
	margin-bottom: 50px;
    font-size: clamp(18px, 4vw, 36px);
	letter-spacing: 0.075em;
	line-height: 1;
}

#sustainability-01 .tagline-text{
	max-width: unset;
	word-break: break-all;
	/*margin-bottom: 55px;*/
	margin-bottom: 50px;
	font-size: clamp(16px, 2vw, 21px);
	/*font-weight: 300;*/
    letter-spacing: 0.025em;
}

#sustainability-01 .center-adjust .flex-box{
	justify-content: space-between;
	margin-left: auto;
	width: 100%;
	max-width: 547px;
	/*font-weight: 300;*/
    letter-spacing: 0.025em;
}

#sustainability-01 .card{
	flex-direction: row;
	max-width: 1047px;
    width: 100%;
	margin-bottom: 0;
	position: relative;
}

#sustainability-01 .card::after{
	content: '';
    width: clamp(60px, 7.14vw, 137px);
    aspect-ratio: 137 / 267;
    display: block;
    background: url(../images/character-05.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -4px;
    right: 30px;
}


#sustainability-01 .card .card-inner{
	padding: 80px 40px;
	width: 100%;
	margin-left: -86px;
}

.sdgs-box{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 72px;
}

.sdgs-box h4{
	font-size: 1.17em;
	margin-bottom: 1em;
	letter-spacing: 0.075em;
}

.sdgs-box ul{
	display: flex;
	gap: 12px;
	margin-bottom: 22px;
	flex-wrap: wrap;
	text-align: justify;
    overflow-wrap: anywhere;
}

.sdgs-box ul li{
	width: 102px;
	aspect-ratio: 1 / 1;
}

.sdgs-box p{
	color: #595757;
	max-width: 560px;
	letter-spacing: 0.01em;
}



/* お問い合わせ ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


#contact-01{
	background: linear-gradient(to bottom, transparent 50%, #f2f2f2 50%);
}

#contact-01 .outer-wrapper{
	border-top-left-radius: 25.52vw;
	background: #fff;
}

#contact-01 .inner-wrapper{
	border-top-left-radius: 25.52vw;
    padding: 130px 40px 150px 16.67vw;
	position: relative;
	background: #f2f2f2;
}



#contact-01 .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1280px;
	color: #000;
	margin: 0;
}

#contact-01 h2{
	width: 60%;
	max-width: 477px;
	aspect-ratio: 477 / 63;
	align-self: flex-start;
	/*margin-bottom: 2em;*/
	margin-bottom: 4em;
}


.form-wrap{
  max-width: 1200px;
	width: 100%;
  margin: 0 auto;
  padding: 0 76px 0;
}

.form-group {
  display: flex;
  align-items: center;
	color: #fff;
	/*margin: 0 45px;*/
	    font-size: 16px;
}



.form-group label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  /*font-weight: bold;*/
	padding: 30px 0;
	height: auto;
	min-height: 80px;
	color: #000;
	letter-spacing: 0.1em;
}

.form-group.inquiry-details label{
	height: 378px;
	align-items: flex-start;
}

.form-group.text-area{
	align-items: flex-start;
}

.label-name{
	/*width: 160px;*/
	width: 154px;
    display: flex;
    align-items: center;
}

.label-column{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.label-column .required{
	display: inline-block;
}

.label-name .mini{
	display: inline-block;
	font-size: 0.8em;
	margin-top: 0.8em;
}


.required {
  font-size: 0.8rem;
  color: #83e015;
  font-weight: normal;
  padding: 2px 5px;
  white-space: nowrap;
	/*width: 55px;
	height: 22px;*/
	display: flex;
	align-items: center;
	justify-content: center;
}

.optional{
	width: 90px;
	height: 30px;
	margin: 0 65px;
}

.form-group > input[type="text"],
.form-group > textarea {
  width: 100%;
  box-sizing: border-box;
  border: solid 1px #585757;
  padding: 10px;
  font-size: 1rem;
  min-height: 40px;
	/*margin-left: 48px;*/
	background: #fff;
}


.form-group:first-child .label-name{
	width: 154px;
}

.form-group .radio{
	gap: 46px;
	margin-left: 155px;
}

.form-group .radio label{
	font-weight: normal;
}




#form input{
	font-family: "Noto Sans JP", sans-serif;
}

.form-group textarea {
  min-height: 348px;
	margin-top: 10px;
	font-family: "Noto Sans JP", sans-serif;
}


::placeholder {
  color: #000;
  opacity: 1;
}



.form-wrap .button-container{
	margin: 80px 0 0;
}
.form-wrap .button{
    max-width: 201px;
    width: 100%;
    height: 45px;
    border: none;
	font-size: 18px;
	cursor: pointer;
	background: #45b035;
	color: #fff;
	position: relative;
	display: block;
	min-width: 201px;
	padding-bottom: 2px;
	transition: 0.3s;
	letter-spacing: 0.2em;
	/*font-weight: 300;*/
}

.button-ex-text{
	position: relative;
}


.form-wrap .button:hover{
	background: rgb(255, 241, 0);
	color: #45b035;
}


.confirmation .label-name{
	font-size: 0.95em;
}

.confirmation-box{
    /*max-height: 120px;
    max-width: 100%;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    overflow-y: auto;
    width: 100%;
    box-sizing: border-box;
    border: none;
    padding: 20px;
    font-size: 1rem;
    min-height: 60px;
    margin-left: 30px;
    background: #83e015;
    color: #000;*/
	width: 100%;
    box-sizing: border-box;
    border: solid 1px #585757;
    padding: 10px;
    font-size: 1rem;
    min-height: 40px;
    background: #fff;
   color: #000;
}



.confirmation .form-group.privacy-ex .label-name{
	border-top: 1px solid #000;
}
.confirmation .form-group.privacy-ex .confirmation-box{
	margin-top: 10px;
}

.confirmation .form-group.inquiry-details .confirmation-box {
	margin-top: 10px;
    max-width: 100%;
	min-height: 348px;
	color: #000;
	background: #fff;
}

.thanks #form .button-container .button{
	padding: 15px 60px 15px 30px;
}

.error_messe{
	font-size: 16px;
	color: #83e015;
}

#entry.thanks .button::before{
	display: none;
}

.button_area{
    display: flex;
    justify-content: center;
    width: 100%;
    /*max-width: 894px;*/
	max-width: 1048px;
    margin-left: auto;
}

.button_area .button-container{
	/*width: 50%;*/
}


.confirm .button_area{
	gap: 40px;
}


.policy {
  display: block; 
	margin: 20px 0 0 auto;
	/*max-width: 894px;*/
	max-width: 1048px;
}

.policy-explain {
  font-size: 16px;
  line-height: 2;
  color: #fff;
  margin: 0 auto 65px;
    width: fit-content;
	text-align: left;
}

.policy-explain a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-check {
  margin-bottom: 42px;
	letter-spacing: 0.1em;
}

.policy-check label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #000;
  justify-content: center;
	padding: 20px;
	max-width: 616px;
	    margin: 0 auto;
}

.policy-check label a{
	text-decoration: underline;
	color: #000;
}
.policy-check label a:hover{
	text-decoration: none;
}



.policy-check label > input[type="checkbox"][name="個人情報の取り扱い[]"]{
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border: 1px solid #000;   
  background: transparent;  
  border-radius: 0;         
  display: inline-block;
  position: relative;
  flex: 0 0 auto;          
  /*margin: 0 1em 0 0;    */            
  vertical-align: middle;
  transition: background .15s, border-color .15s, box-shadow .15s, outline-color .15s;
	cursor: pointer;
}


.policy-check label > input[type="checkbox"][name="個人情報の取り扱い[]"]:checked{
  border-color: #45b035;
  background: #45b035;
}


.policy-check label > input[type="checkbox"][name="個人情報の取り扱い[]"]::after{
  content: "";
  position: absolute;
  left: 2px;
  top: 3px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #000;   
  border-bottom: 2px solid #000; 
  transform: rotate(-45deg) scale(0.8);
  opacity: 0;
  transition: opacity .15s, transform .15s;
}


.policy-check label > input[type="checkbox"][name="個人情報の取り扱い[]"]:checked::after{
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}


.policy-check label > input[type="checkbox"][name="個人情報の取り扱い[]"]:focus-visible{
  outline: 3px solid rgba(131,224,21,.35);
  outline-offset: 3px;
}


.policy-check label > input[type="checkbox"][name="個人情報の取り扱い[]"]:disabled{
  border-color: #cfd5d8;
  background: #eef1f3;
}


.confirmation-wrapper .button_area{
	max-width: 910px;
    margin-left: auto;
	gap: 0 40px;
	margin-bottom: 80px;
}
.confirmation-wrapper .button_area .button-container{
	width: fit-content;
}




.flex-box.radio label{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  cursor:pointer;
}


.flex-box.radio input[type="radio"]{
  appearance:none;
  -webkit-appearance:none;
  width:18px;
  height:18px;
  border:1px solid #333;
  background:#fff;
  display:inline-grid;
  place-content:center;
  margin-right:4px;
  transition:border-color .15s ease, box-shadow .15s ease;
}


.flex-box.radio input[type="radio"]::after{
  content:"";
  width:10px;
  height:10px;
  border-radius:2px;
  transform:scale(0);
  background:#45b035;         
  transition:transform .12s ease-in-out;
}
.flex-box.radio input[type="radio"]:checked::after{
  transform:scale(1);
}


.flex-box.radio input[type="radio"]:focus-visible{
  outline:2px solid #83e015;
  outline-offset:2px;
}


.flex-box.radio input[type="radio"]:disabled{
  opacity:.5;
  cursor:not-allowed;
}


.flex-box.radio input[type="radio"].is-error{
  border-color:#e60033;
}


@media (forced-colors: active){
  .flex-box.radio input[type="radio"]{
    forced-color-adjust:auto;
    border:1px solid ButtonText;
  }
}






@media (max-width: 980px) {
	
	#contact #content-01 p{
		font-size: 16px;
		text-align: center;
	}
	
	.form-group:nth-child(1) label{
		border-top: none;
	}
	
	.form-group.inquiry-details label{
		height: auto;
	}
	
  .form-group {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
    margin: 0;
  }

  .form-group label {
   /* width: 100%;*/
    margin-bottom: 10px;
	  padding: 0;
	  min-height: 1px;
  }
  
  .form-group .label-name {
    width: 100%;
    border-bottom: none;
	 padding-left: 0;
	  height: auto;
  }

  .required, .optional {
    margin: 0;
  }

  .form-group > input[type="text"],
  .form-group > textarea {
    width: 100%;
    max-width: none;
	  margin-left: 0;
  }
  
	.form-group .radio{
		margin-left: 0;
        margin-top: 1em;
        flex-direction: column;
        gap: 10px;
	}

	
	
  .form-group.text-area {
    align-items: flex-start;
  }
  
  .form-group.text-area label {
    margin-bottom: 10px;
  }
  
  .form-group.text-area textarea {
    width: 100%;
    margin-top: 0;
  }
	
	.button_area{
		align-items: center;
	}
	
	.confirmation-wrapper .button_area{
		flex-direction: column;
		gap: 40px;
	}
	
	.confirmation-wrapper .form-wrap .button-container{
		margin: 0;
	}
	
		
	#footer-contact-area .blue-box-inner .button{
		font-size: 16px;
		width: auto;
	}
	
	.confirmation-box{
		margin-left: 0;
	}
	
}

@media (max-width: 768px) {
	.form-wrap{
		padding: 0;
	}
	.button_area{
		flex-direction: column;
	}
	.form-wrap .button-container{
		margin: 0;
	}
}


/* 個人情報保護方針 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#privacy-01{
	background: linear-gradient(to bottom, transparent 50%, #f2f2f2 50%);
}

#privacy-01 .outer-wrapper{
	border-top-left-radius: 25.52vw;
	background: #fff;
}

#privacy-01 .inner-wrapper{
	border-top-left-radius: 25.52vw;
    /*padding: 184px 40px 150px 16.67vw;*/
	/*padding: 130px 40px 150px 16.67vw;*/
	padding: 185px 40px 150px 16.67vw;
	position: relative;
	background: #f2f2f2;
}



#privacy-01 .container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;;
	width: 100%;
	max-width: 1280px;
	color: #000;
}




#privacy-01 h2{
	width: 100%;
	max-width: 1100px;
	aspect-ratio: unset;
	align-self: flex-start;
	text-align: center;
	/*margin-bottom: 100px;*/
	/*margin-bottom: 64px;*/
	margin-bottom: 120px;
	font-size: clamp(18px, 2.47vw, 36px);
	letter-spacing: 0.075em;
	line-height: 1;
}

#privacy-01 h3{
	font-size: 19px;
	/*margin-bottom: 2em;*/
	margin-bottom: 45px;
	font-weight: 500;
    letter-spacing: 0.1em;
}
#privacy-01:last-child h3{
	/*margin-bottom: 4em;*/
	/*margin-bottom: 70px;*/
}


.sentence-box{
	/*margin-bottom: 138px;*/
	margin-bottom: 100px;
	max-width: 1100px;
}
.sentence-box:last-of-type{
	margin-bottom: 0;
}



.sentence-box p{
	line-height: 2;
	/*font-weight: 300;*/
	letter-spacing: 0.1em;
	text-align: justify;
    overflow-wrap: anywhere;
}
.sentence-box ol{
	line-height: 2;
	/*margin-left: 1em;*/
	margin-left: 1.5em;
	/*font-weight: 300;*/
	letter-spacing: 0.1em;
	text-align: justify;
    overflow-wrap: anywhere;
}
.sentence-box ol ul{
	list-style: circle;
    /*margin-left: 1em;*/
	margin-left: 1.5em;
	/*font-weight: 300;*/
	letter-spacing: 0.1em;
}

/* 404 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


#notfound-01{
	background: linear-gradient(to bottom, transparent 50%, #f2f2f2 50%);
}

#notfound-01 .outer-wrapper{
	border-top-left-radius: 25.52vw;
	background: #fff;
}

#notfound-01 .inner-wrapper{
	border-top-left-radius: 25.52vw;
    padding: 130px 40px 150px 16.67vw;
	position: relative;
	background: #f2f2f2;
}



#notfound-01 .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1280px;
	color: #000;
}

#notfound-01 h2{
	font-size: 72px;
	align-self: flex-start;
	margin-bottom: 1em;
	color: #45b035;
	font-weight: 900;
}









[id]{
	scroll-margin-top: 190px;
}

/* レスポンシブデザイン ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.sp-layout{display:none;}

@media (min-width: 1921px) {
	#contact-01 .container,
	#sustainability-01 .container{
		margin: 0 auto;
	}
}

@media (min-width: 1920px) {
	.card-wrapper-02 .card:nth-child(2)::before{
	top: -138px;
}
	
}

@media (max-width: 1640px) {
	#service-01 .container::after{
		right: 2%;
	}
}

@media (max-width: 1430px) {
	.site-header .container{
		padding: 0 40px;
	}
	.top-copy {
    margin-left: 10.75vw;
    }
	.top-copy h2 br:not(:last-child){
		display: none;
	}
	.hero-inner{
		margin-top: 140px;
	}
	
	
	#about_us-01 .container{
    padding-top: clamp(32px, 8.13vw, 130px);
    }
	
	
	
	
	
}






@media (min-width:1281px) {

    .sh-header {
        position: fixed;
        top: -120px; /* 最初は完全に隠れている */
        left: 0;
        width: 100%;
        height: 100px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(6px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        z-index: 9999;
        transition: top 0.35s ease;
    }

    /* スクロールして表示される状態 */
    .sh-header.is-visible {
        top: 0;
    }

    .sh-container {
        /*max-width: 1400px;*/
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        position: relative;
    }
	
	.sh-logo{
		width: 19.94%;
    max-width: 331px;
		min-width: 192px;
    height: auto;
    aspect-ratio: 331 / 42;
	}

    .sh-logo img {
        /*height: 60px;*/
    }

    /* ハンバーガーボタン */
    .sh-menu-toggle {
        display: block;
        width: 50px;
        height: 50px;
        padding: 10px;
        cursor: pointer;
        position: relative;
        background: none;
        border: none;
    }

    .sh-menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background-color: #45b035;
        margin: 6px auto;
        transition: transform .3s, opacity .3s;
    }

    .sh-menu-toggle.is-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .sh-menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }
    .sh-menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* ナビゲーション（SP版と同じUIを再現） */
    .sh-nav {
        display: none;
        position: absolute;
        top: 100%; /* ヘッダー直下 */
        left: 0;
        width: 100%;
    }

    .sh-nav.is-open {
        display: block;
    }

    .sh-nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        border-radius: 0 0 37px 37px;
        background: linear-gradient(
            to top,
            rgba(69, 78, 158, 0.9),
            rgba(0, 170, 194, 0.9),
            rgba(252, 230, 215, 0.9)
        );
        /*padding-top: 120px;
        padding-bottom: 20px;*/
    }

    .sh-nav-item {
        margin: 10px 0;
    }

    .sh-nav-item a {
        font-size: 20px;
        color: #fff;
		/*width: 100%;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: flex-end;*/
		font-weight: 500;
		transition: 0.3s;
		/*padding: 10px 0 20px;*/
		padding: 20px 0;
        width: fit-content;
        margin: 0 auto;
		height: 100px;
		justify-content: center;
    }

    
	.sh-about {
       /* padding: 10px 0 20px;*/
        width: 100%;
        margin: 0;
        background: rgb(255, 241, 0);
        color: #45b035;
    }
	.sh-about a{
		color: #45b035;
	}
	.sh-about a img{
		width: 83px;
        height: 10px;
        /*margin-top: 12px;*/
		margin-top: 6px;
		filter: invert(57%) sepia(49%) saturate(717%) hue-rotate(65deg) brightness(93%) contrast(82%);
	}
	
    .sh-service {
        background: #45b035;
        /*padding: 10px 0 20px;*/
        width:100%;
        margin:0;
    }
	.sh-service a{
		color: rgb(255, 241, 0);
	}
	
	.sh-service a img{
		width: 68px;
        height: 10px;
         /*margin-top: 12px;*/
		margin-top: 6px;
        /*filter: invert(74%) sepia(94%) saturate(915%) hue-rotate(360deg) brightness(107%) contrast(105%);*/
		filter: invert(76%) sepia(95%) saturate(1391%) hue-rotate(5deg) brightness(111%) contrast(103%);
	}
	
	.sh-recruit {
        background: rgb(255, 241, 0);
        /*padding: 10px 0 20px;*/
        width:100%;
        margin:0;
    }
	.sh-recruit a{
		color: #45b035;
	}
	.sh-recruit a img{
		width: 70px;
        height: 16px;
         /*margin-top: 12px;*/
		margin-top: 6px;
	}

    .sh-contact {
        background: #45b035;
       /* padding: 10px 0 20px;*/
        width:100%;
        margin:0;
    }
	.sh-contact a{
		/*color: rgb(255, 241, 0);*/
	}
	
	.sh-contact a img{
		width: 70px;
        height: 16px;
         /*margin-top: 12px;*/
		margin-top: 6px;
	}
}









@media (max-width: 1280px) {
	
	#scroll-header{
		display: none;
	}
	
	.site-header{
		height: 100px;
		position: sticky;
		background: rgba(255, 255, 255, 0.8);
	}
	
	
	.site-logo{
        align-self: center;
        margin-bottom: 0;
	}
	
	 .main-nav {
        display: none; /* ハンバーガーメニュー表示時は非表示 */
        width: 100%;
        order: 3; /* 下に配置 */
        margin-top: 0;
		position: absolute;
        /*top: -40px;*/
		 top: -20px;
        left: 0;
    }

    .main-nav.is-open { /* JavaScriptで追加されるクラス */
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
		height: auto;
		border-radius: 0 0 37px 37px;
		/*background: linear-gradient(
          to top,
          rgba(69, 78, 158, 0.9), 
          rgba(0, 170, 194, 0.9), 
          rgba(252, 230, 215, 0.9) 
        );*/
		/*background: rgba(255, 255, 255, 0.8);*/
		padding-top: 120px;
		box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .main-nav li {
        margin: 10px 0;
		height: 100px;
        justify-content: center;
    }
	
	.main-nav a{
		font-size: 20px;
		margin-bottom: 0;
        stify-content: center;
	}
	.child-page .main-nav .nav-about_us a,
    .child-page .main-nav .nav-service a{
        color: #fff;
    }

    .menu-toggle {
        display: block;
		align-self: flex-start;
        margin-top: 20px;
       /*background-image: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);*/
        aspect-ratio: 1 / 1;
		padding: 14px;
    }

    /* ハンバーガーメニューのアニメーション */
    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
		background-color: #45b035;
    }

    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
		background-color: #45b035;
    }
	
	.main-nav li.nav-recruit,
	.main-nav li.nav-contact{
		width: 100%;
		margin: 0;
		padding: 20px 0;
	}
	.main-nav li.nav-about_us,
	.main-nav li.nav-service{
		padding-right: 0;
	}
	
	.main-nav li.nav-contact a,
	.main-nav li.nav-recruit a{
		width: fit-content;
		padding-bottom: 0;
		margin: 0 auto;
	}
	.main-nav li.nav-recruit a img,
	.main-nav li.nav-contact a img{
    width: 70px;
    height: 16px;
    /*margin-top: 12px;*/
		margin-top: 6px;
    }
	.main-nav li.nav-contact a span, 
	.main-nav li.nav-recruit a span {
    margin-bottom: 0;
    }
	.main-nav.is-open li.nav-service{
		/*margin-bottom: 20px;*/
		padding: 20px 0;
        width: 100%;
        margin: 0;
		background: #45b035;
		color: rgb(255, 241, 0);
	}
	
	.main-nav.is-open .nav-service a{
		color: rgb(255, 241, 0)!important;
	}

	.main-nav.is-open li.nav-service a img{
		/*filter: invert(81%) sepia(70%) saturate(694%) hue-rotate(358deg) brightness(104%) contrast(107%);*/
		filter: invert(76%) sepia(95%) saturate(1391%) hue-rotate(5deg) brightness(111%) contrast(103%);
		margin-top: 6px;
	}
	
	.main-nav li.nav-about_us{
		padding: 20px 0;
        width: 100%;
        margin: 0;
		background: rgb(255, 241, 0);
		color: #45b035;
	}
	.main-nav.is-open .nav-about_us a{
		color: #45b035!important;
	}
	.main-nav.is-open li.nav-about_us a img{
		filter: invert(57%) sepia(49%) saturate(717%) hue-rotate(65deg) brightness(93%) contrast(82%);
		margin-top: 6px;
	}
	


    .site-logo.is-open a img {
        opacity: 0.5;
    }
	
	
	
	
	.site-footer .content-wrapper{
		flex-direction: column;
	}
	.footer-logo{
		width: 90%;
		max-width: 330px;
        margin-bottom: 40px;
	}
	
	.swiper-container{
		width: 90%;
		margin: 0 auto;
	}
	
	.recruit-thumbs{
	flex-wrap: wrap;
	/*margin-top: 40px;*/
	margin-right: 40px;
}
	
	.overflow {
        width: auto;
        white-space: normal;
        overflow: visible;
    }
	.slide-inner-01{
		gap: 0 4%;
	}
	.slide-inner-01 .inner-right{
		width: 46%;
	}
	
	#top-03 .inner-left{
		padding-right: 40px;
	}


}

@media (max-width: 1040px) {
	#about_us-02 .flex-box{
		flex-direction: column;
	}
	#about_us-02 .inner-left,
	#about_us-02 .inner-right{
		width: 100%;
		justify-content: flex-start;
	}
	
	#about_us-02 .inner-right{
		padding-top: 0;
	}
	
	
	.vertical-tagline{
		writing-mode: initial;
		margin-bottom: 1em;
		margin-top: 2em;
	}
	.vertical-tagline br{
		display: none;
	}
	
	.card,
	.card-wrapper-02 .card:nth-child(1),
	.card-wrapper-02 .card:nth-child(2){
		flex-direction: column;
		width: 100%;
		max-width: unset;
	}
	
    .card h3 {
        margin-right: 0;
        writing-mode: initial;
        padding: 25px;
        max-width: 288px;
        min-height: 1px;
	}
	.card-wrapper-02 .card:nth-child(2) .card-inner,
	.card-inner{
		padding: 67px 40px;
	}
	
	.card-wrapper-02 .card:nth-child(2)::before{
		top: unset;
        bottom: -10px;
	}
	
	.inner-flex-box{
		flex-direction: column;
		margin-bottom: 80px;
	}
	
	#about_us-03 dl{
		flex-direction: column;
	}
	#about_us-03 dl dt{
        min-width: 0;
        font-weight: bold;
        margin-bottom: 1em;
	}
	
	#about_us-03 iframe{
		width: 100%;
	}
	#sustainability-01 .card{
		flex-direction: column;
	}
	#sustainability-01 .card .card-inner{
		margin-left: 0;
	}
	.card h3{
		max-width: 70%;
	}
	
}




@media (max-width: 960px) {
	.footer-nav{
		flex-direction: column;
        justify-content: center;
	}
	
	.split-box{
        max-width: none;
        flex-direction: column;
		gap: 64px;
		padding: 28px 45px 78px;
	}
	.split-box li{
		width: 100%;
		flex-direction: column;
        align-items: flex-start;
	}
	
	#recruit-01 .center-adjust{
		margin-left: 0;
		align-items: flex-start;
	}
	
	.features-list{
		/*margin-bottom: 100px;*/
		justify-content: flex-start;
		gap: 30px;
	}
	
	.benefit-box{
        flex-direction: column;
		position: relative;
        z-index: 2;
		align-items: flex-start;
	}
	.benefit-box h3{
		margin-bottom: 16px;
	}
	/*.benefit-box .inner-left{
		width: 100%;
		max-width: none;
		border-right: none;
		border-bottom: solid 1px #fff;
        margin-bottom: 2em;
        padding-bottom: 1em;
	}
	.benefit-box .inner-right{
		padding-left: 0;
		width: 100%;
	}
	.benefit-box .inner-right p br{
		display: none;
	}*/
	
	
	#recruit-01 .inner-wrapper::after{
		bottom: -7px;
		/*opacity: 0.5;*/
	}
	
	.slide-inner-01{
		flex-direction: column-reverse;
		padding-top: 40px; 
	}
	.slide-inner-01 .inner-left,
	.slide-inner-01 .inner-right{
		width: 100%;
	}
	.slide-inner-01 .inner-right{
		margin-bottom: 40px;
	}
	.slide-inner-01 .inner-right img{
		width: 90%;
		max-width: 400px;
		margin: 0 auto;
	}
	#recruit-03{
        padding: 50px 40px;
	}
	#recruit-03 .flex-box{
		flex-direction: column;
	}
	#recruit-03 .flex-box .inner-left,
	#recruit-03 .flex-box .inner-right{
		width: 100%;
	}
	#recruit-03 h3{
		margin-bottom: 1em;
	}
	
	#service-01 .container::after{
		top: 100px;
	}
	
	.tagline-wrapper{
		padding-left: 0;
	}
	#service-01 p{
		width: 100%;
	}
	
	#service-02{
		padding-right: 20px;
        padding-left: 20px;
	}
	
	#service-02 .container{
		padding: 80px 20px 160px;
        border-radius: 30px;
	}
	
	.split-box-02{
		flex-direction: column;
		align-items: center;
		padding: 20px 0 0;
	}
	
	.split-inner-01{
		width: 100%;
        max-width: 420px;
	}

	.split-inner-01 p{
		text-align: left;
	}
	
	#top-03 .tagline br.sp-layout,
	#recruit-01 .tagline br.sp-layout{
		display: inline;
	}
	
	#recruit-01 .inner-wrapper{
		padding: 130px 40px 43.24vw 16.67vw;
	}
	
	#service-02 .container h3{
        border-bottom: solid 1px #45b035;
        /*padding-bottom: 27px;*/
		padding-bottom: 16px;
        margin-bottom: 16px;
	}
	.circular-title{
		width: 80%;
        margin-bottom: 20px;
        min-width: 248px;
	}

	
}


@media (max-width: 768px) {
	
	#pagetop{
		top: -60px;
		right: 20px;
	}
	#pagetop:hover{
		top: -65px;
	}
	
	.site-header .container {
        padding: 0 20px;
    }
	#hero::after{
		width: 48px;
	}
	
	
	.top-copy{
		margin-left: 0;
        margin-right: 0;
        left: 50%;
        transform: translateX(-50%);
	}
	
	.top-copy h2{
		    white-space: nowrap;
		line-height: 1.6;
		margin-right: -0.5em;
	}
	
	.top-copy h2 br:not(:last-child) {
        display: inline;
    }
	.hero-inner {
        margin-top: 204px;
    }
	
	
	
	
	
	
	
	.square-button{
		width: 60px;
	}
	.square-button img{
		width: 18px;
	}
	
	.white-box{
		width: 100%;
	}
	
	#top-02 h3{
		margin-left: 0;
		margin-bottom: 2em;
	}
	#top-02 h3.sp-layout{
		display: block;
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: solid 1px #45b035;
        width: 100%;
		max-width: unset;
        aspect-ratio: unset;
	}
	
	#top-02 .inner-wrapper{
		padding: 130px 20px 180px;
	}
	
	#top-03 h2,
	#top-03 h3{
		margin-bottom: 2em;
	}
	
	#top-03 h3.sp-layout{
		display: block;
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: solid 1px #fff;
		color: #fff;
        width: 100%;
		max-width: unset;
        aspect-ratio: unset;
	}
	
	#top-03 .inner-left{
		padding-right: 0;
	}
	
	
	#top-02 .flex-box,
	#top-03 .flex-box{
		flex-direction: column-reverse;
	}
	#top-02 .inner-right,
	#top-03 .inner-right{
		width: 100%;
		display: none;
	}
	
	#top-03 .container > .flex-box{
		padding: 0;
	}
	#top-03 h3{
		margin-left: 0;
	}
	#top-03 .tagline {
    margin-left: 0;
        margin-right: auto;
}
	#top-03 .rectangle-button{
		margin: 0 auto;
	}
	
	
	
	
	
	/*#top-02 .inner-right h3,
	#top-03 .inner-right h3{
        writing-mode: initial;
		margin-left: 0;
		margin-bottom: 1em;
		padding-bottom: 1em;
		border-bottom: solid 1px #45b035; 
	}
	#top-03 .inner-right h3{
		border-bottom: solid 1px #fff;
	}*/
	#top-02 .inner-left,
	#top-03 .inner-left{
		width: 100%;
		border-right: none;
		padding-right: 0;
	}
	
	#top-04 a:after{
		width: 14px;
        height: 17px;
		margin-left: 13px;
        margin-top: 4px;
	}
	
	#recruit-01 .inner-wrapper{
		/*padding: 130px 40px 32.24vw 40px;*/
		padding: 130px 40px 25.24vw 40px;
	}
	.features-list{
		justify-content: center;
	}
	
	.features-list li{
		width: 120px;
		font-size: 16px;
	}
	
	.slide-title-box{
		flex-direction: column;
	}
	
	.slide-inner-01{
		padding: 40px 40px 0; 
	}
	
	.thumbs-wrapper{
		align-items: flex-start;
		flex-direction: column;
		margin: 0 auto 40px;
	}
	#recruit-02 h3{
		margin-right: 0;
		writing-mode: initial;
		padding: 16px 25px;
		font-size: 18px;
		position: relative;
	}
	
	
	
	.recruit-thumbs{
        margin-right: 0;
        justify-content: center;
		padding: 0 20px;
        margin-top: 24px;
		gap: 10px;
	}
	
	.recruit-thumbs li {
        width: 100%;
        height: auto;
    }
	.recruit-thumbs li button{
        padding: 10px 19px;
		flex-direction: row;
		align-items: center;
		gap: 10px;
	}
	.recruit-thumbs li button img{
		margin-bottom: 0;
	}
	.recruit-thumbs li button .mini{
		margin-top: 0;
		line-height: 1;
	}
	.recruit-thumbs li button .mini br{
		display: none;
	}
	
	
	
	.slide-title-box h4{
		text-align: center;
		font-size: 24px;
	}
	.slide-title-box h4 .mini{
		display: block;
		margin-left: 0;
		margin-bottom: 20px;
	}
	.slide-title-box img{
		margin-bottom: 20px;
		margin-right: 0;
	}
	.swiper-button-prev, .swiper-button-next{
		width: 40px;
		height: 40px;
	}
	.slide-inner-02{
		padding: 40px;
	}
	
	.slide-inner-02{
		padding: 76px 40px 110px;
	}
	#recruit-04 {
        padding: 50px 40px 110px;
    }
	#recruit-04 .container{
		flex-direction: column;
	}
	#recruit-04 img{
		margin-right: 0;
		margin-bottom: 20px;
	}
	#recruit-04 a{
		/*width: 13em;*/
		width: 16em;
        text-align: center;
		justify-content: center;
		    letter-spacing: 0.1em;
	}
	#recruit-04 a br{
		display: inline
	}

	#recruit-04 a:after{
		display: none;
	}
	
	
	.vertical-tagline span{
		display: inline-block;
	}
	
	#about_us-02{
		padding-right: 20px;
		padding-left: 20px;
        margin-top: -15vw;
        padding-top: 15vw;
	}
	
	#about_us-03{
		padding: 80px 20px 40px;
	}
	
	#about_us-03 h3.section-title{
		margin-bottom: 2em;
	}
	
	#about_us-03 .flex-box{
		flex-direction: column;
	}
	#about_us-03 .inner-left{
		width: 100%;
	}
	
	#about_us-03 .inner-left h3:not(.section-title){
		writing-mode: initial;
        margin-right: 0;
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: solid 1px #45b035;
	}
	
	#about_us-03 .inner-right{
		border-left: none;
        width: 100%;
        padding-left: 0;
	}
	#about_us-03 dl dt br{
		display: none;
	}
	
	#about_us-03 dl dd .dd-flex{
		flex-direction: column;
		margin-bottom: 1em;
		font-size: 14px;
	}
	#about_us-03 dl dd .item,
	#about_us-03 dl dd .year,
	#about_us-03 dl dd .number{
		font-size: 16px;
		display: block;
	}
	#about_us-03 dl dd .year{
		font-size: 16px;
	}
	
	.vertical-tagline{
		/*letter-spacing: 0.075em;*/
		/*padding-left: 25px;*/
		padding-left: 56px;
		line-height: 1.6;
		font-size: clamp(26px, 3.6vw, 41.8px);
        z-index: 2;
        position: relative;
        letter-spacing: 0.2em;
	}
	.vertical-tagline br {
        display: inline;
    }
	
	
	
	.card h3{
		font-size: 18px;
		width: fit-content;
		min-width: 200px;
		padding: 16px 25px;
	}
	.card-inner,
	.card-wrapper-02 .card:nth-child(2) .card-inner, .card-inner,
	#sustainability-01 .card .card-inner{
		padding: 20px 20px 40px;
	}
	
	.card-wrapper-02 .card:nth-child(2) ul li .mini{
		display: block;
	}
	
	#service-01 .container::after{
		top: 130px;
        width: 180px;
	}
	
	#service-01 .container{
		padding: 130px 40px 16.24vw 40px;
	}
	
	.circular-title h4{
		font-size: 24px;
	}
	
	#sustainability-01 .inner-wrapper{
		padding: 130px 40px 16.24vw 40px;
	}
	#sustainability-01 .center-adjust .flex-box{
		flex-direction: column;
		align-items: flex-end;
		text-align: right;
	}
	.signature span{
		display: inline-block;
	}
	
	#sustainability-01 .tagline-text br{
		display: none;
	}
	
	#privacy-01 .inner-wrapper{
		padding: 130px 40px 150px 40px;
	}
	
	.sentence-box:last-of-type{
		margin-bottom: 0;
	}
	
	#contact-01 .inner-wrapper{
		padding: 130px 40px 16.24vw 40px;
	}
	
	.slide5 .schedule {
    grid-template-columns: 3em 1fr;
    }
	.schedule dt.text-adjust{margin-right:0;}
    .schedule dd.text-adjust{margin-left: 0;}
	
	.rotate-wave{
		display: inline-block;
		line-height: 1;
		transform-origin: 50% 50%;
		vertical-align: middle;
		width: 1ch;
		transform: rotate(90deg) translateY(0.9em) translateX(-0.2em);
	}
	.vertical-adjust{
		display: flex;
		align-items: center;
	}
	
	.swiper-button-prev, .swiper-button-next{
		top: 3%;
	}
	
	.sdgs-box ul{
		max-width: calc(2 * 102px + 1 * 12px);
	}

	
	.benefit-box{
		margin-bottom: 100px;
	}
	
	.benefit-box h3{
		font-size: 18px;
	}
	.benefit-box .inner-left{
		margin-bottom: 1em;
	}
	
	
	#sustainability-01 h2,
	#contact-01 h2{
		margin-bottom: 2em;
	}
	
	
	#sustainability-01 h2{
		width: 100%;
		max-width: 550px;
		margin-bottom: calc(2em + 24px);
	}
	#recruit-01 h2{
		margin-bottom: calc(2em + 16px);
	}
	
	
	#sustainability-01 .tagline,
	#sustainability-01 .tagline-text{
		margin-bottom: 24px;
		text-align: justify;
        word-break: break-all;
        overflow-wrap: anywhere;
	}
	
	#top-02 .container .flex-box{
		padding: 0 20px;
	}
	
	#about_us-01 h2 img{
	filter: invert(57%) sepia(49%) saturate(717%) hue-rotate(65deg) brightness(93%) contrast(82%);
}
	
	#about_us-01 .container{
		padding-top: 0;
		margin-top: 40px;
	}
	#about_us-01 h2{
		width: 76%;
		transform: translate(-15px, -50%);
	}
	
	#privacy-01 h2{
		line-height: normal;
		/*margin-bottom: 2em;*/
		margin-bottom: 60px;
	}
	#privacy-01 h3{
		font-size: 18px;
		margin-bottom: 2em;
	}
	
	.slide1 .slide-title-box img,
	.slide2 .slide-title-box img,
	.slide3 .slide-title-box img,
	.slide4 .slide-title-box img,
	.slide5 .slide-title-box img,
	.slide6 .slide-title-box img,
	.slide7 .slide-title-box img{
		height: 40px;
	}
	
	.swiper-slide h5 {
		margin-bottom: 0.5em;
	}
	
	.footer-logo{
		max-width: 220px;
	}
	
	#sustainability-01 .container{
		margin: 0 0 80px;
	}
	
	#top-04 .large {
    text-align: center;
		/*font-size: 16px;*/
		font-size: clamp(16px, 4vw, 24px);
}
	
	
	#top-01 h3{
		margin-left: 0;
	}
	
	#recruit-01 .tagline{
        padding-left: 46px;
        font-size: clamp(26px, 3.6vw, 41.8px);
        z-index: 2;
        position: relative;
        letter-spacing: 0.2em;
	}
	
	
}









