@charset "UTF-8";
/*
Theme Name: ttc
Author: ttc
Version: 1.0.0
*/

/**
* 共通
*/
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    color: #262626;
    margin: 0;
}
a {
    text-decoration: none;
    color: #262626;
}
ul, ol, li {
    list-style: none;
}
div {
    box-sizing: border-box;
}
img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
@media screen and (max-width: 768px) {
    html {
        font-size: calc(100vw / 768 * 10);
    }
    body {
        overflow-x: hidden;
    }
    div {
        overflow: hidden;
    }
}

.font_anton {
    font-family: "Anton", sans-serif;
}


/* ローディング中のスタイル */
.wf-loading body, .wf-loading .font_anton{
	opacity: 0;
}
/* フォント読み込み完了後のスタイル */
.wf-active body, .wf-active .font_anton{
	opacity: 1;
	transition: opacity 0.3s ease;
}
/* フォント読み込み失敗時のスタイル */
.wf-inactive {
	opacity: 1;
}

.grecaptcha-badge { 
	visibility: hidden; 
}

.lity {
    background-color: rgba(255, 255, 255, 0.8);
}
.lity-close {
    position: absolute;
    width: 35px;
    height: 35px;
    top: 0;
    right: -45px;
    z-index: 2;
    font-size: 40px;
    color: #262626;
    cursor: none;
}
.lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
    pointer-events: none;
    color: #262626;
}
.lity-close:hover {
    font-size: 40px;
}
@media screen and (max-width: 768px) {
    .lity-close {
        display: none;
    }
}

/* PC/SP */
.disp_pc {
    display: block;
}
.disp_sp {
    display: none;
}
.disp_sp500 {
    display: none;
}
@media screen and (max-width: 768px) {
    .disp_pc {
        display: none;
    }
    .disp_sp {
        display: block;
    }    
}
@media screen and (max-width: 500px) {
    .disp_sp500 {
        display: block;
    }
}

@media(min-width: 768px){
    a[href^="tel:"]{
        pointer-events: none;
    }
}
@media(max-width: 500px){
    body {
        overflow-x: hidden;
    }
}

.fadein {
	opacity: 0;
	transform: translateY(30px);
	transition-property: transform, opacity;
	transition-duration: 1.5s;
	transition-delay: 0s;
}
.fadein.is-active {
	opacity: 1;
	transform: translateY(0);
}


/* 
 * フォント
 */
body {
    font-size: 16px;
}
@media(max-width: 1720px){
    body {
        font-size: clamp(12px, 0.9vw, 16px);
    }
}
@media(max-width: 768px){
    body {
        font-size: 1.6rem;
    }
}
@media(max-width: 500px){
    body {
        font-size: 3.2rem;
    }
}


/* 
 * ヘッダー
 */
#g-header {
    position: fixed;
    width: 100vw;
    height: 50px;
    background: transparent;
    transition: background-color .25s ease;
    z-index: 2;
}
#g-header.is-solid{
    background-color: rgba(255,255,255,.8);
}
header .inner{
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    margin-top: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    overflow: visible;
}
header .logo {
    margin: 2px 0;
}
header .logo img{
    width: 100%;
    max-width: 140px;
}
@media(max-width: 768px){
    #g-header {
        height: 50px;
    }
    header .inner{
        height: 50px;
        margin: 0 auto;
    }
    header .logo {
        margin: 0;
        padding-top: 5px;
    }
    header .logo img{
        width: 100%;
        max-width: 120px;
    }
}


/* ハンバーガー */
body.no-scroll {
    overflow: hidden;
}
.hamburger_gr {
    display: block;
    margin-right: 5px;
}
.hamburger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 30;
    position: relative;
}
.hamburger span {
    height: 1.5px;
    background: #262626;
    border-radius: 1px;
    transition: all 0.4s ease;
}
.hamburger_white span {
    background: #efefef;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 9px);
    background: #262626;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -9px);
    background: #262626;
}
.hamburger_logo {
    width: 800px;
    margin: 80px auto 0 auto;
}
.hamburger_logo img{
    width: 140px;
}
.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: #efefef;
    transition: right 0.4s ease;
    z-index: 20;
    padding: 60px 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: -40px;
}
.nav-menu.active {
    display: block;
    width: 100vw;
    right: 0;
    left: 0;
    overflow-y: scroll;
}
.hamburger_menu_toplink {
    width: 800px;
    margin: 80px auto 0 auto;
}
.hamburger_menu_toplink a{
    font-size: 18px;
    font-weight: 500;
    color: #118b3c;
}
.nav-menu .footer_link {
    width: 600px;
    margin: 60px auto 120px auto;
    overflow: visible;
}
@media(max-width: 1720px){
    .hamburger_logo {
        width: 50vw;
        margin: 4.65vw auto 0 auto;
    }
    .hamburger_logo img{
        width: 8vw;
    }
    .hamburger_menu_toplink {
        width: 49vw;
        margin: 4.65vw auto 0 auto;
    }
    .hamburger_menu_toplink a{
        font-size: clamp(10px, 1vw, 18px);
    }
    .nav-menu .footer_link {
        width: 34.8vw;
        margin: 3.5vw auto 7vw auto;
    }
}
@media(max-width: 768px){
    .hamburger {
        width: 25px;
        height: 20px;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    .hamburger_logo {
        width: 100%;
        margin: 0 10px;
    }
    .hamburger_logo img{
        width: 120px;
    }
    .hamburger_menu_toplink {
        width: 78%;
        margin: 60px auto 40px auto;
    }
    .hamburger_menu_toplink a{
        font-size: 19px;
    }
    .nav-menu .footer_link {
        width: 80%;
        margin: 40px auto 120px auto;
    }
}





/* 
 * ローディング関連
 */
body.has-loader {
    overflow: hidden;
}
#loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: auto;
}
.loader-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 34px;
    font-weight: 900;
    font-style: oblique;
    letter-spacing: 0.12em;
    width: 100%;
    text-align: center;
    color: #00b33e;
    opacity: 0;
}
.loader-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #00b33e;
    opacity: 0;
}
body.is-ready #loader .loader-text {
    animation: loader-text-seq 1.4s ease-in-out forwards;
}
body.is-ready #loader .loader-circle {
    animation: loader-circle-expand 0.8s ease-in-out 1.4s forwards;
}
body.is-ready #loader {
    animation: loader-fade-out 0.2s ease-in 2s forwards;
}

@keyframes loader-text-seq {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
}
@keyframes loader-circle-expand {
  0% {
    opacity: 1;
    width: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    width: 300vmax;
    height: 300vmax;
  }
}
@keyframes loader-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}



/* 
 * トップページ ファーストビュー
 */
#visual {
    position: relative;
    overflow: hidden;
}
#visual .visual_sec {
    position: relative;
    width: 100%;
    overflow: hidden;
}
#visual .visual_img {
    height: auto;
    max-height: 900px;
}
#visual .visual_img img{
    width: 100vw;
    height: auto;
    max-height: 900px;
    object-fit: cover;
    object-position: center;
}
#visual .visual_txt_sec {
    width: 100vw;
    height: 90px;
    background-color: #00b33e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
#visual .visual_txt_sec img{
    width: 73px;
    object-fit: contain;
}
#visual .visual_txt {
    font-size: 20px;
    letter-spacing: 1.5px;
    color: #efefef;
    font-feature-settings: "halt";
}
#visual .visual_txt a{
    position: relative;
    color: #efefef;
}
#visual .visual_txt a::before{
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #fff;
}
@media(max-width: 1720px){
    #visual .visual_txt_sec {
        height: 5.2vw;
        gap: 1.5vw;
        margin-top: -4px;
    }
    #visual .visual_txt_sec img{
        width: 4.2vw;
    }
    #visual .visual_txt {
        font-size: clamp(12px, 1.16vw, 20px);
        letter-spacing: clamp(0.5px, 0.087vw, 1.5px);
    }
}
@media(max-width: 768px){
    #visual .visual_img {
        max-height: 500px;
    }
    #visual .visual_img img{
        height: 500px;
    }
    #visual .visual_txt_sec {
        height: 70px;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    #visual .visual_txt_sec img{
        width: 50px;
    }
    #visual .visual_txt {
        font-size: 14px;
        letter-spacing: 1px;
        overflow: visible;
    }
}

/* 
 * コンテンツタイトル
 */
.contents_title {
    text-align: center;
    margin: 40px auto 50px auto;
    overflow: visible;
}
.contents_title_en {
    position: relative;
    height: 55px;
    display: inline-block;
    margin-bottom: 60px;
    overflow: visible;
}
.contents_title_en img{
    height: 55px;
}
.contents_title_en::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -30px;
    right: 0;
    background-color: #118b3c;
    transform-origin: center center;
    transform: scaleX(0);
    opacity: 0;     
}
@keyframes underlineGrowShrink {
  0% {
    transform: scaleX(0);
  }
  60% {
    transform: scaleX(1.5);
  }
  100% {
    transform: scaleX(1);
  }
}
.contents_title_en.is-active::after {
    opacity: 1;
    animation: underlineGrowShrink 1.5s ease-out forwards;
}
.contents_title_jp {
    font-size: 23px;
    font-weight: 700;
}
@media screen and (max-width: 1720px) {
    .contents_title {
        margin: 2.3vw auto 3vw auto;
    }
    .contents_title_en {
        height: 3.2vw;
        margin-bottom: 3.5vw;
    }
    .contents_title_en img{
        height: 3.2vw;
    }
    .contents_title_en::after {
        bottom: -1.74vw;
    }
    .contents_title_jp {
        font-size: 1.3vw;
    }
}
@media screen and (max-width: 768px) {
    .contents_title {
        margin: 6rem auto 6.4rem auto;
    }
    .contents_title_en {
        height: 5.5rem;
        margin-bottom: 6rem;
    }
    .contents_title_en img{
        height: 5.5rem;
    }
    .contents_title_en::after {
        bottom: -4rem;
    }
    .contents_title_jp {
        font-size: 14px;
    }
}


/* トップ intro */
.top_intro_sec {
    width: 100vw;
    background-image: url(./img/top_introback.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.top_intro {
    width: 1260px;
    margin: 0 auto;
    padding: 100px 0;
}
.top_intro_title {
    position: relative;
    width: 100%;
    height: 260px;
    margin: 0 auto;
}
.top_intro_title_parts {
    position: absolute;
    color: #118b3c;
    font-style: oblique;
}
.top_intro_title01, .top_intro_title02 {
    line-height: 95px;
    padding: 15px 60px;
}
.top_intro_title01 {
    top: 0;
    left: 220px;
    font-size: 97px;
    font-weight: 700;
}
.top_intro_title02 {
    bottom: 0;
    left: 480px;
    font-size: 97px;
    font-weight: 700;
}
.top_intro_title03 {
    bottom: 15px;
    left: 160px;
    font-size: 34px;
    font-weight: 700;
}
.top_intro_title04 {
    bottom: 20px;
    left: -70px;
    width: 210px;
    height: 2px;
    background-color: #118b3c;
}
.top_intro_note {
    margin: 70px auto;
    color: #efefef;
}
.top_intro_note_bg {
    font-size: 36px;
    margin: 40px auto;
}
.top_intro_note_sm {
    font-size: 18px;
    line-height: 42px;
    width: 1060px;
    text-align: justify;
}
.top_intro_link {
    position: relative;
    background-color: #ffffff;
    width: 340px;
    height: 70px;
    border-radius: 5px;
    margin: 25px 0;
    transition: background-color .2s ease;
}
.top_intro_link a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.top_intro_link img{
    position: absolute;
    top: 20px;
    right: 30px;
    width: 32px;
    transition: opacity .5s ease;
}
.top_intro_link p{
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    font-size: 18px;
    letter-spacing: 1.5px;
    margin: 0;
    color: #118b3c;
}
.top_intro_link .icon--hover{ 
    opacity:0; 
}
.top_intro_link:hover .icon--default{ 
    opacity:0; 
}
.top_intro_link:hover .icon--hover{ 
    opacity:1; 
}
.top_intro_link:hover{
    background-color: #118b3c;
}
.top_intro_link:hover p{
    color: #efefef;
}
@media(max-width: 1720px){
    .top_intro {
        width: 73.25vw;
        padding: 5.8vw 0;
    }
    .top_intro_title {
        height: 15.1vw;
    }
    .top_intro_title01, .top_intro_title02 {
        line-height: 5.5vw;
        padding: 0.9vw 3.5vw;
    }
    .top_intro_title01 {
        left: 12.8vw;
        font-size: 5.64vw;
    }
    .top_intro_title02 {
        left: 28vw;
        font-size: 5.64vw;
    }
    .top_intro_title03 {
        bottom: 0.9vw;
        left: 9.3vw;
        font-size: 2vw;
    }
    .top_intro_title04 {
        bottom: 20px;
        left: -6vw;
        width: 14vw;
    }
    .top_intro_note {
        margin: 4vw auto;
    }
    .top_intro_note_bg {
        font-size: 2vw;
        margin: 2.3vw auto;
    }
    .top_intro_note_sm {
        font-size: 1.2vw;
        font-size: clamp(14px, 1vw, 18px);
        line-height: 2.4vw;
        width: 62.8vw;
    }
    .top_intro_link {
        width: clamp(190px, 20vw, 340px);
        height: 4.07vw;
        margin: 1.45vw 0;
    }
    .top_intro_link img{
        top: 1.16vw;
        right: 1.74vw;
        width: 1.86vw;
    }
    .top_intro_link p{
        left: 1.74vw;
        font-size: clamp(12px, 1vw, 18px);
        letter-spacing: clamp(0.5px, 0.087vw, 1.5px);
    }
}
@media screen and (max-width: 768px) {
    .top_intro {
        width: 95%;
        padding: 8rem 0;
    }
    .top_intro_title {
        height: 16rem;
        overflow: visible;
    }
    .top_intro_title01, .top_intro_title02 {
        line-height: 5.5rem;
        padding: 1.5rem 6rem;
    }
    .top_intro_title01 {
        left: 10rem;
        right: 0;
        font-size: 6rem;
    }
    .top_intro_title02 {
        left: 20rem;
        right: 0;
        font-size: 6rem;
    }
    .top_intro_title03 {
        bottom: -5px;
        left: 6rem;
        font-size: 2.2rem;
    }
    .top_intro_title04 {
        bottom: -10px;
        left: 0;
        width: 11rem;
        height: 1px;
    }
    .top_intro_note {
        margin: 8rem auto;
    }
    .top_intro_note_bg {
        font-size: 3rem;
        margin: 4rem auto;
        width: 95%;
    }
    .top_intro_note_sm {
        font-size: 2rem;
        line-height: 3.2rem;
        width: 95%;
        margin: 0 auto;
    }
    .top_intro_link {
        width: 340px;
        height: 70px;
        margin: 4rem 0;
    }
    .top_intro_link img{
        top: 20px;
        right: 30px;
        width: 32px;
    }
    .top_intro_link p{
        left: 30px;
        font-size: 16px;
    }
}
@media screen and (max-width: 500px) {
    .top_intro_note_bg {
        font-size: 4rem;
    }
    .top_intro_note_sm {
        font-size: 2.9rem;
        line-height: 4.6rem;
    }
    .top_intro_link {
        width: 95%;
    }
}



/* 背景 */
.top_bkimg {
    width: 100vw;
    background-image: url(./img/top_mainback.webp);
    background-size: 1000px;
    background-position: top center;
    background-repeat: round;
    padding: 40px 0 80px 0;
}
@media(max-width: 1720px){
    .top_bkimg {
        padding: 4.65vw 0;
    }
}
@media(max-width: 768px){
    .top_bkimg {
        padding: 4rem 0 8rem 0;
    }
}

/* トップ イメージ映像 */
.top_movie {
    width: 100vw;
    padding: 80px 0;
}
.top_movie_main {
    margin: 40px auto;
}
.top_movie_txt {
    font-size: 24px;
    text-align: center;
    letter-spacing: 1.5px;
    font-feature-settings: "halt";
}
.top_movie_embedding {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 60px auto;
}
.top_movie_embedding a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.top_movie_embedding::before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: rgba(255,0,0,0.9);
    width: 100px;
    height: 100px;
    transition-duration: .4s;
}
.top_movie_embedding::after {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
    border-width: 25px 0 25px 38px;
}
@media(max-width: 1720px){
    .top_movie {
        padding: 4.65vw 0;
    }
    .top_movie_main {
        margin: 2.3vw auto;
    }
    .top_movie_txt {
        font-size: clamp(15px, 1.4vw, 24px);
        letter-spacing: clamp(0.5px, 0.087vw, 1.5px);
    }
    .top_movie_embedding {
        width: 90%;
        margin: 3.5vw auto;
    }
}
@media screen and (max-width: 768px) {
    .top_movie {
        padding: 8rem 0;
    }
    .top_movie_main {
        margin: 6rem auto;
    }
    .top_movie_txt {
        font-size: 2.2rem;
        line-height: 4rem;
        width: 95%;
        margin: 0 auto;
    }
    .top_movie_embedding {
        margin: 6rem auto;
    }
    .top_movie_embedding::before {
        width: 70px;
        height: 70px;
    }
    .top_movie_embedding::after {
        border-width: 15px 0 15px 25px;
    }
}
@media screen and (max-width: 500px) {
    .top_movie_txt {
        font-size: 2.9rem;
        line-height: 4.8rem;
    }
}




/* トップ 各部署紹介 */
.top_business {
    width: 100vw;
}
.top_business_gr {
    margin-top: 60px;
}
.top_business_tab_gr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1250px;
    margin: -1px auto;
}
.top_business_tab {
    color: #efefef;
    background-color: #b0b0b0;
    position: relative;
    display: inline-block;
    padding: 18px 0 0 20px;
    width: 200px;
    height: 100px;
    font-size: 21px;
    border-radius: 10px 10px 0 0;
    transition-duration: .2s;
}
.top_business_tab.active {
    background-color: #262626;
}
.top_business_tab:hover {
    background-color: #262626;
}
.top_business_tab p {
    margin: 0;
    padding: 0;
}
.top_business_tab img {
    width: 22px;
    margin-bottom: 5px;
}
.top_business_tab05 p{
    letter-spacing: -2.2px;
    margin-left: -8px;
    transform: scale(0.9,1);
}
.top_business_tab05 img{
    transform: scale(1,1);
}
.top_business_tab05 span{
    letter-spacing: 0;
}
.top_business_tab05_br {
    display: none;
}
.top_business_tab a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.top_business_contents_sec {
    display: none;
    opacity: 0;
}
.top_business_contents_sec.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.top_business_contents_sec {
    background-color: #262626;
    width: 100vw;
    padding: 95px 0 80px 0;
}
.top_business_contents {
    width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.top_business_contents_txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 470px;
}
.top_business_contents_titleno img{
    width: 40px;
    padding-left: 3px;
}
.top_business_contents_titlename {
    font-size: 60px;
    letter-spacing: 1.5px;
    line-height: 80px;
    color: #00b33e;
}
.top_business_contents_note {
    font-size: 19px;
    font-weight: 400;
    line-height: 36px;
    text-align: justify;
    color: #efefef;
    margin-top: 60px;
}
.top_business_contents_link {
    position: relative;
    background-color: #ffffff;
    width: 220px;
    height: 70px;
    border-radius: 5px;
    margin: 0 auto 10px 0;
    transition-duration: .2s;
}
.top_business_contents_link a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.top_business_contents_link img{
    position: absolute;
    top: 20px;
    right: 30px;
    width: 32px;
    transition:opacity .25s ease;
}
.top_business_contents_link p{
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    font-size: 18px;
    letter-spacing: 1.5px;
    margin: 0;
    color: #118b3c;
}
.top_business_contents_link .icon--hover{ 
    opacity:0; 
}
.top_business_contents_link:hover .icon--default{ 
    opacity:0; 
}
.top_business_contents_link:hover .icon--hover{ 
    opacity:1; 
}
.top_business_contents_link:hover{
    background-color: #118b3c;
}
.top_business_contents_link:hover p{
    color: #efefef;
}
.top_business_contents_img {
    width: 630px;
    margin-top: 70px;
}
.top_business_contents_img img{
    border-radius: 10px;
}
@media(max-width: 1720px){
    .top_business_gr {
        margin-top: 3.5vw;
    }
    .top_business_tab_gr {
        width: 72.67vw;
    }
    .top_business_tab {
        padding: 1vw 0 0 1.1vw;
        width: 11.6vw;
        height: 7vw;
        font-size: clamp(13px, 1.2vw, 21px);
        border-radius: 0.5vw 0.5vw 0 0;
    }
    .top_business_tab img {
        width: 1.27vw;
    }
    .top_business_contents_sec {
        padding: 5.5vw 0 4.65vw 0;
    }
    .top_business_contents {
        width: 72.67vw;
    }
    .top_business_contents_txt {
        width: 27.3vw;
    }
    .top_business_contents_titleno {
        font-size: 2vw;
    }
    .top_business_contents_titleno img{
        width: 2.4vw;
    }
    .top_business_contents_titlename {
        font-size: 3.5vw;
        letter-spacing: clamp(0.5px, 0.087vw, 1.5px);
        line-height: 4.65vw;
    }
    .top_business_contents_note {
        font-size: clamp(13px, 1.1vw, 19px);
        line-height: clamp(20px, 2vw, 36px);
        margin-top: 3.5vw;
    }
    .top_business_contents_link {
        width: 14.6vw;
        height: 4vw;
        border-radius: 0.3vw;
        margin: 0 auto 0.6vw 0;
    }
    .top_business_contents_link img{
        top: 1.16vw;
        right: 1.74vw;
        width: 1.86vw;
    }
    .top_business_contents_link p{
        left: 1.74vw;
        font-size: clamp(12px, 1vw, 18px);
        letter-spacing: clamp(0.5px, 0.087vw, 1.5px);
    }
    .top_business_contents_img {
        width: 36.6vw;
        margin-top: 4vw;
    }
}
@media(max-width: 1040px){
    .top_business_tab05_br {
        display: block;
    }
    .top_business_tab05 p{
        letter-spacing: 0;
        margin-left: 0;
        line-height: 17px;
        transform: scale(1,1);
    }
}
@media screen and (max-width: 768px) {
    .top_business_gr {
        margin-top: 8rem;
    }
    .top_business_tab_gr {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem 2px;
        width: 95%;
    }
    .top_business_tab {
        padding: 10px 0 0 0;
        margin: 1px 0;
        width: 45%;
        height: 40px;
        font-size: 14px;
    }
    .top_business_tab:nth-child(2n+1) {
        border-radius: 20px 0 0 20px;
    }
    .top_business_tab:nth-child(2n) {
        border-radius: 0 20px 20px 0;
    }
    .top_business_tab img {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 17px;
    }
    .top_business_tab p {
        position: relative;
        margin: 0;
        padding: 0 0 0 15px;
        text-align: center;
    }
    .top_business_tab05_br {
        display: none;
    }
    .top_business_tab05 p{
        letter-spacing: -2px;
    }
    .top_business_tab05 span{
        letter-spacing: 0;
    }
    .top_business_contents_sec {
        padding: 10rem 0;
        margin-top: 2rem;
    }
    .top_business_contents {
        width: 90%;
        flex-direction: column;
    }
    .top_business_contents_txt {
        width: 100%;
    }
    .top_business_contents_titleno {
        font-size: 3rem;
    }
    .top_business_contents_titleno img{
        width: 40px;
    }
    .top_business_contents_titlename {
        font-size: 5rem;
        line-height: 10rem;
    }
    .top_business_contents_note {
        font-size: 2rem;
        line-height: 3.6rem;
        margin-top: 2rem;
        margin-bottom: 6rem;
    }
    .top_business_contents_link {
        width: 220px;
        height: 50px;
        border-radius: 5px;
        margin: 0 auto 10px 0;
    }
    .top_business_contents_link img{
        top: 12px;
        right: 30px;
        width: 27px;
    }
    .top_business_contents_link p{
        left: 30px;
        font-size: 14px;
        letter-spacing: 1.5px;
    }
    .top_business_contents_img {
        width: 100%;
        margin-top: 4rem;
    }
}
@media screen and (max-width: 500px) {
    .top_business_contents_titleno {
        font-size: 4rem;
    }
    .top_business_contents_titlename {
        font-size: 6rem;
    }
    .top_business_contents_note {
        font-size: 2.8rem;
        line-height: 4.8rem;
    }
}




