@charset "utf-8";
/* CSS Document */

/*========= 共通設定 ===============*/
/* フォント指定 */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(//fonts.googleapis.com/css?family=Josefin+Sans);

body {
    font-family: 'Noto Sans Japanese', Meiryo, "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
    opacity: 0;
}
.fade {
    opacity: 1;
    transition: .5s;
}
h1, h2, h3, h4, p, span, dl, dt, dd {
    color: #000;
    font-weight: bold;
}
p, dl, dt, dd {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 2;
}
a:hover {
    transition: .8s;
}
a:hover img {
    transition: .8s;
}
.content {
    width: 90%;
    max-width: 1300px;
}
.content h3,
.content h3 span {
    font-family: "good-times", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: clamp(3.0rem, 5vw, 6.0rem);
    margin-top: 0;
    line-height: 1.2;
}
.content h4 {
    font-size: clamp(2rem, 5vw, 4.0rem);
    position: relative;
    padding-left: 50px;
}
.content h4:before {
    content: '';
    position: absolute;
    width: 35px;
    height: 3px;
    background: #000;
    top: 50%;
    left: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.flex {
    display: flex;
}

/* header */
header {
    background: #000;
}
header .logo {
    align-items: center;
}
header .logo a:first-of-type {
    padding-right: 20px;
    border-right: 1px solid #fff;
}
header .logo a:last-of-type {
    padding: 0 20px;
}
header > div {
    width: 90%;
    margin: 0 auto;
    padding: 15px 0;
    justify-content: space-between;
    align-items: center;
}
header nav li {
    position: relative;
    margin-right: 25px;
}
header nav li:after {
    content: '/';
    font-size: 1.8rem;
    font-family: "good-times", sans-serif;
    color: #fff;
    position: absolute;
    top: 0;
    right: -18px;
}
header nav li:last-of-type {
    margin-right: 0;
}
header nav li:last-of-type:after {
    content: none;
}
header nav a {
    color: #fff;
    font-family: "good-times", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(1.0rem, 3vw, 1.8rem);
}

/* button */
.area_btn {
    margin: 30px auto;
    justify-content: center;
}
.btn_black {
    background: #000;
    color: #fff!important;
    font-size: clamp(1.3rem, 3vw, 3.0rem);
    font-weight: bold;
    margin: 0 10px;
    padding: 24px;
    box-sizing: border-box;
    width: 400px;
    text-align: center;
    position: relative;
    border: 3px solid #fff;
    filter: drop-shadow(0px 0px 4px #999);
}
.btn_black:hover {
    text-decoration: none;
    opacity: .8;
    transition: .8s;
}
.btn_black.scroll_arrow {
    padding-right: 40px;
}
.btn_black.scroll_arrow:after {
    content: '';
    position: absolute;
    background: url(/sevice_shared/img/top/icn_arrow_w.svg) no-repeat 0 0 / 10px;
    width: 10px;
    height: 20px;
    top: 47%;
    right: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: rotateZ(90deg) translateX(-50%);
}

/* linkエリア */
.area_link {
    justify-content: center;
}
.area_link li {
    position: relative;
    margin-left: 25px;
    margin-bottom: 10px;
}
.area_link li:after {
    position: absolute;
    content: '/';
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    font-weight: bold;
    top: -1px;
    right: -18px;
}
.area_link li:last-of-type:after {
    content: none;
}
.area_link a {
    color: #000;
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    font-weight: bold;
}

/* stepエリア */
.steps {
    justify-content: space-between;
    margin-top: 100px;
    position: relative;
    z-index: 0;
}
.steps > div {
    width: 20%;
    border: 5px solid #000;
    border-radius: 20px;
    position: relative;
    padding: 80px 20px 50px;
    box-sizing: border-box;
    background: #fff;
}
.steps > div h5 {
    font-family: "good-times", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: clamp(1.3rem, 2vw, 2.0rem);;
    background: #000;
    color: #fff;
    width: 130px;
    height: 130px;
    border-radius: 100%;
    text-align: center;
    line-height: 1.1;
    position: absolute;
    top: -5px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.steps > div h5 > span {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.steps > div h5 span.step_number {
    display: block;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: #fff;
}

/* list */
.report_list.flex {
    flex-wrap: wrap;
}

@media (max-width: 999px) {
    header > div {
        flex-wrap: wrap;
        justify-content: center;
    }
    header nav {
        margin-top: 20px;
    }
    .btn_black {
        padding: 15px;
    }
}





