@charset "UTF-8";

* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    color: #757575;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', 'Open Sans', sans-serif;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    /* 文字の太さを変える */
    -moz-osx-font-smoothing: grayscale;
    /* firefoxでの文字の太さを解消 */
}

h1,
h2,
h3,
h4,
h5 {
    padding: 0;
    margin: 0;
}

a {
    color: #757575;
    text-decoration: none;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

input {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

p {
    padding: 0;
    margin: 0;
}

/****************************/
/********** header **********/
/****************************/
header {
    height: 100vh;
}

.header {
    background-color: #76b82a;
    height: 60px;
}

.hd_logo {
    width: 96.32px;
    margin: 10px 0 10px 10px;
}

.keyvisual {
    background-image: url(../img/keyvisual_sp.jpg);
    background-size: cover;
    width: 100%;
    height: 100%;
    padding-bottom: 50vh;
}

.copy {
    position: relative;
    top: -160px;
    background-color: rgba(0, 0, 0, 0.4);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    letter-spacing: 0.5em;
    color: #ffffff;
    margin-left: auto;
    margin-right: 24px;
    padding: 5px;
}

.undl {
    border-right: 3px solid;
    display: inline;
}

.btn_area {
    position: absolute;
    bottom: 10%;
    font-family: 'Noto Sans JP';
    font-weight: 700;
}

.btn_box {
    /* position: absolute; */
    width: 180px;
    height: 60px;
    background-color: #e87f15;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-weight: 700;
}

/****************************/
/********** header **********/
/****************************/
/* bodycopy */
.bodycopy {
    text-align: center;
}

.copy_text {
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 700;
    margin-bottom: 24px;
}

.main_container {
    padding: 24px 36px 48px;
}

/* about */
.title {
    margin: 48px auto 24px;
    font-size: 3.2rem;
    color: #76b82a;
    font-family: 'Noto Sans JP';
    font-weight: 700;
    text-align: center;
}

/* status */
.insert_img {
    margin-bottom: 24px;
}

/* btn */
.btn_ashinaga {
    text-align: center;
}

.btn_btm {
    margin: 48px auto 0;
    display: inline-block;
}

.btn_btm:last-of-type {
    margin-bottom: 48px;
}

/****************************/
/********** footer **********/
/****************************/
.footer {
    background-color: #76b82a;
    text-align: center;
    padding-bottom: 24px;
}

.logo_r_img {
    width: 146px;
    margin: auto;
    padding: 24px 0 24px;
}

.sns_icons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 24px;
}

.sns_icon {
    width: 48px;
}

.fab {
    font-size: 4.8rem;
}

.fa-facebook-square {
    color: #3B5998;
}

.fa-twitter-square {
    color: #1DA1F2;
}

.fa-instagram {
    color: #262626;
}

small {
    font-size: 1rem;
    color: #ffffff;
    padding-bottom: 24px;
}

/*---------------------- PC query ----------------------*/
@media screen and (min-width:769px) {
    .keyvisual {
        background-image: url(../img/keyvisual.jpg);
        padding-bottom: 90vh;
    }

    .copy {
        top: -450px;
        margin-right: 48px;
    }

    .slider {
        width: 40%;
        margin: auto;
    }

    .bodycopy {
        text-align: center;
    }

    .main_container {
        max-width: 800px;
        margin: auto;
    }
}