@charset "UTF-8";

/*
@mixin mediaquery($breakpoint: 768px) {
　　@media screen and (min-width: $breakpoint) {
　　　　@content;
　　}
}
*/
/*
@mixin opacity($opacity) {
　　opacity: $opacity;
　　$ieopacity: ($opacity * 100);
　　filter: alpha(opacity=$ieopacity);
}
*/
/*@import "mixxx";*/

/* ========================================= */
/* 　　　　▼ ▼ ▼　共通クラス　▼ ▼ ▼ 　　　　　 */
/* ========================================= */

/* --------------------- */
/* 大枠 */
/* --------------------- */
html {
    margin: 0;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

}

body {
    margin: 0;
    color: #282828;
    font-size: 14px;
    font-size: 1.4rem;
    position: relative;
    letter-spacing: 1px;
}

.wrapper {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .wrapper {
        padding: 0 20px;
    }
}

section {
    margin: 0 auto 120px;
}

@media (max-width: 960px) {
    section {
        margin: 0 auto 60px;
    }
}

/* --------------------- */
/* マージン */
/* --------------------- */
.mgt5 {
    margin-top: 5px;
}

.mgt10 {
    margin-top: 10px;
}

.mgt15 {
    margin-top: 15px;
}

.mgt20 {
    margin-top: 20px;
}

.mgt25 {
    margin-top: 25px;
}

.mgt30 {
    margin-top: 30px;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* --------------------- */
/* imgタグ */
/* --------------------- */
img {
    /*max-width:100%;
	height: auto;
	width: auto;*/
}

/* img　layout　tbl */
.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.item1 img {
    max-width: 100%;
    line-height: 1;
    margin: 0 10px 10px 0;
}

.item2 img {
    max-width: 100%;
    line-height: 1;
    margin: 0 10px 10px 0;
}

@media (max-width: 560px) {
    .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: block;
    }

    .item1 img {
        line-height: 1;
    }

    .item2 img {
        line-height: 1;
    }

    .item1 img {
        margin: 0 0 10px 0;
    }

    .item2 img {
        margin: 0 0 10px 0;
    }
}

/* --------------------- */
/* 表示・非表示切り替え */
/* --------------------- */
.pcOnly {
    display: block;
}

.spOnly {
    display: none;
}

@media (max-width: 960px) {
    .spOnly {
        display: block;
    }

    .pcOnly {
        display: none;
    }
}

/* --------------------- */
/* 見出し（h2~h3） */
/* --------------------- */
h2 {
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    letter-spacing: 6px;
}

h2::before {
    position: absolute;
    content: "";
    background: #54b42f;
    width: 80px;
    height: 2px;
    bottom: -18px;
    left: calc(50% - 40px);
}

