@charset "UTF-8";
/* ===========================================
   SP（スマートフォン）用スタイル
   対象: 768px以下
   ※ index.htmlのlink要素でmedia属性を使用
   =========================================== */

/* ===================================
   共通・リセット
   =================================== */
.pc_only {
    display: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-size: 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

h2 {
    margin-block-start: 0;
    margin-block-end: 0;
}

h3 {
    margin-block-start: 0;
    margin-block-end: 0;
}

ul {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
}

section {
    padding-top: 3rem;
}

.section-container {
    max-width: 100%;
    padding: 0;
}

.section-container h2 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #286FA1 0%, #13B1E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-header {
    width: 100%;
    padding: 0 1rem;
}

.content-header .sub-title {
    position: relative;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #111111;
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.content-header .sub-title::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0.875rem;
    height: 2px;
    background: #111111;
}

.content-header .text-content {
    font-size: 0.875rem;
    line-height: 1.8;
    color: #000000;
}

/* ===================================
   Header
   =================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: transparent;
    transition: background-color 0.3s ease;
}

#header.scrolled {
    background: rgb(115 134 165 / 50%);
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
}

.logo a {
    display: block;
    width: 200px;
}

.logo a img {
    width: 100%;
    height: auto;
}

.hamburger.active span {
    background: #002B69;
}

.header-container .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, #FDFCFB 0%, #8BC6DA 100%);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 20px 40px 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    display: flex;
}

.header-container .nav.active {
    right: 0;
}

.header-container .nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.header-container .nav ul li {
    width: 100%;
}

.header-container .nav ul li a {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem;
    color: #002B69;
    margin: 0 auto;
}

.header-container .nav ul li a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #ffffff 0%, #2870A2 100%);
}

.header-container .nav a .nav-ja {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    padding-bottom: 0;
    color: #002B69;
    margin-right: 10px;
}

.header-container .nav a .nav-ja::after {
    display: none;
}

.header-container .nav a .nav-en {
    font-size: 14px;
    color: #002B69;
}

.header-container .button-group {
    display: none;
}

/* ナビメニュー内のボタングループ */
.header-container .nav .button-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 15px;
    margin-left: 0;
    margin-top: 30px;
}

.header-container .nav .btn {
    position: relative;
    display: flex;
    max-width: 280px;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.header-container .nav .btn.btn-primary {
    background: linear-gradient(90deg, #329BBD 0%, #286FA1 100%);
}

.header-container .nav .btn.btn-secondary {
    background: linear-gradient(90deg, #002B69 0%, #00408F 100%);
}

.header-container .nav .btn .btn-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.header-container .nav .btn.btn-primary .btn-icon {
    width: 34px;
    height: 34px;
}

.header-container .nav .btn.btn-secondary .btn-icon {
    width: 28px;
    height: 28px;
}

.header-container .nav .btn .btn-text {
    font-size: 1rem;
    color: #ffffff;
    margin-top: 0;
}

.header-container .nav .btn.btn-primary .btn-text {
    letter-spacing: 0.25em;
}

/* ハンバーガーアイコン */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 24px;
    cursor: pointer;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 8px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ===================================
   Top（メインビジュアル）
   =================================== */
#top {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding-top: 0;
}

#top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0A1A35 0%, #697384 50%, #FFFFFF 100%);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.top-video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
}

.top-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
}

.top-container h1 {
    font-size: clamp(1.8rem, 7vw, 3rem);
    font-weight: 900;
    color: #ffffff;
}

.top-container .sub-title {
    font-size: clamp(0.85rem, 3.5vw, 1.5rem);
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    color: #ffffff;
    margin-top: 1rem;
}

/* ===================================
   Vision
   =================================== */
#vision {
    background: linear-gradient(90deg, #FDFCFB 0%, #8BC6DA 100%);
    overflow: hidden;
    padding: 3rem 0 0 0;
    margin: 0;
}

#vision .vision-container {
    display: block;
    max-width: 100%;
    padding: 0 1rem;
}

#vision .text-area {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

#vision .text-area .sub-title {
    position: relative;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #111111;
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

#vision .text-area .sub-title::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0.875rem;
    height: 2px;
    background: #111111;
}

#vision .text-area .text-content {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #000000;
}

