@charset "utf-8";
/* ===========================================
 * common
=========================================== */
.sp {
    display: none;
}
body {
    color: #FFF;
    width: 100%;
    background: linear-gradient(45deg, #EE82EE, #9999FF, #5588CC, #0099CC);
    background-size: 200% 200%;
    background-repeat: no-repeat;
    animation: bgchange 12s ease infinite;
}
@keyframes bgchange {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
#particles-js {
    position: fixed;
    /*描画固定*/
    z-index: -1;
    /*描画を一番下に*/
    width: 100%;
    height: 100%;
}
#wrapper {
    position: relative;
    /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
    z-index: 1;
    /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    width: 100%;
    height: 100%;
}
h1 {
    color: #000;
    font-size: 4.8rem;
    text-align: center;
    letter-spacing: .05em;
}
h1:first-letter {
    font-size: 120%;
    color: #B272F8;
}
h2 {
    width: 100%;
    font-size: 3rem;
    text-align: center;
    letter-spacing: .1em;
    text-shadow: -4px 3px 0 #9999FF, -8px 6px 0 #000;
    padding-top: 40px;
    padding-bottom: 40px;
}
h3 {
    font-size: 2rem;
    text-align: center;
    letter-spacing: .1em;
    text-shadow: -3px 2px 0 #000;
    padding-top: 30px;
    padding-bottom: 30px;
}
h4 {
    font-size: 1.2rem;
    text-shadow: 1px 2px 3px #000;
    font-weight: bold;
    padding-bottom: 20px;
}
/* hover en to ja */
.ja {
    display: none;
}
nav li a:hover .ja {
    display: block;
}
nav li:hover a {
    opacity: 1;
}
nav li a:hover .en {
    display: none;
}
h2:hover .ja {
    display: block;
}
h2:hover a {
    opacity: 1;
}
h2:hover .en {
    display: none;
}
dl {
    font-size: 1rem;
    padding: 20px;
}
dt {
    margin-bottom: 10px;
}
dt::after {
    content: ":";
    color: #FFF;
}
dd {
    padding-bottom: 10px;
    margin-bottom: 20px;
}
/*====== header ============*/
header {
    width: 100%;
    height: 200px;
}
/*===== hambergerMenu-Start ===========*/
#gNavi {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    left: -120%;
    width: 30%;
    height: 100vh;
    /*ナビの高さ*/
    background: #000;
    /*動き*/
    transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#gNavi.panelactive {
    left: 0;
}
/*ナビゲーションの縦スクロール*/
#gNavi.panelactive #gNavi-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#gNavi ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*リストのレイアウト設定*/
#gNavi li {
    list-style: none;
    text-align: center;
}
#gNavi li a {
    color: #FFF;
    font-size: 48px;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}
