@charset "utf-8";

/* indexここから↓ */
/* 基本設定 */
body {
    margin: 0;
    padding: 0;
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 100%;
}

/* 背景 */
#main {
    width: auto;
    position: absolute;
    left: 255px;
    border-left: solid 1px;
}

/* 見出し */
nav {
    width: 250px;
    height: 100vh;
    position: fixed;
    float: left;
    background-color: #F0F0FF;
    border-right: solid 5px rgb(188, 181, 181);
}

nav ul {
    list-style-type: none;
    padding-left: 18px;
}

nav ul li {
    padding: 20px 0;
}

#nav_top {
    margin-top: 52px;
}

/* navカラー●ここから↓ */
.symbol_skin {
    color: #FFCCCC;
}

.symbol_green {
    color: #00FF00;
}

.symbol_lightblue {
    color: #33FFFF;
}

.symbol_blue {
    color: #0099FF;
}

.symbol_darkblue {
    color: #0000FF;
}

/* navカラー●ここまで↑ */

/* index_mainここから↓ */
h1 {
    margin-top: 50px;
    text-align: center;
}

/* プロフィールここから↓ */
#profile {
    width: 350px;
    /*写真とほぼ同じな為*/
    padding-top: 20px;
    float: left;
}

#profile_image {
    display: block;
    margin: 0 auto;
}

#profile ul {
    list-style: none;
    padding: 10px 0;
    margin-top: 0;
    margin-left: 15px;
}

#profile ul li:last-child {
    margin-top: 15px;
}

#profile ul li {
    margin: 5px auto;
}

/* プロフィールここまで↑ */

/* 作品情報ここから↓ */
#index_contents {
    width: 845px;
    margin-left: 5px;
    float: right;
}

h4,
.image_right {
    display: inline-block;
    vertical-align: middle;
}


#contents_top {
    font-weight: bold;
    text-align: center;
}

.concept_box h3 {
    margin: 10px 0 0 0;
    padding-top: 10px;
    text-align: left;
    border-top: solid 1px;
}

h4 {
    width: 300px;
    margin: 0;
}

.main_contents {
    padding: 10px 0 30px 60px;
}

.main_bottom {
    margin-bottom: 50px;
}


.image_right {
    float: right;
    padding-left: 5px;
}

/* 作品情報ここまで↑ */
/* index_mainここまで↑ */

/* スキルここから↓ */
#contents {
    padding-left: 5px;
}

dl {
    margin: 0;
}

dt {
    width: 100px;
    background-color: #bce2e8;
    font-weight: bold;
    text-align: center;
}

.pagetop {
    width: 150px;
    height: 28px;
    background-color: #bce2e8;
    text-align: center;
    position: fixed;
    bottom: 5px;
    right: 15px;

    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.pagetop.on {
    transform: translateY(0);
    opacity: 1.0;
}

/* スキルここまで↑ */

/* 作品紹介ここから↓ */
.image_box {
    width: 800px;
    height: 400px;
    margin: 0 auto;
    border: solid 3px gray;
}

.slide,
.thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
}


.thumbnail img {
    height: 100px;
    width: 200px;
    border: solid 1px;
}

#prev {
    width: 30px;
    height: 30px;
    border-bottom: 2px solid black;
    border-left: 2px solid black;
    cursor: pointer;
    transform: rotate(45deg);
}

#next {
    width: 30px;
    height: 30px;
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    cursor: pointer;
    transform: rotate(-45deg);
}

.information {
    height: 200px;
    margin-left: 5px;
    float: right;
}

.information img {
    border: solid 3px gray;
}

.information p {
    text-align: center;
}

/* 作品紹介ここまで↑ */

/* ペットの紹介ここから↓ */
#page-pet {
    position: absolute;
    left: 255px;
    width: 1250px;
    height: 100vh;
    border-left: solid 1px;

    background-image: url(../images/pet_rogo.png);
    background-position: 0 0;
}

#page-pet {
    animation: scrollbackgroundX 40s linear infinite;
}

@keyframes scrollbackgroundX {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* ペットの紹介ここまで↑ */

/* お問い合わせここから↓ */
#page-contact {
    position: absolute;
    left: 255px;
    width: 1250px;
    height: 100vh;
    border-left: solid 1px;
    background-image: url(../images/question.png);
}

#page-contact form {
    text-align: center;
}

#page-contact form p {
    margin-bottom: 30px;
}

#page-contact form p:nth-child(odd) {
    width: 200px;
    background-color: #bce2e8;
    font-weight: bold;
    margin: 0 auto;
}

#page-contact form p:last-child {
    background-color: initial;
}

.red {
    font-weight: bold;
    color: red;
}

input[type="text"] {
    width: 200px;
}

input[type="email"] {
    width: 300px;
}

textarea {
    resize: none;
    width: 300px;
    height: 115px;
    overflow-y: auto;
}

/* 確認画面 */
#confirm-page {
    height: 100vh;
    background-image: url(../images/question.png);
}

#confirm-page h1 {
    margin-top: 0;
}

#confirm-page p {
    width: 500px;
    margin: 5px auto;
    background-color: #bce2e8;
}

#confirm-page p:last-child {
    text-align: center;
    background-color: initial;
}

/* お問い合わせここまで↑ */