/*
Theme Name: Digitrad Payments
Description: A modern WordPress theme for Digitrad Payments - Revolutionary trade settlement system using stablecoins and eBL technology for simplified, secure, and speedy international trade transactions.
Author: Digitrad Team
Version: 1.0.0
License: GPL v2 or later
Text Domain: digitrad-payments
Domain Path: /languages/
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
Tags: business, finance, trading, responsive, modern, clean, professional
*/

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

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* common */
html {scroll-behavior: smooth;}
:root {
    --main-primary: #F8951D;
}

p {line-height: 2.2; letter-spacing: 1.8px; color: var(--main-text); word-wrap: break-word; font-size: 1.1rem;}
a {transition: 0.3s ease-in-out; text-decoration: none;}

a.primaryBtn {
    background: var(--main-primary);
    color: #fff;
    font-weight: 500;
    padding: 13px 35px 16px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.12);
    min-width: 240px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    font-size: 1.2rem;
    text-transform: capitalize;
    letter-spacing: 1px;
}
a.primaryBtn:after {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}
a.primaryBtn:hover, .secondaryBtn:hover {
    opacity: 0.8;
}

.secondaryBtn {
    background: #000;
    color: #fff;
    font-weight: 500;
    padding: 17px 35px 20px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.12);
    min-width: 260px;
    display: flex;
    justify-content: center;
    width: fit-content;
    font-size: 1.1rem;
    overflow: hidden;
	transition: 0.3s ease-in-out;
}
.secondaryBtn:after {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}
/* Header Styles */
/* header */
header#header {
    position: fixed;
    display: block;
    width: 100%;
    z-index: 10;
    transition: 0.3s ease-in-out;
    top: 0;
    left: 0;
}
header#header:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.65);
}
header#header.resize:before {
    opacity: 1;
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 2%;
	 transition: 0.3s ease-in-out;
	 position: relative;
}
.header__inner--left {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header__inner--left p {
    margin: 0;
    line-height: 1.83;
    color: #707070;
    font-size: 0.7rem;
}
.header__inner--left a img {
    vertical-align: bottom;
}

.header__inner a img {
    width: 100%;
    min-height: 60px;
	 transition: 0.5s ease-in-out;
}
.header__inner--right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}
ul.header__inner--rightText {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}
ul.header__inner--rightText li {
    position: relative;
    display: flex;
}
/*
ul.header__inner--rightText li:after {
    content: "";
    width: 1px;
    height: 20px;
    position: absolute;
    background: #ddd;
    top: 44%;
    transform: rotate3d(1, 1, 1, 45deg) translateY(-50%);
    right: -11px;
}
*/
ul.header__inner--rightText li a, ul.header__inner--rightText li span {
    position: relative;
    padding: 15px 5px;
    font-size: 1.2rem;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1px;
}
ul.header__inner--rightText li span {
    transition: 0.3s ease-in-out;
    cursor: pointer;
	padding-right: 20px;
}
li.hasChild:hover .hasChild__inner {
    opacity: 1;
    pointer-events: auto;
}
body ul.header__inner--rightText li.hasChild .hasChild__inner a {
    color: #000;
    padding-left: 18px;
}
.hasChild__inner a:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0px;
    top: 52%;
    transform: translateY(-50%);
    opacity: 0.4;
}
ul.header__inner--rightText li a:hover {
    opacity: 0.6;
}
ul.header__inner--rightText li:last-child:after {
    content: none;
}
.header__inner--btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.header__inner--btn a {
    min-width: auto;
    width: 200px;
    padding-left: 10px;
    padding-right: 10px;
}
.header__inner--btn a:after {
    right: 10px;
}
.header__inner--left a:hover {
    opacity: 0.7;
}
header#header.resize ul.header__inner--rightText li a, header#header.resize ul.header__inner--rightText li span {
    color: #000;
}
header#header.resize .header__inner {
    padding-top: 2px;
    padding-bottom: 2px;
}
ul.header__inner--rightText li.hasChild:hover span {
    color: var(--main-primary);
}

