@charset "UTF-8";

/* ==========================================
   Template: Simple Slider!（https://do.gt-gt.org/）
   Copyright: 2020 do.
   利用規約を遵守の上お使いください。二次配布・販売を禁じます。
   ========================================== */
/* ==========================================
  リセットCSS
  基本的には触らないでください
  ========================================== */
ol,
ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
    margin: 0;
    padding: 0;
}

/* ==========================================
  以下、デザインを決める記述です
  #892bbd（リンク色）、lightblue（ホバーしたときの色）
  をそれぞれ好きな色に一括置換するとメインカラーが変わります
   ========================================== */
body {
    background: #fff;
    font-family: "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    padding: 0;
    margin: 0;
}

body#text p {
    line-height: 2em;
}

dl {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

dl dd,
dl dt {
    display: block;
}

.row {
    background: white;
    /* コンテンツの背景色 */
}

a {
    text-decoration: none;
    color: #892bbd;
    -webkit-transition: .2s;
    transition: .2s;
    /* リンクの色 */
}

a:hover {
    color: lightblue;
    /* リンクをホバーすると色が明るくなります */
}

a img:hover {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
    -webkit-transition: .2s;
    transition: .2s;
}

p,
ul,
dl {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 30px;
    margin: 0 0 40px 0;
}

@media screen and (max-width: 767px) {

    p,
    ul,
    dl {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
        margin: 0 0 30px 0;
    }
}

h1,
h2,
h3,
h4 {
    font-family: Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, Noto Sans JP, BIZ UDPGothic, Meiryo, sans-serif;

}

h4 {
    padding-left: 10px;
    margin: 10px 0 10px;
    font-size: 120%;
}

p#menubtn {
    color: #333333;
    margin: 0;
    cursor: pointer;
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 25px;
    position: absolute;
    color: #333333;
    top: 5px;
    right: 10px;
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
    z-index: 99999;
    display: none;
}

@media screen and (max-width: 767px) {
    p#menubtn {
        display: block;
    }
}

.margin-top {
    margin-top: 30px;
}

.margin-bottom {
    margin-bottom: 30px;
}

.center {
    text-align: center;
}

img {
    max-width: 100%;
}

img + img {
    margin-left: 5px;
}

h2 {
    font-size: 190%;
    font-weight: 700;
    margin: 20px 5px;
    color: #892bbd;
    width: 100%;
}

h2:first-letter {
    font-size: 130%;
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 150%;
    }
}

a.btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 30px;
    background: gray;
    color: #ffffff;
    margin: 20px auto;
    -webkit-transition: .2s;
    transition: .2s;
}

a.btn:hover {
    background: #b3b3b3;
    -webkit-transition: .2s;
    transition: .2s;
}

a.btn.white {
    background: #ffffff;
    color: #333333;
}

a.btn.white:hover {
    color: #666666;
    -webkit-transition: .2s;
    transition: .2s;
}

a.btn.black {
    background: #333333;
}

a.btn.black:hover {
    background: #595959;
    -webkit-transition: .2s;
    transition: .2s;
}

a.btn.pink {
    background: #fa3c72;
}

a.btn.pink:hover {
    background: #fc87a8;
    -webkit-transition: .2s;
    transition: .2s;
    color: #ffffff;
}

a.btn.blue {
    background: #4169e1;
}

a.btn.blue:hover {
    background: #839deb;
    -webkit-transition: .2s;
    transition: .2s;
    color: #ffffff;
}

hr {
    height: 2px;
    background-color: #892bbd;
    width: 100px;
    border: none;
    margin: 20px auto;
}

.row > h2 {
    padding-left: 15px;
    padding-right: 15px;
}

h3 {
    font-weight: normal;
    font-size: 130%;
    display: block;
    margin: 30px 0 15px 0;
    border-left: 4px solid;
    padding: 0 0 0 15px;
}

.swiper-container {
    width: 100%;
    height: 80vh;
    background-color: #f7f7f7;
}

@media screen and (max-width: 991px) {
    .swiper-container {
        height: 400px;
    }
}

