@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
2023改訂
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

body {
    /*font-family: 'メイリオ', 'Meiryo', sans-serif;*/
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

/* ★━━━━━━━━━ 親ページとの調整用 ━━━━━━━━★ */
.l_gNav_list>li>a {
    /*上位ナビゲーション*/
    font-size: 1.4rem;
}F

.nav_list>li>a {
    /*下位ナビゲーション*/
    font-size: 1.4rem;
}

.l_header_logo_txt {
    /*社名*/
    font-size: 1.4rem;
}

/* ★━━━━━━━━━━━━ コンテナ ━━━━━━━━━━━━★ */
.container_column {
    /*縦並び*/
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-content: center;
}

.container_columnL {
    /*縦並び*/
    display: flex;
    flex-flow: column wrap;
}

.container_row {
    /*横並び中央揃え*/
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.container_rowL {
    /*横並び左揃え*/
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
}

.container_column>img,
.container_columnL>img,
.container_row>img,
.container_rowL>img {
    height: 200px;
    margin: 12px;
}

.priceLevel>img {
    width: 280px;
    margin: 12px;
}

/* ★━━━━━━━━━━━━ 背景色 ━━━━━━━━━━━━★ */
.bg_gray {
    background-color: #F3F2EF;
}
.bg_white {
    background-color: white;
}
.bg_blue {
    background-color: #E7F3F0;
}

.bg_icegreen {
    background-color: #8BCBC7;
}

/* ★━━━━━━━━━━━━ パディング ━━━━━━━━━━━━★ */
.pa12 {
    padding: 12px;
}
.pa24 {
    padding: 24px;
}

/* ★━━━━━━━━━━━━ マージン ━━━━━━━━━━━━★ */
.ma12 {
    margin: 12px;
}
.ma24 {
    margin: 24px;
}
.ma48 {
    margin: 48px;
}
.ma12-48 {
    margin: 12px 48px;
}

/* ★━━━━━━━━━━━━ 横幅 ━━━━━━━━━━━━★ */
.m-width300 {
    max-width: 300px;
}
.m-width400 {
    width: 400px;
}
.width80per {
    width: 80%;
}
.test {
    border:solid green 1px;
}

/* ★━━━━━━━━━━━━ タグ ━━━━━━━━━━━━★ */

/*h1 {
    font-size: 1.6em;
    font-weight: bold;
}*/
h2 {
    font-size: 1.2em;
    font-weight: bold;
}
p {
    margin-bottom: 0;
}

/* ★━━━━━━━━━━━━ 列揃え ━━━━━━━━━━━━★ */
.center {
    text-align: center;
}

/* ★━━━━━━━━━━━━ 効果 ━━━━━━━━━━━━★ */
.dashed_border_bottom {
    border-bottom: dashed 1px #333;
}
.dashed_border {
    border: dashed 1px #333;
}
.shadow {
    box-shadow: 0 20px 15px -15px hsla(20, 1%, 56%, 0.4);
    border-radius: 8px;
}
.rotate:hover {
    transform:rotate(5deg);
    transition-duration: 0.4s; /*アニメーション時間*/
}
.scale:hover {
    transform: scale(0.98,0.98); /*拡大率 X方向、Y方向*/
    transition-duration: 0.4s; /*アニメーション時間*/
}

/* ★━━━━━━━━━━━━ ヘッダ ━━━━━━━━━━━━★ */
#eL_container {
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    background-size: auto 300px;
    background-position: left bottom;
    background-image: url(illust_topimg.png);
    min-height: 300px;
    background-color: #5BC7CC;
}

@media (max-width: 430px) {
    #eL_container {
        background-image: url(illust_topimg2.png);
        background-size: 100% auto;
        min-height: 260px;
    }
}

.el_item>img {
    margin: 20px 0 0 20px;
    height: 50px;
    width: 173px;
}

@media (max-width: 430px) {
    .el_item>img {
        margin: 20px 0 0 20px;
        width: 30%;
        height: auto;
    }
}

.el_item>h1 {
    margin: 0 20px;
    font-size: clamp(1.2em, 4vw, 1.8em);
    font-weight: 900;
    line-height: 1.4;
}

.el_item>h2 {
    margin: 0px 20px;
    font-size: 1.6em;
    font-weight: normal;
    line-height: 1.4;
}

/* ★━━━━━━━━━━━━ セクションタイトル ━━━━━━━━━━━━★ */
.section_title {
    border-left: solid 5px #333;
    padding-left: 12px;
    margin: 20px 0px;
}

/* ★━━━━━━━━━━━━ 料金表 ━━━━━━━━━━━━★ */
.priceLevel {
    background-color: white;
}

.priceLevel>h1 {
    background-color: #333;
    color: white;
    padding: 12px;
    border-radius: 8px 8px 0px 0px;
    text-align: center;
    font-size: 1.2em;
    font-weight: normal;
}

/* ★━━━━━━━━━━━━ 漫画制作 ━━━━━━━━━━━━★ */
.manga {
    background-color: white;
    transition-duration: 0.4s;
}

.manga>p {
    border-radius: 8px 8px 0px 0px;
    text-align: center;
    margin: 8px 0 0 0;
}
.manga>a {
    border-radius: 0px 0px 8px 8px;
}
.manga>a>img {
    width:92%;
    border-radius: 6px;
}

/* ★━━━━━━━━━━━━ 漫画サンプルページ ━━━━━━━━━━━━★ */
.manga_sample {
    /*縦並び*/
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-content: center;
}

.manga_sample> img {
    width: 90%;
    min-width: 300px;
    max-width: 600px;
    margin: 12px;
}

/* ★━━━━━━━━━━━━ 制作の流れ ━━━━━━━━━━━━★ */
.flow>h1 {
    background-color: white;
    border: 1px solid #333;
    margin: 6px;
    padding: 6px;
    font-size: 1.2em;
    font-weight: normal;
    text-align: center;
    border-radius: 30px;
    width: 300px;
}

.flow>h2 {
    margin: 0;
    padding: 0;
    text-align: center;
    border-bottom: none;
}

/* ★━━━━━━━━━━━━ お問い合わせ ━━━━━━━━━━━━★ */
.inq_box>h2 {
    font-size: 1.3em;
    font-weight: normal;
    padding-top: 12px;
}

.inq_box>h2::before {
    content: "\f1c6";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 100%;
    padding-right: 10px;
}

.inq_title {
    font-size: 1.2em;
    font-weight: bold;
    padding-top: 12px;
}

/* ★━━━━━━━━━━━━ ボタン ━━━━━━━━━━━━★ */

/*　ボタン共通　*/
.btn {
    display: flex;
    justify-content: center;
}
.btn>a,
.btn>a:link,
.btn>a:active,
.btn>a:visited {
    padding: 8px 20px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 900;
}
.btn>a:hover {
    transform: scale(0.97, 0.97);
    transition-duration: 0.3s;
}

/*　ダウンロードボタン　*/
.dl>a,
.dl>a:link,
.dl>a:active,
.dl>a:visited {
    background-color: white;
    color: #333;
    border: solid 2px #333;
    border-radius: 8px;
}
.btn>a:hover {
    background-color: #333;
    color: white;

}
.dl>a::after {
    content: "\f019";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 100%;
    padding-left: 10px;
}

/*　メールボタン　*/
.mail>a,
.mail>a:link,
.mail>a:active,
.mail>a:visited {
    border-radius: 40px;
    background-color: #333;
    font-weight: 300;
    color: white;
}
.mail>a::before {
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 100%;
    padding-right: 8px;
}