/* トグル */
.toggle {
    display: none;
    transition: 0.2s ease-in-out;
}
/* MENU */
nav.navLinks a {
    text-decoration: none;
}
nav.navLinks .parentMenu {
    border: none;
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.navLinks .parentMenu li {
    margin: 0;
    padding: 0;
    position: relative;
}
.navLinks .parentMenu li a {
    padding: 0 15px;
    line-height: 70px;
    display: inline-block;
    color: #313131;
    position: relative;
}
/* 親メニューのhover時の下線 */
.navLinks .parentMenu li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 100%;
    height: 3px;
    background: #f0db40;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}
.navLinks .parentMenu li a:hover:after {
    transform: scale(1, 1);
}
/* サブメニュー */
nav.navLinks .parentMenu li ul.navSubMenu {
    display: none;
    border-radius: 0;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    background: #FFF;
    transition: 0.3s ease-in-out;
    list-style: none;
}
.navLinks .parentMenu li ul.navSubMenu li a {
    line-height: 1;
    padding: 20px 25px;
    border-bottom: solid 1px #eee;
}
ul.navSubMenu li:last-child a {
    border: none;
}
nav.navLinks .parentMenu li:hover ul.navSubMenu {
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 5px rgb(0 0 0 / 22%);
    gap: 0;
}
nav.navLinks .parentMenu li ul.navSubMenu li a:after {
    content: none;
}
ul.navSubMenu li a:hover {
    background: #fafafa;
}
/* header sub menu */
.hasChild__inner {
    opacity: 0;
    position: absolute;
    top: 100%;
    background: #fff;
    left: 0;
    box-shadow: 0px 1px 20px 0px rgba(58, 52, 255, 0.10);
    padding: 7px 20px 12px;
    display: flex;
    flex-direction: column;
    width: max-content;
    pointer-events: none;
    transition: 0.2s ease-in-out;
    gap: 0;
    border-radius: 3px;
}
li.hasChild span:before {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 52%;
    transform: translateY(-50%);
    opacity: 0.6;
}
.spNone {
    display: inline-block;
}
img.mvundertext_sp {
    display: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.btn-success {
    background: #27ae60;
    color: white;
}

.btn-success:hover {
    background: #219a52;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-dark {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-title p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Problem/Solution Cards */
.problem-card, .benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.problem-card:hover, .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.problem-card .icon, .benefit-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: block;
}

.problem-card h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #27ae60;
    margin-bottom: 1rem;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #3498db;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.status-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.status-good {
    color: #27ae60;
    font-weight: bold;
}

.status-average {
    color: #f39c12;
    font-weight: bold;
}

.status-poor {
    color: #e74c3c;
    font-weight: bold;
}

/* FAQ Section */
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    background: #3498db;
    color: white;
    cursor: pointer;
    margin: 0;
    font-weight: 600;
    border-radius: 5px 5px 0 0;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    background: white;
    border-radius: 0 0 5px 5px;
}

.faq-answer.active {
    display: block;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-menu a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .row {
        margin: 0;
    }

    .col-md-6,
    .col-md-4,
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .site-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 600px;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        display: block;
        margin: 10px 0;
        width: 100%;
    }

    .section {
        padding: 2rem 0;
    }

    .problem-card,
    .benefit-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }

/* WordPress Specific Classes */
.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-image {
    text-align: center;
    margin: 2rem 0;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.aligncenter {
    text-align: center;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin: 0 1rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1rem;
}

.screen-reader-text {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}


/* mv */
section#topMV {
    position: relative;
    background: url(/wp-content/uploads/2025/07/topMV_BG_.jpg) no-repeat;
    background-size: cover;
    background-position: center;
	overflow: hidden;
}
section#topMV:before {
    content: "";
    width: 800px;
    height: 800px;
    background: url(https://standage.jp/wp-content/uploads/2025/07/logos.svg) no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
	pointer-events: none;
}
.topMV__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 700px;
    justify-content: center;
    align-items: center;
    text-align: center;
	gap: 20px;
	position: relative;
    z-index: 1;
}
.topMV__inner h1 {
    margin: 0;
    color: #fff;
    letter-spacing: 3px;
    font-size: 5.3rem;
	text-shadow: 0px 0px 24px rgba(255, 255, 255, 0.75);
	font-weight: 700;
}
.topMV__inner p {
    color: #fff;
    margin: 0;
}
.topMV__inner a.primaryBtn {
    margin-top: 22px;
}

/* fv under */
section#numbers {
    position: relative;
    background: #000;
}
.numbers__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0 65px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.numbers__inner h2 {
    text-align: center;
    color: #fff;
    margin: 0;
    letter-spacing: 3px;
    font-size: 2.8rem;
}
ul.numbers__inner--lists {
    display: flex;
    justify-content: space-between;
    position: relative;
}
ul.numbers__inner--lists li {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
    padding: 0 30px;
}
ul.numbers__inner--lists li:before {
    content: "";
    width: 40px;
    height: 90px;
    background: url(/wp-content/uploads/2025/07/leafleft.svg) no-repeat;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background-size: cover;
}
ul.numbers__inner--lists li:after {
    content: "";
    width: 40px;
    height: 90px;
    background: url(/wp-content/uploads/2025/07/leafright.svg) no-repeat;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background-size: cover;
}
ul.numbers__inner--lists li h3 {
    color: #fff;
    font-size: 2.9rem;
    letter-spacing: 2px;
    margin: 0;
    line-height: 120%;
}
ul.numbers__inner--lists li h3 span {
    font-size: 1.6rem;
    padding-left: 3px;
}
ul.numbers__inner--lists li p {
    color: #fff;
    font-size: 0.7rem;
    margin: 0;
}