@media (max-width: 960px) {
    h2 {
        font-size: 22px;
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    h2::before {
        bottom: -12px;
    }
}

h3 {
    border-bottom: 1px dashed #bababa;
    border-left: none;
    padding-bottom: 10px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
}

@media (max-width: 960px) {
    h3 {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

h3 a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
}

h3 p {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: inline-block;
}

h3 svg {
    margin: 0 10px 0 0;
    width: 30px;
    fill: #54b42f;
}


/* --------------------- */
/* aタグ */
/* --------------------- */
a {
    text-decoration: none;
    transition: .7s;
}

a:-webkit-any-link {
    color: #282828;
}

a:-moz-any-link {
    color: #282828;
}

a:any-link {
    color: #282828;
    text-decoration: none;
}

@media (hover: hover) {

    a:hover,
    a .logo:hover,
    a .pagetop:hover {
        transition: .7s;
    }

    a .logo:hover,
    a .pagetop:hover {
        opacity: .5;
    }

    a:hover svg {
        transition: inherit;
    }

    /* テキストリンク */
    .textlink:hover {
        opacity: .5;
    }
}

/*  ボタン共通　*/
.shadow {
    box-shadow: 0 0 6px #abaaaa;
}

.btn {
    border: 1px solid #54b42f;
    border-radius: 10px;
}

/* 緑ボタン */
.greenBtn a {
    background: #54b42f;
    color: #fff;
    border-radius: 10px;
}

.greenBtn a svg {
    fill: #fff;
}

@media (hover: hover) {
    .greenBtn a:hover {
        background: #fff;
        color: #54b42f;
    }

    .greenBtn a:hover svg {
        fill: #54b42f;
    }
}


/* 白ボタン */
.whiteBtn a {
    background: #fff;
    color: #54b42f;
    border-radius: 10px;
}

.whiteBtn a svg {
    fill: #54b42f;
}

@media (hover: hover) {
    .whiteBtn a:hover {
        background: #54b42f;
        color: #fff;
    }

    .whiteBtn a:hover svg {
        fill: #fff;
    }
}


/* お問合わせ窓口はこちらボタン */
.contactBtn {
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    font-weight: bold;
}

.contactBtn a {
    display: inline-flex;
    max-width: 350px;
    width: 100%;
    height: 60px;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 5px 20px;
    border-radius: 10px;
    border: 1px solid #54b42f;
}

.right-arrow::after {
    position: absolute;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (hover: hover) {
    .contactBtn a:hover::after {
        transition: inherit;
        border-top: 1px solid #54b42f;
        border-right: 1px solid #54b42f;
    }
}

/* --------------------- */
/* アイコン */
/* --------------------- */
.defultArrow {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    margin-top: -3px;
    vertical-align: middle;
    fill: #54b42f;
}

.defultArrowW {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-top: -2px;
    vertical-align: middle;
    fill: #fff;
}

.defultArrowB {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-top: -1px;
    vertical-align: middle;
    fill: #222;
}

.Q {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    vertical-align: middle;
    fill: #54b42f;
}

/* --------------------- */
/* ページトップ */
/* --------------------- */

#pagetop {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    width: 61px;
    height: 61px;
}


/* ========================================= */
/* 　　　 　▼ ▼ ▼　ヘッダー　▼ ▼ ▼ 　　 　　　 */
/* ========================================= */

header {
    padding: 0 10px;
    margin: 0 auto;
    width: 100%;
    height: 58px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

@media (max-width: 1024px) {
    header {
        position: inherit;
    }
}

header nav {
    margin: 0 auto;
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
    height: 58px;
    position: relative;
    z-index: 20;
}

header nav ul.navLink_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    -ms-flex-line-pack: center;
    align-content: center;
    gap: 15px;
}

@media (max-width: 1024px) {
    header nav ul.navLink_logo {
        margin-left: 15px;
        gap: 10px;
    }
}

@media (max-width: 560px) {
    header nav ul.navLink_logo {
        margin-left: 10px;
    }
}

header nav ul.navLink_logo li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.a8Logo img {
    max-width: 69px;
    max-height: 32px;
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .a8Logo img {
        max-width: 46px;
        max-height: 22px;
        width: 100%;
        height: auto;
    }
}

.helpLogo a {
    font-size: 16px;
    color: #666;
    padding: 5px 15px;
    border-left: 1px solid #b5b5b5;
}

@media (max-width: 1024px) {
    .helpLogo a {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    nav .contact_cta {
        margin-right: 10px;
    }
}

nav .contact_cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: bold;
    width: 170px;
    height: 38px;
    padding: 5px 15px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    nav .contact_cta a {
        max-width: 138px;
        width: 100%;
        padding: 5px 10px;
    }

}

nav .contact_cta a svg {
    width: 16px;
    height: 12px;
}

@media (max-width: 1024px) {
    nav .contact_cta a svg {
        width: 14px;
        height: 12px;
    }
}

/* ========================================= */
/*　　▼ ▼ ▼　ハンバーガーメニュー　▼ ▼ ▼ 　　  */
/* ========================================= */
.bugerBtn {
    display: none;
}

@media (max-width: 1024px) {
    .bugerBtn {
        right: 0;
        display: block;
        float: right;
        width: 50px !important;
        height: 50px;
        z-index: 3;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        cursor: pointer;
    }

    .bugerBtn span {
        position: absolute;
        width: 35px;
        height: 5px;
        border-radius: 6px;
        background: #bababa;
        -webkit-transition: all 400ms;
        transition: all 400ms;
    }

    .bugerBtn span:nth-child(1) {
        top: 10px;
        right: 10px;
    }

    .bugerBtn span:nth-child(2) {
        top: 23px;
        right: 10px;
    }

    .bugerBtn span:nth-child(3) {
        top: 36px;
        right: 10px;
    }

    .bugerBtn.open span:nth-child(1) {
        top: 25px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .bugerBtn.open span:nth-child(2),
    .bugerBtn.open span:nth-child(3) {
        top: 25px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

/* ハンバーガーメニュー開閉 */
header .open {
    z-index: 3000;
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    -webkit-animation: fadeIn 0.3s linear 0s 1;
    animation: fadeIn 0.3s linear 0s 1;
}

@media (max-width: 1024px) {
    @-webkit-keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    header .open {
        position: relative;
        top: 0;
    }

    header section.open {
        position: fixed;
        top: 58px;
        left: 0;
        background: #fff;
        height: calc(100dvh - 58px);
        width: 100%;
        padding: 0;
        overflow-y: scroll;
    }

    /*スクロールバー非表示（Chrome・Safari）*/
    header section.open::-webkit-scrollbar {
        display: none;
    }

    header section.open .sidemenu {
        width: 100%;
        margin: 0;
    }

    header section.open .sidemenu .acParent:first-child {
        border-radius: 10px 10px 0 0;
    }

    header section.open .sidemenu .acParent:last-of-type {
        border-radius: 0 0 10px 10px;
    }
}

/* ========================================= */
/*　　▼ ▼ ▼　フッター＠from A8.net　▼ ▼ ▼ 　  */
/* ========================================= */
@media (hover: hover) {

    footer a:link,
    footer a:hover,
    footer a:active {
        color: #26a;
    }

    footer a:hover {
        opacity: 0.7;
        transition: all 0.5s;
    }
}


footer a:visited {
    color: #609;
}

footer a:link,
footer a:visited {
    text-decoration: none;
}

@media (hover: hover) {

    footer a:hover,
    footer a:active {
        text-decoration: underline;
    }
}

footer a.underline {
    text-decoration: underline;
}

@media (hover: hover) {
    footer a.underline:hover {
        text-decoration: none;
    }
}


footer {
    background: #f2f2f2;
    padding: 0;
    line-height: 1.75;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

footer ul.footLink {
    width: 100%;
    padding: 0 15px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer ul.footLink li {
    width: 48%;
    font-size: 14px;
    font-size: 1.4rem;
}

footer ul.footLink dt {
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    footer ul.footLink {
        font-size: 16px;
        font-size: 1.6rem;
        justify-content: flex-start;
        padding: 0 30px 20px;
    }

    footer ul.footLink li {
        width: 33%;
    }
}

@media screen and (min-width: 1200px) {
    footer ul.footLink {
        max-width: 1240px;
        width: 100%;
        padding: 50px 20px;
        justify-content: space-around;
    }

    footer ul.footLink li {
        width: auto;
    }

    footer ul.footLink li:last-of-type {
        width: auto;
    }

    footer ul.footLink dt {
        margin-top: 0;
    }
}

footer ul.footLink dt {
    font-weight: bold;
}

footer ul.footLink dd {
    font-size: 13px;
    font-size: 1.3rem;
    margin-top: 5px;
}

@media screen and (min-width: 1200px) {
    footer ul.footLink dd {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

footer ul.footLink dd:first-of-type {
    margin-top: 10px;
}

@media screen and (min-width: 1200px) {
    footer ul.footLink dd:first-of-type {
        margin-top: 15px;
    }
}

footer .footLinkSimple {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-size: 1.4rem;
}

footer .footLinkSimple a {
    display: block;
    padding: 10px;
}

@media screen and (min-width: 768px) {
    footer .footLinkSimple {
        padding: 20px;
        gap: 0 40px;
        display: flex;
        justify-content: center;
    }
}

@media screen and (min-width: 1024px) {
    footer .footLinkSimple {
        max-width: 1240px;
        width: 100%;
        padding: 40px 20px;
        gap: 0 50px;
    }
}

footer .copyright {
    background: #fff;
    width: 100%;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
    color: #666;
}

.linkArrow {
    background: url(https://www.a8.net/wp/wp-content/themes/a8new/images/icon_arrow.svg) no-repeat left;
    background-size: 6px 10px;
    padding-left: 13px;
}

.linkArrowG {
    background: url(https://www.a8.net/wp/wp-content/themes/a8new/images/icon_arrowg.svg) no-repeat left;
    background-size: 18px 18px;
    padding-left: 25px;
}

.linkArrowR {
    background: url(https://www.a8.net/wp/wp-content/themes/a8new/images/icon_arrowr.svg) no-repeat left;
    background-size: 18px 18px;
    padding-left: 25px;
    line-height: 18px;
    display: inline-block;
    padding: 2px 0 2px 25px;
}

/* ========================================= */
/*　　       ▼ ▼ ▼　検索窓　▼ ▼ ▼ 　          */
/* ========================================= */
#search_box {
    margin: 0 auto 60px;
    width: 100%;
    text-align: center;
    line-height: 2;
    background: #54b42f;
    padding-top: 58px;
}

@media (max-width: 1024px) {
    #search_box {
        padding-top: 0;
    }

    .search_sp {
        margin: 0 auto !important;
    }
}

@media (max-width: 560px) {
    #search_box {
        text-align: left;
    }
}

#search_box #search {
    margin: 0 auto;
    max-width: 1200px;
    width: 80%;
    padding: 30px 83px;
}

@media (max-width: 1024px) {
    #search_box #search {
        width: 90%;
    }
}

@media (max-width: 670px) {
    #search_box #search {
        width: 100%;
        padding: 20px;
        background: none;
    }
}

#search_box #search p {
    margin: 0 auto;
    color: #fff;
    font-size: 18px;
    font-size: 1.8rem;
}

#search_box #search p.searchTtl {
    margin: 0px auto;
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: bold;
    letter-spacing: 4px;
}

@media (max-width: 960px) {
    #search_box #search p {
        font-size: 16px;
        font-size: 1.6rem;
    }

    #search_box #search p.searchTtl {
        font-size: 22px;
    }
}

@media (max-width: 560px) {
    #search_box #search p {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.8;
        text-align: center;
    }

    #search_box #search p.searchTtl {
        font-size: 20px;
        font-size: 2rem;
        font-weight: bold;
    }
}

