@charset "UTF-8";
html {	font-size: 62.5%;}
:root {
    --text-color: #171717;
    --color-deep-green: #19931E;
    --color-bg-sub-green: #F4F7E4;
    --color-bg-object: #EBFAD7;
    --color-bg-and-mypage: #DAEFC5;
    --color-bg-light-yellow: #ffffea;
    --color-skyblue: #2A78D3;
    --color-pale-blue: #E2F0FF;
    --color-vermilion: #EF4B4B;
    --color-pale-vermilion: #FFF2F2;
    --color-accent-orange: #FD960A;
    --color-dark-gray: #707070;
}

a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

body {
	color: var(--text-color);
	font-size: 1.6rem;
    font-family:"Noto Sans JP", "Hiragino Sans","Helvetica Neue",Arial,"Meiryo",sans-serif;
}

.sp-block {
    display: block;
}

.pc-block {
    display: none;
}

.regular-text {
    font-weight: 300;
}

.medium-text {
    font-weight: 400;
}

.semibold-text {
    font-weight: 500;
}

.bold-text {
    font-weight: 600;
}

.align-center {
    text-align: center;
}

/* --- container --- */
.container {
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

/* --- header --- */
.sticky {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 100;
}

header {
    background-color: #fff;
    filter: drop-shadow(0 3px 6px rgb(0, 0, 0, 0.3));
}

.header-inner {
    height: 60px;
    margin: 0 auto;
    padding: 0 0 0 20px;
    display: flex;
    align-items: center;
}

.header-inner .logo {
    width: 155px;
    height: 28px;
}

.header-inner .logo a {
    display: block;
}

.header-inner .aeon-logo {
    width: 54px;
    height: 18px;
    margin: 3px 0 0 3px;
}

.header-inner .logo img,
.header-inner .aeon-logo img {
    width: 100%;
    height: auto;
}

.header-inner .account-menu {
    display: none;
}

.account-menu.show {
    display: block; /* showクラスがついたら表示 */
}

.mypage-text.change-color {
    color: var(--color-deep-green);
}


.header-inner .auth-area {
    transition: opacity 0.3s ease-out, color 0.3s ease-out;
}

.header-inner .auth-area {
    position: relative;
    width: 33px;
    height: 60px;
    margin: 0 63px 0 auto;
}

.header-inner .login.auth-area {
    width: 44px;
}

.header-inner .auth-area::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 41px;
    top: 9.5px;
    right: 0;
    background: #BABABA;
}

.header-inner .auth-area .auth-link {
    display: block;
}

/* login */
.header-inner .login.auth-area .auth-link::before {
    right: -10px;
}

/* logout */
.header-inner .logout.auth-area .auth-link::before {
    right: -15px;
}

.header-inner .auth-change {
    position: relative;
    height: 60px;
    text-align: center;
    background-position: center;
    transition: color 0.2s ease-in;
    cursor: pointer;
}

.header-inner .logout .auth-change {
    width: 33px;
    right: 15px;
}

.header-inner .login .auth-change {
    width: 33px;
    right: 12px;
}

.header-inner .auth-change::after {
    display: block;
    position: absolute;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
}

/* logout */
.header-inner .logout .auth-change::after {
    top: 6px;
    left: 3px;
    width: 27px;
    height: 34px;
}

/* login */
.header-inner .login .auth-link .auth-change {
    width: 44px;
}

.header-inner .login .auth-change::after {
    content: "";
    top: 7px;
    left: 6px;
    width: 33px;
    height: 33px;
    background: url(../images/common/account.png) no-repeat;
    background-size: 33px 33px;
    transition: opacity 0.2s ease-in;
    cursor: pointer;
}

.header-inner .login .auth-change-store.auth-change-store::after {
    content: "";
    top: 7px;
    left: 6px;
    width: 33px;
    height: 33px;
    background: url(../images/common/account_store.png) no-repeat;
    background-size: 33px 33px;
    transition: opacity 0.2s ease-in;
    cursor: pointer;
}

.auth-change:has(.account-menu.show)::after,
.header-inner .login .auth-change:hover::after {
    opacity: 0.6;
}

/* logout */
.header-inner .logout .auth-link .auth-change::after {
    background-image: url(../images/common/login.svg);
}

.header-inner .account-menu {
    position: absolute;
    right: -3px;
    bottom: -4px;
    min-width: 229px;
}

.header-inner .account-menu .menu-inner {
    position: absolute;
    min-width: 229px;
    padding: 19px 18px 10px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #BABABA;
    text-align: left;
    box-shadow: 0px 3px 6px rgb(0, 0, 0, 0.16);
}

.header-inner .account-menu .menu-inner .name {
    color: var(--color-deep-green);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.header-inner .account-menu .menu-inner ul {
    margin-top: 17px;
}

.header-inner .account-menu .menu-inner li {
    font-size: 1.6rem;
    font-weight: 600;
    border-top: 1px solid #ccc;
    letter-spacing: 0.05em;
    transition: color 0.2s ease-in;
}

.header-inner .account-menu .menu-inner li:hover {
    color: var(--color-deep-green);
}

.header-inner .account-menu .menu-inner li a::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    background-size: 30px 30px;
    transition: opacity 0.2s ease-in;
}

