html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body{
    max-width: 1920px;
    font-family: "Shippori Mincho B1";
    font-weight: 600;
    font-style: normal;
}

img{
    display: block;
    width: 100%;
    height: auto;
}
/* ヘッダー全体（背景・固定配置） */
.lp-header {
  width: 100%;
  height: 80px; /* 指定の高さ */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  
  background-color: #002959;
  /* 背景画像がある場合はここに設定 */
  background-position: center top;
  background-repeat: no-repeat;
  
  box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);
}

/* インナー（コンテンツ配置） */
.header-inner {
  width: 100%;
  /* 1920pxを基準（最大幅）とする */
  max-width: 1920px; 
  
  height: 100%;
  margin: 0 auto; /* 1920pxを超えたモニターの場合は中央寄せ */
  
  /* 左右の余白を30pxに指定 */
  padding: 0 30px; 
  box-sizing: border-box; /* paddingを含めたサイズ計算にする */
  
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 追従ヘッダー分のスペーサー */
.header-spacer {
  height: 80px;
}

.lp-header .logo{
    width: 100%;
    height: auto;
    max-width: 119px;
    height: 35px;
    aspect-ratio: 17/5;
}

.header-right{
    display: flex;
    gap: 1.56rem;
    align-items: center;
    margin-left: auto;
}

.header-nav ul{
    display: flex;
    gap: 1.5rem;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: normal;
    font-family: "Hiragino Mincho Pro";
}
.header-cta{
    flex-shrink: 0;
    max-width: 281px; /* でも281px以上は大きくならない */
    min-width: 160px; /* 小さくなりすぎ防止 */
}
.header-cta .cta-btn_01{
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1400px) {
    .header-nav ul {
        gap: 1rem;       /* メニュー同士の間隔を狭く (1.5rem → 1rem) */
        font-size: 14px; /* 文字を少し小さく */
    }
    .header-right {
        gap: 1rem;       /* ボタンとの間隔も狭く */
    }
}

/* 2. 幅が1150px以下になったら、さらに詰める */
@media screen and (max-width: 1150px) {
    .header-nav ul {
        gap: 0.6rem;     /* 間隔を限界まで詰める */
        font-size: 12px; /* 文字を最小限に */
    }
    .header-right {
        gap: 0.5rem;
    }
    
    /* ボタンも少し小さくしてスペース確保 */
    .header-cta {
        min-width: auto; /* 最小幅制限を解除 */
        width: 190px;    /* 幅を少し縮める */
    }
}



.sec_bg{
    background-position: center top;
    background-size: 1920px auto;
    background-repeat: no-repeat;
    overflow: hidden;
}

.d-block{
    display: block;
}
.d-block.sp{
    display: inline;
}

.gold-label{
    background: linear-gradient(90deg, #A78941 0%, #DCC078 100%);
}





/*fv*/
.fv{
    position: relative;
    height: 660px;
    background-image: url(../img/fv-bg_image.webp?2);
    
}
.fv-text-wrapper {
    position: absolute;
    width: 457px;
    height: auto;
    /* ど真ん中配置の設定 */
    left: 45.5%;
    top: 32.5%;
    transform: translate(-50%, -50%);
    -webkit-mask-image: url("../img/fv-main-text_image.png");
    mask-image: url("../img/fv-main-text_image.png");
    -webkit-mask-size: 457px;
    mask-size: 457px;
    overflow: hidden;
}
    
.fv-main-text_image{
    position: relative;
    width: 100%;
    height: auto;
    display: block; /* 隙間対策 */
    
}
.fv-text-wrapper::before {
    content: "";
    position: absolute;
    top: -70px;
    left: -70px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right,rgba(255,255,255,0.1), rgba(255,255,255,1));
    z-index: 10;
    animation-name:shine-run;   /* アニメーション名の指定 */
    animation-delay:0s;   /* アニメーションの開始時間指定 */
    animation-duration: 3s;   /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in;
   /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite; 
  /* アニメーションの無限繰り返しの指定 */
}
@keyframes shine-run {
    0% {
        transform: scale(1) rotate(50deg);
        /* アニメ開始時は大きさ0、50度の傾き */
        
        opacity: 0;
        /* アニメ開始時は全透過 */
    }
 
    40% {
        transform: scale(1) rotate(50deg);
        /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
        
        opacity: 1;
        /* 透過しない（しっかり表示される）ように1を設定 */
    }
 
    100% {
        transform: scale(250) rotate(50deg);
        /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
 
        opacity: 0;
        /* 全透過になるようにして、徐々に消えるような変化を付ける */
    }
}
@media screen and (max-width: 768px){
    #fv{
        background-image: url(../img/fv-bg_image_sp.jpg);
    }
}



/*sec01*/
#sec01{
    height: 806px;
    padding-top: 100px;
    background-image: url(../img/sec01_bg-image.jpg);
}

#sec01 h2{
    font-size: 32px;
    text-align: center;
    margin-bottom: 70px;
}

.sec01-inner{
    /* 横並び設定 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.sec01-image_01{
  display: block;
  width: 612px;
  height: auto;
}

/* --- 右側：テキストエリア --- */


.problem-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.problem-list li {
  display: flex;
  align-items: flex-start; /* アイコン上揃え */
  margin-bottom: 1.667em;
}

.problem-list li:nth-child(1) {
  margin-bottom: 25px;
  margin-left: 21px;
}

.problem-list li:nth-child(2){
    margin-left: 21px;
}


/* チェックアイコン画像 */
.check-icon {
  width: 32px;      /* アイコンサイズ */
  height: 31px;
  margin-right: 0.556em;
  padding-top: 0; /* テキストとの位置微調整 */
  flex-shrink: 0;   /* 縮小防止 */
}

.check-icon img {
  width: 100%;
  display: block;
}

/* テキスト装飾 */
.list-content {
  color: #000;
}

.text-sub {
  font-size: 23px;
  margin: 0 0 8px 0;
}

.text-main {
  font-size: 23px;
  margin: 0;
  line-height: 1.5;
}

#sec01 .bottom-p{
    font-size: 32px;
    text-align: center;
    line-height: 1.24;
}
#sec01 .bottom-p:nth-of-type(1){
    margin-bottom: 29px;
}
#sec01 .bottom-p:nth-of-type(2){
    margin-bottom: 11px;
}
#sec01 .bottom-p span{
    display: inline-block;
    font-size: 36px;
    color: #fff;
    padding: 4px 3px 3px 4px;
    margin-right: 12px;
    background: linear-gradient(90deg, #011E56 0%, #084683 100%);
}


/*sec02*/
#sec02{
    padding: 3.438rem 0;
    height: 386px;
    background-image: url(../img/sec02_bg-image.jpg);
    color: #fff;
    text-align: center;
}

#sec02 > h2{
    margin-top: 0.676em;
   line-height: 1.23855;
    font-size: 2.313rem;
}

#sec02 > p:nth-of-type(1){
    font-size: 1.563rem;
}

#sec02 > p:nth-of-type(2){
    font-size: 1.375rem;
}

.cta_button_02{
    width: 560px;
    margin: 2.188rem auto 0;
}

.underline_01{
    position: relative;
    display: inline-block;
}
.underline_01::after{
    content: "";
    display: block;
    position: absolute;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    height: 0px; 
    border-bottom: 2px dashed #fff;
}




/*sec03*/
#sec03{
    position: relative;
    height: 2287px;
    background-image: url(../img/sec03_bg-image.png);
    padding-top: 146px;
}

#sec03 > .text-area{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

#sec03 h3{
    font-size: 25px;
    line-height: 1.7;
}

#sec03  .gold-label{
    font-size: 30px;
    padding-right: 0.1em;
    padding-left: 0.08em;
    margin-right: 0.12em;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}
#sec03 .size-35{
    font-size: 35px;
    margin-right: 0.15em;
}
.size-27{
    font-size: 27px;
}

#sec03 > .text-area p{
    font-size: 20px;
}

#sec03 > .text-area > .text-area-inner:nth-of-type(2) > p:nth-of-type(1){
    margin-bottom: 24px;
    line-height: 1.23;
}
#sec03 > .text-area > .text-area-inner:nth-of-type(2) > p:nth-of-type(2){
    line-height: 1.9;
}

#sec03 > .text-area::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 235px;
    height: 1px;
    background-color: #fff;
    transform: translate(-127%, -50%) rotate(-60deg);
    pointer-events: none;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

 #sec03 > .text-image{
    width: 573px;
    height: 370px;
    margin: 68px auto 0;
}

#sec03 > h2{
    margin-top: 190px;
    text-align: center;
    font-size: 37px;
    color: #AA8356;
    line-height: 1.23;
}
#sec03 h2 .size-32{
    font-size: 32px;
}

.declaration-area{
    color: #000;
}

.declaration-area .text-area{
    position: absolute;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 27px;
}

.declaration-area .text-area h3{
    font-size: 29px;
    color: #002959;
    line-height: 1.42;
}

.declaration-area .text-area p{
    display: block;
    font-size: 16px;
    line-height: 1.9;
}

.declaration-area .text-area:nth-of-type(1) {
    top: 47%;
    left: 33.4%;
}
.declaration-area .text-area:nth-of-type(1) p{
    width: 330px;
}