#search_box #search p a:-webkit-any-link {
    margin: 0 3px;
    font-weight: bolder;
    color: #fff;
    text-decoration: underline;
}

#search_box #search p a:-moz-any-link {
    margin: 0 3px;
    font-weight: bolder;
    color: #fff;
    text-decoration: underline;
}

#search_box #search p a:any-link {
    margin: 0 3px;
    font-weight: bolder;
    color: #fff;
    text-decoration: underline;
}

#search_box #search_category {
    background: #3b8320;
    text-align: center;
}

#search_box #search_category a {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    display: inline-flex;
    position: relative;
}

@media (max-width: 1024px) {
    #search_box #search_category a {
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    #search_box #search_category a {
        font-size: 14px;
    }
}

.down-arrow::before,
.down-arrow::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.down-arrow::before {
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    background: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

@media (max-width: 560px) {
    .down-arrow::before {
        width: 14px;
        height: 14px;
    }
}

.down-arrow::after {
    right: 5px;
    bottom: 3px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #54b42f;
    border-right: 1px solid #54b42f;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@media (max-width: 560px) {
    .down-arrow::after {
        width: 4px;
        height: 4px;
    }
}

#search_box #search #query {
    margin: auto;
    padding: 0 20px;
    max-width: 800px;
    width: 100%;
    height: 56px;
    line-height: 1.2em;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    font-size: 18px;
    font-size: 1.8rem;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
}