/* トップ 数字で見るTTC */
.top_num {
    width: 100vw;
    padding: 120px 0;
}
.top_num_main {
    display: flex;
    justify-content: space-between;
    width: 1440px;
    margin: 80px auto 20px auto;
    padding: 80px;
    border-radius: 10px;
    background-image: url(./img/top_num.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.top_num_main_parts {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.top_num_main_parts_1 {
    width: 310px;
}
.top_num_main_parts_2 {
    width: 200px;
}
.top_num_main_parts_3 {
    width: 720px;
}
.top_num_main_parts_title {
    font-size: 18px;
    color: #efefef;
    border: solid #ffffff 1px;
    border-radius: 20px;
    height: 37px;
    text-align: center;
    margin-bottom: 25px;
    padding: 3px 20px;
}
.top_num_main_parts_contents {
    display: flex;
    flex-direction: column;;
    align-items: center;
    justify-content: center;
    background-color: #efefef;
    width: 100%;
    height: 220px;
    border-radius: 10px;
}
.top_num_mainnum {
    font-size: 84px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #026830;
}
.top_num_mainunit  {
    font-size: 25px;
    font-weight: 700;
}
@media(max-width: 1720px){
    .top_num {
        padding: 7vw 0;
    }
    .top_num_main {
        width: 83.7vw;
        margin: 4.65vw auto 1.16vw auto;
        padding: 4.65vw;
    }
    .top_num_main_parts_1 {
        width: 18vw;
    }
    .top_num_main_parts_2 {
        width: 11.6vw;
    }
    .top_num_main_parts_3 {
        width: 41.86vw;
    }
    .top_num_main_parts_title {
        font-size: 1vw;
        border-radius: 1.16vw;
        height: 2.15vw;
        margin-bottom: 1.45vw;
        padding: 0.17vw 1.16vw;
    }
    .top_num_main_parts_contents {
        height: 12.8vw;
        border-radius: 0.58vw;
    }
    .top_num_mainnum {
        font-size: 4.88vw;
    }
    .top_num_mainunit  {
        font-size: 1.45vw;
    }
}
@media screen and (max-width: 768px) {
    .top_num {
        padding: 12rem 0;
    }
    .top_num_main {
        flex-direction: column;
        width: 90%;
        margin: 4rem auto 2rem auto;
        padding: 2rem 4rem;
    }
    .top_num_main_parts {
        width: 100%;
        margin: 4rem auto;
    }
    .top_num_main_parts_title {
        font-size: 14px;
        border-radius: 20px;
        height: 30px;
        margin-bottom: 2.4rem;
        padding: 3px 20px;
    }
    .top_num_main_parts_contents {
        width: 90%;
        height: 18rem;
        border-radius: 10px;
    }
    .top_num_mainnum {
        font-size: 8rem;
        letter-spacing: 2px;
    }
    .top_num_mainunit  {
        font-size: 3rem;
        margin-top: -15px;
    }
}
@media screen and (max-width: 500px) {
    .top_num_main_parts_contents {
        width: 100%;
        height: 24rem;
    }
    .top_num_mainnum {
        font-size: 9rem;
        letter-spacing: 2px;
    }
    .top_num_mainunit  {
        font-size: 4rem;
        margin-top: -10px;
    }
}



/* トップ 主な取引先 */
.top_partner {
    width: 1220px;
    margin: 80px auto;
}
.top_partner_title {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
}
.top_partner_parts_gr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 1220px;
}
.top_partner_parts01 { width: 106px; }
.top_partner_parts02 { width: 198px; }
.top_partner_parts03 { width: 200px; }
.top_partner_parts04 { width: 235px; }
.top_partner_parts05 { width: 138px; }
.top_partner_parts06 { width: 140px; margin-left: -20px; }
.top_partner_parts07 { width: 209px; }
.top_partner_parts08 { width: 233px; }
.top_partner_parts09 { width: 352px; }
.top_partner_parts10 { width: 186px; }
@media(max-width: 1720px){
    .top_partner {
        width: 71vw;
        margin: 4.6vw auto;
    }
    .top_partner_title {
        font-size: 1.45vw;
        margin-bottom: 4vw;
    }
    .top_partner_parts_gr {
        width: 71vw;
    }
    .top_partner_parts01 { width: 6.1vw; }
    .top_partner_parts02 { width: 11.5vw; }
    .top_partner_parts03 { width: 11.6vw; }
    .top_partner_parts04 { width: 13.6vw; }
    .top_partner_parts05 { width: 8vw; }
    .top_partner_parts06 { width: 8.1vw; margin-left: -1.1vw; }
    .top_partner_parts07 { width: 12.1vw; }
    .top_partner_parts08 { width: 13.5vw; }
    .top_partner_parts09 { width: 20.46vw; }
    .top_partner_parts10 { width: 10.8vw; }
}
@media screen and (max-width: 768px) {
    .top_partner {
        width: 90%;
        margin: 10rem auto 14rem auto;
    }
    .top_partner_title {
        font-size: 16px;
        margin-bottom: 4rem;
    }
    .top_partner_parts_gr {
        justify-content: center;
        gap: 8vw;
        width: 90%;
        margin: 0 auto;
    }
    .top_partner_parts01 { width: 20vw; max-width: 106px; }
    .top_partner_parts02 { width: 34vw; max-width: 198px; }
    .top_partner_parts03 { width: 32vw; max-width: 200px; }
    .top_partner_parts04 { width: 40vw; max-width: 235px; }
    .top_partner_parts05 { width: 24vw; max-width: 138px; }
    .top_partner_parts06 { width: 32vw; max-width: 140px; }
    .top_partner_parts07 { width: 34vw; max-width: 209px; }
    .top_partner_parts08 { width: 38vw; max-width: 233px; }
    .top_partner_parts09 { width: 46vw; max-width: 352px; }
    .top_partner_parts10 { width: 30vw; max-width: 186px; }
    .top_partner_parts_gr01 { gap: 6vw 8vw;  margin-bottom: 3vw; }
    .top_partner_parts_gr02 { gap: 0 4vw; }
}




/* トップ CSR活動 */
.top_csr_sec {
    width: 100vw;
    background-color: #118b3c;
    padding: 90px 0;
}
.top_csr {
    background-color: #ffffff;
    width: 1320px;
    margin: 20px auto;
    padding: 40px 60px 60px 60px;
    border-radius: 10px;
}
.top_csr_title {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 30px;
}
.top_csr_title_en {
    height: 50px;
}
.top_csr_title_en img{
    height: 50px;
}
.top_csr_title_jp {
    font-size: 23px;
    font-weight: 700;
    color: #118b3c;
}
.top_csr_gr {
    display: flex;
    margin-top: 100px;
}
.top_csr_note {
    font-size: 32px;
    letter-spacing: 1.5px;
    line-height: 56px;
    color: #118b3c;
}
.top_csr_note_br {
    display: block;
}
.top_csr_link {
    position: relative;
    background-color: #118b3c;
    width: 260px;
    height: 70px;
    border-radius: 5px;
    margin: 80px 0 0 0;
    transition-duration: .2s;
}
.top_csr_link a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.top_csr_link img{
    position: absolute;
    top: 20px;
    right: 30px;
    width: 32px;
    transition:opacity .25s ease;
}
.top_csr_link p{
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    font-size: 18px;
    letter-spacing: 1.5px;
    margin: 0;
    color: #efefef;
}
.top_csr_link .icon--hover{ 
    opacity:0; 
}
.top_csr_link:hover .icon--default{ 
    opacity:0; 
}
.top_csr_link:hover .icon--hover{ 
    opacity:1; 
}
.top_csr_link:hover{
    background-color: #ffffff;
    border: solid #118b3c 1px;
}
.top_csr_link:hover p{
    color: #118b3c;
}
.top_csr_img {
    flex: 1;
    position: relative;
}
.top_csr_img img {
    position: absolute;
}
.top_csr01 {
    width: 420px;
    top: 0;
    right: 340px;
}
.top_csr02 {
    width: 315px;
    top: -130px;
    right: -25px;
}
.top_csr03 {
    width: 280px;
    bottom: 0;
    right: 0;
}
@media(max-width: 1720px){
    .top_csr_sec {
        padding: 5.2vw 0;
    }
    .top_csr {
        width: 76.74vw;
        margin: 1.16vw auto;
        padding: 2.3vw 3.48vw 3.48vw 3.48vw;
    }
    .top_csr_title {
        gap: 1.74vw;
    }
    .top_csr_title_en {
        height: 2.9vw;
    }
    .top_csr_title_en img{
        height: 2.9vw;
    }
    .top_csr_title_jp {
        font-size: 1.3vw;
    }
    .top_csr_gr {
        margin-top: 5.8vw;
    }
    .top_csr_note {
        font-size: 1.86vw;
        letter-spacing: clamp(0.5px, 0.087vw, 1.5px);
        line-height: 3.25vw;
    }
    .top_csr_link {
        width: 17vw;
        height: 4vw;
        border-radius: 0.3vw;
        margin: 4.65vw 0 0 0;
    }
    .top_csr_link img{
        top: 1.16vw;
        right: 1.74vw;
        width: 1.86vw;
    }
    .top_csr_link p{
        left: 1.74vw;
        font-size: clamp(12px, 1vw, 18px);
        letter-spacing: clamp(0.5px, 0.087vw, 1.5px);
    }
    .top_csr01 {
        width: 24.4vw;
        top: 0;
        right: 19.7vw;
    }
    .top_csr02 {
        width: 18.3vw;
        top: -7.55vw;
        right: -1.45vw;
    }
    .top_csr03 {
        width: 16.3vw;
    }
}
@media screen and (max-width: 768px) {
    .top_csr_sec {
        padding: 8rem 0;
        overflow: visible;
    }
    .top_csr {
        width: 90%;
        margin: 2rem auto;
        padding: 6rem 4rem;
        overflow: visible;
    }
    .top_csr_title {
        flex-direction: column;
        gap: 1rem;
    }
    .top_csr_title_en {
        height: 4.8rem;
    }
    .top_csr_title_en img{
        height: 4.8rem;
    }
    .top_csr_title_jp {
        font-size: 15px;
    }
    .top_csr_gr {
        flex-direction: column;
        gap: 2rem;
        margin-top: 4rem;
        overflow: visible;
    }
    .top_csr_note {
        font-size: 2.2rem;
        line-height: 3.4rem;
    }
    .top_csr_note_br {
        display: none;
    }
    .top_csr_link {
        width: 240px;
        height: 50px;
        border-radius: 5px;
        margin: 4rem auto 0 0;
    }
    .top_csr_link img{
        top: 12px;
        right: 30px;
        width: 28px;
    }
    .top_csr_link p{
        left: 30px;
        font-size: 15px;
    }
    .top_csr_img {
        width: 100%;
        height: 60rem;
        flex: auto;
        overflow: visible;
    }
    .top_csr01 {
        width: 44rem;
        top: 4rem;
        right: 0;
    }
    .top_csr02 {
        width: 26rem;
        top: auto;
        bottom: 6rem;
        right: auto;
        left: -2rem;
    }
    .top_csr03 {
        width: 32rem;
        bottom: 0;
        right: -2rem;
    }
}
@media screen and (max-width: 500px) {
    .top_csr {
        padding: 6rem 4rem;
    }
    .top_csr_note {
        font-size: 3.2rem;
        line-height: 5.8rem;
    }
}


/* トップ お知らせ */
.top_news_box {
    width: 1440px;
    margin: 80px auto 100px auto;
    border-radius: 10px;
    background-color: #ffffff;
    border: solid 2px #118b3c;
}
.top_news_gr {
    width: 1330px;
    margin: 90px auto 50px auto;
    display: flex;
    justify-content: space-between;
}
.top_news_parts {
    position: relative;
    width: 400px;
}
.top_news_parts a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.top_news_eye {
    width: 400px;
    height: 300px;
    object-fit: cover;
}
.top_news_meta {
    width: 390px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top_news_meta_data {
    font-size: 17px;
    color: #118b3c;
}
.top_news_meta_cate {
    font-size: 12px;
    color: #efefef;
    background-color: #118b3c;
    padding: 7px 10px;
    border-radius: 20px;
}
.top_news_meta_cate a{
    color: #efefef;
}
.top_news_title {
    font-size: 22px;
    font-weight: 700;
    line-height: 36px;
}
.top_news_title a{
    color: #262626;
}
.top_news_link {
    position: relative;
    background-color: #118b3c;
    width: 220px;
    height: 70px;
    border-radius: 5px;
    margin: 50px auto;
    transition-duration: .2s;
}
.top_news_link a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.top_news_link img{
    position: absolute;
    top: 20px;
    right: 30px;
    width: 32px;
    transition:opacity .25s ease;
}
.top_news_link p{
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    font-size: 18px;
    letter-spacing: 1.5px;
    margin: 0;
    color: #efefef;
}
.top_news_link .icon--hover{ 
    opacity:0; 
}
.top_news_link:hover .icon--default{ 
    opacity:0; 
}
.top_news_link:hover .icon--hover{ 
    opacity:1; 
}
.top_news_link:hover{
    background-color: #ffffff;
    border: solid #118b3c 1px;
}
.top_news_link:hover p{
    color: #118b3c;
}
@media(max-width: 1720px){
    .top_news_box {
        width: 83.7vw;
        margin: 4.65vw auto 5.8vw auto;
    }
    .top_news_gr {
        width: 77.3vw;
        margin: 5.2vw auto 2.9vw auto;
    }
    .top_news_parts {
        width: 23vw;
    }
    .top_news_eye {
        width: 23vw;
        height: 17.4vw
    }
    .top_news_meta {
        width: 22.67vw;
        margin: 1.16vw auto;
    }
    .top_news_meta_data {
        font-size: clamp(13px, 1vw, 17px);
    }
    .top_news_meta_cate {
        font-size: clamp(9px, 0.7vw, 12px);
        padding: 2px 7px;
    }
    .top_news_title {
        font-size: 1.3vw;
        line-height: 2.1vw;
    }
    .top_news_link {
        width: 14.6vw;
        height: 4vw;
        border-radius: 0.3vw;
        margin: 3vw auto;
    }
    .top_news_link img{
        top: 1.16vw;
        right: 1.74vw;
        width: 1.86vw;
    }
    .top_news_link p{
        left: 1.74vw;
        font-size: clamp(12px, 1vw, 18px);
        letter-spacing: clamp(0.5px, 0.087vw, 1.5px);
    }
}
@media screen and (max-width: 768px) {
    .top_news_box {
        width: 90%;
        max-width: 500px;
        margin: 4rem auto;
    }
    .top_news_gr {
        width: 90%;
        margin: 6rem auto;
        flex-direction: column;
        align-items: center;
        gap: 6rem;
    }
    .top_news_parts {
        width: 100%;
        max-width: 400px;
    }
    .top_news_eye {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
    .top_news_meta {
        width: 95%;
        margin: 2rem auto 1rem auto;
    }
    .top_news_meta_data {
        font-size: 13px;
    }
    .top_news_meta_cate {
        font-size: 10px;
        padding: 7px 12px;
        border-radius: 20px;
    }
    .top_news_title {
        font-size: 2rem;
        line-height: 3rem;
    }
    .top_news_link {
        width: 220px;
        height: 50px;
        border-radius: 5px;
        margin: 7rem auto;
    }
    .top_news_link img{
        top: 12px;
        right: 30px;
        width: 28px;
    }
    .top_news_link p{
        left: 30px;
        font-size: 15px;
    }
}
@media screen and (max-width: 500px) {
    .top_news_title {
        font-size: 2.8rem;
        line-height: 3.8rem;
    }
}





/* トップ PDF */
.top_pdf {
    width: 1080px;
    margin: 120px auto 60px auto;
}
.top_pdf img{
    object-fit: contain;
}
.top_pdf_txt {
    overflow: visible;
}
.top_pdf_txt_parts {
    position: absolute;
    color: #efefef;
}
.top_pdf_txt_parts01 {
    font-size: 55px;
    font-weight: 700;
    line-height: 66px;
    top: 120px;
    left: 90px;
}
.top_pdf_txt_parts02 {
    font-size: 17px;
    font-weight: 700;
    top: 150px;
    left: 280px;
}
.top_pdf_txt_parts03 {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    bottom: 120px;
    left: 90px;
}
.top_pdf_txt_parts03 a{
    position: relative;
    color: #efefef;
}
.top_pdf_txt_parts03 a::after{
    content: '';
    position: absolute;
    top: 4px;
    right: -20px;
    width: 14px;
    height: 16px;
    background-image: url("./img/top_pdf_dl.webp");
    background-repeat: no-repeat;
    background-size: contain;
}
@media(max-width: 1720px){
    .top_pdf {
        width: 62.8vw;
        margin: 7vw auto 3.48vw auto;
    }
    .top_pdf_txt_parts01 {
        font-size: 3.2vw;
        line-height: 3.83vw;
        top: 7vw;
        left: 5.2vw;
    }
    .top_pdf_txt_parts02 {
        font-size: clamp(13px, 1vw, 17px);
        top: 8.7vw;
        left: 16.27vw;
    }
    .top_pdf_txt_parts03 {
        font-size: 1vw;
        bottom: 7vw;
        left: 5.2vw;
    }
    .top_pdf_txt_parts03 a::after{
        top: 0.23vw;
        right: -1.16vw;
        width: 0.8vw;
        height: 0.93vw;
    }
}
@media screen and (max-width: 768px) {
    .top_pdf {
        width: 95%;
        margin: 12rem auto;
    }
    .top_pdf_txt_parts01 {
        font-size: 9rem;
        line-height: 12rem;
        top: 47rem;
        left: 10rem;
    }
    .top_pdf_txt_parts02 {
        font-size: 3.4rem;
        top: 50rem;
        left: auto;
        right: 12rem;
    }
    .top_pdf_txt_parts03 {
        font-size: 3rem;
        bottom: 11rem;
        left: 10rem;
        overflow: visible;
    }
    .top_pdf_txt_parts03 a::after{
        top: 1rem;
        right: -5rem;
        width: 3rem;
        height: 3rem;
    }
}




/* トップ 今年の顔 */
.top_personOfTheYear {
    position: relative;
    width: 100vw;
    background-color: #262626;
    padding: 80px 0;
}
.top_personOfTheYear_title {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 30px;
    width: 1220px;
    margin: 0 auto;
    color: #efefef;
}
.top_personOfTheYear_title_en {
    width: 215px;
    z-index: 0;
    position: relative;
    top: 15px;
}
.top_personOfTheYear_title_jp {
    font-size: 30px;
    font-weight: 600;
    flex: 1;
    z-index: 0;
}
.top_personOfTheYear_title_line {
    width: 560px;
    height: 1px;
    background-color: #ffffff;
    z-index: 0;
}
.top_personOfTheYear_title_bk {
    position: absolute;
    top: -15px;
    left: -180px;
    width: 380px;
    z-index: 0;
}

.top_personOfTheYear_contents {
    display: flex;
    gap: 90px;
    align-items: flex-end;
    width: 1220px;
    margin: 60px auto;
    position: relative;
}
.top_personOfTheYear_contents_img {
    width: 400px;
}
.top_personOfTheYear_contents_txt {
    flex: 1;
}
.top_personOfTheYear_works {
    font-size: 18px;
    color: #00b33e;
}
.top_personOfTheYear_name {
    display: flex;
    gap: 20px;
    align-items: baseline;
    color: #00b33e;
    padding-bottom: 20px;
}
.top_personOfTheYear_name_bg {
    font-size: 45px;
    font-weight: 700;
}
.top_personOfTheYear_name_bg span{
    font-size: 26px;
}
.top_personOfTheYear_name_sm {
    font-size: 19px;
}
.top_personOfTheYear_q {
    font-size: 20px;
    font-weight: 700;
    color: #00b33e;
    margin: 40px auto 10px auto;
}
.top_personOfTheYear_a {
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    color: #e4e4e4;
    padding: 0 35px 0 50px;
}
@media(max-width: 1720px){
    .top_personOfTheYear {
        padding: 4.65vw 0;
    }
    .top_personOfTheYear_title {
        gap: 1.74vw;
        width: 71vw;
    }
    .top_personOfTheYear_title_en {
        width: 12.5vw;
        top: 0.87vw;
    }
    .top_personOfTheYear_title_jp {
        font-size: 1.74vw;
    }
    .top_personOfTheYear_title_line {
        width: 32.5vw;
    }
    .top_personOfTheYear_title_bk {
        top: -0.87vw;
        left: -10.46vw;
        width: 22vw;
    }

    .top_personOfTheYear_contents {
        gap: 5.2vw;
        width: 71vw;
        margin: 3.48vw auto;
    }
    .top_personOfTheYear_contents_img {
        width: 23.2vw;
    }
    .top_personOfTheYear_works {
        font-size: clamp(12px, 1vw, 18px);
    }
    .top_personOfTheYear_name {
        gap: 1.16vw;
        padding-bottom: 1.16vw;
    }
    .top_personOfTheYear_name_bg {
        font-size: 2.6vw;
    }
    .top_personOfTheYear_name_bg span{
        font-size: 1.5vw;
    }
    .top_personOfTheYear_name_sm {
        font-size: clamp(13px, 1.1vw, 19px);
    }
    .top_personOfTheYear_q {
        font-size: 1.16vw;
        margin: 2.3vw auto 0.58vw auto;
    }
    .top_personOfTheYear_a {
        font-size: clamp(12px, 0.93vw, 18px);
        line-height: clamp(20px, 1.6vw, 28px);
        padding: 0 2vw 0 2.9vw;
    }
}
@media screen and (max-width: 768px) {
    .top_personOfTheYear {
        padding: 14rem 0;
    }
    .top_personOfTheYear_title {
        flex-wrap: wrap;
        gap: 0 5rem;
        width: 90%;
        overflow: visible;
    }
    .top_personOfTheYear_title_en {
        width: 20rem;
        top: -0.5rem;
    }
    .top_personOfTheYear_title_jp {
        font-size: 2.2rem;
        flex: 1;
    }
    .top_personOfTheYear_title_line {
        width: 47rem;
    }
    .top_personOfTheYear_title_bk {
        top: -4rem;
        left: -5rem;
        width: 36rem;
    }

    .top_personOfTheYear_contents {
        flex-direction: column;
        gap: 8rem;
        align-items: center;
        width: 100%;
        margin: 8rem auto;
        overflow: visible;
    }
    .top_personOfTheYear_contents_img {
        width: 80%;
        margin: 0 auto;
    }
    .top_personOfTheYear_contents_txt {
        flex: 1;
        width: 85%;
        overflow: visible;
    }
    .top_personOfTheYear_works {
        font-size: 2.4rem;
    }
    .top_personOfTheYear_name {
        flex-direction: column;
        gap: 0;
        padding-bottom: 0;
    }
    .top_personOfTheYear_name_bg {
        font-size: 5rem;
    }
    .top_personOfTheYear_name_bg span{
        font-size: 3rem;
        padding-left: 2rem;
    }
    .top_personOfTheYear_name_sm {
        font-size: 2rem;
    }
    .top_personOfTheYear_q {
        font-size: 2.3rem;
        margin: 6rem auto 1rem auto;
    }
    .top_personOfTheYear_a {
        font-size: 2rem;
        line-height: 3.2rem;
        padding: 0;
    }
}
@media screen and (max-width: 500px) {
    .top_personOfTheYear_title_en {
        width: 26rem;
        top: 0;
    }
    .top_personOfTheYear_title_jp {
        font-size: 3rem;
    }
    .top_personOfTheYear_title_line {
        width: 40rem;
    }
    .top_personOfTheYear_title_bk {
        top: -7rem;
        font-size: 16rem;
    }
    .top_personOfTheYear_works {
        font-size: 2.8rem;
    }
    .top_personOfTheYear_name_bg {
        font-size: 8rem;
    }
    .top_personOfTheYear_name_bg span{
        font-size: 4rem;
    }
    .top_personOfTheYear_name_sm {
        font-size: 2.6rem;
    }
    .top_personOfTheYear_q {
        font-size: 3.2rem;
        margin: 8rem auto 2rem auto;
    }
    .top_personOfTheYear_a {
        font-size: 2.9rem;
        line-height: 3.6rem;
    }
}


/* 
 * 子ページ共通
 * トップタイトル
 */
.page_title {
    text-align: center;
    margin: 40px auto;
}
.page_title_en {
    position: relative;
    height: 55px;
    display: inline-block;
    margin-bottom: 60px;
}
.page_title_en_min {
    height: 40px;
    margin-bottom: 50px;
}
.page_title_en img, .page_title_en_min img{
    height: 100%;
}
.page_title_en::after {
    content: '';
    position: absolute;
    width: 390px;
    height: 4px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    background-color: #118b3c;
    transform-origin: center center;
    opacity: 0;     
}
@keyframes underlineGrowShrink_ko {
  0% {
    transform: translateX(-50%) scaleX(0);
  }
  60% {
    transform: translateX(-50%) scaleX(1.5);
  }
  100% {
    transform: translateX(-50%) scaleX(1);
  }
}
.page_title_en.is-active::after {
    opacity: 1;
    animation: underlineGrowShrink_ko 1.5s ease-out forwards;
}

.page_title_jp {
    font-size: 23px;
    font-weight: 700;
}
@media(max-width: 1720px){
    .page_title {
        margin: 2.3vw auto;
    }
    .page_title_en {
        height: 3.2vw;
        margin-bottom: 3.5vw;
    }
    .page_title_en_min{
        height: 2.3vw;
        margin-bottom: 2.9vw;
    }
    .page_title_en::after {
        width: 22.6vw;
        bottom: -1.74vw;
    }
    .page_title_jp {
        font-size: 1.3vw;
    }
}
@media(max-width: 768px){
    .page_title {
        margin: 4rem auto;
        overflow: visible;
    }
    .page_title_en {
        height: 5.5rem;
        margin-bottom: 6rem;
        overflow: visible;
    }
    .page_title_en_min {
        height: 4.5rem;
    }
    .page_title_en::after {
        width: 100%;
        bottom: -4rem;
    }
    .page_title_jp {
        font-size: 14px;
    }
}
@media(max-width: 500px){
    .page_title {
        margin: 12rem auto 8rem auto;
    }
}

/* 
 * 子ページ共通
 * ページ下部のメニュー・画像
 */
.page_about_menu {
    width: 1220px;
    margin: 100px auto 170px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px 20px;
}
.page_about_menu a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.page_about_menu_parts {
    position: relative;
    width: 388px;
    border-right: solid rgba(151, 151, 151, 0.7) 2px;
    border-bottom: solid rgba(151, 151, 151, 0.7) 2px;
    background-color: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.page_about_menu_parts:hover {
    transform: translate(1px, 2px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.page_about_menu_en {
    font-size: 22px;
    font-weight: 500;
    padding: 15px 0 0 20px;
}
.page_about_menu_jp {
    font-size: 13px;
    font-weight: 500;
    padding: 5px 0 20px 20px;
}
@media(max-width: 1720px){
    .page_about_menu {
        width: 71vw;
        margin: 5.8vw auto 9.9vw auto;
        gap: 2.3vw 1.16vw;
    }
    .page_about_menu_parts {
        width: 22.56vw;
    }
    .page_about_menu_en {
        font-size: 1.28vw;
        padding: 0.87vw 0 0 1.16vw;
    }
    .page_about_menu_jp {
        font-size: 10px;
        padding: 0.3vw 0 1.16vw 1.16vw;
    }
}
@media(max-width: 768px){
    .page_about_menu {
        width: 90%;
        margin: 8rem auto 17rem auto;
        justify-content: space-between;
        gap: 20px 0;
        overflow: visible;
    }
    .page_about_menu_parts {
        width: 48%;
    }
    .page_about_menu_en {
        font-size: 2rem;
        padding: 10px 0 0 10px;
    }
    .page_about_menu_jp {
        font-size: 1.2rem;
        padding: 10px 0 20px 12px;
    }
}
@media(max-width: 500px){
    .page_about_menu_txt {
        letter-spacing: 0;
    }
    .page_about_menu_txt {
        height: 20rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .page_about_menu_en {
        font-size: 3.2rem;
        line-height: 4rem;
    }
    .page_about_menu_jp {
        font-size: 2.2rem;
        padding: 10px 0 10px 12px;
    }
}


/* 
 * 会社概要・沿革ページ
 */
/* 会社概要 */
.overview_sec {
    padding: 120px 0 0 0;
}
.overview_sec_table {
    width: 1080px;
    margin: 80px auto;
    border-collapse:separate;
    border-spacing:0;
    overflow:hidden;
    font-size: 16px;
    border-right: 1px solid #b0b0b0;
    border-left: 1px solid #b0b0b0;
    border-bottom: 1px solid #b0b0b0;
}
.overview_sec_table tbody th {
    background:#efefef;
    text-align: left;
    vertical-align: top;
    font-weight: 500;
    width: 250px;
    padding: 15px 25px;
    border-top: 1px solid #b0b0b0;
}
.overview_sec_table tbody td{
    background:#ffffff;
    padding: 15px 20px;
    vertical-align: middle;
    border-top: 1px solid #b0b0b0;
    line-height: 30px;
}
.overview_sec_table dl{
    display: flex;
    gap: 20px;
    margin: 0 0 10px 0;
}
.overview_sec_table .overview_people_dl {
    margin: 0;
}
.overview_sec_table dl dt{
    width: 150px;
}
.overview_sec_table dl dd{
    margin: 0;
}
.overview_sec_table .overview_people_dl dd{
    margin: 0 30px 0 0;
}
.overview_business p{
    margin: 0;
    text-indent: -1em;
    padding-left: 1em;
}
@media(max-width: 1720px){
    .overview_sec {
        padding: 4.65vw 0 0 0;
    }
    .overview_sec_table {
        width: 62.8vw;
        min-width: 680px;
        margin: 4.65vw auto;
        font-size: clamp(10px, 0.9vw, 16px);
    }
    .overview_sec_table tbody th {
        width: 14.5vw;
        padding: 0.9vw 1.45vw;
    }
    .overview_sec_table tbody td{
        padding: 0.9vw 1.16vw;
        line-height: 1.74vw;
    }
    .overview_sec_table dl{
        gap: 1.16vw;
        margin: 0 0 0.58vw 0;
    }
    .overview_sec_table dl dt{
        width: 8.7vw;
    }
    .overview_sec_table .overview_people_dl dd{
        margin: 0 1.74vw 0 0;
    }
}
@media(max-width: 768px){
    .overview_sec {
        padding: 2rem 0 0 0;
    }
    .overview_sec_table {
        width: 90%;
        max-width: 600px;
        min-width: 300px;
        margin: 2rem auto;
        font-size: 1.8rem;
    }
    .overview_sec_table tbody th {
        display: block;
        width: 100%;
        padding: 1.5rem 2rem;
    }
    .overview_sec_table tbody td{
        display: block;
        padding: 1.5rem 2rem;
        line-height: 3rem;
    }
    .overview_sec_table dl{
        gap: 1rem;
        margin: 0 0 1rem 0;
    }
    .overview_sec_table dl dt{
        width: 20rem;
    }
    .overview_sec_table .overview_people_dl dd{
        margin: 0 5px 0 0;
    }
}
@media(max-width: 500px){
    .overview_sec {
        padding: 4rem 0 0 0;
    }
    .overview_sec_table {
        font-size: 2.7rem;
    }
    .overview_sec_table tbody td{
        padding: 2rem;
        line-height: 4.5rem;
    }
    .overview_sec_table dl{
        flex-direction: column;
        width: 100%;
    }
    .overview_sec_table dl dt{
        width: 100%;
    }
    .overview_sec_table dl dd{
        padding-left: 2em;
    }
}

 /* 沿革 */
.history_timeline {
    padding: 80px 0;
}
.history_timeline_gr {
    width: 1080px;
    margin: 80px auto;
}
.history_timeline_parts {
    display: flex;
    padding: 22px 5px;
    border-top:1px solid #b0b0b0;
}
.history_timeline_parts:last-child{
    border-bottom:1px solid #b0b0b0;
}
.history_timeline_parts .history_year{
    font-size: 18px;
    font-weight: 500;
    width: 270px;
}
.history_timeline_parts .history{
    margin: 0;
}
.history_timeline_parts .history li{
    list-style: disc;
}
@media(max-width: 1720px){
    .history_timeline {
        padding: 4.65vw 0;
    }
    .history_timeline_gr {
        width: 62.8vw;
        min-width: 680px;
        margin: 4.65vw auto;
    }
    .history_timeline_parts {
        padding: 1.28vw 0.3vw;
    }
    .history_timeline_parts .history_year{
        font-size: clamp(12px, 1.04vw, 18px);
        width: 15.7vw;
    }
}
@media(max-width: 768px){
    .history_timeline {
        padding: 8rem 0;
    }
    .history_timeline_gr {
        width: 90%;
        max-width: 600px;
        min-width: 300px;
        margin: 8rem auto;
    }
    .history_timeline_parts {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem 1rem;
    }
    .history_timeline_parts .history_year{
        font-size: 1.8rem;
        width: 100%;
    }
    .history_timeline_parts ul{
        padding-left: 3rem;
    }
}
@media(max-width: 500px){
    .history_timeline_parts {
        padding: 2rem;
        gap: 1rem;
    }
    .history_timeline_parts .history_year {
        font-size: 2.7rem;
    }
    .history_timeline_parts .history {
        font-size: 2.7rem;
        padding-left: 4rem;
    }
}


/* 
 * 代表挨拶ページ
 */
.ceo_message_top {
    position: relative;
    padding: 160px 0 0 0;
    width: 100vw;
    height: 990px;
    background-color: #ebeded;
}
.ceo_message_top_img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1220px;
    height: 580px;
    margin-top: 70px;
}
.ceo_message {
    width: 1180px;
    margin: 50px auto 120px auto;
}
.ceo_message_txt {
    margin: 80px auto;
}
.ceo_message_title_sub {
    font-size: 18px;
    text-align: center;
}
.ceo_message_title {
    position: relative;
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    margin: 20px auto;
    left: 50%;
    transform: translateX(-50%);
}
.ceo_message_title::after, .ceo_message_title::before {
    content: '';
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    width: 55px;
    height: 1px;
    background-color: #262626;
}
.ceo_message_title::after {
    right: -80px;
}
.ceo_message_title::before {
    left: -80px;
}
.ceo_message_note {
    width: 960px;
    font-size: 18px;
    line-height: 38px;
    letter-spacing: 0.2px;
    margin: 40px auto 20px auto;
    text-align: justify;
}
.ceo_message_note span{
    font-weight: 700;
}
.ceo_message_name {
    width: 960px;
    font-size: 18px;
    margin: 20px auto;
    text-align: right;
}
.ceo_message_name span{
    font-size: 29px;
    padding-left: 10px;
}
@media(max-width: 1720px){
    .ceo_message_top {
        padding: 9.3vw 0 0 0;
        height: 57.5vw;
    }
    .ceo_message_top_img {
        width: 71vw;
        height: 33.8vw;
        margin-top: 4vw;
    }
    .ceo_message {
        width: 68.6vw;
        margin: 2.9vw auto 7vw auto;
    }
    .ceo_message_txt {
        margin: 4.65vw auto;
    }
    .ceo_message_title_sub {
        font-size: clamp(12px, 1vw, 18px);
    }
    .ceo_message_title {
        font-size: 1.74vw;
        margin: 1.16vw auto;
    }
    .ceo_message_title::after, .ceo_message_title::before {
        width: 3.2vw;
    }
    .ceo_message_title::after {
        right: -4.65vw;
    }
    .ceo_message_title::before {
        left: -4.65vw;
    }
    .ceo_message_note {
        width: 55.8vw;
        font-size: clamp(12px, 1vw, 18px);
        line-height: clamp(16px, 2.2vw, 38px);
        margin: 2.3vw auto 1.16vw auto;
    }
    .ceo_message_name {
        width: 55.8vw;
        font-size: clamp(12px, 1vw, 18px);
        margin: 1.16vw auto;
    }
    .ceo_message_name span{
        font-size: 1.68vw;
        padding-left: 0.58vw;
    }
}
@media(max-width: 768px){
    .ceo_message_top {
        padding: 8rem 0 0 0;
        height: 102rem;
    }
    .ceo_message_top_img {
        width: 90%;
        height: 70rem;
        margin-top: 3rem;
    }
    .ceo_message_top_img img{
        height: 70rem;
        object-fit: cover;
    }
    .ceo_message {
        width: 90%;
        margin: 5rem auto 12rem auto;
    }
    .ceo_message_txt {
        margin: 4rem auto;
    }
    .ceo_message_title_sub {
        font-size: 2rem;
    }
    .ceo_message_title {
        font-size: 3rem;
        margin: 2rem auto;
    }
    .ceo_message_title::after, .ceo_message_title::before {
        width: 5rem;
    }
    .ceo_message_title::after {
        right: -8rem;
    }
    .ceo_message_title::before {
        left: -8rem;
    }
    .ceo_message_note {
        width: 90%;
        font-size: 2rem;
        line-height: 3.8rem;
        margin: 4rem auto 2rem auto;
    }
    .ceo_message_name {
        width: 90%;
        font-size: 2rem;
        margin: 2rem auto;
    }
    .ceo_message_name span{
        font-size: 4rem;
        padding-left: 1rem;
    }
}
@media(max-width: 500px){
    .ceo_message_top {
        height: 115rem;
    }
    .ceo_message {
        margin: 4rem auto 20rem auto;
    }
    .ceo_message_title {
        font-size: 4rem;
    }
    .ceo_message_title_sub {
        font-size: 2.6rem;
    }
    .ceo_message_note {
        font-size: 2.8rem;
        line-height: 4.6rem;
    }
    .ceo_message_name {
        width: 90%;
        font-size: 2.8rem;
        margin: 4rem auto 2rem auto;
    }
}


/* 経営陣 */
.ceo_management_sec {
    width: 1320px;
    margin: 180px auto 140px auto;
}
.ceo_management_gr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 100px;
}
.ceo_management_parts {
    width: 295px;
}
.ceo_management_prof {
    width: 95%;
    margin: 20px auto 60px auto;
}
.ceo_management_position {
    font-size: 14px;
}
.ceo_management_name {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.ceo_management_name_jp {
    font-size: 25px;
}
.ceo_management_name_en {
    font-size: 13px;
    letter-spacing: 0;
}
.ceo_management_message {
    font-size: 15px;
    line-height: 24px;
    margin: 40px auto;
}
@media(max-width: 1720px){
    .ceo_management_sec {
        width: 76.7vw;
        margin: 10.46vw auto 8.1vw auto;
    }
    .ceo_management_gr {
        gap: 1.16vw;
        margin-top: 5.8vw;
    }
    .ceo_management_parts {
        width: 17vw;
    }
    .ceo_management_prof {
        margin: 1.16vw auto 3.48vw auto;
    }
    .ceo_management_position {
        font-size: 11px;
    }
    .ceo_management_name {
        gap: 0.58vw;
        margin-top: 0.58vw;
    }
    .ceo_management_name_jp {
        font-size: clamp(14px, 1.45vw, 25px);
    }
    .ceo_management_name_en {
        font-size: 9px;
    }
    .ceo_management_message {
        font-size: clamp(11px, 0.87vw, 15px);
        line-height: clamp(16px, 1.4vw, 24px);
        margin: 2.3vw auto;
    }
}
@media(max-width: 768px){
    .ceo_management_sec {
        width: 90%;
        max-width: 600px;
        margin: 18rem auto 14rem auto;
    }
    .ceo_management_gr {
        margin-top: 6rem;
    }
    .ceo_management_parts {
        width: 48%;
    }
    .ceo_management_prof {
        margin: 1rem auto 4rem auto;
    }
    .ceo_management_position {
        font-size: 1.8rem;
    }
    .ceo_management_name {
        gap: 1rem;
        margin-top: 1rem;
    }
    .ceo_management_name_jp {
        font-size: 2.5rem;
    }
    .ceo_management_name_en {
        font-size: 1.5rem;
    }
    .ceo_management_message {
        font-size: 1.8rem;
        line-height: 2.6rem;
        margin: 2rem auto 4rem auto;
    }
}
@media(max-width: 500px){
    .ceo_management_position {
        font-size: 2.6rem;
    }
    .ceo_management_name_jp {
        font-size: 3.8rem;
    }
    .ceo_management_name_en {
        font-size: 2.5rem;
    }
    .ceo_management_message {
        font-size: 2.8rem;
        line-height: 4rem;
    }
    
}


/* GREEN GLOBE */
.ceo_greenglobe_sec {
    margin: 80px auto;
}
.ceo_greenglobe {
    position: relative;
    width: 930px;
    height: 225px;
    margin: 0 auto;
    display: flex;
    border-right: solid 1px #979797;
    border-bottom: solid 1px #979797;
    border-radius: 15px;
}
.ceo_greenglobe a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.ceo_greenglobe_left {
    position: relative;
    width: 460px;
    height: 225px;
    border-radius: 15px 0 0 15px;
    overflow: hidden;
}
.ceo_greenglobe_left img{
    position: absolute;
    width: 460px;
    height: 225px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ceo_greenglobe_right {
    position: relative;
    background-color: #ffffff;
    flex: 1;
    border-radius: 0 15px 15px 0;
}
.ceo_greenglobe_right p{
    line-height: 26px;
    letter-spacing: 0;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    margin: 0;
}
@media(max-width: 1720px){
    .ceo_greenglobe_sec {
        margin: 4.65vw auto;
    }
    .ceo_greenglobe {
        width: 54vw;
        height: 13vw;
    }
    .ceo_greenglobe_left {
        width: 26vw;
        height: 13vw;
    }
    .ceo_greenglobe_left img{
        width: 26.7vw;
        height: 13vw;
    }
    .ceo_greenglobe_right p{
        font-size: clamp(10px, 0.9vw, 16px);
        line-height: 1.5vw;
        left: 4vw;
    }
}
@media(max-width: 920px){
    .ceo_greenglobe_right p{
        font-size: 10px;
        left: 2vw;
    }
}
@media(max-width: 768px){
    .ceo_greenglobe_sec {
        margin: 10rem auto;
    }
    .ceo_greenglobe {
        width: 82%;
        max-width: 400px;
        height: 40rem;
        max-height: 240px;
        flex-direction: column;
    }
    .ceo_greenglobe_left {
        width: 100%;
        height: 20rem;
        max-height: 120px;
        border-radius: 15px 15px 0 0;
    }
    .ceo_greenglobe_left img{
        width: 100%;
        height: 20rem;
        max-height: 120px;
        object-fit: cover;
    }
    .ceo_greenglobe_right {
        height: 20rem;
        max-height: 120px;
        border-radius: 0 0 15px 15px;
    }
    .ceo_greenglobe_right p{
        font-size: 1.4rem;
        line-height: 2.6rem;
        left: 0;
        text-align: center;
    }
}
@media(max-width: 500px){
    .ceo_greenglobe_right p{
        font-size: 2.6rem;
        line-height: 3.6rem;
    }

}


/* 加盟団体 */
.ceo_organizations_sec {
    width: 960px;
    margin: 160px auto;
}
.ceo_organizations_parts {
    margin: 100px auto;
}
.ceo_organizations_ul{
    display: flex;
    justify-content: space-between;
}
.ceo_organizations_parts li{
    list-style: disc;
    font-size: 20px;
    padding: 4px 0;
}
.ceo_organizations_note {
    font-size: 22px;
    color: #118b3c;
    text-align: right;
    margin-top: 30px;
}
@media(max-width: 1720px){
    .ceo_organizations_sec {
        width: 55.8vw;
        margin: 9.3vw auto;
    }
    .ceo_organizations_parts {
        margin: 5.8vw auto;
    }
    .ceo_organizations_parts li{
        font-size: clamp(10px, 1.16vw, 20px);
        padding: 0.23vw 0;
    }
    .ceo_organizations_note {
        font-size: 1.28vw;
        margin-top: 1.74vw;
    }
}
@media(max-width: 768px){
    .ceo_organizations_sec {
        width: 90%;
        margin: 12rem auto 6rem auto;
    }
    .ceo_organizations_parts {
        margin: 6rem auto;
        max-width: 550px;
    }
    .ceo_organizations_ul{
        flex-direction: column;
    }
    .ceo_organizations_ul ul{
        margin: 0;
        padding-left: 5rem;
    }
    .ceo_organizations_parts li{
        font-size: 1.8rem;
        padding: 0.4rem 0;
    }
    .ceo_organizations_note {
        font-size: 2rem;
        margin-top: 1rem;
    }
}
@media(max-width: 500px){
    .ceo_organizations_ul ul{
        padding-left: 7rem;
    }
    .ceo_organizations_parts li{
        font-size: 2.8rem;
        padding: 0.4rem 0;
    }
    .ceo_organizations_note {
        font-size: 2.8rem;
        margin-top: 1rem;
    }
}



/* スポンサーシップ・社外活動 */
.ceo_sponsorship_sec {
    width: 960px;
    margin: 160px auto 190px auto;
}
.ceo_sponsorship_li {
    position: relative;
    margin: 150px auto;
}
.ceo_sponsorship_img {
    position: absolute;
    top: 20px;
    right: 0;
    width: 540px;
}
.ceo_sponsorship_li ul{
    margin-bottom: 60px;
}
.ceo_sponsorship_li li{
    list-style: disc;
    font-size: 20px;
    padding: 4px 0;
}
.ceo_sponsorship_title {
    font-size: 22px;
    color: #118b3c;
}
.ceo_sponsorship_link a{
    position: relative;
}
.ceo_sponsorship_link a::after {
    position: absolute;
    content: '';
    top: 7px;
    right: -30px;
    width: 17px;
    height: 17px;
    background-image: url("./img/icon_link.webp");
    background-size: contain;
    background-repeat: no-repeat;
}
.ceo_sponsorship_logo_gr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 60px auto;
}
.ceo_sponsorship_logo_gr img{
    width: 230px;
    transition: transform 0.3s ease;
}
.ceo_sponsorship_logo_gr img:hover {
    transform: translate(0, -7px);
}
@media(max-width: 1720px){
    .ceo_sponsorship_sec {
        width: 55.8vw;
        margin: 9.3vw auto 11vw auto;
    }
    .ceo_sponsorship_li {
        margin: 8.7vw auto;
    }
    .ceo_sponsorship_img {
        top: 1.16vw;
        width: 31.4vw;
    }
    .ceo_sponsorship_li ul{
        margin-bottom: 3.5vw;
    }
    .ceo_sponsorship_li li{
        font-size: 1.16vw;
        padding: 0.23vw 0;
    }
    .ceo_sponsorship_title {
        font-size: 1.28vw;
    }
    .ceo_sponsorship_link a::after {
        top: 0.4vw;
        right: -1.74vw;
        width: 0.988vw;
        height: 0.988vw;
    }
    .ceo_sponsorship_logo_gr {
        margin: 3.5vw auto;
    }
    .ceo_sponsorship_logo_gr img{
        width: 13.37vw;
    }
}
@media(max-width: 768px){
    .ceo_sponsorship_sec {
        width: 90%;
        margin: 12rem auto 19rem auto;
    }
    .ceo_sponsorship_li {
        margin: 6rem auto;
        max-width: 550px;
    }
    .ceo_sponsorship_img {
        position: relative;
        top: 0;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 550px;
        margin-bottom: 4rem;
    }
    .ceo_sponsorship_li ul{
        margin-bottom: 6rem;
    }
    .ceo_sponsorship_li li{
        font-size: 2rem;
        padding: 0.4rem 0;
    }
    .ceo_sponsorship_title {
        font-size: 2rem;
    }
    .ceo_sponsorship_link a::after {
        top: 7px;
        right: -30px;
        width: 15px;
        height: 15px;
    }
    .ceo_sponsorship_logo_gr {
        gap: 2rem 0;
        margin: 2rem auto;
    }
    .ceo_sponsorship_logo_gr img{
        width: 33rem;
        max-width: 260px;
    }
}
@media(max-width: 500px){
    .ceo_sponsorship_li li{
        font-size: 2.8rem;
    }
    .ceo_sponsorship_title {
        font-size: 2.8rem;
    }
    .ceo_sponsorship_link a::after {
        top: 5px;
        right: -20px;
        width: 12px;
        height: 12px;
    }
}



/* 
 * 支店情報ページ
 */
.office_page {
    width: 1080px;
    margin: 0 auto;
    padding: 160px 0;
}
.office_anc {
    display: flex;
    justify-content: space-between;
    margin: 80px auto;
}
.office_anc_parts {
    position: relative;
    width: 110px;
    height: 40px;
    border: solid 0.4px #231815;
    transition-duration: .2s;
}
.office_anc_parts:hover{
    background-color: #118b3c;
    border: solid #118b3c 1px;
}
.office_anc_parts:hover .office_anc_txt{
    color: #ffffff;
}
.office_anc_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    margin: 0;
    width: 100%;
    text-align: center;
}
.office_anc_parts a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
@media(max-width: 1720px){
    .office_page {
        width: 62.8vw;
        padding: 9.3vw 0;
    }
    .office_anc {
        margin: 4.65vw auto;
    }
    .office_anc_parts {
        width: clamp(56px, 6.4vw, 110px);
        height: 2.32vw;
    }
    .office_anc_txt {
        font-size: clamp(9px, 0.93vw, 16px);
        letter-spacing: 0;
    }
}
@media(max-width: 768px){
    .office_page {
        width: 90%;
        padding: 8rem 0;
    }
    .office_anc {
        max-width: 520px;
        flex-wrap: wrap;
        gap: 2rem 0;
        margin: 8rem auto;
    }
    .office_anc_parts {
        width: 23%;
        max-width: 110px;
        height: 5rem;
    }
    .office_anc_txt {
        font-size: 1.6rem;
    }
}
@media(max-width: 500px){
    .office_anc_txt {
        font-size: 2.4rem;
    }
}

.office_parts {
    padding-top: 40px;
    scroll-margin-top: 100px;
}
.office_parts_title {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 40px;
    padding-left: 15px;
    padding-bottom: 10px;
    margin-bottom: 40px;
}
.office_parts_title::before {
    position: absolute;
    content: '';
    top: 10px;
    left: 0;
    width: 3px;
    height: 25px;
    background-color: #118b3c;
}
.office_parts_title::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.5px;
    background-color: #b0b0b0;
}
.office_parts_name {
    font-size: 27px;
    font-weight: 700;
}
.office_parts_link {
    position: relative;
    width: 120px;
}
.office_parts_link::after {
    position: absolute;
    content: '';
    top: 10px;
    right: 0;
    width: 10px;
    height: 10px;
    background-image: url("./img/icon_link.webp");
    background-size: contain;
    background-repeat: no-repeat;
}
.office_parts_link a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.office_parts_info {
    margin: 20px auto;
}
@media(max-width: 1720px){
    .office_parts {
        padding-top: 2.3vw;
        scroll-margin-top: 5.8vw;
    }
    .office_parts_title {
        gap: 2.3vw;
        padding-left: 0.87vw;
        padding-bottom: 0.58vw;
        margin-bottom: 2.3vw;
    }
    .office_parts_title::before {
        top: 0.58vw;
        height: 1.45vw;
    }
    .office_parts_name {
        font-size: 1.57vw;
    }
    .office_parts_link {
        width: 90px;
        font-size: 11px;
    }
    .office_parts_link::after {
        top: 5px;
        width: 8.4px;
        height: 8.4px;
    }
    .office_parts_info {
        margin: 1.16vw auto;
    }
}
@media(max-width: 768px){
    .office_parts {
        padding-top: 3rem;
        scroll-margin-top: 12rem;
    }
    .office_parts_title {
        gap: 4rem;
        padding-left: 12px;
        padding-bottom: 8px;
        margin-bottom: 4rem;
        overflow: visible;
    }
    .office_parts_title::before {
        top: 4px;
        width: 2px;
        height: 18px;
    }
    .office_parts_name {
        font-size: 1.8rem;
    }
    .office_parts_info {
        margin: 2rem auto;
    }
}
@media(max-width: 500px){
    .office_parts_name {
        font-size: 3.6rem;
    }
}



/* 
 * 企業理念ページ
 */
.philosophy_top {
    position: relative;
    padding: 160px 0 0 0;
    width: 100vw;
    height: 990px;
    background-color: #ebeded;
}
.philosophy_top_img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1220px;
    height: 580px;
    margin-top: 70px;
}
.philosophy_message {
    width: 1180px;
    margin: 50px auto 120px auto;
}
.philosophy_message_title_sub {
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
}
.philosophy_message_title {
    position: relative;
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}
.philosophy_message_title::after, .philosophy_message_title::before {
    content: '';
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    width: 55px;
    height: 1px;
    background-color: #262626;
}
.philosophy_message_title::after {
    right: -120px;
}
.philosophy_message_title::before {
    left: -120px;
}
.philosophy_message_note_bg {
    font-size: 36px;
    font-weight: 700;
    margin: 60px auto;
    text-align: center;
}
.philosophy_message_note {
    font-size: 20px;
    margin: 60px auto;
    text-align: center;
}
.philosophy_message_dl {
    width: 960px;
    margin: 60px auto;
    font-size: 19px;
    line-height: 39px;
    letter-spacing: 0;
}
.philosophy_message_dl dl{
    display: flex;
    gap: 20px;
    margin: 30px auto;
}
.philosophy_message_dl dt{
    width: 120px;
    text-align: right;
}
.philosophy_message_dl dd{
    flex: 1;
    margin: 0;
}
@media(max-width: 1720px){
    .philosophy_top {
        padding: 9.3vw 0 0 0;
        height: 57.5vw;
    }
    .philosophy_top_img {
        width: 71vw;
        height: 33.8vw;
        margin-top: 4vw;
    }
    .philosophy_message {
        width: 68.6vw;
        margin: 2.9vw auto 7vw auto;
    }
    .philosophy_message_title_sub {
        font-size: clamp(12px, 1vw, 18px);
        margin-top: 0.58vw;
    }
    .philosophy_message_title {
        font-size: 1.74vw;
    }
    .philosophy_message_title::after, .philosophy_message_title::before {
        width: 3.2vw;
    }
    .philosophy_message_title::after {
        right: -7vw;
    }
    .philosophy_message_title::before {
        left: -7vw;
    }
    .philosophy_message_note_bg {
        font-size: 2vw;
        margin: 3.488vw auto;
    }
    .philosophy_message_note {
        font-size: 1.16vw;
        margin: 3.488vw auto;
    }
    .philosophy_message_dl {
        width: 55.8vw;
        margin: 3.488vw auto;
        font-size: clamp(10px, 1.1vw, 19px);
        line-height: clamp(22px, 2.26vw, 39px);
    }
    .philosophy_message_dl dl{
        gap: 1.16vw;
        margin: 1.74vw auto;
    }
    .philosophy_message_dl dt{
        width: 7vw;
    }
}
@media(max-width: 768px){
    .philosophy_top {
        padding: 8rem 0 0 0;
        height: 64rem;
    }
    .philosophy_top_img {
        width: 90%;
        height: 33rem;
        margin-top: 3rem;
    }
    .philosophy_message {
        margin: 4rem auto 12rem auto;
        width: 90%;
    }
    .philosophy_message_title_sub {
        font-size: 2rem;
        margin-top: 1rem;
    }
    .philosophy_message_title {
        font-size: 3rem;
        overflow: visible;
    }
    .philosophy_message_title::after, .philosophy_message_title::before {
        width: 5rem;
    }
    .philosophy_message_title::after {
        right: -8rem;
    }
    .philosophy_message_title::before {
        left: -8rem;
    }
    .philosophy_message_note_bg {
        font-size: 2.2rem;
        margin: 6rem auto;
    }
    .philosophy_message_note {
        font-size: 2rem;
        line-height: 3rem;
        margin: 6rem auto;
    }
    .philosophy_message_dl {
        width: 100%;
        margin: 6rem auto;
        font-size: 2.2rem;
        line-height: 3.6rem;
    }
    .philosophy_message_dl dl{
        gap: 1rem;
        margin: 3rem auto;
    }
    .philosophy_message_dl dt{
        width: 16rem;
    }
    .philosophy_message_dl dd{
        flex: 1;
    }
}
@media(max-width: 500px){
    .philosophy_top {
        height: 78rem;
    }
    .philosophy_message {
        margin: 4rem auto 10rem auto;
    }
    .philosophy_message_title_sub {
        font-size: 2.8rem;
    }
    .philosophy_message_title {
        font-size: 4rem;
    }
    .philosophy_message_note_bg {
        font-size: 3.2rem;
    }
    .philosophy_message_note {
        font-size: 2.8rem;
        line-height: 4.5rem
    }
    .philosophy_message_dl {
        font-size: 2.8rem;
        line-height: 4.8rem;
    }
}


/* 行動規範 */
.philosophy_conduct {
    margin: 150px auto;
}
.philosophy_conduct_main {
    font-size: 32px;
    line-height: 65px;
    text-align: center;
    margin: 80px auto;
}
.philosophy_conduct_note {
    font-size: 20px;
    line-height: 39px;
    text-align: center;
}
.philosophy_conduct_gr {
    display: flex;
    justify-content: space-between;
    width: 1250px;
    margin: 80px auto 0 auto;
}
.philosophy_conduct_parts {
    width: 226px;
    height: 500px;
    background-color: #e3e3e4;
    padding: 30px 0 5px 0;
    letter-spacing: 0;
}
.philosophy_conduct_title {
    position: relative;
    font-size: 26px;
    padding-bottom: 30px;
    width: fit-content;
    margin: 0 auto;
}
.philosophy_conduct_title span {
    position: absolute;
    bottom: 0;
    left: 20px;
    font-size: 17px;
}
.philosophy_conduct_title_3 span{
    letter-spacing: -0.7px;
}
.philosophy_conduct_txt {
    font-size: 24px;
    line-height: 51px;
    -ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
    margin: 50px auto 0 auto;
}
@media(max-width: 1720px){
    .philosophy_conduct {
        margin: 8.7vw auto;
    }
    .philosophy_conduct_main {
        font-size: 1.86vw;
        line-height: 3.78vw;
        margin: 4.65vw auto;
    }
    .philosophy_conduct_note {
        font-size: clamp(12px, 1.16vw, 20px);
        line-height: clamp(24px, 2.267vw, 39px);
    }
    .philosophy_conduct_gr {
        width: 72.67vw;
        margin: 4.65vw auto 0 auto;
    }
    .philosophy_conduct_parts {
        width: 13.14vw;
        height: 30vw;
        padding: 1.74vw 0 0.28vw 0;
    }
    .philosophy_conduct_title {
        font-size: 1.5vw;
        padding-bottom: 1.74vw;
    }
    .philosophy_conduct_title span {
        left: 1.16vw;
        font-size: clamp(10px, 1vw, 17px);
    }
    .philosophy_conduct_title_3 span{
        letter-spacing: -0.04vw;
    }
    .philosophy_conduct_txt {
        font-size: 1.4vw;
        line-height: 2.9vw;
        margin: 2.9vw auto 0 auto;
    }
}
@media(max-width: 768px){
    .philosophy_conduct {
        margin: 10rem auto 15rem auto;
    }
    .philosophy_conduct_main {
        font-size: 2.2rem;
        line-height: 5rem;
        margin: 8rem auto;
    }
    .philosophy_conduct_note {
        font-size: 2rem;
        line-height: 3rem;
    }
    .philosophy_conduct_gr {
        flex-direction: column;
        gap: 3rem;
        width: 90%;
        margin: 10rem auto 2rem auto;
    }
    .philosophy_conduct_parts {
        width: 100%;
        height: auto;
        min-height: 170px;
        padding: 3rem 4rem;
    }
    .philosophy_conduct_title {
        font-size: 3rem;
        padding-bottom: 3rem;
        width: auto;
    }
    .philosophy_conduct_title span {
        left: 3.5rem;
        font-size: 12px;
    }
    .philosophy_conduct_title_3 span{
        letter-spacing: -0.7px;
    }
    .philosophy_conduct_txt {
        font-size: 2.2rem;
        line-height: 3.5rem;
        -ms-writing-mode: lr-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        margin: 3rem auto 0 auto;
        padding-left: 1rem;
    }
}
@media(max-width: 500px){
    .philosophy_conduct_main {
        font-size: 3.2rem;
        line-height: 7rem;
    }
    .philosophy_conduct_note {
        font-size: 2.8rem;
        line-height: 4rem;
    }
    .philosophy_conduct_parts {
        min-height: 150px;
    }
    .philosophy_conduct_title {
        font-size: 4rem;
        padding-bottom: 4rem;
    }
    .philosophy_conduct_txt {
        font-size: 2.9rem;
        line-height: 5rem;
    }
}


/* 
 * CSRページ
 */
.csr_top {
    width: 1080px;
    margin: 0 auto;
    padding: 120px 0 0 0;
}
.csr_top_txt {
    font-size: 19px;
    line-height: 35px;
    text-align: center;
    margin: 80px auto;
}

.csr_sec {
    width: 1080px;
    margin: 60px auto;
    padding: 10px 60px;
    background-color: #ffffff;
}
.csr_parts {
    margin: 60px auto;
}
.csr_parts_title {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 40px;
    padding-left: 15px;
    padding-bottom: 10px;
    margin-bottom: 25px;
}
.csr_parts_title::before {
    position: absolute;
    content: '';
    top: 10px;
    left: 0;
    width: 3px;
    height: 25px;
    background-color: #118b3c;
}
.csr_parts_title::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.5px;
    background-color: #b0b0b0;
}
.csr_parts_name {
    font-size: 27px;
    font-weight: 700;
}
.csr_parts_name_en {
    position: relative;
}
.csr_parts_txt ul{
    margin: 0;
    padding-left: 30px;
}
.csr_parts_txt li{
    list-style: disc;
    padding: 1px 0;
}

.csr_sec_link {
    position: relative;
    width: 320px;
    height: 70px;
    background-color: #118b3c;
    margin: 60px auto 10px auto;
    transition: transform 0.3s ease;
}
.csr_sec_link a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.csr_sec_link p{
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    font-size: 14px;
    letter-spacing: -.5px;
    margin: 0;
    color: #efefef;
}
.csr_sec_link::after {
    position: absolute;
    content: '';
    top: 52%;
    transform: translateY(-50%);
    right: 22px;
    width: 10px;
    height: 10px;
    background-image: url("./img/icon_link_wh.webp");
    background-size: contain;
    background-repeat: no-repeat;
}
.csr_sec_link:hover {
    transform: translate(0, -6px)!important;
}
@media(max-width: 1720px){
    .csr_top {
        width: 80vw;
        max-width: 1080px;
        padding: 4.65vw 0 0 0;
    }
    .csr_top_txt {
        font-size: clamp(13px, 1.1vw, 19px);
        line-height: clamp(24px, 2vw, 35px);
        margin: 4.65vw auto;
    }

    .csr_sec {
        width: 80vw;
        max-width: 1080px;
        margin: 3.48vw auto;
        padding: 0.58vw 3.48vw;
    }
    .csr_parts {
        margin: 3.48vw auto;
    }
    .csr_parts_title {
        gap: 2.32vw;
        padding-left: 0.87vw;
        padding-bottom: 0.58vw;
        margin-bottom: 1.45vw;
    }
    .csr_parts_title::before {
        top: 0.58vw;
        width: 0.17vw;
        height: 1.45vw;
    }
    .csr_parts_name {
        font-size: clamp(15px, 1.57vw, 27px);
    }
    .csr_parts_txt ul{
        padding-left: 1.7vw;
    }

    .csr_sec_link {
        width: 300px;
        height: 6vw;
        max-height: 70px;
        margin: 3.48vw auto 0.58vw auto;
    }
    .csr_sec_link p{
        font-size: 12px;
    }
}
@media(max-width: 768px){
    .csr_top {
        width: 90%;
        padding: 4rem 0 0 0;
    }
    .csr_top_txt {
        font-size: 1.8rem;
        line-height: 3rem;
        margin: 4rem auto;
    }

    .csr_sec {
        width: 90%;
        margin: 4rem auto;
        padding: 2rem 4rem;
    }
    .csr_parts {
        margin: 4rem auto;
    }
    .csr_parts_title {
        gap: 4rem;
        padding-left: 15px;
        padding-bottom: 10px;
        margin-bottom: 25px;
        overflow: visible;
    }
    .csr_parts_title::before {
        top: 2px;
        width: 3px;
        height: 25px;
    }
    .csr_parts_name {
        font-size: 1.8rem;
    }
    .csr_parts_txt ul{
        padding-left: 2.5rem;
    }
    .csr_parts_txt li{
        padding: 0.2rem 0;
    }

    .csr_sec_link {
        width: 320px;
        height: 70px;
        margin: 6rem auto 1rem auto;
    }
    .csr_sec_link p{
        left: 30px;
        transform: translateY(-50%);
        font-size: 14px;
        letter-spacing: -.5px;
        margin: 0;
        color: #efefef;
    }
    .csr_sec_link::after {
        position: absolute;
        content: '';
        top: 52%;
        transform: translateY(-50%);
        right: 22px;
        width: 10px;
        height: 10px;
        background-image: url("./img/icon_link_wh.webp");
        background-size: contain;
        background-repeat: no-repeat;
    }
}
@media(max-width: 500px){
    .csr_top_txt {
        font-size: 3rem;
        line-height: 4.2rem;
    }
    .csr_parts {
        margin: 8rem auto;
    }
    .csr_parts_title {
        flex-direction: column;
        gap: 0;
        margin-bottom: 2rem;
    }
    .csr_parts_name {
        font-size: 3.6rem;
    }
    .csr_parts_name_en {
        font-size: 2.6rem;
    }
    .csr_parts_txt ul{
        padding-left: 4rem;
    }
    .csr_parts_txt li{
        padding: 1rem 0;
    }
}


/* 
 * 部署紹介ページ 共通
 */
/* トップ */
#visual .business_visual_sec {
    position: relative;
    width: 100%;
    overflow: hidden;
}
#visual .business_visual_img {
    height: auto;
    max-height: 900px;
}
#visual .business_visual_img img{
    width: 100vw;
    height: auto;
    max-height: 900px;
    object-fit: cover;
    object-position: center;
}
.business_visual_contents_gr {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1430px;
    height: 100%;
    margin: 0 auto;
    color: #efefef;
}
.business_visual_contents {
    position: relative;
    height: 100%;
}
.business_visual_title {
    position: absolute;
    top: 170px;
    right: 0;
}
.business_visual_title_mae {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding-left: 5px;
}
.business_visual_title_num img{
    width: 30px;
}
.business_visual_title_en {
    font-size: 22px;
    font-weight: 700;
}
.business_visual_title_jp {
    position: relative;
    display: inline-block;
    font-size: 100px;
    font-weight: 700;
    letter-spacing: 4px;
    border-bottom: solid 1px #ffffff;
    padding-bottom: 10px;
}
.business_visual_title_front .business_visual_title_jp{
    padding-right: 5px;
}
.business_visual_title_front .business_visual_title_jp span{
    display: inline-block;
    letter-spacing: -7px;
    transform: scale(0.75,1);
    margin: 0 -110px;
}
.business_visual_note {
    position: absolute;
    bottom: 120px;
    left: 0;
    font-size: 22px;
    line-height: 44px;
    text-align: justify;
    width: 610px;
}
@media(max-width: 1720px){
    #visual .business_visual_img {
        max-height: 52vw;
    }
    #visual .business_visual_img img{
        max-height: 52vw;
    }
    .business_visual_contents_gr {
        width: 83vw;
    }
    .business_visual_title {
        top: 9.88vw;
    }
    .business_visual_title_mae {
        gap: 1.16vw;
        padding-left: 0.3vw;
    }
    .business_visual_title_num img{
        width: 1.7vw;
    }
    .business_visual_title_en {
        font-size: 1.3vw;
    }
    .business_visual_title_jp {
        font-size: 5.8vw;
        letter-spacing: 0.23vw;
        padding-bottom: -0.6vw;
    }
    .business_visual_title_front .business_visual_title_jp{
        padding-right: 0.357vw;
    }
    .business_visual_title_front .business_visual_title_jp span{
        letter-spacing: -0.5vw;
        margin: 0 -6vw;
    }
    .business_visual_note {
        bottom: 7vw;
        font-size: 1.3vw;
        line-height: 2.56vw;
        width: 35.465vw;
    }
}
@media screen and (max-width: 768px) {
    #visual .business_visual_img {
        height: 500px;
        max-height: none;
    }
    #visual .business_visual_img img{
        height: 500px;
        max-height: none;
    }
    .business_visual_contents_gr {
        width: 90%;
    }
    .business_visual_title {
        top: 12rem;
        right: auto;
        left: 0;
        overflow: visible;
    }
    .business_visual_title_mae {
        align-items: center;
        gap: 3rem;
    }
    .business_visual_title_num img{
        width: 2.5rem;
    }
    .business_visual_title_en {
        font-size: 2.2rem;
        font-weight: 500;
    }
    .business_visual_title_jp {
        font-size: 5rem;
        letter-spacing: 4px;
        overflow: visible;
        padding-bottom: -1rem;
    }
    .business_visual_title_front .business_visual_title_jp{
        padding-right: 5px;
    }
    .business_visual_title_front .business_visual_title_jp span{
        letter-spacing: -0.5rem;
        margin: 0 -5rem;
    }
    .business_visual_note {
        bottom: 4rem;
        font-size: 1.8rem;
        line-height: 3rem;
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .business_visual_title {
        top: 25rem;
    }
    .business_visual_title_num img{
        width: 4rem;
    }
    .business_visual_title_jp {
        font-size: 8.5rem;
    }
    .business_visual_title_front .business_visual_title_jp span{
        margin: 0 -10rem;
    }
    .business_visual_note {
        bottom: 8rem;
        font-size: 2.8rem;
        line-height: 4.5rem;
    }
}



