@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Kosugi+Maru&display=swap');

/*-----------------------
 全体共通 
-----------------------*/
* {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    font-style: normal;
    box-sizing: border-box;
}
html {
    font-size: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    color: #333;
    word-break: break-word;
    overflow-x: hidden;
}
p {
    line-height: 2;
}
a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    opacity: 0.8;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
section {
    padding: 80px 0;
}
.l_cont {
    max-width: 1280px;
    margin: 0 auto;
}
.m_cont {
    max-width: 960px;
    margin: 0 auto;
}
@media screen and (max-width: 1330px) {
    .l_cont {
        margin: 0 20px;
    }    
}
@media screen and (max-width: 1024px) {
    .m_cont {
        margin: 0 20px;
    }    
}
@media screen and (max-width: 767px) {
    body{
        width: 767px;
        overflow: auto;
    }
}
@media screen and (min-width: 481px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}
@media screen and (max-width: 480px) {
    body{
        width: 100%;
    }
}


/* 見出し */
.headline {
    position: relative;
    font-size: 30px;
    padding-left: 15px;
    margin-bottom: 50px;
}
.headline::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 5px;
    height: 30px;
    border-radius: 10px;
    background-color: #049EB2;
}
@media screen and (max-width: 960px) {
    .headline {
    }    
}
@media screen and (max-width: 767px) {
    .headline {
    }    
}
@media screen and (max-width: 480px) {
}


/* slick */
.slide-prev, .slide-next {
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: inline-block;
    cursor: pointer;
    width: 35px;
    height: 35px;
  }
  .gallery .slide-prev, .gallery .slide-next {
    transform: translateY(-85%);
  }
  .slide-prev {
    left: -20px;
  }
  .slide-next {
    right: -13px;
  }
  .prev-arrow, .next-arrow {
    position: absolute;
    top: 11px;
    display: inline-block;
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.7));
  }
  .prev-arrow {
    left: 13px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
  }
  .next-arrow {
    left: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
  }
.slick-track {
    display: flex;
}
.slick-track::before,
.slick-track::after {
    display: none;
}
.slick-slide {
    float: none;
    height: auto;
}
.slick-dots {
    display: block !important;
}
.dots-class button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
.dots-class {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}
.dots-class li {
    width: 8px !important;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .5s ease;
    list-style-type: none;
}
.dots-class li.slick-active {
    background-color: #6e6e6e;
}
.slick-slide img {
    display: inline-block;
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.loading {
    opacity: 0;
    visibility: hidden;
}
.loading.slick-initialized {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}


/*-----------------------
 ヘッダー 
-----------------------*/
header {
    position: relative;
    width: 100%;
    z-index: 10;
}
.header_logo a{
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #F2A120;
    color: #784600;
    padding: 15px 50px;
    font-weight: 700;
    font-size: 18px;
}
.header_logo a:hover {
    opacity: 1;
}
.header_logo div {
    display: flex;
    gap: 10px;
    align-items: center;
}
.company {
    font-weight: 900;
    font-size: 40px;
    letter-spacing: 1px;
}
.contact_area {
    width: 350px;
    position: fixed;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 5px 3px rgba(0, 0, 0, 0.2);
}
.contact_area div{
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: center;
}
.tel_img {
    margin: 5px 0;
}
.time_img {
    margin-bottom: 10px;
}
.tel_img, .time_img {
    width: 100%;
}
@media screen and (max-width: 960px) {
    .header_logo a{
        gap: 25px;
        padding: 15px 25px;
    }
    .company {
        font-size: 30px;
    }
    .contact_area {
        width: 300px;
    }
}
@media screen and (max-width: 767px) {
    .header_logo a {
        position: relative;
        top: 135px;
        flex-direction: column;
        justify-content: flex-start;
        font-size: 15px;
        gap: 5px;
        width: 97%;
        padding: 10px;
    }
    .header_logo br {
        display: none;
    }
    .company {
        font-size: 25px;
    }
    .contact_area {
        height: 120px;
        flex-direction: row;
        gap: 0;
        top: 0;
        left: 0;
        width: 100%;        
        border-radius: 0 0 8px 8px; 
    }
    .contact_area div {
        width: 60%;
    }
    .contact_area > img {
        width: 40%;
    }
    .contact_area a {
        text-align: center;
    }
    .tel_img, .time_img {
        width: 80%;
    }
}
@media screen and (max-width: 480px) {
    .header_logo a{
        width: 94%;
    }
    .contact_area > img {
        display: none;
    }
    .contact_area div {
        width: 100%;
    }
    .tel_img, .time_img {
        width: 80%;
    }
}


/*-----------------------
 メインヴィジュアル
-----------------------*/
#mainvisual {
    width: 100%;
}
#mainvisual .flex{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
    background-color: #FFDE5C;
    padding-top: 7%;
}
 #mainvisual .img_box {
    position: relative;
    width: 40%;
    background: url(images/mainvisual1-4.png) left bottom / 37% no-repeat;
}
#mainvisual img {
    width: 50%;
}
.title {
    padding: 20px 10px;
    text-align: center;
    background-color: #FF9500;
    color: #fff;
    font-size: 45px;
    font-weight: 900;
}
.red {
    color: #E2002B;
}
#mainvisual .first_img,  #mainvisual .second_img, #mainvisual .third_img{
    position: absolute;
}
#mainvisual .first_img {
    top: 24%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