/* solution */
section#solution {
    position: relative;
}
.solution__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.solution__inner--top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.solution__inner--topLeft {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 55%;
}
.solution__inner--topLeft h2, .solution__inner--topLeft p {
    margin: 0;
}
.solution__inner--topLeft h2 {
    color: #000;
    font-size: 2.4rem;
    letter-spacing: 1px;
}
.solution__inner--topRight {
    width: 45%;
}
.solution__inner--topRight img {
    width: 100%;
    transform: scale(1.1) translateX(20px);
}
.solution__inner--bottom {
    background: var(--main-gradient, linear-gradient(90deg, #F8951D 0%, #FFAE4C 100%));
    margin: auto calc(50% - 50vw);
    padding: 80px 0;
}
ul.solution__inner--bottomList {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
ul.solution__inner--bottomList li {
    width: 31%;
	list-style: none;
}
a.product {
    border-radius: 5px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
    gap: 25px;
	filter: drop-shadow(-20px 2px 34px rgba(0, 0, 0, 0.06));
	height: 100%;
}
a.product:hover {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
}
a.product h3, a.product p {
    margin: 0;
}
.productHeader {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #000;
}
.productHeader h3 {
    letter-spacing: 1px;
    font-size: 1.7rem;
	transition: 0.3s ease-in-out;
}
a.product:hover .productHeader h3 {
    color: var(--main-primary);
}
.productHeader p {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
p.productDesc {
    color: #222;
    line-height: 1.83;
    flex-grow: 1;
}
ul.productList {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px 25px;
    gap: 12px;
    background: #f9f9f9;
    border-radius: 3px;
}
ul.productList li {
    width: 100%;
    padding-left: 25px;
    position: relative;
    color: #000;
    font-weight: 600;
}
ul.productList li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--main-primary);
}
a.product button.secondaryBtn {
    margin: 0 auto;
}
a.product:hover button.secondaryBtn {
    opacity: 0.8;
}
button.secondaryBtn {
    cursor: pointer;
}

/* choose */
section#choose {
    position: relative;
    margin-top: -40px;
	padding-bottom: 80px;
}
.choose__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 55px;
}
.choose__inner--img {
    display: flex;
    justify-content: center;
}
.choose__inner--img img {
    width: 100%;
    max-width: 520px;
}
.choose__inner--text {
    border: solid 1px #ddd;
    padding: 55px 50px 45px;
    border-radius: 5px;
	position: relative;
	display: flex;
    flex-direction: column;
    gap: 35px;
}
.choose__inner--text h2 {
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 40px;
    font-size: 2.4rem;
    color: var(--main-primary);
    margin: 0;
}
p.choose__inner--textDesc {
    text-align: center;
    margin: 0;
}

