/*　全てのページに適用される設定*/
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Noto+Serif+JP:wght@200..900&display=swap');

html {
    font-size: 16px;
    font-family: "EB Garamond" ,"Noto Serif JP",serif ;
}
* {
    box-sizing: border-box;
}
body{
    margin: 0 0 0 0;
    background-color: #ffffff;
}
p, li, td {
    line-height: 1.5;
}
a:link {
    color: #000;
    text-decoration: none;
}
a:visited {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: #000;
}
a:active {
    text-decoration: none;
    color: #000;
}
img {
    max-width: 100%;
}
@media screen and (max-width: 930px) {
    html {
        font-size: 15px;
    }
    p, li, td {
        line-height: 1.4;
    }
}
@media screen and (max-width: 600px) {
    p, li, td {
        line-height: 1.3;
    }
}
/*　全てのページに適用　ー　ヘッダー　*/

.nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1;
}
.logo-white {
    position: absolute;
    top: 0;
    left: 0;
    padding: 32px 0 0 18px;
    z-index: 9999;
}
.logo-white img {
    width: 192px;
    height: 64px;
}
.logo {
    position: absolute;
    top: 0;
    left: 0;
    padding: 32px 0 0 18px;
    display: none;
    z-index: 9999;
}
.logo img {
    width: 192px;
    height: 64px;
}
.nav a:link {
    color: #fff;
}   
.nav a:visited {
    color: #fff;
}
.nav a:hover {
    color: #fff;
}
.nav a:active {
    color: #fff;
}
.gnavi{
    margin: 0;
    padding: 0;
    list-style-type: none;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: right;
}
.nav li {
    line-height: 112px;
    padding: 0 21px;
}
.gnavi li:nth-child(6){
    background: linear-gradient(180deg, rgb(80,109,47,0.8), rgb(80,109,47,0.3));
    width: 200px;
    }
.hover {
	display: inline-block;
	position: relative;
	text-decoration: none;
}
.hover::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #ffffff;
	transition: all 0.4s ease 0s;
}
.hover:hover {
	cursor: pointer;
}
.hover:hover::after {
	width: 100%;
}
@media screen and (max-width: 930px) {
    .gnavi {
        height: 113px;
    }
    .gnavi li {
        display: none;
    }
}

/*　グローバルナビスクロール後　*/

.nav.js-nav {
    background-color:rgba(255, 255, 255, 0.9);
}
.nav.js-nav .logo-white {
    display: none;
}
.nav.js-nav .logo {
    display: block;
}
.nav.js-nav .logo.active {
    display: none;
}
.nav.js-nav .logo-white.active {
    display: block;
}
.nav.js-nav .logo-white.active img {
    width: 153px;
    height: 49px;
}
.nav.js-nav ul {
    border-bottom: 1px solid #f4f4f4;
}
.nav.js-nav li {
    line-height: 102px;
}
.nav.js-nav a {
    color: #000000;
}
.nav.js-nav li:nth-child(6) {
    color: #ffffff;
}
.nav.js-nav .invert{
    color: #ffffff;
}
.nav.js-nav .hover::after {
	background-color: #506D2F;
    height: 3px;
}
@media screen and (max-width: 930px) {
    .nav.js-nav .gnavi {
        height: 103px;
    }
    .nav.js-nav .hamburger {
        top: 24px;
        right: 24px;
    }
    .nav.js-nav .hamburger span {
    background-color: #506D2F;
    }
    .nav.js-nav .hamburger.active span {
        background-color: #fff;
        }
    .nav.js-nav a {
        color: #fff;
    }
    .nav.js-nav .sp-menu nav ul {
        display: flex;
        list-style-type: none;
        border-bottom: none;
    }
    .nav.js-nav .sp-menu nav ul li {
        line-height: 45px;
    }
}

/* ハンバーガーメニュー */

.header__hamburger {
    width: 60px;
    height: 60px;
    cursor: pointer;
}
.hamburger {
background-color: transparent;
border-color: transparent;
z-index: 9999;
display: none;
}

@media screen and (max-width: 930px) {
    .hamburger {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
    }
}

/* ハンバーガーメニューの線 */
.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: ease .4s;
    display: block;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    margin: 8px 0;
}
.hamburger span:nth-child(3) {
    top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
    transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;

}
.hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
}

/*SPメニュー*/
    .sp-menu {
        color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100vw;
        height: 100vh;
        background-color: #506D2F;
        position: fixed;
        top: 0;
        left: 0;
        z-index:1;
        display: none;
    }
@media screen and (max-width: 930px) {
    .sp-menu.active {
        display: flex;
    }
    .sp-menu p {
        text-align: center;
        width: 100%;
        font-size: 20px;
        line-height: 45px;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid #fff;
    }
}

@media screen and (max-width: 600px) {
    .sp-menu p {
        font-size: 18px;
        line-height: 40px;
    }
    .sp-menu nav {
        margin: 8px;
        padding: 0 ;
    }
    .sp-menu nav ul {
        padding: 0 14px;
    }
    .sp-menu nav ul li {
        line-height: 30px;
        padding: 0 5px;
        font-size: 15px;
    }
}

/*　全てのページに適用　ー　パンくずリスト　*/
.breadcrumb-trail a {
    transition: all 0.3s ease 0s;
}
.breadcrumb-trail {
    padding-left: 64px;
    color: #000000;
}
.breadcrumb-trail  a:link {
    color: #000000;
}   
.breadcrumb-trail a:visited {
    color: #000000;
}
.breadcrumb-trail a:hover {
    color: #000000;
    opacity: 0.5;
}
.breadcrumb-trail a:active {
    color: #000000;
}

@media screen and (max-width: 600px) {
    .breadcrumb-trail {
        padding-left: 20px;
    }
}

/*　全てのページに適用　ー　ヒーロー　*/
.hero {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
}
.hero.index {
    height: 928px;
    background-image: url(../images/topslide1.jpg);
}
.hero.index h1 {
    font-size: 128px;
    margin-block: 0 0;
}

@media screen and (max-width: 930px) {
    .hero.index {
        height: 666px;
    }
    .hero.index h1 {
        font-size: 70px;
    }
}

@media screen and (max-width: 600px) {
    .hero.index {
        background-image: url(../images/topslide1-sp.jpg);
    }
    .hero.index h1 {
        font-size: 60px;
    }
}