@media (max-width: 560px) {
    #search_box #search #query {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

#search_box #search ::-webkit-input-placeholder {
    color: #afafaf;
}

#search_box #search :-ms-input-placeholder {
    color: #afafaf;
}

#search_box #search ::-ms-input-placeholder {
    color: #afafaf;
}

#search_box #search ::placeholder {
    color: #afafaf;
}

#search_box #search #s {
    margin: auto;
    padding: 0 20px;
    max-width: 800px;
    width: 100%;
    height: 56px;
    line-height: 1.2em;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    font-size: 18px;
    font-size: 1.8rem;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
}

@media (max-width: 10240px) {
    #search_box #search #s {
        font-size: 14px;
        font-size: 1.4rem;
        padding: 0 10px;
    }
}

#search_box #search[class="sub"] {
    height: 100px;
}

#search_box #search[class="sub"]>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: url("../images/common/a8kun01.png") no-repeat left 10px, url("../images/common/hachiko01.png") no-repeat right 10px;
}

#search_box #search[class="sub"] input {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#search_box #searchform {
    position: relative;
    max-width: 800px;
    margin: 0 auto 10px;
}

#search_box #searchsubmit {
    border-radius: 0;
    position: absolute;
    right: 20px;
    top: 10px;
    width: 46px;
    height: 30px;
    z-index: 8;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 0;
    background: url("../images/common/search.png") left top no-repeat;
    cursor: pointer;
}

@media (max-width: 1024px) {
    #search_box #searchsubmit {
        right: 7px;
    }
}

/*  下層ページの時のみ */
#searchHeader #searchform {
    width: 408px;
    padding: 2px 5px;
    position: relative;
}

#searchHeader #searchform #s {
    margin: auto;
    padding: 0 20px 0 15px;
    max-width: 800px;
    width: 100%;
    height: 38px;
    line-height: 1.2em;
    border: 1px solid #afafaf;
    border-radius: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
}

#searchHeader #searchform #searchsubmit {
    border-radius: 0;
    position: absolute;
    right: 15px;
    top: 5px;
    width: 46px;
    height: 30px;
    z-index: 8;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 0;
    background: url(../images/common/search.png) center center no-repeat;
    cursor: pointer;
}

#searchHeader #searchform ::-webkit-input-placeholder {
    color: #afafaf;
}

#searchHeader #searchform :-ms-input-placeholder {
    color: #afafaf;
}

#searchHeader #searchform ::-ms-input-placeholder {
    color: #afafaf;
}

#searchHeader #searchform ::placeholder {
    color: #afafaf;
}


/* ========================================= */
/*　　   ▼ ▼ ▼　初心者コンテンツ　▼ ▼ ▼ 　     */
/* ========================================= */
.beginner .beginner_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .beginner .beginner_list {
        gap: 30px;
    }
}

@media (max-width: 960px) {
    .beginner .beginner_list {
        gap: 40px;
    }
}

