/*--------------------------------------------------------------------
  font-color
--------------------------------------------------------------------*/
.white {
    color: #ffffff;
}

.black {
    color: #000000;
}

.sumi {
    color: #333333;;
}

.gray {
    color: #666666;
}

.blue {
    color: #0c5fad;
}

.red {
    color: #eb332f;
}

.pink {
    color: #e44f6f;
}

.orange {
    color: #fb8c00;
}

/*--------------------------------------------------------------------
  font-family
--------------------------------------------------------------------*/
.font-jp {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

/*--------------------------------------------------------------------
  font-size
--------------------------------------------------------------------*/
.text--56 {
    font-size: 5.6rem;
}

.text--48 {
    font-size: 4.8rem;
}

.text--40 {
    font-size: 4rem;
}

.text--36 {
    font-size: 3.6rem;
}

.text--32 {
    font-size: 3.2rem;
}

.text--30 {
    font-size: 3rem;
}

.text--28 {
    font-size: 2.8rem;
}

.text--24 {
    font-size: 2.4rem;
}

.text--22 {
    font-size: 2.2rem;
}

.text--20 {
    font-size: 2rem;
}

.text--18 {
    font-size: 1.8rem;
}

.text--16 {
    font-size: 1.6rem;
}

.text--15 {
    font-size: 1.5rem;
}

.text--14 {
    font-size: 1.4rem;
}

.text--12 {
    font-size: 1.2rem;
}

.text--11 {
    font-size: 1.1rem;
}

.text--10 {
    font-size: 1rem;
}

/*--------------------------------------------------------------------
  textlink
--------------------------------------------------------------------*/
.textlink {
    color: #333333;;
    display: inline-block;
    text-decoration: underline;
}

.textlink:hover {
    text-decoration: none;
}

/*--------------------------------------------------------------------
  background
--------------------------------------------------------------------*/
.bg_white {
    background-color: #ffffff;
}

/*--------------------------------------------------------------------
  border
--------------------------------------------------------------------*/
.bd_orange {
    border-top: 1px solid #fb8c00;
}

.bd_dot_gray {
    border-top: 1px dotted #B9B9B9;
}

/*--------------------------------------------------------------------
  inner
--------------------------------------------------------------------*/
.inner {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: content-box;
    position: relative;
    z-index: 1;
}

/*--------------------------------------------------------------------
  contents
--------------------------------------------------------------------*/
.contents__wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 980px;
    margin: 40px auto 0;
    padding: 0 5%;
    box-sizing: content-box;
}

.contents__wrap .contents__ttl {
    font-size: 2.1rem;
    /* font-weight: 700; */
}

.contents__wrap .contents__ttl:nth-of-type(n+2) {
    margin-top: 20px;
}

.contents__wrap .contents__box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
}

.contents__wrap .contents__box:nth-of-type(n+2) {
    margin-top: 5px;
}

.contents__wrap .contents {
    width: 71.4286%;
    max-width: 700px;
}

.contents__wrap .sidebar {
    width: 25.52%;
    max-width: 250px;
}

.contents__wrap .sidebar__poikatsu_world {
    margin-bottom: 42px;
}

.contents__wrap .sidebar__poikatsu_world_link {
    transition: 0.2s ease-in-out;
}

.contents__wrap .sidebar__poikatsu_world_link:hover {
    opacity: 0.8;
    box-shadow: 0 1px 0 0 #dedede;
}

.contents__wrap .sidebar__list>li {
    margin-top: 8px;
}

.contents__wrap .sidebar__list>li a {
    display: flex;
    align-items: center;
    color: #333333;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 0 0 #dddddd;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    line-height: 1;
    width: 100%;
    padding: 15px;
    transition: 0.2s ease-in-out;
}

.contents__wrap .sidebar__list>li a:hover {
    opacity: 0.8;
    box-shadow: 0 1px 0 0 #dddddd;
}

.contents__wrap .sidebar__list>li a i {
    display: inline-flex;
    margin-right: 10px;
    width: 20px;
}

.contents__wrap .sidebar__list>li a i img {
    margin: auto;
    width: 16px;
}

.contents__wrap .sidebar__list>li a i img.xsmall {
    width: 6px;
}

.contents__wrap .sidebar__list>li a i img.small {
    width: 12px;
}

.contents__wrap .sidebar__list>li a i img.large {
    width: 100%;
}

.contents__wrap .sidebar__bnr>li {
    margin-top: 8px;
}

.contents__wrap .sidebar__bnr>li a {
    display: flex;
    border-radius: 6px;
    box-shadow: 0 2px 0 0 #dddddd;
    font-size: 0;
    width: 100%;
    transition: 0.2s ease-in-out;
}

.contents__wrap .sidebar__bnr>li a:hover {
    opacity: 0.8;
    box-shadow: 0 1px 0 0 #dddddd;
}

.contents__wrap .sidebar__bnr>li a img {
    width: 100%;
}

.contents__wrap .sidebar__box {
    color: #333333;
    background-color: #ffffff;
    border-radius: 6px;
    border-top: 6px solid #f39800;
    box-shadow: 0 2px 0 0 #dddddd;
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: left;
    margin-top: 8px;
    padding: 20px;
    width: 100%;
}

.contents__wrap .sidebar__box__form textarea {
    background: #F8F8F8;
    border: 1px solid #B9B9B9;
    border-radius: 6px;
    margin-top: 15px;
    padding: 15px;
    width: 100%;
}

.contents__wrap .sidebar__box__form button {
    display: block;
    color: #ffffff;
    background-color: #f39800;
    border: none;
    border-radius: 28px;
    box-shadow: 0 2px 0 0 #dddddd;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 48px;
    margin: 10px auto 0;
    padding: 0;
    width: 76%;
    max-width: 160px;
    transition: 0.2s ease-in-out;
}

.contents__wrap .sidebar__box__form button:hover {
    opacity: 0.8;
    box-shadow: 0 1px 0 0 #dddddd;
}

.contents__wrap .sidebar__box .inquiries__btn {
    text-align: center;
}

.contents__wrap .sidebar__box .inquiries__btn a {
    display: block;
    color: #ffffff;
    background-color: #f39800;
    border: none;
    border-radius: 28px;
    box-shadow: 0 2px 0 0 #dedede;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 48px;
    margin: 10px auto 0;
    padding: 0;
    width: 76%;
    max-width: 160px;
    transition: 0.2s ease-in-out;
}

.contents__wrap .sidebar__box .success__btn a:hover {
    opacity: 0.8;
    box-shadow: 0 1px 0 0 #dedede;
}

