/*
 Theme Name:   Bando-Child
 Template:     blankslate
 Version:      1.0.0
*/

/* ここに子テーマのCSSを記述 */
/* style.css - 阪東電気株式会社 トップページ */


/* Import DM Sans font */
/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); */



/*
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal;
*/

/*
font-family: "DM Sans", sans-serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal;
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Noto Sans JP", sans-serif, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h2 {
    margin-top: 0;
}
h3 {
    margin-top: 8px;
}
.sb {
    display: block; 
}
.dm-sans {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.dm-sans-italic {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
}
.sub-text {
	max-width: 600px;
	font-size: 13px!important;
	color: #808080;
	margin: 15px auto;
	text-align: center;
}
@media (max-width: 376px) {
.contact-lead .sub-text {
	text-align: left;
	font-size: 12px!important;
	line-height: 1.7;
}
.contact-lead .sub-text br { 
	display: none;
}
}

.site-content {
    background-color: #FAF9F7; 
}
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.is-sm {
    display: none;
}
@media (max-width: 768px) {
    .is-sm {
        display: block;
    }
}
.is-md {
    display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .is-md {
        display: block;
    }
}
.is-lg {
    display: block;
}
@media (max-width: 768px) {
    .is-lg {
        display: none;
    }
}


.top-main {
    margin-top: 133px;
}
@media (max-width: 768px) {
    .top-main {
        margin-top: 60px;
    }
}

/* Header */
.header {
    background: transparent;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
}
@media (max-width: 767px) {
    .header {
        padding: 6px 0;
    } 
}

.top-header {
    background-color: #fff;
}

.header .container {
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    .header .container {
        padding: 0 10px;
    }
}
.header .nav-wrapper {
    display: flex;
    align-items: center;
    margin-left: auto;
}
@media (max-width: 767px) {
    .header .nav-wrapper {
        display: none;
    }
}
.logo-img {
    width: 178px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .logo-img {
        width: 140px;
    }
}
@media (max-width: 767px) {
    .logo-img {
        width: 100px;
    }
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 45px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .nav ul {
        gap: 24px;
    }
}
.nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ff6600;
}

/* Hamburger Section */
.hamburger-button {
    display: block;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, #EC6C00 0%, #F8B62D 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    margin-left: auto;
    border-radius: 5px;
    transition: opacity 0.3s;
}
@media (min-width: 768px) {
    .hamburger-button {
        display: none;
    }
}
.hamburger-button:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
}
.hamburger-line {
    width: 23px;
    height: 1px;
    background-color: #fff;
    position: relative;
}
.hamburger-line::before,
.hamburger-line::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
}
.hamburger-line::before {
    top: 6px;
}
.hamburger-line::after {
    bottom: 6px;
}

.hamburger-content {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(105%);
    transition: transform 0.3s ease 0s;
    z-index: 300;
}
@media (max-width: 767px) {
    .hamburger-content {
        display: block;
    }
}
.hamburger-content.is-active {
    transform: translateX(0);
}
.hamburger-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
}
.hamburger-logo {
    width: 100px;
}
.hamburger-logo img {
    max-width: 100%;
}
.hamburger-content .hamburger-button {

}
.hamburger-content .hamburger-line {
    transform: rotate(45deg);
}
.hamburger-content .hamburger-line::before {
    transform: rotate(90deg);
    top: 0;
}
.hamburger-content .hamburger-line::after {
    opacity: 0;
}
.hamburger-nav-wrapper {
    padding: 65px 20px 20px;
}
.hamburger-nav {
    max-width: 260px;
    margin: 0 auto;
}
.hamburger-nav li {
    list-style: none;
    border-bottom: 1px solid #7C7C7C;
}
.hamburger-nav li a {
    text-decoration: none;
    color: #242A32;
    display: block;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding-left: 12px;
    position: relative;
}
.hamburger-nav li a::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #0086C4;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.hamburger-nav li a::after {
    content: "→";
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #F8B62D;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.hamburger-nav-button {
    text-align: center;
    max-width: 260px;
    margin: 40px auto 0;
}
.hamburger-nav-button .cta-btn {
    width: 245px;
    padding: 12px 24px;
    font-size: 15px;
}

