/* common */
@media (max-width: 767px) {
    html {
        font-size: 10px;
        font-size: 2.66666vw;
    }
}
body {
    font-family: noto-sans-cjk-jp, sans-serif;
    color: #333;
    font-weight: 400;
    font-size: 14px;
}
a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.wrap {
    min-width: 1200px;
}
@media (max-width: 767px) {
    body {
        font-size: 1.4rem;
    }
    a {
        font-size: 1.4rem;
    }
    .wrap {
        min-width: 100%;
    }
}

/* 切り替え */
.pc_only {
    display: block;
}
.pc_only.inline_block {
    display: inline-block;
}
.pc_only.inline {
    display: inline;
}
.pc_only.table {
    display: table;
}
.pc_only.table_cell {
    display: table-cell;
}
.pc_only.flex {
    display: flex;
}
.sp_only,
.sp_only.inline_block,
.sp_only.inline,
.sp_only.table,
.sp_only.table_cell,
.sp_only.flex {
    display: none;
}
.ipad_sp_only {
    display: none;
}
@media (max-width: 1000px) {
    .ipad_sp_only {
        display: block;
    }
}
@media (max-width: 767px) {
    .pc_only,
    .pc_only.inline_block,
    .pc_only.inline,
    .pc_only.table,
    .pc_only.table_cell,
    .pc_only.flex {
        display: none;
    }
    .sp_only {
        display: block;
    }
    .sp_only.inline_block {
        display: inline-block;
    }
    .sp_only.inline {
        display: inline;
    }
    .sp_only.table {
        display: table;
    }
    .sp_only.table_cell {
        display: table-cell;
    }
    .sp_only.flex {
        display: flex;
    }
}

/* deco */
.main_deco_wrap {
    position: relative;
    height: 100%;
}
.main_deco1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 102px;
}
.main_deco2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 171px;
}
@media (max-width: 767px) {
    .main_deco1 {
        width: 5.1rem;
    }
    .main_deco2 {
        width: 8.55rem;
    }
}