/* 背景・前置き */
.business_main_bkcolor {
    width: 100vw;
    background-color: #293136;
    color: #e4e4e4;
    padding: 20px 0;
    margin-top: -10px;
}
.business_mae {
    margin: 180px auto 80px auto;
    text-align: center;
    font-feature-settings: "halt";
}
.business_title {
    font-size: 36px;
    font-weight: 700;
}
.business_note {
    font-size: 19px;
    font-weight: 500;
    line-height: 39px;
    margin-top: 40px;
}
@media(max-width: 1720px){
    .business_main_bkcolor {
        padding: 1.16vw 0;
    }
    .business_mae {
        margin: 10.47vw auto 4.65vw auto;
    }
    .business_title {
        font-size: 2vw;
    }
    .business_note {
        font-size: clamp(13px, 1.1vw, 19px);
        line-height: clamp(24px, 2.267vw, 39px);
        margin-top: 2.3vw;
    }
}
@media screen and (max-width: 768px) {
    .business_main_bkcolor {
        padding: 2rem 0;
    }
    .business_mae {
        margin: 12rem auto;
    }
    .business_title {
        font-size: 2.2rem;
        line-height: 4.2rem;
    }
    .business_note {
        font-size: 1.8rem;
        line-height: 3.2rem;
        margin-top: 4rem;
    }
}
@media screen and (max-width: 500px) {
    .business_title {
        font-size: 3.6rem;
        line-height: 5.6rem;
    }
    .business_note {
        font-size: 2.8rem;
        line-height: 4.6rem;
    }
}