/* Hero Section */
.hero {
    /* padding: 80px 0; */
    /* min-height: 600px; */
    padding-bottom: 40px;
}
@media (max-width: 768px) {
    .hero {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
@media (max-width: 768px) {
    .hero-content {
        display: block;
        /* text-align: center; */
    }
}

.hero-text {
    flex: 0 1 350px;
    margin-left: 80px;
}
@media (max-width: 768px) {
    .hero-text {
        width: 60%;
        max-width: 350px;
        margin-left: auto;
    }
}

.hero-text h1 {
    width: 100%;
    max-width: 400px;
}

.hero-image {
    flex: 0 1 698px;
    text-align: center;
}
@media (max-width: 768px) {
    .hero-image {
        width: 100%;
    }

}

.hero-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
}

/* About Us and Business Combined Section */
.subtitle {
    font-weight: 700;
    color: #0086C4;
}
@media (max-width: 768px) {
    .subtitle {
        font-size: 14px;
    }
    
}
.about-business-section {
    background: #F6F2EE;
    padding: 100px 0 220px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
@media (max-width: 768px) {
    .about-business-section {
        padding: 50px 0 120px;
    }
}

.about-business-section .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .about-business-section .container {
        padding: 0;
    }
}
@media (max-width: 768px) {
    .about-business-section .container {
        padding: 0 30px;
    }
}

.about-section {
    padding-bottom: 240px;
    border-bottom: 1px solid #7C7C7C;
}
@media (max-width: 768px) {
    .about-section {
        padding-bottom: 90px;
    }
}
.about-section-container,
.business-section-container {
    padding: 0 24px;
}
@media (max-width: 768px) {
    .about-section-container,
    .business-section-container {
        padding: 0;
    }
}

.about-section h2,
.business-section h2 {
    font-size: 60px;
    font-weight: bold;
    color: #242424;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .about-section h2,
    .business-section h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
}

.about-content {
    display: flex;
    gap: 20px;
    align-items: center;
}
@media (max-width: 768px) {
    .about-content {
        display: block;
    }
}

.about-left {
    flex: 0 1 634px;
    padding-right: 40px;
}
@media (max-width: 768px) {
    .about-left {
        width: 100%;
    }
}


.about-right {
    flex: 0 0 384px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .about-right {
        flex: 0 0 360px;
    }
}
@media (max-width: 768px) {
    .about-right {
        width: 100%;
    }
}

.about-img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.about-right h3 {
    font-size: 35px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 50px;
    line-height: 1.7;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .about-right h3 {
        font-size: 28px;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .about-right h3 {
        font-size: 20px;
        max-width: 200px;
        margin: 30px auto 0;
    }
}

.about-right p {
    font-size: 16px;
    font-weight: 400;
    color: #242424;
    margin-bottom: 60px;
    line-height: 2;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .about-right p {
        font-size: 15px;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .about-right p {
        font-size: 13px;
        margin-top: 40px;
        max-width: 315px;
        margin-left: auto;
        margin-right: auto;
    }
}
.about-button .cta-btn {
    margin-top: 0;
}
@media (max-width: 768px) {
    .about-button {
        text-align: center;
    }
}

.cta-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(to right, #EC6C00 0%, #F8B62D 100%);
    color: white;
    border: none;
    width: 300px;
    padding: 19px 32px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: opacity 0.3s;
}
@media (max-width: 768px) {
    .cta-btn {
        width: 245px;
        padding: 12px;
        font-size: 15px;
    }
}

.cta-btn:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
}
.nav-button {
    margin-left: 44px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .nav-button {
        margin-left: 30px;
    }
}
.contact-btn {
    width: 144px;
    padding: 9px 24px;
    font-size: 14px;
    /* margin-left: 44px; */
    transition: opacity 0.3s;
    margin-top: 0;
}

.contact-btn:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
}

/* Business Section */
.business-section {
    padding-top: 70px;
}
@media (max-width: 768px) {
    .business-section {
        padding-top: 40px;
    }
}
.business-illust {
    margin: auto;
}
.business-img {
    width: 100%;
    max-width: 1026px;
    /* padding: 40px; */
}

/* Services Section */
.services {
    background: #F5F17A;
    padding: 140px 0;
    border-radius: 100px;
    margin-top: -100px;
    position: relative;
    /* width: 100vw; */
    /* margin-left: calc(-50vw + 50%); */
}
@media (max-width: 768px) {
    .services {
        padding: 50px 0;
        border-radius: 50px;
    }
}

.services .container {
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item {
    display: flex;
    align-items: center;
    flex-direction: row;

    background: #E8E33E;
    padding: 26px 26px 26px 62px;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .service-item {
        display: block;
        padding: 35px 20px 27px;
    }
}
.service-item + .service-item {
    margin-top: 30px;
}
@media (max-width: 768px) {
    .service-item + .service-item {
        margin-top: 20px;
    }
}

.service-item.reverse {
    flex-direction: row-reverse;
    padding: 26px 62px 26px 26px;
}
@media (max-width: 768px) {
    .service-item.reverse {
        padding: 35px 20px 27px;
    }
}
.service-item.reverse .service-text {
    margin-right: 0;
    margin-left: 75px;
}
@media (max-width: 768px) {
    .service-item.reverse .service-text {
        margin-left: 0;
    }
    
}

.service-text {
    flex: 0 1 384px;
    margin-right: 75px;
}
@media (max-width: 768px) {
    .service-text {
        width: 100%;
        margin-right: 0;
    }
}
figure {
    margin: 0;
}
.service-image {
    flex: 0 1 500px;
}
@media (max-width: 768px) {
    .service-image {
        width: 100%;
        margin-top: 20px;
    }
}
.service-image img {
    max-width: 100%;
}


.service-text h3 {
    font-size: 25px;
    font-weight: bold;
    color: #242424;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .service-text h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}
.service-text p {
    font-size: 15px;
    color: #242424;
    line-height: 2;
    padding-top: 30px;
    border-top: 1px solid #7C7C7C;
    /* margin-bottom: 20px; */
}

@media (max-width: 768px) {
    .service-text p {
        font-size: 13px;
        padding-top: 24px;
    }
}
.service-text ul {
    margin-left: 20px;
}

.service-text li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

/* .service-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
} */


/* Work Section */
.work {
    background-color: #FAF9F7;
    margin-top: -100px;
    padding-top: 260px;
    padding-bottom: 240px;
}
@media (max-width: 768px) {
    .work {
        padding-top: 200px;
        padding-bottom: 180px;
    }
}
.work .container {
    max-width: 1040px;
    padding: 0 20px;
}
.work h2 {
    font-size: 60px;
    font-weight: 700;
    color: #242424;
}
@media (max-width: 768px) {
    .work h2 {
        font-size: 30px;
    }
}
.work-content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 75px;
}
@media (max-width: 768px) {
    .work-content {
        display: block;
        margin-top: 50px;
    }
}
.work-item {
    width: calc(50% - 48px * 1 / 2);
}
@media (max-width: 768px) {
    .work-item {
        width: 100%;
    }
}
.work-item:nth-child(2n) {
    margin-left: 48px;
}
@media (max-width: 768px) {
    .work-item:nth-child(2n) {
        margin-left: 0;
    }
}
.work-item:nth-child(n + 3) {
    margin-top: 70px;
}
@media (max-width: 768px) {
    .work-item:nth-child(n + 3) {
        margin-top: 0;
    }
}
@media (max-width: 768px) {
    .work-item:nth-child(n + 2) {
        margin-top: 45px;
    }
}
.work-image {

}
.work-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
}
.work-date {
    font-size: 14px;
    display: inline-block;
    margin-top: 15px;
}
@media (max-width: 768px) {
    .work-date {
        font-size: 12px;
        margin-top: 10px;
    }
}
.work-title {
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .work-title {
        font-size: 13px;
        margin-top: 6px;
    }
}
.work-link {
    display: inline-block;
    font-weight: 700;
    color: #F8B62D;
    margin-top: 26px;
    transition: opacity 0.3s;
}
@media (max-width: 768px) {
    .work-link {
        margin-top: 20px;
        font-size: 13px;
    }
}
.work-link:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
}
.work-btn {
    text-align: center;
    margin-top: 70px;
}
.work-btn .cta-btn {
    margin-top: 0;
}



