* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    /*font-family: "Noto Sans JP", serif;*/
    line-height: 1.5;
    font-size: 15px;
}
@media (max-width: 800px) {
    body {
        font-size: 14px
    }
}


/* Header *******************************************************************************************/
/* 共通スタイル */
header {
    width: 100%;
    height: 80px;
    padding-top: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: #003e7b 1px solid;
}
main{
    margin-top: 80px;
}

.site-name {
    font-size: 20px;
    font-weight: bold;
    color: #006eb8;
    position: relative;
    padding-left: 50px;
    margin-top: 10px;
}
.site-name::before {
    content: "";
    background: url(images/site-icon.png);
    width: 45px;
    height: 40px;
    position: absolute;
    top: -10px;
    left: 0;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    padding: 0 20px;
    position: relative;
}
header nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    font-size: 15px;
    position: absolute;
    top:0;
    right: 30px;
    font-weight: b;
}
header nav ul li a{
    display: flex;
    align-items: center;
    height: 45px;
    transition: all 0.3s ease;
}
header nav ul li a:hover{
    color: #ff9e00;
}


/* レスポンシブ用スタイル */
@media screen and (max-width: 650px) {
    header {
        height: 60px;
        border-bottom: none;
        position: static;
        width: 100%;
        padding-top: 0px;
    }
    main{
        margin-top: 0px;
    }
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        height: 60px;
        background-color: #fff;
    }
    .site-name{
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    header nav ul {
        display: none; /* 初期状態で非表示 */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:  linear-gradient(to top, #d2e7ff, #f4f9ff);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        z-index: 1000;
        color:#003e7b;
    }
    .nav-open ul {
        display: flex; /* メニューが開く */
    }


/* メニューアイコンのスタイル */
.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 45px;
    padding: 10px;
    cursor: pointer;
    z-index: 1100;
    position: fixed;
    top: 12px;    /* 上からの距離 */
    right: 20px;  /* 右からの距離 */
    background-color: #fffffff4;
}

.menu-icon span {
    display: block;
    height: 4px;
    background-color:#ff9e00;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ×印に変わった状態 */
.menu-icon.close span:nth-child(1) {
    transform: translateY(10px) rotate(45deg); /* 上の線を右上に移動し、45度回転 */
    background-color:#003e7b;
}

.menu-icon.close span:nth-child(2) {
    opacity: 0; /* 中央の線を非表示に */
}

.menu-icon.close span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg); /* 下の線を左下に移動し、-45度回転 */
    background-color:#003e7b;
}
}


/* Common Section Styles */
.section-1,
.section-2,
.section-3,
.section-4,
.section-5,
.section-6,
.section-7 {
    padding-bottom: 60px;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 25px;
    font-family: "Noto Sans JP", serif;
    font-weight: bold;
}
@media (max-width: 800px) {
    section h2 {
      font-size: calc(18px + (25 - 18) * ((100vw - 320px) / (800 - 320)));
    }
}


.image {
    border: 1px solid #ddd;
}