.contents__wrap .sidebar__sale__tag {
    color: #ffffff;
    background-color: #eb332f;
    border-radius: 6px;
    font-size: 1.3rem;
    line-height: 1;
    vertical-align: middle;
    margin-left: 0.5em;
    padding: 2px 6px;
    position: relative;
    top: -2px;
}

.contents__wrap .sidebar__sale__list {
    margin-top: 8px;
}

.contents__wrap .sidebar__sale__list>li {
    width: 100%;
}

.contents__wrap .sidebar__sale__list>li:nth-of-type(n+2) {
    margin-top: 12px;
}

.contents__wrap .sidebar__sale__list>li a {
    display: block;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 0 0 #dddddd;
    width: 100%;
    padding: 25px 20px 15px;
    transition: 0.2s ease-in-out;
}

.contents__wrap .sidebar__sale__list>li a:hover {
    opacity: 0.8;
    box-shadow: 0 1px 0 0 #dddddd;
}

.contents__wrap .sidebar__sale__list>li a .sidebar__sale__list__thumb {
    width: 112px;
    height: 112px;
    margin: auto;
}

.contents__wrap .sidebar__sale__list>li a .sidebar__sale__list__thumb .campaign {
    width: 112px;
    height: 112px;
    margin: auto;
    margin-bottom: 8px;
}

.contents__wrap .sidebar__sale__list > li a .sidebar__sale__list__countdown {
    color: #eb332f;
    border: 1px solid #eb332f;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
}

  .contents__wrap .sidebar__sale__list > li a .sidebar__sale__list__ttl {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 10px;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 1;
}


.contents__wrap .sidebar__sale__list > li a .sidebar__sale__list__txt {
    color: #666666;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 5px 0 15px;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2;
}

.contents__wrap .sidebar__sale__list > li a .sidebar__sale__list__linethrough {
    color: #666666;
    font-size: 1.8rem;
    line-height: 1;
    text-align: center;
    text-decoration: line-through;
  }

.contents__wrap .sidebar__sale__list > li a .sidebar__sale__list__point {

    color: #eb332f;

    font-size: 2.1rem;

    line-height: 1.2;

    font-weight: 700;

    text-align: center;

}

.contents__wrap .sidebar__sale__list > li a .sidebar__sale__list__point.arrow {

    position: relative;

    vertical-align: middle;

}

.contents__wrap .sidebar__sale__list > li a .sidebar__sale__list__point.arrow::before, .contents__wrap .sidebar__sale__list > li a .sidebar__sale__list__point.arrow::after {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    left: 0;

    margin: auto;

    vertical-align: middle;


}

.contents__wrap .sidebar__sale__list > li a .sidebar__sale__list__point.arrow::before {

    left: 19px;

    box-sizing: border-box;

    width: 12px;

    height: 12px;

    border: 6px solid transparent;

    border-left: 9px solid #333333;

  }

  .contents__wrap .sidebar__sale__list > li a .sidebar__sale__list__point.arrow::after {

    left: 10px;

    width: 0px;

    height: 3px;

    border-left: 9px solid #333333;

  }


.contents__wrap .sidebar__sale__btn a {
    display: block;
    color: #ffffff;
    background-color: #f39800;
    border: none;
    border-radius: 24px;
    box-shadow: 0 2px 0 0 #dddddd;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    white-space: nowrap;
    margin: 12px auto 40px;
    padding: 0;
    width: 80%;
    transition: 0.2s ease-in-out;
}

.contents__wrap .sidebar__sale__btn a:hover {
    opacity: 0.8;
    box-shadow: 0 1px 0 0 #dddddd;
}
/* main  */
html {
    scroll-behavior: smooth;
}
main[class] {
    /* min-width: 1080px; */
    min-width: 1024px;
}
main[class] .header__breadcrumb ol {
  width: calc(100% - 40px);
  max-width: 1200px;
  padding-left: 0;
  padding-right: 0;
}
main[class] .textlink {
    display: inline;
    color: #FF5A00;
    font-weight: 700;
    text-decoration: underline;
    vertical-align: top;
    cursor: pointer;
}
main[class] .contents__textlink > *:not(:first-child) {
    position: relative;
    margin-left: 8px;
    padding-left: calc(8px + 0.5rem);
  }
  main[class] .contents__textlink > *:not(:first-child)::before {
    content: "/";
    position: absolute;
    left: 0;
    color: #908d8d;
    font-weight: 300;
    text-decoration: none;
  }
main[class] .textlink.blank::after {

    content: "";

    display: inline-block;

    position: relative;

    bottom: -2px;

    width: 1em;

    height: 1em;

    margin-left: 2px;

    line-height: inherit;

    text-decoration: underline;

    background: url("/images/common/ico_external_or.svg") center center/contain no-repeat;

}
main[class] strong.strong {

    color: #eb332f;

    font-weight: 700;
}

main[class] .pageHead {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100vw;
    min-width: 1024px;
    height: clamp(360px, calc(400 / 1366 * 100vw), 400px);
    margin: 0 min(calc(50% - 50vw), -20px);
    text-align: center;
    overflow: hidden;
    box-shadow: inset 0 -8px 32px rgba(116, 33, 15, 0.24), inset 0 8px 32px rgba(116, 33, 15, 0.24);
  }
  main[class] .pageHead::before, main[class] .pageHead::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-mask: url("/images/common/head_deco.svg") bottom center repeat-x;
    mask-image: url("/images/common/head_deco.svg");
    background-color: #f6edd9;
    mask-repeat: repeat-x;
    mask-position: bottom center;
    mask-size: auto 24px;
    width: 100%;
    height: 100%;
    z-index: 9;
  }
  main[class] .pageHead::before {
    top: -1px;
    transform: rotate(180deg);
  }
  main[class] .pageHead::after {
    bottom: -1px;
  }
  main[class] .pageHead__ttl {
    line-height: 1.4;
    text-shadow: 0px 0px 40px rgba(255, 255, 255, 0.8), 0px 0px 8px rgba(255, 255, 255, 0.8);
  }
  main[class] .pageHead__ttl :not([class]) {
    color: #74210f;
    font-size: 56px;
    font-weight: 900;
    margin: 0;
  }
  main[class] .pageHead__ttl .sub {
    margin-top: 4px;
    color: #fb8c00;
    font-size: 24px;
    font-weight: 900;
  }
  main[class] .pageHead__deco {
    position: absolute;
  }

main[class] .contents {
    width: 100%;
    max-width: unset;
}