/* News Section */
.news {
    background-color: #F6F2EE;
    padding: 155px 0;
    border-radius: 100px;
    margin-top: -100px;
    margin-bottom: 50px;
    position: relative;
}
@media (max-width: 768px) {
    .news {
        padding: 70px 0;
        border-radius: 50px;
        margin-bottom: 27px;
    }
}
.news .container {
    max-width: 1040px;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .news .container {
        padding: 0 38px;
    }
}
.news h2 {
    font-size: 60px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .news h2 {
        font-size: 30px;
    }
}
.news-content {
    margin-top: 70px;
    padding: 0 35px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .news-content {
        padding: 0;
    }
}
@media (max-width: 768px) {
    .news-content {
        margin-top: 40px;
        padding: 0;
    }
}
.news-link {
    background-color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #242424;
    padding: 30px 42px;
    transition: opacity 0.3s;
}
@media (max-width: 768px) {
    .news-link {
        display: block;
        padding: 14px 20px;
    }
}
.news-link:hover {
    color:#F8B62D;
}
.news-link + .news-link {
    margin-top: 10px;
}
.news-date {
    display: block;
    font-size: 14px;
}
@media (max-width: 768px) {
    .news-date {
        font-size: 12px;
    }
}
.news-title {
    margin-left: 40px;
    font-size: 16px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .news-title {
        margin-left: 0;
        font-size: 13px;
    }
}
.news-btn {
    text-align: right;
    padding: 0 35px;
    margin-top: 54px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .news-btn {
        padding: 0;
    }
}
@media (max-width: 768px) {
    .news-btn {
        text-align: center;
        padding: 0;
    }
}
.news-btn .cta-btn {
    margin-top: 0;
}


/* Recruit Section */
.recruit {
    background-image: url('./images/top_recruit.jpg');
    background-size: cover;
    padding: 112px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .recruit {
        padding: 90px 0;
    }
}
.recruit-content {
    background: white;
    padding: 100px 60px;
    border-radius: 70px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 3px 36px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .recruit-content {
        padding: 50px 24px;
        border-radius: 50px;
        width: 100%;
        min-width: 272px;
    }
}

.recruit h2 {
    font-size: 60px;
    font-weight: bold;
    color: #242424;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .recruit h2 {
        font-size: 30px;
    }
}
.recruit-text {
    color: #242424;
    margin-bottom: 100px;
    line-height: 2;
}
@media (max-width: 768px) {
    .recruit-text {
        font-size: 13px;
        margin-bottom: 40px;
    }
}
.recruit .cta-btn {
    margin-top: 0;
    transition: opacity 0.3s;
}
@media (max-width: 768px) {
    .recruit .cta-btn {
        width: 150px;
    }
}
.recruit .cta-btn:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
}

/* Contact Section */
.contact-wrap {
    padding: 36px 65px;
}
@media (max-width: 768px) {
    .contact-wrap {
        padding: 52px 12px 20px;
    }
}
.contact {
    background: linear-gradient(to right, #EC6C00 0%, #F8B62D 100%);
    margin: 0 auto;
    padding: 64px 75px;
    border-radius: 70px;
    max-width: 1080px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .contact {
        margin: 36px 0 0;
        padding: 64px 20px;
    }
}
@media (max-width: 768px) {
    .contact {
        width: 100%;
        margin: 30px auto 20px;
        padding: 60px 26px 50px;
        border-radius: 50px;
    }
}
.contact .container {
    padding: 0 30px 0 45px;
    /* max-width: 2000px;
    margin: 0 auto;
    padding: 30px 50px; */
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .contact .container {
        padding: 0 30px 0 30px;
    }
}
@media (max-width: 768px) {
    .contact .container {
        padding: 0;
    }
}
.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .contact-content {
        display: block;
        position: relative;
    }
}
@media (max-width: 768px) {
    .contact-content {
        display: block;
        position: relative;
    }
}

.contact-left {
    flex: 0 0 368px;
}

@media (max-width: 768px) {
    .contact-left {
        width: 100%;
    }
}
.contact-right {
    flex: 0 1 467px;
    min-width: 300px;
    margin-left: 30px;
    }

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .contact-right {
        position: absolute;
        top: -130px;
        right: -90px;
        width: 50%;
		min-width: 250px;
		margin-left: 0;
    }
}
@media (max-width: 768px) {
    .contact-right {
        position: absolute;
        top: -85px;
        right: -15px;
        width: 50%;
		margin-left: 0;
		min-width: unset;
		max-width: 190px;
    }
}
.subtitle-light {
    color: #F8CFA6;
    font-weight: 700;
}
@media (max-width: 768px) {
    .subtitle-light {
        font-size: 14px;
    }
}
.contact h2 {
    font-size: 60px;
    font-weight: bold;
    color: white;
    margin-bottom: 35px;
}

@media (max-width: 768px) {
    .contact h2 {
        font-size: 30px;
        margin-bottom: 55px;
    }
}
.contact-text {
    color: white;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 70px;
	max-width: 370px;
}

@media (max-width: 768px) {
    .contact-text {
        font-size: 13px;
        line-height: 1.9;
        margin-bottom: 36px;
		max-width: 480px;
    }
}
.contact-buttons {
    display: flex;
    flex-direction: column;
    width: 300px;
    gap: 12px;
}

@media (max-width: 768px) {
    .contact-buttons {
        align-items: center;
    }
}
.contact-form, .contact-line {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    color: white;
    border: none;
    width: 300px;
    padding: 18px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: opacity 0.3s;
}
@media (max-width: 768px) {
    .contact-form, .contact-line {
        width: 245px;
        font-size: 15px;
        padding: 12px 30px;
    }
}
.contact-form {
    background-color: #F8B62D;
}
.contact-line {
    background-color: #6DDF5C;
}
.contact-form:hover, .contact-line:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.contact-img {
    width: 100%;
    /* object-fit: cover;
    border-radius: 20px; */
}

