@charset "UTF-8";

/*共通部分
----------------------------------------*/
html{
    font-size: 100%;
}
body {
    font-family: "BIZ UDGothic";
    background:#ffff;
}
img{
    max-width:100%;
}
a {
    text-decoration: none;
}
p{
    font-family: "Hiragino Mincho ProN";
    font-size: 24px;
    text-align: center;
}
/*ヘッター
---------------------------------------*/
header{
    width: 100%;
    height: 90px;
    background: #dbdefb;
    border-bottom: 2px solid #0d0f3f;
}
.header-inner{
    width: 1000px;      /* ガイド幅 */
    height: 90px;
    margin: 0 auto;     /* 中央揃え */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav  ul {
    line-height: 1.2;
    display: flex;            /* 横並び */
    list-style: none;
    gap: 40px;                /* メニュー間の余白 */
    margin: 0;
    padding: 0;
}
nav a{
    font-family:"BIZ UDGothic";
    font-size: 25px;
    color: rgb(13, 15, 63);
    text-decoration: none;
}
/*メイン
---------------------------------------*/
.mv img {
    width: 100%;
    display: block;
}
/*プロフィール*/
.about-inner {
    width: 500px;
    margin: 0 auto;   /* 中央揃え */
    text-align: center;
}
aside h2{
    font-family:"BIZ UDGothic";
    font-size: 60px;
    color: rgb(13, 15, 63);
}
/*作品ページ*/
.works-list {
    width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 400px);
    justify-content: space-between;
    row-gap: 40px;
}
.works-item {
    text-align: center;
}
.works-item img {
    width: 400px;
    height: 250px;
    display: block;
}
section h2{
    font-family:"BIZ UDGothic";
    font-size: 60px;
    color: rgb(13, 15, 63);
    text-align: center;
}
.works-item h3 {
    font-family: "Hiragino Mincho ProN";
    font-size: 24px;
    color: rgb(13, 15, 63);
}
/*個人制作*/
.personal-list {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.personal-list img {
    width: 300px;
    height: auto;
}
/*お問い合わせ*/
#contact {
    text-align: center;
    padding: 80px 0;
}
/*ご依頼ページ
--------------------------------------------------*/
form {
    width: 600px;
    margin: 0 auto;
}
form p {
    text-align: center;
    font-size: 20px;
}
input[type="text"] {
     width: 300px;
    padding: 10px;
    font-size: 16px;
    display: block;
    margin: 0 auto;
}
.checkbox-group {
    text-align: center;
}

.checkbox-group label {
    display: block;
    margin-bottom: 10px;
}
textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    font-size: 16px;
    resize: vertical;
}
input[type="submit"] {
    display: block;
    margin: 30px auto;
}

/*フッター
----------------------------------------*/
footer{
    width: 100%;
    height: 260px;
    background: #dbdefb;
    border-top: 2px solid #0d0f3f;
    text-align: center;
}