#vision .image-area {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 90%;
    max-width: 500px;
    height: auto;
    margin: 1.5rem auto 0;
}

#vision .image-area img {
    width: 100%;
    height: auto;
}

/* Vision Slide Area */
#vision .slide-area {
    background: #0A1A35;
    overflow: hidden;
    padding: 20px 0;
    margin-top: 30px;
    margin-left: calc(-1rem - 1px);
    margin-right: calc(-1rem - 1px);
    width: calc(100% + 2rem + 2px);
    position: relative;
    margin-bottom: 0;
}

#vision .slide-area::before,
#vision .slide-area::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

#vision .slide-area::before {
    left: 0;
    background: linear-gradient(to right, #0A1A35, transparent);
}

#vision .slide-area::after {
    right: 0;
    background: linear-gradient(to left, #0A1A35, transparent);
}

#vision .visionSwiper {
    width: 100%;
    height: auto;
    overflow: visible;
}

#vision .swiper-wrapper {
    transition-timing-function: linear !important;
    display: flex;
    gap: 10px;
    will-change: transform;
}

#vision .swiper-slide {
    width: 200px !important;
    flex-shrink: 0;
}

#vision .swiper-slide.flex {
    display: inline-flex;
    width: 220px !important;
    flex-direction: column;
    gap: 8px;
}

#vision .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* 一時停止・再生ボタン */
.slide-control-btn {
    display: none;
}

.slide-control-btn .pause-icon,
.slide-control-btn .play-icon {
    font-size: 10px;
    font-weight: bold;
}

.slide-control-btn .btn-text {
    white-space: nowrap;
}

/* ===================================
   Works
   =================================== */
#works .section-container {
    max-width: unset;
}

#works .works-container .content-header {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

#works .works-content {
    display: flex;
    flex-direction: column;
    margin: 30px 0;
}

/* スライドアニメーション定義 */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* works-item 初期状態 */
#works .works-item {
    opacity: 0;
    visibility: hidden;
}

/* 1番目と3番目: 背景色（右側のみ余白、左は端まで） */
#works .works-item:nth-child(odd) {
    background: linear-gradient(90deg, #F5F5F5 0%, #F5F5F5 calc(100% - 20px), transparent calc(100% - 20px));
    padding: 30px 0;
    transform: translateX(-100%);
}

#works .works-item:nth-child(odd).show {
    visibility: visible;
    opacity: 1;
    animation: slideInFromLeft 0.8s ease-out forwards;
}

#works .works-item:nth-child(1).show {
    animation-delay: 0s;
}

#works .works-item:nth-child(3).show {
    animation-delay: 0.4s;
}

#works .works-item:nth-child(odd) .works-item-inner {
    flex-direction: column;
    max-width: calc(100% - 40px);
    padding: 0 1rem;
    gap: 1.5rem;
    margin: 0 auto 0 20px;
    display: flex;
    align-items: center;
}

/* 2番目: 背景色（左側のみ余白、右は端まで） */
#works .works-item:nth-child(even) {
    background: linear-gradient(90deg, transparent 0%, transparent 20px, #E0E0E0 20px, #E0E0E0 100%);
    padding: 30px 0;
    transform: translateX(100%);
}

#works .works-item:nth-child(even).show {
    visibility: visible;
    opacity: 1;
    animation: slideInFromRight 0.8s ease-out forwards;
}

#works .works-item:nth-child(2).show {
    animation-delay: 0.2s;
}

#works .works-item:nth-child(even) .works-item-inner {
    flex-direction: column;
    max-width: calc(100% - 40px);
    padding: 0 1rem;
    gap: 1.5rem;
    margin: 0 20px 0 auto;
    display: flex;
    align-items: center;
}

#works .works-item:nth-child(even) .works-item-image {
    order: -1;
}

#works .works-item-image {
    position: relative;
    flex: none;
    width: 100%;
    max-width: 25rem;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
}

#works .works-item-image .on-text {
    position: absolute;
    display: flex;
    top: 50%;
    left: 0;
    margin: auto;
    flex-direction: column;
    transform: translateY(-50%);
}

#works .works-item-image .on-text p {
    position: relative;
    display: inline-block;
    width: fit-content;
    font-size: clamp(12px, 2.8vw, 15px);
    color: #0A1A35;
    letter-spacing: 0.1em;
    font-weight: 400;
    margin-bottom: 3px;
    padding: 10px 15px;
    z-index: 1;
}