#mainvisual .second_img {
    top: 37%;
    right: 9%;
    width: 55%;
}
#mainvisual .third_img {
    bottom: 0;
    right: 0;
    width: 70%;
}
@media screen and (max-width: 1280px) {
    #mainvisual .flex {
        padding-top: 13%;
    }
    .title {
        font-size: 40px;
    }
}
@media screen and (max-width: 1024px) {
    #mainvisual .flex {
        padding-top: 15%;
    }
}
@media screen and (max-width: 960px) {
    #mainvisual .flex {
        padding-top: 18%;
    }
    #mainvisual .img_box {
        width: 45%;
    }
    .title {
        font-size: 33px;
    }
    #mainvisual .first_img {
        top: 13%;
    }
    #mainvisual .second_img {
        top: 28%;
    }
}
@media screen and (max-width: 767px) {
    #mainvisual .flex {
        padding-top: 22%;
    }
    .title {
        font-size: 25px;
    }
}
@media screen and (max-width: 480px) {
    #mainvisual .flex {
        padding-top: 130px;
        flex-direction: column;
        gap: 20px;
    }
    #mainvisual .img_box, #mainvisual img {
        width: 90%;
        margin: 0 auto;
    }
     #mainvisual .img_box {
       aspect-ratio: 1.6 / 1;
    }
    #mainvisual .first_img {
        top: 17%;
    }
    #mainvisual .second_img {
        top: 32%;
    }
    .title {
        font-size: 25px;
    }
}


