@charset "utf-8";
/*
Theme Name: master-template
Description: Description
Author: YUUGA FUJIKAWA
*/
@import url(css/reset.css);




/* Box sizing */
*,*::before,*::after{box-sizing:border-box}

/* Reset margin/padding */
body,h1,h2,h3,h4,h5,h6,p,ul,ol,li,figure,figcaption,dl,dd{margin:0;padding:0}

html { scroll-behavior: smooth;}

/* Typography */
main { margin-top: 85px;}
@media only screen and (max-width:1080px) {
main { margin-top: 45px;}
} 

body{ font-family: 'Noto Sans JP', sans-serif; font-size: clamp(15px, 2vw, 16px);line-height:1.8;color:#333}
a{text-decoration:none;color:inherit}
a:hover{opacity:.8}
strong{font-weight:500}
img{max-width:100%;height:auto;display:block}

/* Layout helpers */
.container{max-width:1200px;margin:0 auto;padding:0 16px}
.flex{display:flex}
.flex-center{justify-content:center;align-items:center}
.alC{text-align:center}
.alR { text-align: right;}
.white { color: #fff !important;} 
.pink { color: var(--pink) !important;}
.green { color: var(--green) !important;}
.none { display: none !important;}

.bk-pink { background: var(--pink-linear);}
.bk-green { background: var(--green-linear);}
.bk-white { background: rgba(255, 255, 255, 0.9);}

/* tategaki */
.tategaki { writing-mode: vertical-rl; -webkit-writing-mode: vertical-rl; -ms-writing-mode: tb-rl; text-orientation: mixed; -webkit-text-orientation: mixed; white-space: nowrap;}

/* font-size */
h1 { font-size: clamp(1.8rem, 4vw, 2.2em); font-weight: 500;}
h2 { font-size: clamp(1.4rem, 3.5vw, 1.8rem); font-weight: 500;}
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); font-weight: 500;}
h3 span { font-size: 0.6em;}
h4 { font-size: clamp(1.2rem, 2.5vw, 1.3rem); font-weight: 500;}
h5 { font-size: clamp(1.05rem, 2vw, 1.2rem); font-weight: 500;}

.pc { display: inherit !important;}
.tb { display: none !important;}
.sp { display: none !important;}
@media only screen and (max-width:1080px) { 
.pc { display: none !important; }
.tb { display: block !important; }
.sp { display: none; }
}
@media only screen and (max-width:468px) { body { font-size: 15px; min-width: 375px; }
.pc { display: none !important; }
.tb { display: block !important; }
.sp { display: block !important; }
}


/* Utility */
.hidden{display:none!important}
.mt-1{margin-top:1rem}
.mt-3{margin-top:3rem}
.mb-1{margin-bottom:1rem}
.p-1{padding:1rem}

