html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,label,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    font-family: 'Noto Sans JP', sans-serif;
}
html{
    scroll-behavior: smooth;
  }
body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    color: inherit;
}
ins {
    background-color:#fff;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#fff;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}
.w_container {
    max-width: 1100px;
    margin: 0 auto;
}
br {
    display: inline-block;
    margin-top: 5px;
}
main{
    overflow: hidden;
  }
@media screen and (max-width: 1100px){
    .w_container {
        max-width: 92%;
        margin: 0 auto;
    }
}

/* ここからヘッダー */
header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0px 3px 12px -1px rgba(0, 0, 0, 0.35);
    height: 100px;
}
.wincle_header {
    background-color: #fff;
}
.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}
.header_inner img {
    width: 15%;
    margin-right: 20px;
}
.header_inner nav ul li a {
    font-size: clamp(1rem, 0.852rem + 0.6316vw, 1.5625rem);
}
.header_contact_btn {
    padding: 10px;
}
.header_contact_btn a {
    display: inline-block;
    color: #fff;
    background-color: #F0D04B;
    padding: 10px 40px;
    border-radius: 20px;
    font-weight: bold;
    font-size: clamp(0.9375rem, 0.9211rem + 0.0702vw, 1rem);
    transition: 0.3s all;
}
.header_contact_btn a:hover {
    opacity: 0.7;
}