/*-----------------------
 セクション01
-----------------------*/
#sec01 .wrapper {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    width: 600px;
    margin-bottom: 50px;
}
#sec01 .wrapper::before {
    display: block;
    content: '';
    position: absolute;
    top: -30px;
    right: 210px;
    background: url(images/sec01_icon.png) no-repeat;
    width: 65px;
    height: 71px;
}
#sec01 .wrapper .green:last-of-type{
    position: relative;
    left: 90px;
}
.green {
    display: block;
    color: #049EB2;
}
.large {
    font-size: 40px;
}
#sec01 .flex {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-top: 100px;
}
#sec01 .flex .img_box {
    position: relative;
    width: 60%;
    background: url(images/sec01-2-4.png) left bottom / 37% no-repeat;
}
#sec01 .first_img {
    top: -23%;
    left: 30%;
    width: 55%;
}
#sec01 .second_img {
    top: 34%;
    left: 38%;
    width: 40%;
}
#sec01 .third_img {
    top: 52%;
    left: 33%;
    width: 55%;
}
#sec01 .first_img, #sec01 .second_img, #sec01 .third_img {
    position: absolute;
}
#sec01 .right_img{
    width: 30%;
    object-fit: contain;
}
.logo_slider .slick-track{
    margin-bottom: 50px;
}
.logo_slider .slick-slide{
    margin: 0 10px;
}
.worries {
    text-align: center;
}
.worries_list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    margin-bottom: 30px;
}
.worries_list li {
    position: relative;
    width: 30%;
    border-radius: 20px;
    font-weight: 900;
    min-height: 100px;
}
.worries_list li:nth-of-type(4)::after, .worries_list li:last-of-type::after{
    display: block;
    content: '';
    position: absolute;
    bottom: -60px;
    width: 77px;
    height: 77px;
    background-repeat: no-repeat;
}
.worries_list li:nth-of-type(4)::after {
    left: 40px;
    background-image: url(images/fukidashi_green.png);
}
.worries_list li:last-of-type::after {
    right: 30px;
    background-image: url(images/fukidashi_blue.png);
}
.worries_list li div{   
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 30px 10px;
}
.color1 {
    background-color: #A7B7D6;
}
.color2 {
    background-color: #D6BDA7;
}
.color3 {
    background-color: #A7CAD3;
}
#sec01 .red {
    font-size: 25px;
}
@media screen and (max-width: 960px){
    .worries_list li {
        min-height: 130px;
    }
    .worries_list li br{
        display: none;
    }
}
@media screen and (min-width: 481px){
    #sec01 .green br {
        display: none;
    }
}
@media screen and (max-width: 480px){
    #sec01 .wrapper {
        width: 100%;
        font-size: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    #sec01 .wrapper::before {
        top: -55px;
        right: 5%;
        background: url(images/sec01_icon.png) center / contain no-repeat;
        width: 50px;
        height: 60px;
    }
    #sec01 .large {
        font-size: 35px;
    }
    #sec01 .wrapper .green:last-of-type{
        left: 0;
    }
    #sec01 .flex {
        flex-direction: column;
        align-items: center;
    }
    #sec01 .flex .img_box {
        width: 100%;
        aspect-ratio: 2.5 / 1;
    }
    #sec01 .first_img {
        top: -30%;
        width: 70%;
    }
    #sec01 .second_img {
        top: 37%;
        width: 50%;
    }
    #sec01 .third_img {
        top: 57%;
        width: 70%;
    }
    #sec01 .flex .right_img{
        display: none;
    }
    .worries_list {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }
    .worries {
        margin-bottom: 500px;
    }
    .worries_list li {
        width: 100%;
        min-height: 100px;
    }
    .worries_list li:nth-of-type(3) {
        position: absolute;
        bottom: -450px;
    }
    .worries_list li:nth-of-type(4) {
        position: absolute;
        bottom: -570px;
    }
    .worries_list li:last-of-type{
        position: absolute;
        bottom: -690px;
    }
    .worries_list li:nth-of-type(4)::after, .worries_list li:last-of-type::after{
        display: none;
    } 
    #sec01 .red {
        font-size: 22px;
    }
}

/*-----------------------
 セクション02
-----------------------*/
#sec02 .subsec_area {
    padding: 70px 0;
}
#sec02 .subsec_area:nth-last-of-type(even) {
    background-color: #FFFBF5;
}
#sec02 .flex {
    display: flex;
    gap: 50px;
    align-items: center;
}
#sec02 .subsec_area:nth-of-type(2) .flex, #sec02 .subsec_area:nth-of-type(4) .flex {
    flex-direction: row-reverse;
}
.point_circle{
    width: 500px;
    background-color: #049EB2;
    color: #fff;
    font-size: 27px;
    font-weight: 900;
    padding: 50px;
    border-radius: 50%;
    text-align: center;
    aspect-ratio: 1.5 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.point_circle .large{
    display: block;
    font-size: 50px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.point_circle p {
    line-height: 1.5;
}
.point_circle h4 {
    font-weight: 900;
}
.yellow {
    color: #FFDE5C;
    font-size: 27px;
    font-weight: 900;
}
.point_text{
    width: 60%;
}
.example {
    text-align: center;
    margin: 60px 0 30px;
}
.example span{
    display: inline-block;
    position: relative;
    letter-spacing: 2px;
}
.example span::before, .example span::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 13px;
    width: 12px;
    height: 2px;
    border-radius: 5px;
    background-color: #333;
}
.example span::before {
    left: -20px;
}
.example span::after {
    right: -20px;
}
.example_list {
    display: flex;
    gap: 30px;
    list-style-type: none;
}
.example_list li{
    display: flex;
    flex-direction: column;
    width: 40%;
    border: 3px solid #FF9500;
    border-radius: 20px;
    overflow: hidden;
}
.example_list li img{
    width: 100%;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
}
.details {
    display: block;
    background-color: #FF9500;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 15px;
    letter-spacing: 1px;
}
.details strong {
    font-size: 18px;
}
.example_list li div{
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    gap: 10px;
    height: 100%;
}
.example_list li div p {
    line-height: 1.5;
}
.amount {
    position: relative;
    font-weight: 900;
    font-size: 50px;
    margin-top: auto;
}
.amount::before {
    display: inline-block;
    content: '￥';
    font-size: 30px;
}
small {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}
.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
@media screen and (max-width: 960px) {
    .example_list li div{
        padding: 20px 10px;
    }
    .amount {
        font-size: 40px;
    }
}
@media screen and (max-width: 480px) {
    #sec02 .flex, #sec02 .subsec_area:nth-of-type(2) .flex, #sec02 .subsec_area:nth-of-type(4) .flex  {
        flex-direction: column;
    }
    .point_circle, .point_text {
        width: 100%;
    }
    .point_circle {
        padding: 40px 20px;
        font-size: 22px;
        aspect-ratio: 2 / 1;
    }
    .point_circle .large{
        font-size: 30px;
    }
    .yellow {
        font-size: 22px;
    }
    .example_list .slick-track{
        display: flex;
    }
    .example_list .slick-slide{
        margin: 0 10px;
        display: flex !important;
        flex-direction: column;
        height: 100%;
    }
    .example_list .dots-class li{
        border: none;
    }
    .example_list .dots-class li.slick-active {
        background-color: #FF9500;
    }
}