main[class] .contents * {
    font-family: "M PLUS 1", sans-serif;
}
main[class] .contents__ttl {
    color: #74210F;
    text-align: left;
}
main[class] .contents__ttl + *:not(.contents__btn) {
    margin-top: 16px;
}
main[class] .contents__textlink {
    margin-top: 32px;
    text-align: center;
}
main[class] .contents__wrap {
    width: calc(100% - 40px);
    max-width: 1200px;

    padding: 0;

    /* margin-top: 8px; */
    margin-top: 0;

    margin-left: auto;

    margin-right: auto;

    margin-bottom: 0;
}
header.simple ~ main[class] .contents__wrap {
    margin-top: 32px;
}
main[class] .contents__box {
    padding: 56px 0 48px;
    border-radius: 16px;
    overflow: hidden;
}
main[class] .contents__box:nth-of-type(n+2) {
    margin-top: 0;
    padding-top: 40px;
}
main[class] .contents__box.pb-0 {
    padding-bottom: 0;
}
main[class] .contents__box__cv {
    width: calc(100% - 40px);
    max-width: 912px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
main[class] .contents__box__cv > * + * {
    margin-top: 16px;
}
main[class] .contents__box__cv > p {
    font-size: 14px;
}
main[class] .contents__box__inner {

    width: 100%;

    max-width: 912px;

    margin-left: auto;

    margin-right: auto;

}
main[class] .contents__box__txt {

    font-size: 1.4rem;

    line-height: 1.8;
}
main[class] .contents__box__txt > * + * {
    margin-top: 8px;
}
main[class] .contents__box__txt + * {
    margin-top: 32px;
}
main[class] .contents__box__ttl {

    display: flex;

    gap: 8px;

    flex-direction: column;

    align-items: center;

    font-size: 1.8rem;

    font-weight: 700;

    line-height: 1.4;

    text-align: center;

}
main[class] .contents__box__ttl + * {
    margin-top: 16px;
}
main[class] .contents__box__ttl > i {

    max-width: 40px;

}
main[class] .contents__btn {

    width: 100%;

    max-width: 300px;

    margin-left: auto;
    margin-right: auto;

}
main[class] .contents__btn__wrap {

    display: flex;

    gap: 16px;

    justify-content: center;

    margin-top: 24px;

  }

  main[class] .contents__btn__wrap > .contents__btn {

    margin-top: 0;

    margin-left: 0;

    margin-right: 0;

  }

  main[class] .contents__btn button, main[class] .contents__btn a {

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

    width: 100%;

    min-height: 48px;

    padding: 12px 0;

    color: #fff;

    font-size: 1.4rem;

    font-weight: 700;

    border: none;

    border-radius: 100px;

    background: #e44f6f;

    cursor: pointer;

    filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.16));

  }

  main[class] .contents__btn button:hover, main[class] .contents__btn a:hover {

    opacity: 0.6;

  }

  main[class] .contents__btn button:disabled, main[class] .contents__btn a:disabled {

    background: #dddddd;

    cursor: auto;

    filter: none;

  }

  main[class] .contents__btn button:disabled:hover, main[class] .contents__btn a:disabled:hover {

    opacity: 1;

  }

  main[class] .contents__btn button::after, main[class] .contents__btn a::after {

    content: "";

    display: block;

    position: absolute;

    width: 0.8rem;

    height: 0.8rem;

    top: 50%;

    right: 20px;

    border-width: 0.2rem;

    border-color: #fff;

    border-right-style: solid;

    border-bottom-style: solid;

    transform: translateY(-50%) rotate(-45deg);

  }

  main[class] .contents__btn.orange button, main[class] .contents__btn.orange a {

    /* background: #f39800; */
    background: #f39800 !important;

  }

  main[class] .contents__btn.orange button:disabled, main[class] .contents__btn.orange a:disabled {

    background: #dddddd;

    cursor: auto;

    filter: none;

  }

  main[class] .contents__btn.orange button:disabled:hover, main[class] .contents__btn.orange a:disabled:hover {

    opacity: 1;

  }

  main[class] .contents__btn.prev button, main[class] .contents__btn.prev a {

    background: #908d8d;

  }

  main[class] .contents__btn.prev button::after, main[class] .contents__btn.prev a::after {

    left: 20px;

    right: unset;

    transform: translateY(-50%) rotate(135deg);

  }

/*--------------------------------------------------------------------
  notes
--------------------------------------------------------------------*/
main:not(.program) .notes {
    color: #908d8d;
    font-size: 1.2rem;
    line-height: 1.2;
  }
  main:not(.program) .notes:not(:first-child) {
    margin-top: 4px;
  }
  main:not(.program) .notes > li {
    position: relative;
    padding-left: 1.2rem;
  }
  main:not(.program) .notes > li::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
  }
  main:not(.program) .notes > li + * {
    margin-top: 2px;
  }


  main[class] .contents__notes {

    margin-top: 48px;

    padding: 16px 24px;

    border-radius: 8px;

    background: #F8F8F8;

    text-align: left;

  }

  main[class] .contents__notes__ttl {

    font-size: 1.6rem;

    font-weight: 700;

  }

  main[class] .contents__notes__ttl + * {

    margin-top: 4px;

  }

  main[class] .contents__notes__list {

    margin-left: 0.6rem;

    padding-left: 1rem;

    list-style: disc;

  }

  main[class] .contents__notes__list > li::before {

    content: "";

  }

  main[class] .contents__notes__list > li + li {

    margin-top: 2px;

  }

  main[class] *:not(.contents__ttl) + .contents__box {

    border-top-left-radius: 0;

    border-top-right-radius: 0;

  }
/*--------------------------------------------------------------------
  flex box
--------------------------------------------------------------------*/
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.row .column--1-2 {
    width: 48.5%;
}

.row .column--1-3 {
    width: calc((100% - 60px) / 3);
}

.row .column--2-3 {
    width: calc((100% - 40px) / 3 * 2);
}

/*--------------------------------------------------------------------
  select box
--------------------------------------------------------------------*/
a,
select {
  transition: all 0.2s ease;
}
a:hover, a:focus-visible,

select:hover,

select:focus-visible {

  opacity: 0.6;
}
a:hover, a:focus-visible,

select:hover,

select:focus-visible {

  opacity: 0.6;

}

.js-select-item {

  opacity: 0;

  height: 0;

  transform: translateY(20px);

  transition: opacity 0.3s ease, transform 0.3s ease;

}
.js-select-item.show {

  opacity: 1;

  height: auto;

  transform: translateY(0);

}