@media screen and (max-width: 767px) {
    .swiper-container {
        height: 300px;
    }
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    position: relative;
    z-index: 1;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.swiper-slide .text {
    background: transparent;
    position: absolute;
    z-index: 100;
    top: 30%;
}

@media screen and (max-width: 767px) {
    .swiper-slide .text {
        top: 13%;
    }
}

.swiper-slide .text p {
    padding: 0;
}

.swiper-slide .text.center {
    text-align: center;
    left: 0;
    right: 0;
}

.swiper-slide .text.left {
    text-align: left;
    left: 20%;
}

@media screen and (max-width: 991px) {
    .swiper-slide .text.left {
        left: 10%;
    }
}

@media screen and (max-width: 767px) {
    .swiper-slide .text.left {
        left: 4%;
    }
}

.swiper-slide .text.left a.btn {
    margin-left: 0;
}

.swiper-slide .text.right {
    text-align: right;
    right: 20%;
}

@media screen and (max-width: 991px) {
    .swiper-slide .text.right {
        right: 10%;
    }
}

@media screen and (max-width: 767px) {
    .swiper-slide .text.right {
        right: 4%;
    }
}

.swiper-slide .text.right a.btn {
    margin-right: 0;
}

.swiper-slide .text.white {
    color: white;
}

.swiper-slide .text.black {
    color: #333333;
}

.swiper-slide .text strong {
    font-size: 200%;
    line-height: 2em;
    font-family: "Kulim Park", "M PLUS 1p", sans-serif;
}

input[type=submit] {
    border: 1px solid #e2e2e2;
    padding: 2px 8px;
    font-size: 12px;
}

input[type=submit]:focus {
    outline: none;
}

.shadow-b {
    box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.3);
}

header {
    position: -webkit-sticky;
    position: sticky;
    z-index: 1000;
    top: 0;
    height: 70px;
    background: #ffffffad;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

header .container {
    height: 70px;
}

header .row {
    background: transparent;
}

header .header__wrapper {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    height: 70px;
    position: relative;
}

header h1 {
    color: #892bbd;
    padding: 0;
    font-size: 180%;
    line-height: 70px;
}

header h1 a {
    color: #892bbd;
}

header ul#navmenu {
    display: -webkit-box;
    display: flex;
    margin: 0;
}

header ul#navmenu li {
    height: 70px;
    padding-left: 20px;
    padding-right: 20px;
}

header ul#navmenu li a {
    display: block;
    position: relative;
    height: 100%;
    line-height: 70px;
    color: #333333;
}

header ul#navmenu li a:after {
    position: absolute;
    bottom: 1px;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #892bbd;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

header ul#navmenu li a:hover {
    color: inherit;
}

header ul#navmenu li a:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

@media screen and (max-width: 767px) {
    header {
        height: auto;
        min-height: 60px;
    }

    header h1 {
        font-size: 150%;
        line-height: 50px;
    }

    header .container,
    header .header__wrapper {
        height: auto;
        min-height: 60px;
    }

    header .header__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    header ul#navmenu {
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0;
        width: calc(100% + 30px);
        margin: 0 -15px;
    }

    header ul#navmenu.checked {
        display: -webkit-box;
        display: flex;
    }

    header ul#navmenu li {
        height: 50px;
        padding-left: 10px;
        padding-right: 10px;
    }

    header ul#navmenu li a {
        line-height: 50px;
    }
}

dl.update {
    font-size: 14px;
}

dl.update dt {
    width: 100px;
    margin-bottom: 10px;
    color: #892bbd;
}

dl.update dd {
    width: calc(100% - 120px);
    margin: 0;
    margin-bottom: 10px;
}

ul.novel-1 {
    margin-bottom: 30px;
}

ul.novel-1 li {
    display: -webkit-box;
    display: flex;
}

ul.novel-1 li.new:after {
    content: 'new';
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    margin: auto 0 auto 5px;
    background: orangered;
    display: block;
    padding: 0 7px;
    height: 17px;
    line-height: 17px;
    border-radius: 10px;
}

ul.novel-1 li a {
    display: block;
    margin-right: 10px;
    white-space: nowrap;
}

ul.novel-1 li span {
    display: block;
}