.header-inner .account-menu .menu-inner li:hover a::before {
    opacity: 0.6;
}


.header-inner .account-menu .menu-inner li:nth-child(1) a:before {
    background-image: url(../images/common/mypage.png);
}

.header-inner .account-menu .menu-inner li:nth-child(2) a:before {
    background-image: url(../images/common/logout.svg);
}

.header-inner .account-menu .menu-inner li a {
    position: relative;
    display: block;
    padding: 15px 0 15px 35px;
}

.header-inner .account-menu .menu-inner::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 13px;
    top: -13px;
    right: 15px;
    display: block;
    background: url(../images/common/bubble.png) no-repeat;
    background-size: 16px 13px;

}

.header-inner .text-wrap {
    width: 100%;
    position: absolute;
    bottom: 0;
    font-size: 0.9rem;
    font-weight: 600;
    white-space:nowrap;
    transition: color 0.2s ease-in;
    letter-spacing: 0;
}

.header-inner .text-wrap .mypage-text,
.header-inner .text-wrap .login-text {
    position: relative;
    left: -1px;
    bottom: 9px;
}

.header-inner .text-wrap span.new-member-text {
    display: none;
}

.header-inner .auth-change:hover .text-wrap {
    color: #19931E;
}

/* --- menu --- */
#nav { display: none;}
#nav-sp {
    display: none;
    position: relative;
    z-index: 101;
}

/* --- hamburger button --- */
#menu-wrap {
    position: absolute;
    top: 0;
    right: 0;
}

.menu-btn {
    position: fixed;
    top: 0;
    right: 16px;
    z-index: 103;
}

.menu-btn .inner {
    width: 33px;
    height: 60px;
    cursor: pointer;
}

.menu-btn.active {
    top: 0;
    right: 0;
    width: 65px;
    height: 60px;
    background-color: #fff;
}

.menu-btn.active .inner {
    position: absolute;
    top: 0;
    right: 16px;
}

.menu-btn span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 33px;
    height: 4px;
    background-color: var(--color-deep-green);
    border-radius: 4px;
    transition: all .4s;
}

.menu-btn span:nth-of-type(1) {
    margin-top: 9px;
}

.menu-btn span:nth-of-type(2) {
    margin-top: 21px;
}

.menu-btn span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 4px;
    background-color: var(--color-deep-green);
    border-radius: 4px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.menu-btn span:nth-of-type(3) {
    margin-top: 33px;
}

#menu-wrap .menu-text {
    position: absolute;
    width: 100%;
    bottom: 0;
    font-size: 0.9rem;
    font-weight: 600;
    white-space:nowrap;
    letter-spacing: 0.06em;   
}

#menu-wrap .menu-text::before {
    position: absolute;
    content: "メニュー";
    left: -1px;
    bottom: 9px;
    transition: color 0.2s ease-in;
}

#menu-wrap .menu-btn:hover .menu-text::before {
    color: var(--color-deep-green);
}

#menu-wrap .active .menu-text::before {
    display: none;
}

#menu-wrap .active .menu-text::after {
    color: var(--text-color);
    position: absolute;
    content: "閉じる";
    width: 30px;
    height: auto;
    left: 2px;
    bottom: 9px;
    text-align: center;
    transition: color 0.2s ease-in;
}

#menu-wrap:hover .active .menu-text::after {
    color: var(--color-deep-green); 
}

.menu-btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) scale(0);
    transform: translateY(8px) scale(0);
}

.menu-btn.active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-btn.active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.menu-btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) scale(0);
    transform: translateY(-8px) scale(0);
}

/* --- sp nav --- */
#sp-menu-wrap {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 106px 40px 100px;
    background: var(--color-deep-green);
    transition: background-color 0.3s ease;
    overflow-y: auto;
    z-index: 102;
}

#nav-sp ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    border-top: 1px solid #fff;
}

#nav-sp ul li:not(:last-child) {
    border-bottom: 1px solid #fff;
}

/* html SP用に並び替え */ 
#nav-sp li:nth-child(1) { order: 2; } /* ご利用ガイド 上から2番目に配置 */
#nav-sp li:nth-child(2) { order: 3; } /* よくある質問 上から3番目に配置 */
#nav-sp li:nth-child(3) { order: 4; } /* お問い合わせ 上から4番目に配置 */
#nav-sp li:nth-child(4) { order: 5; } /* 総合トップ 上から1番目に配置 */
#nav-sp li:nth-child(5) { order: 1; } /* トップページ 上から1番目に配置 */ 
#nav-sp li:nth-child(6) { order: 6; } /* ログイン・新規登録 (PC非表示) 上から5番目に配置 */
#nav-sp li:nth-child(7) { order: 7; } /* マイページ (PC非表示) 上から6番目に配置 */
#nav-sp li:nth-child(8) { order: 8; } /* ログアウト (PC非表示) 上から6番目に配置 */
#nav-sp ul li a {
    display: block;
    color: #fff;
    font-size: 2.0rem;
    font-weight: 600;
    padding: 27px 0;
    line-height: 1.5;
}

#nav-sp ul li span {
    position: relative;
    display: inline-block;
    padding: 0 34px 0 0;
}

