﻿@charset "UTF-8";

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* Layout Utilities */
.section-inner {
    max-width: 1240px; /* 1200px + padding 20px * 2 */
    margin: 0 auto;
    padding: 0 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-sub {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}
.section-desc {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}



/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 180px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}
.btn::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
        border-width: 12px 0 12px 13px;
    border-color: transparent transparent transparent currentColor;
    margin-left: 15px;
}
.btn-orange {
    background-color: #e45b2b;
    color: #fff;
    box-shadow: 3px 3px 0px rgb(255 255 255 / 100%);
	padding: 16px 80px;
	font-size: 24px;
}
.btn-orange:hover {
    color: #fff;
    background-color: #d1491a;
    transform: translateY(-2px);
}
.btn-white {
background-color: #fff;
    color: #e45b2b;
    border: 5px solid;
    font-size: 24px;
}
.btn-white:hover {
    color: #e45b2b;
    background-color: #e45b2b;
    transform: translateY(-2px);
	color: #fff;
	border: 5px solid #e45b2b;;
}

/* -------------------------------------
   Main Visual
-------------------------------------- */
.fv {
    background-image: url('../../img/zoho-manageengine/bg-mv.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.fv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.fv-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}
.fv-sub {
	font-size: 24px;
    font-weight: 700;
    margin-bottom: 70px;
    letter-spacing: 0.05em;
}
.fv-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
}
.fv-title span {
    font-size: 56px;
}
.fv-desc {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 80px;
}
.fv .btn {
    width: 100%;
    max-width: 720px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    font-size: 28px;
}

/* -------------------------------------
   Issues
-------------------------------------- */
/* -------------------------------------
   Issues
-------------------------------------- */
.issues {
    padding: 100px 0;
    background-color: #F0FCFD;
    position: relative;
    z-index: 1;
}
.issues-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    background: url(../../img/zoho-manageengine/issues.png) top right / 190px no-repeat; 
}
.issues-sub {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}
.issues-title-wrapper {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.issues-title-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background-color: #333;
}
.issues-title-wrapper .section-title {
    margin-bottom: 0;
}
.issues-img-top {
    position: absolute;
    right: 50px;
    top: -20px;
    max-width: 160px;
}
.issues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}
.issue-card {
background-color: #fff;
    border-radius: 15px;
    padding: 30px 60px;
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
}
.issue-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a64a6;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-align: center;
    position: relative;
}
.issue-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background-color: #1a64a6;
}
.issue-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #333;
}
.issue-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 2px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}
@media screen and (max-width: 768px) {

    .issues-header {
        background: none;
    }
}
/* -------------------------------------
   Solution
-------------------------------------- */
.solution {
    padding: 100px 0;
    background-color: #fff;
}

.solution .section-header{
    background: url(../../img/zoho-manageengine/section.png) top right / 190px no-repeat;
}