/* Button */
.btn{display:inline-block;padding:.5em 1.2em;border:none;background:#333;color:#fff;border-radius:4px;cursor:pointer}
.btn:hover{background:#555}

/* Responsive image */
.responsive-img{width:100%;height:auto}

/* Section spacing */
section{ padding:5rem 0; position: relative;}
section .inner { max-width: 1200px; margin: 0 auto; position: relative; width: 96%;}
section .inner > *:nth-child(n+2) { margin-top: 3em;}

@media only screen and (max-width:468px) {
section{ padding: 3rem 0}
}


/* title-wrap */
.title-wrap { width: fit-content;}
.title-wrap .label { color: var(--green); font-size: 1.1em; font-family: var(--din);}
.title-wrap .title { font-weight: 500; font-size: clamp(28px, 3vw, 42px);}

.title-wrap.alC { text-align: center; margin: 0 auto;}


/* lead-wrap */
.title-wrap .lead-wrap { display: flex; gap: 1em; margin-top: 0.7em;}
.title-wrap .lead-wrap .lead { flex: 3;}
.title-wrap .lead-wrap .lead p { font-size: clamp(1.1em, 4vw, 1.2em);}
.title-wrap .lead-wrap .image { flex: 1; margin: 0 auto;}
.title-wrap .lead-wrap .image img { width: 350px;}

@media (max-width: 1080px) { 
.title-wrap .lead-wrap { flex-direction: column;}
}


/* link-button */
.link-button {width:fit-content; overflow:hidden; }
.link-button a {display:flex; align-items:center; gap:0.7em; font-weight:500; margin:1em 0; font-size:1.2em; position:relative; transition:color 0.3s ease; }
.link-button i {  background: var(--pink-linear); background-position: left center; background-size: 200% 200%; font-size: 1em; min-width: 2em; height: 2em; color: #fff; border-radius: 100px; display: flex; justify-content: center; align-items: center; padding-top: 3px; transition: transform 0.4s ease, background-position 0.4s ease;}
.link-button a:hover i {transform:translateX(5px) scale(1.01); background-position:right center; }
.link-button a:hover {color:var(--pink) !important; }

.link-button.large a {font-size:1.4em; position:relative;overflow:hidden;}
.link-button.large a::after {content:"";position:absolute;left:0;bottom:15%;width:96%;height:1px;background-color:#333;transition:transform 0.4s ease;transform:translateX(0);}
.link-button.large a:hover::after {transform:translateX(100%);}




:root {
--din: "din-2014", sans-serif;
--noto-sans: "Noto Sans JP", sans-serif;
--oswald: "Oswald", sans-serif;

--green: #1eb887;
--pink: #FC8771;
--pink-linear: linear-gradient(145deg, #fc9535 20%, #fc7ba8 100%);
--green-linear: linear-gradient(145deg, #22c75b 20%, #21c26b 61.08%, #1eb495 100%);
}



/*  */
/* .site-header*/
/*  */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: #fff; transition: top 0.4s ease; height: 85px;}
.site-header.hide { top: -100px;}

.header-inner { display: flex; justify-content: space-between; align-items: center; padding-left: 70px; gap: 0.8em;}
.site-logo img { width: 260px;}


@media (max-width: 1200px) { 
.header-inner { padding-left: 0em;}
}

/* page-title */
.page-header { display: flex; padding-left: 70px; background: var(--green-linear); background-size: 100% 50%; background-repeat: no-repeat; background-position: bottom; padding-bottom: 1em; height: 360px; position: relative;}
@media (max-width: 1080px) { 
.page-header { padding-left: 0em; height: 230px;}
}

/* page-title */
.page-header .page-title {  color: #fff; font-size: clamp(1.2em, 3vw, 2.2em); background: var(--pink-linear); display: flex; justify-content: center; align-items: center; flex-direction: column; width: 330px; aspect-ratio: 1 / 1; padding: 1em; text-align: center; position: absolute; white-space: nowrap;}
.page-header .page-title span { font-size: 0.6em;}

@media (max-width: 1080px) { 
.page-header .page-title { width: 200px;}
}

@media only screen and (max-width:468px) {
.page-header .page-title { width: 120px; height: 80px; position: absolute; bottom: 1em;}
}

/* page-header__thumbnail */
.page-header .page-thumbnail .page-header__thumbnail img { width: 100vw; height: 280px; object-fit: cover;}

@media (max-width: 1080px) { 
.page-header .page-thumbnail .page-header__thumbnail img { height:175px;}
}

/* breadcrumb */
.page-header .page-thumbnail .breadcrumb {  color: #fff; font-size: 0.9em; margin-left: 350px; padding-top: 1em;}
.page-header .page-thumbnail .breadcrumb span > span {  display: none;}

@media (max-width: 1080px) { 
.page-header .page-thumbnail .breadcrumb { display: none;}
}


@media (max-width: 1080px) { 
.site-logo img { width: 160px;}
.site-header { position: fixed; top: 0px; z-index: 1100; width: 100%; height: 45px;}

.header-inner { padding-left: 1em;}
}

@media only screen and (max-width:468px){}





/* pc-nav */
.pc-nav ul { display: flex; gap: 2em; list-style: none;}
.pc-nav li a { text-decoration: none; color: #333; text-align: center; display: flex; flex-direction: column; font-weight: 500; font-size: 1.2em; white-space: nowrap;}
.pc-nav li a span { color: var(--green); font-size: 0.6em; font-family: var(--din);}

/* .menu-button */
.menu-buttons { display: flex; width: 360px;}
.menu-buttons a { color: #fff; padding: 1.5em 1em; line-height: normal; font-size: clamp(1em, 4vw, 1.2em); flex: 1; white-space: nowrap; text-align: center;}
.menu-buttons .orange { background: var(--pink-linear);}
.menu-buttons .green { background: var(--green-linear); }

/* ハンバーガー */
.sp-menu-toggle { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.sp-menu-toggle span { width: 25px; height: 3px; background: #000;}

/* スマホナビ */
.sp-nav { display: none; background: var(--green-linear);  padding: 20px; position: absolute; top: 100%; left: 0; width: 100%; z-index: 1000; max-height: 90vh; overflow-y: auto; }
.sp-nav ul { list-style: none; padding: 0; margin: 0;}
.sp-nav li { margin-bottom: 10px;  padding-bottom: 10px;   border-bottom: 1px solid #fff;}
.sp-nav li a { text-decoration: none; color: #fff; display: block; text-align: center;}

/* レスポンシブ切り替え */
@media (max-width: 1080px) { 
.pc-nav { display: none; }
.sp-menu-toggle { display: flex; flex-direction: column; gap: 4px; cursor: pointer; background: var(--green-linear); align-items: center; justify-content: center; width: 46px; height: 46px; transition: background 0.3s;}
.sp-menu-toggle span { width: 25px; height: 2px; background: #fff; transition: 0.4s; transform-origin: center;}
.sp-menu-toggle p { font-size: 0.6em; color: #fff; line-height: normal;}
/* アニメーション（ハンバーガー → ×） */
.sp-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(3px, 5px);}
.sp-menu-toggle.open span:nth-child(2) { opacity: 0;}
.sp-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px);}
}


/*  */
/* footer-sec */
/*  */
.footer-sec { padding: 0;}
.footer-sec .inner { }
.footer-sec .flex { align-items: center; gap: 4em;}
.footer-sec .flex .left { margin: 0em auto;}
.footer-sec .flex .left .wrap { padding: 3em 0px;}

@media (max-width: 1080px) { 
.footer-sec .flex { flex-direction: column; gap: 0px;}
}

.footer-sec .flex .right { flex: 2; width: 100vw; margin-right: calc(50% - 50vw); min-width: 350px;}
.footer-sec .flex .right img { height: 500px; width: 100vw; object-fit: cover;}
.footer-sec .logo { width: 400px; margin: 0 auto;}
.footer-sec address { text-align: center; padding: 1em 0px;}

@media (max-width: 1080px) { 
.footer-sec .flex .right { margin-right: unset;}
.footer-sec .flex .right img { height: 300px;}

.footer-sec .logo { width: 80%}
}

.footer-sec .menu-buttons a { padding: 1em 1em;}

.footer-sec nav { width: fit-content; margin: 3em auto 2em;}
.footer-sec .max-width { width: 100%; margin: 0 auto;}

.copy-rights { color: #fff; text-align: center; background: var(--green-linear); padding: 1em;}


.scroll-up { position: fixed; bottom: 20px; right: 20px; display: inline-block; background: var(--pink-linear); color: #fff; text-decoration: none; padding: 12px 16px; font-size: 18px; border-radius: 50%; box-shadow: 0 4px 8px rgba(0,0,0,0.3); transition: opacity 0.3s, transform 0.3s; z-index: 1000;}
.scroll-up:hover { background-color: #555; transform: scale(1.1);}
.scroll-up:active {transform: scale(0.95);}


/*  */
/* article */
/*  */

article { max-width: 1200px; margin: 1em auto; width: 96%; background-color: #fff; padding: 3em 0.5em; border-radius: 16px;}
/* タイトル */
article h1 { position: relative; margin-bottom: 0.6em; font-weight: 700; padding-bottom: 0.2em;}
article h1::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 4px; background: var(--green-linear); border-radius: 10px;}
article h1 span { display: none;}
article h2 { position: relative; margin: 0.5em 0 0.8em; padding-left: 0.8em; background: none; font-weight: 500;}
article h2::before { content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: var(--green-linear); border-radius: 10px;}
article h3 { font-weight: 600; margin-top: 0.5em; margin-bottom: 0.5em; color: var(--green);}
article h4 { font-weight: 500; color: var(--green); }
article h5 { font-style: italic; color: #67bfa3;}
article h6 { text-transform: uppercase; letter-spacing: 0.05em; color: #999;}

/* テキスト */
article p {  margin-bottom: 1.4em;}
article strong,
article b { font-weight: 700; color: var(--green); ;}
article em,
article i { font-style: italic;}
article u { text-decoration: underline;}
article del { text-decoration: line-through;}
article mark { background: #e1faec; color: #0e3b29; padding: 0.2em 0.4em; border-radius: 4px;}
/* 引用 */
article blockquote { border-left: 4px solid var(--green); ; padding-left: 1em; margin: 2em 0; background: #f6fffb; font-style: italic; color: #555;}
/* リスト */

/* リスト（共通） */
main ul, main ol { margin: 1em 0; padding-left: 0.5em; line-height: 1.8; margin-top: 1em; margin-bottom: 0.5em;}
main ul li, main ol li { position: relative; padding-left: 1em; margin-bottom: 0.5em; font-size: 0.9em;}
/* 箇条書き（ul）モダンなドット */
main ul li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 0.5em; height: 0.5em; background: var(--green); ; border-radius: 50%;}
/* 番号リスト（ol）モダンな数字風 */
main ol { counter-reset: list-counter;}
main ol li::before { counter-increment: list-counter; content: counter(list-counter) "."; position: absolute; left: 0; color: var(--green); ; font-weight: 500;}

/* リンク */
article a { color: #1ca979; text-decoration: underline; transition: all 0.2s;}
article a:hover { color: #148d63; text-decoration: none;}
/* 画像 */
article img { max-width: 100%; height: auto; border-radius: 12px; margin: 0em 0; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08); width: 100%;}
/* 区切り線 */
article hr { border: #e0f5ea !important; height: 1px; background: #e0f5ea; margin: 5em 0;}

/* テーブル */
/* リセット */
.wp-block-table td { border: none; vertical-align: middle; border: 1px solid #d9f5e8;  padding: 0.8em;}
.wp-block-table th { border: 1px solid #d9f5e8; vertical-align: middle;  padding: 0.8em;}

main table { width: 100%; border-collapse: collapse; margin: 2em 0;  overflow: hidden;}
main th { position: relative; font-weight: 500; padding: 0.8em; text-align: left; background: none; overflow: hidden; z-index: 0; width: 30% !important; color: #1ca979; border: 1px solid #d9f5e8; vertical-align: middle;}
main th::before { content: '';  position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: #f6fffb; z-index: -1;}
main td { background: #fff; color: #333; padding: 0.8em;  border: none; vertical-align: middle; border: 1px solid #d9f5e8;}

/* ボタン */
article .wp-block-button__link { display: inline-block; background: linear-gradient(45deg, #22c75b, #1eb495); color: #fff; padding: 0.75em 1.6em; border-radius: 9999px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);}
article .wp-block-button__link:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);}

/* ギャラリー */
article .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) { max-width: calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px) * .66667);}
@media (max-width: 1080px) { 
article .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) { max-width: unset;}
}

.page-body {}
.page-body > * { margin-top: 1em;}
.page-body figure { margin: 1em 0em;}
.page-body .wp-block-media-text { margin: 1em 0em;}
.page-body .wp-block-post-featured-image { display: none;}


/* Google Mapを囲う要素 */
.map { position: relative; width: 100%; height: 380px;}
.map iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%;}

/* リセット */
.wp-block-media-text { gap: 3em;}
.wp-block-media-text>.wp-block-media-text__content { padding: 0 !important;}



/*  */
/* Page(contact.php) */
/*  */
.contact-bg .contact-bg {  }
.contact-bg dl {  margin: 0; padding: 0; display: flex; align-items: center; border-bottom: 2px solid #E0E0E0; padding: 1.5em 0em; gap: 1em;}
.contact-bg dl p { margin-bottom: 0em;}
.contact-bg dt { font-weight: 600; min-width: 200px;}
.contact-bg dt span { color: var(--green);}
.contact-bg dd { width: 100%;}


.contact-bg label { font-weight: 500;}
.contact-bg input[type="text"], input[type="email"], input[type="tel"], select, textarea { width: 100%; padding: 12px; font-size: 1rem; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; transition: border-color 0.3s ease;}
/* .contact-bg input, textarea { background-color: #F4F4F4;} */
.contact-bg input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, select:focus, textarea:focus { border-color: #66afe9; outline: none; box-shadow: 0 0 5px rgba(102, 175, 233, 0.5);}
.contact-bg input[type="checkbox"] { margin-right: 10px;}
.contact-bg textarea { resize: vertical;}


.contact-bg .selectbox-1 { position: relative;}
.contact-bg .selectbox-1::before, .selectbox-1::after { position: absolute; content: ''; pointer-events: none;}
.contact-bg .selectbox-1::before { content: '▼'; display: inline-flex; justify-content: center; align-items: center; right: 0; width: 2.8em; height: 100%; border-radius: 0 8px 8px 0; background-color: var(--green); color: #fff;}
.contact-bg .checkbox { border: 3px solid var(--green); padding: 1em; margin-top:3.0em}
.contact-bg .checkbox p {text-align: center;     margin-bottom: 0em;}
.contact-bg .checkbox p a { color: var(--green); text-decoration: underline}
.contact-bg .checkbox p a:hover { color: #EE7B43;}
.contact-bg .btn-area p { text-align: center; margin: 2em; text-align: center; margin: 2em; display: flex; justify-content: center; gap: 2em;}
.contact-bg .btn-area br { display: none !important;}
.contact-bg .btn-area .button { padding: 1.0em 3.0em}

.wpcf7-spinner { display: none !important;}
.button-form { background-color: var(--green); color: #fff; border-radius: 0.5em !important; font-size: 1.2em; padding: 0.6em 2.5em 0.6em 2.5em !important; letter-spacing: 2px; position: relative; font-weight: 600; margin-top: 1.0em; transition: color 0.3s ease, letter-spacing 0.3s ease;}


@media only screen and (max-width:821px) {
.contact-bg dl{ flex-direction: column; align-items: unset;}
}
@media only screen and (max-width:468px) {}





/*  */
/* Page(page-service.php) */
/*  */

/* 全体 */
.product-box { border: 4px solid transparent; padding: 10px; border-radius: 8px; background: var(--pink-linear), #fff; background-origin: border-box; background-clip: border-box, padding-box; margin-top: 3em;}
.product-box .product-box__inner { background-color: #fff; padding: 1em; display: flex; gap: 3em;}

@media only screen and (max-width:821px) {
.product-box .product-box__inner { flex-direction: column;}
}

/* 左側 */
.product-box .product-box__inner .product-box__image { flex: 1;}
.product-box .product-box__inner .product-box__image img { width: 100%;}

/* 右側 */
.product-box .product-box__inner .product-box__text { flex: 3;}
.product-box .product-box__inner .product-box__text h2 {  color: var(--pink); font-weight: 500; margin-bottom: 0.5em;}
.product-box .product-box__inner .product-box__text p { font-size: 1.1em; line-height: 1.8;}
.product-box .product-box__inner .product-box__text .link-button { margin-left: auto;}



.fa-block { display: flex; gap: 1.5em;}
.fa-block .fa-item { background-color: rgba(255, 255, 255, 0.7); flex: 1; max-width: calc(50% - 1.5em); height: fit-content;}
.fa-block .fa-title { background-color: #fff; width: fit-content; padding: 0.1em 0.5em;}
.fa-block .fa-inner { padding: 1em 1em;}
.fa-block .fa-inner .fa-text { margin-bottom: 1.5em;}
.fa-block .fa-inner .fa-subtitle { display: flex; align-items: center; font-weight: 500; margin-bottom: 0.5em;}
.fa-block .fa-inner .fa-subtitle::after { content: ""; flex-grow: 1; height: 2px; background: #fff; margin-left: 1em;}
.fa-block .fa-inner ul { list-style: none; padding: 0; margin: 0;}
.fa-block .fa-inner ul li { position: relative; padding-left: 1.5em; margin-bottom: 0.5em;}
.fa-block .fa-inner ul li::before { content: ""; position: absolute; left: 0; top: 0.4em; width: 1em; height: 1em; background: var(--pink-linear); border-radius: 50%;}

.fa-block a { text-decoration: underline;}

@media (max-width: 1080px) { 
.fa-block { flex-direction: column;}
.fa-block .fa-item { max-width: 100%;}
}

.fa-block .fa-imgs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1em;}
/* 一個の場合 */
/* .fa-block .fa-imgs:has(> .fa-img:only-child) { grid-template-columns: 1fr;} */
.fa-block .fa-imgs .fa-img { position: relative; display: inline-block; flex: 1;}
.fa-block .fa-imgs .fa-img::after {  content: attr(data-alt); position: absolute; bottom: 0; left: 0; right: 0; background: var(--green-linear); color: #fff; font-size: 0.9rem; text-align: center; line-height: 1.6;}
.fa-block .fa-imgs img {  width: 100%; height: 100%; object-fit: cover;}



/*  */
/* Page(page-recruit.php) */
/*  */

/* recruit-header  */
.recruit-header { padding-top: 10em; height: 620px;}
.recruit-header .page-thumbnail .page-header__thumbnail img { padding-top: 4em; height: 400px;}

/* parts */
.recruit-header .thumbnail { position: absolute; bottom: 60px; width: 940px; left: 17%;}
.recruit-header .page-title { bottom: 0px; z-index: 1;}
.recruit-header .lead-text { top: 5em; right: 1%;}

@media (max-width: 1500px) {
.recruit-header .thumbnail { width: 880px; bottom: 60px;}
.recruit-header .lead-text p { font-size: clamp(13px, 3vw, 2.8em);} 
}

@media (max-width: 1080px) {
.recruit-header { padding-top: 0em; height: 440px;}
.recruit-header .thumbnail { width: 80%; bottom: 0%; left: 5%;}
.recruit-header .lead-text { top: 1em;}
}


@media (max-width: 468px) {
.recruit-header { height: 250px;}
}

.flow-container {}
.flow-container .flow-title { color: white; padding: 5px 15px; font-weight: 500; display: inline-block; border-radius: 15px 15px 0 0; font-size: 1.4em;}
.flow-container .flow-steps { display: flex; gap: 10px; background-color: white; padding: 16px; flex-wrap: wrap;}
.flow-container .step-wrap { flex: 1; max-width: 230px;}
.flow-container .group-label { font-size: 1.2em; font-weight: bold; color: #22C75B; width: 100%;}
.flow-container .step { background-color: #e5e5e5; padding: 10px 20px; border-radius: 4px; font-weight: bold; color: #1f2937; text-align: center;}
.flow-container .arrow { font-size: 1em; color: #f87171; font-weight: bold; padding-top: 0.5em;}

@media (max-width: 1080px) {
    .flow-container .step-wrap { flex: unset; width: 40%;}
}

/* by-number-sec */
.grid .flex { display: flex; gap: 1.5em;}
.grid .flex .wrap { padding: 1.5em;}
.grid .flex .wrap h3 {  background: var(--pink-linear); color: #fff; width: fit-content; margin: 0 auto; padding: 0.3em 0.6em;}
.grid .flex .wrap .img { margin: 0 auto; width: 90%; padding-top: 2.5em;}

@media screen and (max-width: 1080px) {
.grid .flex { flex-direction: column;}
.grid .flex .wrap .img { width: 100%;}
}


/* skill-up-sec */
.job-columns { display: flex;}
.job-columns .job-column { margin-top: 2.5em; flex: 1;}
.job-columns .job-column-title { position: relative;}

.job-columns .job-column-title .lead-text { display: flex; width: fit-content; margin-left: auto; position: absolute; right: 1.5em; z-index: 9; top: -2.5em;}
.job-columns .job-column-title .lead-text p {  height: fit-content; color: #fff; font-size: clamp(16px, 4vw, 2.8em); font-weight: bold; padding: 0.4em 0.1em; line-height: normal;}

@media (max-width: 1080px) { 
.job-columns { flex-direction: column; gap: 1.5em;}
}

.job-column-text { padding: 1.5em;}
.job-column-text .sub-title { color: #fff;}
.job-column-text .sub-title h4 { font-size: 1.8em; line-height: normal; font-weight: 500;}
.job-column-text p { line-height: 2;}



/* voice-wrap */
.voice-wrap { background-size: 65%; background-repeat: no-repeat;}
.voice-wrap.left { background-position: top right;}
.voice-wrap .voice-content { width: 50%}
.voice-wrap.right .voice-content { margin-left: auto;}
.voice-wrap.left .voice-content { margin-right: auto;}
@media (max-width: 1080px) { 
.voice-wrap { background-size: 90%;}
.voice-wrap .voice-content { width: 90%}
}

.voice-content .voice-info { padding: 7em 0px 2em;}
.voice-content .voice-label { font-size: clamp(3.5em, 10vw, 10em); color: rgba(255, 255, 255, 0.99); font-family: var(--din); line-height: normal;text-shadow: 0.05em 5px 0px rgba(0, 0, 0, 0.3);}
.voice-content .voice-info .department { color: #fff; font-size: clamp(1.2em, 4vw, 1.45em); width: fit-content; padding: 0.3em 0.7em; border-radius: 0.5em 0.5em 0 0;}
.voice-content .voice-info .name-wrap { padding: 0.8em; font-weight: 500;}
.voice-content .voice-info .name-wrap .name { font-size: clamp(1.4em, 4vw, 2em);}
.voice-content .voice-info .name-wrap .name span { font-size: 0.5em;}


/* voice-section */
.number-wrap .flex-box { display: flex; gap: 4em; color: #fff;}
.number-wrap .flex-box .left { flex: 3;}
.number-wrap .flex-box .left .sub-inner > *:nth-child(n+2) { margin-bottom: 2em;}
.number-wrap .flex-box .right { flex: 2;}

@media (max-width: 1080px) { 
.number-wrap .flex-box { flex-direction: column; gap: 2em;}
.number-wrap .flex-box.left-type { flex-direction: column-reverse;}
}

.no-title { display: flex; gap: .5em; align-items: baseline;}
.no-title p { height: 50px; width: 50px; display: flex; justify-content: center; align-items: center; font-size: 170%; font-weight: 500;}

/* menu-buttons */
.menu-buttons-center {display:flex; justify-content: center; width:100%; margin-top:4.0em; }
.menu-buttons-center a {margin:auto; display:inline-block; max-width:30% !important; width:auto !important;  display:flex; align-items: center; }

/*  */
/* Page(page-works.php) */
/*  */

.project-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2em;}
.project-list .item h5 { padding-top: 0.5em;}
.project-list .item { flex: 1;}
.project-list .item img { width: 100%; padding: 0.5em; height: 230px; object-fit: cover; aspect-ratio: 1 / 1;}

@media only screen and (max-width:821px) {
.project-list { grid-template-columns: repeat(2, 1fr); gap: 1em;}
}

.grid-layout { display: grid; grid-template-columns: repeat(2, 1fr); padding: 1em; border: solid 5px #DBDBDB;}
.grid-layout .plant { padding: 1em;}

@media only screen and (max-width:821px) {
.grid-layout { padding: 0; grid-template-columns: repeat(1, 1fr);}
}


.off-white .project-list { color: #fff !important;}
.off-white .title-wrap { color: #fff !important;}
.off-white .title-wrap .label { color: #fff !important;}

.lead-table a {text-decoration: underline;}