/*　全てのページに適用　ー　メイン　*/
main {
    margin: 100px auto;
}
main h2{
    text-align: center;
    color:#000000;
    font-size:40px;
    margin-block-start: 0;
    margin-block-end: 0;
}
@media screen and (max-width: 930px) {
    main {
        margin: 80px auto;
    }
    main h2{
        font-size: 32px;
    }
}

@media screen and (max-width: 600px) {
    main {
        margin: 40 auto;
    }
    main h2{
        font-size:24px;
    }
}

/*　全てのページに適用　ー　フッター　*/

.contact {
    display:  flex;
    color: #ffffff;
    height: 650px;
}
.contact .left {
    width: 50%;
    background-color: #265C00;             
    height: 650px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .right {
    width: 50%;
    height: 650px;
    background-image: url(../images/contact_background.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease 0s;
}
.contact .right .centering {
    width: 70%;
    border: 1px solid #ffffff;
    padding: 115px 0;
}
.contact a {
    transition: all 0.3s ease 0s;
}
.contact a:link {
    color: #fff;
}   
.contact a:visited {
    color: #fff;
}
.contact a:hover {
    color: #265C00;
    background-color: #A6A49F;
}
.contact a:active {
    color: #265C00;
}
.white-border {
    height: 3px;
    width: 100px;
    background-color: #ffffff;
    position: absolute;
    margin-top: 325px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.footer .sitemap {
    display: flex;
    height: 285px;
}
.footer .left {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;     
}
.footer .border_b {
    border-bottom: 1px solid #000;
}
.footer ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
}
.footer li {
    line-height: 2.5;
    padding: 0 8px;
}
.footer .right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;           
}
.footer .copyright {
    color: #fff;
    background-color: #524A3A;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;   
}
.footer a:hover {
    color: #265C00;
}
.footer a:active {
    color: #265C00;
}

@media screen and (max-width: 930px) {
    .contact {
        height: 455px;
    }
    .contact .right {
        height: 455px;
    }
    .contact .right .centering {
        width: 80%;
        padding: 90px 0;
    }
    .contact .left {
        height: 455px;
    }
    .white-border {
        height: 2px;
        width: 60px;
        margin-top: 227.5px;
    }
    
    .footer .sitemap {
        height: 250px;
    }
    .footer li {
        padding: 0 4px;
    }
    .footer .copyright {
        height: 80px;
    }
}

@media screen and (max-width: 600px) {
    .contact {
        height: 210px;
    }
    .contact .right {
        height: 210px;
        background-image: url(../images/contact_background-sp.jpg);
    }
    .contact .right .centering {
        width: 100%;
        border: none;
        padding:0;
    }
    .contact .left {
        height: 210px;
    }
    .contact .l-height8 {
        line-height: 4;
    }
    .contact .f-size64 {
        font-size: 30px;
    }
    .contact .f-size32 {
        font-size: 18px;
    }
    .contact .f-size24 {
        font-size: 15px;
    }
    .white-border {
        height: 1px;
        width: 30px;
        margin-top: 105px;
    }
    .footer .sitemap {
        height: 200px;
    }
    .footer .left {
        width: 100%;
    }
    .footer li {
        line-height: 2;
        font-size: 14px;
    }
    .footer .right {
        display: none;
    }
    .footer .copyright {
        height: 60px;
    }
}

/*　個別のスタイル　*/

/*　index.html　*/
.slide {
    position: relative;
    width: 100%;
    height: 928px;
    overflow: hidden;
}
.slide-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slider-1 32s linear infinite;

    &:nth-child(1) {
        background-image: url(../images/topslide1.jpg);
        animation-delay: -2s;
    }
    
    &:nth-child(2) {
        background-image: url(../images/topslide2.jpg);
        animation-delay: 6s;
    }
    
    &:nth-child(3) {
        background-image: url(../images/topslide3.jpg);
        animation-delay: 14s;
    }
    &:nth-child(4) {
        background-image: url(../images/topslide4.jpg);
        animation-delay: 22s;
    }
}

@keyframes slider-1 {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    2% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    27% {
        opacity: 0;
        transform: scale(1.2);
    }
    100% {
    opacity: 0;
    }
}

.fv {
    position: relative;
}
.fv-copy {
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 300px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    animation-name: fade;
    animation-duration: 4s;
    }

    @keyframes fade{
        0%{
            opacity: 0;
        }
        100%{
            opacity: 1;
        }
    }

.fv-banner {
    position: absolute;
    display: flex;
    bottom:0;
    left: 0;
    width: 100%;
    height: 250px;
}
.fv-banner .left {
    width: 50%;
    height: 250px;
    background: linear-gradient(180deg, rgb(80,109,47,0), rgb(80,109,47,1));
    padding-top: 80px;
}
.fv-banner .right {
    width: 50%;
    height: 250px;
    background: linear-gradient(180deg, rgb(82,74,58,0), rgb(82,74,58,1));
    padding-top: 80px;
}
.fv-banner a {
    display: inline-block;
    transition: all .7s ease 0s;
}
.fv-banner a:link {
    color: #fff;
    text-decoration: none;
}
.fv-banner a:visited {
    color: #fff;
    text-decoration: none;
}
.fv-banner a:hover {
    text-decoration: none;
    color: #ffffff;
    transform: scale(1.1);
    opacity: 0.9;
}
.fv-banner a:active {
    text-decoration: none;
    color: #fafafa;
}

@media screen and (max-width: 930px) {
    .slide {
        height: 666px;
    }
    .fv-copy {
        top: 290px;
    }
    .fv-banner {
        height: 220px;
    }
    .fv-banner .left {
        height: 220px;
        padding-top: 80px;
    }
    .fv-banner .right {
        height: 220px;
        padding-top: 80px;
    }
}

@media screen and (max-width: 600px) {

    .slide-image {
        &:nth-child(1) {
            background-image: url(../images/topslide1-sp.jpg);
            animation-delay: -2s;
        }
        &:nth-child(2) {
            background-image: url(../images/topslide2-sp.jpg);
            animation-delay: 6s;
        }
        
        &:nth-child(3) {
            background-image: url(../images/topslide3-sp.jpg);
            animation-delay: 14s;
        }
        &:nth-child(4) {
            background-image: url(../images/topslide4-sp.jpg);
            animation-delay: 22s;
        }
    }
    .fv-copy {
        top: 280px;
    }
    .fv-banner {
        height: 200px;
    }
    .fv-banner .left {
        height: 200px;
        padding-top: 80px;
    }
    .fv-banner .right {
        height: 200px;
        padding-top: 80px;
    }
    .fv-banner p {
        font-size: 14px;
    }
    .fv-banner .f-size24 {
        font-size: 15px;
    }
}