/*--------------------------------------------------------------------
  header
--------------------------------------------------------------------*/
.top-header-wrapper {
    height: 120px;
    width: 100%;
}

.top-header-content {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.header__main__wrap {
    width: 100%;
    height: 80px !important;
    background-color: #f6edd9;
    z-index: 999;
}

.header__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px !important;
}

.header__main__l {
    width: 25%;
}

.header__main__r {
    width: 75%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header__search {
    width: 45%;
    position: relative;
}

.header__search__submit {
    font-size: 0;
    border: none;
    background-color: #ffffff;
    background-image: url(/images/common/ico_hd_search_black.svg);
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center center;
    margin: auto;
    padding: 8px;
    position: absolute;
    top: 0;
    left: 15px;
    bottom: 0;
    z-index: 1;
    cursor: pointer;
}

.header__search__keyword {
    font-size: 1.3rem;
    border: none;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 10px 20px 10px 40px;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.header__mypage:hover {
    opacity: 0.8;
}

.header__user {
    text-align: right;
    margin-left: 40px;
}

.header__user__name {
    font-size: 1.3rem;
    line-height: 1;
}

.header__user__point {
    color: #eb332f;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 5px;
}

.header__user__point span {
    font-size: 2.1rem;
}

.header__exchange {
    font-size: 0;
    margin-left: 20px;
}

.header__exchange__btn {
    color: #333333;
    -webkit-text-fill-color: #333333;
    background-color: transparent;
    border: none;
    padding: 0;
    transition: 0.2s ease-in-out;
}

.header__exchange__btn:hover {
    opacity: 0.8;
}

.header__exchange__btn__ico {
    width: 30px;
    margin: auto;
}

.header__exchange__btn__txt {
    color: #333333;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 8px;
}

.header__menu {
    font-size: 0;
    margin-left: 20px;
}

.header__menu__btn {
    color: #333333;
    -webkit-text-fill-color: #333333;
    background-color: transparent;
    border: none;
    padding: 0;
    transition: 0.2s ease-in-out;
}

.header__menu__btn:hover {
    opacity: 0.8;
}

.header__menu__btn__hamburger {
    position: relative;
    cursor: pointer;
    width: 45px;
    height: 23px;
}

.header__menu__btn__hamburger span {
    display: inline-block;
    background-color: #333333;
    border-radius: 2px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 35px;
    height: 4px;
    transition: all 0.4s;
}

.header__menu__btn__hamburger span:nth-of-type(1) {
    top: 1px;
}

.header__menu__btn__hamburger span:nth-of-type(2) {
    top: 10px;
}

.header__menu__btn__hamburger span:nth-of-type(3) {
    top: 19px;
}

.header__menu__btn__hamburger.hum__active span:nth-of-type(1) {
    top: 6px;
    transform: translateY(6px) rotate(-45deg);
}

.header__menu__btn__hamburger.hum__active span:nth-of-type(2) {
    opacity: 0;
}

.header__menu__btn__hamburger.hum__active span:nth-of-type(3) {
    top: 18px;
    transform: translateY(-6px) rotate(45deg);
}

.header__menu__btn__txt {
    color: #333333;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 8px;
}

.header__menu__contents {
    background-color: rgba(246, 237, 217, 0.95);
    padding: 50px 0;
    width: 100vw;
    position: absolute;
    top: 80px;
    right: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s linear;
}

.header__menu__contents.header__active {
    pointer-events: auto;
    opacity: 1;
}

.header__menu__contents__inner {
    display: flex;
    justify-content: space-between;
}

.header__menu__contents__list>li:nth-of-type(n+2) {
    margin-top: 30px;
}

.header__menu__contents__list>li a {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    padding-left: 15px;
    position: relative;
}

.header__menu__contents__list>li a::before {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #f39800;
    border-right: solid 2px #f39800;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: -3px;
    bottom: 0;
    margin: auto 0;
}

.header__menu__contents__list>li a:hover {
    text-decoration: underline;
}

.header__menu__contents .footer__nav__sns li a {
  background: #333333;
  padding: 1px;
  border-radius: 50px;
  width: 80%;
  margin: 0;
}
.header__menu__contents .footer__nav__sns {
  width: 15%;
  margin: 30px auto 0 auto;
}

.header__logo {
    width: 200px;
}

.header__logo a {
    display: inline-block;
    width: 100%;
}

.header__sub__wrap {
    width: 100%;
    height: 40px !important;
    background-color: #f39800;
}

.header__sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px !important;
}

.header__sub>li a {
    display: block;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 20px;
    transition: 0.2s ease-in-out;
}

.header__sub>li a:hover {
    opacity: 0.8;
}

.header__sub>li a i {
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.header__sub>li a i img {
    height: 100%;
    object-fit: contain;
}

.header__search__contents {
    margin-top: 10px;
    width: 100vw;
    position: absolute;
    right: 0;
    z-index: 998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s linear;
}

.header__search__contents.search__active {
    pointer-events: auto;
    opacity: 1;
}

.header__search__contents__inner {
    background-color: #f39800;
    border-radius: 12px;
    box-shadow: 0 2px 0 0 #dddddd;
    padding: 50px 30px 30px;
    position: relative;
}

.header__search__contents__inner::before {
    content: "";
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top: none;
    border-bottom: solid 10px #f39800;
    position: absolute;
    top: -10px;
    left: 82px;
}

.header__search__contents__keyword__inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__search__contents__keyword__txt {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.header__search__contents__keyword__form {
    margin-left: 30px;
    width: 50%;
    position: relative;
}

.header__search__contents__keyword__submit {
    font-size: 0;
    border: none;
    background-color: #ffffff;
    background-image: url(/images/common/ico_hd_search_black.svg);
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center center;
    margin: auto;
    padding: 8px;
    position: absolute;
    top: 0;
    left: 15px;
    bottom: 0;
    z-index: 1;
    cursor: pointer;
}

.header__search__contents__keyword__box {
    font-size: 1.3rem;
    border: none;
    background-color: #ffffff;
    border-radius: 25px;
    padding: 15px 20px 15px 40px;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.header__search__contents__2col {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 50px;
    padding-top: 25px;
    position: relative;
}

.header__search__contents__2col__ttl {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;
}

.header__search__contents__service, .header__search__contents__category {
    width: 46.5217%;
}

.header__search__contents__service__inner {
    background-color: #ffffff;
    border-radius: 12px;
    margin-top: 15px;
    padding: 15px 0 15px 15px;
    display: none;
    transition: 0.2s ease-in-out;
}

.header__search__contents__service__inner.active {
    display: block;
    transition: 0.2s ease-in-out;
}

.header__search__contents__service__inner__ttl a {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    padding-right: 15px;
    position: relative;
}

.header__search__contents__service__inner__ttl a::after {
    content: "";
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 2px #f39800;
    border-right: solid 2px #f39800;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 3px;
    bottom: 0;
    margin: auto 0;
}

.header__search__contents__service__inner__ttl a:hover {
    text-decoration: underline;
}

.header__search__contents__service__inner__ttl a i {
    margin-right: 4px;
    width: 12px;
}

.header__search__contents__service__inner__ttl a i img {
    width: 100%;
}

.header__search__contents__service__tab {
    display: flex;
    justify-content: space-around;
}

.header__search__contents__service__tab>li {
    width: 46px;
}

.header__search__contents__service__tab>li a {
    display: block;
    opacity: 0.7;
    transition: 0.2s ease-in-out;
}

.header__search__contents__service__tab>li a img {
    width: 100%;
}

.header__search__contents__service__tab>li a:hover {
    opacity: 0.8;
}

.header__search__contents__service__tab>li.active {
    position: relative;
}

.header__search__contents__service__tab>li.active::after {
    content: "";
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top: none;
    border-bottom: solid 10px #ffffff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: auto;
}

.header__search__contents__service__tab>li.active a {
    opacity: 1;
}

.header__search__contents__service__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-top: 15px;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.header__search__contents__service__list>li a .header__search__contents__service__list__point.percent_point {
    font-size: 1.3rem !important;
    line-height: 1.8rem !important;
}

.header__search__contents__service__btn a {
    display: block;
    color: #ffffff;
    background-color: #e44f6f;
    border: none;
    border-radius: 20px;
    box-shadow: 0 2px 0 0 #dedede;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    margin: 15px auto 0;
    padding: 0;
    width: 50%;
    min-width: 192px;
    transition: 0.2s ease-in-out;
}

.header__search__contents__service__btn a:hover {
    opacity: 0.8;
    box-shadow: 0 1px 0 0 #dddddd;
}

.header__search__contents__category::before {
    content: "";
    display: block;
    background-color: rgba(255, 255, 255, 0.25);
    position: absolute;
    top: 25px;
    left: 50%;
    width: 1px;
    height: calc(100% - 25px);
}

.header__search__contents__category__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #ffffff;
    border-radius: 12px;
    text-align: center;
    padding: 30px;
}

.simple .header__logo {
    width: 180px;
}
.header__search__contents__service__list > li {

    margin-right: 10px;

    width: 100px;

    min-width: 100px;

  }

  .header__search__contents__service__list > li a {

    display: block;

    background-color: #f2f2f2;

    border-radius: 6px;

    border-bottom: 2px solid #dddddd;

    text-align: center;

    padding: 10px 0;

    transition: 0.2s ease-in-out;

  }

  .header__search__contents__service__list > li a:hover {

    opacity: 0.8;

  }

  .header__search__contents__service__list > li a .header__search__contents__service__list__ttl {

    color: #333333;

    font-size: 1.2rem;

    font-weight: 700;

    line-height: 1;

  }

  .header__search__contents__service__list > li a .header__search__contents__service__list__thumb {

    width: 64px;

    height: 64px;

    margin: 10px auto 0;

  }

  .header__search__contents__service__list > li a .header__search__contents__service__list__thumb img {

    width: 100%;

  }

  .header__search__contents__service__list > li a .header__search__contents__service__list__point {

    color: #eb332f;

    font-size: 1.8rem;

    font-weight: 700;

    line-height: 1;

    margin-top: 10px;

  }
  .header__search__contents__category__list > li {

    width: 33.3333333334%;

  }

  .header__search__contents__category__list > li:nth-of-type(n+4) {

    margin-top: 30px;

  }

  .header__search__contents__category__list > li a {

    display: inline-block;

    transition: 0.2s ease-in-out;

  }

  .header__search__contents__category__list > li a .header__search__contents__category__list__ico {

    width: 36px;

    margin: auto;

  }

  .header__search__contents__category__list > li a .header__search__contents__category__list__ttl {

    color: #333333;

    font-size: 1.4rem;

    font-weight: 700;

    line-height: 1.2;

    margin-top: 5px;

  }

  .header__search__contents__category__list > li a .header__search__contents__category__list__ttl span {

    font-size: 1rem;

  }

  .header__search__contents__category__list > li a:hover {

    opacity: 0.8;

  }

  .header__breadcrumb {

    width: 100%;

  }

  .header__breadcrumb ol {

    width: 100%;

    max-width: 980px;

    margin: 0 auto;

    padding: 16px 5%;

    box-sizing: content-box;

    position: relative;

    list-style-type: none;

  }

  .header__breadcrumb li {

    display: inline;

    position: relative;

    padding-right: 12px;

    padding-left: 8px;

    font-size: 1.2em;

  }

  .header__breadcrumb li:last-of-type {

    padding-right: 0;

  }

  .header__breadcrumb li:first-of-type {

    padding-left: 0;

  }

  .header__breadcrumb li:not(:last-of-type)::after {

    content: "";

    display: inline;

    position: absolute;

    width: 0.6rem;

    height: 0.6rem;

    top: 50%;

    right: 0;

    border-width: 0.1rem;

    border-color: #999;

    border-right-style: solid;

    border-bottom-style: solid;

    transform: translateY(-50%) rotate(-45deg);

  }

  .header__breadcrumb li a {

    color: #FF5A00;

    text-decoration: underline;

  }

  .header.simple {

    display: flex;

    justify-content: center;

    min-width: 1080px;

    padding: 16px;

    border-bottom: solid 1px #dddddd;

    background: rgba(255, 255, 255, 0.48);

  }
/*--------------------------------------------------------------------
  gnav
--------------------------------------------------------------------*/
@keyframes puyon {
    0% {
        transform: scale(1, 1) translate(0%, 0%);
    }

    40% {
        transform: scale(0.95, 1.2) translate(0%, -10%);
    }

    50% {
        transform: scale(1.2, 0.9) translate(0%, 5%);
    }

    60% {
        transform: scale(0.95, 1.1) translate(0%, -3%);
    }

    70% {
        transform: scale(1.1, 0.95) translate(0%, 3%);
    }

    80% {
        transform: scale(1, 1) translate(0%, 0%);
    }

    100% {
        transform: scale(1, 1) translate(0%, 0%);
    }
}

.gnav {
    width: 100%;
    background-color: #fff;
    border-top: solid 3px #f39800;
}

.gnav a:hover, .gnav a:focus-visible, .gnav select:hover, .gnav select:focus-visible {
    opacity: 1;
}

.gnav__list {
    display: flex;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.gnav__list li {
    width: 100%;
}

.gnav__list li.current a::after {
    opacity: 0.96;
    transform: scale(1, 1);
}

.gnav__list li.current a>p {
    color: #511401;
}

.gnav__list li.current a>i {
    background: #fff;
}

.gnav__list li.current a>i>img {
    animation: none !important;
}

.gnav__list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 12px;
}

.gnav__list li a::after {
    content: "";
    position: absolute;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border-radius: 8px;
    background: #f6edd9;
    opacity: 0;
    transform: scale(0, 0);
    transition: all 0.3s ease;
}

.gnav__list li a>p, .gnav__list li a>i {
    z-index: 9;
    transition: all 0.3s ease;
}

.gnav__list li a>p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.2;
}

.gnav__list li a>p>span {
    font-size: 1.5rem;
    font-weight: 700;
}

.gnav__list li a:hover {
    opacity: 1;
}

.gnav__list li a:hover::after {
    opacity: 0.96;
    transform: scale(1, 1);
}

.gnav__list li a:hover>p {
    color: #511401;
}

.gnav__list li a:hover>i {
    background: #fff;
}

.gnav__list li a:hover>i>img {
    animation: puyon 1s linear 0s 1;
}

.gnav__list li i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    padding: 4px;
    border-radius: 50%;
    background: #f6edd9;
}

/*--------------------------------------------------------------------
  pager
--------------------------------------------------------------------*/
.pager__wrap {
    margin-top: 40px;
}

.pager {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 10px;
}

.pager__on, .pager__off, .pager__blank {
    border: 1px solid #f39800;
    border-radius: 6px;
    font-size: 1.4rem;
    line-height: 40px;
    text-align: center;
    margin: 0 5px;
    width: 40px;
    height: 40px;
}

.pager__on {
    color: #ffffff;
    background-color: #f39800;
}

.pager__off, .pager__blank {
    color: #fb8c00;
}

.pager__off a, .pager__blank a {
    display: block;
    color: #fb8c00;
}

/*--------------------------------------------------------------------
  footer
--------------------------------------------------------------------*/
.footer__top__link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 980px;
    margin: 40px auto 0;
    padding: 0 5%;
    box-sizing: content-box;
  }
  
  .footer__top__link a {
    margin: 0 0 0 auto;
    color: #f39800;
    font-size: 1.3rem;
    text-decoration: underline;
  }
  
  .footer__top__link a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
  