.declaration-area .text-area:nth-of-type(2) {
    top: 63.7%;
    left: 49.4%;
}
.declaration-area .text-area:nth-of-type(2) p{
    width: 530px;
}

.declaration-area .text-area:nth-of-type(3) {
    top: 79.2%;
    left: 63.4%;
}
.declaration-area .text-area:nth-of-type(3) h3{
    width: 643px;
}
.declaration-area .text-area:nth-of-type(3) p{
    width: 564px;
}
@media screen and (max-width: 1440px){
    .declaration-area .text-area:nth-of-type(1) {
        left: 28.4%;
    }
    .declaration-area .text-area:nth-of-type(3) {
        left: 69.4%;
    }
}




/*sec04*/
#sec04{
    background-image: url(../img/sec04_bg-image.jpg);
    height: 1132px;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
}

.advisor-custom-made_image{
    position: relative;
    top: 0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 4;
}

#sec04 > h2{
    font-size: 37px;
    color: #fff;
    line-height: 1.23;
    text-align: center;
    margin-top: 108px;
}
.free{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 25px;
    color: #fff;
    line-height: 1.23;
    text-align: center;
}
.free::before,
.free::after{
    content: "";
    display: block;
    width: 2px;
    height: 28px;
    background-color: #fff;
}
.free::before{
    transform: rotate(-20deg);
}
.free::after{
    transform: rotate(20deg);
}

.diagonal-background-lines_wrapper{
    position: relative;
    width: 100%;
    margin-top: 60px;
}

#sec04 > .diagonal-background-lines_wrapper > .diagonal-background-line_01,
#sec04 > .diagonal-background-lines_wrapper > .diagonal-background-line_02{
    position: absolute;
    top: 50%;  /* 上から50% */
    left: 50%; /* 左から50% */
    /* ↓ここが重要：自身の大きさの半分戻すことで完全に中心に置く */
    transform-origin: center center;
}

#sec04 > .diagonal-background-lines_wrapper > .diagonal-background-line_01{
    width: 1970px;
    height: 75px;
    opacity: 0.39;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -50%) rotate(2.384deg);
}

#sec04 > .diagonal-background-lines_wrapper > .diagonal-background-line_02{
    width: 1970px;
    height: 75px;
    background: linear-gradient(90deg, #001232 0%, #003598 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -50%) rotate(-2.384deg);
}
#sec04 > .diagonal-background-lines_wrapper > .diagonal-background-line_02 > h3{
    font-size: 47px;
    text-align: center;
    color: #fff;
    letter-spacing: -2.873px;
}

#sec04 > .contents_wrapper.top-area{
    position: relative;
    width: 1199px;
    margin: 30px auto 0;
    border-top: 2px solid #FFF;
    border-left: 2px solid #FFF;
    border-right: 2px solid #FFF;
    padding-top: 40px;
    padding-bottom: 24px;
    text-align: center;
}

#sec04 > .contents_wrapper > p{
    font-size: 18px;
    color: #fff;
    line-height: 1.9;
    margin-left: -10px;
}
#sec04 > .contents_wrapper > p:nth-of-type(1){
    margin-bottom: 15px;
}

#sec04 > .contents_wrapper > h4{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 25px;
    font-size: 21px;
    color: #fff;
    line-height: 1.9;
    padding: 8px 0;
    background-color: #001232;
}
#sec04 > .contents_wrapper > h4::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50px);
    width: 0;
    height: 0;
    background-color: transparent;
    border-width: 17px 10px 0 10px; /* 大きさはここで調整（15px） */
    border-color: transparent;
    border-top-color: #001232;
}
.warning-text{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 5px;
    padding-left: 5px;
    padding-right: 5px;
    color: #001232;
    background: linear-gradient(180deg, #FFF 0.54%, #CFCFCF 99.83%);
}
.warning-text::before,
.warning-text::after{
    content: "";
    display: block;
    width: 24px;
    height: 22px;
    background-image: url(../img/warning-mark.png);
    background-position: center;
    background-size: contain;
}
.warning-text::after{
    margin-left: -15px;
}


.sec04-image_01{
    position: absolute;
    width: 294px;
    height: auto;
    bottom: 0;
    left: 178px;
}

#sec04 > .contents_wrapper > p:nth-of-type(3){
    font-size: 25px;
    line-height: 1.43;
    text-align: left;
    margin-top: 35px;
    margin-left: 483px;
}

strong{
    display: block;
}

.first-free{
    display: flex;
    align-items: center;
    margin-top: 14px;
    margin-left: 483px;
    font-size: 25px;
    color: #fff;
}

.first-free > strong{
    width: 80px;
    height: 80px;
    padding: 8px 10px;
    font-size: 25px;
    color: #F3DDA3;
    text-align: center;
    line-height: 1.18;
    border: 2px solid #F3DDA3;
}

.first-free > .text_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -11px;
    margin-left: 15px;
    margin-right: 10px;
}
.first-free > .text_wrapper strong{
    display: block;
    font-size: 30px;
    color: #F3DDA3;
    text-align: left;
}
.first-free > .text_wrapper strong:last-child {
    position: relative;
    display: inline-block;
    align-items: center;
    font-size: 20px; 
}
.first-free > .text_wrapper strong:last-child::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 152px;
    height: 1px;
    background-color: #F3DDA3;
    margin-left: 88px;
}
#sec04 > .contents_wrapper.middle-area{
    position: relative;
    background-image: url(../img/sec04_bg-image_02.jpg);
    width: 1199px;
    height: 300px;
    margin: 0 auto;
    padding-top: 91px;
    padding-left: 85px;
    text-align: left;
}

#sec04 > .contents_wrapper.middle-area p{
    font-size: 28px;
    color: #001126;
    line-height: 1.9;
}
 .size-33{
    font-size: 33px;
 }

 .blue-underline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-left: 7px;
    margin-right: 7px;
    padding-left: 3px;
    padding-right: 3px;
    background-color: #04306A;
}
#sec04 > .contents_wrapper.middle-area .gold-text{
    font-size: 33px;
    background: linear-gradient(180deg, #FFF 0%, #FFFEBD 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.red-text{
    position: relative;
    font-size: 33px;
    color: #950807;
    margin-left: -12px;
}
.red-text::after{
    content: "";
    display: block;
    position: absolute;
    bottom: -4px;
    left: 8px;
    width: 168px;
    height: 10px;
    background-image: url(../img/red-underline_01.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.sec04-image_02{
    position: absolute;
    width: 502px;
    height: auto;
    top: 40px;
    right: -121px;
}

#sec04 > .contents_wrapper.bottom-area{
    width: 1199px;
    border-left: 2px solid #FFF;
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    padding-top: 80px;
    padding-bottom: 55px;
    margin: 0 auto;

}

#sec04 > .contents_wrapper.bottom-area > p {
    font-size: 30px;
    text-align: center;
    line-height: 1.43;
    margin-bottom: 10px;
}

#sec04 > .contents_wrapper.bottom-area > strong {
    font-size: 35px;
    color: #fff;
    text-align: center;
    line-height: 1.43;
}
.underline_02::after{
    content: "";
    display: block;
    position: absolute;
    width: 398px;
    left: 50%;
    transform: translateX(-88%);
    height: 0px;
    border-bottom: 2px solid #fff;
}

.refusal-list-contents{
    margin-top: 45px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
}

.refusal-list{
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: 21px;
    color: #fff;
    border-bottom-left-radius: 1.9;
}

.refusal-list > li{
    display: flex;
    align-items: center;
}
.refusal-list > li:nth-of-type(1){
    margin-left: 45px;
}
.refusal-list > li:nth-of-type(2){
    margin-left: 75px;
}
.refusal-list > li:nth-of-type(3){
    margin-left: 105px;
}

.sec04-image_03{
    width: 250px;
    height: auto;
}

.bottom-strong{
    margin: 75px 217px 0;
    font-size: 37px;
    color: #fff;
}
#sec04 .size-30{
    font-size: 30px;
}
#sec04 > .contents_wrapper.bottom-area .gold-label{
    display: inline-block;
    color: #000;
    padding: 0 10px;
}
#sec04 > .contents_wrapper.bottom-area .gold-label:nth-of-type(1){
    margin-top: 10px;
    margin-bottom: 10px;
}




/*sec05*/
#sec05{
    background-image: url(../img/sec05_bg-image.jpg);
    padding: 55px 0;
}

#sec05 > h2{
    font-size: 37px;
    color: #fff;
    text-align: center;
    line-height: 1.24;
    margin-bottom: 10px;
}

#sec05 .cta_button_03{
    display: block;
    width: 616px;
    margin: 35px auto 25px;
}

#sec05 > h2 + p{
    font-size: 22px;
    color: #fff;
    text-align: center;
    line-height: 1.24;

}

.sec05_bg-image{
    width: 616px;
    height: auto;
    margin: 35px auto 25px;
}

.annotation{
    display: block;
    width: 615px;
    margin: 0 auto;
    color: #FFF;
    font-family: "Noto Sans CJK JP", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.9; /* 26.6px */
}




/*sec06*/
#sec06{
    background-image: url(../img/sec06_bg-image.jpg);
    padding-top: 120px;
    padding-bottom: 121px;
}

.sec06-image_01{
    width: 720px;
    height: auto;
    margin: 0 auto 50px;
}

#sec06 > h2 > .sec06-main-text_image{
    width: 489px;
    margin: 0 auto;
}