/* Section 1 *******************************************************************************************/
.section-1 {
    width: 100%;
    background: url(images/01head-back.png), linear-gradient(to top, #d2e7ff, #f4f9ff);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.container-header {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 60px;
    display: flex;
    justify-content: space-between;
}
.container-header .header-box{
    width: 50%;
    text-align: center;
}
.container-header .header-box:nth-of-type(1){
    padding-left: 10px;
    order: 1;
}
.container-header .header-box:nth-of-type(2){
    padding-right: 10px;
    order: 2;
}
.header-logo,
.header-logo-s{
    max-width: 300px;
    margin-bottom: 10px;
}
.section-1 h2{
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
    color: #000000;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight:900;
    font-style: normal;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.section-1 h2::after{
    content: "";
    position: absolute;
    width: 90px;
    height: 54px;
    background-image: url('images/01head-circle.png');
    background-size: contain;
    background-repeat: no-repeat;
    top:40px;
    left: 237px;
    z-index:2
}
.section-1 ul.list-appeal{
    width: 310px;
    margin: 0 auto;
    text-align: left;
    font-family: "Noto Sans JP", serif;
    font-size: 18px;
    font-weight: bold;
}
.section-1 ul.list-appeal li{
    padding-left: 45px;
    margin-bottom: 10px;
    position: relative;   
}
.section-1 ul.list-appeal li::before{
    content: '';
    display: inline-block; 
    width: 40px;
    height: 30px;
    background-image: url('images/01head-check.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top:0;
    left: 0;
}
.header-box-innerWrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.header-box-inner{
    width: 50%;
}

.header-box-inner p{
    font-size: 14px;
    font-family: "Noto Sans JP", serif;
}

.btn-trial,
.btn-contact {
    display: inline-block;
    padding: 10px 40px;
    margin-top: 5px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 25px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-trial {
    background-color: #ff9e00;
    color: #fff;
    border: #fff 2px solid;
}
.btn-contact {
    background-color: #fff;
    color: #ff9e00;
    border: #ff9e00 2px solid;
}
.btn-contact:hover,
.btn-trial:hover {
    transform: scale(1.05);
}

.header-box h3{
    font-family: "Noto Sans JP", serif;
    font-weight: 700;
    font-size: 25px;
    border-bottom: #000 2px solid;
    display: inline-block;
    padding: 0 10px;
}
.header-box ul.list-appealDetail{
    display: flex;
    justify-content: space-between;
}
.header-box ul.list-appealDetail li{
    width: 32%;
    background-color: #fff;
    border: #003E7B 3px solid;
    color: #003E7B;
    padding: 20px;
    font-family: "Noto Sans JP", serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.3;
}
.header-box ul.list-appealDetail li:nth-of-type(2){
    background-color: #5E80C0;
    color: #fff;
    
}
.header-logo-s{
    display: none;
}
@media screen and (max-width: 930px) {
    .header-box-inner p{
        font-size: 12px;
    }
    .btn-trial,
    .btn-contact {
    padding: 10px 25px;
}
}
@media screen and (max-width: 800px) {
    .header-logo{
    max-width: 250px;
}
    .section-1 h2{
        font-size: 24px;
    }
    .section-1 h2::after{
        width: 70px;
        height: 54px;
        top:27px;
        left: 162px;
    }
        /****************************************/
    .header-box ul.list-appealDetail{
        display: block;
    }
    .header-box ul.list-appealDetail li{
        width: 100%;
        border: #003E7B 1px solid;
        padding: 10px;
        margin-top: 10px;
        font-size: 14px;
    }
    
        /****************************************/
        .header-box h3{
            font-size: 19px;
        }
        .sec1-PC{
        width: 300px;
        }
        /****************************************/
        .section-1 ul.list-appeal{
            width: 250px;
            font-size: 15px;
        }
        .section-1 ul.list-appeal li{
            padding-left: 35px;
            margin-bottom: 5px;
        }
        .section-1 ul.list-appeal li::before{
            width: 30px;
        }
        /****************************************/
        .header-box-innerWrap{
        display: block;
        margin-top: 15px;
    }
        .header-box-inner{
            width: 100%;
        }
        .header-box-inner:nth-of-type(2){
            margin-top: 10px;
        }
        .btn-trial,
        .btn-contact {
        padding: 10px 40px;
    }

}
@media (max-width: 610px) {
    .header-logo-s{
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .header-logo{
        display: none;
    }
    .section-1 h2{
        margin-top: 20px;
    }
    .container-header{
        flex-direction:column
    }
    .container-header .header-box{
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .container-header .header-box:nth-of-type(1){
        order: 2;
        padding-left: 0;
    }
    .container-header .header-box:nth-of-type(2){
        order: 1;
        padding-right: 0;
    }
    .header-box ul.list-appealDetail li{
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* Section 2 *******************************************************************************************/
.section-2{
    background-color: #F6F6F6;
    padding: 0;
}
.container-wrap-sec2{
    background-image: url(images/02headNext.png);
    width: 100%;
    height: 315px;
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}
.worry-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    position: absolute;
    top:50px;
    left: 215px;
}
.worry-box h2{
    font-size: 16px;
    letter-spacing:1px;
}
.worry-box h2 span{
    font-size: 25px;
    color:#003e7b;
    position: relative;
    display: inline-block;
}
.worry-box h2 span::before {
    content: "•";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color:#003e7b;
}
.worry-box ul {
    list-style: none;
    line-height: 1.3;
}
.worry-box li{
    margin-top: 10px;
}
@media screen and (max-width: 800px) {
    .container-wrap-sec2{
        background-image: none;
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .worry-box {
        position: static;
        background-color:#fff;
        max-width: 480px;
    }
}
@media screen and (max-width: 610px) {
    .worry-box {
        width: 95%;
    }
    .worry-box ul {
        line-height: 1.5;
    }
    .worry-box ul li::first-letter{
        font-size: 120%;
        font-weight: bold;
    }
}

/* Section 3 *******************************************************************************************/
.section-3{
    background-color: #fff;
    padding: 20px 0;
    font-family: "Noto Sans JP", serif;
    font-weight: 700;
    font-size: 10px;
}
.section-3 h2{
    font-family: "Noto Sans JP", serif;
    font-weight: 700;
    font-size: 16px;
    background-image: url(images/02headNext-strong.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    margin-bottom: 0;
}
.section-3 img{
    width: 95%;
    max-width: 750px;
    margin: 0 auto;
    display: block;
}
@media screen and (max-width: 800px) {
    .section-3 h2{
        font-size: 12px;
    }
}
/* Section 4 *******************************************************************************************/
h2.h2-belt{
    background-color: #003e7b;
    color: #fff;
    font-weight: 900;
    padding: 20px 0;
    margin-bottom: 55px;
}

.container-wrap-sec4 {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
}

.appeal-box {
    border: #003e7b 1px solid;
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 4px 4px 0px #003e7b;
    position: relative;
}

.appeal-box:last-of-type{
    margin-bottom: 0;
}
.appeal-box::before{
    position: absolute;
    content: "";
    top: -35px ;
    left: 30px;
    width: 70px;
    height: 75px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.appeal-box:nth-of-type(1):before{
    background-image: url(images/03number-1.png);
}
.appeal-box:nth-of-type(2):before{
    background-image: url(images/03number-2.png);
}
.appeal-box:nth-of-type(3):before{
    background-image: url(images/03number-3.png);
}
.appeal-box:nth-of-type(4):before{
    background-image: url(images/03number-4.png);
}
.appeal-box:nth-of-type(5):before{
    background-image: url(images/03number-5.png);
}


.appeal-box h3 {
    font-family: "Noto Sans JP", serif;
    font-weight: 800;
    font-size: 20px;
    display: inline-block;
    border-bottom: #000 2px solid;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}
.appeal-box p{
    text-align: left;
}
.appeal-box img{
    width: 100%;
}
.appeal-box img.appealImg-1{
    max-width: 500px;
}
.appeal-box img.appealImg-2{
    max-width: 900px;
}
.appeal-box img.appealImg-3{
    max-width: 560px;
}
.appealBox-br{
    display: none;
}
@media screen and (max-width: 800px) {
    .appealBox-br{
        display: inline-block;
    }
}
@media screen and (max-width: 610px) {
    .appeal-box::before{
        top: -35px ;
        left: 15px;
        width: 50px;
        height: 55px;
    }
    .appeal-box h3 {
        padding-left: 5px;
        padding-right: 5px;
        margin-top: 10px;
    }
    .appeal-box {
        padding: 20px;
    }
    .appeal-box h3{
        font-size: 18px;
    }
    .appealBox-span{
        font-size: 12px;
    }
}
/* Section 5 *******************************************************************************************/
.ex-wrap{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}
.ex-box{
    width: 24%;
    max-width: 400px;
    border:  1px solid #003e7b;
    text-align: center;
    padding: 20px;
}
.ex-title{
    font-family: "Noto Sans JP", serif;
    font-size: 18px;
    font-weight: 700;
    color: #003e7b;
}
.ex-titleSub{
    font-family: "Noto Sans JP", serif;
    font-size: 16px;
    font-weight: 700;
}
.ex-text{
    margin-top: 10px;
    text-align: left;
    font-size: 15px;
}
.ex-time{
    margin-top: 10px;
    text-align: left;
    font-size: 15px;
    color: #003e7b;
}
.ex-time span{
    border-bottom: 2px solid #4d9bc1;
    line-height: 2;
}
@media (max-width: 1300px) {
    .ex-wrap{
        width: 98%;
        max-width: 800px;
    }
    .ex-box{
        width: 49%;
    }
    .ex-box:nth-of-type(1),
    .ex-box:nth-of-type(2){
        margin-bottom: 10px;
    }
    .ex-box img{
        max-width: 150px;
    }
}
@media (max-width: 650px) {
    .ex-wrap{
        max-width: 650px;
    }
    .ex-box{
        width: 90%;
        max-width: 650px;
        margin: 0 auto;
    }
    .ex-box:nth-of-type(3){
        margin-bottom: 10px;
    }
}
/* Section 6 *******************************************************************************************/
dl.qa-wrap{
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 35px;
}
dl.qa-wrap dt{
    font-family: "Noto Sans JP", serif;
    color: #003e7b;
    margin-top: 30px;
    position: relative;
}
dl.qa-wrap dt:first-of-type{
    margin-top: 0;
}
dl.qa-wrap dt::before {
    display: inline-block;
    position: absolute;
    top:0px;
    left:-40px;
    padding: 0 5px;
    background: linear-gradient(to bottom, transparent 40%, #FFDE00 40% 90%, transparent 90%);
}
dl.qa-wrap dt:nth-of-type(1)::before {
    content: "Q1";
}
dl.qa-wrap dt:nth-of-type(2)::before {
    content: "Q2";
}
dl.qa-wrap dt:nth-of-type(3)::before {
    content: "Q3";
}
dl.qa-wrap dt:nth-of-type(4)::before {
    content: "Q4";
}
dl.qa-wrap dt:nth-of-type(5)::before {
    content: "Q5";
}
dl.qa-wrap dt:nth-of-type(6)::before {
    content: "Q6";
}
dl.qa-wrap dt:nth-of-type(7)::before {
    content: "Q7";
}
dl.qa-wrap dd{
    margin-top: 5px;
    font-size: 14px;
}
.qa-wrap ul li {
  list-style-type: disc; /* 黒丸を設定 */
  list-style-position: inside; /* 黒丸をリスト内に配置 */
}
.qa-wrap ul li:last-of-type{
    list-style-type: none;
}
@media screen and (max-width: 610px) {
.qa-wrap ul li{
    font-size: 12px;
    list-style-type: none;
    margin-bottom: 5px;
}
.qa-wrap ul li:last-of-type{
    font-size: 14px;
}
}
/* Section 7 *******************************************************************************************/
.section-7{
    padding-bottom: 0;
}
.h2-sub{
    width: 90%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #003e7b;
    margin-top: -40px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.support-wrap {
    width: 95%;
    max-width: 750px;
    margin: 20px auto 0px auto;
}
.support-wrap dl{
    border: #003e7b 1px solid;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0px #003e7b;
    background-repeat: no-repeat;
    background-position: left top;
}
.support-wrap dl:nth-of-type(1){
    background-image: url(images/06number-1.png);
}
.support-wrap dl:nth-of-type(2){
    background-image: url(images/06number-2.png);
}
.support-wrap dl:nth-of-type(3){
    background-image: url(images/06number-3.png);
}
.support-wrap dl:last-of-type{
    margin-bottom: 0;
}
.support-wrap dt{
    font-family: "Noto Sans JP", serif;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
    margin-left: 80px;
}
.support-wrap dd{
    margin-left: 30px;
    margin-right: 30px;
}

.arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #003e7b;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}
.support-br{
    display: none;
}
@media screen and (max-width: 610px) {
.h2-sub{
    font-size: 15px;
    }
    .support-wrap dt{
        font-size: 16px;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 345px) {
.support-span{
    font-size: 12px;
}
}
/* Section 8 *******************************************************************************************/
.allTimes{
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
    background: linear-gradient(to top, #d2e7ff, #f4f9ff);
    text-align: center;
}
.allTimes .allTimes-title{
    font-family: "Noto Sans JP", serif;
    font-size: 20px;
    font-weight: 700;
    color: #003e7b;
    margin-bottom: 15px;
}
.allTimes .allTimes-titleSub{
    font-family: "Noto Sans JP", serif;
    color: #003e7b;
    line-height: 1.8;
    margin-bottom: 20px;
}
.cta-button {
    width: 90%; 
    max-width: 350px;
    margin: 0 auto;
    font-family: "Noto Sans JP", serif;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center; 
    transition: all 0.6s ease;
    cursor: pointer;
}
.cta-buttonContact{
    border: #003e7b 1px solid;
    background-color: #003e7b;
    color: #fff;
    height: 60px;
    font-size: 22px;
}
.cta-buttonApply{
    border: #ff9e00 1px solid;
    background-color: #ff9e00;
    color: #fff;
    height: 80px;
    font-size: 25px;
}
    /* Hover時 */
.cta-buttonContact:hover{
    background-color:#fff;
    color: #003e7b;
}
.cta-buttonApply:hover{
    background-color:#fff;
    color: #ff9e00;;
}
.allTimes-br{
    display: none;
}
@media screen and (max-width: 465px) {
    .allTimes-br{
        display: block;
    }
    .cta-buttonContact,
    .cta-buttonApply{
        height: 50px;
        font-size: 20px;
    }
}

/* Footer *******************************************************************************************/
footer {
    background-color:rgb(246, 246, 246);
    padding-top:10px;
    padding-bottom: 10px;
}
.footer-main{
    margin-bottom: 120px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color:#000;
    height: 90px;
    display: flex;
}
.footer-container-box{
    width: 50%;
}
.parentLIN{
    position: relative;
}
.line-link,
.x-link {
    position: absolute;
    top: 20px;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    text-indent: -9999px; /* テキストを隠す */
    overflow: hidden;
    border: none;
}
.line-link {
    left: 290px;
    background-image: url(images/LINE.png);
}
.x-link {
    left: 340px;
    background-image: url(images/X.png);
}
.line-link:hover,
.x-link:hover {
    /* 必要に応じてホバー効果を追加 */
    opacity: 0.8;
}
@media screen and (max-width: 730px) {
    .line-link,
    .x-link {
        top:0px;
    }
    .line-link {
        left: 160px;
    }
    .x-link {
        left: 210px;
    }
}



.footer-company{
    font-size: 14px;
    font-weight:400;
    color:#003e7b;
}
.footer-container-inner{
    width: 50%;
    text-align: right;
}
footer nav{
    width: fit-content;
    display: inline-block;
}
footer nav ul {
    display: flex;
    gap: 20px;
    margin: 20px ;
    font-size: 14px;
    width: fit-content;
}
footer nav ul li a{
    transition: all 0.3s ease;
}
footer nav ul li a:hover{
    color: #ff9e00;
}
.copyright {
    font-size: 13px;
}

.footer-last{
    background-color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}
.footer-last-inner{

    display: flex;
    justify-content: space-between;
    max-width: 620px;
    margin: 0 auto;
}
.line-text{
    margin-left: 5px;
    padding-top: 6px;
    font-weight: bold;
    color: #003e7b;
}
.line-arrow {
    position: relative;
    padding-left: 20px; /* 矢印のスペースを作る */
}

.line-arrow::before {
    content: '';
    position: absolute;
    left: 0; /* 左端に配置 */
    top: 50%;
    transform: translateY(-50%); /* 垂直中央に配置 */
    width: 0;
    height: 0;
    border-top: 10px solid transparent; /* 上部の透明な辺 */
    border-bottom: 10px solid transparent; /* 下部の透明な辺 */
    border-right: 10px solid #003e7b; /* 右側に矢印部分を作成 */
}











.nav-res{
    display: none;
}
/* レスポンシブ用スタイル */



@media screen and (max-width: 650px) {
    .footer-main {
        margin-bottom: 90px;
    }
    .footer-container {
        height: 150px;
        display:block;
    }
    .footer-container-box{
        width: 100%;

    }
    .footer-container-inner{
        width: 100%;

    }    

    .copyright{
        font-size: 12px;
        color:#616161
    }
    .footer-last{
        margin-top: -120px;
    }
    .nav-res{
        display: block;
    }

    /*レスポンシヴナビのサイト名*/
    header nav ul li:nth-of-type(1){
        display: block;
    }
    header nav ul li a.nav-site-name:nth-of-type(1)::before {
        content: "";
        background: url(images/site-icon.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 40px;
        height: 30px;
        position: absolute;
        top: 5px;
        left: 10px;
    }
    .nav-res .nav-site-name {
        font-size: 18px;
        font-weight: bold;
        background-color:#ffffff;
        height: 45px;
        position: relative;
        cursor: pointer;
        padding-left: 50px;
        padding-right: 20px;
        padding-top: 5px;
    }
    .nav-res .nav-site-name:hover{
        color: unset;
    }
    /*レスポンシヴナビのお問い合わせ*/
    .nav-res .inquiry-head {
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        background-color:#003e7b;
        border: #003e7b 1px solid;
        height: 45px;
        transition: all 0.3s ease;
        position: relative;
        align-items: center; /* テキストとアイコンを縦横中央揃え */
        cursor: pointer;
        padding: 15px 40px;
    }
        /* Hover時 */
    .nav-res .inquiry-head:hover{
        color:#003e7b;
        background-color: #fff;
    }
    /*レスポンシヴのメニュー*/
    header nav ul {
        gap: 10px;
    }

    
}


#top{
    scroll-margin-top: 75px; /* 必要な分だけ調整 */
}
#appeal,
#ex,
#qa,
#support{
    scroll-margin-top: 80px; /* 必要な分だけ調整 */
}

@media screen and (max-width: 650px) {
    #appeal,
    #ex,
    #qa,
    #support{
        scroll-margin-top: 0px; /* 必要な分だけ調整 */
    }
}











/*お問い合わせ*/
.H-style{
    background-color: #003e7b;
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    padding: 20px 0;
    text-align: center;
}