/* header */
.header {
    width: 100%;
    height: 72px;
    background-color: #1f2a68;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.header_left,
.header_right {
    display: flex;
}
.header_right {
    align-items: center;
}
.header_before_login {
    display: inline-block;
}
.header_after_login {
    display: none;
}
.header_login .header_before_login {
    display: none;
}
.header_login .header_after_login {
    display: inline-block;
}
.menu_btn {
    width: 72px;
    height: 100%;
    background-color: #1f2a68;
    position: relative;
    cursor: pointer;
}
.menu_btn .menu_bar {
    display: block;
    height: 2px;
    width: 30px;
    background-color: #fff;
    position: absolute;
    left: 21px;
    transition: transform 0.3s;
}
.menu_btn .menu_bar:nth-child(1) {
    top: 25px;
}
.menu_btn .menu_bar:nth-child(2) {
    top: 35px;
}
.menu_btn .menu_bar:nth-child(3) {
    top: 45px;
}
.menu_btn.menu_open .menu_bar:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}
.menu_btn.menu_open .menu_bar:nth-child(2) {
    opacity: 0;
}
.menu_btn.menu_open .menu_bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
}
.header_logo_wrap {
    width: 470px;
    height: 100%;
    background: url(../img/header_logo_bg.svg) no-repeat top left / cover;
    display: flex;
    align-items: center;
    padding: 0 24px;
}
.header_logo {
    width: 46px;
}
.header_logo_txt {
    margin-left: 16px;
    line-height: 1.3;
    color: #000;
}
.header_logo_txt_en {
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
}
.header_logo_txt_ja {
    margin-top: 5px;
    font-size: 12px;
    display: inline-block;
}
.ecoroca_logo {
    width: 88px;
    position: relative;
    top: 8px;
}
.header_cart {
    width: 72px;
    height: 100%;
    background-color: #26b4e6;
    transition: background-color 0.3s;
    margin-left: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header_cart_icon_img {
    width: 32px;
}
.header_cart_num {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s;
    text-align: center;
    padding-right: 5px;
}
.header_cart_icon_img_on {
    display: none;
}
@media (min-width: 768px) {
    .header_cart:hover {
        background-color: #fff;
    }
    .header_cart:hover .header_cart_icon_img_on {
        display: inline;
    }
    .header_cart:hover .header_cart_icon_img_off {
        display: none;
    }
    .header_cart:hover .header_cart_num {
        color: #26b4e6;
    }
}
.header_user {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff url(../img/header_user_icon.svg) no-repeat center center / 22px 29px;
    margin-left: 24px;
}
.header_right_txt {
    line-height: 1;
    color: #fff;
    display: flex;
    align-items: center;
}
.header_logout {
    display: flex;
    color: #fff;
    line-height: 1;
    align-items: center;
}
.header_logout_icon {
    width: 20px;
    margin-right: 7px;
}
.header_right_txt_pop {
    display: none;
}
@media (min-width: 768px) {
    .header_logout:hover {
        text-decoration: underline;
    }
}
@media (max-width: 1000px) {
    .header_user {
        cursor: pointer;
    }
    .header_right_txt_pop {
        position: fixed;
        top: -73px;
        left: 0;
        width: 100%;
        height: 72px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        background-color: #1f2a68;
        padding: 0 24px;
        transition: top 0.3s;
        z-index: 99;
    }
    .header_right_txt_pop.header_user_on {
        top: 72px;
    }
}
@media (max-width: 767px) {
    .header_right_txt_wrap {
        display: none;
    }
    .header {
        height: 4.8rem;
    }
    .menu_btn {
        width: 4.8rem;
    }
    .menu_btn .menu_bar {
        height: 0.1rem;
        width: 1.5rem;
        left: 1.65rem;
    }
    .menu_btn .menu_bar:nth-child(1) {
        top: 1.85rem;
    }
    .menu_btn .menu_bar:nth-child(2) {
        top: 2.35rem;
    }
    .menu_btn .menu_bar:nth-child(3) {
        top: 2.85rem;
    }
    .header_logo_wrap {
        width: 23.6rem;
        height: 100%;
        background: url(../img/header_logo_bg_sp.svg) no-repeat top left / cover;
        padding: 0 0.85rem;
    }
    .header_logo {
        width: 2.9rem;
    }
    .header_logo_txt {
        margin-left: 0.55rem;
        line-height: 1;
    }
    .header_logo_txt_en {
        font-size: 0.9rem;
    }
    .header_logo_txt_ja {
        margin-top: 0.2rem;
        font-size: 0.9rem;
        font-weight: 400;
        letter-spacing: -0.1em;
    }
    .ecoroca_logo {
        width: 4.4rem;
        top: 0.4rem;
        margin: 0 0.2rem;
    }
    .header_cart {
        width: 4.8rem;
        background-color: #26b4e6;
        margin-left: 0.4rem;
    }
    .header_cart_icon_img {
        width: 2.4rem;
    }
    .header_cart_num {
        font-size: 0.9rem;
        padding-right: 0.5rem;
    }
    .header_user {
        width: 4rem;
        height: 4rem;
        background: #fff url(../img/header_user_icon.svg) no-repeat center center / 1.6rem 2.05rem;
        margin-left: 0;
    }
    .header_right_txt_pop {
        top: -50%;
        height: 12.5rem;
        display: flex;
        justify-content: center;
        padding: 0;
    }
    .header_right_txt_pop.header_user_on {
        top: 4.7rem;
    }
    .header_right_txt {
        display: block;
        text-align: center;
    }
    .header_logout {
        justify-content: center;
        margin-top: 2rem;
    }
    .header_logout_icon {
        width: 3.7rem;
        margin-right: 0.4rem;
    }
    .header_login_icon {
        width: 3rem;
        margin-right: 0.4rem;
    }
    .header_login_icon_sp {
        line-height: 0;
    }
}

/* content */
.content {
    display: flex;
    position: relative;
    padding-top: 72px;
    min-height: 100vh;
}
@media (max-width: 767px) {
    .content {
        padding-top: 4.8rem;
    }
}

/* nav */
.nav {
    width: 72px;
    transition: width 0.3s;
    position: fixed;
    top: 72px;
    left: 0;
    z-index: 100;
    background-color: #1f2a68;
}
.nav_content {
    padding: 28px 0;
    background-color: #1f2a68;
    width: 100%;
    height: calc(100vh - 72px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    scrollbar-width: none;
    z-index: 1;
    position: relative;
}
.nav_content::-webkit-scrollbar {
	width: 0px;
}
.nav_content::-webkit-scrollbar-track {
	background: transparent;
}
.nav_content::-webkit-scrollbar-thumb {
	background: transparent;
}

.content.menu_open .nav {
    width: 272px;
}
.nav_list {
    width: 100%;
}
.nav_list + .nav_list {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #636a96;
}
.nav_list a {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 20px 24px;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
}
@media (min-width: 768px) {
    .nav_list a:hover {
        background-color: #fff;
        color: #333;
    }
}
.nav_icon {
    width: 20px;
    margin: 0;
    display: inline-block;
}
.content.menu_open .nav_list_txt {
    margin-left: 8px;
}
.nav_sub_list > li > a {
    padding: 14px 24px 14px 54px;
}
.nav_list_another_tab {
    width: 12px;
    height: 12px;
    background: none;
    position: absolute;
    top: 0;
    right: 24px;
    bottom: 0;
    margin: auto 0;
}
.content.menu_open .nav_list_another_tab {
    background: url(../img/nav_another_tab_icon.png) no-repeat center center / 12px 12px;
}
.nav_list_txt,
.nav_sub_list {
    display: none;
}
.nav_white_area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: rgba(31, 42, 104, 0.85);
    opacity: 0;
    transition: opacity 0.3s, left 0s 0.3s;
}
.nav_white_area.nav_white_area_open {
    opacity: 1;
    left: 100%;
    transition: opacity 0.3s, left 0s;
}
.nav_white_area_list {
    padding: 148px 0 25px;
    display: none;
}
.nav_white_area_list a {
    font-size: 14px;
    height: 60px;
    display: flex;
    align-items: center;
    width: 100%;
    color: #fff;
    padding: 0 25px;
    transition: background-color 0.3s, color 0.3s;
}
@media (min-width: 768px) {
    .nav_white_area_list a:hover {
        background-color: #fff;
        color: #333;
    }
}
@media (max-width: 1200px) {
    .nav_bg {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 98;
        background-color: rgba(0, 0, 0, 0.5);
    }
}
@media (max-width: 767px) {
    .nav {
        width: 32.7rem;
        top: 4.7rem;
        left: -100%;
        transition: left 0.3s;
    }
    .nav_content {
        height: calc(100vh - 4.7rem);
        padding: 3.4rem 1.2rem 3.8rem;
    }
    .content.menu_open .nav {
        left: 0;
    }
    .content.menu_open .nav {
        width: 32.7rem;
    }
    .nav_list {
        padding: 0 1.2rem;
    }
    .nav_list + .nav_list {
        padding-top: 1.8rem;
        margin-top: 1.8rem;
        border-top: 0.1rem solid #636a96;
    }
    .nav_list > li + li {
        margin-top: 2rem;
    }
    .nav_list a {
        padding: 0;
    }
    .nav_icon {
        width: 2rem;
    }
    .nav_list_txt {
        margin-right: 1rem;
    }
    .nav_sub_list {
        padding-left: 3.4rem;
        margin-top: 2rem;
    }
    .nav_sub_list > li + li {
        margin-top: 2rem;
    }
    .nav_sub_list > li > a {
        padding: 0;
    }
    .nav_active_plus {
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto 0;
        width: 1.5rem;
        height: 1.5rem;
    }
    .nav_active_plus::before,
    .nav_active_plus::after {
        content: "";
        display: block;
        width: 2px;
        height: 100%;
        background-color: #fff;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .nav_active_plus::after {
        transform: rotate(90deg);
    }
    .nav_sub_list_sub_open .nav_active_plus::before {
        display: none;
    }
    .nav_list_another_tab {
        background: url(../img/nav_another_tab_icon.png) no-repeat center right / 1.2rem 1.2rem;
    }
    .content.menu_open .nav_list_another_tab {
        background: url(../img/nav_another_tab_icon.png) no-repeat center right / 1.2rem 1.2rem;
    }
    .nav_list_another_tab {
        width: 1.2rem;
        height: 1.2rem;
        right: 0;
        background: url(../img/nav_another_tab_icon.png) no-repeat center right / 1.2rem 1.2rem;
    }
    .content.menu_open .nav_list_another_tab {
        background: url(../img/nav_another_tab_icon.png) no-repeat center right / 1.2rem 1.2rem;
    }
    .nav_list_txt,
    .nav_sub_list {
        display: block;
    }
    .nav_sub_list_sub {
        padding-left: 4.2rem;
        display: none;
    }
    .nav_sub_list_sub li {
        padding-top: 2.5rem
    }
}

/* main */
.main {
    position: relative;
    width: 100%;
    transition: padding 0.3s;
    padding-left: 72px;
}
.content.menu_open .main {
    padding-left: 272px;
}
.main_inner {
    width: 100%;
    padding: 24px 24px 80px 24px;
}
@media (max-width: 1200px) {
    .content.menu_open .main {
        padding-left: 72px;
    }
}
@media (max-width: 767px) {
    .main {
        position: relative;
        padding-left: 0;
    }
    .content.menu_open .main {
        padding-left: 0;
    }
    .main_inner {
        padding: 1.2rem 1.2rem 8.5rem 1.2rem;
    }
}

/* pankuzu */
.pankuzu {
    color: #808080;
    font-size: 12px;
    margin-bottom: 45px;
}
.pankuzu a {
    color: #808080;
    text-decoration: underline;
    font-size: 12px;
    word-break: break-all;
}
@media (max-width: 767px) {
    .pankuzu {
        font-size: 1.2rem;
        margin-bottom: 4rem;
        padding-right: 5rem;
    }
    .pankuzu a {
        font-size: 1.2rem;
    }
}

/* content_box */
.content_box {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
    padding: 23px;
    border: 1px solid #ccc;
}
.content_box_ttl {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}
.content_ttl_icon {
    margin-right: 8px;
    width: 20px;
    margin-top: 4px;
}
@media (max-width: 767px) {
    .content_box {
        box-shadow: 0px 0px 0.8rem 0px rgba(0, 0, 0, 0.15);
        padding: 2rem 1.1rem;
        border: 0.1rem solid #ccc;
    }
    .content_box_ttl {
        font-size: 2rem;
    }
    .content_ttl_icon {
        margin-right: 0.4rem;
        width: 2rem;
        margin-top: 0.2rem;
    }
}

/* btn */
.btn_content {
    position: relative;
    z-index: 1;
}
.btn_l {
    width: 320px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}
.btn_s {
    width: 120px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}
.btn_col2_wrap {
    display: flex;
    justify-content: center;
}
.btn_col2_wrap .btn_anime + .btn_anime {
    margin-left: 24px;
}
.btn_anime {
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    cursor: pointer;
}
.btn_anime::after {
    content: "";
    display: block;
    width: 400%;
    height: 400%;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-24deg) translate(46%,3%);
    transform-origin: center left;
    transition: transform 0.4s;
}
.btn_white {
    color: #26b4e6;
    border: 1px solid #26b4e6;
    transition: color 0.4s;
}
.btn_white.btn_white_border {
    border: 1px solid #fff;
}
.btn_white::after {
    background-color: #26b4e6;
}
.btn_navy {
    color: #26b4e6;
    border: 1px solid #26b4e6;
    transition: color 0.4s;
}
.btn_navy::after {
    background-color: #1f2a68;
}
.btn_blue {
    color: #fff;
    border: 1px solid #26b4e6;
    transition: color 0.4s;
    background-color: #26b4e6;
    font-weight: 700;
}
.btn_blue::after {
    background-color: #fff;
}
.btn_gray {
    border: 1px solid #ccc;
    transition: color 0.4s, border-color 0.4s, background-color 0s;
}
.btn_gray::after {
    background-color: #808080;
}
@media (min-width: 768px) {
    .btn_anime:hover::after {
        transform: rotate(-24deg) translate(0%,0%);
    }
    .btn_white:hover {
        color: #fff;
    }
    .btn_blue:hover {
        color: #26b4e6;
    }
    .btn_gray:hover {
        color: #fff;
        border: 1px solid #808080;
        background-color: #808080;
        transition: color 0.4s, border-color 0.4s, background-color 0s 0.4s;
    }
    .btn_anime:hover::after {
        transform: rotate(-24deg) translate(0%,0%);
    }
    .btn_white:hover,
    .btn_navy:hover {
        color: #fff;
    }
}
@media (max-width: 767px) {
    .btn_l {
        width: 32.5rem;
        height: 4.8rem;
        border-radius: 10rem;
        margin: 0 auto;
    }
    .btn_s {
        width: 9rem;
        height: 4rem;
        border-radius: 10rem;
    }
    .btn_col2_wrap {
        display: block;
    }
    .btn_col2_wrap .btn_anime + .btn_anime {
        margin: 1.2rem auto 0;
    }
    .btn_anime::after {
        display: none;
    }
    .btn_white {
        border: 0.1rem solid #26b4e6;
    }
    .btn_white.btn_white_border {
        border: 0.1rem solid #fff;
    }
}