ul.choose__inner--list {
    display: flex;
    justify-content: space-between;
	list-style: none;
}
ul.choose__inner--list li {
    width: 22%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.choose__inner--listIcon {
    background: #f9f9f9;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin: 0 auto;
}
ul.choose__inner--list li h3 {
    text-align: center;
    margin: 0;
    color: #000;
}
ul.choose__inner--list li p {
    line-height: 1.83;
    color: #000;
    letter-spacing: 1px;
    font-size: 1rem;
	margin: 0;
	text-align: center;
}

/* cta */
section#contactCta {
    position: relative;
    background: #165FAA;
    padding: 80px 0;
}
.contactCta__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 45px 50px;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}
.contactCta__inner:before {
    content: "";
    width: 100%;
    height: 500px;
    background: url(https://standage.jp/wp-content/uploads/2025/07/bluemap.svg) no-repeat;
    top: 0;
    background-size: cover;
    position: absolute;
    background-position: center;
	left: 0;
}
.contactCta__inner h2 {
    text-align: center;
    margin: 0;
    line-height: 150%;
    letter-spacing: 0.6px;
    font-weight: 600;
    font-size: 2.4rem;
	position: relative;
    z-index: 2;
	color: #000;
}
.contactCta__inner p {
    margin: 0 auto;
    text-align: center;
	position: relative;
    z-index: 2;
}
.contactCta__inner a.primaryBtn {
    width: fit-content;
    margin: 0 auto;
    margin-top: 15px;
	position: relative;
    z-index: 2;
}

/* footer */
/* footer */
footer#footer {
    position: relative;
    background: #000;
    border-bottom: solid 10px var(--main-primary);
}
.footer__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
	 gap: 60px;
}
.footer__inner--left a {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__inner--left a img {
    height: 80px;
}
.footer__inner--left a p {
    color: #fff;
    font-size: 0.8rem;
}
.footer__inner--left a:hover {
    opacity: 0.7;
}
.footer__inner--left {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.footer__inner--leftBottom img {
    width: 100%;
	vertical-align: bottom;
}
.footer__inner--right {
    width: 58%;
    display: flex;
    flex-direction: column;
    gap: 70px;
}
ul.footer__inner--rightTop {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 5px;
	 position: relative;
	list-style: none;
}
ul.footer__inner--rightTop:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #313131;
    position: absolute;
    bottom: -35px;
}
ul.footer__inner--rightTop li {
    width: calc(100% / 3 - 40px);
}
ul.footer__inner--rightTop li a, ul.footerLinks li a {
    color: #fff;
    position: relative;
    display: inline-block;
    padding: 8px 24px;
    font-size: 1rem;
}
ul.footer__inner--rightTop li a:before, ul.footerLinks li a:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 6px;
    top: 52%;
    transform: translateY(-50%);
    opacity: 0.4;
    color: #fff;
}
ul.footer__inner--rightTop li a:hover, ul.footerLinks li a:hover, ul.outerLinks li a:hover {
    opacity: 0.7;
}
.footer__inner--rightBottom {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
ul.footerLinks {
    display: flex;
    flex-direction: column;
    width: 46%;
	list-style: none;
}
ul.footerLinks li h2 {
    color: rgb(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-transform: capitalize;
}
.footer__inner--bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}
.footer__inner--bottom p {
    color: #fff;
    font-size: 0.8rem;
	margin: 0;
}
ul.outerLinks {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
	list-style: none;
}
ul.outerLinks li a {
    color: #fff;
    font-size: 0.8rem;
    padding: 8px 8px;
    display: inline-block;
	 position: relative;
}
a.targetBlank:after {
    content: "\f2d2";
    font-family: "Font Awesome 5 Free";
    font-weight: 100;
    position: relative;
    opacity: 0.6;
    padding-left: 5px;
}

/* payment */
body.page-id-34 .hero-image {
    box-shadow: none;
    filter: drop-shadow(0px 1px 6px #707070);
}

/* forwarding */
body.page-id-40 section.gradient-bg.hero-pattern.text-white.py-20 {
    background: #222;
}
/* function */
section#function .function__inner {
    padding-top: 80px;
}
.function__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    gap: 50px;
    padding-bottom: 80px;
    text-align: center;
}
.finction__inner--heading h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 500;
    gap: 20px;
    letter-spacing: 0.08rem;
}
.finction__inner--heading h3 span {
    color: var(--primary-base);
    font-size: 1.1rem;
    text-transform: capitalize;
}
.function__inner--wrapper {
    border-radius: 4px;
    background: url(https://wp.standage.co.jp/wp-content/themes/twenty-twenty-one-child/lp_asset/forwarding/img/function_BGimg.png) no-repeat;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.10);
    position: relative;
    padding: 60px 45px 125px;
    overflow: hidden;
    background-size: cover;
}
.function__inner--wrapper:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(255,255,255,0.5);
    position: absolute;
    top: 0;
    left: 0;
}
.siwperPCImage {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    mix-blend-mode: multiply;
    pointer-events: none;
}
.siwperPCImage img {
    width: 860px;
    margin: 0 auto;
    display: block;
}
.function__inner--itemImg {
    display: flex;
    justify-content: center;
    position: relative;
    padding-top: 30px;
    margin-bottom: 80px;
}
.function__inner--itemImg img {
    width: 660px;
}
.function__inner--itemText {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.function__inner--itemText h4 {
    position: relative;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.08rem;
}
.function__inner--itemText h4:before {
    content: "";
    width: 35px;
    height: 35px;
    background: var(--main-primary);
    position: absolute;
    left: -45px;
    top: 0px;
    border-radius: 4px;
}
.function__inner--itemText h4:after {
    content: "";
    width: 27px;
    height: 27px;
    background: url(https://wp.standage.co.jp/wp-content/themes/twenty-twenty-one-child/lp_asset/forwarding/img/function_chat.svg) no-repeat;
    position: absolute;
    left: -41px;
    top: 5px;
    background-size: contain;
}
h4.maching:after {
    background: url(https://wp.standage.co.jp/wp-content/themes/twenty-twenty-one-child/lp_asset/forwarding/img/matching.svg) no-repeat;
    position: absolute;
    background-size: contain;
}
h4.mitsumori:after {
    background: url(https://wp.standage.co.jp/wp-content/themes/twenty-twenty-one-child/lp_asset/forwarding/img/anken.svg) no-repeat;
    position: absolute;
    background-size: contain;
}
h4.ankenkanri:after {
    background: url(https://wp.standage.co.jp/wp-content/themes/twenty-twenty-one-child/lp_asset/forwarding/img/folder.svg) no-repeat;
    position: absolute;
    background-size: contain;
}
.function__inner--itemText p {
    text-align: center;
    line-height: 2.13;
}
.swiper-container {
    position: relative;
}
.swiper-pagination {
    bottom: -65px !important;
    transform: scale(2.6);
	z-index:1;
}
.swiper-pagination-bullet-active {
    background: var(--primary-base,var(--primary-base));
}
.swiper-button-prev, .swiper-button-next {
    background: var(--primary-base);
    padding: 30px;
    border-radius: 9999px;
    color: #fff;
    transition: 0.3s ease-in-out;
    top: 38%;
}
.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 1.5rem;
    transition: 0.3s ease-in-out;
}
.swiper-button-prev:after {
    transform: translateX(-2px);
}
.swiper-button-next:after {
    transform: translateX(2px);
}
.swiper-button-prev:hover, .swiper-button-next:hover {
    opacity: 0.8;
}

.function__inner .text-center.mb-16 {
    margin-bottom: 0;
}

/* forwarding modal */
/* modal-video */
.videomodal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}
.videomodal-content {
    position: absolute;
    background-color: #fefefe;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0px 1px 4px #707070);
    border-radius: 5px;
	 animation: fadeHeader 1s ease 0s 1 normal;
}

#video-player {
    width: 100%;
	 margin-bottom: -5px;
}

#play-video {
    padding: 15px;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.10);
    position: relative;
	 cursor: pointer;
	width: fit-content;
    margin: 0 auto;
}

.image-container {
    
}
.image-containerIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	 transition: 0.3s ease-in-out;
}
.image-text {
    text-align: center;
    padding: 8px 0 0px;
}
.image-text h3 {
    font-size: 1.2rem;
    line-height: 1.1;
}
.image-text h3 span {
    font-size: 0.7rem;
    color: #707070;
}
#play-video:hover .image-containerIcon {
    opacity: 0.7;
}