/* パーツ：タイトル */
.business_head_title {
    display: inline-block;
    position: relative;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 15px;
    font-feature-settings: "halt";
    align-self: flex-start;
}
.business_head_title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #118b3c;
}
@media(max-width: 1720px){
    .business_head_title {
        font-size: 2.3vw;
        padding-bottom: 0.87vw;
    }
    .business_head_title::before {
        height: 0.23vw;
    }
}
@media screen and (max-width: 768px) {
    .business_head_title {
        font-size: 2.8rem;
        padding-bottom: 1rem;
    }
    .business_head_title::before {
        height: 4px;
    }
}
@media screen and (max-width: 500px) {
    .business_head_title {
        font-size: 4.5rem;
    }
}


/* パーツ：特徴 */
.business_features_gr {
    width: 1200px;
    margin: 160px auto;
    display: flex;
    justify-content: space-between;
}
.business_features_gr_reverse {
    flex-direction: row-reverse;
}
.business_features_txt {
    width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}
.business_features_txt_main {
    font-size: 28px;
    font-weight: 700;
    color: #efefef;
    background-color: #000000;
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
}
.business_features_txt_note {
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 0;
    margin-top: 30px;
    text-align: justify;
}
.business_features_txt_detail {
    font-size: 17px;
    background-color: #ffffff;
    color: #293136;
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
}
.business_features_txt_detail ul{
    width: 50%;
}
.business_features_txt_detail ul.business_features_txt_detail_one{
    width: 100%;
}
.business_features_txt_detail li{
    list-style: disc;
}
.business_features_img {
    width: 500px;
    margin-top: 127px;
}
@media(max-width: 1720px){
    .business_features_gr {
        width: 70vw;
        margin: 9.3vw auto;
    }
    .business_features_txt {
        width: 35vw;
        max-width: 500px;
    }
    .business_features_title_step {
        position: absolute;
        top: -0.87vw;
        left: 0.1vw;
        font-size: clamp(12px, 1vw, 18px);
    }
    .business_features_txt_main {
        font-size: 1.6vw;
        padding: 1.16vw 0;
        margin-top: 3.5vw;
    }
    .business_features_txt_note {
        font-size: clamp(12px, 1vw, 18px);
        line-height: clamp(18px, 2vw, 34px);
        margin-top: 1.74vw;
    }
    .business_features_txt_detail {
        font-size: clamp(10px, 1vw, 18px);
        padding: 1.74vw 0;
    }
    .business_features_txt_detail ul {
        padding-left: 3.2vw;
    }
    .business_features_img {
        width: 29vw;
        margin-top: 7.38vw;
    }
}
@media screen and (max-width: 768px) {
    .business_features_gr {
        width: 90%;
        margin: 0 auto 16rem auto;
        flex-direction: column;
    }
    .business_features_txt {
        width: 100%;
        max-width: none;
        gap: 4rem;
    }
    .business_features_title_step {
        font-size: 2.4rem;
    }
    .business_features_txt_main {
        font-size: 2.4rem;
        padding: 2rem 0;
        margin-top: 4rem;
    }
    .business_features_txt_note {
        font-size: 2rem;
        line-height: 3.2rem;
        margin-top: 3rem;
    }
    .business_features_txt_detail {
        font-size: 2rem;
        flex-wrap: wrap;
        padding: 3rem 4rem;
    }
    .business_features_txt_detail ul{
        width: 100%;
        margin: 0;
    }
    .business_features_img {
        width: 100%;
        margin-top: 4rem;
    }
}
@media screen and (max-width: 500px) {
    .business_features_txt_main {
        font-size: 3.6rem;
    }
    .business_features_txt_note {
        font-size: 3rem;
        line-height: 4.6rem;
    }
    .business_features_txt_detail {
        font-size: 2.8rem;
        padding: 4rem 6rem;
    }
}