.footer__nav__wrap {
    color: #ffffff;
    background-color: #1d2736;
    margin: 80px 0 0;
    padding: 40px 0;
}

.footer__top__link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 980px;
    margin: 40px auto 0;
    padding: 0 5%;
    box-sizing: content-box;
}

.footer__top__link a {
    margin: 0 0 0 auto;
    color: #f39800;
    font-size: 1.3rem;
    text-decoration: underline;
}

.footer__top__link a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.footer__nav {
    display: flex;
    justify-content: space-between;
}
.footer__nav + * {

    margin-top: 48px;

  }

.footer__nav:last-child {
    padding-top: 20px;
}

.footer__nav__l {
    width: 50%;
    display: flex;
    gap: 80px;
}

.footer__nav__r {
    width: 150px;
}

.footer__nav__list>li:nth-child(n+2) {
    margin-top: 1.6rem;
}

.footer__nav__list>li a {
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1;
}

.footer__nav__list>li a:hover {
    text-decoration: underline;
}

.footer__nav__sns {
    display: flex;
    justify-content: space-between;
    margin-top: 1.6rem;
}

.footer__nav__sns>li {
    width: calc((100% - 16px) / 3);
}

.footer__nav__sns>li a {
    display: inline-block;
    width: 100%;
    transition: 0.2s ease-in-out;
}