/* form */
.form_input {
    padding: 5px 8px;
    border: 1px solid #ccc;
    height: 32px;
}
.form_select {
    -webkit-appearance: none;
	-moz-appearance: none;
    appearance: none;
    background: url(../img/form_select_arrow.png) no-repeat center right 8px / 10px 9px;
}
.input_number_wrap {
    position: relative;
}
.input_number {
    border: 1px solid #ccc;
    width: 100%;
    height: 100%;
    text-align: right;
    padding: 0 6px;
}
.input_number::-webkit-inner-spin-button {
    margin-left: 8px;
    transform: scale(1.2);
    position: relative;
    z-index: 1;
    opacity: 0;
}
.input_number_arrow_top {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid #26b4e6;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    top: -3px;
    right: 7px;
}
.input_number_arrow_bottom {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 9px solid #26b4e6;
    border-bottom: 9px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    top: 18px;
    right: 7px;
}
@-moz-document url-prefix() {
    .input_number_arrow_top,
    .input_number_arrow_bottom {
        display: none;
    }
}
input[type="checkbox"]:focus {
    outline: none;
}
::-webkit-calendar-picker-indicator {
    background: url(../img/calendar_icon.svg) no-repeat center center / 16px 16px;
}
@media (max-width: 767px) {
    .form_input {
        padding: 1.3rem 1.2rem;
        border: 0.1rem solid #ccc;
        height: auto;
    }
    .form_select {
        background: url(../img/form_select_arrow.png) no-repeat center right 1.2rem / 1rem 0.9rem;
    }
    .input_number {
        border: 0.1rem solid #ccc;
        padding: 0 2rem 0 0.8rem;
    }
    .input_number_arrow_top {
        border-top: 0.85rem solid transparent;
        border-bottom: 0.85rem solid #26b4e6;
        border-left: 0.5rem solid transparent;
        border-right: 0.5rem solid transparent;
        top: 0.2rem;
        right: 0.8rem;
    }
    .input_number_arrow_bottom {
        border-top: 0.85rem solid #26b4e6;
        border-bottom: 0.85rem solid transparent;
        border-left: 0.5rem solid transparent;
        border-right: 0.5rem solid transparent;
        top: 2.3rem;
        right: 0.8rem;
    }
    ::-webkit-calendar-picker-indicator {
        background: url(../img/calendar_icon.svg) no-repeat center center / 1.6rem 1.6rem;
    }
}