/* パーツ：スライダー画像 */
.swiper.business_img_swiper {
    max-width: 500px;
    margin: 0;
    padding-bottom: 25px;
    overflow: hidden;
}
.swiper.business_img_swiper .swiper-pagination {
    bottom: 0;
    width: auto;
}
.swiper.business_img_swiper .swiper-pagination-bullet {
    position: relative;
    background-color: #efefef;
    opacity: 1; 
    width: 40px;
    height: 2px;
    border-radius: 0;
}
.swiper.business_img_swiper .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 60px;
    background: transparent;
}
.swiper.business_img_swiper .swiper-pagination-bullet-active {
    background-color: #118b3c;
}
@media(max-width: 1720px){
    .swiper.business_img_swiper {
        max-width: 29vw;
        padding-bottom: 1.45vw;
    }
}
@media(max-width: 768px){
    .swiper.business_img_swiper {
        width: 100%;
        max-width: none;
        padding-bottom: 2rem;
    }
    .swiper.business_img_swiper .swiper-wrapper{
        overflow: visible;
    }
}




/* パーツ：下部画像 */
.business_bottom_img {
    width: 100vw;
    height: 580px;
    overflow: hidden;
}
.business_bottom_img img{
    height: 580px;
    object-position: 50% 50%;
    object-fit: cover;
}
@media(max-width: 1720px){
    .business_bottom_img {
        height: 34vw;
    }
    .business_bottom_img img{
        height: 34vw;
        object-fit: cover;
    }
}
@media screen and (max-width: 768px) {
    .business_bottom_img {
        height: 200px;
    }
    .business_bottom_img img{
        height: 200px;
    }
}