.footer__nav__sns>li a:hover {
    opacity: 0.7;
}

.footer__nav__sns__ttl {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
}

.footer__nav__siteseal {
    margin-top: 1.6rem;
    display: flex;
}

.footer__nav__siteseal>li:nth-child(n+2) {
    margin-left: 20px;
}

.footer__nav + *{
    margin-top: 48px;
}

.footer__info__wrap {
    background-color: #ffffff;
    padding: 24px 0 40px;
}

.footer__info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer__info__l, .footer__info__r {
    width: 50%;
}

.footer__logo {
    width: 251px;
}

.footer__logo a {
    display: inline-block;
    width: 100%;
}

.footer__copyright {
    font-size: 1.1rem;
    line-height: 1;
    text-align: right;
}

/*--------------------------------------------------------------------
  みんなの新着口コミ
--------------------------------------------------------------------*/
.review>li {
    background-color: #ffffff;
    border-radius: 6px;
    margin-top: 5px;
    padding: 25px 30px;
}

.review>li .review__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review>li .review__name {
    color: #fb8c00;
    font-size: 1.8rem;
    font-weight: 700;
}

.review>li .review__star {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.review>li .review__star ul {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.review>li .review__star ul img {
    margin-right: 2px;
    width: 24px;
}

.review>li .review__star__txt {
    color: #908d8d;
    font-size: 1.2rem;
}

.review>li .review__data {
    color: #908d8d;
    font-size: 1.2rem;
    margin-top: 10px;
}

/*--------------------------------------------------------------------
  clearfix - utility
--------------------------------------------------------------------*/
.u-font-bold {
    font-weight: 700 !important;
}

.u-font-semibold {
    font-weight: 500 !important;
}

.u-text-ac {
    text-align: center !important;
}

.u-text-right {
    text-align: right !important;
}

.u-cf {
    *zoom: 1;
}

.u-cf:after {
    content: "";
    display: table;
    clear: both;
}

.u-mc {
    margin-left: auto;
    margin-right: auto;
}

.u-mt-xsmall {
    margin-top: 5px !important;
}

.u-mt-small {
    margin-top: 10px !important;
}

.u-mt-20 {
    margin-top: 20px !important;
}

.u-mt-40 {
    margin-top: 40px !important;
}

.u-mt-80 {
    margin-top: 80px !important;
}

.u-mt-120 {
    margin-top: 120px !important;
}

.u-mt-remove {
    margin-top: 0 !important;
}

.u-pb-remove {
    padding-bottom: 0 !important;
}

.u-pt-remove {
    padding-top: 0 !important;
}
.u-m-remove {

    margin: 0 !important;

  }

  .u-mt-remove {

    margin-top: 0 !important;

  }

  .u-mb-remove {

    margin-bottom: 0 !important;

  }

  .u-pt-small {

    padding-top: 10px !important;

  }

  .u-p-remove {

    padding: 0 !important;

  }
  .u-pt-remove {

    padding-top: 0 !important;
  }
  .u-pb-remove {

    padding-bottom: 0 !important;
  }
/*--------------------------------------------------------------------
  search box
--------------------------------------------------------------------*/
.search__box {
    width: 45%;
    position: relative;
}

.search__box__keyword::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../images/common/ico_hd_search_black.svg) no-repeat center center / auto 100%;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 10px;
}