.solution-img {
    margin-top: 30px;
    max-width: 200px;
}
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.solution-card {
    border-radius: 10px;
    overflow: hidden;
	    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
}
.solution-card-header {
    background-color: #1a64a6;
    color: #fff;
    padding: 25px 20px;
    text-align: center;
}
.solution-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}
.solution-role {
	font-size: 16px;
    font-weight: 500;
}
.solution-list {
    padding: 30px;
}
.solution-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}
.solution-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #4db3a8;
}
@media screen and (max-width: 768px) {
    .solution .section-header {
        background: none;
    }
}
/* -------------------------------------
   Reasons
-------------------------------------- */
.reasons {
    padding: 100px 0;
background-color: #F0FCFD;
}
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 40px;
}
.reason-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
        box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
    position: relative;
}
.reason-num {
font-size: 72px;
    font-weight: 900;
    color: #1a64a6;
    position: absolute;
    top: -40px;
    left: 5px;
    line-height: 1;
    z-index: 1;
}
.reason-title {
	font-size: 20px;
    font-weight: 700;
    color: #1a64a6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    padding-top: 20px;
    border-bottom: 1px solid;
}
.reason-desc {
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* -------------------------------------
   Impact
-------------------------------------- */
.impact {
    padding: 100px 0;
    background-color: #fff;
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.impact-card {
    box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
}

.impact-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}
.impact-value {
    font-size: 48px;
    font-weight: 900;
    color: #1a64a6;
    margin-bottom: 15px;
    line-height: 1;
}
.impact-value span {
    font-size: 20px;
}
.impact-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* -------------------------------------
   CTA
-------------------------------------- */
.cta {
    background-color: #0b376b;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}
.cta-sub {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.cta-title {
    font-size: 32px;
    font-weight: 700;
}
.cta-desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta .issues-title-wrapper::after{
	background-color: #ffffff;
}

/* -------------------------------------
   FAQ
-------------------------------------- */
.faq {
    padding: 100px 0;
    background-color: #fafafa;
}
.faq-inner {
    max-width: 900px;
}
.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
        box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}
.faq-q {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    padding-right: 60px;
}
.faq-q span:first-child {
    color: #e45b2b;
    margin-right: 15px;
}
.faq-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: #e45b2b;
    transition: all 0.3s ease;
}
.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 9px;
    left: 0;
}
.faq-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 9px;
}
.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}
.faq-a {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.active .faq-a {
    padding: 0 30px 25px;
    max-height: 500px;
}
.faq-a p {
    font-size: 15px;
    line-height: 1.8;
    display: flex;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.faq-a p span {
    color: #1a64a6;
    font-weight: 700;
    margin-right: 15px;
}

/* -------------------------------------
   Contact
-------------------------------------- */
.contact {
    padding: 100px 0;
    background-color: #F0FCFD;
}
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}
.contact-sub {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.contact-title {
    font-size: 32px;
    font-weight: 700;
}
.contact-desc {
    font-size: 18px;
    line-height: 1.8;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-card {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
        box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
}
.contact-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-card-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}
.contact-tel {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.contact-hours {
    font-size: 13px;
    color: #666;
}

/* -------------------------------------
   Responsive
-------------------------------------- */
@media screen and (max-width: 1024px) {
    .issues-grid,
    .solution-grid,
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
	.btn{
		padding: 16px 50px;
	}
    .fv {
        padding: 80px 20px;
    }
    .fv-title {
        font-size: 32px;
    }
    .fv-title span {
        font-size: 40px;
    }
    .fv-desc {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .issues-grid,
    .solution-grid,
    .reasons-grid,
    .impact-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-card {
        padding: 30px 20px;
    }
    .contact-card {
        padding: 40px 20px;
    }
	
	.issue-card{
		padding: 30px 20px;
	}
}
/* 追従ナビ */
.p-index__fixed-nav {
    width: 100%;
    /*min-height: 55px;*/
}

.p-index__fixed-nav-inner {
    width: 100%;
    padding: 20px 15px;
    background-color: #F8F9FA;
    box-sizing: border-box;
}

.p-index__fixed-nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
}

.p-index__fixed-nav-list a {
    position: relative;
    display: flex;
    align-items: center;
    gap: .5em;
    color: #333;
    font-size: min(0.85vw, 14px);
    text-decoration: none;
    padding-left: 20px;
    font-weight: 600;
}

.p-index__fixed-nav-list a:is(:hover, :focus) {
    color: #333;
    text-decoration: underline;
}

.p-index__fixed-nav-list li a::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: absolute;
    top: 50%;
    content: '';
    top: 0.8rem;
    left: 0;
}

.p-index__fixed-nav-list li a::before {
    width: 5.66px;
    height: 5.66px;
    border-style: solid;
    border-width: 0 1.41px 1.41px 0;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    border-color: #333;
    -webkit-transition: border-color cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
    transition: border-color cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s, border-color cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s, border-color cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.p-index__fixed-nav-list .p-index__fixed-nav-list-link a::before {
    width: 12px;
    height: 12px;
    background: url(../../../img/solution/support/link_arr_hoso.svg) center / 12px no-repeat;
    top: 30%;
}

.p-index__fixed-nav-list li a::after {
    content: '';
    width: 8px;
    height: 1px;
    display: block;
    background: #333;
    position: absolute;
    left: -1px;
    top: calc(0.8rem + 5px);
}


.p-index__fixed-nav.is-fixed {
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 5;
}

@media screen and (max-width: 768px) {
    .p-index__fixed-nav {
        display: none;
    }
    .btn-orange {
	font-size: 21px;      
}
    .btn-white {
    font-size: 21px;
}
}


.fv-logo{
	float: left;
    margin-right: 30px;
}

.fv-logo img{
	width:285px;
}



@media screen and (max-width: 768px) {
.fv-logo{
    width: 50%;
}

    .fv-sub{
    	font-size:90%;
    }    
    
.fv-logo img{
        width: 100%;
        padding: 0px 0px 10px 3px;
}
   .fv-manage{
	display: grid;
}
}

/**/