/* about page */
section#aboutPage {
    position: relative;
    background: #000;
}
section#aboutPage:before {
    content: "";
    width: 100%;
    height: 800px;
    background: url(https://wp.standage.co.jp/wp-content/uploads/2024/07/aboutBg_.jpg) no-repeat;
    position: absolute;
    top: 0px;
    left: 0;
    background-size: cover;
}
.aboutPage__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 180px;
    padding-bottom: 120px;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    gap: 140px;
}
.aboutPage__inner--message {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.aboutPage__inner--message h1, .aboutPage__inner--message h2 {
    color: var(--main-primary);
    font-family: Roboto;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 800;
    letter-spacing: 1px;
}
.aboutPage__inner--message p {
    color: #FFF;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.45);
    font-size: 3.1rem;
    line-height: 145%;
    font-weight: 700;
    letter-spacing: 4px;
	 animation: fadeHeader 2s ease 0s 1 normal;
}
.aboutPage__inner--ceo {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.aboutPage__inner--ceoImg {
    width: 380px;
}
.aboutPage__inner--ceoImg img {
    width: 100%;
    vertical-align: bottom;
}
.aboutPage__inner--ceotext {
    width: calc(100% - 450px - 60px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.aboutPage__inner--ceotext p {
    color: #fff;
}
p.aboutPage__inner--ceotextProfile {
    text-align: end;
    display: flex;
    flex-direction: column;
}
p.aboutPage__inner--ceotextProfile {
    text-align: end;
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
    gap: 8px;
	 margin-top: 20px;
}
p.aboutPage__inner--ceotextProfile span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #ccc;
}

/* aboutpage under */
section#aboutUnder {
    position: relative;
    background: var(--main-primary);
    padding: 120px 0;
}
section#aboutUnder:before {
    content: "";
    width: 100%;
    height: 720px;
    background: url(https://wp.standage.co.jp/wp-content/uploads/2024/07/tokyo_.jpg) no-repeat;
    position: absolute;
    top: 0;
    background-size: cover;
    background-position-y: top;
}
.aboutUnder__inner {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    background: #FFF;
    box-shadow: -20px 2px 34px 0px rgba(0, 0, 0, 0.06);
    position: relative;
	 padding: 100px 0;
}
.aboutUnder__inner:before {
    content: "";
    width: 100%;
    margin-left: calc(50% - 50vw);
    position: absolute;
    left: 0;
    height: 100%;
    background: #fff;
    top: 0;
    pointer-events: none;
}
.aboutUnder__innerBlock {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
}
h2.heading {
    font-size: 2rem;
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 0.3s ease-in-out;
    padding-bottom: 30px;
}
h2.heading:after {
    content: "";
    width: 100px;
    height: 1px;
    background: var(--main-primary);
    position: absolute;
    bottom: 0;
    left: 0;
}
dl.aboutUnder__inner--list {
    display: flex;
    flex-direction: column;
    gap: 45px;
}
.aboutUnder__inner--listRow {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    align-items: flex-start;
}
.aboutUnder__inner--listRow dt {
    width: 140px;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    border-right: solid 1px #ddd;
    padding: 6px 0 4px;
	word-wrap: break-word;
}
.aboutUnder__inner--listRow dd {
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    width: calc(100% - 140px - 60px);
    line-height: 2;
}
.aboutUnder__inner--listRow dd a.primaryBtn {
    width: fit-content;
}

/* member */
section#member {
    position: relative;
}
.member__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    padding: 100px 0;
}
ul.member__inner--list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
	 gap: 45px;
}
ul.member__inner--list:after {
    content: "";
    width: 240px;
}
ul.member__inner--list li {
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
ul.member__inner--list li img {
	transition: 0.3s ease-in-out;
}
.member__inner--names {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
}
.member__inner--names h3 {
    font-size: 1.3rem;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease-in-out;
	margin: 0;
}
.member__inner--names h3:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    opacity: 0.6;
    transition: 0.3s ease-in-out;
    font-size: 1.1rem;
    vertical-align: 1px;
    padding-right: 7px;
}
.member__inner--names p {
    color: #707070;
    font-size: 0.9rem;
}
ul.member__inner--list li:hover .member__inner--names h3 {
    color: var(--main-primary);
}
ul.member__inner--list li:hover > img {
    opacity: 0.8;
}

/* modal */
.modal {
  display: none;
  position: fixed;
  z-index: 8887;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 1s ease-in-out;
}
.modal-container .img {
    background: #f1f1f1;
    margin-bottom: 15px;
}
.modal-container p {
    margin-bottom: 10px;
}
.modal-container p:last-child {
    margin-bottom: 0;
}
.modal-content {
    background: #FFF;
    padding: 30px 35px;
    width: 90%;
    max-width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: show 0.6s linear 0s;
    filter: drop-shadow(0px 2px 6px #777);
}
.modal-top {
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 15px;
}
.modal-close {
    color: #000;
    text-decoration: none;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0 6px 2px;
    border: solid 1px #707070;
	 transition: 0.3s ease-in-out;
}
span.modal-close:hover {
    background: rgb(0, 0, 0, 0.1);
}
.modal-close:hover, .modal-close:focus {
  text-decoration: none;
  cursor: pointer;
}

.modal-container {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}
.modal-container img {
    height: fit-content;
    width: 240px;
}
.modal__rightText {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.modal__rightTextATop h4 {
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease-in-out;
	margin: 0;
}
.modal__rightTextATop p {
    color: #707070;
    font-size: 0.9rem;
}
.modal__rightTextAProfile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    overflow-y: scroll;
    padding: 12px 20px;
    background: #f9f9f9;
}
.modal__rightTextAProfile p {
    line-height: 173%;
    font-size: 0.9rem;
    color: #222;
    margin: 0;
}

/* スクロールバー */
.modal__rightTextAProfile::-webkit-scrollbar {
    width: 10px;
    /* 横幅 */
}

.modal__rightTextAProfile::-webkit-scrollbar-track {
    background: #ccc;
    /* トラックの背景 */
    border-radius: 12px;
    /* トラックの丸み */
    box-shadow: inset 0 0 1px #999;
    /* トラックの枠 */
}

.modal__rightTextAProfile::-webkit-scrollbar-thumb {
    background: var(--main-primary);
    /* バーの色 */
    border-radius: 12px;
    /* バーの丸み */
    box-shadow: none;
    /* バーの枠 */
}

@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/* place */
section#corpPlace {
    position: relative;
}
.corpPlace__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    padding: 40px 0 100px;
}
ul.corpPlace__inner--list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 35px;
}
ul.corpPlace__inner--list:after {
    content: "";
    width: calc(100% / 3 - 25px);
}
ul.corpPlace__inner--list li {
    width: calc(100% / 3 - 25px);
    display: flex;
    flex-direction: column;
}
ul.corpPlace__inner--list li h3 {
    padding: 12px 0 12px 25px;
    border-left: solid 3px var(--main-primary);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}