.plan-description{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    width: 744px;
    margin: 15px auto 52px;
    padding: 20px;
    font-size: 16px;
    color: #000;
    line-height: 1.24;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.65);
    
}
.size-20{
    font-size: 20px;
}

.plan-description + p{
    width: 244px;
    display: block;
    margin: 0 auto 32px;
    padding: 2px 5px;
    font-size: 18px;
    color: #fff;
    line-height: 1.24;
    text-align: center;
    background-color: #C22829;
}

#sec06 > h4{
    font-size: 16px;
    line-height: 1.24;
    text-align: center;
}

.triangle {
  width: 0;
  height: 0;
  margin: 20px auto 0;
  border-style: solid;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
  border-top: 12px solid #000;
  border-bottom: 0;
}

.support-list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 45px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.support-list > li{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 370px;
    height: 173px;
    background: linear-gradient(102deg, #1B75CB 0.65%, #00529F 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.support_number{
    position: absolute;
    width: 115px;
    padding-bottom: 2px;
    padding-left: 10px;
    top: 10px;
    left: 0;
    font-size: 15px;
    color: #136BBE;
    font-weight: 600;
    line-height: 1.24;
    text-align: left;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
}
.size-18{
    font-size: 18px;
}

.support-name-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    list-style: 1.23;
    text-align: center;
}
.support-name{
    font-size: 23px;
}
.support-name .size-20{
    font-size: 20px;
}

.support-sub{
    font-size: 15px;
}

.support-list > li:nth-of-type(8) > .support-name-wrapper > .support-name{
    width: 184px;
    line-height: 1.2;
}




/*sec07*/
#sec07{
    background-image: url(../img/sec07_bg-image.png);
    padding-top: 99px;
    padding-bottom: 61px;
}

#sec07 h2{
    font-size: 25px;
    color: #FFF;
    line-height: 1.23;
    text-align: center;
    text-shadow: 0 2px 4px #000;
}

.size-30{
    font-size: 30px;
}

#sec07 > h2 .gold-text{
    font-size: 30px;
    color: #DBBF76;
    background: none;
}
#sec07 > h2 .dots{
  background-image: radial-gradient(circle at center, #DBBF76 19%, transparent 21%),
                    radial-gradient(circle at center, rgba(0,0,0,0.8) 19%, transparent 21%); /* 点の色とサイズ調整 */
  background-position: top right,
                       top 0.05em left 0; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: .2em; /* 縦方向の位置調整 */
  
}

#sec07 > h2 > .text_wrapper:nth-of-type(2){
    margin: 20px 0 23px;
}

#sec07 > h2 .gold-label{
    display: inline;
    height: 52px;
    padding: 0 5px;
    margin-right: 10px;
    font-size: 30px;
    color: #000;
    text-shadow: none;
}

.strategy-package-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 168px;
    color: #fff;
    gap: 34px;
}
.strategy-package-list li{
    position: relative;
    height: 166px;
    display: flex;
    align-items: center;
}
.strategy-package-list li:nth-child(odd){
    flex-direction: row-reverse;
}

#sec07 .strategy-package-list .text_wrapper{
    width: 980px;
}

#sec07 .strategy-package-list .title-group{
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    line-height: 1.24;
}
#sec07 .strategy-package-list .title-group > .num{
    font-size: 50px;
}

#sec07 .strategy-package-list .title-group > h3{
    position: relative;
    font-size: 25px;
    color: #DBBF76;
    margin-left: 21px;
    margin-right: 41px;
}
#sec07 .strategy-package-list .title-group > h3::after{
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    width: 912px;
    left: -10px;
    height: 0px;
    border-bottom: 1px dashed #fff;
}

#sec07 .strategy-package-list .title-group > .sub{
    position: relative;
    font-size: 20px;
}
#sec07 .strategy-package-list .title-group > .sub::before{
    content: "";
    position: absolute;
    left: -21px;
    top: 50%;
    transform: translateY(-50%) rotate(40deg);
    width: 1px;
    height: 30px;
    background-color: #fff;
    pointer-events: none;
}

.strategy-explanation{
    font-size: 16px;
    line-height: 1.9;
}

.strategy-image{
    display: block;
    height: auto;
    object-fit: contain;
}
.strategy-package-list li:nth-of-type(1) .strategy-image{
   width: 282px;
   margin-right: 10px;
   margin-left: -93px;
}
.strategy-package-list li:nth-of-type(2) .strategy-image{
    width: 282px;
    margin-left: 10px;
    margin-right: -45px;
}
.strategy-package-list li:nth-of-type(3) .strategy-image{
    width: 213px;
    margin-right: 48px;
    margin-left: -60px;
}
.strategy-package-list li:nth-of-type(4) .strategy-image{
    width: 313px;
    margin-left: -25px;
    margin-right: -40px;
}
.strategy-package-list li:nth-of-type(5) .strategy-image{
    width: 268px;
    height: 113px;
    margin-right: 34px;
    margin-left: -100px;
}
.strategy-package-list li:nth-of-type(6) .strategy-image{
    width: 244px;
    margin-left: 26px;
    margin-right: -20px;
}

/*sec08*/
#sec08{
    background-image: url(../img/sec08_bg-image.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}

.sec08-image_01{
    width: 275px;
    height: auto;
}
;
#sec08 .text_wrapper{
    text-align: center;
    line-height: 1.24;
}
#sec08 > .text_wrapper > strong{
    font-size: 37px;
    margin-bottom: 30px;
}
.red-underline_image{
    position: relative;
}
.red-underline_image::after{
    content: "";
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0cqi;
    width: 104px;
    height: 6px;
    background-image: url(../img/red-underline_02.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#sec08  > .text_wrapper p{
    font-size: 16px;
}
#sec08 .text_wrapper p:nth-of-type(1){
    margin-bottom: 15px;
}




/*sec09*/
#sec09{
    position: relative;
    height: 2045px;
    background-image: url(../img/sec09_bg-image.png);
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 127px;
    padding-bottom: 120px;
}

#sec09 .diagonal-background-lines_wrapper {
    position: relative;
    width: 100%;
   
}

#sec09 > .diagonal-background-lines_wrapper > .diagonal-background-line_01,
#sec09 > .diagonal-background-lines_wrapper > .diagonal-background-line_02{
    position: absolute;
    top: 50%;  /* 上から50% */
    left: 50%; /* 左から50% */
    /* ↓ここが重要：自身の大きさの半分戻すことで完全に中心に置く */
    transform-origin: center center;
}

#sec09 > .diagonal-background-lines_wrapper > .diagonal-background-line_01 {
    width: 1970px;
    height: 75px;
    opacity: 0.39;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -50%) rotate(2.384deg);
}
#sec09 > .diagonal-background-lines_wrapper > .diagonal-background-line_02 {
    width: 1970px;
    height: 75px;
    background: linear-gradient(90deg, #001232 0%, #003598 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -50%) rotate(-2.384deg);
}
#sec09 > .diagonal-background-lines_wrapper > .diagonal-background-line_02 > h3 {
    font-size: 47px;
    text-align: center;
    color: #fff;
    letter-spacing: -2.873px;
}

.voyage-area{
    margin-top: 211px;
    color: #fff;
}


.voyage-area > .text-and-image-set_wrapper:nth-child(odd){
    flex-direction: row-reverse;
}



.voyage-area > .text-area{
    width: 643px;
    display: flex;
    align-items: flex-start;

}
.voyage-area .text-area:nth-child(1){
    position: absolute;
    top: 25%;
    right: 16.5%;
}
.voyage-area .text-area:nth-child(2){
    position: absolute;
    top: 49.8%;
    left: 19.8%
}
.voyage-area .text-area:nth-child(3){
    position: absolute;
    bottom: 16.5%;
    right: 16%;
}

@media screen and (max-width: 1440px){
    .voyage-area .text-area:nth-child(1){
    position: absolute;
    right: 2.5%;
}
    .voyage-area .text-area:nth-child(2){
    position: absolute;
    left: 9.8%
}
    .voyage-area .text-area:nth-child(3){
    position: absolute;
    right: 6%;
}
}

.main-col {
    display: flex;
    flex-direction: column; /* 見出しと本文を縦に積む */
    align-items: flex-start;
    /* width: 100%; <-- 必要に応じて */
}



#sec09 .text-area .num{
    font-size: 40px;
    line-height: 1.24;
    letter-spacing: 10px;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

#sec09 .text-area h3{
    position: relative;
    font-size: 35px;
    color: #DBBF76;
    line-height: 1.24;
}

 #sec09 .text-area p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.9;
}

side-col { order: 1; } /* 数字を1番目（左） */
.main-col { order: 2; } /* 文章を2番目（右） */


/* --- 理由1（奇数番目）：右側に数字を配置 --- */
.voyage-area .text-area:nth-child(1) .side-col {
    order: 2; /* 2番目（右）へ移動 */
    position: relative;
    top: -63px;
    left: -107px;
}
.voyage-area .text-area:nth-child(1) .main-col {
    order: 1; /* 1番目（左）へ移動 */
}

/* --- 理由2（偶数番目）：左側に数字を配置（デフォルト通りでOKなら記述不要） --- */
.voyage-area .text-area:nth-child(2) .side-col {
    order: 1; 
    position: relative;
    top: -25px;
    left: -24px;
}
.voyage-area .text-area:nth-child(2) .main-col {
    order: 2;
}
.voyage-area .text-area:nth-child(2) h3{
        margin-left: -19px;
   }

