@charset "UTF-8";
/*---------------------------------------------------------------
　　　common
---------------------------------------------------------------*/
html {
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 62.5%;
}

/* 比例
html {
font-size: calc(10 / 750 * 100vw);

@include tab {
    font-size: calc(10 / 1600 * 100vw);
}
@include max {
    font-size: 10px;
} }
*/
.forSP {
    display: none;
}
@media screen and (min-width: 768px) {
  .forSP {
        display: block;
  }
}

.forPC {
    display: block;
}
@media screen and (min-width: 768px) {
  .forPC {
        display: none;
  }
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

body {
    background: white;
    margin: 0;
    padding: 0;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
}

#contents {
    width: 100%;
    margin: auto;
    text-align: center;
}

/*---------------------------------------------------------------
　リンクリスト
---------------------------------------------------------------*/
.center {
    width: 90%;
    height: 80vh;
    max-width: 1130px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 768px) {
  .center {
        height: 90vh;
  }
}
.center > div {
    width: 100%;
}
.center .logo {
    width: 50%;
    max-width: 150px;
    margin: auto;
}
.center .txt {
    font-size: 2em;
    text-align: center;
    color: rgba(148, 106, 165, 0.5);
    padding-top: 40px;
}

ul.link_list {
    width: 80%;
    max-width: 400px;
    margin: 40px auto 0;
}
ul.link_list li {
    margin-bottom: 10px;
}
ul.link_list li a {
    display: block;
    background: #946aa5;
    color: white;
    text-align: center;
    line-height: 2;
    border-radius: 50px;
    font-size: 20px;
    transition: all .3s;
    position: relative;
}
ul.link_list li a:hover {
    background: #dea09c;
}
ul.link_list li a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    left: 5%;
    background: url(../img/icon_insta.svg) no-repeat bottom left/cover;
}
ul.link_list li.fb a::before {
    background: url(../img/icon_fb.svg) no-repeat bottom left/cover;
}
ul.link_list li.line a::before {
    background: url(../img/icon_line.svg) no-repeat bottom left/cover;
}
ul.link_list li.hp a::before {
    background: url(../img/icon_web.svg) no-repeat bottom left/cover;
}
ul.link_list li.mail a::before {
    background: url(../img/icon_mail.svg) no-repeat bottom left/cover;
}

/*---------------------------------------------------------------
　　　header
---------------------------------------------------------------*/
header h1 {
    text-align: center;
    font-size: 30px;
    padding: 20px;
}

/*---------------------------------------------------------------
    footer
---------------------------------------------------------------*/
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #946aa5;
    color: white;
    position: relative;
}
footer copyright {
    text-align: center;
}
footer::before {
    content: "";
    display: block;
    width: 80px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 5%;
    background: url(../img/kenban.svg) no-repeat bottom left/cover;
}

/*---------------------------------------------------------------
    common
---------------------------------------------------------------*/
.inner {
    width: 1130px;
    margin: auto;
}

h2 {
    font-size: 28px;
    border-bottom: 1px dotted #333333;
    position: relative;
    padding: 0 0 5px 40px;
    display: inline-block;
    margin: 40px auto;
    font-weight: normal;
}
h2:before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../images/check.svg);
    background-size: contain;
    position: absolute;
    top: 3px;
    left: 0;
}

p {
    text-align: left;
}

/*# sourceMappingURL=styles.css.map */