/* お知らせ（TOP） */

.news-top {
    margin: 100px 0;
}
.news-top .title {
    display:flex;
    justify-content: left;
    align-items: center;
    padding: 0 0 0 7%;
}
.news-top .frame {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 85%;
    margin: 0;
    padding:50px 0 0 0;
    max-width: 1200px;
}
.news-top .news-top-ul{
    list-style-type: none;
    padding-inline-start: 0;
}
.news-top li{
    line-height: 3;
    border-bottom: 1px solid #d9d9d9;
}
.news-top .news-top-li a:hover {
    opacity: 0.6;
}
.news-top .news-top-date{
    display: inline-block;
    text-align: left;
}
.news-top .news-top-title{
    display: inline-block;
}

.detail {
    display: inline-block;
    transition: all .3s ease 0s;
    font-size: 20px;
    padding-top: 32px;
}
.detail:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

@media screen and (max-width: 930px) {
    .detail {
        font-size: 18px;
    }
}

@media screen and (max-width: 600px) {
    .detail {
        font-size: 16px;
    }
}

/* 経営方針（TOP） */

.management-top {
    background-color: #fafafa;
    padding: 100px 0;
}
.management-top img {
    width: 100%;
}
.management-top h3 {
    font-size: 40px;
    color: #000000;
    font-family:"Noto Serif JP",serif ;
}
.management-top .underline {
    text-underline-offset: 10px;
}
.management1 {
    position: relative;
    margin: 100px 0 250px 0;
}
.management1-txt {
    width: 50%;
    background-color: #ffffff;
    padding: 0 5% 64px 5%;
    position: absolute;
    right: 0;
    bottom: -150px;
}
.management2 {
    position: relative;
    margin: 100px 0 250px 0;
}
.management2-txt {
    width: 50%;
    background-color: #ffffff;
    padding: 0 5% 64px 5%;
    position: absolute;
    left: 0;
    bottom: -150px;
}
.management3 {
    position: relative;
    margin: 100px 0 250px 0;
}
.management3-txt {
    width: 50%;
    background-color: #ffffff;
    padding: 0 5% 64px 5%;
    position: absolute;
    right: 0;
    bottom: -150px;
}

@media screen and (max-width: 930px) {
    .management-top h3 {
        font-size: 32px;
    }
    .management1-txt {
        width: 70%;
        padding: 0 4% 45px 4%;
    }
    .management2-txt {
        width: 70%;
        padding: 0 4% 45px 4%;
    }
    .management3-txt {
        width: 70%;
        padding: 0 4% 45px 4%;
    }
}

@media screen and (max-width: 600px) {
    .management-top h3 {
        font-size: 28px;
        margin-block-start: 0;
        margin-block-end: 0;
    }
    .management-top .underline {
        text-underline-offset: 7px;
    }
    .management-top .f-size24 {
        font-size: 16px;
    }
    .management-top p {
        font-size: 14px;
        margin-block-start: 7px;
        margin-block-end: 7px;
    }
    .management1-txt {
        width: 80%;
        padding: 0 2% 0 2%;
    }
    .management2-txt {
        width: 80%;
        padding: 0 2% 0 2%;
    }
    .management3-txt {
        width: 80%;
        padding: 0 2% 0 2%;
    }
    .management1 {
        margin: 50px 0 175px 0;
    }
    .management2 {
        margin: 100px 0 175px 0;
    }
    .management3 {
        margin: 100px 0 175px 0;
    }
    .management1-txt {
        bottom: -100px;
    }
    .management2-txt {
        bottom: -100px;
    }
    .management3-txt {
        bottom: -100px;
    }
}

/* 事業紹介（TOP） */

.business-top {
    height: 1000px;
}
.business-top h2 {
    color: #ffffff;
    margin-top: 25px;
}
.business-top h3 {
    font-size: 18px;
    font-weight: bold;
}
.business-top  .bc-img{
    height: 480px;
    width: 100%;
}
.business-top .frame {
    position: relative;
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 85%;
    margin: 0;
    padding:50px 0;
    text-align: center;
    max-width: 1200px;
}
.business-top .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin: 145px 0 50px 0;
}
.business-top .container p{
    text-align: left;
}

@media screen and (max-width: 930px) {
    .business-top {
        height: 1182px;
    }
    .business-top  .bc-img{
        height: 336px;
        width: 100%;
    }
    .business-top .frame {
        top: -250px;
        width: 90%;
        padding:35px 0;
    }
    .business-top .container {
        display: block;
        margin: 145px 0 50px 0;
    }
    .business-top .container div {
        display: flex;
        flex-direction: row-reverse;
    }
    .business-top .container .pic{
        width: 50%;
    }
    .business-top .container .text {
        width: 50%;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .business-top {
        height: 1600px;
    }
    .business-top  .bc-img{
        height: 269px;
    }
    .business-top .frame {
        top: -240px;
    }
    .business-top .container div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }
    .business-top .container .pic{
        width: 80%;
    }
    .business-top .container .text {
        width: 80%;
    }
}
@media screen and (max-width: 562px) {
    .business-top {
        height: 1666px;
    }
}

/* 採用情報（TOP） */

.recruit-top{
    background-color: #fafafa;
    height: 1660px;
    position: relative;
}
.recruit-top .right_green {
    position: absolute;
    top: 130px;
    right: 0;
    width: 38%;
    height: 1400px;
    background-color: #506D2F;
}
.recruit-top .title {
    display:flex;
    justify-content: left;
    align-items: center;
    padding: 0 0 0 7%;
    height: 130px;
}
.recruit-top .title-p {
    height: 100px;
    width: 50%;
    margin-block-start: 0;
    margin-block-end: 0;
}
.recruit-top h3 {
    font-size: 20px;
    text-align: left;
    margin-block-start: 0;
}
.recruit-top .recruit-top_inner{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 1512px;
    padding: 0 5%;
}
.recruit-top .staff {
    display: flex;
    height: 360px;
    background-color: #ffffff;
    margin-top: 30px;
}
.recruit-top .text {
    width: 55%;
    padding: 3%;
}
.recruit-top .text .text-area {
    padding: 3%;
}
.recruit-top .pic {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1%;
}