/* --- 理由3（奇数番目）：右側に数字を配置 --- */
.voyage-area .text-area:nth-child(3) .side-col {
    order: 2;
    position: relative;
    top: -65px;
    left: -46px;
}
.voyage-area .text-area:nth-child(3) .main-col {
    order: 1;
}

/*sec10*/
#sec10{
    position: relative;
    background-image: url(../img/sec10_bg-image.jpg);
    padding: 120px 0;
    font-size: 16px;
    width: 100%;
    overflow: hidden;
}

#sec10 > .contents_wrapper{
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 0 auto;
    box-sizing: border-box;
}

#sec10 .text_wrapper {
    /* 画面が広い時は残りスペースを使う */
    flex: 1; 
    /* ただし、400pxより狭くなるなら段落ちさせる */ 
}

#sec10 .text_wrapper > p:nth-child(1){
    margin-bottom: 30px;
    font-size: 25px;
    line-height: 1.24;
}
#sec10 .text_wrapper > p:nth-child(2){
    display: inline-flex;
    align-items: center;
    font-size: 25px;
    line-height: 1.24;
    margin-bottom: 60px;
}
#sec10 .blue-bg{
    width: 250px;
    height: 56px;
    padding: 5px;
    font-size: 37px;
    color: #fff;
    line-height: 1.24;
     white-space: nowrap;
    background: linear-gradient(90deg, #011E56 0%, #084683 100%);
}

#sec10 .text_wrapper > p:nth-child(3){
    display: block;
    width: 100%;
    line-height: 1.9;
}
.left-25{
    margin-left: 5px;
}

#sec10 .text_wrapper > p:nth-child(4){
    margin-left: 5px;
}
.size-25{
    font-size: 25px;
    line-height: 1.9
}

.sec10-image_01{
    width: 445px;
    max-width: 100%;
    text-align: right;
}
.sec10-image_01 img{
    width: 100%;
    height: auto;
}
.sec10-image_01 p{
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.9;
}




/*sec11*/
#sec11{
    height: 1151px;
    background-image: url(../img/sec11_bg-image.jpg);
    padding: 100px 0 120px;
}

#sec11 > h2{
    font-size: 37px;
    color: #fff;
    line-height: 1.24;
    text-align: center;
    margin-bottom: 58px;
}

.splide{
  position: relative;
  margin: 0 auto;
  max-width: 1160px;
}
.splide img{
  width:505px;
  height: 200px;
  object-fit: cover;
}
.splide__slide{
  width: 565px;
  padding: 20px 30px;
  margin-right: 30px;
  background-color: #fff;
}

.splide__slide:last-child {
  margin-right: 0;
}
.splide__slide > p{
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.9;
}
.splide__arrow{
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    opacity:1;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 1;
    background: none;
}

.button::before{
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.splide__arrow--prev{
  left: -21px;
}
.prev::before{
  background-image: url(../img/left-btn.png);
}
.splide__arrow--next{
  right: -21px;
}
.next::before{
  background-image: url(../img/right-btn.png);
}

.splide__pagination__page{
  opacity: 1;
}
.your-class-page{
  background-color: rgba(255, 255, 255, 0.25);
  height: 20px;
  width: 20px;
}
.your-class-page.is-active{
  background-color: #fff;
  height: 20px;
  width: 20px;
  transform: scale(1);
}
.your-class-pagination{
  position: absolute;
  bottom: -80px;
  gap: 30px;
}

#sec11 .occupation{
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.9;
    text-align: center;
}
#sec11 .company-name{
    font-size: 18px;
    line-height: 1.9;
    text-align: center;
}
#sec11  .representative-name{
    position: relative;
    width: 505px;
    font-size: 18px;
    line-height: 1.9;
    text-align: center;

    display: flex;
    align-items: center;
    gap: 15px;
}
#sec11 .representative-name::before,
#sec11 .representative-name::after {
    content: "";
    display: block;
    
    /* ▼ 線の見た目 */
    height: 1px;            /* 線の太さ */
    background-color: #000; /* ★線の色（デザインに合わせて変更してください） */
    
    /* ▼▼▼ これが重要：余った幅を全部埋める ▼▼▼ */
    flex-grow: 1; 
}

#sec11 h3 {
    margin-top: 15px;
    font-size: 18px;
    color: #184072;
    font-weight: 800;
    line-height: 1.39;
    padding-left: 16px;
    border-left: 7px #184072 solid;
}



/*sec12*/
#sec12{
    padding: 120px 0;
}

#sec12 > h2{
    font-size: 37px;
    line-height: 1.24;
    text-align: center;
}

#sec12 > .contents_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
}

.map-area{
    width: 745px;
    height: 370px;
    padding: 10px;
    border: 1px solid #000;
    background: linear-gradient(180deg, #011F57 0%, #084683 100%);
}

.address-area{
    width: 421px;
}

.address-title{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 102px;
    padding-left: 6px;
    background-color: #000;
    border-radius: 35px 0 0 35px;
}
.circle{
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
}
.address-title > h3{
    font-size: 18px;
    color: #fff;
    line-height: 1.39;
    margin-bottom: 3px;
}

.address{
    position: relative;
    display: block;
    margin-top: 13px;
    font-size: 15px;
    line-height: 1.39;
}
.address::after{
    content: "";
    display: block;
    position: absolute;
    bottom: -15px;
    width: 420px;
    left: 0;
    height: 0px;
    border-bottom: 1px dashed #000;
}

.address-description{
    display: block;
    margin-top: 30px;
}



/*sec13*/
#sec13{
    padding: 120px 0;
    background: linear-gradient(139deg, #001D55 0%, #074683 100%);
}

#sec13 h2{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 900px;
    margin: 0 auto;
    padding: 5px 0;
    font-size: 37px;
    color: #022660;
    line-height: 1.24;
    text-align: center;
    background: linear-gradient(90deg, #A78941 0%, #DCC077 100%);
}
#sec13 h2::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-23px);
    width: 0;
    height: 0;
    background-color: transparent;
    border-width: 28px 20.5px 0 20.5px;
    border-color: transparent;
    border-top-color: #C1A55D;
}
#sec13 .blue-bg{
    color: #B69850;
    background: #022660;
    padding: 0 5px;
}

.line-btn{
    width: 613px;
    height: auto;
    margin: 73px auto 70px;
}

#sec13 h3{
    font-size: 37px;
    color: #fff;
    line-height: 1.24;
    text-align: center;
}

form{
    width: 100%;
    max-width: 900px;
    margin: 30px auto 0;
    padding: 60px 70px;
    background-color: #fff;
    border-radius: 5px;
}

.input_wrapper{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 1.75;
}

.input_wrapper {
    margin-bottom: 15px; /* 項目ごとの余白 */
}

.input-title {
    display: flex;
    align-items: center;
    gap: 15px; /* タイトルと必須ラベルの間隔 */
    margin-bottom: 10px;
}

/* --- ラベルのデザイン --- */
/* 赤い「必須」ラベル */
.label-required {
    background-color: #9D0000; /* 濃い赤 */
    color: #fff;
    font-size: 14px;
    padding: 0 7px;
    border-radius: 100px;
    vertical-align: middle;
}

/* 赤い「選択してください」ラベル */
.label-select {
    background-color: #9D0000;
    color: #fff;
    font-size: 14px;
    padding: 0 7px;
    border-radius: 100px;
}

/* --- 入力欄のデザイン (画像に合わせてグレー背景) --- */
.input-field {
    width: 100%;
    height: 40px;
    background-color: #F7F7F7; /* 薄いグレー */
    border: 1px solid #E3E3E3; /* 薄い枠線 */
    border-radius: 5px;
    padding: 4px 20px;
    font-size: 16px;
    box-sizing: border-box; /* paddingを含めた幅にする */
}

.select-wrapper {
    position: relative;
    width: 100%;
}

/* 矢印を作る（L字型を作って回転させる） */
.select-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    
    /* ▼ 位置の設定：右端から14px、上下中央 */
    right: 14px;
    top: 50%;
    
    /* ▼ 矢印のサイズ（正方形の枠を作る） */
    width: 8px;  /* ここを変えると矢印全体の幅が変わります */
    height: 8px; /* widthと同じ数字にしてください */
    
    /* ▼ 矢印の線（右と下だけに線をつける） */
    border-right: 2px solid #4E4E4E;  /* ★太さ3px */
    border-bottom: 2px solid #4E4E4E; /* ★太さ3px */
    
    /* ▼ 回転させて下向き（V字）にする */
    /* translateY(-70%) は、回転した分だけ少し上にズレるのを補正するため */
    transform: translateY(-70%) rotate(45deg);
    
    /* ▼ 重要：矢印をクリックしても背面のセレクトボックスが反応するようにする */
    pointer-events: none;
}

