@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&display=swap");

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  border: none;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  letter-spacing: 1px;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
}

.sp-break{
    display: none;
}

img{
    width: 100%;
}

p{
    line-height: 1.8;
}

.side-btn {
    max-width: 280px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.side-btn.show {
    opacity: 1;
    visibility: visible;
}

#close-btn {
    width: 25px;
    object-fit: contain;
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 10;
}

header{
    width: 100%;
    position: fixed;
    z-index: 2;
    transition: all 0.4s ease;
    background-color: #00000083;
}

nav{
    width: 90%;
    max-width: 1280px;
    padding: 22px 0;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo{
    max-width: 240px;
    object-fit: contain;
}

.header-links{
    display: flex;
    gap: 20px;
}

.contact-link{
    width: fit-content;
    padding: 10px 16px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: #31AD17;
}

.contact-link:hover{
    background-color: #1f8c09;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.hamburger .line {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.25s ease,
                width 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
}

.hamburger.is-open .line:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.hamburger.is-open .line:nth-child(2) {
    display: none;
}

.hamburger.is-open .line:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1;
    margin-top: 80px;
    padding: 1rem 0;
    flex-direction: column;
    border-top: 2px solid transparent;
    border-image: linear-gradient(to right, #4E9FE2, #BB72DD);
    border-image-slice: 1;
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu.is-open {
    display: flex;
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
}

.mobile-menu.is-open header{
    background-color: #fff;
}

.mobile-menu a {
    width: 85%;
    margin: 0 auto;
    color: #062D82;
    text-decoration: none;
    font-weight: 500;
    padding: 16px 0;
    letter-spacing: 0.04em;
    position: relative;
    border-bottom: 1px solid #062D82;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.2s;
}

.mobile-menu.is-open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.is-open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.is-open a:nth-child(7) { transition-delay: 0.35s; }

.mobile-menu .contact-link {
    margin-top: 16px;
}

.kv{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.kv-wrapper{
    position: relative;
    width: 100%;
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000519; 
    overflow: hidden;
}

.kv-medal{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 22px;
    font-weight: 600;
    z-index: 0;
    color: #fff;
}

.kv-medal img{
    max-width: 150px;
    object-fit: contain;
}

.kv-video{
    position: absolute;
    width: 150%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.kv-content{
    width: 90%;
    max-width: 1300px;
    margin-top: -6%;
    height: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.kv-square-txt{
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    padding: 20px;
    width: 90%;
    max-width: fit-content;
    background-color: #00000048;
    color: #fff;
}

.agent-server-kv{
    max-width: 976px;
    margin-bottom: 24px;
    object-fit: contain;
}

.kv-content h1{
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    font-weight: lighter;
}

.kv-medal p{
   font-family: "Noto Sans JP", sans-serif;
}

.cms-logos{
    width: 90%;
    max-width: 836px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cms-logos img{
    width: 220px;
    object-fit: contain;
}

.blue-bg-txt{
    width: 100%;
    background-color: #062D82;
}

.blue-bg-txt p{
    width: 90%;
    max-width: 1200px;
    margin: 34px auto;
    text-align: center;
    color: #fff;
}


section{
    width: 100%;
    padding: 120px 0 130px 0;
}

.section-wrapper{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 56px;
}

.section-wrapper h2{
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 26px;
    text-align: center;
    color: #062D82;
}

.clients{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 60px 0;
}

.medals{
    max-width: 980px;
    object-fit: contain;
}

.sp-medals{
    display: none;
}

.clients h2{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    margin-bottom: 1rem;
}

.clients p {
    margin-top: -20px;
    font-size: 14px;
    text-align: right;
    margin-left: auto;
}

.clients-logos > .clients-logo-container:nth-child(2) {
  display: none;
}

.clients-logo-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 8px;
  justify-items: center;
  align-items: center;
  list-style: none;
  margin: 1rem 0;
}

.client-logo {
  width: 100%;
  height: 60px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0px 7px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

.client-logo img {
  height: 23px;
  object-fit: contain;
}

.client-logo:nth-child(3) img {
  height: 20px;
  object-fit: contain;
}

.client-logo:nth-child(10) img {
  height: 40px;
  object-fit: contain;
}

.client-logo:nth-child(12) img {
  height: 30px;
  object-fit: contain;
}

.client-logo:nth-child(13) img {
  height: 20px;
  object-fit: contain;
}

.client-logo:nth-child(15) img {
  height: 20px;
  object-fit: contain;
}


.section-three{
    background-image: url(/assets/images/section_three_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #062D82;
}

.section-three-content{
    max-width: 700px;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

.section-three-content h2{
    font-family: "Shippori Mincho", serif;
    font-size: 47px;
    font-weight: 800;
    line-height: 1.4;
    color: #fff;
    text-align: left;
}

.btm-yellow-line{
    display: block;
    height: 5px;
    width: 112px;
    background-color: #DEAD30;
    margin-right: auto;
    margin-top: 1rem;
}

.section-three-content .big-txt{
    font-size: 34px;
    font-weight: 500;
    margin: 40px 0 24px 0;
}

.section-three-content p{
    font-size: 18px;
    line-height: 2;
    color: #D7DBEB;
}

.news-section .section-wrapper{
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.news-section .section-wrapper h2{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 48px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    color: #8A0075;
}

.news-section .section-wrapper h2 img{
    width: 56px;
    object-fit: contain;
}

.news-section .section-wrapper h2 img:nth-last-child(1){
    transform: scaleX(-1);
}

.news-section .section-wrapper p{
    width: 90%;
    max-width: 1200px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
}

.article-container{
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    display: inline-flex;
    gap: 20px;
}

.articles-wrapper{
    display: grid;
    grid-template-columns: repeat(8, 276px);
    animation: 32s news-slide infinite linear;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 20px;
}

@keyframes news-slide {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-101%);
    }
}

.news-section .section-wrapper .articles-wrapper li{
    flex: 0 1 282px;
    width: fit-content;
}

.news-section .section-wrapper .articles-wrapper li > p{
    font-size: 12px;
    margin-left: 10px;
    margin-bottom: 0;
    text-align: left;
}

.why-llmo, .merit{
    padding: 50px 0 130px 0;
}

.why-llmo .section-wrapper{
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.line-title{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 34px;
    margin-bottom: 36px;
}

.title-line{
    display: block;
    width: 10px;
    height: 60px;
    background-color: #062D82;
}

.reason-one-wrapper{
    display: grid;
    grid-template-columns: 2fr 442px;
    gap: 2rem;
}

.reason-two-wrapper{
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.bold-txt{
    font-weight: 700;
}

.reason-two-wrapper img{
    max-width: 900px;
    object-fit: contain;
    margin: 0 auto;
}

.ai-fear{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-fear h4{
    font-size: 26px;
    text-align: center;
}

.rectangle-txt{
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 36px 45px;
    border: 5px solid #062D82;
    color: #062D82;
}

.rectangle-txt h5{
    font-size: 34px;
    font-weight: 700;
    text-align: center;
}

.triangle-down{
    position: absolute;
    bottom: -70px;
    left: 0;
    right: 0;
    width: 0;
	height: 0;
	border-left: 200px solid transparent;
	border-right: 200px solid transparent;
	border-top: 70px solid #062D82;
    margin: 0 auto;
}

.bracket-title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.bracket-title .bracket{
    font-family: "shippori-mincho", serif;
    font-size: 100px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #062D82;
}

.eng-title{
    font-family: "futura-pt-bold", sans-serif;
    font-style: normal;
    font-size: 50px;
    font-weight: 600;
}

.process{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border: 4px solid transparent;
    border-image: linear-gradient(to right, #8293b6 0%, #8c9dc2 35%, #7785a7 65%, #8fa0c5 100%)1;
    padding-bottom: 60px;
}

.process-title{
    width: 100%;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: linear-gradient(to right, #8293b6 0%, #8c9dc2 35%, #7785a7 65%, #8fa0c5 100%);
}

.after{
    border-image: linear-gradient(to right, #D99730 8%, #D5B657 36%, #C28B36 60%, #E9E278 100%)1;
}

.after .process-title{
    background: linear-gradient(to right, #D99730 8%, #D5B657 36%, #C28B36 60%, #E9E278 100%);
}

.process h3{
    font-size: 24px;
    text-align: center;
}

.after h3{
    font-size: 32px;
    color: #705100;
}

.process-content{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 48px 1fr 48px 1fr;
    align-items: center;
    gap: 18px;
    padding: 60px 30px;
    padding-bottom: 0;
}

.appeal-txt{
    font-size: 26px;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
}

.center-txt{
    text-align: center;
    font-size: 20px;
}

.blue-txt{
    font-size: 30px;
    color: #062D82;
}

#merit > p:nth-child(5){
    text-align: center;
}

.four-points{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 50px;
    align-items: center;
    background-color: #F4F5F9;
}

.four-points h3{
    font-size: 40px;
    font-weight: 700;
    color: #062D82;
    margin-bottom: 1rem;
}

.point-one{
    width: 100%;
    padding: 20px 44px;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 30px;
}

.number{
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    background-color: #062D82;
    padding: 14px 30px;
    border-radius: 50px;
}

.point-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.point-content h4{
    font-size: 24px;
    font-weight: 700;
}

.point-content p{
    color: #565C75;
}

.down-arrow-small{
    width: 170px;
    object-fit: contain;
    margin: 0 auto;
}

.ai-wrapper{
    margin: 100px 0 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #F4F5F9;
    border: 5px dotted #062D82;
    border-radius: 30px;
    padding: 30px;
}

.ai-wrapper h4{
    font-size: 40px;
    text-align: center;
    font-weight: 700;
    color: #062D82;
}

.ai-logos{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.ai{
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    width: 100%;
    max-width: 260px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.chatgpt{
    background-color: #12A37F;
}

.gemini{
    background-color: #1E4ED8;
}

.perplexity{
    background-color: #404040;
}

.google-ai{
    background-color: #EA4336;
    font-size: 22px;
}

table{
    width: 100%;
    border: 1px solid #ACACAC;
    border-collapse: collapse;
    border-spacing: 0;
}

table th, table td{
    border-bottom: 1px solid #ACACAC;
    border-right: 1px solid #ACACAC;
    padding: 30px 40px;
}

tbody tr:nth-last-child(1) td{
    border-bottom: none;
}

table th{
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

thead tr th:nth-child(1){
    color: #363636;
    background-color: #F4F5F9;
    text-align: left;
}

thead tr th:nth-child(2){
    background-color: #e3e5ec;
    color: #404040;
}

thead tr th:nth-child(3){
    color: #fff;
    background: linear-gradient(to right, #D99730 8%, #D5B657 36%, #C28B36 60%, #E9E278 100%);
    font-size: 24px;
}

tbody tr td:nth-child(1){
    font-size: 16px;
    font-weight: 500;
    color: #363636;
}

tbody tr td:nth-child(2){
    font-size: 16px;
    font-weight: 500;
    color: #404040;
    text-align: center;
}

tbody tr td:nth-child(3){
    font-size: 20px;
    font-weight: 500;
    color: #062D82;
    background-color: #FAFCFF;
    border-right: none;
    text-align: center;
}

tbody tr:nth-child(2) td:nth-child(3) small{
    font-weight: 500;
    color: #556783;
}

td small{
    font-size: 12px;
    color: #747474;
}

.red-txt{
    color: #D54A3A;
}

.process-point{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 0;
}

.after .process-point{
    width: 100%;
    min-height: 214px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.after .process-point img{
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.process-point p{
    font-size: 19px;
    line-height: 1.5;
    font-weight: 500;
}

.features{
    background-color: #F4F5F9;
}

.features-points{
    padding: 3rem;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-point{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-point h3{
    font-size: 34px;
    font-weight: 700;
    color: #062D82;
}

.feature-content{
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3rem;
}

.feature-txt{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-imgs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-point .blue-txt{
    font-size: 12px;
    font-weight: 500;
    color: #062D82;
}

.feature-point:nth-child(2){
    grid-template-areas: "img txt";
}

.feature-point:nth-child(2) .feature-img > .blue-txt,
.feature-point:nth-child(2) .feature-img > .banner-link{
        display: none;
    }

.feature-content h3{
    font-size: 34px;
    line-height: 1.6;
}

.feature-content .blue-txt{
    font-size: 12px;
    margin-top: 2rem;
}

.sp-feature-link{
    display: none;
}

.cms-difference{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.powercms .process-title{
    background: #062D82;
}

.powercms{
    border: 4px solid #062D82;
    border-image: none;
}

.wordpress .process-title{
    background: #06846C;
}

.wordpress{
    border: 4px solid #06846C;
    border-image: none;
}

.cms-difference .process{
    padding: 0;
}

.cms-difference .process-content{
    padding: 36px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}

.cms-difference .process-content ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 15px;
}

.cms-difference .process-title{
    height: 124px;
    font-size: 24px;
}

.process-imgs{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.cms-difference .process .process-content img{
    max-width: 192px;
    margin: 0 auto;
    object-fit: contain;
}

.recommend-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.recommend-section h2{
    color: #fff;
}

.recommend-card{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 32px 24px;
    background-color: #F4F5F9;
    color: #000;
}

.recommend-card h5{
    font-size: 23px;
    font-weight: 600;
    color: #062D82;
}

.recommend-card img{
    max-width: 190px;
    height: 95px;
    object-fit: contain;
}

.last-recommend-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto 0;
}

.last-recommend-card p{
    width: 100%;
    padding: 20px 24px;
    background-color: #F4F5F9;
    font-weight: 600;
    color: #031948;
}

.triangle {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #F4F5F9;
    margin: 0 auto;
}

.last-recommend-card img{
    width: 120px;
    object-fit: contain;
    margin-left: 2rem;
}

.why-us{
    background-color: #062D82;
}

.why-us h2,
.why-us .bracket{
    color: #fff;
}

.why-us .section-wrapper{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.white-sqr-txt{
    background-color: #fff;
    padding: 2rem;
}

.east-one{
    background-color: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.east-one h3{
    font-size: 38px;
    font-weight: 700;
    color: #062D82;
    display: flex;
    align-items: center;
}

.east-one h4{
    margin-bottom: 1rem;
}

.big-no{
    font-size: 102px;
}

.line{
    font-size: 50px;
}

.txt-img{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.bullet-points{
    padding: 20px;
    font-size: 16px;
    background-color: #F4F5F9;
    border: 1px solid #062D82;
    color: #031948;
}

.bullet-points ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bullet-points ul li{
    margin-left: 24px;
}

.east-strengths{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.strength-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 32px 24px;
    background-color: #fff;
    color: #000;
}

.strength-card img{
    height: 100px;
    object-fit: contain;
}

.strength-card h4{
    font-size: 20px;
    color: #062D82;
    text-align: center;
}

.our-works h3{
    color: #fff;
}

.our-works .title-line{
    background-color: #fff;
}

.works-imgs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 10px;
}

.work-img{
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.work-img p{
    width: 100%;
    padding: 15px;
    background-color: #fff;
    color: #000;
    font-size: 14px;
}

.faq-section{
    background-color: #F4F5F9;
}

.faq-card{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 3px solid #062D82;
}

.faq-card h3{
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 10px;
    background-color: #062D82;
    color: #fff;
}

.faq-item{
    width: 90%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 32px 0;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border-bottom: 1px solid #031948;
}

.faq-item:nth-last-child(1){
    border-bottom: 0;   
}

.question, .answer{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.question{
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.question img, .answer img{
    width: 40px;
    object-fit: contain;
}

.answer{
    display: none;
    align-items: flex-start;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.answer p{
    margin-top: 5px;
}

.plus-icon{
    font-size: 40px;
    font-weight: 300;
    margin-left: auto;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
}

.faq-item.is-open .answer {
    display: flex;
    opacity: 1;
}

.faq-item.is-open .plus-icon {
  content: '−';
}

.contact-form{
    padding: 100px 0 80px 0;
    background-color: #062D82;
}

.form-title{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    color: #fff;
    margin-bottom: 2rem;
}

.form-title h2{
    font-size: 34px;
    font-weight: 600;
    color: #fff;
}

.form-title p{
    font-size: 20px;
}

.inquiry-form {
  position: relative;
  z-index: 1;

  width: 100%;
  margin: 0 auto;
  padding: 60px;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 7px 16px rgba(104, 140, 211, 0.15);
}

.phone-inquiry {
  border: 1px solid #cbc8c4;
  padding: 1.5rem 0;

  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
}

.phone-inquiry-text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.phone-inquiry-text > p:nth-child(2) {
  font-size: 14px;
  color: #656565;
}

.phone-inquiry-title {
  font-size: 1.375rem;
  font-weight: 500;
  color: #000000;
}

.vertical-line {
  display: block;
  width: 1px;
  background-color: #cbc8c4;
  height: 60px;
}

.phone-num {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-num p{
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.phone-num img{
    height: 40px;
}

.phone-num p:nth-child(2){
    margin-top: -10px;
}

.phone-num a {
    font-size: 2.25rem;
    color: #2e3176;
    font-weight: 400;
    text-decoration: none;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form > h3 {
  font-size: 34px;
  font-weight: 500;
  text-align: center;
  margin: 2rem 0;
  color: #000000;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input {
  width: 100%;
  padding: 1rem;
  border: 0.5px solid #cccccc;
  margin-top: 0.5rem;
}

input:focus {
  outline: 0.7px solid #656565;
}

input::placeholder {
  font-weight: 300;
  color: #cccccc;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  margin-top: 1rem;
}

.required-star {
  color: #dc000b;
}

.checkbox {
  text-align: center;
}

.container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #ffffff;
  border: 1px solid #cbc8c4;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  border: 1px solid #cbc8c4;
  background-color: #ffffff;
}

/* When the checkbox is checked, add a black background */
.container input:checked ~ .checkmark {
  border: 1px solid #333333;
  background-color: #333333;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 7.5px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

#error-msg {
  display: none;
  font-size: 12px;
  color: #dc000b;
}

.privacy-text {
  color: #656565;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 300;
}

.privacy-link {
  color: #1535a8;
  text-decoration: underline;
}

.form-btn {
  width: clamp(200px, 38%, 354px);
  height: 66px;
  margin: 0 auto;
  margin-top: 2.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(to bottom, #31AD17, #178500);
  color: white;
  font-size: 1.175rem;
  font-weight: 600;

  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.22);
  transition: 0.3s ease;
}

.form-btn:hover {
  opacity: 0.8;
}

.form-btn > img {
  width: 20px;
}

.form-last-txt{
    color: #fff;
    text-align: center;
    margin-top: -2rem;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: white;
  padding: 5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 1280px;
  height: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.popup-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.popup-text > img {
  width: 85px;
  height: 85px;
  object-fit: cover;
}

.popup-text > p {
  font-size: 22px;
}

.popup-button {
  max-width: 200px;
  height: 62px;
  margin-top: 80px;
  padding: 10px 30px;
  background-color: #333333; /* Change to match your site's color scheme */
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.popup-button:hover {
  background-color: #cecece;
}

footer{
    position: relative;
    background: #090C2B;
}

.pc-footer{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-logos{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.east-footer-logo{
    max-width: 64px;
    object-fit: contain;
}

.footer-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #fff;
}

.footer-content b{
    font-weight: 500;
}

.footer-content-wrap{
    display: flex;
    gap: 40px;
}

.about-comp, .address{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pmark{
    position: absolute;
    bottom: 60px;
    left: 5%;
    width: 80px;
    object-fit: contain;
}

.copyright{
    margin-left: auto;
    font-size: 12px;
    color: #fff;
}

.sp-footer{
    display: none;
}

@media (min-width: 751px) and (max-width: 1040px){
    section{
        padding: 80px 0;
    }

    .kv-wrapper{
        min-height: 70vh;
    }

    .kv-medal p{
        font-size: 16px;
    }

    .kv-medal img{
        max-width: 120px;
        margin-bottom: 1rem;
    }

    .news-section .section-wrapper h2,
    .eng-title {
        font-size: 44px;
    }

    .news-section .section-wrapper .articles-wrapper li{
        flex: 0 1 240px;
    }

    .line-title,
    .rectangle-txt h5 {
        font-size: 28px;
    }

    .section-wrapper h2{
        font-size: 20px;
    }

    .process-title{
        font-size: 28px;
    }

    .arrow{
        width: 50px;
    }

    .process-point{
        padding: 20px;
    }

    .process-point p{
        font-size: 20px;
    }

    .appeal-txt{
        font-size: 22px;
    }

    .four-points h3,
    .ai-wrapper h3{
        font-size: 32px;
    }

    .point-content h4 {
        font-size: 22px;
    }

    .number{
        font-size: 30px;
        padding: 14px 26px;
    }

    .ai{
        font-size: 24px;
    }

    .features-wrapper{
        gap: 100px;
    }

    .feature-point h3{
        font-size: 24px;
    }

    .cms-difference .process-title{
        font-size: 20px;
    }

    .big-no{
        font-size: 68px;
    }

    .east-one h3{
        font-size: 30px;
    }

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

    .faq-card h3{
        font-size: 20px;
    }

    .form-title h2{
        font-size: 28px;
    }

    .form-title p{
        font-size: 16px;
    }
}

@media (max-width: 750px) {
    p{
        font-size: 14px;
    }

    .sp-break{
        display: block;
    }

    .pc-break{
        display: none;
    }

    .side-btn{
        width: 90%;
        max-width: 400px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    header{
        background-color: #090C2B;
    }

    nav{
        width: 100%;
        max-width: 100%;
        padding: 20px 5%;
    }

    .header-logo{
        width: 100%;
        max-width: 160px;
    }

    nav .contact-link{
        display: none;
    }

    .mobile-menu .contact-link{
        display: block;
        color: #fff;
        margin: 0 auto;
        border-bottom: 0;
        width: 100%;
        max-width: 240px;
        margin-top: 30px; 
    }

    .hamburger{
        display: flex;
    }

    .kv-wrapper{
        min-height: 70vh;
    }

    .kv-medal{
        justify-content: center;
        margin-bottom: 1rem;
        gap: 10px;
    }

    .kv-medal p{
        font-size: 14px;
    }

    .kv-medal img{
        max-width: 85px;
    }

    .kv-video{
        width: 440%;
    }

    .kv-content h1{
        font-size: 17px;
        margin-bottom: 20px;
    }

    .kv-content p{
        font-size: 14px;
    }

    section, .why-llmo, .merit{
        padding: 50px 0;
    }

    .section-wrapper, .why-llmo .section-wrapper{
        gap: 32px;
    }

    .eng-title{
        font-size: 30px;
        line-height: 1.2;
    }

    .bracket-title{
        gap: 0;
    }

    .section-wrapper h2{
        font-size: 16px;
        line-height: 1.5;
    }

    .cms-logos{
        justify-content: space-evenly;
    }

    .blue-bg-txt p{
        font-size: 14px;
        font-weight: 400;
    }

    .cms-logos img{
        max-width: 100px;
    }

    .medals{
        display: none;
    }

    .sp-medals{
        display: block;
    }

    .clients{
        overflow: hidden;
    }

    .clients h2{
        font-size: 14px;
    }

    .clients-logos{
        overflow: hidden;
        display: inline-flex;
    }

    .clients-logos > .clients-logo-container:nth-child(2) {
        display: block;
        display: grid;
    }

    .clients-logo-container {
        grid-template-columns: repeat(7, 125px);
        grid-template-rows: repeat(3, 56px);
        gap: 3px;
        animation: 25s slide infinite linear;
    }

    .client-logo {
        width: 120px;
        height: 50px;
    }

    .client-logo img{
        height: 17px;
    }

    .client-logo:nth-child(3) img {
        height: 15px;
        object-fit: contain;
    }

    .client-logo:nth-child(10) img {
        height: 30px;
        object-fit: contain;
    }

    .client-logo:nth-child(12) img {
        height: 20px;
        object-fit: contain;
    }

    .client-logo:nth-child(13) img {
        height: 15px;
        object-fit: contain;
    }

    .client-logo:nth-child(15) img {
        height: 15px;
        object-fit: contain;
    }

    @keyframes slide {
        from {
        transform: translateX(0);
        }
        to {
        transform: translateX(-100%);
        }
    }

    .article-container{
        width: 100%;
        overflow: hidden;
        display: inline-flex;
        align-items: flex-start;
        gap: 10px;
    }

    .articles-wrapper{
        display: grid;
        grid-template-columns: repeat(8, 226px);
        align-items: flex-start;
        animation: 32s news-slide infinite linear;
        gap: 10px;
    }

    .news-section .section-wrapper .articles-wrapper li > p{
        font-size: 12px;
    }

    @keyframes news-slide {
        from {
        transform: translateX(0%);
        }
        to {
        transform: translateX(-101%);
        }
    }

    .section-three{
        background-image: url(/assets/images/section_three_sp_bg.webp);
    }

    .section-three-content h2{
        font-size: 23px;
    }

    .section-three-content .big-txt{
        font-size: 21px;
    }

    .bracket-title .bracket{
        font-weight: 500;
    }

    .btm-yellow-line{
        width: 90px;
    }

    .section-three-content p{
        font-size: 16px;
        font-weight: 400;
    }

    .news-section .section-wrapper h2{
        font-size: 24px;
    }

    .news-section .section-wrapper h2 img{
        width: 40px;
    }

    .news-section .section-wrapper p{
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .line-title{
        font-size: 20px;
        margin: 20px 0;
        align-items: center;
    }

    .reason-one-wrapper{
        grid-template-columns: 1fr;
    }

    .reason-two-wrapper{
        gap: 2rem;
    }

    .ai-fear h4{
        font-size: 20px;
    }

    .rectangle-txt{
        width: 100%;
        padding: 24px 14px;
    }

    .rectangle-txt h5{
        text-align: left;
        font-size: 20px;
    }

    .triangle-down{
        bottom: -50px;
        border-left: 100px solid transparent;
        border-right: 100px solid transparent;
        border-top: 50px solid #062D82;
    }

    .process{
        padding-bottom: 0;
    }

    .process-content{
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 30px 16px;
    }

    .after .process-point{
        min-height: auto;
        height: auto;
    }

    .after .process-point p{
        font-size: 16px;   
    }

    .after .process-point img {
        max-width: 186px;
    }

    .process-point{
        min-height: 140px;
        text-align: center;
    }

    .process-title{
        font-size: 26px;
    }

    .right-arrow{
        width: 45px;
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .appeal-txt{
        font-size: 20px;
        line-height: 1.5;
    }

    .blue-txt{
        font-size: 24px;
    }

    .center-txt{
        font-size: 18px;
    }

    .four-points{
        padding: 30px 20px;
    }

    .four-points h3{
        font-size: 20px;
    }

    .point-one{
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .number{
        font-size: 20px;
        padding: 8px 16px;
    }

    .point-content h4{
        font-size: 16px;
    }

    .point-content p{
        font-size: 13px;
    }

    .ai-wrapper h3{
        font-size: 24px;
    }

    .ai{
        font-size: 16px;
        max-width: 135px;
        height: 65px;
    }

    .ai-logos{
        gap: 10px;
    }

    table th{
        font-size: 12px;
    }

    table th, table td{
        padding: 10px;
    }

    thead tr th:nth-child(3){
        font-size: 14px;
    }

    tbody tr td:nth-child(1),
    tbody tr td:nth-child(2){
        font-size: 10px;
    }

    tbody tr td:nth-child(3){
        font-size: 12px;
    }

    .features-wrapper{
        padding: 40px 18px;
        gap: 64px;
    }

    .features-points{
        padding: 30px 20px;
    }

    .feature-content{
        grid-template-columns: 1fr;
        grid-template-areas: 
        "img"
        "txt";
        gap: 32px;
    }

    .feature-point h3{
        font-size: 20px;
    }

    .feature-content p{
        grid-area: txt;
    }

    .feature-content img{
        grid-area: img;
    }

    .feature-imgs{
        display: flex;
        flex-direction: column;
    }

    .cms-difference{
        grid-template-columns: 1fr;
    }

    .cms-difference .process-content{
        padding: 30px 20px;
    }

    .cms-difference .process-title{
        font-size: 18px;
        height: 100px;
    }

    .recommend-wrapper{
        grid-template-columns: 1fr;
    }

    .recommend-card h5{
        font-size: 20px;
        text-align: center;
    }

    .recommend-card img{
        height: 75px;
    }

    .big-no{
        font-size: 50px;
    }

    .line{
        font-size: 24px;
    }

    .white-sqr-txt{
        padding: 30px 20px;
    }

    .east-one{
        padding: 30px 20px;
    }

    .east-one h3{
        font-size: 20px;
    }

    .txt-img{
        grid-template-columns: 1fr;
    }

    .east-strengths{
        grid-template-columns: 1fr;
    }

    .strength-card img{
        height: 70px;
    }

    .works-imgs{
        grid-template-columns: 1fr;
    }

    .work-img p{
        padding: 16px;
    }

    .faq-card h3{
        font-size: 16px;
    }

    .faq-item{
        padding: 24px 0;
    }

    .question, .answer{
        align-items: flex-start;
    }

    .question{
        height: auto;
    }

    .plus-icon{
        font-size: 34px;
        line-height: 1;
    }

    .contact-form{
        padding: 60px 0;
    }

    .form-title h2{
        font-size: 24px;
    }

    .form-title p{
        font-size: 16px;
    }

    .inquiry-form {
        padding: 20px 20px 37px 20px;
        gap: 0;
    }

  .phone-inquiry {
    flex-direction: column;
  }

  .vertical-line {
    height: 1px;
    width: 40px;
  }

  .form > h3{
    font-size: 20px;
  }

  .phone-inquiry {
    padding: 20px 0;
    gap: 18px;
  }

  .phone-inquiry-title {
    font-size: 22px;
    font-weight: 400;
  }

  .phone-num img {
    height: 34px;
  }

  .phone-num a {
    font-weight: 500;
    font-size: 30px;
  }

  .phone-num {
    gap: 3px;
  }

  .input {
    height: 52px;
  }

  label {
    font-weight: 400;
  }

  input::placeholder {
    font-size: 12px;
  }

  .form-btn {
    width: max-content;
    height: 62px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 20px;
    gap: 12px;
  }

  .popup-content{
    width: 90%;
    height: 330px;
    padding: 30px;
  }

  .popup-text > img{
    width: 100px;
    height: 100px;
  }

  .popup-text > p{
    font-size: 16px;
  }

  .popup-button{
    margin-top: 33px;
  }

  .pmark{
    width: 60px;
    position: relative;
    bottom: 0;
    left: 0;
    margin: 0 auto;
  }

  .pc-footer{
    display: none;
  }

    .sp-footer{
        width: 90%;
        margin: 0 auto;
        display: block;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 40px 0;
    }

    .sp-footer .about-comp{
        display: none;
    }

    .east-footer-logo{
        max-width: 76px;
        margin-left: 1rem;
    }

    .footer-content-wrap{
        flex-direction: column;
        align-items: center;
        color: #fff;
        gap: 20px;
        margin: 1.5rem 0;
        text-align: center;
    }

    .address{
        gap: 10px ;
    }

    .copyright{
        margin: auto;
        margin-top: 10px;
    }
}