.corpPlace__inner--listBottom {
    padding: 4px 15px 12px 25px;
    border-left: solid 3px #eee;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
p.address {
    line-height: 1.8;
    color: #222;
}
.phonefax {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.phonefax p {
    font-size: 0.9rem;
    color: #222;
    position: relative;
}
p.phoneNum:before {
    content: "\f879";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    opacity: 0.6;
    transition: 0.3s ease-in-out;
    font-size: 0.9rem;
    vertical-align: -1px;
    padding-right: 4px;
}
p.faxNum:before {
    content: "\f1ac";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    opacity: 0.6;
    transition: 0.3s ease-in-out;
    font-size: 0.9rem;
    vertical-align: -1px;
    padding-right: 3px;
}
a.watchMap {
    position: relative;
    background: #000;
    color: #fff;
    width: fit-content;
    padding: 6px 14px 8px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 6px;
}
a.watchMap:after {
    content: "\f2d2";
    font-family: "Font Awesome 5 Free";
    font-weight: 100;
    position: relative;
    opacity: 0.6;
    transition: 0.3s ease-in-out;
    font-size: 0.9rem;
    padding-left: 5px;
}

/* form */
.contact-form.paymentForm p br {
    display: none;
}
form.wpcf7-form.init label {
    display: flex;
    flex-direction: column;
	font-size: 0.9rem;
}
form.wpcf7-form input, form.wpcf7-form select {
    height: 42px;
    width: 100%;
    font-size: 0.9rem;
    padding: 0 12px;
    border: solid 1px #ddd;
    border-radius: 5px;
}
form.wpcf7-form textarea {
    width: 100%;
    font-size: 0.9rem;
    padding: 0 12px;
    border: solid 1px #ddd;
    border-radius: 5px;
}
.wpcf7-not-valid-tip {
    font-size: 0.8rem;
    margin-top: 2.9px;
}
input.wpcf7-form-control.wpcf7-submit {
    background: var(--main-primary);
    color: #fff;
    font-weight: 500;
    padding: 15px 35px 16px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.12);
    min-width: 240px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    font-size: 1.1rem;
    text-transform: capitalize;
    letter-spacing: 1px;
    height: 52px;
    cursor: pointer;
    transition: 0.3s;
    width: fit-content;
    margin: 0 auto;
}
input.wpcf7-form-control.wpcf7-submit:hover {
    opacity: 0.7;
}
body.page-id-37 section#contact form.wpcf7-form input.wpcf7-form-control.wpcf7-submit {
    padding-top: 5px;
}

/* form */
section#serviceHead.primary {
    background: var(--main-primary);
}
section#serviceHead.primary .serviceHead__inner {
    height: 300px;
}
.serviceHead__inner {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    height: 400px;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
}
.serviceHead__inner h1 {
    font-size: 2rem;
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
	 z-index: 1;
	 animation: fadeHeader 2s ease 0s 1 normal;
}
.serviceHead__inner p {
    font-family: Roboto;
    font-size: 10rem;
    font-style: italic;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 2px;
    z-index: 1;
    opacity: 0.12;
    color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-54%);
}

/* form */
section#form {
    padding: 80px 0 100px;
}
.form__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.form__innerleft {
    width: 40%;
}
.form__innerleft .case__innerHeading {
    flex-direction: column;
    gap: 25px;
    align-items: baseline;
    display: flex;
}