/* Footer Section */
.footer {
    background-color: #fff;
    padding: 30px 0 50px;
}
@media (max-width: 768px) {
    .footer {
        padding: 20px 0 15px;
    }
}
.footer .container {
    max-width: 1020px;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        padding: 0 40px;
    }
}
.footer-left {
    
}
.footer-logo {
    width: 222px;
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    .footer-logo {
        width: 133px;
        margin-bottom: 8px;
    }
}
.footer-logo-img {
    width: 100%;
}
.footer-info {
    margin-left: 20px;
    color: #242424;
}
@media (max-width: 768px) {
    .footer-info {
        margin-left: 0;
        padding: 0 12px;
    }
}
.footer-info-row {
    display: flex;
    align-items: center;
}
.footer-info-row + .footer-info-row {
    margin-top: 3px;
}
.footer-info-row dt {
    font-size: 14px;
    flex: 0 0 42px;
}
@media (max-width: 768px) {
    .footer-info-row dt {
        font-size: 12px;
        flex: 0 0 38px;
    }
}
.footer-info-row dd {
    font-size: 14px;
    margin-left: 30px;
}
@media (max-width: 768px) {
    .footer-info-row dd {
        font-size: 12px;
        margin-left: 18px;
    }
}
.alink {
	display: inline-block;
    color: #0086C4;
    text-decoration: none;
    transition: opacity 0.3s;
}
.footer-right {
    padding: 22px 20px 0 54px;
    border-left: 1px solid #0086C4;
    display: flex;
    flex-direction: column;
}
@media (max-width: 768px) {
    .footer-right {
        padding: 0;
        border-left: none;
        display: block;
    }

    .footer-nav {
        display: none;
    }
}
.footer-nav ul {
    list-style: none;
    padding-left: 0;
}
.footer-nav li {

}
.footer-nav li + li {
    margin-top: 6px;
}
.footer-nav li a {
    color: #242424;
    text-decoration: none;
    display: block;
    font-weight: 700;
}
.copyright {
    display: block;
    font-size: 12px;
    color: #7C7C7C;
    margin-top: auto;
}
@media (max-width: 768px) {
    .copyright {
        margin-top: 30px;
        text-align: center;
    }
}