/*-----------------------
 セクション03
-----------------------*/
#sec03 {
    background-color: #F4F4F4;
}
.step_list div {
    position: relative;
    background-color: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px 20px 20px 150px;
    border-radius: 20px;
}
.step_list div::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 45px;
    width: 60px;
    height: 60px;
    background-size: contain;
}
.step_list div:not(:last-of-type)::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    border: 20px solid transparent;
    border-top: 20px solid #D9D9D9;
}
.step_list div:first-of-type:before {
    background: url(images/step1.png) center / contain no-repeat;
}
.step_list div:nth-of-type(2):before {
    background: url(images/step2.png) center / contain no-repeat;
}
.step_list div:nth-of-type(3):before {
    background: url(images/step3.png) center / contain no-repeat;
}
.step_list div:nth-of-type(4):before {
    background: url(images/step4.png) center / contain no-repeat;
}
.step_list div:last-of-type:before {
    background: url(images/step5.png) center / contain no-repeat;
}
.step_list div:not(:last-of-type) {
    margin-bottom: 50px;
}
.step_list div dt{
    display: flex;
    gap: 10px;
    align-items: flex-end;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}
.step_list div dt .green{
    font-weight: 500;
    font-size: 18px;
}
@media screen and (max-width: 480px) {
    .step_list div {
        padding: 120px 20px 20px 20px;
    }
    .step_list div::before {
        top: 30px;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .step_list div dt{
        justify-content: center;
    }
}


/*-----------------------
 セクション04
-----------------------*/
.faq_head {
    position: relative;
    margin: 100px 0 50px;
    text-align: center;
}
.faq_head::before {
    display: block;
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 113px;
    height: 113px;
    background: url(images/faq.png) center / contain no-repeat;
}
.faq_list div {
    border-radius: 20px;
    border: 2px solid #F4F4F4;
    overflow: hidden;
}
.faq_list div:not(:last-of-type) {
    margin-bottom: 10px;
}
.faq_list div dt {
    cursor: pointer;
    background-color: #F4F4F4;
}
.faq_list div dd {
    overflow: hidden;
    transition: all 0.4s ease;
}
.faq_list dd.open {
    opacity: 1;
    visibility: visible;
}
.faq_list div dt, .faq_list div dd {
    position: relative;
    padding: 20px 20px 20px 75px;
}
.faq_list div dt:before, .faq_list div dd::before {
    display: inline-block;
    position: absolute;
    top: 13px;
    font-weight: 700;
    font-size: 23px;
}
.faq_list div dt:before {
    content: 'Q.';
    left: 30px;
}
.faq_list div dd:before {
    content: 'A.';
    color: #FF3C3C;
    left: 33px;
}
.faq_list div dt p {
    width: 90%;
    line-height: 1.3;
}
.more_arrow, .more_arrow::after {
    position: absolute;
    width: 15px;
    height: 2px;
    border-radius: 5px;
    background-color: #333;
}
.more_arrow {
    top: 30px;
    right: 30px;
    transition: opacity 0.4s ease-in-out;
}
.more_arrow::after {
    display: block;
    content: '';
    top: 0;
    right: 0;
    transform: rotate(90deg); 
    transition: transform 0.4s ease-in-out;
}
.more_arrow.open::before {
    opacity: 0;
}
.more_arrow.open::after {
    transform: rotate(180deg);
}
.reform_box {
    width: 600px;
    margin: 80px auto 0;
    border: 1px solid #333;
    padding: 30px 50px;
    display: flex;
    gap: 30px;
    border-radius: 30px;
}
.orange_marker {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 22px;
    padding: 0 5px 5px;
    margin-bottom: 10px;
}
.orange_marker::after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #F2A120;
    border-radius: 10px;
    width: 100%;
    height: 3px;
}
@media screen and (max-width: 480px) {
    .faq_list div dt, .faq_list div dd {
        position: relative;
        padding: 20px 20px 20px 45px;
    }
    .faq_list div dt:before {
        left: 10px;
    }
    .faq_list div dd:before {
        left: 13px;
    }
    .more_arrow {
        right: 15px;
    }
    .reform_box {
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
    }
    .reform_box div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


/*-----------------------
 セクション05
-----------------------*/
#sec05 .wrapper {
    position: relative;
}
.work_slider .slick-slide{
    margin: 0 10px;
}
.coming_soon {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    background-color: rgba(4, 158, 178, 0.36);
    text-align: center;
    padding: 15px;
    letter-spacing: 5px;
    font-size: 20px;
    width: 300px;
}
@media screen and (max-width: 480px) {
    .coming_soon {
        width: 90%;
    }
}