#works .works-item-image .on-text p::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background: rgb(255 255 255 / 70%);
    z-index: -1;
}

#works .works-item:nth-child(odd) .works-item-textarea,
#works .works-item:nth-child(even) .works-item-textarea {
    padding: 0;
}

#works .works-item-textarea .works-item-title h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 40px;
}

#works .works-item-textarea .works-item-text .text {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}

#works .works-item-textarea .works-item-text .text p:first-child {
    margin-bottom: 10px;
}

#works .works-item-textarea .works-item-text .skill {
    display: flex;
    width: 120px;
    height: 35px;
    background: #0A1A35;
    border-radius: 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

#works .works-item-textarea .works-item-text .skill-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#works .works-item-textarea .works-item-text .skill-list,
#works .works-item-textarea .skill-text {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 20px;
}

#works .works-item-textarea .works-item-text .skill-list li {
    position: relative;
    padding-left: 15px;
}

#works .works-item-textarea .works-item-text .skill-list li::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    top: 6px;
    left: 0;
    background: #000000;
    border-radius: 50%;
}

#works .works-item-textarea .works-item-text .skill-list ul li .skill-list-item-content.list {
    display: block;
}

#works .works-item-textarea .works-item-text .skill-list li .skill-list-item-content.list li {
    position: relative;
    padding-left: 15px;
    margin-top: 0;
}

#works .works-item-textarea .works-item-text .skill-list li .skill-list-item-content.list li::before {
    position: absolute;
    content: "";
    width: 7px;
    height: 1px;
    top: 10px;
    left: 0;
    margin: auto;
}

#works .works-item-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 200px;
    height: 45px;
    background: linear-gradient(90deg, #329BBD 0%, #286FA1 100%);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: opacity 0.3s;
    margin: 20px auto 0;
}

#works .works-item-btn .btn-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

#works .works-item-btn .btn-icon {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    margin: auto;
}

#works .works-item-btn .btn-icon::before {
    content: "";
    width: 7px;
    height: 1px;
    background: linear-gradient(90deg, #329BBD 0%, #286FA1 100%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#works .works-item-btn .btn-icon::after {
    position: absolute;
    content: "";
    top: 50%;
    left: calc(50% + 1px);
    width: 4px;
    height: 4px;
    border-top: 1px solid #329BBD;
    border-right: 1px solid #286FA1;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* ===================================
   People
   =================================== */
#people {
    position: relative;
    padding: 0;
}

#people::after {
    content: '';
    position: absolute;
    top: var(--hero-half-height, 0);
    left: 0;
    right: 0;
    bottom: 0;
    background: #f5f5f5;
    z-index: -1;
}

.people-hero {
    position: relative;
    width: 100%;
    height: auto;
    padding-left: 3rem;
    box-sizing: border-box;
    overflow: visible;
    margin-bottom: 30px;
}

.hero-wrap {
    position: relative;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
}

.people-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.people-hero-text {
    position: absolute;
    display: flex;
    height: 100%;
    top: 45%;
    left: 0;
    transform: translateY(-50%);
    margin: auto;
    gap: 4px;
    z-index: 10;
    flex-direction: column;
    justify-content: center;
}

.people-hero-text .people-hero-line {
    display: flex;
    width: 0;
    height: clamp(24px, 8vw, 56px);
    font-size: clamp(12px, 2.8vw, 20px);
    letter-spacing: 0.1em;
    color: #ffffff;
    background: #0A1A35;
    text-align: center;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.5s ease-out;
    padding: 0 2.5vw;
}

.people-hero-text .people-hero-line.show {
    width: clamp(155px, 35vw, 265px);
}

.people-hero-text .people-hero-line:nth-child(1) {
    transition-delay: 0s;
}

.people-hero-text .people-hero-line:nth-child(2) {
    transition-delay: 0.15s;
}

.people-hero-text .people-hero-line:nth-child(3) {
    transition-delay: 0.3s;
}

.people-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 50px 0;
    overflow: visible;
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 20px;
    padding-right: 1rem;
}

.slider-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.slider-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.slider-btn.prev::after {
    transform: rotate(224deg);
}