/* 
 * 部署紹介ページ 揚重
 */
/* 業務内容 */
.business_yojyu_about {
    width: 1200px;
    margin: 150px auto 180px auto;
}
.business_yojyu_about_note {
    background-color: #e4e4e4;
    color: #293136;
    margin: 60px auto 40px auto;
    font-size: 17px;
}
.business_yojyu_about_ul{
    display: flex;
    justify-content: space-between;
    padding: 10px 60px;
}
.business_yojyu_about_ul ul{
    width: 50%;
}
.business_yojyu_about_ul li{
    list-style: disc;
    padding-bottom: 5px;
}
.business_yojyu_about_subtitle {
    font-size: 19px;
    margin-left: -30px;
    margin-bottom: 10px;
}
@media(max-width: 1720px){
    .business_yojyu_about {
        width: 70vw;
        margin: 8.7vw auto 10.4vw auto;
    }
    .business_yojyu_about_note {
        margin: 3.48vw auto 2.3vw auto;
        font-size: clamp(13px, 1vw, 17px);
    }
    .business_yojyu_about_ul{
        display: flex;
        justify-content: space-between;
        padding: 0.6vw 3.5vw;
    }
    .business_yojyu_about_ul li{
        padding-bottom: 0.3vw;
    }
    .business_yojyu_about_subtitle {
        font-size: clamp(13px, 1.1vw, 19px);
        margin-left: clamp(-30px, -1.74vw, -20px);
        margin-bottom: 0.58vw;
    }
}
@media screen and (max-width: 768px) {
    .business_yojyu_about {
        width: 90%;
        margin: 12rem auto;
    }
    .business_yojyu_about_note {
        margin: 4rem auto;
        font-size: 1.8rem;
    }
    .business_yojyu_about_ul{
        flex-direction: column;
        gap: 2rem;
        padding: 4rem 1.5rem;
    }
    .business_yojyu_about_ul ul{
        width: 100%;
        padding-left: 5rem;
        margin: 0;
    }
    .business_yojyu_about_subtitle {
        font-size: 1.8rem;
        margin-left: -2.5rem;
        margin-bottom: 0.5rem;
    }
}
@media screen and (max-width: 500px) {
    .business_yojyu_about_note {
        font-size: 2.8rem;
    }
    .business_yojyu_about_ul{
        gap: 3rem;
    }
    .business_yojyu_about_subtitle {
        font-size: 2.8rem;
        margin-left: -4rem;
    }
}




/* 導入のメリット */
.business_yojyu_merit {
    width: 1200px;
    margin: 120px auto 160px auto;
}
.business_yojyu_merit_note {
    font-size: 19px;
}
.business_yojyu_merit_note ul{
    margin: 60px auto 40px auto;
    padding-left: 25px;
}
.business_yojyu_merit_note li{
    list-style: disc;
    letter-spacing: 0;
    line-height: 35px;
}
.business_yojyu_merit_gr {
    position: relative;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 150px 0;
}
.business_yojyu_merit_gr::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-image: url("./img/business_01_arrow.webp");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}
.business_yojyu_merit_parts {
    position: relative;
    z-index: 1;
    width: 500px;
    background-color: #293e47;
    border-radius: 15px;
    padding: 40px 40px 50px 40px;
}
.business_yojyu_merit_no {
    width: 60px;
    margin: 0 auto;
}
.business_yojyu_merit_title {
    font-size: 30px;
    font-weight: 700;
    color: #e4e4e4;
    text-align: center;
    margin: 0 auto 20px auto;
}
.business_yojyu_merit_txt p{
    font-size: 17px;
    line-height: 30px;
    letter-spacing: -0.2px;
    color: #e4e4e4;
    text-align: justify;
    margin: 0 auto 25px auto;
}
@media(max-width: 1720px){
    .business_yojyu_merit {
        width: 70vw;
        margin: 7vw auto 9.3vw auto;
    }
    .business_yojyu_merit_note {
        font-size: clamp(13px, 1.1vw, 19px);
    }
    .business_yojyu_merit_note ul{
        margin: 3.48vw auto 2.3vw auto;
        padding-left: 1.45vw;
    }
    .business_yojyu_merit_note li{
        line-height: 2vw;
    }
    .business_yojyu_merit_gr {
        margin: 2.3vw auto;
        gap: 8.7vw 0;
    }
    .business_yojyu_merit_gr::after {
        width: 23.25vw;
        height: 23.25vw;
    }
    .business_yojyu_merit_parts {
        width: 30vw;
        border-radius: 0.9vw;
        padding: 2.3vw 2.3vw 3vw 2.3vw;
    }
    .business_yojyu_merit_no {
        width: 3.48vw;
    }
    .business_yojyu_merit_title {
        font-size: 1.74vw;
        margin: 0 auto 1.16vw auto;
    }
    .business_yojyu_merit_txt p{
        font-size: clamp(12px, 1vw, 17px);
        line-height: clamp(18px, 1.74vw, 30px);
        margin: 0 auto 1.45vw auto;
    }
}
@media screen and (max-width: 768px) {
    .business_yojyu_merit {
        width: 90%;
        margin: 12rem auto;
    }
    .business_yojyu_merit_note {
        font-size: 1.8rem;
    }
    .business_yojyu_merit_note ul{
        margin: 2rem auto;
        padding-left: 5rem;
    }
    .business_yojyu_merit_note li{
        line-height: 3.5rem;
    }
    .business_yojyu_merit_note li:first-child{
        margin-bottom: 2.5rem;
    }
    .business_yojyu_merit_gr {
        margin: 4rem auto;
        flex-direction: column;
        gap: 3rem;
    }
    .business_yojyu_merit_gr::after {
        content: none;
    }
    .business_yojyu_merit_parts {
        width: 100%;
        padding: 5rem 4rem 2rem 4rem;
    }
    .business_yojyu_merit_no {
        width: 6rem;
    }
    .business_yojyu_merit_title {
        font-size: 2.8rem;
        margin: 0 auto 1.5rem auto;
    }
    .business_yojyu_merit_txt p{
        font-size: 1.8rem;
        line-height: 3rem;
        margin: 0 auto 1.5rem auto;
    }
}
@media screen and (max-width: 500px) {
    .business_yojyu_merit_note {
        font-size: 2.8rem;
    }
    .business_yojyu_merit_note li{
        line-height: 4.2rem;
    }
    .business_yojyu_merit_title {
        font-size: 3.4rem;
        margin: 0 auto 2rem auto;
    }
    .business_yojyu_merit_txt p{
        font-size: 2.8rem;
        line-height: 4.4rem;
    }
}


/* 業務 */
.business_yojyu_works_sec {
    width: 1200px;
    margin: 70px auto;
}
.business_yojyu_works {
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 80px 0;
}
.business_yojyu_works_parts {
    width: 30%;
}
.business_yojyu_works_txt {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-left: 1em;
    text-indent: -1em;
}
@media(max-width: 1720px){
    .business_yojyu_works_sec {
        width: 70vw;
        margin: 4vw auto;
    }
    .business_yojyu_works {
        margin: 5.8vw auto;
        gap: 4.65vw 0;
    }
    .business_yojyu_works_txt {
        font-size: 1.2vw;
        margin-bottom: 0.58vw;
    }
}
@media screen and (max-width: 768px) {
    .business_yojyu_works_sec {
        width: 90%;
        margin: 8rem auto;
    }
    .business_yojyu_works {
        margin: 4rem auto;
        gap: 4rem 0;
    }
    .business_yojyu_works_parts {
        width: 48%;
    }
    .business_yojyu_works_txt {
        font-size: 1.8rem;
        margin-bottom: 0;
        height: 6rem;
    }
}
@media screen and (max-width: 500px) {
    .business_yojyu_works_txt {
        font-size: 2.8rem;
        height: 10rem;
    }
}


/* 契約形態と終始 */
.business_yojyu_contract {
    width: 1200px;
    margin: 180px auto 120px auto;
}
.business_yojyu_contract_img  {
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
    width: 970px;
}
.business_yojyu_contract_img img{
    width: 430px;
}
.business_yojyu_contract_note {
    border: solid #293136 1px;
    background-color: #ffffff;
    margin: 70px auto;
    padding: 30px 100px;
    font-size: 19px;
}
.business_yojyu_contract_note p{
    margin: 20px 0;
}
.business_yojyu_contract_note .bg {
    font-size: 25px;
    color: #118b3c;
    font-feature-settings: "halt";
}
@media(max-width: 1720px){
    .business_yojyu_contract {
        width: 70vw;
        margin: 10.46vw auto 6.97vw auto;
    }
    .business_yojyu_contract_img  {
        margin: 2.9vw auto;
        width: 56.4vw;
    }
    .business_yojyu_contract_img img{
        width: 25vw;
    }
    .business_yojyu_contract_note {
        margin: 4vw auto;
        padding: 1.74vw 5.8vw;
        font-size: clamp(13px, 1.1vw, 19px);
    }
    .business_yojyu_contract_note p{
        margin: 1.16vw 0;
    }
    .business_yojyu_contract_note .bg {
        font-size: 1.45vw;
    }
}
@media screen and (max-width: 768px) {
    .business_yojyu_contract {
        width: 90%;
        margin: 14rem auto 12rem auto;
    }
    .business_yojyu_contract_img  {
        flex-direction: column;
        align-items: center;
        gap: 6rem;
        margin: 8rem auto;
        width: 80%;
    }
    .business_yojyu_contract_img img{
        width: 80%;
    }
    .business_yojyu_contract_note {
        margin: 8rem auto;
        padding: 3rem 6rem;
        font-size: 1.8rem;
    }
    .business_yojyu_contract_note p{
        margin: 2rem 0;
    }
    .business_yojyu_contract_note .bg {
        font-size: 2.6rem;
    }
}
@media screen and (max-width: 500px) {
    .business_yojyu_contract_note {
        font-size: 2.8rem;
    }
    .business_yojyu_contract_note .bg {
        font-size: 3rem;
    }
}