.beginner .beginner_list li {
    position: relative;
    max-width: 510px;
    width: 40%;
    border: 1px solid #54b42f;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .beginner .beginner_list li {
        width: 48%;
    }
}

@media (max-width: 960px) {
    .beginner .beginner_list li {
        width: 100%;
    }
}

.beginner .beginner_list li a {
    color: #54b42f;
    background: #fff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px 30px;
    position: relative;
    border-radius: 10px;
    max-height: 120px;
    height: auto;
}

@media (max-width: 1024px) {
    .beginner .beginner_list li a {
        max-height: 80px;
        font-size: 18px;
    }
}

@media (max-width: 960px) {
    .beginner .beginner_list li a {
        padding: 15px 20px;
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .beginner .beginner_list li img.begIcon {
        width: 30px;
        height: auto;
    }
}

.beginner .beginner_list li img.illust {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 1024px) {
    .beginner .beginner_list li img.illust {
        width: 110px;
        height: auto;
    }
}

@media (hover: hover) {
    .beginner .beginner_list li a:hover {
        background: #54b42f;
        color: #fff;

    }
}

/* ========================================= */
/*　　   　 ▼ ▼ ▼　よくある質問　▼ ▼ ▼ 　     */
/* ========================================= */

.faq_cateList {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}


@media (1025px <=width < 1200px) {
    .faq_cateList::after {
        display: block;
        content: "";
        max-width: 368px;
        width: 48%;
    }
}


@media (max-width: 960px) {
    .faq_cateList {
        gap: 15px;
        font-size: 14px;
    }

    .faq_cateList::after {
        display: block;
        content: "";
        max-width: 368px;
        width: 48%;
    }
}

@media (max-width: 560px) {
    .faq_cateList::after {
        display: none;
    }
}

.faq_cateList li {
    max-width: 370px;
    width: calc(100% / 3);
}

@media (max-width: 1024px) {
    .faq_cateList li {
        width: calc(100% / 3 - 25px);
    }
}

@media (max-width: 960px) {

    .faq_cateList li {
        width: calc(100% / 2 - 15px);
    }

}

@media (max-width: 560px) {
    .faq_cateList li {
        max-width: 100%;
        width: 100%;
    }

}


.faq_cateList li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 10px;
    font-weight: bold;
    line-height: 1.4;
    height: 80px;
    font-size: 16px;
}

@media (max-width: 960px) {
    .faq_cateList li a {
        gap: 10px;
        font-size: 14px;
        line-height: 1.2;
        height: 60px;
        padding: 5px 10px;
    }

    .faq_cateList::after {
        display: block;
        content: "";
        max-width: 368px;
        width: 48%;
    }
}

.faq_cateList li a svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 1024px) {
    .faq_cateList li a svg {
        width: 26px;
        height: 26px;
    }
}

.faq_cateList li a p {
    width: calc(100% - 40px);
}

@media (max-width: 1024px) {
    .faq_cateList li a p {
        width: calc(100% - 36px);
    }
}


/* ========================================= */
/*　  ▼ ▼ ▼　カテゴリからヘルプを探す　▼ ▼ ▼   */
/* ========================================= */
.cateList {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.cateList::after {
    display: block;
    content: "";
    max-width: 370px;
    width: calc(100% / 3);
}

@media (max-width: 960px) {
    .cateList {
        gap: 15px;
        font-size: 14px;
    }

    .cateList::after {
        display: block;
        content: "";
        max-width: 368px;
        width: 48%;
    }
}

.cateList li {
    max-width: 370px;
    width: calc(100% / 3);
}

@media (max-width: 1024px) {
    .cateList li {
        width: calc(100% / 3 - 25px);
    }
}

@media (max-width: 960px) {
    .cateList li {
        width: calc(100% / 2 - 10px);
    }

}

.cateList li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 10px;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
    height: 65px;
}