.search__box__keyword__box {
    font-size: 1.3rem;
    border: none;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 10px 20px 10px 35px;
    width: 100%;
}

.search__box__oftenuse li {
    border-right: solid 2px #f39800;
    color: #333;
    display: inline-block;
}

.search__box__oftenuse li:last-child {
    border-right: 0;
    padding-right: 0;
}

/*--------------------------------------------------------------------
  メンテナンス
--------------------------------------------------------------------*/
.maintenance {
    text-align: center;
    margin: auto;
}

.maintenance img {
    width: 220px;
    height: 238px;
}

.back__btn {
    margin-top: 30px;
}

.back__btn a {
    display: block;
    color: #ffffff;
    background-color: #f39800;
    border: none;
    border-radius: 30px;
    box-shadow: 0 2px 0 0 #dedede;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    line-height: 48px;
    width: 160px;
    margin: 0 auto;
    padding: 0;
    transition: 0.2s ease-in-out;
}

.back__btn a:hover {
    opacity: 0.8;
    box-shadow: 0 1px 0 0 #dedede;
}

/*--------------------------------------------------------------------
  ロック
--------------------------------------------------------------------*/
.contents__wrap .lock {
    width: 100%;
}

.errors__center__box__main .inquiries__btn {
    margin-top: 30px;
    text-align: center;
}

.errors__center__box__main .inquiries__btn a {
    display: block;
    color: #ffffff;
    background-color: #f39800;
    border: none;
    border-radius: 28px;
    box-shadow: 0 2px 0 0 #dedede;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 48px;
    margin: 10px auto 0;
    padding: 0;
    width: 76%;
    max-width: 160px;
    transition: 0.2s ease-in-out;
}

.errors__center__box__main .inquiries__btn a:hover {
    opacity: 0.8;
    box-shadow: 0 1px 0 0 #dedede;
}

/*--------------------------------------------------------------------
  error message
--------------------------------------------------------------------*/
.error_message {
    color: #eb332f;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-top: 10px;
}

.clearfix::after {
    clear: both;
    content: "";
    display: block;
    height: 0;
}

.u-mb-15 {
    margin-bottom: 15px !important;
}

.u-mb-10 {
    margin-bottom: 10px !important;
}

.u-mb-20 {
    margin-bottom: 20px !important;
}

/*--------------------------------------------------------------------
  header top
--------------------------------------------------------------------*/
.header__main .header__main__r ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

/*--------------------------------------------------------------------
  entry btn
--------------------------------------------------------------------*/
.entry__btn a {
    display: block;
    color: #ffffff;
    background-color: #e44f6f;
    border: none;
    border-radius: 30px;
    box-shadow: 0 3px 0 0 #dddddd;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    white-space: nowrap;
    margin: 0 0 0 auto;
    padding: 0;
    width: 250px;
    position: relative;
    transition: 0.2s ease-in-out;
}

.entry__btn a:hover {
    opacity: 0.8;
    box-shadow: 0 1px 0 0 #dddddd;
}

.entry__btn a::before {
    content: "無料";
    color: #333333;
    background-color: #f3d925;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    margin: auto;
}

.entry__btn a::after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto 0;
}

/*--------------------------------------------------------------------
  fixed btn
--------------------------------------------------------------------*/
@keyframes btnOff {
    0% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

    99% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    100% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes btnOn {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    1% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    100% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
}

.fixed__btn {
    display: none;
    position: fixed;
    left: 50%;
    bottom: 0;
    width: 100%;
    padding: 14px 0 16px;
    background: rgba(29, 39, 54, 0.72);
    transform: translateX(-50%);
    z-index: 999;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-name: btnOff;
}

.fixed__btn * {
    font-family: "M PLUS 1", sans-serif;
    color: #74210F;
    line-height: 1.4;
}

.fixed__btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 24px 16px;
    font-size: 28px;
    font-weight: 700;
    border: solid 3px #fff;
    color: #fff;
    font-weight: 700;
    border-radius: 1000px;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.08), 0 2px 2px rgba(0, 0, 0, 0.08);
    background-color: #eb332f;
    overflow: hidden;
}

.fixed__btn p:not([class]) {
    color: #fff;
}

.fixed__btn.is-active {
    display: block;
    animation-name: btnOn;
}