/* セレクトボックス本体の設定（元の矢印を消す） */
.select-wrapper select {
    width: 100%;
    cursor: pointer;
    background: linear-gradient(173deg, #F7F7F7 9.58%, #E4E4E4 99.23%);
    border: 1px solid #E3E3E3;
    padding: 5px 15px;
    /* 矢印と文字が被らないように右に余白 */
    padding-right: 40px; 
}

/* テキストエリアの高さ */
.textarea-field {
    height: 190px;
    resize: vertical; /* 縦方向のみリサイズ許可 */
}

/* --- チェックボックスの並び --- */
.checkbox-group {
    max-width: 572px;
    display: flex;
    flex-wrap: wrap; /* 改行許可 */
    align-items: center;
    gap: 18px 20px; /* 縦横の間隔 */
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    /* 1. ブラウザ標準の見た目を消す */
    appearance: none;
    -webkit-appearance: none;

    /* 2. サイズと見た目を指定 (20px x 20px) */
    width: 20px;
    height: 20px;
    background-color: rgba(217, 217, 217, 0.00);/* 背景色 */
    border: 1px solid #000; /* 枠線の色（画像に合わせて調整） */
    border-radius: 0; /* 角丸なし（四角） */
    
    /* 3. 位置調整 */
    margin: 0; /* 余計なマージンを消す */
    cursor: pointer;
    position: relative; /* レ点を配置するための基準点 */
    vertical-align: text-bottom; /* テキストとの高さ合わせ */
}

/* --- チェックされた時の「レ点（✔）」を作る --- */
.checkbox-group input[type="checkbox"]:checked::after {
    content: "";
    display: block;
    position: absolute;
    
    /* レ点の位置調整（微調整してください） */
    top: -2px;
    left: 4px;
    width: 10px;
    height: 17px;
    border-bottom: 3px solid #184072; /* レ点の色 */
    border-right: 3px solid #184072;  /* レ点の色 */
    transform: rotate(45deg); /* 45度回転させてレ点にする */
}

/* --- 郵便番号と都道府県の横並び --- */
.flex-row {
    display: flex;
    gap: 30px; /* 間の余白 */
}

.flex-item {
    flex: 1; /* 幅を均等に分ける */
    /* 郵便番号の方を少し狭くしたいなら .flex-item:first-child { flex: 0 0 40%; } とかでもOK */
}

/* --- 送信ボタンのデザイン --- */
.submit-wrapper {
    text-align: center;
    margin-top: 35px;
}

.submit-btn {
    display: inline-block;
    width: 100%;
    max-width: 452px;
    border: 3px solid #E14647;
    background-color: #C22829; 
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-size: 16px;
    padding: 11px 0;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25); /* 影 */
    transition: opacity 0.3s;
    
    /* 矢印アイコン（擬似要素で作る簡易版） */
    position: relative;
}

.submit-btn::after {
    content: ""; /* 簡易的な矢印 */
    display: inline-block;
    
    /* ▼ 矢印のサイズと線の太さ */
    /* 一辺8pxの正方形の枠を作り、それを回転させます */
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;  /* 上の線（太さ2px、白） */
    border-right: 2px solid #fff; /* 右の線（太さ2px、白） */
    
    /* ▼ 回転させて「くの字」にする */
    transform: rotate(45deg);
    
    /* ▼ 位置の微調整 */
    margin-left: 12px; /* テキストとの間隔 */
    vertical-align: middle; /* 高さ合わせ */
    position: relative;
    top: -1px; /* 少しだけ上に微調整 */
    border-radius: 2%;
}

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

/* --- スマホ対応 (768px以下で縦並びにする) --- */
@media screen and (max-width: 768px) {
    form {
        padding: 30px 20px; /* 余白を狭く */
    }
    .flex-row {
        flex-direction: column; /* 郵便番号・都道府県を縦並びに */
        gap: 0;
    }
    .checkbox-group {
        flex-direction: column; /* チェックボックスも縦に */
        gap: 10px;
    }
}

/*sec14*/
#sec14{
    height: 170px;
    padding: 19px;
    background-image: url(../img/sec14_bg-image.jpg);

    position: fixed; /* 固定配置 */
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 100%;

    transform: translateY(110%); /* 初期状態は画面の下に隠す */
    transition: transform 0.4s ease-out; /* ふわっと出す */
    box-shadow: 0 -5px 10px rgba(0,0,0,0.2); /* 少し影をつけて浮いてる感を出す */
}
/* 表示用クラス（JSで付与） */
#sec14.is-visible {
    transform: translateY(0); /* 画面内に出現 */
}

#sec14 > h2 {
    font-size: 20px;
    color: #fff;
    line-height: 1.13;
    text-align: center;
    margin-bottom: 14px;
} 
#sec14 > h2 .size-18{
    font-size: 18px;
}
#sec14 > h2 .size-27{
    font-size: 27px;
}

.cta_button_04{
    display: block;
    width: 337px;
    aspect-ratio: 337.06/61.58;
    margin: 0 auto;
}





/*フッター*/
footer{
    max-width: 1920px;
    height: 190px;
    padding: 40px 0;
    background: linear-gradient(90deg, #080808 0%, #484848 100%);
}

footer .logo{
    width: 119px;
    height: auto;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center; /* 左右中央揃え */
    align-items: center;     /* 上下中央揃え */
    gap: 30px;               /* 2つの間の距離 */
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff; /* 文字色（背景に合わせて変更してください） */
    text-decoration: none;
    position: relative; /* 線の基準点 */
    font-size: 15px;
    line-height: 1.39;
}

/* ▼ 1つ目のリンクの「右側」に線を作る */
.footer-links a:first-child::after {
    content: "";
    position: absolute;
    
    /* ▼ 位置合わせの計算 */
    right: -15px; /* gap(30px)の半分だけ右にズラす */
    top: 50%;
    transform: translateY(-50%); /* 縦のど真ん中に補正 */
    
    /* ▼ 線のサイズと色 */
    width: 1px;
    height: 20px;
    background-color: #fff; /* 線の色 */
    
    /* (念の為) 線がクリックを邪魔しないように */
    pointer-events: none; 
}

footer > small{
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    line-height: 1.7;
    text-align: center;
}





/*アニメーション*/
.btn-animation{
    position: relative;
    display: block;
    transition: .2s;
    z-index: 3;
}
.btn-animation img{
    position: relative;
    z-index: 4;
}

.btn-animation a{
    position: relative;
    z-index: 2;
}
.btn-animation::before,.btn-animation::after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: -3%;
  left: 0;
  border-radius: 10px;
  background: #e14647;
  border: 2px solid #c22829;
  transform: translate3d(0,0,0);
}
.btn-animation:before {
  animation: anime 2s ease-out infinite;
}
.btn-animation:after {
 animation: anime 2s ease-out 1s infinite;
}
@keyframes anime{
0%{transform:scale(.95); opacity:1}
90%{opacity:.1}to{transform:scale(1.15,1.4); opacity:0}
}



