:root {
    --color-bg: #ffffff;
    --color-text: #1b1b1b;
    --color-muted: #777777;
    --color-border: #eeeeee;
    --color-dark-bg: #111111;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius-lg: 16px;
    --radius-xl: 24px;
    --max-width: 500px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0 auto;
    max-width: 500px;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }

  ul, li, ol {
    list-style: none;
}

 /* 画面下部固定ボタン */
.fixed_container {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: sticky;
    bottom: 0;
    left: 0;
}
.fixed_inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.fixed_inner a {
    width: 50%;
}

/* ヘッダー */
header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 10px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
    flex-wrap: wrap;
}
.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_logo {
    width: 100px;
}
.header_guestBtn {
    font-size: 13px;
    color: #fff;
    font-weight: 800;
    background: rgb(201, 178, 88);
    background: linear-gradient(135deg, rgb(201, 178, 88) 0%, rgba(154,133,46,1) 100%);
    border-radius: 5px;
    padding: 15px;
}

  /* アイキャッチ */
  .mv_area {
    position: relative;
    margin: 0 auto;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  h1{
    position: absolute;
    background:linear-gradient(90deg, #ffefd1, #edcc8e 30%, #f7e4be, #fff);
      -webkit-background-clip:text;
      -webkit-text-fill-color: transparent;
    margin: 0 0 16px;
    bottom:50px;
    left: 20px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 3px;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0;
    filter: drop-shadow(0px 0px 3px #000) drop-shadow(0px 0px 8px #000);
  }
  
  h1 span{
    font-size: 130%;
  }
  
  .stats-grid {
    display: flex;
    background-color: #f0eee8;
    justify-content: space-between;
    padding: 15px 10px;
    font-weight: bold;
  }
  
  .stats-grid .border-left{
    border-left: solid 1px #fff;
  }
  
  .stats-grid .stats-card{
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
  
  .stats-grid .stats-card .stats-label{
    width: 100px;
    margin: auto;
    background-color: #fff;
    border-radius: 30px;
    border: solid #bd9804 0.5px;
  }
  
  .stats-grid {
    display: flex;
    background-color: #f0eee8;
    justify-content: space-between;
    padding: 15px 5px;
  }
  
  .stats-grid .border-left{
    border-left: solid 1px #fff;
  }
  
  .stats-grid .stats-card{
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
  
  .stats-grid .stats-value{
    width: 100%;
    font-size: 15px;
    text-align: center;
    line-height: 1.3rem;
    margin-top: 10px;
    margin-bottom: 0px;
  }
  
  .stats-grid .text-middle{
    font-size: 18px;
    padding-top: 10px;
  }
  
  .stats-grid .stats-card span{
    font-size: 22px;
    color: #a08000;
  }
  
  .stats-grid .stats-card .small{
    font-size: 14px;
  }
  
  .stats-grid .stats-card small{
    font-size: 11px;
    font-weight: normal;
  }
  
  /** **/
  
  .wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 20px 40px;
  }
  
  .main-text {
    font-size: 25px;
    font-weight: bold;
    color: #ad923f;
  }
  
  .middle-text {
    font-size: 18px;
    font-weight: bold;
  }
  
  .middle-text span{
    font-size: 20px;
    color: #ac7424;
  }
  
  .bottom-text{
    font-size: 14px;
    line-height: 25px;
  }
  
  .bottom-text span{
    color: #ac7424;
  }
  
  /** CTA **/
  
  .cta_area{
    margin: 0 auto;
    text-align: center;
  }
  
  .cta-btn{
    display: inline-block;
    width: 300px;
    border-radius: 50px;
    background:linear-gradient(90deg, #38af1d, #5fd23b);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.45);
    padding: 10px;
    margin: 0 auto;
    color: #fff;
    font-size: 20px;
  }
  
  .cta_area .cta-text{
    font-size: 12px;
    margin-bottom: 70px;
  }
  
  /* WORK STYLES */
  
  .work-styles-grid {
    display: grid;
    gap: 16px;
    padding: 10px 20px 50px;
  }
  
  .section-title{
    text-align: center;
    line-height: 23px;
  }
  
  h2 .eng-title{
    font-size: 16px;
    font-style: italic;
    font-weight: normal;
    color: #ad923f;
  }
  
  .work-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 18px 16px;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
  }
  
  .work-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: #875e24;
    padding: 1px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
  }
  
  .work-card h3 {
    font-size: 25px;
    margin-top: 4px;
    margin-bottom: 4px;
  }
  
  .work-card h3 span{
    font-size: 17px;
    justify-content: center;
  }
  
  .work-sub {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .work-list {
    padding-left: 18px;
    margin: 0 0 10px;
    font-size: 13px;
  }
  
  .work-steps-title {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background-color: #ad923f;
    margin-top: 4px;
    margin-bottom: 10px;
    padding: 1px 7px;
  }
  
  .work-steps {
    font-size: 13px;
  }
  
  .work-steps .step{
    color: #ad923f;
    font-weight: bold;
    padding-right: 15px;
  }
  
  .about-highlight{
    font-size: 13px;
    background-color: #f8f6ee;
    padding: 10px 15px;
  }
  
  /* MERIT */
  
  #merits{
    background-color: #efede9;
    text-align: left;
    padding: 30px 20px 20px;
  }
  
  #merits h2{
    line-height: 23px;
  }
  
  #merits .about{
    margin-top: 40px;
  }
  
  .merit-card h3{
    display: inline;
    font-size: 17px;
    font-weight: bold;
    background-color: #fffff8;
    border-left: 5px solid #956832;
    padding: 7px 10px;
  }
  
  .merit-card p{
    font-size: 14px;
    padding-left: 10px;
    padding-bottom: 20px;
  }
  
  /* VOICE */
  
  #voices {
    text-align: left;
    padding: 30px 20px 50px;
  }
  
  #voices h2{
    line-height: 23px;
  }
  
  .voices-grid{
    margin-top: 50px;
  }
  
  .voice-card {
    background-color: #5f5634;
    color: #fff;
    font-size: 12px;
    margin-top: 30px;
    padding: 15px;
  }
  
  .cast-voice{
    display: flex;
    border-bottom: solid 0.5px #a4a08f;
  }
  
  .cast-voice p{
    margin-left: 20px;
  }
  
  .cast-voice img{
    width: 95px;
    display: block;
    margin-top: -30px;
    height: max-content;
  }
  
  .voice-prof {
    margin-top: 5px;
    line-height: 20px;
  }
  
  .voice-prof .gold{
    color: #ffe1ae;
    font-weight: bold;
  }
  
  .voice-prof .big-text{
    font-size: 150%;
  }
  
  .voice-meta {
    display: inline;
    background-color: #957909;
    padding: 4px 5px;
  }
  
  .voice-text{
    margin-bottom: 0px;
    font-size: 13px;
  }
  
  /* SAFETY */
  
  #safety{
    background-color: #ede3d7;
    padding: 30px 10px 20px;
  }
  
  #safety h2{
    margin-bottom: 10px;
  }
  
  .safety-grid{
    display: flex;
  }
  
  .safety-card{
    width: 100%;
    text-align: center;
    margin: 0 10px;
    padding:30px 0px 20px;
  }
  
  .safety-card img{
    width:70px;
    margin: 0 auto;
  }
  
  .safety-card h3{
    font-size: 13px;
  }
  
  .safety-card p{
    font-size: 12px;
  }
  
  .bottom-line{
    border-bottom: solid 1.5px #fff;
  }
  
  /* FLOW */
  
  #flow{
    background-color: #f5f3ee;
    text-align: left;
    padding: 30px 20px 50px;
  }
  
  #flow .section-title{
    text-align: left;
    font-size: 22px;
    line-height: 25px;
  }
  
  .flow-step {
    padding: 20px;
    background: #ffffff;
    position: relative;
    margin: 10px auto;
  }
  
  .flow-step-number1, .flow-step-number2,
  .flow-step-number3, .flow-step-number4{
    width: 24px;
    height: 24px;
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
  }
  
  .flow-step-number1{
    background: #dbcb8e;
  }
  
  .flow-step-number2{
    background: #d7bd53;
  }
  
  .flow-step-number3{
    background: #bd9804;
  }
  
  .flow-step-number4{
    background: #886d02;
  }
  
  .flow-step-title{
    font-size: 15px;
    font-weight: bold;
    margin-top: 0px;
  }
  
  .flow-step-text{
    font-size: 14px;
  }
  
  /* FAQ */
  
  #faq{
    text-align: left;
    padding: 30px 20px 50px;
  }
  
  #faq .section-title{
    text-align: left;
  }
  
  .faq-list {
    max-width: 780px;
    margin: 0 auto;
  }
  
  details {
    border-radius: 7px;
    border: 0.5px solid #a9a9a9;
    padding: 13px 15px;
    background: #ffffff;
    margin-bottom: 8px;
  }
  
  summary {
    color: #78703c;
    list-style: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
  }
  
  summary::marker,
  summary::-webkit-details-marker {
    display: none;
  }
  
  summary::after {
    content: "＋";
    float: right;
    font-size: 14px;
    color: #7a7a7a;
  }
  
  details[open] summary::after {
    content: "−";
    color: #7a7a7a;
  }
  
  details p {
    margin-top: 8px;
    font-size: 14px;
    color: #1b1b1b;
    line-height: 25px;
  }
  
  /* CONDITIONS */
  
  #conditions .conditions-title{
    background-image: url("../img/img1.png");
    background-repeat: no-repeat;
    background-size: 230px;
    height: 150px;
    background-position: right;
    padding-top: 5px;
  }
  
  #conditions .section-title{
    text-align: left;
    margin-bottom: 10px;
    padding-left: 20px;
  }
  
  .conditions-title p{
    font-size: 14px;
    text-shadow: 0px 0px 3px #fff,0px 0px 5px #fff,0px 0px 8px #fff,0px 0px 10px #fff;
    margin-top: 0px;
    padding-left: 20px;
  }
  
  .conditions-list{
    background-color: #f3f0e9;
    border-radius: 7px;
    font-size: 13px;
    margin: 10px 20px;
    padding: 15px;
  }
  
  .conditions-list p{
    margin: 5px 0px;
    font-weight: bold;
    text-indent: -13px;
    padding-left: 13px;
  }
  
  .conditions-note{
    padding: 5px 30px 50px;
    font-size: 11px;
  }
  
  /* FLOATING CTA (SP ONLY) */
  
  .floating-cta {
    max-width: 500px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: -70px;
    background-color: #d6cc8ff0;
    padding: 15px 0px 15px;
    display: block;
    z-index: 100;
    margin: 0 auto;
  }
  
  .floating-cta-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  
  .floating-label {
    font-size: 11px;
    color: var(--color-muted);
  }
  
  /** CTA **/
  
  .cta_area-float{
    margin: 0 auto;
    text-align: center;
  }
  
  .cta-btn-float{
    display: inline-block;
    width: 300px;
    border-radius: 50px;
    background:linear-gradient(90deg, #38af1d, #5fd23b);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.45);
    padding: 10px;
    margin: 0 auto;
    color: #fff;
    font-size: 20px;
  }
  
  .cta_area-float .cta-text-float{
    font-size: 12px;
    margin-bottom: 70px;
  }
  
/* フッター */
footer{
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}
.footer_inner {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    background: #ededf4;
    padding: 60px 0 20px; 
}
.btn_asp {
    display: block;
    width: calc(100% - 60px);
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    background-color: #2e92b1;
    border-radius: 6px;
    padding: 15px 0;
    margin: 0 auto 60px;
}
.footer_logo img{
    width: 140px;
    margin: 0 auto 50px;
}
.footer_linkList {
    margin-bottom: 30px;
    text-align: center;
}
.footer_linkList ul{
    padding-left: 0;
}
.footer_linkList ul li{
    margin-bottom: 10px;
}
.footer_linkList a {
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 10px;
}
.footer_copywriter {
    font-size: 10px;
}