.slider-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.people-slides {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
}

.people-slides-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-out;
    padding: 0 20px;
}

.people-slide .slideimg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.people-slide {
    flex-shrink: 0;
    width: calc(100vw - 40px);
}

.people-slide .slide-img-area {
    width: 100%;
}

.people-slide .slide-img-area .slideimg-wrap {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 350 / 425;
    border-radius: 20px;
    overflow: hidden;
}

.people-slide .slide-img-area .slideimg-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.img-text-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #ffffff;
    padding: 0 15px 15px 15px;
    z-index: 2;
}

.img-text-wrap .title {
    font-size: 14px;
    font-weight: 700;
}

.img-text-wrap .entry-cont {
    font-size: 10px;
    font-weight: 400;
    margin-top: 15px;
}

.img-text-wrap .name {
    font-size: 16px;
    font-weight: 700;
}

.img-text-wrap .name .en {
    display: inline-block;
    margin-left: 8px;
    font-weight: 400;
}

.slid-textarea {
    margin-top: 15px;
    padding: 0 12px 15px 12px;
}

.slid-textarea ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slid-textarea li {
    min-height: auto;
    margin-bottom: 20px;
}

.slid-textarea li:last-child {
    margin-bottom: 0;
}

.slid-textarea li .list-title {
    position: relative;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    background: linear-gradient(#13B1E5 0%, #286FA1 100%);
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
}

.slid-textarea li .list-text {
    font-size: 0.6875rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
}

/* ===================================
   Environment
   =================================== */
#environment .section-container {
    max-width: none;
}

#environment .section-container .content-header {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.environment-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin: 30px auto 0 auto;
}

.environment-item {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.environment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.environment-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 53, 0.6);
}

.environment-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 20px;
    color: #ffffff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.environment-item:nth-child(odd) .environment-content {
    margin-left: 0;
}

.environment-number {
    font-family: "Commissioner", sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1;
}

.environment-title {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.environment-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: -10px;
    background: linear-gradient(to right, #ffffff 0%, #2870A2 100%);
}

.environment-text {
    height: auto;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}

/* ===================================
   Flow
   =================================== */
/* Flow Steps */
.flow-steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 0 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.flow-step {
    max-width: 100%;
    width: 100%;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
}

.step-number {
    font-family: "Commissioner", sans-serif;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(to right, #329BBD 0%, #286FA1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.step-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-icon {
    width: 80px;
    height: 70px;
    flex-shrink: 0;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-textwrap {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #111111;
    margin-bottom: 8px;
}

.step-description {
    height: auto;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

.step-description a {
    color: #329BBD;
    text-decoration: underline;
}

.step-description a:hover {
    opacity: 0.7;
}

.flow-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #329BBD;
    background: transparent;
}

/* ===================================
   Entry（エントリーフォーム）
   =================================== */
/* Entry Section */
#entry {
    position: relative;
    padding: 40px 15px;
    margin-bottom: 0;
}

#entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../image/entry-bg.jpg') center center / cover no-repeat;
    opacity: 0.2;
    z-index: -1;
}

#entry .section-container {
    max-width: 100%;
    padding: 0;
}

.form-card {
    width: 100%;
    background: #ffffff;
    border-radius: 30px;
    padding: 25px 20px;
    margin: 30px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-intro {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.6;
}

.form-section {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.coment {
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-left: 0;
    padding-left: 12px;
    width: 100%;
    margin-top: 4px;
}

.coment::before {
    position: absolute;
    content: "※";
    left: 0;
    font-size: 10px;
    line-height: 18px;
}

.required-badge {
    display: flex;
    width: 60px;
    height: 24px;
    background: #D64886;
    color: rgb(255, 255, 255);
    padding: 4px 8px;
    border-radius: 15px;
    font-weight: 400;
    font-size: 12px;
    margin-right: 8px;
    justify-content: center;
    align-items: center;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    border-radius: 4px;
}

.radio-option {
    display: flex;
    align-items: center;
}

.radio-option input[type="radio"] {
    margin-right: 6px;
}

.radio-option label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.name-fields,
.furigana-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 4px;
}

.field-group label {
    display: block;
    font-size: 11px;
    color: #666;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    height: 50px;
    padding: 12px;
    background: #E7F1F3;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: #0277bd;
}

.field-note {
    font-size: 12px;
    color: #111111;
}

.field-note li {
    position: relative;
    padding-left: 18px;
}

.field-note li::before {
    position: absolute;
    content: "※";
    left: 0;
    font-size: 12px;
}

.file-upload-group {
    padding: 0;
    border-radius: 4px;
}

.file-upload-item {
    margin-bottom: 15px;
}

.file-upload-item:last-child {
    margin-bottom: 0;
}

.file-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.file-input-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #E7F1F3;
    padding: 15px;
    border-radius: 8px;
    gap: 15px;
}