@media (max-width: 1024px) {
    .cateList li a {
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    .cateList li a {
        font-size: 14px;
        gap: 5px;
    }

}

.cateList li a svg {
    width: 32px;
    height: 32px;
}

a[href="/a8/as/faq/05/"] .icon {
    width: 32px;
    height: 32px;
}

.columnList h3+h3 {
    margin-top: 15px;
}

@media (max-width: 1024px) {
    .cateList li a svg {
        width: 28px;
        height: 28px;
    }

    a[href="/a8/as/faq/05/"] .icon {
        width: 28px;
        height: 28px;
    }
}


/* ========================================= */
/*　  　　　▼ ▼ ▼　お問い合わせ　▼ ▼ ▼　　　   */
/* ========================================= */

.info {
    padding: 120px 0;
    background: #f5fef1;
    margin-bottom: 120px;
}

@media (max-width: 960px) {
    .info {
        padding: 60px 0;
    }
}

@media (max-width: 560px) {
    .info {
        margin-bottom: 45px;
    }
}

.infoConts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.infoConts .textBox {
    text-align: left;
    line-height: 1.8;
}

@media (max-width: 960px) {
    .infoConts .textBox {
        line-height: 1.6;
    }
}

.infoConts .textBox p {
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
}

.infoConts div li {
    font-size: 14px;
    font-size: 1.4rem;
    text-indent: -1em;
    padding-left: 1em;
}

/* ========================================= */
/*　 　▼ ▼ ▼　メンテナンス・障害情報　▼ ▼ ▼　  */
/* ========================================= */

.otherRSS .staffBlogBox {
    max-width: 1020px;
    width: 100%;
    margin: 0 auto 20px;
}

@media (max-width: 960px) {
    .otherRSS .staffBlogBox {
        margin: 0 auto 15px;
    }
}

.otherRSS .staffBlogBox a {
    position: relative;
    display: inline-block;
    padding: 20px 10px 20px 15px;
    width: 100%;
    border-bottom: 1px dashed #bababa;
}

@media (max-width: 1024px) {
    .otherRSS .staffBlogBox a {
        padding: 10px 20px 10px 10px;
    }
}

.otherRSS .staffBlogBox a::after {
    position: absolute;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    border-top: 1px solid #54b42f;
    border-right: 1px solid #54b42f;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (hover: hover) {
    .otherRSS .staffBlogBox a:hover {
        color: #54b42f;

    }
}

.otherRSS .staffBlogBox dl {
    line-height: 1.33;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.6rem;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    width: 100%;
    flex-wrap: wrap;
}

@media (max-width: 960px) {
    .otherRSS .staffBlogBox dl {
        font-size: 14px;
        gap: 2px;
    }
}

.otherRSS .staffBlogBox dd {
    font-weight: bold;
}


.otherRSS .moreTextLink {
    display: block;
    max-width: 1020px;
    width: 100%;
    margin: 0 auto;
    text-align: right;
    font-weight: bold;
    position: relative;
    padding-right: 25px;
}

@media (hover: hover) {
    .otherRSS .moreTextLink:hover {
        color: #54b42f;

    }
}

.otherRSS .moreTextLink::after {
    position: absolute;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 10px;
    top: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    border-top: 1px solid #54b42f;
    border-right: 1px solid #54b42f;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* ========================================= */
/*　 　▼ ▼ ▼　その他コンテンツ導線　▼ ▼ ▼　　  */
/* ========================================= */
.another {
    padding: 120px 0;
    background: #f5fef1;
    margin-bottom: 0;
}

@media (max-width: 960px) {
    .another {
        padding: 60px 0;
    }
}

.another .anotherList {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .another .anotherList {
        gap: 25px;
    }
}

@media (max-width: 560px) {
    .another .anotherList {
        gap: 15px;
    }
}

.another .anotherList li {
    max-width: 560px;
    width: calc(100% / 2 - 60px);
}

@media (max-width: 1024px) {
    .another .anotherList li {
        width: calc(100% / 2 - 25px);
    }
}

@media (max-width: 790px) {
    .another .anotherList li {
        width: 100%;
    }
}

.another .anotherList li a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    font-weight: bold;
    line-height: 1.4;
    height: 90px;
}

@media (max-width: 960px) {
    .another .anotherList li a {
        gap: 10px;
        font-size: 14px;
        line-height: 1.2;
        height: 70px;
        padding: 5px 10px;
    }
}

.another .anotherList li a span {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

@media (max-width: 960px) {
    .another .anotherList li a span {
        font-size: 12px;
    }
}

.another .anotherList li a p {
    font-size: 24px;
}

@media (max-width: 960px) {
    .another .anotherList li a p {
        font-size: 18px;
    }
}

.another .anotherList li a svg {
    width: 40px;
    height: 40px;
}

@media (max-width: 1024px) {
    .another .anotherList li a svg {
        width: 36px;
        height: 36px;
    }
}

/* ========================================= */
/* ▼ ▼ ▼　下層ページ：サイドメニュー  ▼ ▼ ▼*/
/*     （ハンバーガーメニューにも流用）　  */
/* ========================================= */

.navCate_list {
    display: none;
    background: #fff;
    z-index: 10;
    margin-top: 0 !important;
    padding: 20px;
    border-top: 1px solid #bababa;
    border-bottom: 1px solid #bababa;
}

.sidemenu {
    width: 100%;
}

.sidemenu .sticky {
    position: sticky;
    top: 159px;
}

.sidemenu .acParent .acTitle {
    font-size: 14px;
    font-weight: bold;
    background-color: #54b42f;
    color: #fff;
    padding: 15px;
    border-bottom: 1px solid #fff;
    font-feature-settings: "palt";
    position: relative;
    display: block;
    cursor: pointer;
}


.sidemenu .acParent .right-arrow2::after {
    position: absolute;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 14px;
    top: 0;
    bottom: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (hover: hover) {
    .sidemenu .acParent .right-arrow2:hover::after {
        border-top: 2px solid #54b42f;
        border-right: 2px solid #54b42f;
    }
}

/* --------------------- */
/* アコーディオン */
/* --------------------- */

.sidemenu .acParent .acTitle .acIcon:before,
.sidemenu .acParent .acTitle .acIcon:after {
    position: absolute;
    content: "";
    display: block;
    transition: all 0.4s;
    background: #fff;
    right: 5px;
    top: 50%;
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.sidemenu .acParent .acTitle .acIcon:before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.sidemenu .acParent .acTitle.open .acIcon:before {
    transform: translate(-50%, -50%) rotate(0deg);
}

@media (hover: hover) {
    .sidemenu .acParent .acTitle:hover {
        background: #f5fef1;
        color: #54b42f;
    }
}

@media (hover: hover) {

    .sidemenu .acParent .acTitle:hover .acIcon:before,
    .sidemenu .acParent .acTitle:hover .acIcon:after {
        background: #54b42f;
    }
}

.sidemenu .acParent .acChild {
    display: none;
}

.sidemenu .acParent .acChild .acTitle {
    font-size: 14px;
    background-color: #f4f4f4;
    color: #282828;
    border: 1px solid #fff;
    display: flex;
}

.sidemenu .acParent .acChild .acTitle.current {
    color: #54b42f;
}

.sidemenu .acParent .acChild .acTitle.current.right-arrow::after {
    border-top: 2px solid #54b42f;
    border-right: 2px solid #54b42f;
}

.sidemenu .acParent .acTitle.current,
.sidemenu .acParent .acTitle:has(+ .acChild .current) {
    background: #f5fef1;
    color: #54b42f;
}

.sidemenu .acParent .acTitle.current .acIcon:before,
.sidemenu .acParent .acTitle.current .acIcon:after,
.sidemenu .acParent .acTitle:has(+ .acChild .current) .acIcon:before,
.sidemenu .acParent .acTitle:has(+ .acChild .current) .acIcon:after {
    background: #54b42f;
}

@media (hover: hover) {
    .sidemenu .acParent .acChild .acTitle:hover {
        color: #54b42f;
    }
}

.sidemenu .acParent .acChild .right-arrow::after {
    position: absolute;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 14px;
    top: 0;
    bottom: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid #282828;
    border-right: 2px solid #282828;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (hover: hover) {
    .sidemenu .acParent .acChild a:hover::after {
        transition: inherit;
        border-top: 2px solid #54b42f;
        border-right: 2px solid #54b42f;
    }
}

/* --------------------- */
/* single.php/search.php/404.phpで使用 */
/* --------------------- */

#contents .sidemenu .acParent .radiusTop {
    border-radius: 10px 10px 0 0;
}

#contents .sidemenu .acParent .radiusBottom {
    border-radius: 0 0 10px 10px;
}


@media (max-width: 1024px) {

    #contents .sidemenu .acParent .radiusTop,
    #contents .sidemenu .acParent .radiusBottom {
        border-radius: 0;
    }
}



/* ========================================= */
/*　　　▼ ▼ ▼　下層ページ：ぱんくず　▼ ▼ ▼ 　  */
/* ========================================= */
/* --------------------- */
/* function.phpで使用 */
/* --------------------- */
.breadcrumb {
    background: #f4f4f4;
    margin: 0 auto 60px;
    padding-top: 58px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

@media (max-width: 1024px) {
    .breadcrumb {
        position: inherit;
        padding-top: 0;
        margin: 0 auto 30px;
    }
}

.breadcrumb .p-breadcrumb {
    max-width: 1200px;
    width: 100%;
    padding: 10px;
    margin: 0 auto;
}

.breadcrumb .p-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
}

@media (max-width: 560px) {
    .breadcrumb .p-breadcrumb ol {
        line-height: 2;
    }
}

.breadcrumb .p-breadcrumb li a {
    color: #54b42f;
    border-bottom: 1px solid #54b42f;
}

.breadcrumb .p-breadcrumb li:last-of-type a {
    border: none;
    color: #282828;
}

/* --------------------- */
/* search.phpで使用 */
/* --------------------- */
.pankuzuArticle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px;
}