#nav-sp ul li span::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    margin: -12px 0 0;
    width: 24px;
    height: 24px;
    background-image: url(../images/common/menu_arrow.svg);
    background-size: cover;
}

/* --- breadcrumb --- */
.breadcrumb {
    padding: 17px 20px 0;
}

.breadcrumb ul li {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

.breadcrumb ul li a {
    display: inline-block;
    position: relative;
    margin: 0 13px 0 0;
    padding: 0 12px 0 0;
    transition: opacity 0.2s ease-in;
}

.breadcrumb ul li a:hover {
    opacity: 0.6;
}

.breadcrumb ul li a::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 13px;
    background-image: url(../images/common/breadcrumb.png);
    background-size: 8px 13px;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
}

/* --- main --- */
main {
    position: relative;
    padding: 0 0 70px;
}

/* --- course-label --- */ 
ul.course-label > li {
    display: inline-block;
    padding-right: 10px;
}

ul.course-label > li:last-child {
    padding-right: 0;
}

ul.course-label > li > span {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 400;
    border-radius: 3px;
    height: 28px;
    padding: 2px 5px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

ul.course-label > li::after {
    content: '';
    display: inline-block;
    width: 0;           
    height: 28px;         
    color: #ccc;
    padding-left: 10px;
    border-right: 1px solid #ccc;
    vertical-align: top;
}

ul.course-label > li:last-child::after {
    content: none;
    border-right: none;
}

ul.course-label > li.completion > span,
ul.course-label > li.no-lecture > span {
    background-color: var(--color-dark-gray);
    color: #fff;
}

ul.course-label > li.payment > span {
    background-color: #fff;
    color: var(--color-deep-green);
    border: 1px solid var(--color-deep-green);
}

ul.course-label > li.type.regularly > span {
    background-color: var(--color-pale-vermilion);
    color: var(--color-vermilion);
    border: 1px solid var(--color-vermilion);
}

ul.course-label > li.type.trial > span {
    background-color: var(--color-pale-blue);
    color: var(--color-skyblue);
    border: 1px solid var(--color-skyblue);
}

ul.course-label > li.type.hereafter > span,
ul.course-label > li.type.ongoing > span {
    background-color: #71BC31;
    color: #fff;
}

ul.course-label > li.type.absence > span,
ul.course-label > li.type.timeoff > span {
    background-color: #fff;
    color: var(--color-vermilion);
    border: 1px solid var(--color-vermilion);
}

ul.course-label > li.type.oneday > span {
    background-color: #FFF4FE;
    color: #C357BE;
    border: 1px solid #C357BE;
}

ul.course-label > li.type.shortcourse > span {
    background-color: #FFFCDD;
    color: #CB7F05;
    border: 1px solid #CB7F05;
}

ul.course-label > li.type.free > span {
    background-color: #E8FFF3;
    color: #18B15E;
    border: 1px solid #18B15E;
}

/* --- footer --- */

footer {
    width: 100%;
}

.footer-inner {
    margin: 0 20px;
}

.footer-top {
    padding: 40px 0;
    background-color: #DAEFC5;
}

.footer-logo {
    width: 223px;
    height: auto;
    margin: 0 0 16px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-top .text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 40px;
}

.footer-top .text p {
    flex: 1;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.5;
}

.footer-top .text img {
    width: 70px;
    height: 70px;
}

.footer-nav {
    margin: 40px 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--color-dark-gray);
}

.footer-nav li.link {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}

.footer-nav li:last-child.link{
    margin: 0;
}

.footer-nav li.link span {
    position: relative;
    display: inline-block;
    padding: 0 28px 0 0;
}

.footer-nav li.link span::after {
    position: absolute;
    content: "";
    right: 0;
    width: 18px;
    height: 18px;
    background-image: url(../images/common/arrow_green.svg);
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.5s ease-out;
}

.footer-nav li.link .js-store-btn {
    position: relative;
    display: inline-block;
}

.footer-nav li.link .btn-stores-sp {
    color: #19931E;
    margin-top: 20px;
}   

.footer-nav li.link .js-store-btn::before,
.footer-nav li.link .js-store-btn::after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    inset: 8px 4px 0 auto;
    background-color: #fff;
    transition: rotate 0.3s ease-out;
    z-index: 2;
}

.footer-nav li.link .js-store-btn::after {
    rotate: 90deg;
}

.footer-nav li.link .js-store-btn.active::after {
    rotate: 0deg;
}

.footer-nav li.link .js-store-btn span::after {
    position: absolute;
    content: "";
    right: 0;
    width: 18px;
    height: 18px;
    background-color: #19931E;
    border-radius: 50%;
    background-image: none;
}

.footer-nav .area-wrapper {
    margin: 20px 0 0;
}

.footer-nav .area-wrapper .area-head,
.footer-nav .area-wrapper .prefecture {
    color: var(--color-deep-green);
    font-size: 1.5rem;
    font-weight: 400;
}

.footer-nav .area-wrapper .area-head {
    margin: 0 0 15px;
    padding: 0 0 8px;
    border-bottom: 1px solid var(--color-deep-green);
}

.footer-nav .area-wrapper .area-head,
.footer-nav .area-wrapper .prefecture {
    color: var(--color-deep-green);
    font-size: 1.5rem;
    font-weight: 400;
}