.file-select-btn {
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 400;
    color: #111111;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
    text-align: center;
}

.file-select-btn:hover {
    background: #f5f5f5;
}

.file-status {
    font-size: 12px;
    color: #666666;
}

.file-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

input[type="file"] {
    width: 100%;
    height: 50px;
    padding: 15px 10px;
    border: none;
    background: #E7F1F3;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    align-items: center;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.privacy-section {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.privacy-content {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
}

.privacy-checkbox input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 3px;
}

.privacy-checkbox label {
    font-size: 12px;
    cursor: pointer;
}

.submit-section {
    text-align: center;
}

.submit-note {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.submit-note a {
    display: inline-block;
    color: #329BBD;
    text-decoration: underline;
    margin-right: 5px;
}

.privacy-consent-label {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.6;
    text-align: left;
    cursor: pointer;
}

.privacy-consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 8px 0 0;
    flex-shrink: 0;
    accent-color: #329BBD;
    cursor: pointer;
}

.privacy-consent-section .error-message {
    text-align: center;
    letter-spacing: normal;
}

.privacy-consent-section.has-error input[type="checkbox"] {
    outline: 2px solid #d32f2f;
    outline-offset: 2px;
}

.submit-button {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 280px;
    height: 50px;
    background: linear-gradient(to right, #329BBD 0%, #286FA1 50%, #329BBD 100%);
    background-size: 200% 100%;
    background-position: left;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-position 0.5s ease;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.submit-button::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    top: 0;
    right: 25px;
    bottom: 0;
    background: #ffffff;
    margin: auto;
    transition: right 0.3s ease;
}

.submit-button::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    width: 6px;
    height: 6px;
    margin: auto;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: rotate(45deg);
    box-sizing: border-box;
    transition: right 0.3s ease;
}

.submit-button:hover {
    background-position: right;
}

.submit-button:hover::before,
.submit-button:hover::after {
    right: 15px;
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.error-message {
    color: #d32f2f;
    font-size: 11px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-section.has-error input,
.form-section.has-error textarea {
    border-color: #d32f2f;
    background-color: #fff5f5;
}

.form-section.has-error .error-message {
    display: block;
}

/* 送信完了・エラーモーダル */
.submit-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    padding-bottom: 80px;
}

.submit-modal.show {
    display: flex;
}

.submit-modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px 25px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.submit-modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B4EAFC 0%, #329BBD 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-modal-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 3;
}

.submit-modal-icon.error {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef5350 100%);
}

.submit-modal-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #286FA1 0%, #13B1E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.submit-modal-title.error {
    background: linear-gradient(90deg, #d32f2f 0%, #ef5350 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.submit-modal-message {
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 13px;
}

.submit-modal-message p {
    margin-bottom: 12px;
}

.submit-modal-message p:last-child {
    margin-bottom: 0;
}

