body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

html {
  scroll-behavior: smooth;
}

.slide {
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 2.5s ease-out, transform 2.5s ease-out;
    min-height: 720px;
    position: relative;
    overflow: hidden;
    background-color: white;
    background-image: url('../img/pixta_82035496_M.jpg');
    background-size: cover;
    background-position: center center;
    height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide.fade-in {
  opacity: 1;
  transform: scale(1);
}

.gradient-text {
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    text-shadow: 0 0 1px rgba(255, 69, 0, 0.05);
    font-size: 3.5rem
}

.hero-shape {
    position: absolute;
    height: 500px;
    width: 500px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,140,0,0.1), rgba(255,69,0,0.1));
    top: -150px;
    right: -150px;
    z-index: 0;
}

.hero-shape-2 {
    position: absolute;
    height: 400px;
    width: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,140,0,0.07), rgba(255,69,0,0.07));
    bottom: -150px;
    left: -150px;
    z-index: 0;
}

.content {
    z-index: 10;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
    transition: opacity 1s ease-out 1s, transform 1s ease-out 1s, filter 1s ease-out 1s;
}

.content.fade-in {
    opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.btn-entry {
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    color: white;
    font-weight: bold;
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
    display: inline-block;
    margin-top: 50px;
    text-decoration: none;
}

.btn-entry:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

.btn-entry-small {
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 69, 0, 0.3);
    display: inline-block;
    text-decoration: none;
    position: absolute;
    top: 20px;
    right: 80px;
    z-index: 100;
}

.btn-entry-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.4);
}

.highlight {
    font-weight: 700;
    color: #FF4500;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-size: 7rem;
    font-weight: bold;
    letter-spacing: 0.02em;
    margin-bottom: 3rem;
    color: #FF6B00;
    line-height: 0.9;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 2px white;
    text-shadow: 2px white;
    margin-top: 159px;
}

.main-text {
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #fff;
}

.accent-line {
    width: 150px;
    height: 8px;
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    margin: 0 auto;
    border-radius: 4px;
}

.floating-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(255,140,0,0.15), rgba(255,69,0,0.15));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    top: 15%;
    right: 10%;
}

.shape-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* page2 */
.concept {
    position: relative;
    overflow: hidden;
    background-color: white;
    display: flex;
    padding: 60px;
    padding-bottom: 0;
    justify-content: space-between;
}

.concept-gradient-text {
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

.concept-gradient-border {
    position: relative;
}

.concept-gradient-border:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    border-radius: 2px;
}

.concept-accent-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,140,0,0.05), rgba(255,69,0,0.05));
    top: -100px;
    right: -100px;
    z-index: 0;
}

.concept-accent-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,140,0,0.03), rgba(255,69,0,0.03));
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.text-content {
    width: 50%;
    z-index: 10;
    padding-right: 40px;
}