.footer-nav .prefecture-wrap {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 0 14px;
    gap: 0 15px;
}

.area-container.area-2 {
    margin: 20px 0 0;
}

.area-container.area-3 {
    margin: 20px 0 0;
}

.footer-nav .area-wrapper .prefecture {
    width: 67px;
}

.footer-nav .store-box {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    gap: 10px 20px;
}

.footer-nav .store-box li {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.footer-nav .store-box li a {
    position: relative;
    display: inline-block;
    padding: 0 15px 0 0;
}

.footer-nav .store-box li a::after {
    position: absolute;
    content: "";
    top: 2px;
    right: 0;
    width: 9px;
    height: 14px;
    background-image: url(../images/common/arrow_link.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.footer-top .sub-nav li {
    position: relative;
    font-size: 1.5rem;
    font-weight: 400;
}

.footer-top .sub-nav li:not(:last-child) {
    margin: 0 0 14px;
}

.footer-top .sub-nav li a,
.footer-top .group-site-nav li:nth-child(1) a {
    display: inline-block;
    position: relative;
    padding: 0 21px 0 0;
}

.footer-top .sub-nav li a::after,
.footer-top .group-site-nav li:nth-child(1) a::after {
    position: absolute;
    content: "";
    right: 0;
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
}

.footer-top .sub-nav li a::after {
    background-image: url(../images/footer/link_external.svg);
}

.footer-top .group-site-nav {
    margin: 20px 0 30px;
}

.footer-top .group-site-nav li {
    font-size: 1.4rem;
    font-weight: 400;
}

.footer-top .group-site-nav li:nth-child(1) a::after {
    background-image: url(../images/footer/link_external_red.svg);
}

.footer-top .group-site-nav li:not(:last-child) {
    margin: 0 0 14px;
}

.footer-top .sns-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 22px;
}

.footer-top .sns-nav a {
    display: inline-block;
}

.footer-top .sns-nav a img {
    width: 47px;
    height: 47px;
}

.footer-middle {
    padding: 30px 0;
}

.external-site-nav li {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 0 16px;
}

.external-site-nav li:last-child {
    margin: 0;
}

.footer-middle .footer-banner-nav {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0 0;
    gap: 10px 8px;
}

.footer-middle .footer-banner-nav li {
    width: calc((100% - 8px) /2);
}

.footer-middle .footer-banner-nav img {
    width: 100%;
    height: auto;
}

.footer-bottom .footer-inner {
    padding: 30px 0;
    border-top: 1px solid var(--color-dark-gray);
}

.footer-bottom .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-bottom .wrap a {
    display: block;
}

.footer-bottom .footer-aeon {
    width: 110px;
    height: auto;
}

.footer-bottom .footer-tree {
    width: 190px;
    height: auto;
}

.footer-bottom .copyright {
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    margin: 30px 0 0;
    letter-spacing: 0.06em;
}

.footer-nav li.link a,
.footer-nav li .js-store-btn,
.footer-top .sub-nav li a,
.footer-top .group-site-nav li a,
.footer-top .sns-nav a,
.external-site-nav li a,
.footer-middle .footer-banner-nav li a,
.footer-bottom .wrap a:hover .footer-aeon,
.footer-bottom a .footer-tree {
   transition: opacity 0.2s ease-in;
}

.footer-nav li.link a:hover,
.footer-top .sub-nav li a:hover,
.footer-top .group-site-nav li a:hover,
.footer-top .sns-nav a:hover,
.external-site-nav li a:hover,
.footer-middle .footer-banner-nav li a:hover,
.footer-bottom .wrap a:hover .footer-aeon,
.footer-bottom a:hover .footer-tree  {
    opacity: 0.6;
}

/* --- Page Top Button --- */
#btn-scroll-top {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    border: 2px solid #71BC31;
    border-radius: 100%;
    background: #fff;
    transform: translate3d(0,40px,0);
    background-image: url(../images/common/arrow_top.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 20px;
    opacity: .01;
    pointer-events: none;
    transition-property: opacity,transform,background-color;
    transition-timing-function: cubic-bezier(.17,.84,.44,1);
    transition-duration: .6s;
    box-shadow: 2px 3px 3px rgb(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 2;
}

#btn-scroll-top:hover {
    background-color: #71BC31;
    background-image: url(../images/common/arrow_top_on.svg);
}

#btn-scroll-top.is-show {
    transform: none;
    opacity: 1;
    pointer-events: auto;
}

/* --- button --- */

button {
    cursor: pointer;
}

.wrap-btn {
    position: relative;
}

.btn-center {
    display: flex;
    width: fit-content;
}

.btn-circle {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    width: 190px;
    height: 44px;
    margin: 0 auto;
    border-radius: 25px;
    letter-spacing: 0.05em;
}

a.btn-circle {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 auto;
    padding: 12px 0 0;
    text-align: center;
    cursor: pointer;
}

.btn-confirm {
    display: block;
    color: #fff;
    width: 125px;
    height: 44px;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 auto;
    padding: 9px 0 0;
    border-radius: 25px;
    text-align: center;
    border: 2px solid var(--color-deep-green);
    background: var(--color-deep-green);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button.btn-taril,
button.btn-cancel {
    color: var(--color-deep-green);
    font-size: 1.8rem;
    font-weight: 600;
    height: 44px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid var(--color-deep-green);
    border-radius: 25px;
    background-color: #fff;
    cursor: pointer;
}

.btn-detail {
    display: inline-block;
}

.btn-detail span {
    position: relative;
    display: block;
    font-size: 1.4rem;
    color: var(--color-deep-green);
    padding: 3px 25px 3px 5px;
    text-align: center;
    border: 1px solid var(--color-deep-green);
    background-color: #f2f6e1;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-detail span::after {
    position: absolute;
    content: "";
    top: 2px;
    right: 5px;
    width: 15px;
    height: 15px;
    background-image: url(../images/svg/arrow_green.svg);
    background-size: cover;
}

.btn-detail span:hover {
    color: #fff;
    background-color: var(--color-deep-green);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-detail span:hover::after {
    background-image: url(../images/svg/arrow_white.svg);
}

.btn-tell ,
button.btn-cancel,
button.btn-border,
.btn-circle,
a.btn-circle,
.btn-post-code {
    transition: opacity 0.2s ease-in;
}

.btn-tell:hover,
button.btn-cancel:hover,
button.btn-border:hover,
.btn-circle:hover,
a.btn-circle:hover,
.btn-post-code:hover {
    opacity: 0.7;
}

.btn-confirm:hover {
    color: var(--color-deep-green);
    border: 2px solid var(--color-deep-green);
    background-color: #fff;
}

.btn-border {
    position: absolute;
    width: 65px;
    color: var(--color-deep-green);
    font-size: 1.8rem;
    font-weight: 600;
    height: 34px;
    padding: 2px 2px 0 20px;
    background: #fff;
    border: 2px solid var(--color-deep-green);
    border-radius: 5px;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    line-height: normal;
}

.btn-border::after {
    position: absolute;
    content: "";
    top: 8px;
    left: 6px;
    width: 12px;
    height: 16px;
    background-image: url(../images/common/arrow_back.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-tell {
    display: block;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    width: 225px;
    height: 62px;
    margin: 0 auto;
    padding-top: 10px;
    background-color: var(--color-deep-green);
    text-align: center;
    border-radius: 72px;
    letter-spacing: 0.05em;
}

.btn-tell span {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    padding: 10px 0 0 22px;
}

.btn-tell span::before {
    position: absolute;
    content: "";
    left: 0;
    width: 18px;
    height: 19px;
    background: url(../images/common/tel.svg) no-repeat;
    background-size: 18px 19px;
}

.btn-closed {
    width: 190px;
    height: 44px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 auto;
    letter-spacing: 0.05em;
    border-radius: 25px;
    text-align: center;
    line-height: 44px;
    background-color: var(--color-dark-gray);
}

.btn-green {
    color: #fff;
    background: var(--color-deep-green);
}

.btn-square {
    display: inline-block;
    position: relative;
    color: var(--color-deep-green);
    font-size: 1.8rem;
    font-weight: 600;
    height: 34px;
    padding: 0 5px 3px 24px;
    background: #fff;
    border: 1px solid var(--color-deep-green);
    border-radius: 5px;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

/* firefox */
.firefox .btn-square {
    padding-bottom: 1px;
}

a.btn-square {
    padding: 2px 7px 0 20px;
    line-height: normal;
}

.btn-square::after {
    position: absolute;
    content: "";
    top: 8px;
    left: 6px;
    width: 12px;
    height: 16px;
    background-image: url(../images/common/arrow_back.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-mypage {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

a.btn-border:hover,
.btn-square:hover {
    color: #fff;
    background: var(--color-deep-green);
}

a.btn-border:hover::after,
.btn-square:hover::after {
    background-image: url(../images/common/arrow_back_on.svg);
}

.btn-search-again {
    width: 134px;
}

.wrap-btn .back-btn {
    position: absolute;
    top: 50%;
    left: 0;
    margin: -17px auto 0;
}

.pagination ul {
    display: flex;
    justify-content: center;
}

.pagination li a {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    color: var(--color-deep-green);
    border: 1px solid var(--color-deep-green);
    border-radius: 5px;
    text-align: center;
    line-height: 1.6;
    padding: 1px 0;
    margin: 0 4px;
    font-size: 1.8rem;
    font-weight: 600;
    transition: background-color 0.3s ease-in, 0.3s ease-out;
    background: #fff;
}

.pagination li.current a {
    color: #fff;
    background: var(--color-deep-green);
}

.pagination li.prev a::after {
    position: absolute;
    content: '';
    top: 6px;
    left: 10px;
    width: 16px;
    height: 28px;
    background: url(../images/common/arrow_back.svg) no-repeat 0 0;
    background-size: 12px 22px;
}

.pagination li.next a::after {
    position: absolute;
    content: '';
    top: 0px;
    left: 8px;
    width: 16px;
    height: 28px;
    background: url(../images/common/arrow_back.svg) no-repeat 0 0;
    background-size: 12px 22px;
    transform: rotate(180deg);
}

.pagination li a:hover {
    color: #fff;
    background-color: var(--color-deep-green);
}

.pagination li.prev a:hover::after,
.pagination li.next a:hover::after {
    background: url(../images/common/arrow_back_on.svg) no-repeat 0 0;
    background-size: 12px 22px;
}

.pagination li.prev a {
    margin: 0 10px 0 0;
}

.pagination li.next a {
    margin: 0 0 0 10px;
}

/* --- form --- */

input,
select,
button,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    font-family:"Noto Sans JP", "Hiragino Sans","Helvetica Neue",Arial,"Meiryo",sans-serif;
}

@media screen and (max-width: 340px) {
    html {
        font-size: 45%;
    }
    .footer-nav li.link span::after {
        width: 15px;
        height: 15px;
    }
}

@media screen and (min-width: 500px) {
    .footer-middle .footer-banner-nav li {
        width: calc((100% - 16px) /3);
    }
    
}

@media screen and (min-width: 744px) {

    .header-inner .menu-pc-none {
        display: none!important;
    }

    /* --- header --- */
    .header-inner .text-wrap .logout-text {
        right: auto;
    }  

    .sp-block {
        display: none;
    }

    .pc-block {
        display: block;
    }

    main {
        padding: 0 0 100px;
    }  

    /* --- container --- */

    .container {
        overflow: hidden;
        padding-top: 80px;
    }
    /* --- header --- */

    .sticky {
        height: 80px;
    }

    .header-inner {
        height: 80px;
        padding: 0 0 0 20px;
    }

    .header-inner .logo {
        width: 224px;
        height: 40px;
    }

    .header-inner .aeon-logo {
        width: 77px;
        height: 26px;
    } 

    .header-inner .auth-area {
        height: 80px;
    }

    .header-inner .auth-area {
        width: 44px;
        margin: 0 80px 0 auto;
    }

    .header-inner .auth-change {
        height: 80px;
    }

    .header-inner .logout .auth-change {
        width: 40px;
        right: 18px;
    }

    .header-inner .login .auth-change {
        right: 18px;
    }

    .header-inner .auth-area::before {
        top: 13.5px;
        height: 54px;
    }

    .header-inner .login .auth-change::after {
        top: 9px;
        left: 0;
        width: 44px;
        height: 44px;
        background-size: 44px 44px;
    }

    .header-inner .logout .auth-change::after {
        width: 33px;
        height: 42px;
        left: auto;
        top: 12px;
        right: 2px;
        transform: none;
    }    

    .header-inner .text-wrap,
    #menu-wrap .menu-text {
        font-size: 1.0rem;
        letter-spacing: 0.02em;
    }

    .header-inner .auth-area .auth-link::before {
        right: -18px;
        height: 50px;
    }

    .header-inner .login.auth-area .auth-link::before {
        right: -18px;
    }

    .header-inner .text-wrap .login-text {
        left: 1px;
        bottom: 12px;
    }

    .header-inner .text-wrap .mypage-text {
        left: -4px;
        bottom: 12px;
    }

    .header-inner .text-wrap .logout-text {
        bottom: 2px;
    }

    .menu-btn {
        right: 20px;
    }

    .menu-btn .inner {
        width: 42px;
        height: 80px;
    }

    .menu-btn span {
        width: 42px;
        height: 5px;
    }

    .menu-btn.active span:nth-of-type(2)::after {
        width: 42px;
        height: 5px;
    }

    .menu-btn.active {
        width: 80px;
        height: 80px;
    }

    .menu-btn.active .inner {
        right: 20px;
    }

    .menu-btn span:nth-of-type(1) {
        margin-top: 14px;
    }

    .menu-btn span:nth-of-type(2) {
        margin-top: 28px;
    }

    .menu-btn span:nth-of-type(3) {
        margin-top: 42px;
    } 

    #menu-wrap .active .menu-text::after {
        top: auto;
        bottom: 12px;
        left: 6px;
    } 

    #sp-menu-wrap {
        padding: 136px 40px 130px
    }

    #menu-wrap .menu-text::before {
        bottom: 12px;
    }

    #nav-sp ul {
        width: 295px;
        margin: 0 auto;
    }

    #nav-sp ul li a {
        font-size: 2.2rem;
        padding: 22px 0;
        line-height: normal;
    } 

    /* --- breadcrumb --- */

    .breadcrumb {
        padding: 17px 40px 0;
    }

    /* --- course-label --- */ 

    ul.course-label > li > span {
        height: 30px;
        font-size: 1.8rem;
        padding: 2px 6px;
    }

    ul.course-label > li::after {
        content: '';
        height: 30px;         
        border-right: 1px solid #ccc;
    } 

    /* --- footer --- */

    .footer-nav li.link .btn-stores-sp {
        display: none;
    }

    .footer-logo {
        width: 335px;
    }

    .footer-top .footer-inner,
    .footer-middle .footer-inner {
        margin: 0 auto;
        padding: 0 40px;
    }

    .footer-top .text {
        margin: -30px 0 0;
        align-items: flex-end;
        gap: 0 15px;
    }

    .footer-top .text p {
        flex: none;
    }

    .footer-nav {
        margin: 40px 0 30px;
        padding: 0 0 40px;
    }

    .footer-nav li.link-head:not(:last-child) {
        margin: 0px 0 12px;
    }

    .footer-nav li.link .js-store-btn::before,
    .footer-nav li.link .js-store-btn::after {
        content: none;
    } 

    .footer-nav li.link .js-store-btn span::after {
        background-image: url(../images/common/arrow_green.svg);
    }

    .footer-nav .prefectural-area {
        display: flex;
        flex-wrap: wrap;
    } 

    .footer-nav .prefectural-area {
        gap: 0 24px;
    }

    .footer-nav .area-wrapper {
        width: calc((100% - 24px) /2);
    }

    .footer-nav .area-container.area-2 {
        min-width: 100%;
        margin: 0;
    }

    .footer-nav .area-container.area-3 {
        width: fit-content;
        max-width: 270px;
        margin: 22px 0 0;
    }

    .footer-nav .prefecture-wrap {
        margin: 0 0 10px;
    }

    .footer-nav .store-box {
        gap: 8px 20px;
    }

    .footer-top .sub-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0 28px;
    }

    .footer-top .sub-nav li:not(:last-child) {
        margin: 0;
    }

    .footer-top .sub-nav li:not(:last-child)::before {
        position: absolute;
        content: "";
        right: -15px;
        width: 1px;
        height: 15px;
        background-color: var(--color-dark-gray);
    }

    .footer-top .group-site-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 20px;
        justify-content: center;
    }

    .footer-top .group-site-nav li:not(:last-child) {
        margin: 0;
    }

    .footer-top .group-site-nav li a {
        display: inline-block;
        position: relative;
    }

    .footer-top .group-site-nav li:not(:last-child) a::before {
        position: absolute;
        content: "";
        right: -10px;
        width: 1px;
        height: 16px;
        background-color: var(--color-dark-gray);
    }

    .footer-top .group-site-nav {
        max-width: 650px;
        margin: 16px auto 30px;
    }

    .footer-middle .footer-banner-nav {
        margin: 56px 0 0;
        gap: 10px 12px;
    }

    .footer-middle .footer-banner-nav li {
        width: calc((100% - 24px) /3);
    }

    .external-site-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 13px 20px;
    }

    .external-site-nav li {
        position: relative;
        margin: 0;
    }

    .external-site-nav li:not(:last-child)::after {
        position: absolute;
        content: "";
        right: -10px;
        width: 1px;
        height: 16px;
        background-color: var(--color-dark-gray);
    }

    .footer-middle {
        padding: 33px 0;
    }

    .footer-bottom .footer-inner {
        display: flex;
        align-items: center;
        margin: 0 40px;
    }

    .footer-bottom .wrap .footer-aeon {
        margin: 0 22px 0 0;

    }

    .footer-bottom .copyright {
        margin: 0 0 0 auto;
    }

    /* --- Page Top Button --- */

    #btn-scroll-top {
        bottom: 40px;
        right: 40px;    
    }

    /* --- button --- */

    .btn-tell {
        width: 303px;
        height: 77px;
        font-size: 2.4rem;
        padding-top: 14px;
    }

    .btn-tell span {
        font-size: 2.0rem;
        padding: 10px 0 0 29px;
    }

    .btn-tell span::before {
        width: 23px;
        height: 24px;
        background-size: 23px 24px;
    }

    .btn-closed {
        font-size: 2.4rem;
        width: 218px;
        height: 50px;
        line-height: 50px;
    }

    button.btn-taril {
        font-size: 2.4rem;
        height: 50px;
    }

    .btn-circle,
    button.btn-cancel {
        font-size: 2.4rem;
        width: 218px;
        height: 50px;
    }

    .confirm-button {
        width: 244px;
    }
    
    a.btn-circle,
    a.btn-confirm {
        font-size: 2.4rem;
    }

    a.btn-square {
        padding: 4px 9px 0 30px;
    }

    .btn-border {
        font-size: 2.4rem;
        height: 46px;
        padding: 3px 2px 0 27px;
    }

    .btn-square {
        height: 46px;
        padding: 0 9px 3px 30px;
        font-size: 2.4rem;
    }

    /* safari */
    .safari .btn-square {
        padding-bottom: 2px;
    }

    .btn-border::after {
        width: 16px;
        height: 28px;
        top: 12px;
        left: 8px;
    }

    a.btn-square::after {
        left: 8px;
    }

    .btn-square::after {
        width: 16px;
        height: 28px;
        top: 12px;
        left: 8px;
    }

    .course-list.transfer-course .pagination {
        padding-top: 15px;
    }

    .pagination li a {
        width: 46px;
        height: 46px;
        line-height: 1.6;
        padding: 2px 0;
        margin: 0 8px;
        font-size: 2.4rem;
    }

    .pagination li.prev a::after {
        top: 9px;
        left: 12px;
        width: 16px;
        height: 28px;
        background-size: 16px 28px;
    }
    
    .pagination li.next a::after {
        top: 9px;
        left: 16px;
        width: 16px;
        height: 28px;
        background-size: 16px 28px;
    }

    .pagination li.prev a:hover::after,
    .pagination li.next a:hover::after {
        background-size: 16px 28px;
    }

    .pagination li.prev a {
        margin: 0 16px 0 0;
    }
    
    .pagination li.next a {
        margin: 0 0 0 16px;
    }    

}