#hambergerMenu {
    position: fixed;
    background: #000;
    z-index: 1000;
    /*ボタンを最前面に*/
    top: 30px;
    left: 50px;
    cursor: pointer;
    width: 100px;
    height: 100px;
}
/*×に変化*/
#hambergerMenu span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 12px;
    height: 8px;
    border-radius: 2px;
    background-color: #FFF;
    width: 74%;
}
#hambergerMenu span:nth-of-type(1) {
    top: 15px;
}
#hambergerMenu span:nth-of-type(2) {
    top: 35px;
}
#hambergerMenu span:nth-of-type(3) {
    top: 55px;
}
/* Menuの表示 */
#hambergerMenu span:nth-of-type(3)::after {
    content: "Menu";
    /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 16px;
    left: 6px;
    font-size: 20px;
    text-transform: uppercase;
}
/* after hambegerMenu push */
#hambergerMenu.active span:nth-of-type(1) {
    top: 32px;
    left: 12px;
    transform: translateY(6px) rotate(-45deg);
    width: 74%;
}
#hambergerMenu.active span:nth-of-type(2) {
    opacity: 0;
}
#hambergerMenu.active span:nth-of-type(3) {
    top: 44px;
    left: 12px;
    transform: translateY(-6px) rotate(45deg);
    width: 74%;
}
/* Closeの表示 */
#hambergerMenu.active span:nth-of-type(3)::after {
    content: "Close";
    /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 20px;
    left: 36px;
}
/*========= hambergerMenu-End ===============*/
/* mainLogo */
#mainLogo {
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: center;
    margin-left: 40px;
    padding-top: 20px;
}
/*====== main ============*/
#mainTitle {
    height: 800px;
    margin: 20px auto;
    width: 100%;
    background-image: url("../images/wakusei1.svg");
    background-repeat: no-repeat;
    background-size: 80%;
    animation: bg_main 10s infinite linear;
}
@keyframes bg_main {
    0% {
        background-position: 200% 0;
    }
    50% {
        background-position: 200% 20%;
    }
    100% {
        background-position: 200% 0;
    }
}
#mainTitle h1 {
    color: #252424;
    padding-top: 120px;
    text-shadow: 3px 2px 0 #FFFFF0;
}
#mainTitle p {
    font-size: 3rem;
    text-align: center;
}
/*==== WORKS ==========*/
#works {
    margin: 0 200px;
}
#pastaregion, #mineralbuyer, #banner div {
    background: rgba(182, 185, 184, 0.5);
}
#website img {
    width: 100%;
    height: auto;
    text-align: center;
}
#website h4 {
    font-size: 48px;
    text-align: center;
    margin-top: 40px;
}
details {
    transition: .5s;
}
details dl {
    margin-top: 5vh;
    margin-bottom: 10vh;
}
.close {
    display: none;
}
details[open] .close {
    display: block;
}
details[open] .moreDetail {
    display: none;
}
.detailButton {
    width: 160px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    margin: 0 auto;
    height: 3rem;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.detailButton:hover {
    background-position: 80% 20%;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.detailButton:focus {
    outline: none;
}
.detailButton.detailOpen {
    background-image: linear-gradient(90deg, #EE82EE, #9999FF, #5588CC, #0099CC);
    box-shadow: 2px 3px 4px 0 rgba(0, 0, 0, 0.17);
}
.detailButton span {
    text-align: center;
    margin: 0 auto;
}
summary::-webkit-details-marker {
    display: none;
}
/*=== banner =========*/
#banner {
    margin: 20px 0 0 0;
}
#banner div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#banner ul {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 40px;
}
#banner h4 {
    padding-top: 20px;
    margin-left: 7%;
}
#banner img {
    padding-top: 20px;
    padding-left: 20px;
}
#coupon h4 {
    padding-left: 50px;
}
#coupon dd {
    padding-left: 50px;
}
#coupon dt {
    padding-left: 50px;
}
/*==== SKILLS ==========*/
#skills {
    margin: 60px auto 80px auto;
    width: 1000px;
    text-align: center;
}
table {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
th {
    padding-top: 80px;
}
td {
    color: #FFF;
    padding-top: 20px;
    padding-left: 50px;
}
#skills span {
    padding-right: 20px;
}
.name {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-shadow: -3px 2px 0 #000;
}
.star {
    color: #ffb906;
    font-size: 40px;
    padding-left: 10px;
}
/*==== PROFILE ==========*/
#profile {
    margin: 80px auto 40px auto;
}
#profile h3::after {
    content: "Makino Ryosuke";
    font-size: 0.9rem;
    margin-left: 3rem;
    color: #FFF;
}
#profile h4 {
    text-align: center;
}
#profile p {
    margin-bottom: 40px;
}
#career {
    display: flex;
    width: 1000px;
    margin: 48px auto 0 auto;
}
#career img {
    height: 100%;
    margin-top: 40px;
}
#name {
    font-size: 30px;
    line-height: 30px;
    text-shadow: 1px 2px 3px #000;
    font-weight: bold;
    margin-bottom: 50px;
}
#name::after {
    content: "Makino Ryosuke";
    font-size: 18px;
    margin-left: 30px;
    color: #CCAEF3;
}
#plofileRight {
    font-size: 18px;
    margin-left: 8vw;
}
/*====== footer ============*/
footer {
    width: 100%;
    height: auto;
    background-color: #252424;
}
#contact div {
    background: linear-gradient(90deg, #EE82EE, #9999FF, #5588CC, #0099CC);
    text-align: center;
    height: 120px;
    width: 600px;
    line-height: 120px;
    font-size: 20px;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    margin-bottom: 20px;
}
#contact img {
    margin-right: 20px;
    margin-bottom: 30px;
}
#copyright {
    text-align: right;
    margin-right: 50px;
}
/*========= Javascript用CSS ===============*/
.fadeIn {
    opacity: 0;
    transform: translate(0, 100px);
    transition: all 1s;
}
.fadeIn.active {
    opacity: 1;
    transform: translate(0, 0);
}
.fadeLeft {
    opacity: 0;
    transform: translateX(-200px);
    transition: all 1s;
}
.fadeLeft.active {
    opacity: 1;
    transform: translateX(0);
}
.fadeRight {
    opacity: 0;
    transform: translateX(200px);
    transition: all 1s;
}
.fadeRight.active {
    opacity: 1;
    transform: translateX(0);
}
/*========= Loading ===============*/
.loader-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #5588CC;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.atom-spinner, .atom-spinner * {
    box-sizing: border-box;
}
.atom-spinner {
    height: 240px;
    width: 240px;
    overflow: hidden;
}
.atom-spinner .spinner-inner {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
}
.atom-spinner .spinner-circle {
    display: block;
    position: absolute;
    color: #FFF;
    font-size: calc(60px * 0.48);
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
}
.atom-spinner .spinner-line {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation-duration: 1s;
    border-left-width: calc(120px / 25);
    border-top-width: calc(120px / 25);
    border-left-color: #FFF;
    border-left-style: solid;
    border-top-style: solid;
    border-top-color: transparent;
}
.atom-spinner .spinner-line:nth-child(1) {
    animation: atom-spinner-animation-1 1s linear infinite;
    transform: rotateZ(120deg) rotateX(66deg) rotateZ(0deg);
}
.atom-spinner .spinner-line:nth-child(2) {
    animation: atom-spinner-animation-2 1s linear infinite;
    transform: rotateZ(240deg) rotateX(66deg) rotateZ(0deg);
}
.atom-spinner .spinner-line:nth-child(3) {
    animation: atom-spinner-animation-3 1s linear infinite;
    transform: rotateZ(360deg) rotateX(66deg) rotateZ(0deg);
}
@keyframes atom-spinner-animation-1 {
    100% {
        transform: rotateZ(120deg) rotateX(66deg) rotateZ(360deg);
    }
}
@keyframes atom-spinner-animation-2 {
    100% {
        transform: rotateZ(240deg) rotateX(66deg) rotateZ(360deg);
    }
}
@keyframes atom-spinner-animation-3 {
    100% {
        transform: rotateZ(360deg) rotateX(66deg) rotateZ(360deg);
    }
}
.newLine {
    width: 100%;
}