ul.form__innerlist--text {
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 3px;
	 width: 100%;
	list-style: none;
}
.case__innerHeading p {
    font-size: 1.1rem;
}
ul.form__innerlist--text li {
    position: relative;
    padding-left: 38px;
	 font-size: 1.1rem;
}
ul.form__innerlist--text li:before {
    left: 8px;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    color: var(--main-primary);
}
.form__innerleft--img {
    max-width: 450px;
    text-align: center;
    border: solid 1px #ccc;
    padding: 35px 40px;
    width: 100%;
    border-radius: 3px;
	 background: #f9f9f9;
}
.form__innerleft--img img {
    filter: drop-shadow(0px 1px 8px #ddd);
}
.form__innerright {
    border-radius: 5px;
    width: 56%;
    padding: 15px 20px 0;
    position: relative;
    background: #fff;
    filter: drop-shadow(-4px 2px 12px rgba(0, 0, 0, 0.06));
}
p.form__innerright--text {
    margin-bottom: 20px;
    text-align: center;
    color: #707070;
    font-size: 0.9rem;
    margin-top: 15px;
}
p.tyuusya {
    font-size: 0.8rem;
    color: #707070;
    letter-spacing: 1px;
}

@media screen and (max-width: 1250px) {
	/* （ここに1250以下スタイルを記述） */
	.aboutPage__inner {
        padding-left: 4%;
        padding-right: 4%;
    }
	.aboutUnder__inner {
        padding-left: 4%;
        padding-right: 4%;
    }
	 .serviceHead__inner {
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media screen and (max-width: 1200px) {
/* （ここに1200以下スタイルを記述） */
	/* header */
	.headeroverlay {
	  width: 100%;
	  height: 100vh;
	  position: fixed;
	  left: 0;
	  top: 0;
	  background-color: rgba(0,0,0,.3);
	  z-index: 190;
	  opacity: 0;
	  visibility: hidden;
	  transition: all 200ms ease-in;
	}
	nav.navLinks {
	  width: 300px;
	  height: 100vh;
	  background-color: #222;
	  right: -300px;
	  top: 0;
	  position: fixed;
	  padding: 20px 0;
	  transition: all 200ms ease-in-out;
	  z-index: 999;
	}
	nav.navLinks .parentMenu {
		border: none;
		padding: 0;
		flex-direction: column;
	}
	.toggle {
	  position: absolute;
	  right: 100%;
	  width: 50px;
	  height: 50px;
	  color: #313131;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  font-size: 20px;
	  cursor: pointer;
	  top: 15px;
	}
	span.toggler,
	span.toggler:before,
	span.toggler:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background-color: #313131;
		position: absolute;
		pointer-events: none;
	}

	span.toggler:before{
		bottom: 9px;
	}
	span.toggler:after {
		top: 9px;
	}
	span.deleteclass {
		background-color: transparent;
	}
	span.deleteclass::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	span.deleteclass::after {
		top: 0;
		transform: rotate(-45deg);
	}

	.navLinks ul li {
	  display: block;
	  list-style: none;
	  margin: 0;
	  padding: 0;
	  width: 100%;
	 padding-left: 20px;
	}
	.navLinks .parentMenu li a {
	  padding: 10px 20px;
	  display: block;
	  color: #313131;
	  font-size: 1rem;
	  text-decoration: none;
	  transition: all 200ms ease;
	  line-height: 1;
	  display: block;
	}
	.navLinks ul li a:hover {
	  background-color: rgb(255, 255, 255, 0.1);
	}
	/* Show Nav */
	.show-nav nav.navLinks {
	  right: 0;
	  box-shadow: 0 2px 4px rgba(0,0,0,.6);
	}
	.show-nav .headeroverlay {
	  opacity: 1;
	  visibility: visible;
	}
	/* SUBMENU */
	nav.navLinks .parentMenu li ul.navSubMenu {
		display: block;
		position: relative;
	}

	/* スクロールで可変 */
	div#header.resize .headerInner {
		height: 35px;
	}
	div#header.resize .toggle {
		height: 35px;
	}
	div#header.resize .toggle .toggler, div#header.resize .toggle .toggler:before, div#header.resize .toggle .toggler:after {
		height: 2px;
		width: 18px;
	}
	div#header.resize span.toggler:before{
		bottom: 6px;
	}
	div#header.resize span.toggler:after {
		top: 6px;
	}
	div#header.resize span.deleteclass::before {
		bottom: 0;
	}
	div#header.resize span.deleteclass::after {
		top: 0;
	}
	/* header inner */
	.header__inner--right {
    display: flex;
    flex-direction: column;
	}
	ul.header__inner--rightText {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
	}
	ul.header__inner--rightText li a, ul.header__inner--rightText li span {
    padding: 14px 20px;
    font-size: 1.1rem;
    padding-left: 25px;
	 display: block;
	 width: 100%;
	 color: #fff !important;
	}
	ul.header__inner--rightText li:after {
    content: none;
	}
	ul.header__inner--rightText li a:before, ul.header__inner--rightText li span:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 5px;
    top: 52%;
    transform: translateY(-50%);
    opacity: 0.4;
    color: #fff;
	}
	.header__inner--btn {
    flex-direction: column;
	}
	.header__inner--btn a {
    width: 240px;
	}
	/* */
	header#header.resize ul.header__inner--rightText li a {
    color: #fff;
	}
	/* header accordion */
	.hasChild__inner {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease-out;
	}

	/* アコーディオンメニューが開いている状態 */
	.hasChild.open .hasChild__inner {
		max-height: 1000px; /* 十分に大きな値を設定（必要に応じて調整可能） */
	}
	.hasChild__inner {
   		padding: 0;
        position: relative;
        opacity: 1;
        pointer-events: auto;
        display: flex;
        flex-direction: column;
        background: none;
		padding-left: 27px;
	}
	ul.header__inner--rightText li.hasChild .hasChild__inner a {
    padding-left: 30px;
    color: #fff;
    font-size: 1rem;
    width: 100%;
    display: block;
	}
	li.hasChild.open span {
    color: var(--main-primary);
	}
	li.hasChild span:after {
    content: "\f055";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 49%;
    transform: translateY(-50%);
    opacity: 0.8;
    color: #fff;
    font-size: 0.9rem;
	}
	li.hasChild.open span:after {
    content: "\f056";
	}
	ul.header__inner--rightText li.hasChild.open span, ul.header__inner--rightText li.hasChild.open span:after {
    color: var(--main-primary);
	}
	.spNone {
    display: block;
	}
	
	/* top */
	.topMV__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.solution__inner--top {
    padding-left: 4%;
    padding-right: 4%;
	}
	ul.solution__inner--bottomList {
    padding-left: 4%;
    padding-right: 4%;
	}
	.choose__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	section#contactCta {
    padding-left: 4%;
    padding-right: 4%;
	}
	.footer__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
}