/* product_info */
.product_info {
    display: flex;
}
.product_info_img_wrap {
    display: flex;
    align-items: flex-start;
}
.product_info_img {
    width: 134px;
}
.product_info_txt_area_wrap {
    display: flex;
    flex: 1;
    margin-left: 22px;
}
.product_info_txt_area1 {
    width: 46.3%;
}
.product_info_txt_area2 {
    margin-left: 24px;
    flex: 1;
}
.product_info_txt_area1 dt {
    width: 44px;
}
.product_info_txt_area2 dt {
    width: 30px;
}
.product_info_txt {
    display: flex;
}
.product_info_txt + .product_info_txt {
    margin-top: 7px;
}
.product_info_txt dt {
    margin-right: 16px;
}
.product_info_txt_blue {
    color: #26b4e6;
    font-size: 18px;
    font-weight: 700;
}
.product_info_txt_price {
    align-items: flex-end;
}
@media (max-width: 767px) {
    .product_info_img {
        width: 10rem;
    }
    .product_info_txt_area_wrap {
        display: block;
        margin-left: 0.8rem;
    }
    .product_info_txt_area1 {
        width: 100%;
    }
    .product_info_txt_area2 {
        width: 100%;
        margin-left: 0;
    }
    .product_info_txt_area1 + .product_info_txt_area2 {
        margin-top: 0.75rem;
    }
    .product_info_txt_area1 dt {
        width: 4.4rem;
    }
    .product_info_txt_area2 dt {
        width: 4.4rem;
    }
    .product_info_txt + .product_info_txt {
        margin-top: 0.75rem;
    }
    .product_info_txt dt {
        margin-right: 0.6rem;
    }
    .product_info_txt_blue {
        font-size: 1.6rem;
    }
    .product_info_txt.product_info_txt_price_l {
        margin-top: 0.2rem;
    }
}