ul.novel-2 {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

ul.novel-2 li {
    display: -webkit-box;
    display: flex;
}

ul.novel-2 li.new:after {
    content: 'new';
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    margin: auto 0 auto 5px;
    background: orangered;
    display: block;
    padding: 0 7px;
    height: 17px;
    line-height: 17px;
    border-radius: 10px;
}

ul.novel-2 li a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

ul.novel-2 li:not(:first-of-type):before {
    content: '/';
    margin: 0 5px;
}

ul.illust-1 {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
}

ul.illust-1 li {
    position: relative;
    height: 100px;
    width: 100px;
    margin-bottom: 5px;
}

ul.illust-1 li:not(:last-of-type) {
    margin-right: 5px;
}

ul.illust-1 li a {
    display: block;
    -webkit-transition: .2s;
    transition: .2s;
}

ul.illust-1 li a img {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
}

ul.illust-1 li.new::after {
    content: 'new';
    font-family: "Kulim Park", "M PLUS 1p", sans-serif;
    position: absolute;
    padding: 0 5px;
    left: -3px;
    top: 0px;
    display: block;
    font-size: 12px;
    font-weight: bold;
    background: #333333;
    color: #ffffff;
    height: 18px;
    line-height: 18px;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
    padding: 0 7px;
}

@media screen and (max-width: 767px) {
    ul.illust-1 li {
        height: 70px;
        width: 70px;
    }

    ul.illust-1 li a img {
        height: 70px;
        width: 70px;
    }
}

ul.illust-2 {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
}

ul.illust-2 li {
    position: relative;
    height: auto;
    width: 150px;
    margin-bottom: 5px;
}

ul.illust-2 li p {
    text-align: center;
    padding: 0;
    margin: 0;
}

ul.illust-2 li:not(:last-of-type) {
    margin-right: 5px;
}

ul.illust-2 li a {
    display: block;
    -webkit-transition: .2s;
    transition: .2s;
}

ul.illust-2 li a img {
    height: 200px;
    width: 150px;
    -o-object-fit: cover;
    object-fit: cover;
}

ul.illust-2 li.new::after {
    content: 'new';
    font-family: "Kulim Park", "M PLUS 1p", sans-serif;
    position: absolute;
    padding: 0 5px;
    left: -3px;
    top: 0px;
    display: block;
    font-size: 14px;
    font-weight: bold;
    background: #333333;
    color: #ffffff;
    height: 25px;
    line-height: 25px;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
    padding: 0 10px;
}

@media screen and (max-width: 767px) {
    ul.illust-2 li {
        height: auto;
        width: 80px;
    }

    ul.illust-2 li p {
        text-align: left;
    }

    ul.illust-2 li a img {
        height: 140px;
        width: 120px;
    }
}

ul.link01 {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    justify-content: flex-start;
    margin: 10px 0;
}

ul.link01 li {
    margin-right: 8px;
}

ul.link02 {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

ul.link02 li {
    display: -webkit-box;
    display: flex;
}

ul.link02 li a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

ul.link02 li:not(:first-of-type):before {
    content: '/';
    margin: 0 5px;
}

.mailform {
    text-align: center;
}

.mailform textarea {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.6em;
    border: 1px solid #d0d0d0;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    vertical-align: bottom;
    background: #fcfcfc;
}

.mailform textarea:focus {
    outline: none;
    background: #ffffff;
}

.mailform input {
    margin: 0 0 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    background: #fcfcfc;
    -webkit-transition: .2s;
    transition: .2s;
}

.mailform input:focus {
    outline: none;
    background: #ffffff;
}

.mailform input[type="submit"] {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0px auto 20px;
    padding: 10px 20px;
    background: #892bbd;
    color: #ffffff;
    border: none;
}

.mailform input[type="submit"]:focus,
.mailform input[type="submit"]:hover {
    background: lightblue;
}

.clap input {
    margin: 0 10px 15px 0;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    padding: 10px;
    width: calc(100% - 120px);
    border-radius: 5px;
    background: #fcfcfc;
    -webkit-transition: .2s;
    transition: .2s;
}

.clap input:focus {
    outline: none;
    background: #ffffff;
}

.clap input[type="submit"] {
    width: 100px;
    margin: 0px auto 20px;
    padding: 10px 0;
    background: #892bbd;
    color: #ffffff;
    border: none;
}

.clap input[type="submit"]:focus,
.clap input[type="submit"]:hover {
    background: lightblue;
}

footer {
    background: #a661cc;
    overflow: hidden;
    margin-top: 80px;
}

footer .footer {
    padding: 30px 0;
}

footer .footer > p {
    text-align: right;
    font-size: 14px;
    margin: 10px 0;
    color: #fff;
    padding: 0;
}

footer .footer > h1 {
    text-align: right;
    color: #fff !important;
}

footer .footer .title {
    font-size: 130%;
}

footer .bottom {
    color: #fff;
    text-align: right;
    padding: 0;
}

footer .bottom p {
    padding: 0;
}

footer .bottom .template {
    text-align: right;
    width: 100%;
    font-size: 12px;
    padding: 5px 10px;
    margin: 0;
}

footer a.home {
    text-decoration: none;
    color: #54c6ff;
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

h2.h2-a {
    padding: 10px 20px;
    background: linear-gradient(45deg, black, #892bbd);
    color: #ffffff;
}

h2.h2-b {
    padding: 10px 20px;
    background: transparent;
    text-align: center;
    color: #333333;
}

h2.h2-b:before {
    content: '';
    height: 2px;
    width: 10%;
    display: inline-block;
    background: #333333;
    vertical-align: middle;
    margin-right: 30px;
}

h2.h2-b:after {
    content: '';
    height: 2px;
    width: 10%;
    display: inline-block;
    background: #333333;
    vertical-align: middle;
    margin-left: 30px;
}

h2.h2-c {
    font-size: 150%;
    border-bottom: 1px dotted #cccccc;
    padding: 0 10px 10px;
}

h3.h3-a {
    padding: 10px 20px;
    background: transparent;
    color: #000000;
    border-left: none;
    border-bottom: 3px dotted #000000;
}

h3.h3-b {
    border-left: none;
}

h3.h3-b:before {
    content: '//';
    font-size: 105%;
    margin-right: 1em;
}

h3.h3-b:after {
    content: '//';
    font-size: 105%;
    margin-left: 1em;
}

ul.li-a {
    list-style: square inside;
    margin: 1em 0.5em;
}

ul.li-a li {
    margin-bottom: 0.5em;
}

ul.li-b {
    list-style: disc inside;
    margin: 1em 0.5em;
}

ul.li-b li {
    margin-bottom: 0.5em;
}

ol.li-a {
    list-style: decimal inside;
    margin: 1em 0.5em;
}

ol.li-a li {
    margin-bottom: 0.5em;
}

ol.li-b {
    list-style: lower-alpha inside;
    margin: 1em 0.5em;
}

ol.li-b li {
    margin-bottom: 0.5em;
}

.page {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 90%;
    margin: 30px auto;
}

.page a {
    display: block;
    padding: 3px 10px;
}

.comics {
    display: block;
    max-width: 100%;
    margin: 80px auto;
    border: 1px #333333 solid;
}

.comics.tame {
    margin-bottom: 800px;
}

.book {
    display: -webkit-box;
    display: flex;
    width: 80%;
    max-width: 800px;
    margin: 80px auto;
}

.book:nth-child(2n+1) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

.book .book__image {
    margin: 0 20px;
    -webkit-box-flex: 0;
    flex: 0 0 40%;
}

.book .book__discription h4 {
    margin-top: 0;
}

@media screen and (max-width: 767px) {
    .book {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    .book:nth-child(2n+1) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    .book:not(:last-of-type) {
        border-bottom: 1px solid #cccccc;
        padding-bottom: 60px;
    }

    .book .book__image {
        margin: 0 auto 20px;
        max-width: 300px;
    }
}

dl.book-01 {
    margin: 20px 0;
}

dl.book-01 dt {
    width: 100px;
    font-weight: 600;
    margin-bottom: 10px;
}

dl.book-01 dd {
    width: calc(100% - 100px);
    margin: 0;
    margin-bottom: 10px;
}

span.pink {
    color: #fa3c72;
}

blockquote {
    background: #ededed;
    padding: 20px 30px;
    margin: 20px;
    font-size: 15px;
    font-style: italic;
}

@media screen and (max-width: 767px) {
    .only-pc {
        display: none;
    }
}


/* ==========================================
追加
   ========================================== */
.l-title {
    display: flex;
    padding-left: 20px;
    padding-right: 30px;
    margin-bottom: 1em;
    gap: 0.5rem;
    /* 画像間の隙間 */
    $align-items: flex-end;
}

/* スマホ：縦並び */
@media (max-width: 768px) {
    .l-title {
        flex-direction: column;
        gap: 0.3rem;
        padding-left: 0 !important;
        /* 親の左パディングもリセット */
        margin-left: 0 !important;
    }

    .l-title img {
        $width: 80%;
        $max-width: 200px;
        display: block;
        margin: 0 0 0 0 !important;
        /* 全方向余白0 */
    }
}


.l-title img {
    max-height: 3em;
}

.l-title-k {
    display: block;
}

.l-title-k p {
    margin-bottom: 0;
}

#home-wrap {}

#home-l {
    float: left;
    width: 45%;
    margin-bottom: 2em;
}

#home-r {
    float: left;
    width: 45%;
    align-items: center;
    margin-bottom: 2em;
}

#home-r img {
    max-width: 100%;
    padding-top: 2em;
}

@media (max-width: 768px) {
    #home-l {
        width: 100%;
        margin-bottom: 0;
    }

    #home-r {
        width: 100%;
    }

}

