@charset "utf-8";
html,
body{
    margin: 0 !important;
    padding: 0 !important;
}
.header-li_toshop a.header-li_a{
    border-right: none;
}
.gnav-search input {
    padding: 0.3em 0.5em;
}
.gnav-search_submit {
    display: flex;
    align-self: center;
}
.note{
    padding: 3em 0 5em;
    background: var(--cream);
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}
.note-wrap{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 2em 0;
    max-width: 1180px;
}
.note-h2{
    width: 100%;
    font-size: clamp(38px, 4vw, 54px);
    margin: 0 0 0.2em;
    line-height: 1;
}
.note-catlist{
    border: 1px solid var(--black);
    border-radius: 1em;
    padding: 2em;
    width: 20em;
    margin-right: 2em;
    background: #fff;
}
.note-catlist_h5{
    font-size: clamp(18px, 2vw, 21px);
}
.note-catlist_ul li a{
    display: block;
    line-height: 1.3;
    padding: 0.3em 0;
    font-size: clamp(15px, 1.2vw, 16px);
}
.note-catlist_ul li a:before{
    content: "●";
    color: var(--yellow);
    font-size: 80%;
    vertical-align: 0.2em;
}
.note-catlist_ul li a:hover,
.note-catlist_ul li.current a{
    color: var(--yellow);
}
.note-main{
    flex: 1;
}
.note-img{
    margin-bottom: 2em;
}
.note-contents{
    background: #fff;
    position: relative;
    border: 1px solid var(--black);
    border-radius: 1em;
    padding: 3em;
    margin-bottom: 1em;
}
.note-h3{
    font-size: clamp(18px, 2vw, 28px);
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    line-height: 1.3;
    border-bottom: 3px dashed var(--black);
    display: flex;
}
.note-h3:before{
    content: "+";
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: clamp(21px, 5vw, 58px);
    line-height: 0.6;
    margin-right: 5px;
}
.note-content p{
    font-weight: 400;
}
.note-main p:has(iframe) {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 2em 0;
}
.note-main p iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}
.note-main p img{
    width: 100%;
    height: auto;
    vertical-align: 0;
    line-height: 0;
    display: block;
    margin: 2em 0;
}
.note-main p a{
    color: var(--orange);
}
.note-main p a:hover{
    color: var(--dblue);
    text-decoration: underline;
}
.note-nav a{
    display: inline-block;
    background: #fff;
    border: 1px solid var(--black);
    padding: 1em;
    border-radius: 1em;
    position: relative;
}
.note-nav_prev a{
    margin: 0 0 0.5em auto;
}
.note-nav_next{
    text-align: right;
}
.note-nav_prev a:before,
.note-nav_next a:before{
  content: "";
  position: absolute;
  top: 50%;
  border-style: solid;
  translate: -100% -50%;
}
.note-nav_prev a:before {
  left: 0;
  border-width: 10px 20px 10px 0;
  border-color: transparent #000000 transparent transparent;
}
.note-nav_next a:before {
  right: -40px;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #000000;
}
.note-nav_prev a:after,
.note-nav_next a:after{
  content: "";
  position: absolute;
  top: 50%;
  border-style: solid;
}
.note-nav_prev a:after {
    left: 0;
    border-width: 9.7px 17px 9.7px 0;
    border-color: transparent #ffffff transparent transparent;
    translate: -95% -50%;
    transition: 0.15s all;
}
.note-nav_next a:after {
    right: 0;
    border-width: 9.7px 0 9.7px 17px;
    border-color: transparent transparent transparent #ffffff;
    translate: 95% -50%;
    transition: 0.15s all;
}
.note-nav_prev a:hover{
    background: var(--pink);
    color: var(--black);
}
.note-nav_prev a:hover:after{
  border-color: transparent var(--pink) transparent transparent;
}
.note-nav_next a:hover{
    background: var(--blue);
    color: var(--black);
}
.note-nav_next a:hover:after{
  border-color: transparent transparent transparent var(--blue);
}
/*CATEGORY*/
.note-cat_h3{
    width: 100%;
}
.note-cat_li a{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1em;
    margin: 1em 0;
    background: #fff;
    border-radius: 1em;
    border: 1px solid var(--black);
}
.note-cat_li:first-child a{
    margin-top: 0;
}
.note-cat_li a:hover{
    background: var(--yellow);
}
.note-cat_img{
    width: clamp(100px, 25vw, 200px);
    margin-right: 1em;
}
.note-cat_img img{
    object-fit: cover;
    aspect-ratio: 2 / 1;
}
.note-cat_body{
    flex: 1;
}
.note-cat_h4{
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.3;
}
.note-cat_exc{
    color: var(--black);
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0.2em;
}
.screen-reader-text{
    display: none;
}
.nav-links{
    text-align: center;
    display: flex;
    justify-content: center;
}
.note-cat_nav span,
.note-cat_nav a{
    margin: 0 2px;
    width: 2em;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--black);
    background: #fff;
}
.note-cat_nav a.next,
.note-cat_nav a.prev{
    position: relative;
}
.note-cat_nav a.next:before,
.note-cat_nav a.prev:before{
    content: "";
    width: 5px;
    height: 5px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
}
.note-cat_nav a.prev:before{
    transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
.note-cat_nav a.next:before{
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.note-cat_nav span.current{
    background: var(--gray);
    color: #666;
}
.note-cat_nav a:hover{
    background: var(--yellow);
    color: var(--black);
}
.note-cat_nav a.next:hover{
    background: var(--pink);
}
.note-cat_nav a.prev:hover{
    background: var(--blue);
}
@media screen and (max-width: 1280px) {
    .note-wrap {
        padding: 0;
    }
    .note-catlist {
        padding: 2em 1em;
        width: 14em;
        margin-right: 1em;
    }
    .note-nav_prev{
        margin-left: 2.5%;
    }
    .note-nav_next{
        margin-right: 2.5%;
    }
}
@media screen and (max-width: 780px) {
    .note-catlist {
        width: 100%;
        order: 1;
        padding: 1em;
        margin: 1em 0 0;
    }
    .note-contents {
        padding: 3em 2em;
    }
    .note-h3:before{
        display: none;
    }
    .note-nav_prev{
        margin-left: 20px;
    }
    .note-nav_next{
        margin-right: 20px;
    }
    .note-cat_img img{
        aspect-ratio: 1.618 / 1;
    }
}
@media screen and (max-width: 480px) {
    .note {
        padding: 2em 0 5em;
    }
    .note-contents {
        padding: 2em 1em;
    }
    .note-cat_img img{
        aspect-ratio: 1 / 1;
    }
}