.fixed__btn>div {
    width: calc(100% - 40px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@-moz-document url-prefix() {
    .header__search__keyword {
        top: 7px;
    }
}

/*--------------------------------------------------------------------
  footer sale
--------------------------------------------------------------------*/
.footer-sale {
  overflow: hidden;
  margin-top: 80px;
  background-color: rgba(255, 255, 255, 0.48);
}
.footer-sale + * {
  margin-top: 0;
}
.footer-sale__inner {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 48px;
}
.footer-sale__ttl {
  display: flex;
  gap: 2px;
  color: #74210F;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 900;
}
.footer-sale__ttl > i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 4px;
  background-color: #fff;
  border-radius: 50%;
  border: solid rgba(243, 152, 0, 0.24) 2px;
}
.footer-sale__ttl + * {
  margin-top: 24px;
}
.footer-sale__list {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.footer-sale__list.recommend {
    justify-content: normal;
}
/*--------------------------------------------------------------------
  program card
--------------------------------------------------------------------*/
.program-card {
  align-self: stretch;
  flex-grow: 2;
  width: calc((100% - 48px) / 3);
  min-width: 184px;
  width: 184px;
  height: 100%;
  border-radius: 8px;
  background-color: #fff;
  line-height: 1;
  transition: all 0.5s;
}
.program-card.is-hidden {
  height: 0;
  margin-top: 0;
  overflow: hidden;
}
.program-card > a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(166, 166, 166, 0.16), 0 0 2px rgba(166, 166, 166, 0.2);
  overflow: hidden;
}
.program-card.margin {
  height: 0;
  margin-top: 0;
}
.program-card__img {
  flex-grow: 2.6;
  position: relative;
  height: 120px;
  max-height: 144px;
}
.program-card__img::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, transparent 80%, rgba(0, 0, 0, 0.08));
}
.program-card__img > img {
  position: relative;
  top: 50%;
  width: 100%;
  height: 100%;
  max-height: 120px;
  transform: translateY(-50%);
  object-fit: contain;
}
.program-card__detail {
  flex-grow: 0.6;
  display: flex;
  flex-direction: column;
  padding: 14px 12px;
  color: #333333;
}
.program-card .txt > p + p {
  margin-top: 6px;
}
.program-card .txt p:not([class]) {
  color: #666666;
  font-size: 12px;
  line-height: 1.2;
}
.program-card .txt .headline {
  font-size: 18px;
  font-weight: 700;
}
.program-card .primary {
  flex-grow: 2;
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.program-card .primary .point {
  color: #eb332f;
  font-size: clamp(20px, calc(28 / 1088 * 100vw), 28px);
  font-weight: 700;
}
.program-card .primary .point > * + * {
  margin-top: 4px;
}
.program-card .primary .point .unit {
  font-size: 64.2857142857%;
}
.program-card .primary .point .original {
  color: #666666;
  font-size: 12px;
  text-decoration: line-through;
  font-weight: 300;
}
.program-card .primary .point__rate {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 4px;
  color: #eb332f;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  background-color: #fdeae9;
}
.program-card .primary .btn {
  align-self: flex-end;
  padding: 10px 11px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  background: #e44f6f;
}
.program-card__counter {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background: #eb332f;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.24);
  z-index: 1;
}
.program-card__counter::before {
  content: "";
  display: block;
  position: absolute;
  border-top: solid 8px #eb332f;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.1));
  z-index: 0;
}
.program-card__counter .date {
  display: flex;
  align-items: center;
  padding: 2px 8px;
  color: #eb332f;
  font-size: 12px;
  border-radius: 100px;
  background: #fff;
}
.program-card__counter .date::before {
  content: "";
  display: block;
  width: 16px;
  height: 100%;
  background: url("/images/common/ico_common_clock.svg") center center/cover no-repeat;
  fill: #eb332f;
}
.program-card__counter > * + * {
  margin-left: 4px;
}
.program-card a:hover, a:focus-visible {
    opacity: 0.6;
}

/*--------------------------------------------------------------------
  cvbtn
--------------------------------------------------------------------*/

.cv__wrap {
  width: 100%;
  max-width: 600px;
  margin: 32px auto 0;
}
.cv.min {
    max-width: 58%;
    min-width: 416px;
    margin-left: auto;
    margin-right: auto;
  }
  .cv.min a {
    padding: 10px 16px;
    font-size: 24px;
    border: 0;
  }
  .cv__deco {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    margin: 0 16px;
  }
  .cv__deco .chara {
    height: 64px;
    width: 16%;
    max-width: 75px;
    top: 50%;
    background: url("/images/programs/deco_chara_1.png") top center/cover no-repeat;
  }
  .cv__deco > p {
    flex-grow: 2;
    position: relative;
    padding: 8px;
    color: #74210F;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    background: #fff3c8;
    text-align: center;
  }
  .cv__deco > p:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    border-width: 6px 10px;
    border-style: solid;
    border-color: transparent #fff3c8 transparent transparent;
  }
  .cv__deco > p > span {
    font-size: 116.6666666667%;
    color: #FF5A00;
    font-weight: 700;
  }

.cv a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 16px;
  padding: 24px 16px;
  font-size: 28px;
  font-weight: 700;
  border: solid 3px #fff;
  border-radius: 1000px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.08), 0 2px 2px rgba(0, 0, 0, 0.08);
  background-color: #eb332f;
  overflow: hidden;
}
.cv a > .box {
    color: #74210F;
}

.cv a p:not(.box) {
  color: #fff;
}

.cv a .box {
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 4px 8px 4px 12px;
  font-size: 71%;
  border-radius: 8px;
  background: #fff;
}
.cv a .box i {
  display: flex;
}
.cv a .box i img {
  width: 24px;
  height: 24px;
}
.cv a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  animation: shine 8s ease-in-out infinite;
  transition: ease-in-out;
}
.cv a:hover {
  opacity: 1;
  transform: scale(1.08);
}
@keyframes shine {
  25% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

/*--------------------------------------------------------------------
  beginner-guide
--------------------------------------------------------------------*/
.beginner-guide {
    width: 100%;
    margin-top: 56px;
    padding: 16px 0 24px;
    text-align: center;
    background-color: #FFF5D2;
  }
  .contents__box + .beginner-guide {
    margin-top: 0;
    border-radius: 0 0 16px 16px;
  }
  .beginner-guide__inner {
    width: calc(100% - 40px);
    max-width: 1104px;
    margin-left: auto;
    margin-right: auto;
  }
  .beginner-guide__ttl {
    position: relative;
    color: #74210F;
    font-size: 2rem;
    font-weight: 700;
  }
  .beginner-guide__ttl + * {
    margin-top: 16px;
  }
  .beginner-guide__ttl::before, .beginner-guide__ttl::after {
    content: "";
    display: block;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
  }
  .beginner-guide__ttl::before {
    width: 80px;
    height: 40px;
    border-radius: 40px 40px 0 0;
    background: #FFF5D2;
  }
  .beginner-guide__ttl::after {
    width: 32px;
    height: 32px;
    bottom: calc(100% + 4px);
    background: url("/images/guide/guide_beginner_icon.svg") center center/contain no-repeat;
  }
  .beginner-guide__list {
    display: flex;
    gap: 24px;
    justify-content: space-between;
  }
  .beginner-guide__list li {
    padding: 16px;
    border-radius: 16px;
    background: #fff;
  }
  .beginner-guide__list li dl dt {
    position: relative;
    padding: 8px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    background-color: #f39800;
    border-radius: 8px;
  }
  .beginner-guide__list li dl dt::after {
    content: "";
    display: block;
    position: absolute;
    border-top: solid 8px #f39800;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
  }
  .beginner-guide__list li dl dd {
    color: #74210F;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .beginner-guide__list li dl dd strong {
    color: #FF5A00;
    font-weight: 700;
  }
  .beginner-guide__list li dl > * + * {
    margin-top: 16px;
  }