/*-----------------------
 セクション06
-----------------------*/
#sec06 {
    background-color: #FFF7D9;
}
#sec06 .wrapper {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 350px;
}
#sec06 .wrapper::before, #sec06 .wrapper::after {
    display: inline-block;
    content: '';
    position: absolute;
    bottom: 0;
    background-color: #333;
    width: 1px;
    height: 50px;
    border-radius: 5px;
}
#sec06 .wrapper::before {
    left: 0;
    transform: rotate(-15deg);
}
#sec06 .wrapper::after {
    right: 0;
    transform: rotate(15deg);
}
#sec06 .orange_marker {
    font-size: 27px;
    letter-spacing: 1px;
}
.contact_btn {
    position: relative;
    display: block;
    width: 400px;
    padding: 30px 10px;
    margin: 30px auto 0;
    background-color: #fff;
    border: 2px solid #F2A120;
    color: #F2A120;
    text-align: center;
    border-radius: 50px;
    letter-spacing: 1px;
}
.contact_btn::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 39px;
    right: 30px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #F2A120;
    border-right: 2px solid #F2A120;
    transform: rotate(45deg);
    transition: 0.4s;
}
.contact_btn:hover {
    opacity: 1;    
}
.contact_btn:hover::after {
    transform: translate(5px) rotate(45deg);
}
.tel_num {
    display: block;
    text-align: center;
}
.tel_num img {
    width: 600px;
    margin: 20px auto 0;
}

@media screen and (max-width: 480px) {
    #sec06 .wrapper, .contact_btn {
        width: 100%;
    }
    #sec06 .wrapper::before {
        left: -8px;
    }
    #sec06 .wrapper::after {
        right: -8px;
    }
    .contact_btn::after {
        right: 20px;
    }
    .tel_num .tel_img {
        width: 100%;
    }
}


/*-----------------------
 セクション07
-----------------------*/
#sec07 {
    padding: 0;
}
#sec07 iframe {
    width: 100%;
    height: 400px;
}
@media screen and (max-width: 480px) {
    #sec07 iframe {
        height: 200px;
    }
}