@media screen and (max-width: 1100px) {
/* （ここに1100以下スタイルを記述） */
	.numbers__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	ul.numbers__inner--lists {
    flex-wrap: wrap;
    gap: 25px 70px;
    justify-content: center;
	}
	ul.numbers__inner--lists li {
    width: 32%;
	}
	.solution__inner--topLeft p br {
    display: none;
	}
	ul.solution__inner--bottomList {
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
	}
	ul.solution__inner--bottomList li {
    width: 45%;
	}
	.choose__inner--text h2 {
    white-space: nowrap;
	}
	ul.choose__inner--list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
	}
	ul.choose__inner--list li {
    width: 40%;
	}
	/* footer */
	.footer__inner {
    flex-direction: column;
    align-items: center;
	}
	.footer__inner--left {
    text-align: center;
	}
	.footer__inner--right {
    width: 100%;
	}
	.footer__inner--rightBottom {
    justify-content: center;
	}
	.footer__inner--bottom {
    flex-direction: column-reverse;
    gap: 25px;
	}
	ul.footer__inner--rightTop {
    justify-content: center;
	}
	ul.footer__inner--rightTop li {
    width: auto;
	}
	ul.footerLinks {
    width: fit-content;
	}
	.member__inner {
        padding-left: 4%;
        padding-right: 4%;
    }
	.corpPlace__inner {
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media screen and (max-width: 1100px) {
	 .form__inner {
        padding-left: 4%;
        padding-right: 4%;
        flex-direction: column;
        gap: 40px;
    }
	    .form__innerleft, .form__innerright {
        width: 100%;
    }
}


@media screen and (max-width: 767px) {
/* （ここにモバイル用スタイルを記述） */
	/* header */
	.header__inner--left p {
    display: none;
	}
	.resize .toggle {
    top: 6px;
	}
	section#topMV:before {
    width: 300px;
    height: 300px;
    left: 50%;
    transform: translateX(-50%);
	}
	.topMV__inner {
    height: auto;
    min-height: 900px;
	}
	.topMV__inner h1 {
    font-size: 3.2rem;
	}
	.topMV__inner p {
    text-align: left;
	}
	.topMV__inner p br {
    display: none;
	}
	ul.numbers__inner--lists {
    flex-direction: column;
    gap: 40px;
	}
	ul.numbers__inner--lists li {
    width: 80%;
    margin: 0 auto;
	}
	.solution__inner--top {
    flex-direction: column;
    padding-top: 40px;
    gap: 25px;
    padding-bottom: 20px;
	}
	.solution__inner--topLeft {
    width: 100%;
    text-align: center;
	}
	.solution__inner--topRight {
    width: 100%;
	}
	.solution__inner--topRight img {
    transform: none;
	}
	ul.solution__inner--bottomList {
    flex-direction: column;
	}
	ul.solution__inner--bottomList li {
    width: 100%;
	}
	.choose__inner--text h2 {
    font-size: 1.6rem;
    padding-left: 10px;
    padding-right: 10px;
    top: -16px;
	}
	.choose__inner--text {
    padding: 25px 20px 30px;
	}
	ul.choose__inner--list {
    flex-direction: column;
    gap: 30px;
	}
	ul.choose__inner--list li {
    width: 100%;
	}
	.contactCta__inner {
    padding-left: 25px;
    padding-right: 25px;
	}
	ul.outerLinks {
    flex-direction: column;
    gap: 5px;
	}
	/* function */
    .function__inner--wrapper {
        padding-left: 4%;
        padding-right: 4%;
    }
    .function__inner--itemImg {
        padding-top: 15px;
		margin-bottom: 45px;
    }
    .function__inner--itemImg img {
        width: 77%;
    }
    .function__inner--itemText p {
        text-align: left;
    }
    .function__inner--itemText p br {
        display: none;
    }
	/* forwarding modal */
	.videomodal-content {
    width: 100%;
	}
	/* about page */
	.aboutPage__inner {
    padding-top: 120px;
	}	
	.aboutPage__inner--message p {
    font-size: 2rem;
	}
	.aboutPage__inner--message p br {
    display: none;
	}
	.aboutPage__inner--ceoImg {
    width: 100%;
	}
	.aboutUnder__inner--listRow {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
	}
	.aboutUnder__inner--listRow dt {
    width: 100%;
    border: none;
    border-bottom: solid 1px #ddd;
    padding: 9px 0px 16px;
	}
	.aboutUnder__inner--listRow dd {
    width: 100%;
	}
	ul.member__inner--list li {
    width: 85%;
	}
	.member__inner--names h3 {
    font-size: 1.6rem;
	}
	ul.corpPlace__inner--list li {
    width: 100%;
	}
	/* modal */
	.modal-content {
    padding: 20px 25px;
	}
	.modal-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
	}
	.modal__rightTextATop {
    text-align: center;
	}
	.modal__rightTextAProfile {
    max-height: 240px;
	}
	 .aboutPage__inner--ceo {
        flex-direction: column;
        gap: 40px;
    }
	.aboutPage__inner--ceotext {
        width: 100%;
    }
	ul.member__inner--list {
    justify-content: center;
	}
	 .serviceHead__inner p {
        font-size: 4rem;
    }
}