/* pager */
.pager {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.pager_list_wrap {
    display: flex;
    align-items: center;
}
.pager_list_arrow {
    font-size: 24px;
    line-height: 1;
    padding: 0 24px;
    cursor: pointer;
}
.pager_list_arrow_non {
    color: #ccc;
    cursor: auto;
}
.pager_list {
    display: flex;
    align-items: center;
}
.pager_list .pager_num {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
}
.pager_num_active {
    background-color: #26b4e6;
    color: #fff;
}
.pager_list .pager_num + .pager_num {
    margin-left: 7px;
}
.pager_dot {
    margin: 0 10px;
}
.pager_top {
    margin-top: -8px;
}
.pager_bottom {
    margin-top: 16px;
}
@media (max-width: 767px) {
    .pager {
        display: block;
    }
    .pager_list_wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .pager_list_arrow_wrap {
        display: flex;
        margin-top: 0.75rem;
    }
    .pager_list_arrow {
        font-size: 2.4rem;
        padding: 0;
        width: 4rem;
        height: 4rem;
        border: 0.1rem solid #ccc;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .pager_list_arrow_prev,
    .pager_list_arrow_prev_first {
        padding: 0 0.2rem 0.6rem 0;
    }
    .pager_list_arrow_next,
    .pager_list_arrow_next_last {
        padding: 0 0 0.6rem 0;
    }
    .pager_list_arrow + .pager_list_arrow {
        margin-left: 0.75rem;
    }
    .pager_top {
        margin-top: 1.2rem;
    }
    .pager_bottom {
        margin-top: 1.2rem;
    }
}

/* order_step */
.order_step {
    display: flex;
    width: 100%;
    border: 1px solid #1f2a68;
    overflow: hidden;
    margin-bottom: 80px;
}
.order_step_txt {
    width: 100%;
    position: relative;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1f2a68;
    font-weight: 700;
}
.order_step_txt + .order_step_txt {
    padding-left: 14px;
}
.order_step_txt:nth-child(1) {
    z-index: 4;
}
.order_step_txt:nth-child(2) {
    z-index: 3;
}
.order_step_txt:nth-child(3) {
    z-index: 2;
}
.order_step_txt:nth-child(4) {
    z-index: 1;
}
.order_step_txt::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-top: 1px solid #1f2a68;
    border-right: 1px solid #1f2a68;
    transform: rotate(45deg);
    position: absolute;
    right: -13px;
    top: 50%;
    margin-top: -12px;
}
.order_step_txt:last-child::after {
    display: none;
}
.order_step_txt_now {
    color: #fff;
    background-color: #1f2a68;
}
.order_step_txt_now::after {
    background-color: #1f2a68;
}
@media (max-width: 767px) {
    .order_step {
        border: 0.1rem solid #1f2a68;
        margin-bottom: 4rem;
    }
    .order_step_txt {
        height: 5.65rem;
        text-align: center;
        line-height: 1.25;
        letter-spacing: -0.07em;
    }
    .order_step_txt + .order_step_txt {
        padding-left: 1rem;
    }
    .order_step_txt::after {
        width: 4rem;
        height: 4rem;
        border-top: 0.1rem solid #1f2a68;
        border-right: 0.1rem solid #1f2a68;
        transform: rotate(45deg) skew(30deg,30deg);
        position: absolute;
        right: -1.7rem;
        margin-top: -2rem;
    }
    .order_step_txt_inner {
        position: relative;
        z-index: 1;
    }
    .order_step_txt_en {
        font-size: 1rem;
    }
    .order_step_txt:last-child::after {
        display: none;
    }
    .order_step_txt_now {
        color: #fff;
        background-color: #1f2a68;
    }
    .order_step_txt_now::after {
        background-color: #1f2a68;
    }
}

/* footer */
.footer {
    width: 100%;
    height: 40px;
    background-color: #e6e6e6;
    padding: 13px 0;
    position: relative;
}
.footer_txt {
    text-align: center;
    color: #808080;
    font-size: 12px;
    line-height: 1;
}
.page_top {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    background-color: #1f2a68;
    position: absolute;
    top: -20px;
    right: 24px;
    transform: rotate(-90deg);
}
.page_top_arrow {
    display: inline-block;
    margin-top: -8px;
}
@media (max-width: 767px) {
    .footer {
        height: 4rem;
        background-color: #e6e6e6;
        padding: 1.4rem 0;
    }
    .footer_txt {
        font-size: 1rem;
    }
    .page_top {
        width: 4rem;
        height: 4rem;
        color: #fff;
        font-size: 2.4rem;
        top: -5.2rem;
        right: 1.2rem;
    }
    .page_top_arrow {
        margin-top: -0.8rem;
    }
}