/*　ハンバーガーボタン　*/
.hamburger {
    display : block;
    position: fixed;
    z-index : 3;
    right : 13px;
    top   : 12px;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 4px ;
    left    : 6px;
    background : #F0D04B;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 15px;
  }
  .hamburger span:nth-child(2) {
    top: 25px;
  }
  .hamburger span:nth-child(3) {
    top: 35px;
  }
  
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    background :#fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    background :#fff;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  
  nav.globalMenuSp {
    position: fixed;
    z-index : 2;
    top  : 0;
    left : 0;
    color: #fff;
    background: rgba(240,208,75,0.9);
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
  }

  nav.globalMenuSp ul {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  nav.globalMenuSp ul li:hover{
    opacity: 0.6;
  }
  
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration :none;
  }
  .globalMenuSp p {
    margin-top: 50px;
    font-size: clamp(1rem, 0.8026rem + 0.8421vw, 1.75rem);
    color: #F0D04B;
    background-color: #fff;
    padding: 10px 50px;
    border-radius: 20px;
  }
  
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    opacity: 100;
  }

  @media screen and (max-width: 800px) {
    .header_inner img {
        width: 25%;
        margin-right: 20px;
    }
    header {
        height: 60px;
    }
    .header_inner {
        padding: 0 0;
    }
    }

    /* ここまでヘッダー */

    /* ***************************************************** */
    /* ここからファーストビュー */
    .first_view {
        /* height: 650px; */
        background-image: url(../img/fv_bgimg.png);
        background-position: center;
        background-size: cover;
        padding-top: 100px;
    }
    .first_view_container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding-top: 55px;
    }
    .first_view_line img {
        width: 100px;
    }
    .first_view_img {
        width: 50%;
    }
    .first_view_fukidashi {
        background-color: #F0D04B;
        font-size: clamp(0.875rem, 0.8092rem + 0.2807vw, 1.125rem);
        color: #fff;
        text-align: center;
    }
    .balloon-001 {
        display: flex;
        justify-content: center;
        position: relative;
        max-width: 300px;
        margin-bottom: 15px;
        padding: 0.5em 3.5em .7em 3.5em;
        border-radius: 5px;
        background-color: #f0d048;
        color: #ffffff;
    }
    .balloon-001::before {
        position: absolute;
        bottom: -15px;
        width: 30px;
        height: 15px;
        background-color: #f0d048;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        content: '';
    }
    .first_view_line_box {
        margin-top: 50px;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    /* 文字の上に点 */
    .dots {
        background-image: radial-gradient(circle at center, #fff 30%, transparent 30%); /* 点の色とサイズ調整 */
        background-position: top right; /* 点の位置 */
        background-repeat: repeat-x; /* 横方向に繰り返し */
        background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
        padding-top: .7em; /* 縦方向の位置調整 */
    }
    .dots2 {
        background-image: radial-gradient(circle at center, #F0D04B 20%, transparent 20%); /* 点の色とサイズ調整 */
        background-position: top right; /* 点の位置 */
        background-repeat: repeat-x; /* 横方向に繰り返し */
        background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
        padding-top: .7em; /* 縦方向の位置調整 */
    }
    .first_view_linetext {
        color: #2b2b2b;
        font-weight: bold;
        font-size: clamp(1.25rem, 0.9868rem + 1.1228vw, 2.25rem);
    }
    .dots3 {
        background-image: radial-gradient(circle at center, #F0D04B 30%, transparent 30%); /* 点の色とサイズ調整 */
        background-position: top right; /* 点の位置 */
        background-repeat: repeat-x; /* 横方向に繰り返し */
        background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
        padding-top: .5em; /* 縦方向の位置調整 */
        font-size: clamp(2rem, 1.5395rem + 1.9649vw, 3.75rem);
        display: inline-block;
        margin:  0 10px;
    }
    .first_view_otameshi {
        text-align: center;
        font-size: clamp(1rem, 0.8684rem + 0.5614vw, 1.5rem);
        font-weight: bold;
        margin-top: 40px;
        margin-bottom: 25px;
    }
    .first_view_taiken {
        text-align: center;
    }
    .first_view_taiken a {
        text-align: center;
        display: inline-block;
        border: #00B900 3px solid;
        color: #00B900;
        background-color: #fff;
        padding: 15px 80px;
        border-radius: 30px;
        font-size: clamp(1rem, 0.9342rem + 0.2807vw, 1.25rem);
        transition: 0.3s all;
    }
    .first_view_taiken a:hover {
        opacity: 0.7;
    }
    a.btn_29 {
	    vertical-align: middle;
	    position: relative;
	    overflow: hidden;
	    -webkit-transition: all 0.2s ease-in;
	    -moz-transition: all 0.2s ease-in;
	    transition: all 0.2s ease-in;
    }
    a.btn_29:hover {
        color: #fff;
        background: #00B900;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }
    a.btn_29:hover::before {
        -webkit-animation: sh02 0.5s 0s linear;
        -moz-animation: sh02 0.5s 0s linear;
        animation: light 0.5s 0s linear;
    }
    a.btn_29::before {
        content: '';
        display: block;
        width: 0px;
        height: 86%;
        position: absolute;
        top: 7%;
        left: 0%;
        opacity: 0;
        background: #fff;
        box-shadow: 0 0 50px 30px #fff;
        -webkit-transform: skewX(-20deg);
        -moz-transform: skewX(-20deg);
        -ms-transform: skewX(-20deg);
        -o-transform: skewX(-20deg);
        transform: skewX(-20deg);
    }
    @keyframes light {
        from {opacity: 0; left: 0%;}
        50% {opacity: 1;}
        to {opacity: 0;left: 100%;}
    }
    .highlight {
        text-decoration: underline; /* 下線 */
        text-decoration-thickness: 0.5em; /* 線の太さ */
        text-decoration-color: rgba(255, 228, 0, 0.4); /* 線の色 */
        text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
        text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
    }
    .gekkeiju_container {
        width: 800px;
        margin: 30px auto 0 auto;
        padding-bottom: 50px;
        display: flex;
        justify-content: space-around;
    }
    .gekkeiju_container img {
        width: 20%;
    }
    @media screen and (max-width: 800px) {
        .first_view {
            padding-top: 50px;
        }
        .first_view_container {
            display: block;
        }
        .first_view_line_box {
            margin-top: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .first_view_img {
            display: inline-block;
        }
        .first_view_container{
            text-align: center;
        }
        .first_view_container .first_view_img {
            width: 70%;
            margin: 40px auto;
        }
        .gekkeiju_container {
            max-width: 300px;
            margin: 0 auto ;
            padding-bottom: 50px;
            display: flex;
            gap: 20px;
            justify-content: space-around;
        }
        .gekkeiju_container img {
            width: 36%;
        }
        .first_view_fukidashi {
            margin: 0 auto;
            font-weight: bold;
        }
    }
    /* ここまでファーストビュー */

    /* ***************************************************** */

    /* ここから予約とは */
    .reserve {
        background-image: url(../img/hougan_bg.png);
        background-color:rgba(255,255,255,0.6);
        background-blend-mode:lighten;
        padding-bottom: 10%;
    }
    .reserve_title_area {
        text-align: center;
    }
    .title_area h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: clamp(1rem, 0.852rem + 0.6316vw, 1.5625rem);
        color: #1D9345;
        text-align: center ;
        letter-spacing: 0.3em;
    }
    .reserve_title {
        padding-top: 13%;
        text-align: center;
        display: flex;
        align-items: end;
        justify-content: center;
        margin-bottom: 3%;
    }
    .reserve_title img {
        width: 20%;
        margin-right: 10px;
    }
    .reserve_title h2 {
        font-size: clamp(1.25rem, 1.0526rem + 0.8421vw, 2rem);
        padding-bottom: 5px;
    }
    .reserve_video {
        margin-top: 30px;
        margin-bottom: 50px;
    }
   
    /* 吹き出し */
    .balloon2 {
        position: relative;
        display: inline-block;
        border-radius: 10px;
        margin: 1.5em 0;
        padding: 2% 5%;
        min-width: 120px;
        max-width: 100%;
        color: #fff;
        font-size: clamp(1rem, 0.9342rem + 0.2807vw, 1.25rem);
        font-weight: bold;
        background: #f0d048;
        margin-bottom: 3%;
        margin-top: 5%;
      }
      .balloon2:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -15px;
        border: 15px solid transparent;
        border-top: 15px solid #f0d048;
      }      
      .balloon2 p {
        margin: 0;
        padding: 0;
      }
      .balloon2 p span {
        color: #1D9345;
      }
      .reserve_text {
        font-size: clamp(0.875rem, 0.7928rem + 0.3509vw, 1.1875rem);
        line-height: 1.5em;
      }

    .reserve_sp {
        display: flex;
        justify-content: space-between;
        padding-top: 70px;
    }
    .arrrow {
        width: 3%;
        padding-top: 80px;
    }
    .sumaho {
        width: 90%;
        padding-top: 20px;
    }
    .reserve_1 {
        text-align: center;
    }
    .reserve_1_number {
        background: #1D9345;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        color: #fff;
        font-size: 20px;
        text-align: center;
        line-height: 40px;
        margin: 0 auto 20px auto;
    }
    .reserve_1_text {
        font-weight: bold;
        color: #1D9345;
    } 
    .yoyaku_pc img {
        width: 100%;
    }
    .yoyaku_pc {
        text-align: center;
        margin-top: 20%;
    }

    .yoyaku_flex {
        display: flex;
        justify-content: space-between;
        position: relative;
    }
    .yoyaku_reserve {
        margin-top: 5%;
    }
    .yoyaku_flex_text {
        text-align: left;
        margin-top: 20px;
    }
    .yoyaku_flex_text h1 {
        font-size: clamp(1.25rem, 0.625rem + 2.6667vw, 3.625rem);
        opacity: 0.1;
    }
    .yoyaku_flex_text p {
        font-size: clamp(1rem, 0.6053rem + 1.6842vw, 2.5rem);
        font-weight: bold;
        margin-top:5%;
        color: #3f3f3f;
    }
    .yoyaku_box {
        width: 80%;
        height: 100%;
        background-color: #B9EFCF;
        opacity: 0.6;
        position: absolute;
        top: -10%;
        z-index: -1;
        margin-left:calc(50% - 50vw);
    }
    .yoyaku_dash_box {
        width: 80%;
        height: 100%;
        background-color: #F0D04B;
        opacity: 0.4;
        position: absolute;
        top: -10%;
        z-index: -1;
        margin-right:calc(50% - 50vw);
    }
    .yoyaku_dash {
        flex-direction: row-reverse;
        margin-top: 15%;
    }
    /* フェードイン */
    .fadein {
        opacity : 0;
        transition : all 1s;
        }
        
        .fadein.active{
        opacity : 1;
        }

    /* 左からふわっと出現 */
    .scroll_left {
        -webkit-transition: 0.8s ease-in-out;
        -moz-transition: 0.8s ease-in-out;
        -o-transition: 0.8s ease-in-out;
        transition: 0.8s ease-in-out;
        transform: translateX(-30px);
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-opacity: 0;
    }
    .scroll_left.on {
        opacity: 1.0;
        filter: alpha(opacity=100);
        -moz-opacity: 1.0;
        transform: translateX(0);
    }

    /* 右からふわっと出現 */
    .scroll_right {
        -webkit-transition: 0.8s ease-in-out;
        -moz-transition: 0.8s ease-in-out;
        -o-transition: 0.8s ease-in-out;
        transition: 0.8s ease-in-out;
        transform: translateX(30px);
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-opacity: 0;
    }
    .scroll_right.on {
        opacity: 1.0;
        filter: alpha(opacity=100);
        -moz-opacity: 1.0;
        transform: translateX(0);
    }

    

    @media screen and (max-width: 800px) {
        .reserve_title img {
            width: 30%;
            margin-right: 5px;
        }
      /* slack */
    .container {
        margin: 50px auto 0;
        max-width: 800px;
        width: 100%;
        height: 100%;
      }
      .slick-list {
        height: 600px;
      }
      /* 中央以外のスライド */
      .slick-img img,.reserve_1 {
        padding-top: 60px;
        height: auto;
        opacity: .3;
        transform: scale(1); 
        transition: opacity .5s, transform 1s; 
        width: 100%;
      }
      /* 中央のスライド */
      .slider .slick-center img,.slick-center .reserve_1 {
        padding-top: 60px;
        opacity: 1; 
        transform: scale(1.3);
        height: auto;
        z-index: 999;
      }
      .yoyaku_pc img {
        width: 80%;
      }
       .reserve_video {
        width: 100%;
        aspect-ratio: 16 / 9;
      }
      .reserve_video iframe {
        width: 100%;
        height: 100%;
      }
    }
    /* ここまで予約とは */

    /* ***************************************************** */

    /* ここから5つのポイント */
    .point {
        background-image: url(../img/5_bg.jpeg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 13%;
        padding-bottom: 10%;
    }
    .point_title h2 {
        font-size: clamp(1.25rem, 1.0526rem + 0.8421vw, 2rem);
        padding-bottom: 5px;
        text-align: center;
        margin-bottom: 3%;
    }
    .point_title h2 span {
        color: #f0d048;
        font-size: clamp(2.25rem, 2.0526rem + 0.8421vw, 3rem);
        margin-left: 5px;
        margin-right: 5px;
    }
    .point_title h1 {
        margin-bottom: 5%;
    }
    .point_title p {
        text-align: center;
        margin-bottom: 64px;
        font-size: clamp(0.875rem, 0.8421rem + 0.1404vw, 1rem);
    }
    .point_box_area .point_box {
        text-align: center;
        width: 300px;
        margin: 90px auto;
        padding: 5%;
        border: #f0d048 4px solid;
        background-color: #fff;
        border-radius: 20px;
        position: relative;
    }
    .point_box img {
        height: 150px;
    }
    .point_box h4 {
        text-align: center;
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 35px;
    }
    .point_box h3 {
        font-family: 'Ms Madi', cursive;
        position: absolute;
        font-size: 128px;
        opacity: 50%;
        top: -17%;
        left: 30px;
    }
    .point_box p {
        font-size: 16px;
        text-align: left;
        line-height: 1.4em;
    }

    .point_pc img {
        width: 60%;
        margin: 0 auto;
    }
    .point_pc {
        text-align: center;
    }
    .point_box h4 span {
        color: #1D9345;
    }
    @media screen and (max-width: 800px) {
        .pc_only {
            display: none;
        }
    }
    @media screen and (min-width: 801px) {
        .sp_only {
            display: none;
        }
    }
    /* ここまで5つのポイント */

    /* ***************************************************** */

    /* ここからさまざまな業種 */
    .industry {
        background-image: url(../img/hougan_bg.png);
        padding-top: 13%;
        padding-bottom: 10%;
        background-color:rgba(255,255,255,0.6);
        background-blend-mode:lighten;
    }
    .industry_title h2 {
        font-size: clamp(1.25rem, 1.0526rem + 0.8421vw, 2rem);
        padding-bottom: 5px;
        text-align: center;
        margin-bottom: 3%;
    }
    .industry_title h1 {
        margin-bottom: 5%;
    }
    .industry_title p {
        text-align: center;
        font-size: clamp(0.875rem, 0.8092rem + 0.2807vw, 1.125rem);
        margin-bottom: 90px;
    }
    .industry_box_area {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 50px;
    }
    .industry_box {
        border: #1D9345 4px solid;
        background-color: #fff;
        border-radius: 20px;
        width: 280px;
        text-align: center;
        padding: 15px 10px 20px 10px;
    }
    .industry_box img {
        margin-bottom: 20px;
    }
    .industry_box h4 {
        margin-bottom: 20px;
        color: #1D9345;
        font-weight: bold;
        font-size: clamp(0.9375rem, 0.8553rem + 0.3509vw, 1.25rem);
    }
    .industry_box p {
        margin-bottom: 20px;
        line-height: 1.5em;
    }
    @media screen and (max-width: 800px) {
        .industry_box_area {
            display: block;
        }
        .industry_box {
            margin: 0 auto 40px auto;
        }
    }
    /* ここまでさまざまな業種 */

    /* ***************************************************** */

    /* ここからお悩みを解決 */
    .solution {
        background-color: #F5F4F2;
        padding-bottom: 13%;
    }
    .solution_title {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-top: 10%;
        margin-bottom: 3%;
    }
    .solution_title h2 {
        font-size: clamp(1.25rem, 1.0526rem + 0.8421vw, 2rem);
        padding-bottom: 5px;
        text-align: center;
        margin-left: 10px;
    }
    .solution_title img {
        width: 20%;
    }
    .solution_box_area {
        display: flex;
        justify-content: space-between;
        margin-top: 120px;
    }
    .solution_box {
        background-color: #fff;
        width: 310px;
        height: 400px;
        position: relative;
        text-align: center;
        -moz-box-shadow: 0px 2px 20px 0px rgba(212, 212, 212, 0.8);
        -webkit-box-shadow: 0px 2px 20px 0px rgba(212, 212, 212, 0.8);
        -ms-box-shadow: 0px 2px 20px 0px rgba(212, 212, 212, 0.8);
        box-shadow: 0px 2px 20px 0px rgba(212, 212, 212, 0.8);
    }
    .solution_box .solution_number {
        position: absolute;
        font-size: 120px;
        top: -70px;
        left: 27%;
        font-weight: bold;
        color: #f0d048;
        opacity: 50%;
    }
    .solution_box img {
        width: 40%;
        margin-top: 25px;
        margin-bottom: 20px;
    }
    .solution_box h4 {
        padding-top: 70px;
        font-size: clamp(1.25rem, 1.1513rem + 0.4211vw, 1.625rem);
        line-height: 1.8rem;
    }
    .solution_box .solution_text {
        font-size: clamp(0.875rem, 0.8257rem + 0.2105vw, 1.0625rem);
        padding: 0 1em 2.5em 1em;
        text-align: left;
        line-height: 1.2em;
    }
    .solution_box span {
        color: #1D9345;
        display: inline-block;
        margin-top: 5px;
    }
    /*----------------------------
    scroll_up ｜下から上へ出現
    ----------------------------*/
    .scroll_up {
        transition: 0.8s ease-in-out;
        transform: translateY(30px);
        opacity: 0;
    }
    .scroll_up.on {
        transform: translateY(0);
        opacity: 1.0;
    }
    /* ずらして */
    .timing02 {transition-delay: .4s;}
    .timing03 {transition-delay: .8s;}
    .timing04 {transition-delay: 1.2s;}
  
    @media screen and (max-width: 800px) {
        .solution_title img {
            width: 40%;
            padding-bottom: 10px;
        }
        .solution_title {
            display: block;
            padding-top: 10%;
            text-align: center;
        }
        .solution_box_area {
            display: block;
        }
        .solution_box {
            margin: 0 auto 80px auto;
        }
    }

/* ここまでお悩みを解決 */

/* ***************************************************** */

/* ここからできること */
    .cando {
        text-align: center;
        background-image: url(../img/hougan_bg.png);
        padding-bottom: 80px;
        background-color:rgba(255,255,255,0.6);
        background-blend-mode:lighten;
    }
    .cando_title {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-top: 15%;
        margin-bottom: 3%;
    }
    .cando_title h2 {
        font-size: clamp(1.25rem, 1.0526rem + 0.8421vw, 2rem);
        padding-bottom: 5px;
        text-align: center;
        margin-left: 10px;
    }
    .cando h1 {
        margin-bottom: 5%;
    }
    .cando_title img {
        width: 20%;
    }
    .cando_img {
        width: 80%;
    }
    @media screen and (max-width: 800px) {
        .cando_title img {
            width: 40%;
            margin-bottom: 10px;
        }
        .cando_title {
            display: block;
            margin-bottom: 50px;
        }
    }
    /* ここまでできること */

    /* ***************************************************** */

    /* ここからステップ */
    .step {
        background-color: #F5F4F2;
        padding-bottom: 10%;
    }
    .step_title h2 {
        padding-top: 15%;
        font-size: clamp(1.25rem, 1.0526rem + 0.8421vw, 2rem);
        padding-bottom: 5px;
        text-align: center;
        margin-bottom: 3%;
    }
    .step_title h2 span {
        color: #f0d048;
        font-size: clamp(2.25rem, 2.0526rem + 0.8421vw, 3rem);
        margin-left: 5px;
        margin-right: 5px;
    }
    .step h1 {
        margin-bottom: 5%;
    }
    .step_box_area {
        display: flex;
        gap: 10px;
        background-color: #fff;
        padding: 50px;
    }
    /* 吹き出し */
    .balloon1-right {
        position: relative;
        display: inline-block;
        margin: 1.5em 15px 1.5em 0;
        padding: 7px 10px;
        min-width: 120px;
        max-width: 100%;
        color: #555;
        font-size: 16px;
        background: #f0d048;
        border-radius: 10px;
        width: 200px;
      }
      
      .balloon1-right:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 100%;
        margin-top: -15px;
        border: 15px solid transparent;
        border-left: 15px solid #f0d048;
      }
      
      .balloon1-right p {
        margin: 0;
        padding: 0;
      }
      /* 吹き出し */
      .balloon1-right h3 {
        font-size: 20px;
        font-weight: normal;
        text-align: center;
        padding-top: 10px;
      }
      .balloon1-right .step_arrow {
        font-size: 20px;
        padding: 15px 10px 8% 10px;
        text-align: center;
        color: #fff;
        font-weight: 500;
      }
      .step_text {
        font-size: clamp(0.875rem, 0.8421rem + 0.1404vw, 1rem);
        line-height: 1.3em;
        width: 95%;
      }
      @media screen and (max-width: 800px) {
        .step_box_area {
            display: block;
            text-align: center;
        }
        .balloon1-right {
            position: relative;
            display: inline-block;
            margin: 1.5em 0;
            padding: 7px 10px;
            min-width: 120px;
            max-width: 100%;
            color: #555;
            font-size: 16px;
            background: #f0d048;
          }
          
          .balloon1-right:before {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -15px;
            border: 15px solid transparent;
            border-top: 15px solid #f0d048;
          }
          .balloon1-right p {
            margin: 0;
            padding: 0;
          }
          .cando_container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: flex-end;
            gap: 40px;
          }
          .cando_box {
            margin-bottom: 20px;
            width: 30%;
          }
          .cando_box img {
            width: 80%;
            margin-bottom: 20px;
          }
          .cando_box_1 img,.cando_box_2 img,.cando_box_4 img,.cando_box_7 img,.cando_box_010 img {
            width: 70%;
          }
          .cando_box p {
            font-weight: bold;
          }
          .step_text {
            text-align: left;
            width: 70%;
            margin: 0 auto;
          }
      }
      /* ここまでステップ */

      /* ***************************************************** */

      /* ここからお客様の声 */
      .voice_title h2 {
        padding-top: 20%;
        font-size: clamp(1.25rem, 1.0526rem + 0.8421vw, 2rem);
        padding-bottom: 5px;
        text-align: center;
        margin-bottom: 3%;
      }
      .voice h1 {
        margin-bottom: 5%;
      }
      .voice_box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 800px;
        gap: 50px;
        margin: 0 auto 100px auto;
      }
      .voice_2 {
        flex-direction: row-reverse;
      }
      .voice_box img {
        width: 200px;
      }
      .voice_title_box {
        display: inline-block;
        font-size: 20px;
        padding: 10px 0;
        margin-bottom: 20px;
        font-weight: bold;
        text-decoration: underline; /* 下線 */
        text-decoration-thickness: 0.5em; /* 線の太さ */
        text-decoration-color: rgba(29, 147, 69, 0.4); /* 線の色 */
        text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
        text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
        }
      
      .voice_img_area {
        text-align: center;
      }
      .voice_img_area p {
        text-align: center;
        margin-top: 15px;
        display: inline-block;
        background-color: #f0d048;
        color: #fff;
        padding: 10px 20px;
        font-weight: bold;
      }
      .voice_text p {
        line-height: 1.5em;
      }
      @media screen and (max-width: 800px) {
        .voice_box {
            display: block;
            text-align: center;
        }
        .voice_box img {
            margin-bottom: 30px;
        }
        .voice_img_area p {
            display: block;
            width: 40%;
            margin: 0 auto 20px auto;
        }
        .voice_text p {
            text-align: left;
        }
      }
      /* ここまでお客様の声 */

      /* ***************************************************** */
 
      /* ここからよくある質問 */
      .faq {
        padding-top: 10%;
        background: #F5F4F2;
        border-top-left-radius: 50%;
        border-top-right-radius: 50%;
        margin-left: -200px;
        margin-right: -200px;
        padding-left: 200px;
        padding-right: 200px;
        padding-bottom: 13%;
        background: #F5F4F2;
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 50%;
        margin-left: -200px;
        margin-right: -200px;
        padding-left: 200px;
        padding-right: 200px;
      }
      .faq_title h1 {
        color: #1D9345;
        font-size: clamp(2rem, 1.7368rem + 1.1228vw, 3rem);
        text-align: center;
        margin-bottom: 25px;
      }
      .faq_title h2 {
        font-size: clamp(1.25rem, 1.0526rem + 0.8421vw, 2rem);
        text-align: center;
        padding-bottom: 100px;
      }
      /* アコーディオン */
      nav{ display: none; }
      .nav-open{
        padding: 20px;
        color: #2b2b2b;
        font-size: clamp(1rem, 0.9342rem + 0.2807vw, 1.25rem);
        background: #fff;
        position: relative;
        font-weight: bold;
        border-radius: 10px;
    }
    .nav-open::before{/* 閉じている時 */
        content: "＋";
        position: absolute;
        right: 20px;
    }
    .nav-open.active::before{/* 開いている時 */
        content: "－";
    }
    .nav_box nav ul li {
        padding-left: 20px;
        padding-top: 20px;
        line-height: 1.5em;
        font-size: clamp(0.9375rem, 0.8882rem + 0.2105vw, 1.125rem);
        width: 95%;
    }
    .nav_box {
        margin-bottom: 20px;
    }
    @media screen and (max-width: 800px) {
         .faq {
        padding-top: 10%;
        background: #F5F4F2;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 13%;
        background: #F5F4F2;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
      }
    }
    /* ここまでよくある質問 */


    /* ここからお問い合わせ */
    .contact {
        padding-bottom: 10%;
    }
    .contact_title h2 {
        padding-top: 20%;
        font-size: clamp(1.25rem, 1.0526rem + 0.8421vw, 2rem);
        padding-bottom: 5px;
        text-align: center;
        margin-bottom: 3%;
    }
    .contact_title h1 {
        margin-bottom: 5%;
    }
    .contact_area {
        border: #1D9345 3px solid;
        border-radius: 20px;
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .wpcf7-form {
        max-width: 80%;
        margin: 0 auto;
    }
    .wpcf7-form p {
        margin: 40px 0;
        font-size: 18px;
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: bold;
    }
    .wpcf7-form label {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .wpcf7-form label input {
        width: 500px;
        height: 40px;
        border: #aeaeae 2px solid;
        border-radius: 5px;
    }
    label {
        color: #2b2b2b;
    }
    textarea {
        width: 500px;
        border: #aeaeae 2px solid;
        border-radius: 5px;
    }
    .wpcf7-form .contact_text {
        align-items: flex-start;
    }
    .submit_btn {
        text-align: center;
        margin-left: 70px;
    }
    .wpcf7-submit {
        margin-top: 5%;
        font-size: 18px;
        background-color: #1D9345;
        color: #fff;
        padding: 15px 50px;
        font-weight: bold;
        border: none;
        border-radius: 30px;
        transition: 0.3s all;
        cursor: pointer;
    }
    .wpcf7-submit:hover {
        opacity: 0.7;
    }
    .contact_kakunin {
        margin-top: 10%;
        margin-bottom: 10%;
        max-width: 50%;
        margin-right: auto;
        margin-left: auto;
    }
    .contact_btn {
        text-align: center;
    }
    .contact_btn .wpcf7-submit {
        margin-left: 70px;
    }
    .wpcf7-previous {
        margin-top: 5%;
        font-size: 18px;
        background-color: #F0D04B;
        color: #fff;
        padding: 15px 50px;
        font-weight: bold;
        border: none;
        border-radius: 30px;
    }
    .wpcf7-list-item label {
        align-items: center;
    }
    .wpcf7-list-item label input {
        width: 10%;
        height: 20px;
        cursor: pointer;
    }
    .wpcf7-list-item label a {
        text-decoration: underline;
        transition: 0.3s all;
    }
    .wpcf7-list-item label a:hover {
        opacity: 0.7;
    }
    /* ラベルにスタイルを設定 */
    .my-custom-field label {
        display: inline-flex;
        align-items: center; /* テキストとアスタリスクを垂直方向に中央揃え */
    }
    /* アスタリスクにスタイルを設定 */
    .my-custom-field label span.required {
        margin-left: 5px; /* テキストの右にアスタリスクを少し離す */
    }
    .wpcf7-list-item-label {
        font-size: clamp(0.875rem, 0.7763rem + 0.4211vw, 1.25rem);
        line-height: 1.5em;
    }
    @media screen and (max-width: 800px) {
        .wpcf7-form label {
            display: block;
        }
        .wpcf7-form-control-wrap {
            display: inline-block;
            margin-top: 20px;
        }
        .wpcf7-form label input {
            width: 100%;
        }
        textarea {
            width: 100%;
        }
        .submit_btn {
            display: block;
            margin-left: 0;
            text-align: center;
        }
        .submit_btn p input {
            margin: 0 auto;
            text-align: center;
        }
        .wpcf7-list-item label {
            display: flex;
            align-items: flex-start;
        }
        .wpcf7-list-item label input {
            width: 10%;
            height: 20px;
        }
        .wpcf7-list-item {
            margin: 0!important;
        }
    }

    /* ここまでお問い合わせ */

    /* ***************************************************** */

    /* ここからフッター */
    footer {
        text-align: center;
        padding-bottom: 4%;
    }
    footer img {
        width: 25%;
        margin-bottom: 5%;
    }
    .footer_inner a {
        transition: 0.3s all;
    }
    .footer_inner a:hover {
        opacity: 0.7;
    }
    .footer_btn {
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        margin-bottom: 80px;
    }
    .footer_btn_demo a {
        display: inline-block;
        background-color: #f0d048;
        padding: 15px 45px;
        font-size: clamp(1rem, 0.9342rem + 0.2807vw, 1.25rem);
        border-radius: 30px;
        color: #fff;
        font-weight: bold;
        transition: 0.3s all;
    }
    .footer_btn_demo a:hover {
        opacity: 0.7;
    }
    .footer_btn_contact a {
        display: inline-block;
        background-color: #1D9345;
        padding: 15px 40px;
        font-size: clamp(1rem, 0.9342rem + 0.2807vw, 1.25rem);
        border-radius: 30px;
        color: #fff;
        font-weight: bold;
        transition: 0.3s all;
    }
    .footer_btn_contact a:hover {
        opacity: 0.7;
    }
    .privacy a {
        transition: 0.3s all;
        font-size: clamp(0.75rem, 0.6513rem + 0.4211vw, 1.125rem);
    }
    .privacy a:hover {
        opacity: 0.7;
    }
    .privacy i {
        display: inline-block;
        margin-right: 8px;
    }
    .privacy_btn {
        display: inline-block;
        margin-right: 15px;
    }
    /* スライドイン */
    .element {
        /* 最初は非表示 */
        opacity: 0;
        visibility: hidden;
        transform: translateY(30px);
        transition: opacity 1s, visibility 1s, transform 1s;
      }
      /* フェードイン時に入るクラス */
      .is-fadein {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
      }

      /* サンクスページ */
      .thanks_inner {
        padding-top: 5%;
        text-align: center;
        margin-bottom: 7%;
      }
      .thanks_inner p {
        margin-bottom: 15px;
        font-size: clamp(0.875rem, 0.8092rem + 0.2807vw, 1.125rem);
      }
      .thanks_text {
        font-size: clamp(1.25rem, 0.9211rem + 1.4035vw, 2.5rem);
        text-align: center;
        font-weight: bold;
        margin-bottom: 3%;
        border-bottom: #1D9345 4px solid;
        width: 50%;
        margin: 0 auto 3% auto;
        padding-bottom: 2%;
      }
      .thanks_btn a {
        font-size: clamp(1rem, 0.9342rem + 0.2807vw, 1.25rem);
        display: inline-block;
        margin-top: 3%;
        background-color: #1D9345;
        padding: 15px 45px;
        border-radius: 30px;
        color: #fff;
        transition: 0.3s all;
      }
      .thanks_btn a:hover {
        opacity: 0.7;
      }
      @media screen and (max-width: 800px){
        .sp_only {
            display: block;
        }
        footer img {
            width: 40%;
        }
        .footer_btn {
            display: block;
            margin-top: 20px;
            justify-content: center;
            gap: 30px;
        }
        .footer_btn_contact a {
            margin-top: 20px;
        }
    }

    /* Youtubeのボタンなど */
    .youtbe_btn {
        background-color: #00B900;
        width: 250px;
        margin: 50px auto 80px auto;
        font-size: 17px;
        color: #fff;
        padding: 15px 20px;
        border-radius: 25px;
        transition: 0.3s all;
    }
    .youtbe_btn:hover {
        opacity: 0.7;
    }