@media screen and (max-width: 930px) {
    .recruit-top{
        height: 1480px;
    }
    .recruit-top .right_green {
        height: 1220px;
    }
    .recruit-top .staff {
        height: 300px;
    }
}

@media screen and (max-width: 600px) {
    .recruit-top{
        height: 2110px;
    }
    .recruit-top .right_green {
        top: 100px;
        width: 25%;
        height: 1910px;
    }
    .recruit-top .title {
        height: 100px;
    }
    .recruit-top .title-p {
        height: 70px;
        width: 70%;
    }
    .recruit-top .recruit-top_inner{
        padding:0 16px;
    }
    .recruit-top .staff {
        flex-direction: column;
        height: 550px;
        padding: 24px 0;
    }
    .recruit-top .staff .sales1 {
        order: 1;
    }
    .recruit-top .staff .sales2 {
        order: 2;
    }
    .recruit-top .pic {
        width: 100%;
        padding: 1% 8%;
    }
    .recruit-top .text {
        width: 100%;
    }
}

@media screen and (max-width: 450px) {
    .recruit-top{
        height: 1960px;
    }
    .recruit-top .right_green {
        height: 1760px;
    }
    .recruit-top .staff {
        height: 500px;
    }
}

/* アクセス（TOP） */

.access-top {
    padding-top: 100px;
}
.access-top .title{
    display:flex;
    justify-content: left;
    padding: 0 0 0 7%;
}
.access-top .right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 75px 5% 0 5%;
}
.access-top .left {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 75px 5% 0 5%;
}

@media screen and (max-width: 930px) {
    .access-top .flex {
        display: block;
    }
    .access-top {
        padding-top: 80px;
    }
    .access-top .right {
        width: 100%;
        padding: 50px 5% 0 5%;
    }
    .access-top .left {
        width: 100%;
        padding: 50px 5% 0 5%;
    }
}

@media screen and (max-width: 600px) {
    .access-top .title{
        justify-content: center;
    }
}



/* 経営方針（management) */