@media screen and (min-width: 1000px) {
    .container {
        overflow: inherit;
    }

    main {
        padding: 0 0 100px;
    } 

    /* --- breadcrumb --- */

    .breadcrumb {
        max-width: 1300px;
        margin: 0 auto;
        padding: 17px 50px 0;
    }

    /* --- footer --- */

    .footer-inner {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 50px;
    } 

    .footer-top .footer-inner,
    .footer-middle .footer-inner {
        margin: 0 auto;
        padding: 0;
    }

    .external-site-nav {
        max-width: 900px;
        margin: 0 auto;
    }

    .footer-nav .prefectural-area {
        gap: 0 40px;
    }

    .footer-nav .area-wrapper {
        width: calc((100% - 40px) /2);
    }

    .footer-nav .area-container.area-3 {
        max-width: 100%;
    }

    .footer-middle .footer-banner-nav {
        width: 844px;
        justify-content: center;
        margin: 20px auto 0;
    }

    .footer-middle .footer-banner-nav li {
        width: calc((100% - 36px) /4);
    }

    .footer-bottom .footer-inner {
        margin: 0 auto;
    }

    .footer-bottom .footer-inner {
        margin: 0 auto;
        padding: 30px 0 38px;
    }

    /* --- Page Top Button --- */

    #btn-scroll-top {
        bottom: 50px;
        right: 50px;    
    }
}