.page-header {
    background: linear-gradient(to bottom, #f5f498 0%, transparent 100%);
    padding: 150px 0 80px;
}
@media (max-width: 768px) {
    .page-header {
        padding: 92px 0 50px;
    }
}
.page-header .container {
    max-width: 1090px;
}
@media (max-width: 768px) {
    .page-header .container {
        padding: 0 28px;
    }
}
.page-header-text {
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid #7C7C7C;
    padding-bottom: 25px;
}

@media (max-width: 768px) {
    .page-header-text {
        display: block;
    }
}
.page-header-text .en-title {
    margin-bottom: 0;   
}
.page-header h2 {
    font-weight: 700;
    line-height: 1;
    margin-left: 36px;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .page-header h2 {
        font-size: 14px;
        margin-left: 0;
        margin-top: 10px;
    }
}
.en-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}
@media (max-width: 768px) {
    .en-title {
        font-size: 30px;
    }
}
.section-title {
    font-size: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #7C7C7C;
    margin-bottom: 76px;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
}
/* About Page Design */
.company-philosophy {
    padding: 30px 0 140px;
}
@media (max-width: 768px) {
    .company-philosophy {
        padding: 20px 0 76px;
    }
}
@media (max-width: 768px) {
    .company-philosophy .container {
        padding: 0 28px;
    }
}
.philosophy-content {
    max-width: 700px;
    margin: 0 auto;
}
.philosophy-content h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.7;
    margin-top: 25px;
}
@media (max-width: 768px) {
    .philosophy-content h3 {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .philosophy-content h3 .sb {
        display: inline;
    }
}
.philosophy-text {
    line-height: 2;
    margin-top: 60px;
}
@media (max-width: 768px) {
    .philosophy-text {
        font-size: 13px;
        margin-top: 40px;
    }
}
.philosophy-image {
    max-width: 900px;
    margin: 90px auto 0;
}
@media (max-width: 768px) {
    .philosophy-image {
        margin: 40px auto 0;
    }
}
.philosophy-image img {
    width: 100%;
}
.about-bg {
    background-color: #F6F2EE;
    border-radius: 100px;
    padding: 160px 0;
}
@media (max-width: 768px) {
    .about-bg {
        border-radius: 50px;
        padding: 80px 0 90px;
    }
}
.corporate-principles {
    padding-bottom: 200px;
}
@media (max-width: 768px) {
    .corporate-principles {
        padding-bottom: 140px;
    }
}
@media (max-width: 768px) {
    .corporate-principles .container {
        padding: 0 28px;
    }
}
.corporate-principles .container {
    max-width: 1090px;
}
.principles-list {
    list-style: none;
    padding: 0 25px;
}
@media (max-width: 768px) {
    .principles-list {
        padding: 0 10px;
    }
}
.principle-item {
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .principle-item {
        display: block;
    }
}
.principle-item + .principle-item {
    margin-top: 26px;
}
@media (max-width: 768px) {
    .principle-item + .principle-item {
        margin-top: 36px;
    }
}
.principle-number {
    display: block;
    font-size: 50px;
    line-height: 1;
    color: #F8B62D;
}
@media (max-width: 768px) {
    .principle-number {
        font-size: 40px;
    }
}
.principle-text {
    font-size: 20px;
    font-weight: 700;
    margin-left: 68px;
}
@media (max-width: 768px) {
    .principle-text {
        margin-left: 0;
        margin-top: 5px;
        font-size: 16px;
    }
}

/* -----------------------------
   資格取得者セクション全体
------------------------------ */
.qualifications {
    padding-bottom: 200px;
}
@media (max-width: 768px) {
    .qualifications {
        padding-bottom: 80px;
    }
}

.qualifications .container {
    max-width: 1090px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .qualifications .container {
        padding: 0 28px;
    }
}

/* -----------------------------
   テーブル共通スタイル
------------------------------ */
.qualified-numbers,
.qualifications-list {
    width: 100%;
    max-width: 730px;
    margin: 0 auto;
}

.qualified-numbers table,
.qualifications-skill-table {
    width: 100% !important;
    border-collapse: collapse;
    table-layout: fixed;
    margin: 0 auto;
}



/* thスタイル（ヘッダー全体に適用） */
.qualifications-table-wrapper table th,
.table th {
    background-color: #CCE3ED;
    color: #0086C4;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 28px;
    border: 1px solid #fff;
}

/* tdスタイル（全セル共通） */
.qualified-numbers table td,
.table td {
    font-size: 18px;
    font-weight: 700;
    padding: 14px 28px;
    border: 1px solid #CCE3ED;
}

/* 左右の揃えと背景色 */
.qualified-numbers table td:first-child,
.qualified-numbers table th:first-child,
.table td:first-child,
.table th:first-child {
    text-align: left;
    background-color: #CCE3ED;
	border: 1px solid #fff;
}

.qualified-numbers table td:last-child,
.qualified-numbers table th:last-child,
.table td:last-child,
.table th:last-child {
	width: 20%;
    text-align: center;
    background-color: #fff;
}


@media (max-width: 768px) {
    .qualified-numbers table th,
    .qualified-numbers table td,
    .table th,
    .table td {
        font-size: 16px;
        padding: 14px 14px;
    }
}

@media (max-width: 375px) {
    .qualified-numbers table th,
    .qualified-numbers table td,
    .table th,
    .table td {
        font-size: 14px;
        padding: 10px 8px;
    }
}

/* -----------------------------
　（資格一覧など）
------------------------------ */
.qualifications-list {
    max-width: 650px;
    margin: 55px auto 0;
}

.qualifications-category {
    background-color: #CCE3ED;
    color: #0086C4;
    font-weight: 700;
    text-align: center;
    margin: 0;
    padding: 14px 28px;
}

.qualifications-table-wrapper .table .table-head {
	background-color: #CCE3ED;
}

/*  */

/* スキル講習テーブル */
.qualifications-skill-table {
	display: block;
    width: 100%;
    max-width: 650px;
    margin: 0 auto 55px auto;
    padding: 5%;
    background-color: #fff;
	table-layout: auto; /* ←ここを auto に */
}


.qualifications-list .qualifications-skill-table td {
	font-size: 16px;
    font-weight: 700 !important;
    padding: 5px 28px;
}

.qualifications-skill-table td:first-child {
    text-align: left;
    background-color: #fff;
}
.qualifications-skill-table td:last-child {
    background-color: #fff;
}
.qualifications .qualifications-list table.qualifications-skill-table td {
    display: table-cell;
}

.qualifications .qualifications-list table.qualifications-skill-table td:last-child {
    text-align: right;
    white-space: nowrap;
    width: 1%;
}

@media (max-width: 768px) {
	.qualifications .qualifications-list table{
		padding-top: 20px;
		padding-bottom: 20px;
	}
    .qualifications .qualifications-list table.qualifications-skill-table td {
        font-size: 16px;
        padding: 4px 10px;
    }
}

@media (max-width: 375px) {
    .qualifications .qualifications-list table.qualifications-skill-table td {
        font-size: 13px;
        padding: 2px 5px;
    }
}


/* * */

.company-profile-details {
    padding-bottom: 80px;
}
.company-profile-details .container {
    max-width: 1090px;
}
@media (max-width: 768px) {
    .company-profile-details .container {
        padding: 0 28px;
    }
}
/* *ここから会社概要テーブル* */
.company-info-list {
    max-width: 770px;
    margin: 0 auto;
    padding: 30px 10px;
    list-style: none;
    border-top: 1px solid #7C7C7C;
}

.company-info-list li {
    margin-top: 30px;
    border-top: 1px solid #7C7C7C;
    padding-top: 28px;
    line-height: 1.8;
    white-space: pre-line; /* Shift+Enterで改行を保持 */
}

/* 最初の行は上線なし */
.company-info-list li:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

/* 「：」までをタイトルっぽく太字 */
.company-info-list li::first-line {
    font-weight: bold;
    display: block;
}


@media (max-width: 768px) {
.company-profile-details .section-title {
	margin-bottom: 0;
	border-bottom: none;
}
	}
/* ** */


.access-map {
    
}
.access-map .container {
    max-width: 940px;
}
@media (max-width: 768px) {
    .access-map .container {
        padding: 0 28px;
    }
}
.google-map-placeholder {
    width: 100%;
    height: 100%;
}
.google-map-placeholder iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 900 / 478;
    object-fit: cover;
}
@media (max-width: 768px) {
    .google-map-placeholder iframe {
        aspect-ratio: 320 / 220;
    }
}
/* .access-info {
    max-width: 550px;
    margin: 60px auto 0;
} 要チェック箇所*/
.access-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
  max-width: 550px;
  margin: 60px auto 0;
}

.access-info dt,
.access-info dd {
  line-height: 1.2;
}

/* dt と dd を横並びにする */
.access-info dt,
.access-info dd {
  display: inline-block;
  vertical-align: middle;
}

/* dtの幅固定 */
.access-info dt {
  width: 50px;
  font-weight: bold; /* 必要なら */
}

/* ddはdtの横に表示、左マージン不要 */
.access-info dd {
  margin-left: 10px; /* dtとのスペース調整 */
  width: calc(100% - 60px); /* dt幅 + マージン分を引く */
}


.recruit-lead {
    padding-top: 30px;
}
@media (max-width: 768px) {
    .recruit-lead {
        padding-top: 20px;
    }
}
.recruit-lead .container {
    
}
.recruit-lead h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}
.recruit-lead h3 span {
    display: block; 
}
@media (max-width: 768px) {
    .recruit-lead h3 {

        font-size: 20px;
        text-align: left;
    }
}
.recruit-lead-image {
    margin: 70px auto 0;
    max-width: 854px;
}
@media (max-width: 768px) {
    .recruit-lead-image {
        margin: 40px auto 0;
    }
}
.recruit-lead-image img {
    width: 100%;
}
.career-opportunities {
    padding: 120px 0 160px;
}
@media (max-width: 768px) {
    .career-opportunities {
        padding: 64px 0 87px;
    }
}
.career-opportunities .container {
    max-width: 840px;
}
.career-title {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    background-color: #F5F17A;
    border-radius: 10px;
    padding: 16px;
}
@media (max-width: 768px) {
    .career-title {
        font-size: 18px;
        padding: 9px 16px;
    }
}
.job-listings {

}
.job-listings + .job-listings {
    margin-top: 150px;
}
@media (max-width: 768px) {
    .job-listings + .job-listings {
        margin-top: 120px;
    }
}
/* *ここから採用情報** */