.policy-l {
    float: left;
    width: 60%;
    margin-bottom: 2em;
}

.policy-r {
    float: left;
    width: 40%;
    align-items: center;
    margin-bottom: 2em;
}

.policy-r img {
    max-width: 100%;
    padding-top: 2em;
    margin-left: 0 !important;
}

@media (max-width: 768px) {
    .policy-l {
        width: 100%;
        margin-bottom: 0;
    }

    .policy-r {
        width: 100%;
    }

}

.keyword-list {
    display: flex;
    flex-wrap: wrap;
    /* 折り返し */
    gap: 0.8rem 1rem;
    /* 縦横の隙間 */
    margin: 1rem 0;
    padding-left: 20px;
}

.keyword {
    display: inline-block;
    padding: 0.4rem 1rem;
    /* 内側余白 */
    border: 2px solid #666;
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
    /* 折り返し防止 */
    line-height: 1.4;
    /* 縦位置調整 */
}

/* カウンター初期化 */
.section {
    counter-reset: title-counter;
}

.p-list p {
    margin-bottom: 2em;
}

/* h5に番号を自動付与 */
.p-list h5 {
    counter-increment: title-counter;
    position: relative;
    padding-left: 2em;
    line-height: 1.5;
    font-size: 1.2em;
    margin-left: 20px;
}