/* PDF資料 */
.business_yojyu_pdf_sec {
    width: 1080px;
    margin: 120px auto 40px auto;
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 15px;
    border-right: solid 2.5px #808080;
    border-bottom: solid 2.5px #808080;
}
.business_yojyu_mae {
    font-size: 19px;
}
.business_yojyu_pdf {
    width: 90%;
    margin: 60px auto 20px auto;
}
.business_yojyu_pdf_btn {
    position: relative;
    background-color: #118b3c;
    width: 360px;
    height: 70px;
    border-radius: 5px;
    margin: 50px 0 0 0;
    transition-duration: .2s;
}
.business_yojyu_pdf_btn a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.business_yojyu_pdf_btn img{
    position: absolute;
    top: 20px;
    right: 30px;
    width: 32px;
    transition:opacity .25s ease;
}
.business_yojyu_pdf_btn p{
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    font-size: 17px;
    letter-spacing: 1.5px;
    margin: 0;
    color: #efefef;
}
.business_yojyu_pdf_btn .icon--hover{ 
    opacity:0; 
}
.business_yojyu_pdf_btn:hover .icon--default{ 
    opacity:0; 
}
.business_yojyu_pdf_btn:hover .icon--hover{ 
    opacity:1; 
}
.business_yojyu_pdf_btn:hover{
    background-color: #ffffff;
    border: solid #118b3c 1px;
}
.business_yojyu_pdf_btn:hover p{
    color: #118b3c;
}
.business_yojyu_pdf_ul{
    display: flex;
    justify-content: space-between;
}
.business_yojyu_pdf_ul ul{
    width: 33.3%;
    padding-left: 15px;
    margin: 25px auto 0 auto;
}
.business_yojyu_pdf_ul li{
    font-size: 16px;
    letter-spacing: 0;
    margin-left: 1rem;
    padding: 5px 0;
}
.business_yojyu_pdf_ul li::before{
    list-style: none;
    content: '◆';
    margin-left: -1rem;
}
@media(max-width: 1720px){
    .business_yojyu_pdf_sec {
        width: 62.8vw;
        min-width: 640px;
        margin: 7vw auto 2.3vw auto;
        padding: 3vw 3.5vw;
    }
    .business_yojyu_mae {
        font-size: clamp(13px, 1.1vw, 19px);
    }
    .business_yojyu_pdf {
        margin: 3.5vw auto 1.16vw auto;
    }
    .business_yojyu_pdf_btn {
        width: 21vw;
        height: 4vw;
        margin: 3vw 0 0 0;
    }
    .business_yojyu_pdf_btn img{
        top: 1.16vw;
        right: 1.74vw;
        width: 1.86vw;
    }
    .business_yojyu_pdf_btn p{
        left: 1.74vw;
        font-size: clamp(10px, 1vw, 17px);
    }
    .business_yojyu_pdf_ul ul{
        padding-left: 0.87vw;
        margin: 1.45vw auto 0 auto;
    }
    .business_yojyu_pdf_ul li{
        font-size: clamp(10px, 0.9vw, 16px);
        padding: 0.3vw 0;
    }
}
@media screen and (max-width: 768px) {
    .business_yojyu_pdf_sec {
        width: 90%;
        min-width: 0;
        margin: 12rem auto 4rem auto;
        padding: 6rem 4rem 5rem 4rem;
    }
    .business_yojyu_mae {
        font-size: 1.8rem;
    }
    .business_yojyu_pdf {
        width: 100%;
        margin: 4rem auto 2rem auto;
    }
    .business_yojyu_pdf_btn {
        width: 280px;
        height: 50px;
        margin: 4rem 0 0 0;
    }
    .business_yojyu_pdf_btn img{
        top: 12px;
        right: 20px;
        width: 28px;
    }
    .business_yojyu_pdf_btn p{
        left: 30px;
        font-size: 14px;
    }
    .business_yojyu_pdf_ul{
        flex-direction: column;
        margin: 2rem auto;
    }
    .business_yojyu_pdf_ul ul{
        width: 100%;
        padding-left: 2rem;
        margin: 0 auto;
    }
    .business_yojyu_pdf_ul li{
        font-size: 1.8rem;
        margin-left: 1rem;
    }
}
@media screen and (max-width: 500px) {
    .business_yojyu_mae {
        font-size: 2.8rem;
    }
    .business_yojyu_pdf_ul li{
        font-size: 2.6rem;
    }
}





/* 
 * 部署紹介ページ 美装
 */
.business_biso_features_sec {
    margin: 160px auto;
}
@media(max-width: 1720px){
    .business_biso_features_sec {
        margin: 9.3vw auto;
    }
}
@media(max-width: 768px){
    .business_biso_features_sec {
        margin: 12rem auto 2rem auto;
    }
}



/* 
 * 部署紹介ページ 多能工
 */
.business_tanoko_bkcolor {
    width: 100vw;
    background-color: #2b3941;
    color: #e4e4e4;
    padding: 20px 0;
    margin-top: -60px;
}
.business_tanoko_bkcolor .business_features_gr {
    margin-top: 70px;
}
.business_tanoko_bkcolor .business_features_gr_reverse {
    margin-bottom: 70px;
}
.business_main_bkcolor_tanoko  .business_features_gr {
    margin-top: 70px;
}
@media(max-width: 1720px){
    .business_tanoko_bkcolor {
        padding: 1.16vw 0;
        margin-top: -3.49vw;
    }
    .business_tanoko_bkcolor .business_features_gr {
        margin-top: 4vw;
    }
    .business_tanoko_bkcolor .business_features_gr_reverse {
        margin-bottom: 4vw;
    }
    .business_main_bkcolor_tanoko  .business_features_gr {
        margin-top: 4vw;
    }
}
@media(max-width: 768px){
    .business_tanoko_bkcolor {
        padding: 2rem 0;
        margin-top: -6rem;
    }
    .business_tanoko_bkcolor .business_features_gr {
        margin-top: 6rem;
    }
    .business_tanoko_bkcolor .business_features_gr_reverse {
        margin-bottom: 6rem;
    }
    .business_main_bkcolor_tanoko  .business_features_gr {
        margin-top: 6rem;
    }
}


/* 
 * 部署紹介ページ 建築
 */
.business_kenchiku_bkcolor {
    width: 100vw;
    color: #e4e4e4;
    padding: 20px 0;
    margin-top: -10px;
    position: relative;
    background: #293136;
    overflow: hidden;
    z-index: -2;
}
.business_kenchiku_bkcolor::before {
    content: "";
    position: absolute;
    inset: 30% 0 20% 0;
    background: #242b30;
    clip-path: polygon(0 0, 100% 20%, 100% 70%, 0 100%);
    z-index: -1;
}
.business_kenchiku_features_sec {
    margin: 160px auto;
}
.business_kenchiku_features_sec .business_features_txt {
    justify-content: flex-start;
}
.business_kenchiku_features_sec .business_features_img {
    width: 548px;
    margin-top: 132px;
}
.business_kenchiku_features_sec .business_features_img.business_features_img_kenchiku03 {
    margin-top: 0;
}
@media(max-width: 1720px){
    .business_kenchiku_bkcolor {
        padding: 1.16vw 0;
    }
    .business_kenchiku_features_sec {
        margin: 9.3vw auto;
    }
    .business_kenchiku_features_sec .business_features_img {
        width: 31.86vw;
        margin-top: 7.67vw;
    }
}
@media(max-width: 768px){
    .business_kenchiku_features_sec {
        margin: 12rem auto 2rem auto;
    }
    .business_kenchiku_features_sec .business_features_img, .business_kenchiku_features_sec .business_features_img.business_features_img_kenchiku03 {
        width: 100%;
        margin-top: 4rem;
    }
}


/* 
 * 部署紹介ページ フロントローディング
 */
.business_front_bkcolor {
    width: 100vw;
    color: #e4e4e4;
    padding: 20px 0;
    margin-top: -10px;
    position: relative;
    background: #293136;
    overflow: hidden;
    z-index: -2;
}
.business_front_bkcolor::before {
    content: "";
    position: absolute;
    inset: 41.5% 0 20% 0;
    background: #242b30;
    clip-path: polygon(0 0, 100% 20%, 100% 70%, 0 100%);
    z-index: -1;
}
.business_front_img {
    width: 720px;
    margin: 80px auto 140px auto;
}
@media(max-width: 1720px){
    .business_front_bkcolor {
        padding: 1.16vw 0;
    }
    .business_front_img {
        width: 41.86vw;
        margin: 4.65vw auto 8.14vw auto;
    }
}
@media(max-width: 768px){
    .business_front_img {
        width: 90%;
        margin: 8rem auto 14rem auto;
    }
}



/* 
 * 部署紹介ページ ドローン事業
 */
.business_drone_features_sec {
    margin: 120px auto;
}

/* 点検対称の活用事例 */
.business_drone_features_02 {
    width: 1200px;
    margin: 120px auto 160px auto;
}
.business_drone_features_02_note {
    font-size: 19px;
    letter-spacing: 0.5px;
    margin: 40px auto;
}
.business_drone_features_02_gr {
    position: relative;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 150px 0;
}
.business_drone_features_02_gr::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    background-image: url("./img/business_06_circle.webp");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}
.business_drone_features_02_parts {
    position: relative;
    z-index: 1;
    width: 540px;
    background-color: #293e47;
    border-radius: 15px;
    padding: 30px 40px 40px 40px;
}
.business_drone_features_02_title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 20px auto;
}
.business_drone_features_02_no {
    width: 60px;
}
.business_drone_features_02_title p{
    font-size: 30px;
    color: #e4e4e4;
    margin: 0;
}
.business_drone_features_02_txt {
    font-size: 17px;
    line-height: 30px;
    letter-spacing: -0.2px;
    color: #e4e4e4;
    text-align: justify;
    margin: 25px auto 0 auto;
}