.pankuzuArticle li {
    color: #6d6d6d;
}

.pankuzuArticle li a {
    color: #6d6d6d;
}

.pankuzuArticle li:nth-child(even) {
    margin: 0 10px;
}

/* ========================================= */
/*　▼ ▼ ▼　下層ページ：ページネーション　▼ ▼ ▼ */
/* ========================================= */
.pagination {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 40px;
}

@media (max-width: 560px) {
    .pagination {
        font-size: 12px;
        font-size: 1.2rem;
        margin-top: 20px;
    }
}

.pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pagination a {
    display: inline-block;
    padding: 15px;
    line-height: 1;
}

@media (max-width: 560px) {
    .pagination a {
        padding: 10px;
    }
}

.pagination li {
    border: 1px solid #bababa;
}

.pagination li+li {
    margin-left: 10px;
}

.pagination li:last-child {
    border: none;
}


/* ========================================= */
/*　▼ ▼ ▼　下層ページ：個別投稿（single.php)　▼ ▼ ▼ */
/* ========================================= */
#contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 159px 10px 0;
    margin-bottom: 120px;
}

@media (max-width: 1024px) {
    #contents {
        padding: 0;
        margin-bottom: 0;
    }
}


#contents .main {
    width: calc(100% - 270px - 30px);
    max-width: 885px;
}