.hero.management {
    height: 675px;
    background-image: url(../images/management-hero.jpg);
}
.management .hero-title {
    padding: 380px 0 0 130px;
}
.management .hero-title h1 {
    font-size: 64px;
    margin-block: 0 0;
    text-align: left;
}
.management main {
    margin: 0;
}
.management .frame {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 88%;
    margin: 0;
    padding:100px 0;
    text-align: center;
    max-width: 1100px;
}
.management .title {
    display:flex;
    justify-content: left;
    align-items: center;
    
}
.management .copy {
    font-size: 20px;
    font-weight: bold;
    padding-top: 16px;
}
.management .greeting .wrap{
    display: flex;
}
.management .greeting .wrap .text {
    width: 73%;
    text-align: left;
}
.management .greeting .wrap .spacer {
    width: 3%;
}
.management .greeting .wrap .text .water {
    padding-left: 48px;
}
.management .greeting .wrap .pic {
    width: 24%;
    display: flex;
    align-items: end;
    justify-content: center;
}
.management .philosophy {
    width: 100%;
    height: 600px;
    background-image: url(../images/philosophy.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    
}
.management .philosophy h2 {
    font-size: 40px;
    color: #fff;
    text-shadow:
    1px 1px 0 #999,
    -1px 1px 0 #999,
    -1px -1px 0 #999,
    1px -1px 0 #999;
    padding-top: 32px;
}
.management .philosophy p {
    font-size: 48px;
    color: #fff;
    text-shadow:
    1px 1px 0 #888,
    -1px 1px 0 #888,
    -1px -1px 0 #888,
    1px -1px 0 #888;
    padding-top: 32px;
}
.management .philosophy .white_border {
    border: 1px solid #aaa;
}
.management .policy p {
    text-align: left;
}
.management .sdgs {
    height: 1250px;
    background-color: #fafafa;
}
.management .sdgs .background {
    height: 700px;
    width: 100%;
}
.management .sdgs .frame {
    position: relative;
    top: -600px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-color:rgba(255, 255, 255, 0.7);
    width: 90%;
    margin: 0;
    padding:90px 10% 100px 10%;
    text-align: center;
    max-width: 1300px;
}
.management .sdgs h3 {
    font-size: 24px;
}
.management .sdgs .inner_frame {
    text-align: left;
}
.management .sdgs .wrap {
    display: flex;
}
.management .sdgs .wrap .text {
    width: 56%;
}
.management .sdgs .wrap .spacer {
    width: 5%;
}
.management .sdgs .wrap .pic {
    width: 39%;
    display: flex;
    align-items: end;
    justify-content: center;
}
.management .sdgs .wrap .pic .pic1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
.management .sdgs .wrap .pic .pic2 {
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 30px;
}

@media screen and (max-width: 1028px) {
    .management .sdgs {
        height: 1300px;
    }
}

@media screen and (max-width: 930px) {
    .management .frame {
        width: 92%;
        padding:75px 0;
    }
    .management .philosophy {
        height: 480px;
    }
    .management .philosophy h2 {
        font-size: 32px;
        padding-top: 32px;
    }
    .management .philosophy p {
        font-size: 32px;
        padding-top: 32px;
    }
    .management .sdgs {
        height: 1100px;
    }
    .management .sdgs .background {
        height: 560px;
    }
    .management .sdgs .frame {
        top: -475px;
        width: 90%;
        padding:80px 5% 90px 5%;
    }
    .management .sdgs h3 {
        font-size: 20px;
    }
    .management .copy {
        font-size: 18px;
    }
    .management .sdgs .copyleft {
        text-align: left;
    }
    .management .sdgs .del {
        display: none;
    }
}

@media screen and (max-width: 736px) {
    .management .sdgs {
        height: 1150px;
    }
}
@media screen and (max-width: 669px) {
    .management .sdgs {
        height: 1200px;
    }
}

@media screen and (max-width: 600px) {
    .hero.management {
        height: 473px;
        background-image: url(../images/management-hero-sp.jpg);
    }
    .management .hero-title {
        padding: 260px 0 0 0;
    }
    .management .hero-title h1 {
        font-size: 48px;
        text-align: center
    }
    .management .frame {
        padding:50px 0;
    }
    .management .title {
        justify-content: center;
    }
    .management .copy {
        font-size: 16px;
        padding-top: 8px;
    }
    .management .greeting .wrap{
        display: block;
    }
    .management .greeting .wrap .text {
        width: 100%;
    }
    .management .greeting .wrap .text .water {
        padding-left: 32px;
    }
    .management .greeting .wrap .spacer {
        height: 16px;
        width: 100%;
    }
    .management .greeting .wrap .pic {
        width: 100%;
    }
    .management .philosophy {
        height: 350px;
    }
    .management .philosophy h2 {
        font-size: 24px;
        padding-top: 32px;
        text-shadow:
        0.5px 0.5px 0 #999,
        -0.5px 0.5px 0 #999,
        -0.5px -0.5px 0 #999,
        0.5px -0.5px 0 #999;
    padding-top: 32px;
    }
    .management .philosophy p {
        font-size: 20px;
        padding-top: 32px;
        text-shadow:
        0.5px 0.5px 0 #888,
        -0.5px 0.5px 0 #888,
        -0.5px -0.5px 0 #888,
        0.5px -0.5px 0 #888;
    }
    .management .philosophy .white_border {
    border: 0.5px solid #aaa;
}
    .management .sdgs {
        height: 1180px;
    }
    .management .sdgs .background {
        height: 448px;
    }
    .management .sdgs .frame {
        top: -385px;
        padding:60px 8% 38px 8%;
    }
    .management .sdgs h3 {
        font-size: 18px;
    }
    .management .copy {
        font-size: 16px;
    }
    .management .sdgs .wrap {
        display: block;
    }
    .management .sdgs .wrap .text {
        width: 100%;
    }
    .management .sdgs .wrap .spacer {
        width: 100%;
        height: 16px;
    }
    .management .sdgs .wrap .pic {
        width: 100%;
        padding-bottom: 32px;
    }
}

@media screen and (max-width: 452px) {
    .management .sdgs {
        height: 1220px;
    }
}

@media screen and (max-width: 445px) {
    .management .sdgs {
        height: 1250px;
    }
}

@media screen and (max-width: 405px) {
    .management .sdgs {
        height: 1300px;
    }
}

@media screen and (max-width: 351px) {
    .management .sdgs {
        height: 1350px;
    }
}

@media screen and (max-width: 304px) {
    .management .sdgs {
        height: 1450px;
    }
}

/* 事業紹介（business) */

.hero.business {
    height: 675px;
    background-image: url(../images/business-hero.jpg);
}
.business .hero-title {
    padding: 380px 0 0 130px;
}
.business .hero-title h1 {
    font-size: 64px;
    margin-block: 0 0;
    text-align: left;
}
.business main {
    margin: 100px 0 25px 0;
}
.business .frame {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 80%;
    margin: 0;
    padding:0 0 100px 0;
    text-align: center;
    max-width: 1100px;
}
.business .title{
    display:flex;
    justify-content: left;
    margin-bottom: 50px;
}
.business .green_border {
    width: auto;
    height: 5px;
    background-color:#265C00 ;
    margin: 0 auto;
}
.business .business1 .flow {
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr;
    gap: 0;
    margin: 100px 0 50px 0;
}
.business .business1 .flow .flex {
    display: flex;
    align-items: center;
    justify-content: center;

}
.business .business1 .flow .flex img{
    width: 100px;
    height: 100px;
}
.business .business1 .iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.business .business1 .iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.business .container {
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 75px;
    margin:50px 0 0 0;
}

@media screen and (max-width: 930px) {
    .business main {
        margin: 90px 0 25px 0;
    }
    .business .frame {
        width: 85%;
        padding:0 0 75px 0;
    }
    .business .title{
        margin-bottom: 45px;
    }
    .business .green_border {
        height: 4px;
    }
    .business .business1 .flow .flex img{
        width: 50px;
        height: 50px;
    }
    .business .container {
        gap: 30px;
        margin:45px 0 0 0;
    }
}

@media screen and (max-width: 600px) {
    .hero.business {
        height: 473px;
        background-image: url(../images/business-hero-sp.jpg);
    }
    .business .hero-title {
        padding: 260px 0 0 0;
    }
    .business .hero-title h1 {
        font-size: 48px;
        text-align: center
    }
    .business .frame {
        padding:0 0 50px 0;
    }
    .business .title{
        justify-content: center;
        margin-bottom: 40px;
    }
    .business .green_border {
        height: 3px;
    }
    .business .business1 .flow {
        display: flex;
        flex-direction: column;
        margin: 30px 0 0 0;
    }
    .business .business1 .flow div{
        margin: 15px 15%;
    }
    .business .business1 .flow .business1-1{
        order: 1;
    }
    .business .business1 .flow .business1-2{
        order: 2;
    }
    .business .business1 .flow .business1-3{
        order: 3;
    }
    .business .business1 .flow .business1-4{
        order: 4;
    }
    .business .business1 .flow .business1-5{
        order: 5;
    }
    .business .business1 .flow .business1-6{
        order: 6;
    }
    .business .business1 .flow .flex {
        display: none;
    }
    .business .container {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin:45px 0 0 0;
    }
    .business .spacer_b-h24 {
        margin-top: 24px
    }
}

/* 会社概要（company) */

.hero.company {
    height: 675px;
    background-image: url(../images/company-hero.jpg);
}
.company .hero-title {
    padding: 380px 0 0 130px;
}
.company .hero-title h1 {
    font-size: 64px;
    margin-block: 0 0;
    text-align: left;
}
.company .spacer {
    height: 75px;
}
.company main {
    margin-top: 0;
}
.company .frame {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 88%;
    margin: 0;
    margin:100px 0;
    text-align: center;
}
.company .outline .frame {
    max-width: 1100px;
}
.company table {
    width: 100%;
    border-collapse: collapse;
}
.company tr{
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
}
.company table th {
    width: 40%;
    vertical-align: top;
    line-height: 1.5;
}
.company table td {
    width: 60%;
    vertical-align: top;
    text-align: left;
    line-height: 1.5;
}
.company .history  {
    background-color: #fafafa;
}
.company .history .frame {
    max-width: 1100px;
    padding: 100px 0;
}
.company .access-top  {
    padding-top: 0;
}
@media screen and (max-width: 930px) {
    .company .spacer {
        height: 50px;
    }
    .company .frame {
        width: 92%;
        margin:75px 0;
    }
    .company .history .frame {
        padding: 75px 0;
    }
    .company table th {
        width: 35%;
        line-height: 1.4;
    }
    .company table td {
        width: 65%;
        line-height: 1.4;
    }
}

@media screen and (max-width: 600px) {
    .hero.company {
        height: 473px;
        background-image: url(../images/company-hero-sp.jpg);
    }
    .company .hero-title {
        padding: 260px 0 0 0;
    }
    .company .hero-title h1 {
        font-size: 48px;
        text-align: center
    }
    .company table th {
        width: 30%;
        line-height: 1.3;
    }
    .company table td {
        width: 70%;
        line-height: 1.3;
    }
}

/* 採用情報（RECRUIT) */

.hero.recruit {
    height: 675px;
    background-image: url(../images/recruit-hero.jpg);
}
.recruit .hero-title {
    padding: 380px 0 0 130px;
}
.recruit .hero-title h1 {
    font-size: 64px;
    margin-block: 0 0;
    text-align: left;
}
.recruit .spacer {
    height: 75px;
}
.recruit main {
    margin-top: 0;
}
.recruit .frame {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 88%;
    margin: 0;
    padding:100px 0;
    text-align: center;
    max-width: 1100px;
}
.recruit table {
    width: 100%;
    border-collapse: collapse;
}
.recruit tr{
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
}
.recruit table th {
    width: 40%;
    vertical-align: top;
    line-height: 1.5;
}
.recruit table td {
    width: 60%;
    vertical-align: top;
    text-align: left;
    line-height: 1.5;
}
.recruit1 .e-copy {
    margin-top: 64px;
    padding: 0 10%;
    text-align: left;
}
.recruit1 .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 50px ;
    margin-top: 32px ;
    padding: 0 5%;
}
.recruit1 .green_border-r {
    width: auto;
    height: 1px;
    background-color:#265C00 ;
    margin: 16px;
}
.recruit1 .wrap p {
    text-align: left;
    margin-block-start: 1.5em;
    height: 145px;
}
.recruit2{
    background-color: #fafafa;
    height: 1465px;
    position: relative;
}
.recruit2 .right_green {
    position: absolute;
    top: 65px;
    right: 0;
    width: 38%;
    height: 1335px;
    background-color: #506D2F;
}
.recruit2 .title {
    display:flex;
    justify-content: left;
    align-items: center;
    padding: 0 0 0 7%;
    height: 130px;
}
.recruit2 .recruit2_inner{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 1512px;
    padding: 0 5%;
}
.recruit2 .staff {
    display: flex;
    height: 360px;
    background-color: #ffffff;
    margin-top: 30px;
}
.recruit2 .text {
    width: 55%;
    padding: 3%;
}
.recruit2 .text .text-area {
    padding: 3%;
}
.recruit2 .pic {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1%;
}
.recruit4 {
    background-color: #fafafa;
}
.recruit .recruit5 .frame {
    padding:100px 0 0 0;
}
.recruit5 .button{
    font-size: 24px;
    color: #fff;
    background-color: #265C00;
    padding: 24px 32px;
    margin-top: 50px;
}
.recruit5 .button:hover{
    opacity: 0.8;
}