/*サンクスページ*/
.thanks-wrapper{
    height: 80vh;
    background: linear-gradient(139deg, #001D55 0%, #074683 100%);
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    padding-top: 120px;
}

.thanks-wrapper h2{
    display: block;
    width: 100%;
    font-size: 35px;
    margin: 0 auto 60px;
    text-align: center;
}

.thanks-wrapper p{
    display: block;
    width: 900px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto 20px;
}

.thanks-wrapper button{
    display: block;
    width: 300px;
    font-size: 15px;
    text-align: center;
    margin: 100px auto;
}

/*スマホ*/
@media screen and (max-width: 768px){
    .header-inner,
    .contents_wrapper {
        width: 100%;
        padding: 20px 15px; /* 左右の余白はここで統一管理すると楽 */
    }

    .sec_bg{
        background-size: 768px auto;
        background-position: center top;
        background-size: cover;
    }
    .d-block{
        display: inline;
    }
    .d-block.sp{
        display: block;
    }


    /*header*/
    .lp-header{
        height: 64px;
    }


    .header-spacer{
        height: 64px;
    }

    .lp-header .logo{
        width: 85px;
        height: auto;
    }

    .menu-button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 8px;
    }

    .menu-button__line,
    .menu-button::before,
    .menu-button::after {
        content: "";
        width: 25px;
        height: 2px;
        background-color: #fff;
        border-radius: 1px;
        transition: transform 0.3s, opacity 0.3s;
    }

    .menu-button.is-opened .menu-button__line {
        opacity: 0;
    }

    .menu-button.is-opened::before {
        transform: translateY(10px) rotate(45deg);
    }

    .menu-button.is-opened::after {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-right{
        position: absolute;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 100vh;
        top: 100%;
        right: -100%;
        gap: 40px;
        background: linear-gradient(139deg, #001D55 0%, #074683 100%);
        transition: right 0.3s ease-in-out;
    }
    .header-right.is-opened{
        top: 100%;
        right: 0;
    } 
    .header-nav ul{
        width: 317px;
        margin: 50px auto 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        font-size: 18px;
    }
    .header-nav ul li{
       position: relative;
       width: 100%;
    }
    .header-nav ul li::before{
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #fff;
        bottom: -10px;
    }
    .header-nav ul li a{
        display: block;
        width: 100%;
    }
    .header-cta{
        width: 311px;
        max-width: 311px;
    }
    

/*fv*/
    .fv{
        background-image: url(../img/fv-bg_image_sp.webp?2);
        height: 120vw;
    }
    .fv-text-wrapper{
        /*width: 45px;*/
        width: 79.72vw;
        /*mask-size: 45px;*/
        mask-size: 100%;
        /*-webkit-mask-size: 45px;*/
        -webkit-mask-size: 100%;
        -webkit-mask-image: url(../img/fv-main-text_image_sp.png);
        mask-image: url(../img/fv-main-text_image_sp.png);
        top: 51vw;
        left:49.5%;
        transform: translate(-50%, -20vw);
        height: auto;
    }

    .btn-animation::before, .btn-animation::after{
        top: -1px;
    }

    /*sec01*/
    #sec01{
        background-image: url(../img/sec01_bg-image_sp.jpg);
        background-size: 100% auto;
        height: 152vw;
        padding-top: 40px;
    }
    #sec01 h2{
        font-size: 20px;
        margin-bottom: 30px;
    }
    .sec01-inner{
        position: relative;
        flex-direction: column-reverse;
    }
    .sec01-image_01{
        position: absolute;
        left: 0;
        width: 350px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .sec01-text-area{
        width: 325px;
    }
    .problem-list li{
        margin-bottom: 23px;
        justify-content: center;
    }
    .check-icon{
        width: 20px;
        height: 19px;
        margin-right: 5px;
    }
    .text-sub{
        font-size: 15px;
    }
    .text-main{
        font-size: 15px;
        line-height: 1.24;
    }
    .problem-list li:nth-child(1){
        margin-left: 0;
        margin-bottom: 17px;
    }
    .problem-list li:nth-child(2){
        margin-left: 0;
        margin-bottom: 0;
    }
    #sec01 .bottom-p{
        font-size: 18px;
    }
    #sec01 .bottom-p:nth-of-type(1){
        margin-top: 191px;
        margin-bottom: 15px;
    }
    #sec01 .bottom-p:nth-of-type(2){
        margin-bottom: 5px;
    }

    #sec01 .bottom-p span{
        font-size: 18px;
    }


    /*sec02*/
    #sec02{
        background-image:url(../img/sec02_bg-image_sp.jpg);
        padding: 30px 0;
        height: 254px;
    }
    #sec02 > p:nth-of-type(1){
        font-size: 13px;
    }
    .underline_01::after{
        stroke-width: 1px;
        border-bottom: 1px dashed #fff;
    }
    #sec02 > h2{
        margin-top: 8px;
        font-size: 20px;
        line-height: 1.5;
    }
    #sec02 > p:nth-of-type(2){
        font-size: 15px;
    }
    .cta_button_02{
        width: 317px;
        margin-top: 15px;
    }



    /*sec03*/
    #sec03{
        height: 548vw;
        background-image: url(../img/sec03_bg-image_sp.png);
        padding-top: 60px;
    }
    #sec03 > .text-area{
        flex-direction: column;
        gap: 40px;
    }
    #sec03 h3{
        font-size: 20px;
        line-height: 1.7;
    }
    #sec03 .gold-label{
        font-size: 20px;
    }
    #sec03 .size-35{
        font-size: 20px;
    }
    #sec03 .size-27{
        font-size: 20px;
    
    }
    #sec03 .text-area-inner{
        width: 291px;
    }
    #sec03 > .text-area > .text-area-inner:nth-of-type(2) > p:nth-of-type(1){
        margin-bottom: 15px;
        font-size: 15px;
        line-height: 1.5;
    }
    #sec03 > .text-area > .text-area-inner:nth-of-type(2) > p:nth-of-type(2){
        font-size: 18px;
        line-height: 1.5;
    }
    #sec03 > .text-area::after{
        width: 297px;
        margin-top: 85px;
        top: 0;
        transform: translate(-50%, -50%) rotate(180deg);
    }
    #sec03 > .text-image{
        width: 325px;
        height: auto;
        margin: 40px auto 0;
    }
    #sec03 > h2{
        position: absolute;
        width: 100%;
        top: 130vw;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
    }
    #sec03 > h2 .size-32{
        font-size: 20px;
    }
 
    .declaration-area .text-area{
        gap: 10px;
    }
    #sec03 .declaration-area .text-area h3{
        width: 324px;
        font-size: 20px;
        line-height: 1.42;
    }
    #sec03 .declaration-area .text-area p{
        width: 324px;
    }

    .declaration-area .text-area:nth-of-type(1){
        left: 50%;
        top: 36.9%;
    }
    .declaration-area .text-area:nth-of-type(2){
        left: 50%;
        top: 54.9%;
    }
    .declaration-area .text-area:nth-of-type(3){
        left: 50%;
        top: 79.7%;
    }
    #sec03 .declaration-area .text-area:nth-of-type(3) h3{
        width: 340px;
    }
    .declaration-area .text-area:nth-of-type(3) p{
        width: 303px;
    }

    .advisor-custom-made_image{
      box-shadow: none;
    }

    /*sec04*/
    #sec04{
        height: 820px;
        margin-top: 0;
        background-image: none;
        background: linear-gradient(139deg, #001D55 0%, #074683 100%);
    }
    #sec04 > h2{
        font-size: 20px;
        margin-top: 60px;
    }
    .free{
        font-size: 18px;
        gap: 7px;
    }
    .free::before, .free::after {
        height: 21px;
    }
    .diagonal-background-lines_wrapper{
        position: relative;
        width: 100%;
        height: 120px; /* バッテンが収まる高さを確保 */
        margin-top: 0;
        overflow: visible; 
    }
    #sec04 > .diagonal-background-lines_wrapper > .diagonal-background-line_01,
    #sec04 > .diagonal-background-lines_wrapper > .diagonal-background-line_02 {
        position: absolute;
        top: 50%;
        left: 50%;
        /* ここではまだ回転させず、位置だけ指定 */
    }
    #sec04 > .diagonal-background-lines_wrapper > .diagonal-background-line_01{
        width: 496px;
        height: 57px;
        transform: translate(-50%, -50%) rotate(3.384deg);
    }
    #sec04 > .diagonal-background-lines_wrapper > .diagonal-background-line_02{
        width: 523px;
        height: 63px;
        transform: translate(-50%, -50%) rotate(-3.384deg);
    }
    #sec04 > .diagonal-background-lines_wrapper > .diagonal-background-line_02 > h3{
        font-size: 20px;
        letter-spacing: -1.4px;
        margin-top: 2px;
    }
    #sec04 > .contents_wrapper.top-area{
        width: 345px;
        margin: 10px auto 0;
        padding: 30px 0 0;
    }
    #sec04 > .contents_wrapper > p{
        width: 325px;
        margin: 0 auto;
        line-height: 1.7;
    }
    #sec04 > .contents_wrapper > p:nth-of-type(1){
        font-size: 19px;
        margin-bottom: 20px;
    }
    #sec04 > .contents_wrapper > h4{
        flex-direction: column;
        margin-top: 30px;
        font-size: 15px;
        padding: 0 0 6px;
    }
    #sec04 > .contents_wrapper > h4::after{
        border-width: 10px 8px 0 8px;
        transform: translateX(-50%);
    }
    .warning-text{
        width: 296px;
        justify-content: center;
    }
    .warning-text::before, .warning-text::after{
        width: 15px;
        height: 14px;
    }
    .warning-text::after{
        margin-left: -3%;
    }
    #sec04 > .contents_wrapper > p:nth-of-type(3){
        width: 325px;
        font-size: 20px;
        margin: 9px auto;
        text-align: center;
        line-height: 1.7;
    }
    .first-free{
        justify-content: center;
        font-size: 18px;
        margin: 30px auto 0;
    }
    .first-free > strong{
        font-size: 18px;
        width: 60px;
        height: 60px;
        line-height: 1.18;
    }
    .first-free > .text_wrapper{
        margin-top: -5px;
        margin-left: 11px;
    }
    .first-free > .text_wrapper strong{
        font-size: 22px;
    }
    .first-free > .text_wrapper strong:last-child{
        font-size: 15px;
    }
    .first-free > .text_wrapper strong:last-child::after{
        width: 111px;
        margin-left: 65px;
    }
    .sec04-image_01{
        width: 324px;
        left: 10px;
    }

    #sec04 > .contents_wrapper.middle-area{
        background-image: url(../img/sec04_bg-image_02_sp.jpg);
        width: 100%;
        height: 198px;
        padding-top: 10px;
        padding-left: 25px;
    }
    #sec04 .middle-area p{
        display: block;
        margin: 0 auto;
        font-size: 20px;
        line-height: 1.9;
    }
    #sec04 .size-33{
        font-size: 25px;
    }
    
    .sec04-image_02{
        width: 297px;
        top: 188px;
        right: 0;
    }
    .blue-underline{
        height: 26px;
        margin: 0 2px;
        padding-left: 3px;
        padding-right: 3px
    }
    #sec04 > .contents_wrapper.middle-area .gold-text{
        font-size: 22px;
    
    }
    .red-text{
        font-size: 22px;
    }
    .red-text::after{
        width: 128px;
        height: 7px;
        left: 0;
        bottom: -6px;
    }
    #sec04 > .contents_wrapper.bottom-area{
        width: 345px;
        padding-top: 144px;
        padding-bottom: 31px;
        padding-left: 10px;
        padding-right: 10px;
    }
    #sec04 > .contents_wrapper.bottom-area p{
        font-size: 18px;
        line-height: 1.43;
        margin-bottom: 0;
    }
    #sec04 > .contents_wrapper.bottom-area > strong{
        font-size: 20px;
        line-height: 1.9;
    }
    .underline_02::after{
        width: 227px;
        transform: translateX(-53%);
    }
    .refusal-list-contents{
        flex-direction: column-reverse;
        gap: 19px;
        margin-top: 20px;
    }
    .refusal-list{
        gap: 15px;
        font-size: 15px;
    }
    #sec04 > .contents_wrapper.bottom-area .refusal-list li{
        margin-left: 0;
    }
    #sec04 > .contents_wrapper.bottom-area .refusal-list li p{
        font-size: 15px;
    }
    #sec04 .check-icon{
        width: 19px;
        height: 18px;
        margin-right: 10px;
    }
    .sec04-image_03{
        width: 150px;
    }
    .bottom-strong{
        margin: 35px auto 0;
        font-size: 20px;
        line-height: 1.43;
    }
    #sec04 > .contents_wrapper.bottom-area .gold-label{
        display: inline;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
        line-height: 1.8;
        padding: 0px 6px; /* 上下左右の余白 */
        background: linear-gradient(90deg, #A78941 0%, #DCC078 100%);
    }
    #sec04 > .contents_wrapper.bottom-area .gold-label .d-block.sp {
        display: inline;
    }
    #sec04 > .contents_wrapper.bottom-area .gold-label .d-block.sp::before {
        content: "\A";      /* 改行コード */
        white-space: pre;   /* 改行を有効にする */
    }
    #sec04 .size-30{
        font-size: 17px;
    }
    #sec04 > .contents_wrapper.bottom-area .gold-label:nth-of-type(1) {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    #sec04 > .contents_wrapper.bottom-area .gold-label:nth-of-type(3) {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    


    /*sec05*/
    #sec05{
        background-image: url(../img/sec05_bg-image_sp.jpg);
        padding: 30px 0;
    }
    #sec05 > h2{
        font-size: 20px;
        margin-bottom: 8px;
    }
    #sec05 > h2 + p{
        font-size: 15px;
    }
    #sec05 .cta_button_03{
        width: 317px;
        margin: 15px auto;
    }
    .annotation{
        width: 325px;
        font-size: 10px;
        line-height: 1.7;
        font-weight: 400;
    }



    /*sec06*/
    #sec06{
        background-image: url(../img/sec06_bg-image_sp.jpg);
        padding-top: 55px;
        padding-bottom: 50px;
    }
    .sec06-image_01{
        width: 325px;
        margin-bottom: 20px;
    }
    #sec06 > h2 > .sec06-main-text_image{
        width: 330px;
    }
    .plan-description{
        width: 325px;
        margin: 20px auto 25px;
        padding: 0;
        font-size: 15px;
        line-height: 1.7;
        gap: 0;
    }
    .plan-description p:nth-of-type(1){
        margin-bottom: 20px;
    }
    .plan-description p:nth-of-type(2){
        margin-bottom: 15px;
    }
    .size-20{
        font-size: 18px;
    }
    .plan-description + p{
        width: 273px;
        padding: 3px 6px;
        font-size: 20px;
        margin: 0 auto 15px;
    }
    #sec06 > h4{
        width: 325px;
        margin: 0 auto;
        font-size: 15px;
        line-height: 1.7;
    }
    .support-list{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 9px 0;
        margin-top: 20px;
    }
    .support-list > li{
        width: 325px;
        height: 74px;
        justify-content: flex-start;
    }
    .support_number{
        width: 100px;
        font-size: 13px;
        line-height: 0.9;
        padding: 0 0 3px 9px;
        top: 6px;
        box-shadow: none;
    }
    .support-number .size-18{
        font-size: 15px;
    }
    .support-name-wrapper{
        position: absolute;
        flex-direction: row;
        align-self: center;
        gap: 15px;
        text-align: left;
        top: 37px;
        margin-left: 25px;
    }
    .support-name{
        font-size: 18px;
        line-height: 1.24;
    }
     .support-name .size-20{
        font-size: 15px;
    }
    .support-sub{
        font-size: 12px;
        line-height: 2;
    }
    .support-list > li:nth-of-type(8) > .support-name-wrapper > .support-name{
        position: absolute;
        width: 246px;
        bottom: -31px;
        font-size: 15px;
    }



    /*sec07*/
    #sec07{
        background-image: url(../img/sec07_bg-image_sp.png);
        padding-top: 60px;
        padding-bottom: 82px;
        height: 3170px;
    }
    #sec07 h2{
        font-size: 16px;
    }
    #sec07 h2 .size-30{
        font-size: 20px;
    }
    #sec07 > h2 > .text_wrapper:nth-of-type(2){
        margin: 10px auto 11px;
        line-height: 1.9;
    }
    #sec07 > h2 .gold-text{
        font-size: 20px;
    }
    #sec07 > h2 .gold-text .size-25{
        font-size: 18px;
    }
    #sec07 > h2 .dots{
        background-image: radial-gradient(circle at center, #DBBF76 13%, transparent 15%), radial-gradient(circle at center, rgba(0, 0, 0, 0.8) 13%, transparent 14%);
        padding-top: .1em;
    }
    #sec07 > h2 .gold-label{
        font-size: 24px;
        margin-right: 5px;
    }
    .strategy-package-list{
        margin-top: 32%;
        gap: 290px;
    }
    .strategy-package-list li{
        gap: 0;
        align-items: center;
    }
    .strategy-package-list li:nth-child(odd){
        flex-direction: column;
    }
    .strategy-package-list li:nth-child(even){
        flex-direction: column;
    }
    #sec07 .strategy-package-list .text_wrapper{
        width: 329px;
    }
    #sec07 .strategy-package-list .title-group{
        margin-bottom: 15px;
    }
    #sec07 .strategy-package-list .title-group > .num{
        font-size: 35px;
    }
    #sec07 .strategy-package-list .title-group > h3{
        font-size: 20px;
        margin-right: 18px;
        margin-left: 6px;
    }
    #sec07 .strategy-package-list li:not(:first-child) .title-group > h3{
        margin-right: 25px;
    }
    #sec07 .strategy-package-list li:nth-child(4) .title-group > h3{
        margin-right: 20px;
    }
    #sec07 .strategy-package-list .title-group > h3::after{
        width: 284px;
        left: 0;
        bottom: -5px;
    }
    #sec07 .strategy-package-list .title-group > .sub{
        font-size: 15px;
    }
    #sec07 .strategy-package-list .title-group > .sub::before{
        height: 24px;
        left: -10px;
        transform: translateY(-50%) rotate(45deg);
    }
    #sec07 .strategy-package-list li:not(:first-child) .title-group > .sub::before{
        height: 42px;
        left: -16px;
        transform: translateY(-50%) rotate(28deg);
    }
    .strategy-explanation{
        font-size: 15px;
    }
    .hidden.sp{
        display: none;
    }
    
    .strategy-package-list li:nth-of-type(1) .strategy-image{
        width: 278px;
        margin-top: 25px;
        margin-left: 0;
        margin-right: 0;
    }
    .strategy-package-list li:nth-of-type(2) .strategy-image{
        width: 195px;
        margin-top: 25px;
        margin-left: 0;
        margin-right: 0;
    }
    .strategy-package-list li:nth-of-type(3) .strategy-image{
        width: 203px;
        margin-top: 19px;
        margin-left: 0;
        margin-right: 0;
    }
    .strategy-package-list li:nth-of-type(4) .strategy-image{
        width: 313px;
        margin-top: -19px;
        margin-left: 0;
        margin-right: 0;
    }
    .strategy-package-list li:nth-of-type(5) .strategy-image{
        width: 279px;
        margin-top: 40px;
        height: 113px;
        margin-left: 0;
        margin-right: 0;
    }
    .strategy-package-list li:nth-of-type(6) .strategy-image{
        width: 226px;
        margin-top: 25px;
        margin-left: 0;
        margin-right: 0;
    }




    /*sec09*/
    #sec09{
        height: 430vw;
        background-image: url(../img/sec09_bg-image_sp.png);
        padding-top: 0;
    }
    #sec09 .diagonal-background-lines_wrapper {
        position: relative;
        width: 100%;
        height: 120px; /* sec04と同じ高さ */
        margin-top: 0;
        overflow: visible; /* はみ出し許可 */
        margin-top: 36px;
    }
    #sec09 .diagonal-background-lines_wrapper > .diagonal-background-line_01,
    #sec09 .diagonal-background-lines_wrapper > .diagonal-background-line_02 {
        position: absolute;
        top: 50%;
        left: 50%;
    }
    #sec09 .diagonal-background-lines_wrapper > .diagonal-background-line_01 {
        width: 496px;
        height: 57px;
        /* 中心に戻して回転 */
        transform: translate(-50%, -50%) rotate(3.384deg);
    }

    /* 4. 青い線（サイズと逆回転） */
    #sec09 .diagonal-background-lines_wrapper > .diagonal-background-line_02 {
        width: 523px;
        height: 63px;
        /* 中心に戻して回転 */
        transform: translate(-50%, -50%) rotate(-3.384deg);
        
        /* テキストを上下中央にするなら以下も有効 */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 5. 中のテキストサイズ */
    #sec09 .diagonal-background-lines_wrapper > .diagonal-background-line_02 > h3 {
        font-size: 20px;
        letter-spacing: -1.4px;
        text-align: center;
        white-space: nowrap; /* 折り返し防止（改行タグがある場合はそのままでOK） */
        line-height: 1.2;
    }

    .voyage-area{
        margin-top: 0;
    }
    
    
    #sec09 .text-area{
        width: 346px;
        margin: 0 auto;
        transform: translateX(-50%);
    }
    #sec09 .text-area .num{
        font-size: 24px;
        margin-bottom: 5px;
    }
    #sec09 .text-area h3{
        font-size: 18px;
        line-height: 1.24;
    }

    #sec09 .text-area p{
        font-size: 15px;
        line-height: 1.9;
        margin-top: 16px;
    }

   .voyage-area .text-area:nth-child(1){
        top: 62.5vw;
        left: 54dvw;
   }
   .voyage-area .text-area:nth-child(1) .side-col{
        top: -10vw;
        left: 0;
   }
   .voyage-area .text-area:nth-child(1) p{
        width: 278px;
   }
   .voyage-area .text-area:nth-child(2){
        width: 100%;
        top: 176vw;
        left: 62%;
   }
   .voyage-area .text-area:nth-child(2) .side-col{
        top: -1vw;
        left: -10vw;
   }
   .voyage-area .text-area:nth-child(2) h3{
        margin-left: -8px;
   }
   .voyage-area .text-area:nth-child(2) p{
        width: 299px;
   }
   
   .voyage-area .text-area:nth-child(3){
        bottom: 87.2vw;
        left: 53vw;
   }
   .voyage-area .text-area:nth-child(3) .side-col{
        top: -9vw;
        left: -15vw;
   }

    /*sec10*/
    #sec10{
        height: 1350px;
        background-image: url(../img/sec10_bg-image_sp.jpg);
        padding: 89px 25px 0;
        font-size: 15px;
        line-height: 1.9;
    }
    #sec10 > .contents_wrapper{
        display: block;

        padding: 0;
    }

    #sec10 .text_wrapper > p:nth-child(1){
        font-size: 18px;
        line-height: 1.5;
    }
    #sec10 .text_wrapper > p:nth-child(1) .size-27{
        font-size: 18px;
    }
    #sec10 .text_wrapper > p:nth-child(2){
        display: block;
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 33px;
    }
     #sec10 .text_wrapper > p:nth-child(2) .size-27{
        font-size: 20px;
    }
    #sec10 .blue-bg{
        display: block;
        width: 164px;
        height: 33px;
        font-size: 24px;
        padding: 0;
        padding-left: 3px;
        margin-top: 10px;
    }
    #sec10 .text_wrapper > p:nth-child(3){
        font-size: 15px;
        line-height: 1.9;
    }
    #sec10 .text_wrapper > p:nth-child(3) .left-25{
        margin-left: 0;
    }
    #sec10 .text_wrapper > p:nth-child(4){
        margin-left: 0;
    }
    #sec10 .text_wrapper > p:nth-child(4) .size-25{
        display: block;
        margin-top: 20px;
        font-size: 18px;
    }

    .sec10-image_01{
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: 158px;
        top: 39px;
        right: 19px;
    }
    .sec10-image_01 p{
        margin-top: 6px;
        text-align: center;
        font-size: 10px;
        line-height: 1.3;
    }
    .sec10-image_01 p .size-25.sp{
        display: block;
        font-size: 15px;
    }



    /*sec11*/
    #sec11{
        height: 875px;
        background-image: url(../img/sec11_bg-image_sp.jpg);
        padding: 50px 0 61px;
    }
    #sec11 > h2{
        font-size: 20px;
        margin-bottom: 20px;
    }
    .splide__slide{  
      padding: 12px 17px;
    }

    .splide img{
        width: 311px;
        height: 122px;
    }
    #sec11 .occupation{
        margin-top: 5px;
    }
    #sec11 .company-name{
        font-size: 15px;
        margin-top: -9px;
    }
    #sec11 .representative-name{
        width: auto;
        font-size: 15px;
    }
    #sec11 h3{
        margin-top: 7px;
        font-size: 15px;
        padding-left: 9px;
        border-left: 5px #184072 solid;
    }
    .splide__slide > p{
        margin-top: 10px;
    }
    .button::before,.button::after{
        display: none;
    }
    .your-class-pagination{
        bottom: -40px;
        gap: 21px;
    }
    .your-class-page{
        width: 9px;
        height: 9px;
    }
    .your-class-page.is-active{
        width: 9px;
        height: 9px;
    }


    /*sec12*/
    #sec12{
        padding-top: 50px;
        padding-bottom: 60px;
        padding-left: 25px;
        padding-right: 25px;
    }

    #sec12 > h2{
        font-size: 20px;
    }

    #sec12 > .contents_wrapper{
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
    }

    .map-area{
        width: 325px;
        height: 162px;
        padding: 4px;
    }
    .map-area iframe {
    width: 100%;
    height: 100%;
    display: block; /* 隙間対策 */
}

    .address-area{
        width: 325px;
    }

    .address-title{
        width: 80px;
        gap: 7px;
        padding-left: 4px;
        border-radius: 20px 0 0 20px;
    }
    .circle{
        width: 9px;
        height: 9px;
        aspect-ratio: 9/9; 
    }
    .address-title > h3{
        font-size: 15px;
        line-height: 1;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .address{
        margin-top: 7px;
        font-size: 15px;
    }
    .address::after{
        width: 254px;
        bottom: -2px;
    }
    .address-description{
        margin-top: 7px;
        font-size: 12px;
    }



    /*sec13*/
    #sec13{
        padding-top: 66px;
        padding-bottom: 63px;
    }

    #sec13 h2{
        width: 262px;
        padding: 6px 9px;
        font-size: 18px;
        line-height: 1.24;
        text-align: left;
        line-height: 1;
        gap: 6px;
    }
    #sec13 .blue-bg{
        font-size: 31px;
        line-height: 1.24;
    }

    #sec13 h2::after{
        border-width: 9px 8.5px 0 8.5px;
        left: 56%;
    }

    .line-btn{
        max-width: 313px;
        margin-top: 17px;
        margin-bottom: 37px;
    }

    #sec13 h3{
        font-size: 20px;
    }

    form{
        max-width: 345px;
        padding: 37px 27px 62px;
    }

    .input_wrapper{
        margin-bottom: 21px;
        font-size: 12px;
    }s

    .input-title{
        margin-bottom: 5px;
        gap: 6px;
    }
    .select-input-title{
        margin-bottom: 12px;
    }

    .label-select{
        font-size: 10px;
        line-height: 1.4;
        padding: 0 6px;
        margin-top: 1px;
    }
    .checkbox-group{
        flex-direction: row;
        gap: 11px 19px;
    }
    .checkbox-group label{
        gap: 6px;
        align-items: center;
    }
    .checkbox-group input[type="checkbox"]{
        width: 12px;
        height: 12px;
        margin-top: 1px;
    }
    .checkbox-group input[type="checkbox"]:checked::after{
        top: -6px;
        left: 2px;
        width: 8px;
        height: 15px;
    }

    .label-required{
        font-size: 10px;
        line-height: 1.4;
        padding: 0 6px;
        margin-top: 1px;
    }

    .input-field{
        width: 291px;
        height: 31px;   
        padding: 4px 5px;         
        font-size: 14px;       
        border-radius: 2px;
    }
    .textarea-field{
        height: 73px;
    }

    .flex-row{
        flex-direction: row;
        gap: 8px;
    }
    .flex-item{
        flex: 1;
        width: auto;
    }
    .flex-row .input-field {
        width: 100%;
    }
    .select-wrapper select{
        padding: 0px 8px;
    }

    .submit-btn{
        max-width: 287px;
        padding:  6px 0;
        border-radius: 3px;
        font-size: 12px;
        line-height: 1.75;
        border: 2px solid #E14647;
    }
    .submit-btn::after{
        width: 6px;
        height: 6px;
        margin-left: 8px;
        top: 0;
    }


    /*sec14*/
    #sec14{
        height: 106px;
        padding: 10px 0;
        background-image: url(../img/sec14_bg-image_sp.jpg);
    }

    #sec14 > h2{
        font-size: 13px;
        line-height: 1.16;
        margin-bottom: 10px;
    }
    #sec14 > h2 .size-18{
    font-size: 13px;
}
    #sec14 > h2  .size-14{
        font-size: 14px;
    }
    #sec14 > h2  .size-13{
        font-size: 13px;
    }
    #sec14 > h2  .size-20{
        font-size: 20px;
    }

    .cta_button_04{
        width: 202px;
    }





    footer{
        height: 117px;
        padding: 25px 0;
    }

    footer .logo{
        width: 73px;
    }

    .footer-links{
        gap: 9px;
        margin-top: 12px;
        margin-bottom: 6px;
    }
    .footer-links a{
        font-size: 9px;
    }
    .footer-links a:first-child::after{
        height: 12px;
        right: -6px;
    }
    footer > small{
        font-size: 9px;
    }


/*thanks*/
    .thanks-wrapper{
        height: 85vh;
        padding-top: 100px;
    }
    .thanks-wrapper h2{
        font-size: 32px;
        margin: 0 auto 60px;
        text-align: center;
    }

    .thanks-wrapper p{
        display: block;
        width: 360px;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.7;
        text-align: left;
        margin: 0 auto 25px;
    }

    .thanks-wrapper button{
        display: block;
        width: 300px;
        font-size: 15px;
        text-align: center;
        margin: 110px auto;
    }
}
    
    