.p-list h5::before {
    content: counter(title-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.6em;
    height: 1.6em;
    background: #ffe100;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
    border: solid 1px #999;
}

.p-list h6 {
    line-height: 120%;
    font-size: 120%;
    color: deeppink;
    padding-left: 20px;
    $margin: 0 0 2rem 0;
    margin: 0;
}

.p-strong {
    display: inline-block;
    /* 重要：inline-blockで複数行対応 */
    background: linear-gradient(transparent 65%,
            /* 上65%透明 → 被せる調整 */
            #ffeb3b 35%
            /* 下35%黄色マーカー */
        );
    padding-bottom: 2px;
    /* マーカーと文字の隙間 */
    line-height: 1.2;
}


#policy h1 {
    background-color: #892bbd;
    color: #fff;
    display: inline;
    padding: 0.1em 0.2em;
}

.p-wrap2 {
    counter-reset: title-counter 4;
    /* ← ここを1に */
}

.p-wrap3 {
    counter-reset: title-counter 3;
    /* ← ここを1に */
}

.submenu-item {
    display: none;
}


/* ==========================================
   新構造完璧ドロップダウン（子要素版）
   ========================================== */

header ul#navmenu li.dropdown {
    position: relative;
}

header ul#navmenu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 220px;
    margin: 0;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    list-style: none;
    height: auto !important;
}

header ul#navmenu li.dropdown:hover .submenu {
    display: block;
}

header ul#navmenu .submenu li a {
    display: block;
    $padding: 10px 20px;
    font-size: 0.9em;
    border-bottom: 1px solid #eee;
    $line-height: 1.4;
    white-space: nowrap;
    color: #333;
}

header ul#navmenu .submenu li:last-child a {
    border-bottom: none;
}

/* スマホ：ハンバーガー開いたら全部表示 */
/* スマホ：ハンバーガー開いたら全部表示（Chrome/Firefox両対応） */
@media screen and (max-width: 767px) {
    header ul#navmenu.checked .submenu {
        display: block !important;
        position: static !important;
        width: 100% !important;
        background: #f9f9f9 !important;
        margin: 0 0 0 20px !important;
        padding: 6px 12px !important;
        box-shadow: none !important;
        border-left: 3px solid #892bbd !important;
    }

    header ul#navmenu.checked .submenu li {
        display: block !important;
        /* 縦並び強制 */
        width: 100% !important;
        padding: 8px 0 !important;
        /* $削除 */
        border-bottom: 1px solid #eee !important;
    }

    header ul#navmenu.checked .submenu li:last-child {
        border-bottom: none !important;
    }

    header ul#navmenu li {
        display: table;
        /* Chromeズレ解消維持 */
    }

    /* 後援会以降を下に移動 */
    $header ul#navmenu.checked li.dropdown + li {
        margin-top: 140px !important;
    }
}

.sns-wrap {
    text-align: right;
    color: #fff;
}

.sns-wrap a {
    color: #fff;
}

.sns-wrap i {
    margin-left: .5em;
}