@media screen and (max-width: 930px) {
    .recruit .spacer {
        height: 50px;
    }
    .recruit .frame {
        width: 95%;
        padding:75px 0;
    }
    .recruit table th {
        width: 35%;
        line-height: 1.4;
    }
    .recruit table td {
        width: 65%;
        line-height: 1.4;
    }
    .recruit .recruit1 h3 {
        font-size: 16px;
    }
    .recruit1 .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 35px ;
    margin-top: 32px ;
    padding: 0 2%;
    }
    .recruit1 .wrap p {
    margin-block-start: 1.5em;
    height: 130px;
}
    .recruit2{
        height: 1285px;
    }
    .recruit2 .right_green {
        height: 1155px;
    }
    .recruit2 .staff {
        height: 300px;
    }
}

@media screen and (max-width: 728px) {
    .recruit1 .wrap p {
    margin-block-start: 1.5em;
    height: 168px;
    }
}

@media screen and (max-width: 600px) {
    .hero.recruit {
        height: 473px;
        background-image: url(../images/recruit-hero-sp.jpg);
    }
    .recruit .hero-title {
        padding: 260px 0 0 0;
    }
    .recruit .hero-title h1 {
        font-size: 48px;
        text-align: center
    }
    .recruit .frame {
        padding:50px 0;
    }
    .recruit table th {
        width: 30%;
        line-height: 1.3;
    }
    .recruit table td {
        width: 70%;
        line-height: 1.3;
    }
    .recruit1 .e-copy {
        margin-top: 48px;
        padding: 0 5%;
    }
    .recruit1 .wrap {
        display: grid;
        grid-template-columns: 1fr  ;
        gap: 32px ;
        margin-top: 32px ;
    }
    .recruit1 .wrap p {
    margin-block-start: 1em;
    height: auto;
    }
    .recruit2{
        height: 1960px;
    }
    .recruit2 .right_green {
        top: 50px;
        width: 25%;
        height: 1860px;
    }
    .recruit2 .title {
        height: 100px;
    }
    .recruit2 .recruit-top_inner{
        padding:0 16px;
    }
    .recruit2 .staff {
        flex-direction: column;
        height: 550px;
        padding: 24px 0;
    }
    .recruit2 .staff .sales1 {
        order: 1;
    }
    .recruit2 .staff .sales2 {
        order: 2;
    }
    .recruit2 .pic {
        width: 100%;
        padding: 1% 8%;
    }
    .recruit2 .text {
        width: 100%;
    }
    .recruit5 .button{
        font-size: 20px;
        padding: 13px 26px;
    }
}

@media screen and (max-width: 450px) {
    .recruit2{
        height: 1810px;
    }
    .recruit2 .right_green {
        height: 1710px;
    }
    .recruit2 .staff {
        height: 500px;
    }
}




/* お知らせ（NEWS) */

.hero.news {
    height: 675px;
    background-image: url(../images/news-hero.jpg);
}
.news .hero-title {
    padding: 380px 0 0 130px;
}
.news .hero-title h1 {
    font-size: 64px;
    margin-block: 0 0;
    text-align: left;
}
.news .frame {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 88%;
    margin: 0;
    padding:0;
    text-align: center;
    max-width: 1200px;
}
.news th:nth-child(1),.news th:nth-child(2){
    width: 400px;
    color: #fff;
    background-color: #265C00;
}
.news th:nth-child(3),.news th:nth-child(4){
    width: 200px;
    color: #fff;
    background-color: #265C00;
}
.news td:nth-child(3){
    height: 150px;
    vertical-align: middle;
}
.news .detail2 {
    color: #fff;
    background-color: #265C00;
    padding: 6px 12px;
    border-radius: 8px;
}
.news .detail2:hover{
    opacity: 0.6;
}