.job-details {
    max-width: 770px;
    margin: 0 auto;
    padding: 40px 10px 30px;
    list-style: none;
    border-bottom: 1px solid #7C7C7C;
}

.job-details li {
    margin-top: 30px;
    border-top: 1px solid #7C7C7C;
    padding-top: 28px;
    line-height: 1.8;
    white-space: pre-line; /* Shift+Enterで改行を保持 */
}

/* 最初の行は上線なし */
.job-details li:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

/* 一行目タイトルっぽく太字 */
.job-details li::first-line {
    font-weight: bold;
    display: block;
}

/* *** */

.application-methods {
    background-color: #F6F2EE;
    border-radius: 100px;
    padding: 120px 0 148px;
}
@media (max-width: 768px) {
    .application-methods {
        border-radius: 50px;
        padding: 80px 0 76px;
    }
}
.application-methods .container {
    max-width: 1040px;
}
.application-title {
    font-size: 40px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .application-title {
        font-size: 30px;
    }
}
.application-illustration {
    max-width: 768px;
    margin: 60px auto 0;
}
@media (max-width: 768px) {
    .application-illustration {
        margin: 25px auto 0;
    }
}
.application-illustration img {
    width: 100%;
}
.method-items {
    margin-top: 50px;
}
.method-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 60px 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .method-item {
        padding: 40px 30px 40px 40px;
    }
}
@media (max-width: 768px) {
    .method-item {
        padding: 38px 30px 30px;
        display: block;
    }
}
.method-item + .method-item {
    margin-top: 25px;
}
@media (max-width: 768px) {
    .method-item + .method-item {
        margin-top: 15px;
    }
}
.method-item-left {
    max-width: 48%;
}
@media (max-width: 768px) {
    .method-item-left {
        width: 100%;
		max-width: 100%;
    }
}
.method-item-left h3 {
    font-size: 35px;
    font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .method-item-left h3 {
        font-size: 30px;
    }
}
@media (max-width: 768px) {
    .method-item-left h3 {
        font-size: 22px;
    }
}
.method-item-left h3::before {
    content: "⚫︎";
    color: #E8E33E;
}
.method-item-left p {
    line-height: 2;
    margin-top: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .method-item-left p {
        font-size: 14px;
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .method-item-left p {
        font-size: 13px;
        margin-top: 25px;
    }
}
.method-item-right {
    flex: 0 1 338px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .method-item-right {
        flex: 0 1 270px;
        margin-left: 20px;
    }
}
@media (max-width: 768px) {
    .method-item-right {
        width: 100%;
        margin-top: 30px;
    }
}
.method-item-button-wrapper {
    text-align: right;
}
.method-item-right .cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 84px;
    height: 84px;
    font-size: 45px;
    padding: 0;
    margin-top: 0;
    margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .method-item-right .cta-btn {
        width: 75px;
        height: 75px;
    }
}
@media (max-width: 768px) {
    .method-item-right .cta-btn {
        width: 50px;
        height: 50px;
        font-size: 27px;
    }
}
.method-item-right span {
    font-weight: 700;
}
.address-wrapper {
    border-top: 2px dotted #7C7C7C;
    border-bottom: 2px dotted #7C7C7C;
    padding: 45px 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .address-wrapper {
        padding: 30px 0;
    }
}
@media (max-width: 768px) {
    .address-wrapper {
        padding: 25px 0;
    }
}
.address {
    font-size: 18px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .address {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .address {
        font-size: 13px;
    }
}
.mail-address {
    font-size: 18px;
    margin-top: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .mail-address {
        font-size: 16px;
        margin-top: 25px;
    }
}
@media (max-width: 768px) {
    .mail-address {
        font-size: 13px;
        margin-top: 20px;
    }
}
.news-illustration-section {
    padding: 30px 0;
}
@media (max-width: 768px) {
    .news-illustration-section {
        padding: 20px 0;
    }
}
.news-illustration-section .container {

}
.news-lead-image {
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .news-lead-image {
        width: 100%;
    }
}
.news-lead-image img {
    max-width: 100%;
}
.news-list-section {
    margin-top: 80px;
    padding-bottom: 110px;
}
@media (max-width: 768px) {
    .news-list-section {
        margin-top: 40px;
        padding-bottom: 60px;
    }
}
.news-list-section .container {
    max-width: 840px;
}
.news-items {

}
.news-item {
    list-style: none;
}
.news-item + .news-item {
    margin-top: 15px;
}
.news-item-link {
    text-decoration: none;
    color: #242424;
    display: flex;
    align-items: center;
    border: 1px solid #707070;
    border-radius: 5px;
    background-color: #fff;
    padding: 30px 48px;
}
@media (max-width: 768px) {
    .news-item-link {
        padding: 20px;
    }
}
.news-item-meta {
	white-space: nowrap;
}
.news-item-label {
    color: #F8B62D;
    font-size: 15px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .news-item-label {
        font-size: 13px;
    }
}
.news-item-body {
    margin-left: 60px;
}
@media (max-width: 768px) {
    .news-item-body {
        margin-left: 25px;
    }
}
.news-item-time {
    font-size: 15px;
    display: block;
}
@media (max-width: 768px) {
    .news-item-time {
        font-size: 13px;
    }
}
.news-item-title {
    font-weight: 700;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .news-item-title {
        font-size: 15px;
        margin-top: 5px;
    }
}

.pagination {
    margin-top: 100px;
    text-align: center;
}
@media (max-width: 767px) {
    .pagination {
        margin-top: 80px;
    }
}
.page-numbers {
    color: #F8B62D;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    margin: 0 10px;
}
.page-numbers.current {
	color: #242424;
    font-weight: 700;
}
.page-numbers.prev,
.page-numbers.next {
    
}

.article {
    padding: 80px 0 170px;
}
@media (max-width: 768px) {
    .article {
        padding: 40px 0 80px;
    }
}
.article .container {
    max-width: 954px;
}
@media (max-width: 768px) {
    .article .container {
        padding: 0 28px;
    }
}
.article-item {

}
.article-head {

}
.article-time {
    display: block;
    font-size: 14px;
}
.article-title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}
.article-body {
    margin-top: 100px;
    max-width: 914px;
}
@media (max-width: 768px) {
    .article-body {
        margin-top: 60px;
    }
}
.article-body p {
    line-height: 1.6875;
    margin-top: 24px;
}
@media (max-width: 768px) {
    .article-body p {
        font-size: 15px;
    }
}
.article-body figure {
    margin-top: 80px;
    width: 100%;
    max-width: 600px;
}
@media (max-width: 768px) {
    .article-body figure {
        margin-top: 60px;
    }
}
.article-body figure img {
    width: 100%;
}
.pager {
    margin-top: 150px;
}
@media (max-width: 768px) {
    .pager {
        margin-top: 60px;
    }
}
.pagination__back-forward__list {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination__back-forward__list li {
    margin: 0 16px;
    list-style: none;
}
.pagination__back-forward__list li a {
    text-decoration: none;
}
.pager-archive.cta-btn {
    margin-top: 0;
}
@media (max-width: 768px) {
    .pager-archive.cta-btn {
        width: 200px;
    }
}
.pager-prev,
.pager-next {
    color: #F8B62D;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
}

/* Contact Page Design */
.contact-lead {
    padding-top: 40px;
}
.contact-lead .container {
    
}
.contact-lead p {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
}
@media (max-width: 768px) {
    .contact-lead p {
        font-size: 16px;
    }
}
.contact-input {
    margin-top: 130px;
}
@media (max-width: 768px) {
    .contact-input {
        margin-top: 80px;
    }
}
.contact-input .container {
    max-width: 690px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid #7C7C7C;
    border-radius: 0;
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    padding: 0.7em 1em;
    width: 100%;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
    color: #242424;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    border: 1px solid rgba(0, 0, 0, 0.32);
    box-shadow: none;
    outline: none;
}
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid #7C7C7C;
    border-radius: 0;
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    padding: 0.4em 0.8em;
    width: 100%;
    height: 200px;
    resize: vertical;
}
textarea:focus {
    border: 1px solid rgba(0, 0, 0, 0.32);
    box-shadow: none;
    outline: none;
}
input[type="radio"] {
    opacity: 0;
	position: absolute;
}
input[type="radio"] + span {
    display: inline-block;
    padding-left: 30px;
    line-height: 1;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
}
input[type="radio"] + span::before {
    content: "";
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 1px solid #7C7C7C;
    border-radius: 50%;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
input[type="radio"] + span::after {
    content: "";
    display: none;
}
input[type="radio"]:checked + span::after {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #F8B62D;
    border-radius: 50%;
    line-height: 1;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}
input[type="radio"]:focus + span {
    outline: 1px solid #ccc;
}
.wpcf7-list-item {
    margin-left: 0;
    display: block;
}
.wpcf7-list-item + .wpcf7-list-item {
    margin-top: 10px;
}
.wpcf7-spinner {
    display: none;
}
.contact-head {
    font-weight: 700;
    margin-top: 40px;
}
.contact-body {
    margin-top: 10px;
}
.contact-submit {
    text-align: center;
    margin-top: 70px;
}
.contact-submit .cta-btn {
    margin-top: 0;
}
.wpcf7-response-output {
    text-align: center;
}
.wpcf7-form-control-wrap {
	display: block;
}
.line-contact {
    margin-top: 150px;
}
@media (max-width: 768px) {
    .line-contact {
        margin-top: 100px;
    }
}
.line-contact .container {

}
@media (max-width: 768px) {
    .line-contact .container {
        padding: 0 12px;
    }
}
.line-contact-content {
    background: linear-gradient(to right, #2ACC55 0%, #AFE060 100%);
    margin: 36px 65px;
    padding: 100px 110px;
    border-radius: 70px;
    display: flex;
    justify-content: space-between;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .line-contact-content {
        margin: 36px 15px;
        padding: 80px 60px;
    }
}
@media (max-width: 768px) {
    .line-contact-content {
        margin: 0;
        border-radius: 50px;
        padding: 62px 52px;
        display: block;
    }
}
.line-contact-left {

}
.line-contact-text {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .line-contact-text {
        font-size: 20px;
        text-align: center;
    }
}
.line-contact-button {
    margin-top: 50px;
}
.line-contact-button .contact-form {
    width: 300px;
}
@media (max-width: 768px) {
    .line-contact-button .contact-form {
        width: 100%;
        max-width: 300px;
        padding: 16px;
        font-size: 16px;
    }
}
.line-contact-right {
    margin-left: 30px;
    flex: 0 1 190px;
}
@media (max-width: 768px) {
    .line-contact-right {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-top: 50px;
    }
}
.line-contact-qr {

}
@media (max-width: 768px) {
    .line-contact-qr {
        max-width: 154px;
        margin: 0 auto;
    }
}
.line-contact-img {
    max-width: 100%;
}
.line-contact-username {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .line-contact-username {
        font-size: 16px;
        margin-top: 3px;
    }
}

/* Works Page Design */
.works-lead {
    text-align: center;
    padding-top: 22px;
}
.works-lead .container {

}
@media (max-width: 768px) {
    .works-lead .container {
        padding: 0 22px;
    }
}
.works-lead-text {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .works-lead-text {
        font-size: 20px;
    }
}
.works-lead-image {
	max-width: 800px;
	margin: 50px auto 0;
}
.works-lead-image img {
    max-width: 100%;
}
.works-list {
    margin-top: 100px;
    padding-bottom: 110px;
}
.works-list .container {
    max-width: 1040px;
}
@media (max-width: 768px) {
    .works-list .container {
        padding: 0 28px;
    }
}
.works-content {
    display: flex;
    flex-wrap: wrap;
	margin-top: 30px;
}
@media (max-width: 768px) {
    .works-content {
        display: block;
    }
}
.works-item {
    width: calc(50% - 48px * 1 / 2);
}
@media (max-width: 768px) {
    .works-item {
        width: 100%;
    }
}
.works-item:nth-child(2n) {
    margin-left: 48px;
}
@media (max-width: 768px) {
    .works-item:nth-child(2n) {
        margin-left: 0;
    }
}
.works-item:nth-child(n + 3) {
    margin-top: 60px;
}
@media (max-width: 768px) {
    .works-item:nth-child(n + 3) {
        margin-top: 0;
    }
}
@media (max-width: 768px) {
    .works-item:nth-child(n + 2) {
        margin-top: 60px;
    }
}
.works-image {

}
.works-image img {
    width: 100%;
    height: 300px;        /* 高さ固定 */
    object-fit: cover;    /* トリミング */
    object-position: top; /* 上から配置 */
}
.works-body {
    margin-top: 10px;
}
.works-meta {
    display: flex;
    align-items: center;
	justify-content: space-between;
}

.works-meta { display: flex; align-items: center; justify-content: space-between; }

.works-date {
    display: none;
}
.works-year {
    display: inline-block;
    color:#0086C4;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid #0086C4;
    border-radius: 16px;
    width: 83px;
    text-align: center;
    padding: 8px 0;
}

.works-title {
    font-size: 16px;
    margin-top: 8px;
}
@media (max-width: 768px) {
    .works-title {
        font-size: 15px;
        margin-top: 12px;
    }
}
.works-link {
    display: inline-block;
    color: #F8B62D;
    font-weight: 700;
    text-decoration: underline;
    margin-top: 24px;
    transition: opacity 0.3s;
}
.works-link:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
}


.works-history {

}
.works-history .container {
    max-width: 1090px;
}
.works-history-wrapper {
    border-top: 1px solid #7C7C7C;
    padding-top: 60px;
    padding-bottom: 160px;
}
@media (max-width: 768px) {
    .works-history-wrapper {
        padding: 40px 0;
    }
}
.works-history-list {
    margin-left: -32px;
    margin-top: -20px;
    display: flex;
    flex-wrap: wrap;
    max-width: 813px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .works-history-list {
        margin-left: -8px;
        margin-top: -10px;
    }
}
.works-history-list li {
    list-style: none;
    margin-left: 32px;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .works-history-list li {
        margin-left: 8px;
        margin-top: 10px;
    }
}
.works-history-list li a {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #0086C4;
    border-radius: 16px;
    text-decoration: none;
    color: #0086C4;
    line-height: 1;
    width: 83px;
    text-align: center;
    padding: 8px 0;
    transition: all 0.3s;
}
@media (max-width: 768px) {
    .works-history-list li a {
        font-size: 12px;
        width: 60px;
        padding: 4px 0;
    }
}
.works-history-list li a:hover {
    color: #fff;
    background-color: #0086C4;
    transition: all 0.3s;
}


/* Works Single Page Design */
.works-detail {
    padding-top: 80px;
    padding-bottom: 135px;
}
@media (max-width: 768px) {
    .works-detail {
        padding-top: 40px;
        padding-bottom: 110px;
    }
}
.works-detail .container {
    max-width: 868px;
}
@media (max-width: 768px) {
    .works-detail .container {
        padding: 0 18px;
    }
}
.works-area {

}
.works-detail-year-wrapper {
    text-align: center;
}
.works-detail-year {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #0086C4;
    border-radius: 16px;
    color: #0086C4;
    line-height: 1;
    width: 83px;
    text-align: center;
    padding: 8px 20px;
}
.works-detail-title {
    margin-top: 40px;
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .works-detail-title {
        font-size: 20px;
    }
}
.swiper {
    width: 100%;
    height: 100%;
    margin-top: 90px;
}
@media (max-width: 768px) {
    .swiper {
        margin-top: 50px;
    }
}
.swiper-wrapper {
    transition-timing-function: linear;
}
.swiper-slide {
    width: 100%;
}
.swiper-slide img {
    display: block;
    width: 100%;
	height: 100%;
}
.works-detail-information {
    margin-top: 100px;
}
@media (max-width: 768px) {
    .works-detail-information {
        margin-top: 35px;
        padding: 0 12px;
    }
}
.works-detail-information-row {
    display: flex;
}
@media (max-width: 768px) {
    .works-detail-information-row {
        display: block;
    }
}
.works-detail-information-row + .works-detail-information-row {
    margin-top: 30px;
}
@media (max-width: 768px) {
    .works-detail-information-row + .works-detail-information-row {
        margin-top: 20px;
    }
}
.works-detail-information-row dt {
    font-weight: 700;
    color: #0086C4;
    flex: 0 0 65px;
}
@media (max-width: 768px) {
    .works-detail-information-row dt {
        font-size: 13px;
    }
}
.works-detail-information-row dd {
    flex-grow: 1;
    font-weight: 700;
    margin-left: 70px;
    line-height: 1.75;
}
@media (max-width: 768px) {
    .works-detail-information-row dd {
        font-size: 13px;
        margin-left: 0;
    }
}

/* Date Archive Page Design */
.date {
    margin: 80px auto 0;
}
.date .container {
    max-width: 1040px;
}
.dateTitle {
    text-align: center;
    border: 2px solid #0086C4;
    border-radius: 50px;
    padding: 2px 10px;
}
.dateTitleText {
    color: #0086C4;
    font-size: 20px;
    font-weight: 700;
	margin-top: 0;
}
@media (max-width: 768px) {
    .dateTitleText {
        font-size: 16px;
    }
}


/* Thanks Page Design */
.thanks {
    padding: 100px 0 155px;
}
@media (max-width: 768px) {
    .thanks {
        padding: 60px 0 100px;
    }
}
.thanks .container {

}
.thanks-message {
    text-align: center;
}
.thanks-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .thanks-text {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .thanks-text {
        font-size: 15px;
		text-align: left;
    }
}
.thanks-text + .thanks-text {
    margin-top: 40px;
}
.thanks-button {
    margin-top: 120px;
    text-align: center;
}
@media (max-width: 768px) {
    .thanks-button {
        margin-top: 80px;
    }
}
.thanks-button .cta-btn {
    width: 300px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero-text h1 {
        font-size: 36px;
    }

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .service-item .service-text,
    .service-item .service-image {
        order: initial !important;
    }

    .contact-content {
        flex-direction: column;
    }

    .nav ul {
        display: none;
    }

   /* .services,
    .about-business-section,
    .contact {
        width: 100%;
        margin-left: 0;
    }*/
}