/*-----------------------
 フッター
-----------------------*/
footer {
    margin-top: auto;
    padding: 50px 0 0;
    background-color: #fff;
}
.footer_logo {
    display: block;
    color: #049EB2;
    font-size: 27px;
    font-weight: 900;
    text-align: center;
}
.info {
    display: flex;
    gap: 30px;
    justify-content: center;
    font-size: 16px;
    margin-top: 20px;
}
.info div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.info div dt {
    font-weight: 700;
}
.privacy {
    width: 100%;
    background-color: #F2A120;
    color: #fff;
    font-size: 13px;
    text-align: center;
    padding: 30px 10px;
    margin-top: 50px;
}
@media screen and (max-width: 480px) {
    .info {
        flex-direction: column;
        align-items: center;
    }
}


/* お問い合わせ　個別ページ */
#contact, #thanks {
    background-color: #FFFBF5;
}
#contact section, #thanks section {
    padding: 200px 0 80px;
}
#contact .contact_area, #thanks .contact_area{
    display: none;
}
#contact .container, #thanks .container {
    max-width: 960px;
    margin: 0 auto;
}
#thanks .contact_btn {
    margin-top: 70px;
}
.required {
    display: inline-block;
    font-size: 12px;
    margin-left: 5px;
    text-align: center;
    color: #dd2e2e;
}
.common_dl div {
    display: flex;
}
.common_dl div:not(:last-of-type) {
    margin-bottom: 15px;
}
.common_dl div dt, .common_dl div dd{
    padding: 10px;
}
.common_dl div dt{
   width: 230px;
   color: #fff;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: #F2A120;
   border-radius: 5px;
}
.common_dl div dt p{
    line-height: 1.5;
}
.common_dl div dd{
    width: 80%;
}
.common_dl div .flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}
input[type="text"], input[type="tel"], input[type="email"], textarea {
    border: 1px solid #6e6e6e;
    padding: 10px;
    border-radius: 5px;
}
input[type="text"], input[type="tel"], input[type="email"] {
    width: 100%;
    height: 40px;
}
input[type="checkbox"] {
    width: 17px;
    height: 17px;
}
label {
    cursor: pointer;
}
textarea {
    display: block;
    width: 100%;
    height: 200px;
    font-family: "Noto Sans JP", sans-serif;
}
input[type="submit"] {
    display: block;
    width: 300px;
    padding: 20px 10px;
    margin: 50px auto 0;
    color: #fff;
    background-color: #F2A120;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 1px solid #F2A120;
    cursor: pointer;
    transition: 0.4s;
}
input[type="submit"]:hover {
    background-color: #fff;
    color: #F2A120;
}
.privacy_content {
    margin: 10px;
    border: 1px solid #6e6e6e;
    border-radius: 5px;
    background-color: #fff;
    padding: 10px;
    height: 150px;
    overflow: auto;
    font-size: 15px;
}
.num_list {
    padding-left: 20px;
}
.num_list li {
    padding: 0 0 15px 5px;
}
.num_list li::marker {
    font-weight: 700;
    color: #F2A120;
}
.num_list li > ol {
    padding-left: 30px;
}
.num_list li > ol li {
    padding-bottom: 10px;
}
.num_list li > ol li:last-of-type {
    padding-bottom: 0;
}
.numlist_title {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

@media screen and (max-width: 1024px) {
    #contact .container, #thanks .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 767px) {
    #contact .header_logo a, #thanks .header_logo a {
        top: 10px;
    }
    #contact section, #thanks section {
        padding: 80px 0;
    }
}

@media screen and (max-width: 480px) {
    .common_dl > div {
        flex-direction: column;
    }
    .common_dl div dt, .common_dl div dd{
        width: 100%;
    }
}



/* reCAPTCHA */
#contact .grecaptcha-badge {
    width: 70px !important;
    visibility: visible;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    right: 4px !important;
  }
 #contact .grecaptcha-badge:hover {
    width: 256px !important;
    visibility: visible;
  }
.grecaptcha-badge {
    visibility: hidden;

}
.grecaptcha-badge:hover {
    visibility: hidden;
}


/* contact form */
.wpcf7 form.sent .wpcf7-response-output{
    display: none;
}  


/* 404 */
.error404 {
    background-color: #FFFBF5;
}
.error404 section {
    padding: 200px 0 80px;
}
.error404 .contact_area{
    display: none;
}
.error404 .container {
    max-width: 960px;
    margin: 0 auto;
}
@media screen and (max-width: 1024px) {
    .error404 .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 767px) {
    .error404 .header_logo a{
        top: 10px;
    }
   .error404 section {
        padding: 80px 0;
    }
}