@media screen and (max-width: 930px) {
    .news th:nth-child(1) {
        width: 300px;
    }
    .news th:nth-child(2){
        width: 500px;
    }
}

@media screen and (max-width: 600px) {
    .hero.news {
        height: 473px;
        background-image: url(../images/news-hero-sp.jpg);
    }
    .news .hero-title {
        padding: 260px 0 0 0;
    }
    .news .hero-title h1 {
        font-size: 48px;
        text-align: center;
    }
    .news table {
        width: 100%;
    }
    .news td {
        display: block;
        width: 100%;
    }
    .news td:nth-child(1) {
        color: #fff;
        background-color: #265C00;
        line-height: 1.5;
    }
    .news td:nth-child(2) {
        line-height: 4;
        font-size: 17px;
    }
    .news td:nth-child(3) {
        height: auto;
    }
    .news td:nth-child(4) {
        line-height: 5;
    }
}

/* 記事（TOPICS) */
.topics {
    background-color: #fafafa;
}
.hero.topics {
    height: 112px;
    background-color: #506D2F;
}
.topics main{
    margin: 80px auto;
}
.topics .frame {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 85%;
    margin: 0;
    padding:64px 0;
    text-align: center;
    max-width: 1000px;
    background-color: #ffffff;
    border: 1px solid #265C00;
}
.topics .topics-inner {
    padding: 0 10%;
}
.topics .day{
    text-align: left;
}
.topics h2{
    font-size: 30px;
}
.topics .articles{
    text-align: left;
    padding: 16px 5% 0 5%;
}
.topics .image{
    padding: 64px 15%;
}
.topics .back {
    color: #fff;
    background-color: #506D2F;
    padding: 6px 12px;
    border-radius: 8px;
}
.topics .back:hover{
    opacity: 0.6;
}

@media screen and (max-width: 600px) {

    .topics .frame {
        width: 92%;
        padding: 48px 0 64px 0;
    }
    .topics .topics-inner {
        padding: 0 5%;
    }
    .topics .day{
        font-size: 15px;
    }
    .topics h2{
        font-size: 20px;
    }
    .topics .articles{
        font-size: 15px;
        padding: 18px 3% 0 3%;
    }
}

/* お問い合わせ（contact-f) */

.hero.contact-f {
    height: 675px;
    background-image: url(../images/contact-hero.jpg);
}
.contact-f {
    height: 1070px;
}
.main {
    margin: 0;
    background-color: #fafafa;
}
.contact-f .frame {
    position: relative;
    top: -485px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-color:rgba(255, 255, 255, 0.8);
    width: 90%;
    margin: 0;
    padding:50px;
    text-align: center;
    max-width: 1000px;
}
.contact-f  .title{
    margin-bottom: 50px;
}
.contact-f  .title h1 {
    margin-block-start: 0;
    margin-block-end: 0;
    font-size: 48px;
    color: #000000;
    text-align: center;
}
.contact-f .tel {
    margin: 50px 0;
    display: inline-block;
    color: #000000;
    border: 1px solid #265C00;
    font-size: 26px;
    padding: 12px 48px;
}
.contact-f .tel span {
    font-size: 16px;
}
.contact-f table{
    margin: auto;
    border-spacing: 0;
}
.contact-f table th{
    border-bottom: 1px solid #eaeaea;
    padding: 20px;
}
.contact-f table td{
    text-align: left;
    border-bottom: 1px solid #eaeaea;
    padding: 20px;
}
.contact-f .size1 {
    width: 450px;
}
.contact-f .size2 {
    width: 450px;
    height: 200px;
}
.contact-f .required{
    font-size: 10px;
    color: #fff;
    background-color: #B2243C;
    padding: 3px;
    border-radius: 3px;
}
.contact-f .contact-content{
    color: #B2243C;
    font-size: 15px;
    line-height: 2;
}
.contact-f .submit{
    font-size: 18px;
    color: #fff;
    background-color: #265C00;
    padding: 16px 32px;
    margin-top: 24px;
}
.contact-f .submit:hover{
    opacity: 0.8;
}
.contact-f .recruit-contact {
    display: inline-block;
    text-align: center;
    color: #265C00;
    border: 1px solid #265C00;
    padding: 4px 16px;
    font-weight: bold;
}
.contact-f .recruit-contact a:link {
    color: #265C00;
}   
.contact-f .recruit-contact a:visited {
    color: #265C00;
}
.contact-f .recruit-contact a:hover {
    color: #265C00;
    opacity: 0.7;
}
.contact-f .recruit-contact a:active {
    color: #265C00;
}

@media screen and (max-width: 930px) {
    .contact-f {
        height: 1140px;
    }
    .contact-f  .title h1 {
        font-size: 42px;
    }
    .contact-f .title span {
        font-size: 22px;
    }
    .contact-f .tel {
        margin: 50px 0;
        font-size: 21px;
        padding: 10px 44px;
    }
    .contact-f .tel span {
        font-size: 15px;
    }
    .contact-f table th{
        text-align: left;
        display: block;
        width: 100%;
        padding: 10px;
        border-bottom: none;
    }
    .contact-f table td{
        display: block;
        width: 100%;
        padding: 10px;
    }
}

@media screen and (max-width: 600px) {
    .hero.contact-f {
        height: 473px;
        background-image: url(../images/contact-hero-sp.jpg);
    }
    .contact-f {
        height: 1150px;
    }
    .contact-f .frame {
        width: 95%;
        padding: 30px 15px;
        position: relative;
        top: -320px;
    }
    .contact-f  .title{
        margin-bottom: 30px;
    }
    .contact-f  .title h1 {
        font-size: 32px;
    }
    .contact-f .title span {
        font-size: 18px;
    }
    .contact-f .tel {
        margin: 30px 0;
        font-size: 18px;
        padding: 10px 36px;
    }
    .contact-f table th{
        padding: 10px 0;
    }
    .contact-f table td{
        padding: 10px 0;
    }
    .contact-f .size1 {
        width: 320px;
    }
    .contact-f .size2 {
        width: 320px;
        height: 200px;
    }
    .contact-f .submit{
        font-size: 16px;
        padding: 13px 26px;
        margin-top: 30px;
    }
}

/* お問い合わせ（採用）（contact-f) */

.contact-f.recruit {
    height: 800px;
}
.green_border-r {
    width: 470px;
    height: 5px;
    background-color:#265C00 ;
    margin: 0 auto;
}