@media screen and (min-width: 1100px) {

    /* --- header --- */

    /* login */
    .header-inner .login .auth-link .auth-change::after {
        top: 9px;
        transform: none;
    }

    .header-inner {
        padding: 0 20px;
    }

    .header-inner .aeon-logo {
        margin: 4px auto 0 3px;
    }

    .header-inner .logout.auth-area {
        width: auto;
        margin: 0 0 0 50px;
    }

    .header-inner .login.auth-area {
        margin: 0 0 0 16px;
    }

    .header-inner .auth-area::before {
        top: 14px;
        left: -50px;
        height: 50px;
    }

    .header-inner .login.auth-area::before {
        left: -16px;
    }

    .header-inner .auth-area .auth-link {
        margin: 0;
    }

    .header-inner .login .auth-change {
        right: 0;
    }
    
    .header-inner .logout .auth-change {
        right: 0;
        display: flex;
        align-items: center;
        width: 100%;
        margin: 0;
        padding: 0 0 0 10px;
    }

    .header-inner .logout .auth-change::after {
        transition: opacity 0.2s ease-in;
    }

    .header-inner .logout .auth-change:hover::after {
        opacity: 0.6;
    }

    .header-inner .logout .text-wrap {
        position: relative;
        display: flex;
        flex-direction: column;
        font-size: 1.4rem;
        font-weight: 600;
        text-align: left;
    }

    .header-inner .text-wrap span.new-member-text {
        display: block;
        margin: 5px 0 0;
    }

    .header-inner .auth-change::after {
        top: 50%;
        left: -30px;
        transform: translateY(-50%);
    }

    .header-inner .logout .auth-change::after {
        top: 50%;
        left: -30px;
        transform: translateY(-50%);
    }

    .header-inner .auth-area .auth-link::before {
        left: -51px;
    }

    .header-inner .login.auth-area .auth-link::before {
        right: 0;
        left: -16px;
    }

    .header-inner .text-wrap .mypage-text {
        bottom: 16px;
    }

    .header-inner .text-wrap span {
        display: block;
    }

    .header-inner .text-wrap .login-text {
        position: initial;
    }

    .header-inner .account-menu {
        bottom: 4px;
    }

    #nav {
        display: block;
        margin: 0 20px 0 0;
    }

    #nav ul {
        display: flex;
        align-items: center;
    }

    #nav ul li {
        font-size: 1.6rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        transition: color 0.3s ease-out;
    }

    #nav ul li:hover {
        color: var(--color-deep-green);
    }

    #nav ul li:not(:first-child) {
        margin: 0 0 0 25px;
    }

    .header-nav li:nth-child(1) {} /* 店舗一覧 */
    .header-nav li:nth-child(2) {} /* ご利用ガイド */
    .header-nav li:nth-child(3) {} /* よくある質問 */
    .header-nav li:nth-child(4) {} /* お問い合わせ */

    #nav ul li:nth-child(5) { /* トップページ */
        font-size: 1.4rem;
        font-weight: 500;
        padding: 5px 6px 6px 4px;
        border: 1px solid var(--color-deep-green);
        transition: color 0.3s ease-out;
        letter-spacing: 0.02em;
    }

    #nav ul li:nth-child(5):hover {
        color: var(--color-deep-green);
    }

    .header-nav li:nth-child(6) { /* ログイン・新規登録 (PC非表示)*/
        display: none; 
    } 
}

@media screen and (min-width: 1200px) {

    /* --- breadcrumb --- */

    .breadcrumb {
        width: 1080px;
        margin: 0 auto;
        padding: 17px 0 0;
    }

    /* --- footer --- */

    .footer-top .footer-inner,
    .footer-middle .footer-inner {
        width: 900px;
        margin: 0 auto;
        padding: 0;
    }

    .footer-bottom .footer-inner {
        margin: 0 auto;
        padding: 30px 0 38px;
    }

    .footer-inner {
        width: 1080px;
        margin: 0 auto;
        padding: 0;
    }  
}


