/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.SP { display: none; }
.inner { width: 1100px; margin: 0 auto; }
.m_inner { width: 1200px; margin: 0 auto; }



body { font-family:"游ゴシック体","Noto Sans Japanese","ヒラギノ角ゴ Pro w3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", "Arial", sans-serif; height: 100%; color: #333; line-height: 1.7; }

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

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-wrapper {
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.logo-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF8243;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

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

.contact-btn {
    background: #FF8243;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 25px;
}

.contact-btn:hover {
    background: #e67335;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: #fff;
}

.hero-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding: 60px 20px;
}

.hero-left {
    flex: 1;
    position: relative;
}

.hero-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.hero-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
}

.hero-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.4;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* About Section */

#about { background: url(../img/sec_bg.png) no-repeat center top; padding: 150px 0 200px;}
#about h3 { text-align: center; font-size: 38px; font-weight: bold; padding: 0 0 30px; line-height: 160%; }
#about h3 span { display: block; text-align: center; color: #E56713; font-size: 18px; padding: 0 0 30px;}
#about p { line-height: 160%; text-align: center; }


/* Service Section */
.service {
    background: #fff;
    padding: 80px 0;
}

.service-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.service-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-en {
	font-family: "Montserrat-SemiBold", sans-serif;
    display: block;
    font-size: 63px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title-ja {
    display: block;
    font-size: 18px;
    color: #666;
}

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

.service-item {
    background: #fff;
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-item-content {
    padding: 30px 0;
    text-align: center;
}

.service-item-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-item-description {
    font-size: 14px;
    line-height: 2;
    color: #666;
}

/* Works Section */
.works {
    background-image: linear-gradient(90deg, #f99840, #ffe255);
    padding: 80px 0;
}

.works-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.works-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.works-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.works-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    gap: 30px;
    padding: 30px;
}

.works-item-image {
    flex: 0 0 300px;
}

.works-item-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.works-item-content {
    flex: 1;
}

.works-tag {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 15px;
}

.works-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    
}

.works-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.works-detail {
    font-size: 14px;
    line-height: 1.8;
    display: flex;
}

.works-label {
    font-weight: bold;
    margin-right: 10px;
    width: 90px;
    
}

.works-text {
    color: #666;
    width: 545px;
    line-height: 130%;
}


#works .section-title-en { color: #fff; }
#works .section-title-ja { color: #fff; }

/* Flow Section */
.flow {
    background: #fff;
    padding: 80px 0;
}

.flow-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.flow-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.flow-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.flow-column {
    background: #FDD04F;
    border-radius: 10px;
    padding: 40px 30px;
}

.flow-column-orange {
    background: #F99940;
    color: #fff;
}

.flow-column-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.flow-column-orange .flow-column-title {
    color: #fff;
}

.flow-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flow-item {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.flow-number {
    flex: 0 0 50px;
    height: 50px;
    background: #FF8243;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.flow-text { flex: 1; font-size: 20px; font-weight: bold; color: #000; }

/* Company Section */
.company {
    background: #FAF8ED;
    padding: 80px 0;
}

.company-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.company-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    
}

.company-bg { background: #fff; padding: 50px; }

.company-table {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 25px 30px;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
}

.company-table th {
    
    font-weight: bold;
    width: 200px;
    font-size: 14px;
}

.company-table td {
    font-size: 14px;
    color: #666;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

/* Contact Section */
.contact {
    background: #fff;
    padding: 80px 0;
}

.contact-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.contact-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-description {
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.required {
    color: #FF8243;
    margin-left: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF8243;
}

.form-privacy {
    margin-bottom: 30px;
    text-align: center;
}

.form-privacy label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.form-privacy input[type="checkbox"] {
    width: auto;
}

.submit-btn {
    display: block;
    width: 300px;
    margin: 0 auto;
    padding: 15px 40px;
    background: #B71C1C;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #8B1414;
}

/* Footer */
.footer {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid #E0E0E0;
}

.footer-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 12px;
    color: #999;
}

#fv { padding: 70px 0 0 ; }
#fv img { width: 100%; height: auto; }

#contact { padding: 70px 0 100px ; }
#contact .form { min-height: 500px; text-align: center; padding: 100px 0;}
#contact .error { color: #000; }
#contact .error h4 { font-size: 30px; font-weight: bold; } 
#contact .error .caution { padding: 30px 0; line-height: 150%;}
#contact .error span { display: block; padding: 0 0 10px; }
#contact .error .btn a { color: #fff; background: #aeaeae; display: inline-block; width: 300px; padding: 20px 0; text-decoration: none; }
#contact .error .alert { padding: 0 0 30px; }
#contact .btn { text-align: center; }
#contact .btn input { background: #e6480a ; color: #fff; width: 330px; height: 70px; text-align: center; border: none; cursor: pointer;}

.c-btn a { display: inline-block; background: #E56713; width: 196px; color: #fff; text-decoration: none; padding: 15px 0 ; border-radius: 25px; text-align: center;}

.thanks h4 { font-size: 30px; font-weight: bold; padding: 0 0 50px; }
.thanks .caution { padding: 0 0 30px; line-height: 150%; }
.thanks .alert { padding: 0 0 30px; line-height: 150%; }
.thanks .btn a { display: inline-block; border: 1px solid #000; color: #fff; width: 330px; height: 70px; line-height: 70px; color: #000; text-align: center; border: none; cursor: pointer; }

/* Responsive Design */
@media (max-width: 768px) {
	
	.inner,
	.m_inner { width: 90%; margin: 0 auto; }
	.PC { display: none; }
	.SP { display: block; }

    .header-content {
        
        gap: 20px;
    }
	.logo img { width: 120px; height: auto;}
	.c-btn a { font-size: 14px; width: 120px; color: #fff; text-decoration: none; padding: 10px 0 ; border-radius: 25px; text-align: center;}

	
    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-left img,
    .hero-right img {
        height: 300px;
    }

    .about-content {
        flex-direction: column;
    }
    #about { background: none; padding: 0 0 0;}
	#about h3 { text-align: center; font-size: 20px; font-weight: bold; padding: 0 0 30px; line-height: 160%; }
	#about h3 span { display: block; text-align: center; color: #E56713; font-size: 14px; padding: 0 0 20px;}
	#about p { line-height: 160%; text-align: left; }
	
	.section-title-en {
	font-family: "Montserrat-SemiBold", sans-serif;
    display: block;
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title-ja {
    display: block;
    font-size: 16px;
    color: #666;
}
.section-title { margin-bottom: 30px; }
    

    .about-left {
        flex: 0 0 auto;
    }

    .service-items {
        grid-template-columns: 1fr;
    }

    .works-item {
        flex-direction: column;
        padding: 20px;
        gap:20px;
    }

    .works-item-image {flex: 0 0 auto; width: 100%;}
    .works-detail { display: block; }
    .works-label { display: block;}

    .flow-columns {
        grid-template-columns: 1fr;
    }
    .flow-column { border-radius: 10px; padding: 30px 10px; }
	.flow-items { gap: 5px;  }
	.flow-item { padding: 10px; }
	.flow-column-title { font-size: 22px; }
	.flow-text { font-size: 17px; }
	
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 20px 0px;
    }

    .company-table th { border-bottom: none; padding-bottom: 5px; }
	.company-bg { padding: 20px;}
    .company-table td {
        padding-top: 5px;
    }
 
 #contact .error .caution { line-height: 150%; font-size: 14px; }
 #contact .error .alert { padding: 0 0 30px; line-height: 150%; font-size: 14px; }
    
.thanks h4 { font-size: 30px; font-weight: bold; padding: 0 0 50px; }
.thanks .caution { padding: 0 0 30px; line-height: 150%; }
.thanks .alert { padding: 0 0 30px; line-height: 150%; font-size: 14px; }
.thanks .btn a { display: inline-block; border: 1px solid #000; color: #fff; width: 330px; height: 70px; line-height: 70px; color: #000; text-align: center; border: none; cursor: pointer; }

}