.infographic-container {
    width: 50%;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

/* Infographic styling */
.infographic {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.center-circle {
    position: absolute;
    width: 140px;
    height: 140px;
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
    animation: pulse 3s ease-in-out infinite;
    z-index: 20;
}

.pillar {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.2);
    z-index: 15;
}

.pillar-1 {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 6s ease-in-out infinite;
    background: linear-gradient(45deg, #FF8C00, #FFA500);
}

.pillar-2 {
    bottom: 80px;
    left: 80px;
    animation: float 7s ease-in-out infinite 0.5s;
    background: linear-gradient(45deg, #FF7F50, #FF4500);
}

.pillar-3 {
    bottom: 68px;
    right: 80px;
    animation: float 5s ease-in-out infinite 1s;
    background: linear-gradient(45deg, #FF6347, #FF4500);
}

.keyword {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    z-index: 10;
}

.keyword i {
    color: #FF4500;
    margin-right: 8px;
}

.keyword-1 {
    top: 120px;
    left: 80px;
    animation: floatSmall 4s ease-in-out infinite 0.2s;
}

.keyword-2 {
    top: 153px;
    right: 60px;
    animation: floatSmall 4s ease-in-out infinite 1.2s;
}

.keyword-3 {
    bottom: 195px;
    right: 24px;
    animation: floatSmall 4s ease-in-out infinite 0.7s;
}

.keyword-4 {
    bottom: 200px;
    left: 50px;
    animation: floatSmall 4s ease-in-out infinite 1.5s;
}

.keyword-5 {
    bottom: 80px;
    left: 180px;
    animation: floatSmall 4s ease-in-out infinite 0.9s;
}

.orbit {
    position: absolute;
    border: 2px dashed rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 260px;
    height: 260px;
}

.orbit-2 {
    width: 360px;
    height: 360px;
}

.connector {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,140,0,0.4), rgba(255,69,0,0.4));
    transform-origin: left center;
    z-index: 5;
}

/* Animation keyframes */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes floatSmall {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255, 69, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}

/* page3 */
.strong {
min-height: 720px;
position: relative;
overflow: hidden;
background-color: white;
display: flex;
flex-direction: column;
padding: 40px 60px;
}

.strong-gradient-text {
background: linear-gradient(45deg, #FF8C00, #FF4500);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 900;
}

.strong-gradient-border {
position: relative;
}

.strong-gradient-border:after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 100px;
height: 4px;
background: linear-gradient(45deg, #FF8C00, #FF4500);
border-radius: 2px;
}

.feature-card {
background-color: white;
border-radius: 16px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
padding: 20px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
height: 100%;
border-left: 4px solid transparent;
border-image: linear-gradient(to bottom, #FF8C00, #FF4500);
border-image-slice: 1;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
margin-bottom: 12px;
background: linear-gradient(45deg, rgba(255,140,0,0.12), rgba(255,69,0,0.12));
color: #FF4500;
font-size: 22px;
}

.strong-accent-shape {
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
background: linear-gradient(45deg, rgba(255,140,0,0.03), rgba(255,69,0,0.03));
top: -100px;
right: -100px;
z-index: 0;
}

/* page4 */
.works {
min-height: 700px;
position: relative;
overflow: hidden;
background-color: white;
display: flex;
flex-direction: column;
padding: 40px 60px;
}

.works-gradient-text {
background: linear-gradient(45deg, #FF8C00, #FF4500);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 900;
}

.works-gradient-border {
position: relative;
}

.works-gradient-border:after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 100px;
height: 4px;
background: linear-gradient(45deg, #FF8C00, #FF4500);
border-radius: 2px;
}

.case-card {
background-color: white;
border-radius: 16px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
height: 100%;
border-left: 4px solid transparent;
border-image: linear-gradient(to bottom, #FF8C00, #FF4500);
border-image-slice: 1;
}

.case-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.income-badge {
background: linear-gradient(45deg, #FF8C00, #FF4500);
color: white;
padding: 4px 12px;
border-radius: 20px;
font-weight: 700;
display: inline-block;
margin-bottom: 8px;
}

.profile-icon {
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(45deg, rgba(255,140,0,0.2), rgba(255,69,0,0.2));
display: flex;
align-items: center;
justify-content: center;
color: #FF5722;
font-size: 24px;
}

.works-accent-shape {
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
background: linear-gradient(45deg, rgba(255,140,0,0.03), rgba(255,69,0,0.03));
top: -200px;
right: -100px;
z-index: 0;
}

.works-highlight {
font-weight: 700;
color: #FF4500;
}

/* page5 */
.rank-system {
min-height: 560px;
position: relative;
overflow: hidden;
background-color: white;
display: flex;
flex-direction: column;
padding: 40px 60px;
}

.rank-system-gradient-text {
background: linear-gradient(45deg, #FF8C00, #FF4500);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 900;
}

.rank-system-gradient-border {
position: relative;
}

.rank-system-gradient-border:after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 100px;
height: 4px;
background: linear-gradient(45deg, #FF8C00, #FF4500);
border-radius: 2px;
}

.rank-card {
border-radius: 16px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
height: 100%;
background: white;
}

.rank-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.rank-header {
padding: 12px 20px;
color: white;
font-weight: 700;
}

.pro-header {
background: linear-gradient(45deg, #FF5722, #FF3D00);
}

.semipro-header {
background: linear-gradient(45deg, #FF8C00, #FF6D00);
}

.basic-header {
background: linear-gradient(45deg, #FFA726, #FF9800);
}

.referral-header {
background: linear-gradient(45deg, #FFB74D, #FFA726);
}

.rank-badge {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.2);
margin-right: 8px;
}

.rate-badge {
background: white;
color: #FF5722;
font-weight: bold;
padding: 2px 12px;
border-radius: 20px;
font-size: 0.9rem;
display: inline-block;
margin-left: 10px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.rank-system-accent-shape {
position: absolute;
border-radius: 50%;
background: linear-gradient(45deg, rgba(255,140,0,0.03), rgba(255,69,0,0.03));
z-index: 0;
}

/* page6 */
.evaluation {
min-height: 720px;
position: relative;
overflow: hidden;
background-color: white;
display: flex;
flex-direction: column;
padding: 40px 60px;
}

.evaluation-gradient-text {
background: linear-gradient(45deg, #FF8C00, #FF4500);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 900;
}

.evaluation-gradient-border {
position: relative;
}

.evaluation-gradient-border:after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 100px;
height: 4px;
background: linear-gradient(45deg, #FF8C00, #FF4500);
border-radius: 2px;
}

.income-card {
border-radius: 20px;
border: 2px solid transparent;
background: linear-gradient(white, white) padding-box,
linear-gradient(45deg, #FF8C00, #FF4500) border-box;
box-shadow: 0 10px 30px rgba(255, 140, 0, 0.1);
}

.evaluation-income-badge {
background: linear-gradient(45deg, #FF8C00, #FF4500);
color: white;
font-weight: bold;
padding: 10px 25px;
border-radius: 30px;
font-size: 1.5rem;
display: inline-block;
box-shadow: 0 5px 15px rgba(255, 69, 0, 0.2);
}

.evaluation-accent-shape {
position: absolute;
border-radius: 50%;
background: linear-gradient(45deg, rgba(255,140,0,0.03), rgba(255,69,0,0.03));
z-index: 0;
}

table {
border-collapse: separate;
border-spacing: 0;
width: 100%;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

th {
background: linear-gradient(45deg, rgba(255,140,0,0.1), rgba(255,69,0,0.1));
padding: 15px;
text-align: left;
font-weight: 700;
color: #333;
}

td {
padding: 15px;
font-weight: 500;
}

tr:not(:last-child) td {
border-bottom: 1px solid #f0f0f0;
}

tr:nth-child(even) {
background-color: #fafafa;
}

.highlight-row {
background-color: rgba(255,140,0,0.05) !important;
}

/* page7 */
.recruit {
min-height: 720px;
position: relative;
overflow: hidden;
background-color: white;
display: flex;
flex-direction: column;
padding: 40px 60px;
}

.recruit-gradient-text {
background: linear-gradient(45deg, #FF8C00, #FF4500);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 900;
}

.recruit-gradient-border {
position: relative;
}

.recruit-gradient-border:after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 100px;
height: 4px;
background: linear-gradient(45deg, #FF8C00, #FF4500);
border-radius: 2px;
}

.requirement-card {
border-radius: 16px;
background: white;
box-shadow: 0 8px 20px rgba(0,0,0,0.06);
transition: all 0.3s ease;
border-left: 4px solid transparent;
background-image: linear-gradient(white, white),
linear-gradient(to bottom, #FF8C00, #FF4500);
background-origin: border-box;
background-clip: padding-box, border-box;
}

.requirement-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 25px rgba(255, 69, 0, 0.1);
}

.card-icon {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: linear-gradient(45deg, rgba(255,140,0,0.1), rgba(255,69,0,0.1));
color: #FF6347;
font-size: 24px;
}

.recruit-accent-shape {
position: absolute;
border-radius: 50%;
background: linear-gradient(45deg, rgba(255,140,0,0.03), rgba(255,69,0,0.03));
z-index: 0;
}

.custom-list li {
position: relative;
padding-left: 28px;
margin-bottom: 8px;
line-height: 1.5;
}

.custom-list li:before {
content: "";
position: absolute;
left: 0;
top: 6px;
width: 18px;
height: 18px;
background: linear-gradient(45deg, #FF8C00, #FF4500);
border-radius: 50%;
opacity: 0.8;
}

.custom-list li:after {
content: "✓";
position: absolute;
left: 4px;
top: 1px;
color: white;
font-size: 12px;
font-weight: bold;
}

.entry-button {
background: linear-gradient(45deg, #FF8C00, #FF4500);
color: #ffffff;
font-weight: 700;
padding: 0.75rem 2rem;
border-radius: 9999px;
box-shadow: 0 10px 15px rgba(255, 69, 0, 0.3);
transition: all 0.3s ease;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
border: none;
outline: none;
text-align: center;
letter-spacing: 0.5px;
position: relative;
overflow: hidden;
}

.entry-button:hover {
transform: translateY(-3px);
box-shadow: 0 15px 20px rgba(255, 69, 0, 0.4);
background: linear-gradient(45deg, #FF9F2E, #FF5A33);
}

.entry-button:active {
transform: translateY(0);
box-shadow: 0 5px 10px rgba(255, 69, 0, 0.2);
}

.entry-button i {
margin-left: 40px;
font-size: 1rem;
}

.width {
  width: 100%;
}

/* page8 */
.cost {
min-height: 720px;
position: relative;
overflow: hidden;
background-color: white;
display: flex;
flex-direction: column;
padding: 40px 60px;
}

.cost-gradient-text {
background: linear-gradient(45deg, #FF8C00, #FF4500);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 900;
}

.cost-gradient-border {
position: relative;
}

.cost-gradient-border:after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 100px;
height: 4px;
background: linear-gradient(45deg, #FF8C00, #FF4500);
border-radius: 2px;
}

.comparison-table th, .comparison-table td {
padding: 16px;
text-align: center;
}

.comparison-table th {
background-color: #f8f8f8;
font-weight: 700;
}

.highlight-cell {
background: linear-gradient(45deg, rgba(255,140,0,0.05), rgba(255,69,0,0.05));
font-weight: 700 !important;
position: relative;
}

.highlight-text {
color: #FF4500;
font-weight: 700;
}

.check-icon {
font-size: 20px;
color: #4CAF50;
}

.times-icon {
font-size: 20px;
color: #F44336;
}

.accent-shape {
position: absolute;
border-radius: 50%;
background: linear-gradient(45deg, rgba(255,140,0,0.03), rgba(255,69,0,0.03));
z-index: 0;
}

.table-container {
position: relative;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0,0,0,0.06);
overflow: hidden;
}

.table-container:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 6px;
background: linear-gradient(90deg, #FF8C00, #FF4500);
}

.category-cell {
font-weight: 700;
text-align: left !important;
padding-left: 24px !important;
}

.smapro-column {
width: 22%;
background-color: rgba(255,140,0,0.02);
}

.competitor-column {
width: 18%;
}

.table-label {
display: block;
font-size: 14px;
font-weight: normal;
color: #666;
margin-top: 4px;
}

.indicator-dot {
display: inline-block;
width: 12px;
height: 12px;
border-radius: 50%;
margin-right: 6px;
vertical-align: middle;
}

.dot-yes {
background-color: #4CAF50;
}

.dot-no {
background-color: #F44336;
}

/* page9 */
.work-style {
min-height: 720px;
position: relative;
overflow: hidden;
background-color: white;
padding: 40px 60px;
box-sizing: border-box;
}

.work-style-gradient-text {
background: linear-gradient(45deg, #FF8C00, #FF4500);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 900;
}

.work-style-gradient-border {
position: relative;
}

.work-style-gradient-border:after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 100px;
height: 4px;
background: linear-gradient(45deg, #FF8C00, #FF4500);
border-radius: 2px;
}

.work-style-accent-shape {
position: absolute;
border-radius: 50%;
background: linear-gradient(45deg, rgba(255,140,0,0.03), rgba(255,69,0,0.03));
z-index: 0;
}

.calendar {
display: grid;
grid-template-columns: 80px repeat(7, 1fr);
grid-gap: 1px;
background-color: #f5f5f5;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.calendar-header {
background-color: #f8f8f8;
font-weight: 700;
text-align: center;
padding: 16px 8px;
}

.calendar-time {
background-color: #f8f8f8;
font-weight: 500;
text-align: right;
padding-right: 12px;
display: flex;
align-items: center;
justify-content: flex-end;
}

.calendar-cell {
background-color: white;
min-height: 50px;
padding: 4px;
position: relative;
}

.work-block {
background: linear-gradient(135deg, rgba(255,140,0,0.15), rgba(255,69,0,0.15));
border-left: 3px solid #FF6347;
padding: 6px;
border-radius: 4px;
font-size: 0.9em;
height: calc(100% - 12px);
display: flex;
align-items: center;
justify-content: center;
}

.personal-block {
background: rgba(100,150,255,0.1);
border-left: 3px solid #6495ED;
padding: 6px;
border-radius: 4px;
font-size: 0.9em;
height: calc(100% - 12px);
display: flex;
align-items: center;
justify-content: center;
}

.activity-legend {
display: flex;
align-items: center;
margin-right: 24px;
}

.legend-color {
width: 14px;
height: 14px;
border-radius: 3px;
margin-right: 8px;
}

.feature-box {
background-color: #fafafa;
border-radius: 16px;
padding: 24px;
box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.feature-list li {
margin-bottom: 12px;
padding-left: 30px;
position: relative;
}

.feature-list li:before {
content: "\f00c";
font-family: 'Font Awesome 5 Free';
font-weight: 900;
position: absolute;
left: 0;
top: 2px;
color: #FF6347;
}

/* page10 */
.apply {
    min-height: 720px;
    position: relative;
    overflow: hidden;
    background-color: white;
    padding: 40px 60px;
    box-sizing: border-box;
}

.apply-gradient-text {
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

.apply-gradient-border {
    position: relative;
}

.apply-gradient-border:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    border-radius: 2px;
}

.apply-accent-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,140,0,0.03), rgba(255,69,0,0.03));
    z-index: 0;
}

.cta-button {
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    color: white;
    font-weight: 700;
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.concerns-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.concern-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.concern-icon {
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.company-info {
    background-color: #F9F9F9;
    border-radius: 12px;
    padding: 15px 20px;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.info-container {
    flex: 1;
}

.apply-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
}

.company-logo {
    height: 180px;
    width: auto;
    object-fit: contain;
}

.info-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 20px;
    font-size: 13px;
}

.info-label {
    font-weight: 600;
    color: #666;
}

.contact-methods {
    display: flex;
    margin-bottom: 20px;
}

.contact-method {
    background-color: #FFF;
    border-radius: 12px;
    padding: 16px;
    margin-right: 20px;
    flex: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.contact-icon {
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.contact-icon i {
    color: white;
    font-size: 18px;
}

.solution-text {
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px;
}

.cta-container {
    text-align: center;
    margin-top: 30px;
}

.section-divider {
    height: 3px;
    background: linear-gradient(90deg, rgba(255,140,0,0.1), rgba(255,69,0,0.5), rgba(255,140,0,0.1));
    border-radius: 2px;
    margin: 30px 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .company-info {
        flex-direction: column;
    }
    .logo-container {
        padding-left: 0;
        padding-top: 20px;
    }
    .company-logo {
        height: 140px;
    }
}

/* page11 */
.form {
min-height: 720px;
position: relative;
overflow: hidden;
background-color: white;
padding: 40px 60px;
box-sizing: border-box;
}

.form-gradient-text {
background: linear-gradient(45deg, #FF8C00, #FF4500);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 900;
}

.form-gradient-border {
position: relative;
}

.form-gradient-border:after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 100px;
height: 4px;
background: linear-gradient(45deg, #FF8C00, #FF4500);
border-radius: 2px;
}

.form-accent-shape {
position: absolute;
border-radius: 50%;
background: linear-gradient(45deg, rgba(255,140,0,0.03), rgba(255,69,0,0.03));
z-index: 0;
}

.form-container {
background-color: white;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
padding: 30px;
position: relative;
z-index: 10;
max-width: 800px;
margin: 0 auto;
}

.form-group {
margin-bottom: 20px;
}

.form-label {
display: block;
font-weight: 600;
margin-bottom: 5px;
color: #333;
}

.form-input {
width: 100%;
padding: 10px 15px;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 15px;
transition: all 0.3s;
}

.form-input:focus {
outline: none;
border-color: #FF8C00;
box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.1);
}

.required:after {
content: "*";
color: #FF4500;
margin-left: 3px;
}

.form-cta-button {
background: linear-gradient(45deg, #FF8C00, #FF4500);
color: white;
font-weight: 700;
font-size: 18px;
padding: 12px 30px;
border-radius: 50px;
border: none;
cursor: pointer;
box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
width: 100%;
text-align: center;
}

.form-cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.error-message {
color: #FF4500;
font-size: 13px;
margin-top: 5px;
display: none;
}

.info-message {
background: linear-gradient(45deg, rgba(255,140,0,0.1), rgba(255,69,0,0.1));
border-left: 4px solid #FF8C00;
padding: 10px 15px;
margin-bottom: 20px;
border-radius: 0 8px 8px 0;
color: #333;
font-size: 14px;
}

.loading-indicator {
display: none;
text-align: center;
margin-top: 10px;
}

.loading-indicator i {
animation: spin 1s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* セレクトボックス用のスタイル */
.select-with-icon {
position: relative;
}

.select-with-icon i {
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
color: #666;
pointer-events: none;
}

.select-with-icon select {
padding-left: 45px;
}

.select-with-icon select:focus + i {
color: #FF8C00;
}

.end-entry {
position: relative;
overflow: hidden;
background-color: white;
padding: 40px;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.end-entry-gradient-text {
background: linear-gradient(45deg, #FF8C00, #FF4500);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 900;
}

.end-entry-cta-button {
background: linear-gradient(45deg, #FF8C00, #FF4500);
color: white;
font-weight: 700;
font-size: 18px;
padding: 12px 30px;
border-radius: 50px;
border: none;
cursor: pointer;
box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
text-align: center;
}

.end-entry-cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.completion-card {
background-color: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
padding: 40px;
position: relative;
z-index: 10;
width: 80%;
max-width: 800px;
text-align: center;
}

.end-entry-accent-shape {
position: absolute;
border-radius: 50%;
background: linear-gradient(45deg, rgba(255,140,0,0.06), rgba(255,69,0,0.06));
z-index: 0;
}

.confetti {
position: absolute;
width: 10px;
height: 20px;
opacity: 0.6;
transform: rotate(calc(var(--rotation) * 1deg));
}

.confetti-orange {
background-color: #FF8C00;
}

.confetti-red {
background-color: #FF4500;
}

.confetti-yellow {
background-color: #FFD700;
}

@keyframes float {
0% { transform: translateY(0) rotate(calc(var(--rotation) * 1deg)); }
100% { transform: translateY(-100px) rotate(calc((var(--rotation) + 20) * 1deg)); }
}


@media (max-width: 640px) {
  .btn-entry-small {
    padding: 10px 15px;
    font-size: 11px;
    right: 30px;
  }

  .slide {
    height: 0;
    height: 100vh;
  }

  .logo-box {
    margin-top: 200px;
  }

  .logo-text {
    font-size: 50px;
    margin-bottom: 2rem;
  }

  .main-text {
    font-size: 35px;
  }

  .btn-entry {
    margin-top: 20px;
  }

  .text-content {
    padding-right: 0;
  }

  .gradient-text {
    font-size: 35px;
  }

  .btn-entry {
    padding: 13px 40px;
  }

  .concept {
    flex-direction: column;
  }

  .text-content {
    width: 100%;
  }

  .infographic-container {
    width: 100%;
  }

  .grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .strong-gradient-text {
    font-size: 24px;
  }

  .text-xl {
    font-size: 1rem;
  }

  .mt-2 {
    font-size: 15px;
  }

  .works-gradient-text {
    font-size: 26px;
  }

  .rank-system-gradient-text {
    font-size: 24px;
  }

  .grid-cols-4 {
    grid-template-columns: 1fr;
  }

  .agreement {
    margin-bottom: 15px;
  }

  .agent {
    font-size: 18px;
  }

  .evaluation-icon {
    font-size: 14px;
  }

  .evaluation-item {
    font-size: 15px;
  }

  .recruit-gradient-text {
    font-size: 28px;
  }

  .rank-card {
    height: none;
    margin-bottom: 17px;
  }

  .person-flex {
    flex-direction: column;
    align-items: center;
  }

  .person {
    text-align: center;
    margin-right: 32px;
    margin-top: 10px;
  }

  .business {
    flex-direction: column;
  }

  .table-container {
    overflow: auto;
  }

  .cost-item {
    font-size: 20px;
  }

  .cost-item-container {
    margin-top: 20px;
    text-align: left;
    width: 19rem;
  }

  .calendar {
    overflow: auto;
  }

  .smapro-active {
    font-size: 20px;
  }

  .work-style-text {
    text-align: left;
    margin-top: 20px;
  }

  .activity-legend {
    margin-right: 20px;
  }

  .apply-logo-container {
    margin-top: 20px;
    padding-left: 0;
  }

  .pillar-2 {
    bottom: 60px;
    left: -15px;
  }

  .pillar-3 {
    bottom: 53px;
    right: -43px;
  }

  .keyword-1 {
    top: 127px;
    left: -14px;
  }

  .keyword-2 {
    top: 148px;
    right: -35px;
  }

  .keyword-3 {
    bottom: 171px;
    right: -47px;
  }

  .keyword-4 {
    bottom: 204px;
    left: -55px;
  }

  .keyword-5 {
    bottom: 80px;
    left: 85px;
  }

  .entry-text {
    text-align: left;
  }

  .form-cta-button {
    font-size: 16px;
  }

  .entry-button {
    font-size:13px;
  }
}