@media (max-width: 1024px) {
    #contents .main {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
}

#contents aside {
    max-width: 270px;
    width: 100%;
}

@media (max-width: 1024px) {
    #contents aside {
        width: 100%;
        max-width: 100%;
    }
}


.contentsArea {
    border: 1px solid #bababa;
    padding: 30px;
}

@media (max-width: 560px) {
    .contentsArea {
        padding: 20px;
    }
}

.contentsArea h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contentsArea h3 p {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 24px;
    font-size: 2.4rem;
}

@media (max-width: 560px) {
    .contentsArea h3 p {
        font-size: 20px;
        font-size: 2rem;
    }
}

.contentsArea .Q {
    width: 40px;
    height: 40px;
}

.contentsArea p {
    font-size: 18px;
    font-size: 1.8rem;
}

@media (max-width: 560px) {
    .contentsArea p {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.contentsArea a {
    word-break: break-word;
}

.contentsArea p a {
    text-decoration: underline;
    color: #1f53d4;
}

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


.contentsArea .relatedLink {
    margin-top: 40px;
}

.contentsArea .questionArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px dashed #bababa;
}

.contentsArea .questionArea li {
    margin-bottom: 10px;
}

.contentsArea .questionArea .selectBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 30px;
    font-weight: bold;
}

@media (max-width: 560px) {
    .contentsArea .questionArea .selectBtn {
        margin-left: 0px;
    }
}

.contentsArea .questionArea .selectBtn a {
    border: 1px solid #54b42f;
    color: #54b42f;
    padding: 10px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 560px) {
    .contentsArea .questionArea .selectBtn a {
        padding: 10px 20px;
    }
}

.contentsArea .questionArea .selectBtn a img {
    height: 14px;
    width: auto;
}

.contentsArea .questionArea .selectBtn a p {
    margin-left: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.contentsArea .questionArea .selectBtn a+a {
    margin-left: 30px;
}

.contentsSearchContent .serchResult {
    padding: 0;
}

.contentsSearchContent .serchResult>a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 30px;
}

@media (max-width: 560px) {
    .contentsSearchContent .serchResult>a {
        padding: 20px;
    }
}

.contentsSearchContent>li:nth-child(even) {
    background-color: #f6fffb;
}

.contentsSearchContent>li+li {
    margin-top: 30px;
}


/* ========================================= */
/*　▼ ▼ ▼　下層ページ：検索結果の表示（search.php)　▼ ▼ ▼ */
/* ========================================= */
.serchResult .contentsContentArea {
    margin-top: 20px;
}

.search-highlight {
    background: #f7ffcf;
}

/* -------------------------------- */
/* 検索サジェストプラグイン書き換え */
/* -------------------------------- */

#ajaxsearchlite1 {
    position: relative;
    max-width: 800px;
    margin: auto;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
}

#ajaxsearchlite1 .probox,
div.asl_w .probox {
    padding: 10px;
    height: 56px;
    line-height: 1.2em;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    font-size: 18px;
    font-size: 1.8rem;
}

#ajaxsearchlite1 .probox,
div.asl_w .probox .orig {
    font-size: 18px !important;
    font-size: 1.8rem !important;
}

.asl_content {
    padding: 13px 10px 15px 10px !important;
}

.asl_content h3 a {
    margin-bottom: 4px;
    font-weight: bold !important;
    font-size: 16px !important;
    font-size: 1.6rem !important;
}

@media (hover: hover) {
    .asl_content h3 a:hover {
        margin-bottom: 4px;
        font-weight: bold !important;
        font-size: 16px !important;
        font-size: 1.6rem !important;
    }
}

.asl_content .asl_desc {
    font-size: 14px !important;
    font-size: 1.4rem !important;
}

div.asl_r .results a span.overlap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

@media (hover: hover) {
    div.asl_r .results .item .asl_content h3 a:hover {
        line-height: inherit !important;
    }
}