/*******************************
*style.css
*******************************/
html{
    /* height: 100%; */
    /* overflow: visible; */
}

body {
    /* font-family: Arial, sans-serif; */
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    height: 100%;
    overflow: visible;
}

img{
    max-width: 100%;
    height: auto;
}

a{
    color: #1a0dab;
    cursor: pointer;
    text-decoration: none;
    transition-duration: 0.3s;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

a:visited, a:active {
    color: #1a0dab;
}

a:hover{
    color: #6557ff;
}

input::placeholder, textarea::placeholder{
    color: #999;
}

select:has(option:checked[value=""]) {
    color: #999;
}

select option {
    color: #000; /* ドロップダウン表示中は黒色 */
}

ul,li{
    list-style: none;
}

@media only screen and (max-width: 480px) {
    body {
        background-color: #fff;
    }
}


/*************************
/* flex-box
*************************/
.flex-box {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-box-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-box-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-colm{
    flex-direction: column;
}

.flex-box-row-rever {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-box-space-b {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-box-space-a {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex-box-space-c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-box-item-c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/*******************************
*中央寄せ
*******************************/
.center-type1 {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.center-type2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.center-type3 {
    position: absolute;
    top: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.center-type4 {
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}


/*******************************
*max-width
*******************************/
.maxw300{
    max-width: 300px;
}

.maxw350{
    max-width: 350px;
}

.maxw400{
    max-width: 400px;
}

.maxw450{
    max-width: 450px;
}
.maxw500{
    max-width: 500px;
}

.maxw550{
    max-width: 550px;
}

.maxw600{
    max-width: 600px;
}


/*******************************
*text
*******************************/
.align-l{
    text-align: left;
}

.align-c{
    text-align: center;
}

.align-r{
    text-align: right;
}

.font-bold{
    font-weight: 900;
}


/*******************************
*color
*******************************/
.bg-color-w{
    background-color: #fff;
}

.bg-color1{
    background-color: #10263e;
}

.bg-color2{
    background-color: #f5f5f5;
}

.bg-color3{
    background-color: #c5d8e4;
}

.bg-color4{
    background-color: #fffded;
}

.bg-engineer{
    background-color: #fb9355;
}

.bg-client{
    background-color: #52935a;
}

.text-color-w{
    color: #fff;
}

.text-color1{
    color: #10263e;
}

.text-color2{
    color: #00578b
}

.shadow1{
    box-shadow: 0 8px 16px rgb(0 0 0 / 15%);
}

.link-color-w,
.link-color-w:visited{
    color: #fff;
}

.link-color-w:hover{
    color: #429eff;
}

.link-color-b,
.link-color-b:visited{
    color: #000;
}

.link-color-b:hover{
    color: #429eff;
}

.link-color1,
.link-color1:visited{
    color: #429eff;
}

.link-color1:hover{
    color: #89c2eb !important;
}

.link-color2,
.link-color2:visited{
    color: #1a0dab;
}

.link-color2:hover{
    color: #6557ff !important;
}

.link-icon::after{
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.25rem;
}

.link-tab::after{
    content:'\f08e';
}

.link-arrow-l::after{
    content:'\f053';
}

.link-arrow-r::after{
    content:'\f054';
}

.link-arrow-u::after{
    content:'\f077';
}

.link-arrow-d::after{
    content:'\f078';
}

.link-file::after{
    content:'\f56d';
}


/*******************************
*btn
*******************************/
.btn{
    margin-top: 1rem;
    display: block;
    max-width: 150px;
    margin-left: auto;
    background-color: #46ac4a;
    text-align: center;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    color: #fff;
    text-decoration: none;
    transition-duration: 0.3s;
    transition: background-color 0.3s;
    border-radius: 10px;
}

.btn:hover{
    background-color: #04cf0d;
    transition-duration: 0.3s;
    transition: background-color 0.3s;
}

.btn-color-main{
    background-color: #357ecc;
}

.btn-color-main:hover{
    background-color: #285f99;
}

.btn-color1{
    background-color: #285f99;
}

.btn-color1:hover{
    background-color: #1a4674;
}

.btn-request{
    max-width: 300px;
    margin: 2rem auto 0;
    padding: 1rem;
}

.btn-request:hover{
    color: #fff;
}


/*******************************
*header
*******************************/
.header{
    position: sticky;
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    min-height: 70px;
    /* border-bottom: 1px solid #e0e0e0; */
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
    background-color: #10263e;
    z-index: 100;
}

.header > div.flex-box{
    padding: 1rem 3rem;
}

.header h1{
    margin: 0;
}

.header .logo img{
    max-width: 120px;
    display: block;
}

.header .logo{
    max-width: 320px;
}

.header .navi{
    max-width: 640px;
    gap: 0 10px;
}

.header .navi ul{
    gap: 0 15px;
}

.header .navi ul li a{
    font-size: 0.875rem;
}

.header .navi ul li i{
    color: #429eff;
    margin-right: 0.15rem;
}

.header .navi .notifications-count{
    display: inline-block;
    min-width: 25px;
    height: 25px;
    margin-left: 5px;
    padding: 3px 5px;
    font-size: 12px;
    border-radius: 100px;
    background-color: #f45b69;
    line-height: 1.6;
    text-align: center;
}

/* navigation dropdown menu */
.navigation, .navigation-submenu {
    /* display: inline-block; */
    margin: 0;
    padding: 0;
}

.navigation.right {
    /* float: right; */
}

.navigation li {
    /* float: left; */
    /* margin-right: 10px; */
}

.navigation .navigation-submenu {
    display: none;
}

.navigation li a {
    position: relative;
    display: block;
    text-decoration: none;
    padding: 12px 20px;
    border: 1px solid #10263e;
    background: #10263e;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    min-width: 75px;
    text-align: center;
}

.navigation li:hover .navigation-submenu {
    display: block;
    position: absolute;
}

.navigation li:hover li,
.navigation li:hover a {
    /* float: none; */
}

.navigation li a:hover,
.navigation li:hover li a:hover {
    background: #fff;
    color: #10263e;
}

.navigation > li.active a {
    background: #fff;
    color: #10263e;
}

.navigation > li.active li a {
    background: #10263e;
    color: #fff;
}

.navigation > li a::before {
    content: none;
    width: 8px;
    height: 8px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(45deg);
    position: absolute;
    margin-top: -4px;
    top: 50%;
    right: 8px;
}

.navigation > li.active a::before{
    content: none;
    width: 8px;
    height: 8px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    transform: rotate(45deg);
    position: absolute;
    margin-top: -4px;
    top: 50%;
    right: 8px;
}

@media only screen and (max-width: 767px) {
    .header > div.flex-box{
        padding: 1rem 1rem;
    }
}


/*******************************
*footer
*******************************/
.footer{
    background-color: #10263e;
}

.footer-link{
    padding-block: 1rem 0;
    /* margin-bottom: 1.5rem; */
    /* background-color: #285f99; */
}

.footer-link a{
    font-size: 0.875rem;
}

.footer-link ul{
    display: flex;
    justify-content: center;
}

.footer-link ul li{
    position: relative;
    margin: 0 0.75rem;
}

.footer-link ul li:not(:last-child)::after{
    content: "｜";
    position: absolute;
    right: -0.375rem;
    width: 1px;
    /* margin-inline: 10px; */
    color: #fff;
}

.footer .copyright{
    padding-block: 1rem;
    font-size: 0.75rem;
}


/*******************************
*sidebar
*******************************/
.sidebar-body{
    width: 260px;
    /* height: 100%; */
    height: calc(100vh - 77px);
    background-color: #e2e2e2;
    position: sticky;
    top: 77px;
    left: 0;
    transition: all 200ms ease-in-out;
    z-index: 1000;
    max-height: 100vh; /* ビューポートの高さを上限に設定 */
    overflow-y: auto; /* 縦スクロールを必要に応じて表示 */
    overflow-x: hidden; /* 横スクロールを無効化 */
    scrollbar-width: thin; /* Firefox向けのスクロールバーの幅を調整（オプション） */
}

.sidebar::-webkit-scrollbar {
    width: 8px; /* スクロールバーの幅 */
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #ccc; /* スクロールバーのつまみ部分の色 */
    border-radius: 4px; /* 角を丸く */
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background-color: #aaa; /* ホバー時の色 */
}

.sidebar-body > .inner{
    /* height: calc(100% - 49.5px); */
    height: 100%;
    padding: 1.5rem 1.5rem;
}

.sidebar h2{
    margin-top: 0;
    margin-bottom: 0.875rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.sidebar-box:not(:first-of-type):not(:last-of-type){
    margin-bottom: 1.5rem;
}

.sidebar ul li a{
    position: relative;
    display: block;
    padding: 1rem 1rem;
    font-size: 0.875rem;
    font-size: 0.9375rem;
    /* color: #fff; */
    color: #000;
    line-height: 1.0;
    text-decoration: none;
}

.sidebar ul > li.active > a{
    color: #fff;
    background-color: #10263e;
}

.sidebar .menu-list h2{
    margin-bottom: 0;
    padding: 1rem 1rem;
    font-size: 0.9375rem;
}

.sidebar .menu-list > ul{
    border-top: 1px solid #8e8e8e;
}

.sidebar .menu-list > ul > li{
    border-bottom: 1px solid #8e8e8e;
}

.sidebar .menu-list ul li.active > a{
    color: #fff;
    background-color: #10263e;
}

.sidebar .menu-list ul li a::after{
    position: absolute;
    top: 16px;
    right: 16px;
}

.sidebar .menu-list ul li a.link-tab::after{
    position: static;
}

.sidebar .menu-list ul li a:hover{
    color: #004080;
    background-color: #7cb4e0;
}

.sidebar .menu-list ul li a > span{
    font-size: 0.875rem;
}

.sidebar .menu-junbi > a{
    cursor: not-allowed;
    pointer-events: none;
    /* background-color: #a8a8a8; */
}

.sidebar .menu-junbi > a > span::after{
    content: '準備中';
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translate(0%, -50%);
    font-size: 0.75rem;
    color: #f45b69;
}

.sidebar .menu-list ul li .submenu{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.submenu li a {
    display: block;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
}

.submenu li a:hover {
    color: #007BFF;
}

.sidebar .trigger{
    /* width: 50px; */
    width: 60px;
    /* height: 50px; */
    height: 60px;
    /* position: absolute; */
    position: fixed;
    /* top: 0; */
    top: 50%;
    left: 260px;
    /* bottom: 75px; */
    transition: all 200ms ease-in-out;
}

.sidebar .trigger .toggle {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 50px; */
    width: 60px;
    /* height: 50px; */
    height: 60px;
    color: #fff;
    background-color: #10263e;
    cursor: pointer;
}

.sidebar .trigger .toggle span.text{
    position: absolute;
    bottom: 5px;
    font-size: 0.75rem;
    line-height: 1.0;
    pointer-events: none;
}

.sidebar .trigger span.toggler:before{
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border: 0;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    border-color: #fff;
    transform: rotate(45deg);
    position: absolute;
    /* top: 50%; */
    top: 25px;
    left: 25px;
    margin-top: -6px;
    pointer-events: none;
}

.sidebar .trigger span.toggler:before{
    /* bottom: 9px; */
    /* left: 12px; */
    left: 19px;
}

.sidebar .trigger span.toggler:after {
    top: 9px;
}

.sidebar .trigger span.deleteclass {
    background-color: transparent;
}

.sidebar .trigger span.deleteclass::before{
    /* bottom: 0; */
    /* left: 22px; */
    left: 25px;
    transform: rotate(-130deg);
}

.show-nav .sidebar{
    position: fixed;
}

.not-smartphone.show-nav .sidebar .trigger{
    left: 0;
}

.not-smartphone.show-nav .sidebar{
    left: -260px;
}

.smartphone .sidebar{
    position: fixed;
    left: -260px;
    z-index: 1000;
}

.smartphone .sidebar .trigger{
    left: 0;
}

.smartphone.show-nav .sidebar{
    left: 0;
}

.smartphone.shop-nav .sidebar .trigger{
    left: 260px;
}

.smartphone.show-nav .sidebar .trigger{
    left: 260px;
}

.smartphone .sidebar .trigger span.deleteclass::before {
    left: 20px;
    transform: rotate(45deg);
}

.smartphone.show-nav .sidebar .trigger span.toggler::before{
    left: 26px;
    transform: rotate(-130deg);
}


@media only screen and (min-width: 768px) {
    .sidebar .trigger{
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .smartphone .sidebar .trigger {
        left: 0;
        top: auto;
        bottom: 20px;
    }
    .sidebar-body > .inner{
        padding: 0;
    }
}


/*******************************
*layout
*******************************/
.wrapper {
    /* width: 960px; */
    /* margin: 0 auto; */
    width: 100%;
}


/*******************************
*フィードバック
*******************************/
.feedback.success{
    padding: 1rem 1.25rem;
    color: #052c65;
    background-color: #cfe2ff;
    text-align: center;
}

.feedback.error{
    padding: 1rem 1.25rem;
    color: #58151c;
    background-color: #f8d7da;
    text-align: center;
}


/*******************************
*form
*******************************/
.form-style input{
    padding: 0.625rem;
    margin: 0.625rem 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #ecf5f9;
}

.form-style input:not([type="checkbox"]){
    display: block;
    width: 100%;
}

.form-style input[type="checkbox"]{
    width: auto;
    margin: 0 3px 0 0;
    cursor: pointer;
}

.form-style input[type="checkbox"] + label{
    cursor: pointer;
}

.form-style input:focus:not([type="submit"]) {
    border-color: #007BFF !important;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
    background-color: #fff;
}

.form-style input::placeholder{
    /* color: #004080; */
    /* color: #000; */
    opacity: 0.7;
}

.form-style input[type="submit"] {
    display: block;
    width: 100%;
    transition: background-color 0.3s;
    color: #fff;
    border: 2px solid #357ecc;
    background-color: #357ecc;
}

.form-style input[type="submit"]:hover{
    background-color: #285f99;
    border: 2px solid #285f99;
}

.form-style form .input-block{
    max-width: 500px;
    margin-inline: auto;
}

.form-style div.input-group:not(:last-of-type){
    margin-bottom: 1.5rem;
}

.form-style .name-box{
    gap: 15px;
}

.form-style .select-box label{
    display: block;
}

.form-style select {
    position: relative;
    appearance: none;
    min-width: 230px;
    height: 2.8em;
    margin: 0.625rem 0;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    background-color: #ecf5f9;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 15.0006L7.75732 10.758L9.17154 9.34375L12 12.1722L14.8284 9.34375L16.2426 10.758L12 15.0006Z'%3E%3C/path%3E%3C/svg%3E");
    background-position: center right;
}

.form-style .logo{
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-style .logo img{
    max-width: 260px;
}

.form-style-account .captcha-input .reload{
    margin-left: 2rem;
}

.form-style .login-return{
    margin-top: 2rem;
}

.form-style .account-register a {
    display: block;
    max-width: 240px;
    margin: 1rem auto 0;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 30px;
}

.form-style .account-register a:hover {
    color: #fff !important;
    background-color: #285f99;
}

.form-style span.require{
    margin-left: 0.5rem;
    padding: 0 0 0 10px;
    color: #f56c75;
    font-size: .75rem;
    border-left: 1px solid #999;
}

.form-style .privacy-policy-style{
    margin-block: 2.5rem;
    text-align: center;
    border: 1px solid #9c9c9c;
}

.form-style .privacy-policy-style .privacy-policy-link{
    padding: 1.5rem;
    background-color: #fff;
}

.form-style .privacy-policy-style .privacy-policy-check{
    padding: 1.5rem;
    background-color: #ecf5f9;
}

.form-style button{
    margin: 0 auto;
    cursor: pointer;
    height: 60px;
    line-height: 60px;
    min-width: 240px;
    padding: 0 20px;
    font-size: 100%;
    color: #fff;
    text-align: center;
    border-radius: 30px;
}

.form-style button.return {
    display: block;
    margin: 0.625rem 0;
    padding: 0.625rem;
    color: #fff;
    background-color: #35cc83;
    border-radius: 5px;
    line-height: 1.75;
    transition: background-color 0.3s;
}

.form-style button.return:hover{
    background-color: #2b9f67;
}

.form-style.maxw-540{
    width: 100%;
    max-width: 540px;
}

.form-style.maxw-640{
    width: 100%;
    max-width: 640px;
}

.form-style .btn-change button{
    height: auto;
    line-height: 45px;
    color: white;
    font-size: 0.9375rem;
    background-color: #6c757d;
    border-radius: 4px;
}

.form-style .input-change input{
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-style .input-change input:disabled{
    background-color: #dcdcdc;
}

@media only screen and (max-width: 767px) {
    .register-page{
        width: 90%;
        margin-inline: auto;
    }
    .form-style .logo img{
        max-width: 180px;
    }
    .form-style .privacy-policy-style .privacy-policy-link,
    .form-style .privacy-policy-style .privacy-policy-check{
        padding: 1rem;
        font-size: 0.875rem;
        letter-spacing: -1px;
    }
}

/* login */
.login-box{
    padding: 30px 60px 55px 60px;
    margin-bottom: 2rem;
    color: #777;
    border-radius: 10px;
}

.login-box h1{
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.login-box .input-group{
    margin-bottom: 15px;
}

.login-box input{
    padding: 15px 20px;
}

.login-page-form .register-text{
    color: #000;
    text-align: center;
}

.login-page-form .register-text h2 {
    margin-bottom: 0.5rem;
    color: #444;
}

@media only screen and (max-width: 767px) {
    .login-page{
        width: 90%;
        margin-inline: auto;
        padding: 3rem 0;
    }
    .login-box{
        padding: 30px 35px 55px 35px;
    }
    .login-page .account-register h2{
        font-size: 1.25rem;
    }
}

/* register */
.register-page-form{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding-block: 5rem 5rem;
}

.register-page-form .register-box{
    padding: 5rem;
}

.register-page-form h1{
    margin-bottom: 3rem;
    padding: 1rem 0;
    font-size: 2rem;
    border-top: 1px solid #8e8e8e;
    border-bottom: 1px solid #8e8e8e;
}

.register-page-form input[type="submit"]{
    max-width: 480px;
    margin: 0 auto;
}

.register-page.completed .register-box{
    width: 100%;
    text-align: center;
}

.register-page.completed .register-box h1 + p{
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.register-page.completed .register-box a.btn{
    max-width: 250px;
    margin-inline: auto;
    padding: 0.75rem;
}

.register-page.completed .register-box h2{
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.register-page.completed .register-box ol{
    max-width: fit-content;
    margin: 0 auto;
    text-align: left;
    list-style-position: inside;
}

.register-page.completed .register-box ol > li{
    padding-left: 1em;
    text-indent: -1em;
}

@media only screen and (max-width: 767px) {
    .register-page{
        width: 90%;
        margin-inline: auto;
    }
    .register-page-form .register-box{
        padding: 3rem 1.5rem;
    }
    .register-page-form h1{
        font-size: 1.5rem;
        text-align: center;
    }
    .register-page.completed .register-box {
        padding: 3rem 3rem;
    }

}

/* password reset */
.password-reset-box{
    padding: 30px 60px 55px 60px;
    color: #777;
    border-radius: 10px;
}

.password-reset-box h1{
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.password-reset-box input{
    padding: 15px 20px;
    margin: 15px 0;
}

.password-reset-box .captcha-input{
    margin-bottom: 1rem;
}

.password-reset-box .captcha-input .reload{
    margin-left: auto;
}

.password-reset-page-form.new-password .input-group{
    margin-bottom: 1.5rem;
}

.password-reset-completed{
    text-align: center;
}

.password-reset-completed h1{
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.password-reset-completed .btn{
    max-width: fit-content;
    margin: 1.5rem auto 0;
    font-size: 1.125rem;
    padding: 0.75rem 2rem;
}

@media only screen and (max-width: 767px) {
    .password-reset-page{
        width: 90%;
        margin-inline: auto;
        padding: 3rem 0;
    }
    .password-reset-box{
        padding: 30px 35px 55px 35px;
    }
    .password-reset-page table{
        width: 100%;
    }
    .password-reset-page table th,
    .password-reset-page table td{
        display: block;
        width: 100%;
    }
}

/* account */
.account-page{
    height: 100%;
}

.account-page-form h1{
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.account-page-form h2{
    margin-bottom: 1rem;
    font-size: 1.25rem;
    text-align: center;
}

.account-page .account-page-form .account-input{
    max-width: 500px;
    margin: 0 auto 3rem;
}

.account-page-form input,
.account-page-form select.job{
    background-color: #fff;
}

.account-page-form button{
    margin-top: 3rem;
    font-weight: bold;
}

.account-page-form .account-detail{
    margin-bottom: 3rem !important;
}

.account-page-form .account-detail > div.flex-box{
    gap: 25px;
    padding: 1.5rem 1.5rem;
    color: #fff;
    background-color: #004983;
    border: 1px solid #ccc;
}

.account-page-form .account-detail > div.flex-box p{
    font-size: 1.125rem;
}

.account-page-form .account-detail > div.flex-box p > span::before{
    content: ':';
    margin-inline: 0.5rem;
}

.account-page-form .account-bottom{
    padding-top: 3rem;
    border-top: 1px solid #ccc;
}

.account-page-form .account-bottom > div:not(:last-of-type){
    margin-bottom: 1.5rem;
}

.account-page-form .account-bottom p{
    margin-bottom: 0.5rem;
    text-align: center;
}

.account-page-form .account-bottom p > a{
    max-width: 240px;
    padding: 0.5rem 1.5rem;
    margin-right: auto;
    font-weight: bold;
    border-radius: 30px;
}

.account-page-form .account-bottom p > a:hover{
    color: #fff !important;
    background-color: #285f99;
}

.account-page-form .account-bottom a.account{
    background-color: #777;
}

.account-page-form .account-bottom a.account:hover{
    background-color: #444;
}

@media only screen and (max-width: 960px) {
    .account-page-form .account-bottom{
        flex-direction: column;
        justify-content: center;
    }
    .account-page-form .account-bottom > div{
        width: 100%;
    }
}


@media only screen and (max-width: 767px) {
    .account-page-form .account-detail > div.flex-box{
        flex-wrap: wrap;
    }
    .account-page-form .account-detail > div.flex-box p{
        width: 100%;
        text-align: center;
    }
}

/* password-change */
.password-change-page,
.password-change-page-form{
    position: relative;
    height: 100%;
}

.password-change-page-form h1{
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.password-change-page-form h2{
    margin-bottom: 1rem;
    font-size: 1.25rem;
    text-align: center;
}

.password-change-page-form .center-type2{
    /* width: 100%; */
    max-width: fit-content;
}

.password-change-page-form table{
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.password-change-page-form table th{
    text-align: left;
    padding: 0 1rem;
}

.password-change-page-form table td input{
    margin-top: 0;
    background-color: #fff;
}

.password-change-page-form div.input-group{
    margin-bottom: 1.5rem;
}

.password-change-page-form button{
    margin-bottom: 1.5rem;
}

.password-change-page-form a.passwd{
    max-width: 240px;
    padding: 0.5rem 1.5rem;
    margin-right: auto;
    font-weight: bold;
    border-radius: 30px;
    background-color: #777;
}

.password-change-page-form a.passwd:hover{
    color: #fff;
    background-color: #444;
}

.account-page-form .account-bottom p > a:hover{
    /* color: #fff !important; */
    /* background-color: #285f99; */
}

@media only screen and (max-width: 767px) {
    .password-change-page table{
        width: 100%;
    }
    .password-change-page table th,
    .password-change-page table td{
        display: block;
        width: 100%;
    }
    .password-change-page table th{
        padding: 0;
        margin-bottom: 0.5rem;
    }
}

/* account-delete */
.account-delete-page-form h1{
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.account-delete-page-form h1 + p{
    margin-bottom: 2rem !important;
}

.account-delete-page-form p.account-delete-text{
    margin-bottom: 2rem;
    font-size: 130%;
    font-weight: 900;
    color: red;
}

.account-delete-page-form button{
    background-color: red;
    font-weight: 900;
}

.account-delete-page-form p.unsubscribe{
    max-width: 330px;
    margin-top: 2rem;
    margin-inline: auto;
    font-size: 0.75rem;
}


/*******************************
*content
*******************************/
.content{
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    height: 100%;
}

.flex-1{
    flex: 1 1 0;
}

.center-flex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .content{
        width: 90%;
        flex: 0 0 auto;
        margin-inline: auto;
    }
}


/*******************************
*main
*******************************/
main{
    flex: 1 1 0;
    width: 100%;
}

.min-100-h{
    min-height: calc(100vh - 77px);
}

.min-100-f{
    min-height: calc(100vh - 89px);
}

.min-100-hf{
    min-height: calc(100vh - 159px);
}

.content-pb{
    padding-block: 5rem 5rem;
}

.content-pb-b{
    padding-bottom: 5rem;
}

.content:has(> :nth-child(2)) > div:nth-child(n+2){
    padding-bottom: 5rem;
}

.content .page-header{
    position: relative;
    width: 100%;
}

.content .page-header:not(:has(+ .btn-switch)) {
    margin-bottom: 2rem;
}

.content:has(.page-header) > div {
    padding-top: 0;
}

.content .box{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 5rem;
    background-color: #fff;
}

.page-header + .box{
    margin-bottom: 2rem;
}

.page-header + .box.btn-switch + .box{
    margin-bottom: 2rem;
}

.page-header + .box.btn-switch{
    margin-bottom: 0;
}

.content .box h1{
    font-size: 2rem;
}

.content .box h1,
.content .box h2{
    margin-bottom: 2rem;
}

.content .box h1:has(+ p),
.content .box h2:has(+ p) {
    margin-bottom: 1rem;
}

.content .box h1 + p,
.content .box h2 + p{
    margin-bottom: 2rem;
}

.post-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

@media only screen and (max-width: 960px) {
    .content .box{
        padding: 2rem 2rem;
    }
}

@media only screen and (max-width: 767px) {
    .min-100-h{
        min-height: auto;
    }
    .min-100-f{
        min-height: auto;
    }
    .min-100-hf{
        min-height: auto;
    }
    .content .box{
        padding: 3rem 1.5rem;
    }
    .content .box h1{
        font-size: 1.5rem;
    }
    .content .box h2{
        font-size: 1.25rem;
    }
}

@media only screen and (max-width: 480px) {
    .content .box{
        padding: 2.5rem 1.5rem;
    }
}

/* 準備中 */
/* 削除予定 */
.junbi-text{
    width: fit-content;
    margin: 3rem auto 0;
    padding: 2.5rem 5rem;
    color: #fff;
    background-color: #10263e;
    text-align: center;
}

.junbi-text .icon{
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #f45b69;
    text-align: center;
}

.junbi-text .icon > p{
    font-size: 1.5rem;
    color: #fff;
}

.junbi-text p > span{
    display: block;
    font-size: 1.125rem;
}
/* 削除予定 */

/* service */
.content > .service-list .service-link{
    max-width: 960px;
    width: 88.8888%;
    margin-inline: auto;
}

.content > .service-list .service-link-box{
    position: relative;
    margin-bottom: 1.5rem;
}

.content > .service-list .service-link-box.junbi::before{
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 35%);
    z-index: 10;
}

.content > .service-list .service-link-box.junbi::after{
    content: 'Coming Soon';
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    display: block;
    width: 100%;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffffb5;
    text-align: center;
    z-index: 15;
}

.content > .service-list .service-link-box > a{
    align-items: stretch;
    height: 100%;
}

.content > .service-list .service-link-box > a .img{
    width: 35%;
    line-height: 0;
}

.content > .service-list .service-link-box > a .img img{
    width: 100%; /* 必要なら調整 */
    height: 100%;
    object-fit: cover; /* 画像を枠内に収める */
}
.content > .service-list .service-link-box > a .text{
    width: 65%;
}

.content > .service-list .service-link-box > a .text p,
.content > .service-list .service-link-box > a .text p > a{
    height: 100%;
}

.content > .service-list .service-link-box > a .text p{
    padding-inline: 3rem;
    align-items: normal;
    text-align: left;
}

.content > .service-list a{
    position: relative;
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    /* align-items: center; */
    /* padding: 1.5rem; */
    color: #fff;
    /* color: rgb(59, 63, 71); */
    /* color: #fff; */
    font-size: 18px !important;
    font-weight: 700;
    /* border: 1px solid rgb(228, 234, 241); */
    /* border-radius: 4px; */
    /* background-color: rgb(249, 251, 253); */
}

.content > .service-list a::after{
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0, -50%);
}

.content > .service-list .junbi a{
    pointer-events: none;
}

.content > .service-list .color-school{
    background-color: #50afdb;
}

.content > .service-list .color-navi{
    background-color: #5185db;
}

.content > .service-list .color-partner{
    background-color: #5057db;
}

.content > .service-list .color-growth{
    background-color: #7751dc;
}

.content > .service-list .service-link-box p span{
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.content > .service-list .service-link-box p span:nth-child(2){
    font-size: 2.5rem;
    line-height: 1.0;
}

@media only screen and (max-width: 960px){
    .content > .service-list div.flex-box > div {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .content > .service-list .service-link-box.junbi::after{
        font-size: 2rem;
    }
    .content > .service-list div.flex-box p span{
        font-size: 0.75rem;
    }
    .content > .service-list div.flex-box p span:nth-child(2){
        font-size: 1rem;
    }
}

@media only screen and (max-width: 640px) {
    .content > .service-list .service-link-box p span:nth-child(2){
        font-size: 1.25rem;
    }
}

@media only screen and (max-width: 480px) {
    .content > .service-list .service-link{
        width: 100%;
    }
    .content > .service-list a{
        width: 100%;
    }
    .content > .service-list .service-link-box{
        margin-bottom: 1rem;
    }
    .content > .service-list .service-link-box > a .img{
        width: 30%;
    }
    .content > .service-list .service-link-box > a .text{
        width: 70%;
        padding-block: 1rem;
    }
    .content > .service-list .service-link-box p span{
        margin-bottom: 0rem;
        font-size: 0.875rem;
    }
    .content > .service-list .service-link-box p span:nth-child(2){
        margin-bottom: 0;
        font-size: 1.25rem;
    }
    .content > .service-list a::after{
        /* content: none; */
    }
    .content > .service-list .service-link-box > a .text p{
        justify-content: baseline;
        align-items: baseline;
        text-align: left;
        padding: 0 1rem;
    }
}

/* news */
.content .news-list ul li{
    position: relative;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #dce3f5;
}

.content .news-list ul li:first-child{
    border-top: 1px solid #dce3f5;
}

.content .news-list ul li > div.flex-box{
    gap: 20px;
}

/* 資料ダウンロード */
.file-dw-list h2{
    margin-bottom: 1rem;
}

.file-dw-list h2 + p{
    margin-bottom: 2rem;
}

.file-dw-list ul > li > a > span.icon-pdf{
    display: inline-block;
    line-height: 1.0;
    vertical-align: middle;
}

/* お問い合わせ */
.contact p.text-mailaddress{
    margin-bottom: 1rem;
    max-width: fit-content;
    /* color: #00578b; */
    background-color: #ebebeb;
}

.contact p.text-mailaddress > a{
    display: block;
    padding: 1.5rem 3rem;
}

.contact p.text-mailaddress .text{
    font-size: 1.25rem;
    font-weight: 700;
    vertical-align: middle;
}

.contact p.text-spam{
    text-indent: -1rem;
    padding-left: 1rem;
}

@media only screen and (max-width: 767px) {
    .contact p.text-mailaddress{
        max-width: 100%;
    }
    .contact p.text-mailaddress > a{
        padding: 1.5rem 1.5rem;
        text-align: center;
    }
}

/* サービス利用 */
.content .service-register-form .btn-switch{
    padding-inline: 0;
    padding-block: 2rem;
    background-color: transparent;
}

.content .service-register-form .btn-switch > div.flex-box p:first-child{
    min-width: 240px;
    margin-right: 1.5rem;
    padding: 0.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
}

.content .service-register-form .btn-switch p.text{
    margin-top: 1rem;
}

.content .service-register-form .request{
    gap: 20px;
}

.content .service-register-form .request > div{
    width: calc(50% - 10px);
}

.content .service-register-form .request p{
    margin-bottom: 1rem;
    text-align: center;
}

.content .service-register-form .request a.btn-request{
    position: relative;
    margin-top: 0;
    max-width: 480px;
    font-size: 1.5rem;
    font-weight: 900;
}

.content .service-register-form .request a.btn-request::after{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
}

.content .service-register-form .request a.btn-request > span{
    display: block;
}

.content .partner-page span.member-text{
    display: block;
    font-size: 0.875rem;
}

.content .service-register-form .request > div:nth-child(1) a{
    background-color: #52935a;
}

.content .service-register-form .request > div:nth-child(1) a:hover{
    color: #fff;
    background-color: #417348;
}

.content .service-register-form .request > div:nth-child(2) a{
    background-color: #fb9355;
}

.content .service-register-form .request > div:nth-child(2) a:hover{
    color: #fff;
    background-color: #d98451;
}


.service-register-form .privacy-policy{
    margin-block: 1rem 2rem;
}

.service-register-form .privacy-policy label{
    margin-left: 0.5rem;
}

.service-register-form input[type=submit]{
    max-width: 240px;
    padding-inline: 3rem;
    margin-top: 2rem;
    margin-inline: auto;
}

.service-register-form.confirm .button-group{
    margin-top: 5rem;
}

.service-register-form.confirm .button-group > *{
    margin: 0 !important;
}

.service-register-form.enginner.confirm .input-box,
.service-register-form.company.confirm .input-box{
    max-width: fit-content;
}

.service-register-form.confirm .input-group > p{
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.service-register-form.confirm .input-group > p > strong{
    max-width: fit-content;
}

.navi-page.service-register-form.confirm .input-group > p > strong{
    width: 40%;
}

.service-register-form.confirm .input-group > p > strong::after{
    content: '：';
}

.service-register-form.confirm .input-group > p > span{
    max-width: fit-content;
}

.navi-page.service-register-form.confirm .input-group > p > span{
    width: 60%;
}

.service-register-form.completed .complete-box p:not(:last-of-type){
    margin-bottom: 2rem;
}

.service-register-form.completed .complete-box .btn{
    max-width: 300px;
    padding: 1rem;
    margin: 3rem auto;
    font-size: 1rem;
    font-weight: 900;
}

@media only screen and (max-width: 960px){
    .content .service-register-form .btn-switch{
        padding-inline: 2rem;
    }
    .content .service-register-form .btn-switch > div.flex-box p:first-child{
        min-width: 180px;
        margin-right: 0.75rem;
        padding-inline: 1rem;
        font-size: 1rem;
    }
    .content .service-register-form .request > div{
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .content .service-register-form .page-header{
        width: 100vw;
        margin: 0 calc(50% - 50vw);
    }
    .content .service-register-form .btn-switch{
        padding-inline: 0;
    }
    .content .service-register-form .request a{
        margin-top: 0;
    }
    .content .service-register-form .btn-switch > div.flex-box{
        flex-wrap: wrap;
    }
    .content .service-register-form .btn-switch > div.flex-box p:first-child{
        margin-bottom: 0.5rem;
    }
    .service-register-form.confirm .button-group{
        margin-top: 2.5rem;
        justify-content: center;
    }
    .service-register-form.confirm button.return{
        height: 48px;
        margin-bottom: 1rem !important;
    }
}

.page-header .page-header_overlay{
    height: 40vh;
}

.page-header .service-img{
    position: absolute;
    width: 100%;
}

.page-header .service-img::before{
    content: '';
    content: none;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
}

.page-header .service-img  > .sp{
    display: none;
}

.page-header .service-img img{
    object-fit: cover;
    height: 40vh;
}

.page-header.partner .service-img img{
    object-position: 0 -40px;
}

.page-header .service-text{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.page-header .service-text_box{
    width: fit-content;
    margin: 0 auto 2.5rem;
}

.page-header.partner .service-text_box{
    margin-bottom: 0;
}

.page-header.partner .service-text_box{
    padding: 2.5rem;
    background-color: rgb(115 113 113 / 50%);
}

.page-header .service-text_box h1{
    padding: 0 2.5rem;
    margin-inline: auto;
}

.page-header .service-text_box h1{
    max-width: 480px;
}

.page-header .service-text_box p{
    margin-bottom: 2rem;
}

.page-header .service-text_box p > span{
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
}

.page-header.partner .service-text_box p > span{
    font-size: 1.125rem;
}

@media only screen and (max-width: 1400px) {
    .page-header.partner .service-img img{
        object-position: 0px 0px;
    }
}

@media only screen and (max-width: 960x){
    .page-header.partner .service-img img{
        object-position: center;
    }
}

@media only screen and (max-width: 767px){
    .content .service-register-form .page-header{
        margin-bottom: 2rem;
    }
    .page-header .p-page-header_overlay{
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .service-img{
        position: relative;
    }
    .service-img > .left{
        display: none;
    }
    .service-img > .right{
        display: none;
    }
    .service-img > .pc{
        display: none;
    }
    .page-header .service-img > .sp{
        display: block;
    }
    .page-header .service-text{
        width: 90%;
        margin-inline: auto;
    }
    .page-header.partner .service-text{
        width: 90%;
        margin-inline: auto;
    }
    .page-header .service-text_box p{
        line-height: 1.0;
    }
    .page-header .service-text_box p > span{
        font-size: 1rem;
    }
    .page-header .service-text_box h1{
        padding-inline: 0;
    }
}

@media only screen and (max-width: 480px){
    .page-header .page-header_overlay{
        height: auto;
    }
    .page-header .service-img{
        position: relative;
    }
    .page-header .service-img img{
        height: auto;
    }
    .page-header .service-text{
        padding-block: 1.25rem;
    }
    .page-header .service-text_box{
        margin-bottom: 0;
    }
    .page-header.partner .service-text_box{
        margin-bottom: 0;
        padding: 0;
        background-color: transparent;
    }
    .page-header .service-text_box p{
        margin-bottom: 1rem;
    }
    .page-header.navi .service-text_box h1{
        max-width: 260px;
    }
}

/* partner */
.content .partner-page .page-header{
    background-color: #5057db;
}

.partner-page.service-register-form.engineer form .input-box{
    max-width: fit-content;
    margin-inline: auto;
}

.partner-page.service-register-form form .input-box{
    max-width: 500px;
    margin-inline: auto;
}

.partner-page.service-register-form.confirm .input-box{
    width: fit-content;
}

/* navi */
.content .navi-page .page-header{
    background-color: #5185db;
}

.navi-page.service-register-form form .input-box{
    max-width: 500px;
    margin-inline: auto;
}

.navi-page.service-register-form form .input-box .company-address label:first-of-type{
    /* display: block; */
    /* margin-bottom: 1rem; */
}

.navi-page.service-register-form form .input-box .company-address label:nth-of-type(2){
    margin-top: 0.5rem;
}

.navi-page.service-register-form form .input-box .company-address label:not(:first-of-type){
    display: block;
    width: 120px;
}

.navi-page.service-register-form form .input-box .company-address input{
    display: inline-block;
    max-width: 500px;
}

.navi-page.service-register-form form .input-box .company-address input#postal_code{
    display: block;
    width: 120px;
}

.navi-page.service-register-form form .input-box .company-address input:last-of-type{
    margin-bottom: 0;
}

.navi-page.service-register-form form .input-box .company-address select{
    min-width: 180px;
}

/* banner */
.banner-ai > a{
    display: block;
    max-width: 960px;
    width: 88.8888%;
    margin-inline: auto;
}


/*******************************
*table
*******************************/
.table-w100{width: 100%;}
.table-border-co{border-collapse: collapse;}
.table-bgcolor{background-color: #d9d9d9;}
.table-td-bgcolor1{background-color: #fff;}
table.table-border{border: 1px solid #d9d9d9;}

.table-w100 thead th{
    padding: 0.5rem;
    font-size: 0.875rem;
}

.table-w100 tbody td{
    padding: 0.5rem;
    font-size: 0.75rem;
}

.table-border td:not(:last-of-type){
    border-right: 2px solid #d9d9d9;
}

.table-border tbody tr:not(:last-of-type) td{
    border-bottom: 2px solid #d9d9d9;
}