.submit-modal-button {
    display: inline-block;
    background: linear-gradient(90deg, #286FA1 0%, #13B1E5 100%);
    color: white;
    padding: 12px 40px;
    border-radius: 30px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-modal-button:hover {
    opacity: 0.9;
}

.submit-modal-button.error {
    background: #757575;
}

/* ===================================
   Footer
   =================================== */
/* Footer */
#footer {
    background: linear-gradient(to bottom right, #B4EAFC 0%, #329BBD 50%, #286FA1 100%);
    padding: 3rem 0 0 0;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem 3rem 2rem;
}

.footer-container .footer-nav-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.footer-left {
    flex: 1;
    color: #002B69;
    max-width: 100%;
    text-align: center;
}

.footer-logo {
    width: 18rem;
    margin: 0 auto;
}

.footer-site-label {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-company-info {
    margin-bottom: 1.5rem;
}

.footer-company-info p {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.company-name {
    margin-bottom: 5px;
}

.footer-company-info p.company-address {
    word-break: auto-phrase;
}

.corporate-btn {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 24rem;
    height: 4rem;
    align-items: center;
    background: #002B69;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
    justify-content: center;
    margin: 0 auto;
}

.corporate-btn .btn-icon {
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    right: 3rem;
}

svg#corporate-icon {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 1.2px;
    transition: stroke 0.5s ease;
}

.corporate-btn .btn-arrow {
    position: absolute;
    right: 1.25rem;
    width: 14px;
    height: 14px;
}

.corporate-btn .btn-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 1px;
    background: #ffffff;
    transform: translateY(-50%);
    transition: background 0.5s ease;
}

.corporate-btn .btn-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 5px;
    height: 5px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: translateY(-50%) rotate(45deg);
    transition: border-color 0.5s ease;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    width: 100%;
    justify-content: center;
}

.footer-nav-col {
    list-style: none;
    width: auto;
}

.footer-nav-col li {
    position: relative;
    margin-bottom: 0.75rem;
}

.footer-nav-col li a {
    display: flex;
    width: auto;
    min-width: 12rem;
    height: 3rem;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
    border-bottom: 1px solid #ffffff;
    align-items: center;
    justify-content: space-between;
}

.footer-nav-col li a .arrow {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #ffffff;
    transition: transform 0.3s ease;
}

.footer-nav-col li a .arrow::before {
    position: absolute;
    content: "";
    width: 0.5rem;
    height: 1px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #329BBD 0%, #286FA1 100%);
    margin: auto;
}

.footer-nav-col li a .arrow::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.3rem;
    width: 0.3rem;
    height: 0.3rem;
    margin: auto;
    border-top: 1px solid #286FA1;
    border-right: 1px solid #286FA1;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.footer-bottom {
    background: rgba(10, 26, 53, 0.3);
    padding: 1.25rem 0;
}

.footer-bottom-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 0 1.5rem;
}

.footer-certifications {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.footer-certifications img {
    height: 3.5rem;
    width: auto;
}

.footer-copyright {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    font-size: 0.75rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin-bottom: -30px;
}

/* ===================================
   トップへ戻るボタン
   =================================== */
.scroll-to-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(to right, #329BBD 0%, #286FA1 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top svg {
    width: 18px;
    height: 18px;
}

/* ===================================
   モーダル
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    width: 95%;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0A1A35;
}

.modal-body .modal-section {
    margin-bottom: 1.5rem;
}

.modal-body .modal-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0A1A35;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #13B1E5;
}

.modal-body .modal-section table {
    width: 100%;
    border-collapse: collapse;
}

.modal-body .modal-section table th,
.modal-body .modal-section table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
    font-size: 0.875rem;
}

.modal-body .modal-section table th {
    width: 30%;
    font-weight: 600;
    color: #0A1A35;
    background-color: #F5F5F5;
}

.modal-body .modal-section table td {
    color: #333;
    line-height: 1.6;
}

/* ===================================
   調整用クラス（非表示）
   =================================== */
#vision .text-area .text-content .adjust,
.content-header .text-content .adjust {
    display: none;
}

/* ===================================
   480px以下用の追加調整
   =================================== */
@media screen and (max-width: 480px) {
    .footer-nav {
        gap: 1.5rem;
    }

    .footer-nav-col li a {
        font-size: 0.8125rem;
        min-width: 10rem;
    }

    .corporate-btn {
        max-width: 18rem;
        height: 3rem;
        font-size: 0.9375rem;
    }

    .corporate-btn .btn-icon {
        width: 1rem;
        height: 1rem;
        right: 2rem;
    }
}

/* ========================================
   Thanks Page - 送信完了ページ
   ======================================== */
.thanks-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 15px 80px;
    margin: 0;
    opacity: 1;
    transform: none;
}

.thanks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../image/entry-bg.jpg') center center / cover no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.thanks-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.thanks-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.thanks-message p {
    margin-bottom: 12px;
}

.thanks-button {
    display: inline-block;
    padding: 14px 30px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.thanks-button:hover {
    background: #555;
}