@media screen and (max-width: 930px) {
    .contact-f.recruit {
        height: 870px;
    }
    .green_border-r {
        width: 430px;
        height: 4px;
    }
}

@media screen and (max-width: 600px) {
    .contact-f.recruit {
        height: 910px;
    }
    .green_border-r {
        width: 280px;
        height: 3px;
    }
}

/* お問い合わせ確認画面（contact-c) */
.contact-cm {
    margin: 30px 0;
}
.contact-c .frame {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-color:rgba(255, 255, 255, 0.8);
    width: 90%;
    margin: 0;
    padding:50px;
    text-align: center;
    max-width: 1000px;
}
.contact-c img {
    width: 200px;
    height: 67px;
}
.contact-c p {
    padding: 24px 0;
}
.contact-c table{
    margin: auto;
    border-spacing: 0;
}
.contact-c table th{
    border-bottom: 1px solid #eaeaea;
    padding: 20px;
}
.contact-c table td{
    text-align: left;
    border-bottom: 1px solid #eaeaea;
    padding: 20px;
}
.contact-c .size1 {
    width: 450px;
}
.contact-c .size2 {
    width: 450px;
    height: 200px;
}
.contact-c .size3 {
    width: 450px;
    height: 50px;
}
.contact-c .return {
    color: #B2243C;
}
.contact-c .submit{
    font-size: 18px;
    color: #fff;
    background-color: #506D2F;
    padding: 16px 32px;
    margin-top: 24px;
}
.contact-c .submit:hover{
    opacity: 0.8;
}
@media screen and (max-width: 930px) {
    .contact-c  .title h1 {
        font-size: 42px;
    }
    .contact-c .title span {
        font-size: 22px;
    }
    .contact-c .tel {
        margin: 50px 0;
        font-size: 21px;
        padding: 10px 44px;
    }
    .contact-c .tel span {
        font-size: 15px;
    }
    .contact-c table th{
        text-align: left;
        display: block;
        width: 100%;
        padding: 10px;
        border-bottom: none;
    }
    .contact-c table td{
        display: block;
        width: 100%;
        padding: 10px;
    }
}

@media screen and (max-width: 600px) {
    .contact-c .frame {
        width: 95%;
        padding: 30px 15px;
    }
    .contact-c  .title{
        margin-bottom: 30px;
    }
    .contact-c  .title h1 {
        font-size: 32px;
    }
    .contact-c .title span {
        font-size: 18px;
    }
    .contact-c .tel {
        margin: 30px 0;
        font-size: 18px;
        padding: 10px 36px;
    }
    .contact-c table th{
        padding: 10px 0;
    }
    .contact-c table td{
        padding: 10px 0;
    }
    .contact-c .size1 {
        width: 320px;
    }
    .contact-c .size2 {
        width: 320px;
        height: 200px;
    }
    .contact-c .size3 {
        width: 320px;
        height: 50px;
    }
    .contact-c .submit{
        font-size: 16px;
        padding: 13px 26px;
        margin-top: 30px;
    }
}

/*　共通のCSS　*/
.green_border {
    width: 300px;
    height: 5px;
    background-color:#265C00 ;
    margin: 0 auto;
}
.green_border2 {
    width: 159px;
    height: 3px;
    background-color:#265C00 ;
}
.green_border3 {
    width: 250px;
    height: 3px;
    background-color:#265C00 ;
    margin: 0 auto;
}
.white_border {
    width: 300px;
    height: 5px;
    background-color:#ffffff ;
    margin: 0 auto;
}
.ta-left {
    text-align: left;
}
.ta-right {
    text-align: right;
}
.ta-center{
    text-align: center;
}
.flex {
    display: flex;
}
.bold {
    font-weight: bold;
}
.c-green1 {
    color: #265C00;
}
.c-green2 {
    color: #506D2F;
}
.c-red {
    color: red;
}
.f-size16 {
    font-size: 16px;
}
.f-size20 {
    font-size: 20px;
}
.f-size24 {
    font-size: 24px;
}
.f-size32 {
    font-size: 32px;
}
.f-size64 {
    font-size: 64px;
}
.f-size80 {
    font-size: 80px;
}
.f-size85 {
    font-size: 85px;
}
.f-size100 {
    font-size: 100px;
}
.l-height1 {
    line-height: 1cs;
}
.l-height8 {
    line-height: 8;
}
.p-top24{
    padding-top: 24px;
}
.p-top48 {
    padding-top: 48px;
}
.p-bottom24 {
    padding-bottom: 24px;
}
.spacer-h24 {
    height:24px;
}
.spacer-h48 {
    height:48px;
}
.sp {
    display: none;
}
@media screen and (max-width: 930px) {
    .green_border {
        width: 240px;
        height: 4px;
    }
    .green_border2 {
        width: 127px;
        height: 3px;
    }
    .white_border {
        width: 240px;
        height: 4px;
    }
    .f-size16 {
        font-size: 15px;
    }
    .f-size20 {
        font-size: 16px;
    }
    .f-size24 {
        font-size: 17px;
    }
    .f-size32 {
        font-size: 22px;
    }
    .f-size64 {
        font-size: 45px;
    }
    .f-size80 {
        font-size: 56px;
    }
    .f-size85 {
        font-size: 56px;
    }
    .f-size100 {
        font-size: 70px;
    }
    .l-height1 {
        line-height: 1;
    }
    .l-height3 {
        line-height: 3;
    }
    .p-top24{
        padding-top: 17px;
    }
    .p-top48 {
        padding-top: 34px;
    }
    
    .p-bottom24 {
        padding-bottom: 17px;
    }
    
    .spacer-h24 {
        height:17px;
    }
}

@media screen and (max-width: 600px) {
    .green_border {
        width: 180px;
        height: 3px;
    }
    .white_border {
        width: 180px;
        height: 3px;
    }
    .green_border2 {
        width: 112px;
        height: 2px;
    }
    .f-size32 {
        font-size: 20px;
    }
    .f-size64 {
        font-size: 36px;
    }
    .f-size80 {
        font-size: 45px;
    }
    .f-size85 {
        font-size: 45px;
    }
    .f-size100 {
        font-size: 56px;
    }
    .p-top24{
        padding-top: 16px;
    }
    .p-top48 {
        padding-top: 27px;
    }
    .p-bottom24 {
        padding-bottom: 16px;
    }
    .spacer-h24 {
        height:16px;
    }

    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