.business_drone_features_03 {
    width: 1180px;
    margin: 40px auto;
}
.business_drone_features_03_note {
    width: 1080px;
    margin: 40px auto;
    font-size: 19px;
    letter-spacing: 0;
    line-height: 30px;
}
.business_drone_features_03_table_img {
    width: 1080px;
    margin: 40px auto;
}
.business_drone_features_03_school {
    width: 1180px;
    margin: 60px auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 20px;
}
.business_drone_features_03_school_txt {
    font-size: 19px;
    padding-bottom: 5px;
}
.business_drone_features_03_school_link {
    position: relative;
}
.business_drone_features_03_school_link img{
    width: 250px;
    border-right: solid rgba(151, 151, 151, 0.7) 2px;
    border-bottom: solid rgba(151, 151, 151, 0.7) 2px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.business_drone_features_03_school_link:hover img{
    transform: translate(1px, 2px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.business_drone_features_03_school_link a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

@media(max-width: 1720px){
    .business_drone_features_sec {
        margin: 7vw auto;
    }

    /* 点検対称の活用事例 */
    .business_drone_features_02 {
        width: 70vw;
        margin: 7vw auto 9.3vw auto;
    }
    .business_drone_features_02_note {
        font-size: clamp(13px, 1.1vw, 19px);
        margin: 2.3vw auto;
    }
    .business_drone_features_02_gr {
        margin: 2.3vw auto;
        gap: 8.7vw 0;
    }
    .business_drone_features_02_gr::after {
        width: 19.76vw;
        height: 19.76vw;
    }
    .business_drone_features_02_parts {
        width: 31.4vw;
        border-radius: 0.9vw;
        padding: 1.74vw 2.3vw 2.3vw 2.3vw;
    }
    .business_drone_features_02_title {
        gap: 0.58vw;
        margin: 0 auto 1.16vw auto;
    }
    .business_drone_features_02_no {
        width: 3.49vw;
    }
    .business_drone_features_02_title p{
        font-size: 1.74vw;
    }
    .business_drone_features_02_txt {
        font-size: clamp(12px, 1vw, 17px);
        line-height: clamp(18px, 1.74vw, 30px);
        margin: 1.45vw auto 0 auto;
    }

    .business_drone_features_03 {
        width: 68.6vw;
        margin: 2.3vw auto;
    }
    .business_drone_features_03_note {
        width: 62.8vw;
        margin: 2.3vw auto;
        font-size: clamp(13px, 1.1vw, 19px);
        line-height: clamp(18px, 1.74vw, 30px);
    }
    .business_drone_features_03_table_img {
        width: 62.8vw;
        margin: 2.3vw auto;
    }
    .business_drone_features_03_school {
        width: 68.6vw;
        margin: 3.48vw auto;
        gap: 1.16vw;
    }
    .business_drone_features_03_school_txt {
        font-size: clamp(13px, 1.1vw, 19px);
        padding-bottom: 0.3vw;
    }
    .business_drone_features_03_school_link img{
        width: 14.5vw;
    }
}
@media screen and (max-width: 768px) {
    .business_drone_features_sec {
        margin: 12rem auto 2rem auto;
    }
    
    .business_drone_features_02 {
        width: 90%;
        margin: 12rem auto;
    }
    .business_drone_features_02_note {
        font-size: 1.8rem;
        margin: 4rem auto;
    }
    .business_drone_features_02_gr {
        margin: 4rem auto;
        flex-direction: column;
        gap: 3rem;
    }
    .business_drone_features_02_gr::after {
        content: none;
    }
    .business_drone_features_02_parts {
        width: 100%;
        padding: 2rem 4rem;
    }
    .business_drone_features_02_title {
        gap: 1.5rem;
        margin: 0 auto;
    }
    .business_drone_features_02_no {
        width: 6rem;
    }
    .business_drone_features_02_title p{
        font-size: 2.8rem;
    }
    .business_drone_features_02_txt {
        font-size: 1.8rem;
        line-height: 3rem;
        margin: 0 auto 1.5rem auto;
    }

    .business_drone_features_03 {
        width: 90%;
        margin: 4rem auto;
    }
    .business_drone_features_03_note {
        width: 100%;
        margin: 4rem auto;
        font-size: 1.8rem;
        line-height: 3rem;
    }
    .business_drone_features_03_table_img {
        width: 100%;
        margin: 4rem auto;
    }
    .business_drone_features_03_school {
        width: 100%;
        margin: 2rem auto;
        gap: 2rem;
    }
    .business_drone_features_03_school_txt {
        font-size: 1.8rem;
        padding-bottom: 5px;
    }
    .business_drone_features_03_school_link img{
        width: 25rem;
    }
}
@media screen and (max-width: 500px) {
    .business_drone_features_02_note {
        font-size: 2.8rem;
    }
    .business_drone_features_02_title p{
        font-size: 3.4rem;
        margin-bottom: 0.6rem;
    }
    .business_drone_features_02_txt {
        font-size: 2.8rem;
        line-height: 4.4rem;
    }
    .business_drone_features_03_note {
        font-size: 2.8rem;
        line-height: 4.4rem;
    }
    .business_drone_features_03_school_txt {
        font-size: 2.6rem;
    }
}




/* 
 * お知らせ アーカイブページ
 */
/* ブログ機能 アーカイブページ */
.main_news_archive {
    background-color: #FCF9F3;
}
.news_archive_sec{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
    margin: 0 auto;
    padding: 120px 0;
    width: 1330px;
}
.news_archive_parts {
    width: 400px;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    transition: all .3s;
}
.news_archive_parts a{
    text-decoration: none;
}
.news_archive_parts:hover{
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
	transform: translateY(-0.1875em);
}
.news_archive_post_thumbnail {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}
.news_archive_post_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news_archive_parts_txt {
    padding: 20px 20px 0 20px;
    color: #222222;
    background-color: #ffffff;
    border-radius: 0 0 5px 5px;
    height: 170px;
}
.news_archive_meta {
    width: 360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news_archive_meta_data {
    font-size: 17px;
    color: #118b3c;
}
.news_archive_meta_cate {
    font-size: 12px;
    color: #efefef;
    background-color: #118b3c;
    padding: 7px 10px;
    border-radius: 5px;
}
.news_archive_meta_cate a{
    color: #efefef;
}
.news_archive_parts_title {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin: 10px 0;
}

.news_pagination {
    background-color: #FCF9F3;
    text-align: center;
    margin: 0 auto;
    padding: 80px 0 200px 0;
}
.news_pagination .page-numbers {
    display: inline-block;
    margin: 0 10px;
}
a.page-numbers {
    color: #222222;
}
@media screen and (max-width: 1080px) {
    .news_archive_sec{
        gap: 3vw;
        padding: 12vw 0;
        width: 90vw;
    }
    .news_archive_parts {
        width: 28vw;
    }

    .news_archive_parts_txt {
        padding: 10px 15px 0 15px;
        height: 21vw;
    }
    .news_archive_meta {
        width: 25vw;
    }
    .news_archive_parts_date {
        font-size: 13px;
        padding-left: 2px;
    }
    .news_archive_parts_title {
        font-size: 15.5px;
        line-height: 20px;
        margin: 5px 0;
    }

    .news_pagination {
        padding: 2vw 0 15vw 0;
    }
    .news_pagination .page-numbers {
        margin: 0 1vw;
    }
}
@media screen and (max-width: 768px) {
    .news_archive_sec{
        gap: 4vw;
        padding: 12vw 0;
        width: 90vw;
    }
    .news_archive_parts {
        width: 43vw;
    }
    .news_archive_meta {
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .news_archive_sec{
        flex-direction: column;
        align-items: center;
        gap: 6rem 0;
        padding: 18rem 0 12rem 0;
        width: 95%;
        max-width: 400px;
    }
    .news_archive_parts {
        width: 312px;
    }

    .news_archive_parts_txt {
        height: 170px;
    }
    .news_archive_parts_date {
        font-size: 14px;
        padding-left: 5px;
    }
    .news_archive_parts_title {
        font-size: 16px;
        line-height: 22px;
        margin: 10px 0;
    }

    .news_pagination {
        padding: 2rem 0 16rem 0;
    }
    .news_pagination .page-numbers {
        margin: 0 10px;
    }
}


/* 
 * お知らせ シングルページ
 */
.page_top_img {
    position: relative;
    margin-bottom: -20px;
    height: 350px;
}
.page_top_img img{
    min-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.page_top_img .page_top_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #efefef;
}

.news_post_sec {
    width: 90%;
    max-width: 900px;
    margin: 160px auto 0 auto;
    padding-bottom: 160px;
}
.news_post_title {
    font-size: 35px;
    font-weight: 700;
}
.news_post_meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding-left: 5px;
    margin: 20px 0 40px 0;
}
.news_post_date {
    font-size: 16px;
    letter-spacing: 1.5px;
}
.news_post_cate {
    font-size: 16px;
    background-color: #118b3c;
    padding: 0 20px;
}
.news_post_cate a{
    color: #efefef;
}
.news_post_thumbnail {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.news_post_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news_contents {
    margin: 0 auto 160px auto;
}
.news_contents p{
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 30px;
    margin: 40px auto 20px auto;
    text-align: justify;
}
.news_contents h2.wp-block-heading{
    position: relative;
    font-size: 26px;
    font-weight: 700;
    margin: 80px auto 0 auto;
    padding: 8px 0 8px 30px;
}
.news_contents h2.wp-block-heading::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 7px;
    background-color: #118b3c;
}
.news_contents h3.wp-block-heading{
    position: relative;
    font-size: 22px;
    font-weight: 700;
    margin: 40px auto 0 auto;
    padding-left: 30px;
}
.news_contents h3.wp-block-heading::before{
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 5px;
    background-color: #118b3c;
}
.news_contents .wp-block-image {
    width: 100%;
    margin: 60px auto 40px auto;
}
.news_contents .wp-block-image img{
    width: 100%;
}
.news_contents .wp-block-buttons {
    margin: 120px auto;
    justify-content: center;
}
.news_contents .wp-block-buttons a{
    position: relative;
    border-radius: 0;
    width: 100%;
    padding: 7px 70px 7px 40px;
    font-size: 16px;
    transition: all .3s;
}
.news_contents .wp-block-buttons:hover a{
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
	transform: translateY(-0.1875em);
}

.news_btn_all {
    position: relative;
    transition: all 0.3s ease 0s;
    font-size: 17px;
    text-align: center;
    position: relative;
    margin: 80px auto 0 auto;
    border: solid #333333 1px;
    width: 240px;
    height: 55px;
}
.news_btn_all p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 100%;
}
.news_btn_all a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
}
.news_btn_all:hover{
    background-color: #118b3c;
    color: #efefef;
    border: solid #118b3c 1px;
}
@media screen and (max-width: 1080px) {
    .page_top_img {
        height: 20.35vw;
    }
    .news_post_sec {
        margin: 14vw auto 0 auto;
        padding-bottom: 14vw;
    }
    .news_post_title {
        font-size: 32px;
    }
}
@media screen and (max-width: 768px) {
    .page_top_img {
        height: 240px;
    }
    .page_top_img .page_top_txt {
        font-size: 22px;
    }
    .news_post_sec {
        width: 90%;
        margin: 16rem auto 0 auto;
        padding-bottom: 8rem;
    }
    .news_post_title {
        font-size: 24px;
    }
    .news_post_meta {
        gap: 2rem;
        padding-left: 0;
        margin: 4rem 0 6rem 0;
    }
    .news_post_date {
        font-size: 15px;
        width: 100%;
    }
    .news_post_cate {
        font-size: 15px;
    }

    .news_contents {
        margin: 0 auto 6rem auto;
    }
    .news_contents p{
        margin: 3rem auto 2rem auto;
    }
    .news_contents h2.wp-block-heading{
        font-size: 22px;
        margin: 6rem auto 0 auto;
        padding: 8px 0 8px 25px;
    }
    .news_contents h3.wp-block-heading{
        font-size: 20px;
        margin: 3rem auto 0 auto;
        padding-left: 2rem;
    }
    .news_contents h3.wp-block-heading::before{
        top: 2px;
    }
    .news_contents .wp-block-image {
        margin: 4rem auto 3rem auto;
    }
    .news_contents .wp-block-buttons {
        margin: 6rem auto;
    }

    .news_btn_all {
        font-size: 16px;
        margin: 12rem auto;
    }
}


/* 
 * 問合せページ
 */
.contact_mae {
    padding: 120px 0 0 0;
}
.contact_mae_txt {
    font-size: 14px;
    text-align: center;
    margin: 60px auto 50px auto;
}

.contact_sec {
    width: 1080px;
    margin: 20px auto;
    padding: 80px;
    background-color: #ffffff;
}
.contact_tel {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    font-size: 23px;
    font-weight: 700;
}
.contact_tel p{
    margin: 0;
}
.contact_tel_line {
    width: 140px;
    height: 1px;
    background-color: #262626;
}
.contact_tel_tel a{
    color: #262626;
}

.contact_form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 80px auto 40px auto;
}
.contact_form dl {
    margin: 0;
    padding: 8px 0;
    width: 430px;
}
.contact_form dl.txt {
    width: 100%;
}
.contact_form dl dt {
    font-weight: 700;
}
.contact_form dl dt p{
    margin: 0;
}
.contact_form dl dt span{
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    background-color: #fd0000;
    color: #efefef;
    padding: 0 4px;
}
.contact_form dl dd {
    margin: 10px 0;
}
.contact_form dl dd p{
    margin: 0;
}
.contact_form dl dd input{
    width: 410px;
    font-size: 14px;
    text-align: left;
    padding: 17px 0px 17px 20px;
    background-color: #f4f4f4;
    border: none;
    border-radius: 5px;
}
.contact_form dl dd textarea{
    width: 100%;
    height: 110px;
    font-size: 14px;
    text-align: left;
    padding: 17px 0px 17px 20px;
    background-color: #f4f4f4;
    border: none;
    border-radius: 5px;
}
.contact_form dl.txt dd{
    height: 110px;
}

.contact_form_btn {
    width: 320px;
    margin: 80px auto 20px auto;
}
.contact_form_btn input{
    width: 100%;
    height: 70px;
    font-size: 16px;
    color: #ffffff;
    background-color: #cacaca;
    text-align: center;
    border: none;
    transition: all .3s;
}
.contact_form_btn input:hover{
    background-color: #118b3c;
    color: #efefef;
}
.contact_form_note p{
    font-size: 14px;
    margin: 0;
    text-align: center;
}
.contact_recaptcha {
    margin: 80px auto 20px auto;
    padding: 0;
    font-size: 11px;
    text-align: center;
}
.contact_recaptcha a{
    text-decoration: underline;
}
@media screen and (max-width: 1720px) {
    .contact_mae {
        padding: 4.65vw 0 0 0;
    }
    .contact_mae_txt {
        font-size: 14px;
        margin: 3.48vw auto 2.9vw auto;
    }

    .contact_sec {
        width: 70vw;
        max-width: 1080px;
        margin: 1.16vw auto;
        padding: 4.65vw;
    }
    .contact_tel {
        gap: 0.87vw;
        font-size: 1.33vw;
    }
    .contact_tel_line {
        width: 8.1vw;
    }

    .contact_form {
        margin: 4.65vw auto 2.32vw auto;
    }
    .contact_form dl {
        width: 30vw;
        max-width: 430px;
    }
    .contact_form dl dd {
        margin: 0.58vw 0;
    }
    .contact_form dl dd p{
        margin: 0;
    }
    .contact_form dl dd input{
        width: 27vw;
        max-width: 410px;
        font-size: 14px;
    }
    .contact_form dl dd textarea{
        width: 100%;
        height: 6.4vw;
    }
    .contact_form dl.txt dd{
        height: 6.4vw;
    }

    .contact_form_btn {
        width: 18.6vw;
        margin: 4.65vw auto 1.16vw auto;
    }
    .contact_form_btn input{
        height: 4vw;
    }
    .contact_recaptcha {
        margin: 4.65vw auto 1.16vw auto;
    }
}
@media screen and (max-width: 768px) {
    .contact_mae {
        padding: 4rem 0 0 0;
    }
    .contact_mae_txt {
        margin: 6rem auto 5rem auto;
    }

    .contact_sec {
        width: 90%;
        margin: 2rem auto;
        padding: 8rem 4rem;
    }
    .contact_tel {
        flex-direction: column;
        align-items: center;
        gap: 0;
        font-size: 18px;
    }
    .contact_tel_line {
        width: 0;
    }

    .contact_form {
        margin: 8rem auto 4rem auto;
    }
    .contact_form dl {
        width: 100%;
        max-width: none;
    }
    .contact_form dl dd input{
        width: 95%;
    }
    .contact_form dl dd textarea{
        height: 110px;
    }
    .contact_form dl.txt dd{
        height: 110px;
    }

    .contact_form_btn {
        width: 100%;
        margin: 8rem auto 2rem auto;
    }
    .contact_form_btn input{
        height: 70px;
    }
    .contact_form_note p{
        font-size: 12px;
        letter-spacing: 0;
    }
    .contact_recaptcha {
        font-size: 9px;
        margin: 8rem auto 2rem auto;
    }
}



/* プライバシーポリシー */
.privacy_policy_txt {
    width: 90%;
    max-width: 900px;
    margin: 80px auto 160px auto;
    line-height: 28px;
}
.privacy_policy_mae {
    font-size: 15px;
    margin-bottom: 60px;
}
.privacy_policy_h {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.privacy_policy_note {
    font-size: 15px;
    padding-left: 10px;
    margin-bottom: 60px;
}
.privacy_policy_note a{
    text-decoration: underline;
}



/* 
 * 404
 */
.error_404 {
    margin: 80px auto 140px auto;
    text-align: center;
}
.error_404_title {
    font-size: 36px;
    margin-bottom: 60px;
}
.error_404_txt {
    font-size: 17px;
    margin-bottom: 80px;
}
.error_404_link {
    position: relative;
    width: 360px;
    height: 60px;
    background-color: #118b3c;
    color: #efefef;
    margin: 60px auto;
    transition: all .3s;
}
.error_404_link a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.error_404_link p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    letter-spacing: 1.5px;
    margin: 0;
}
.error_404_link:hover{
    background-color: #ffffff;
    color: #118b3c;
    font-weight: 700;
    border: solid #118b3c 1.5px;
}
@media(max-width: 768px){
    .error_404 {
        width: 90%;
    }
    .error_404_title {
        font-size: 26px;
    }
    .error_404_txt {
        font-size: 16px;
    }
    .error_404_link {
        width: 100%;
        max-width: 360px;
        margin: 8rem auto 1rem auto;
    }
}



/* 
 * footer
 */
footer{
    width: 100vw;
    background-image: url(./img/top_mainback.webp);
    background-size: 1000px;
    background-position: top center;
    background-repeat: round;
    padding: 80px 0 40px 0;
    color: #118b3c;
}
.footer_link_sec {
    width: 1440px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer_logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    width: 550px;
}
.footer_logo_br {
    display: none;
}
.footer_logo_img img {
    width: 130px;
}
.footer_logo_add_company {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
}
.footer_logo_add p{
    font-size: 16px;
    font-weight: 500;
    margin: 5px 0;
}
.footer_logo_add p a{
    color: #118b3c;
}

.footer_link {
    display: grid;
    grid-template-columns: repeat(2,minmax(260px,1fr));
    gap: 80px 40px;
}
.footer_link_gr {
    position:relative;
    padding-left:16px;
    overflow: visible;
}
.footer_link_gr::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #118b3c;
}
.footer_link_title{
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 12px;
  color: #118b3c;
  position: absolute;
  left: -100px;
}
.footer_links{ 
    list-style: none; 
    margin: 0; 
    padding: 0;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer_links li{
    padding: 5px 0;
}
.footer_links li a{
    font-size: 16px;
    color: #118b3c;
}

.footer_bottom {
    width: 1440px;
    margin: 100px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer_copy {
    position: relative;
    width: 100%;
    height: 160px;
    margin: 0 auto;
}
.footer_copy_parts {
    position: absolute;
    color: #118b3c;
    font-style: oblique;
}
.footer_copy_parts01 {
    top: 0;
    left: 0;
    font-size: 66px;
    font-weight: 700;
}
.footer_copy_parts02 {
    top: 80px;
    left: 200px;
    font-size: 66px;
    font-weight: 700;
}
.footer_copy_parts03 {
    bottom: 0;
    left: 0;
    font-size: 23px;
    font-weight: 700;
}
.footer_cta_sns {
    display: flex;
    gap: 40px;
    margin: 32px 10px;
}
.footer_cta_sns_icon {
    position: relative;
}
.footer_cta_sns_icon img{
    width: 41px;
}
.footer_cta_sns_icon a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.footer_cta_contact {
    position: relative;
    width: 250px;
    height: 50px;
    border-radius: 5px;
    background-color: #118b3c;
    transition-duration: .2s;
}
.footer_cta_contact a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.footer_cta_contact p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    margin: 0;
    color: #efefef;
    width: 100%;
    text-align: center;
}
.footer_cta_contact:hover{
    background-color: #ffffff;
    border: solid #118b3c 1px;
}
.footer_cta_contact:hover p{
    color: #118b3c;
}

.policy_copyright {
    width: 1440px;
    margin: 60px auto 0 auto;
    font-size: 12px;
    font-weight: 600;
}
.policy a {
    color: #118b3c;
}

@media(max-width: 1720px){
    footer{
        padding: 4.6vw 0 2.3vw 0;
    }
    .footer_link_sec {
        width: 90%;
        max-width: 1440px;
        margin: 2.3vw auto;
    }
    .footer_logo {
        gap: 2.9vw;
        width: 38vw;
    }
    .footer_logo_add {
        width: 28vw;
    }
    .footer_logo_img img {
        width: 7.55vw;
    }
    .footer_logo_add_company {
        font-size: clamp(12px, 1.2vw, 21px);
        margin-bottom: 0.58vw;
    }
    .footer_logo_add p{
        font-size: clamp(10px, 1vw, 16px);
        margin: 0.3vw 0;
    }

    .footer_link {
        grid-template-columns: repeat(2,minmax(15vw,1fr));
        gap: 4.65vw 2.3vw;
    }
    .footer_link_gr {
        padding-left: 0.9vw;
    }
    .footer_link_title{
      font-size: clamp(10px, 1vw, 18px);
      margin: 0 0 0.7vw;
      left: -7vw;
    }
    .footer_links{ 
        height: auto;
    }
    .footer_links li a{
        font-size: clamp(10px, 1vw, 16px);
    }

    .footer_bottom {
        width: 90%;
        max-width: 1440px;
        margin: 5.8vw auto 0 auto;
    }
    .footer_copy {
        height: 9.3vw;
    }
    .footer_copy_parts01 {
        font-size: 3.8vw;
    }
    .footer_copy_parts02 {
        top: 4.65vw;
        left: 11.6vw;
        font-size: 3.8vw;
    }
    .footer_copy_parts03 {
        font-size: 1.3vw;
    }
    .footer_cta_sns {
        gap: 2.3vw;
        margin: 1.86vw 0.58vw;
    }
    .footer_cta_sns_icon img{
        width: 2.38vw;
    }
    .footer_cta_contact {
        width: 18vw;
        height: 3.2vw;
    }
    .footer_cta_contact p{
        font-size: clamp(10px, 0.87vw, 15px);
    }

    .policy_copyright {
        width: 90%;
        max-width: 1440px;
        margin: 3.48vw auto 0 auto;
        font-size: clamp(9px, 0.7vw, 12px);
    }
}
@media(max-width: 900px){
    .footer_logo {
        width: 34vw;
    }
    .footer_logo_add {
        width: 24vw;
    }
    .footer_logo_br {
        display: block;
    }
}
@media (max-width: 768px){
    footer{
        padding: 8rem 0 4rem 0;
    }
    .footer_link_sec {
        margin: 2rem auto;
        flex-direction: column;
        gap: 14rem;
    }
    .footer_logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 5rem;
        width: 100%;
    }
    .footer_logo_img img {
        width: 30rem;
        max-width: 100px;
    }
    .footer_logo_add {
        width: 95%;
        margin: 0 auto;
    }
    .footer_logo_add_company {
        font-size: 21px;
        margin-bottom: 10px;
    }
    .footer_logo_add p{
        font-size: 16px;
        margin: 5px 0;
    }

    .footer_link {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-left: 10px;
    }
    .footer_link_gr {
        padding-left:16px;
    }
    .footer_link_gr::before {
        left: 8px;
        top: 45px;
    }
    .footer_link_title{
      font-size: 18px;
      margin: 0 0 20px 0;
      position: absolute;
      left: 0;
    }
    .footer_links{ 
        height: 240px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 50px 0 10px 15px;
    }
    .footer_links li{
        padding: 0;
    }
    .footer_link_gr_no::before {
        top: 0;
    }
    .footer_link_gr_no .footer_links {
        height: 170px;
        padding: 10px 0 10px 15px;
    }
    .footer_links li a{
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .footer_bottom {
        flex-direction: column-reverse;
        gap: 20px;
        margin: 40px auto;
    }
    .footer_copy {
        height: 18rem;
    }
    .footer_copy_parts01 {
        font-size: 6.5rem;
    }
    .footer_copy_parts02 {
        top: 8rem;
        left: 22rem;
        font-size: 6.5rem;
    }
    .footer_copy_parts03 {
        bottom: 2.4rem;
        font-size: 2.4rem;
    }
    .footer_cta_sns {
        gap: 40px;
        margin: 32px 10px;
    }
    .footer_cta_sns_icon img{
        width: 41px;
    }
    .footer_cta_contact {
        width: 250px;
        height: 50px;
        border-radius: 5px;
    }
    .footer_cta_contact p{
        font-size: 15px;
    }

    .policy_copyright {
        font-size: 10px;
    }
}
@media (max-width: 500px){
    .footer_copy {
        height: 19.5rem;
    }
    .footer_copy_parts01 {
        font-size: 6.8rem;
    }
    .footer_copy_parts02 {
        top: 9rem;
        left: 20rem;
        font-size: 6.8rem;
    }
    .footer_copy_parts03 {
        bottom: 2.4rem;
    }
}



/* 
 * アニメーション
 */
/* フェードイン */
.fadein {
	opacity: 0;
	transform: translateY(40px);
	transition-property: transform, opacity;
	transition-duration: 1s;
	transition-delay: 0s;
}
.fadein.is-active {
	opacity: 1;
	transform: translateY(0);
}


/* ズームしながらフェードイン */
.zoomfadein {
  opacity: 0;
  transform: translateY(100px) scale(0.6);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
  will-change: opacity, transform;
}
.zoomfadein.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}



/* 左から文字 */
.reveal_x {
    opacity: 0;
    transform: translateX(-80px);
    transition:
      opacity 1s ease,
      transform 1s ease;
    transition-delay: 0.3s;
}
.reveal_x.is-in {
    opacity: 1;
    transform: translateX(0);
}
.reveal_x_delay {
    transition-delay: 0.8s;
}


/* 帯から出てくる */
.curtain {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: transparent;
    clip-path: polygon(8% 0, 100% 0%, 92% 100%, 0 100%);
}
.curtain::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #118b3c;
    clip-path: polygon(8% 0, 100% 0%, 92% 100%, 0 100%);
    transform: translateX(-110%);
}
@keyframes titleWipe {
  0% {
    transform: translateX(-110%);
  }
  45% {
    transform: translateX(0);
  }
  100% {
      transform: translateX(110%);
  }
}
.curtain.is-active {
    color: #118b3c;
    transition: color 0s linear .45s;
}
.curtain.is-active::before {
    animation: titleWipe .9s ease-in-out forwards;
}
.curtain_01.is-active::before {
    animation-delay: 0s;
}
.curtain_02.is-active::before {
    animation-delay: .35s;
}
.curtain_02.is-active {
    transition-delay: .8s;
}


/* 帯から出てくる 事業ページ用 */
.curtain_business {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: transparent;
}
.curtain_business::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #efefef;
    transform: translateX(-110%);
}
@keyframes titleWipe_business {
  0% {
    transform: translateX(-110%);
  }
  45% {
    transform: translateX(0);
  }
  100% {
      transform: translateX(110%);
  }
}
.curtain_business.is-active {
    color: #efefef;
    transition: color 0s linear .45s;
}
.curtain_business.is-active::before {
    animation: titleWipe_business .9s ease-in-out forwards;
}
