@charset "UTF-8";
header{
    width: 100%;
    font-weight: 500;
}

.header_area{
    margin-left: 1.5em;
    margin-right: 1.5em;
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.header_right__top{
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 2em;
}

/* メニュー */
.menu_area .menu{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 600;
}

.menu_area .menu li a{
    padding: 0.5em 0;
    display: flex;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.menu_area .menu li a::after{
    content: '';
    width: 25px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--blue);
    position: absolute;
    bottom: -3px;
    transition: var(--transition);
}


.menu_area .menu li a[target="_blank"]::after{
    margin-left: 0em;
    mask-image: unset;
    mask-repeat: no-repeat;
    mask-size: unset;
    top: unset;
    right: unset;
    bottom: -3px;
}


.menu_area .menu li a:hover{
    color: var(--blue);
}

.menu_area .menu li a:hover::after{
    width: 40px;
}

.menu_area .menu li a[target="_blank"]::after{
    content: unset;
}

@media screen and (min-width: 0px) {
    header{
        padding-top: 0.5em;
    }

    .header_left{
        width: calc(75% - 1em);
    }

    .header_right{
        width: calc(25% - 1em);
    }

    .header_right__top{
        justify-content: flex-start;
    }
}

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

}

@media screen and (min-width: 1024px) {
    header{
        padding: 0.5em 0 0.75em 0;
        background-color: rgb(255 255 255 / 80%);
        backdrop-filter: blur(5px);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .header_left{
        width: calc(25% - 1em);
    }

    .header_right{
        width: calc(75% - 1em);
    }

    .header_right__top{
        justify-content: right;
    }

    .menu_area .menu li a{
        gap: 1em;
    }
}

@media screen and (min-width: 1440px) {
    .menu_area .menu{
        gap: 1.5em;
    }

    .menu_area .menu li a{
        font-size: 1.2em;
    }
}

/*====================================
メニューボタン
=====================================*/
.menu_button{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    transform: translateX(0px);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
}

.-active.menu_button {
    justify-content: center;
    transition: transform 0.4s ease-out;
}

.menu_button .hamburger__line{
    position: relative;
}

.menu_button .hamburger__line,
.menu_button .hamburger__line::before,
.menu_button .hamburger__line::after{
    width: 35px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--blue);
    transform: translateX(0%);
    transition: 0.4s;
}

.menu_button .hamburger__line::before,
.menu_button .hamburger__line::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--blue);
    transition: inherit;
}

.menu_button .hamburger__line::before{
    top: 10px;
}

.menu_button .hamburger__line::after{
    bottom: 10px;
}

/* メニューラベル */
.menu_label{
    color: var(--blue);
    letter-spacing: 2px;
}

/* オープン時のバー */
.menu_button.-active .hamburger__line {
    background-color: transparent;
}

.menu_button.-active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
}

.menu_button.-active .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
}

/* オーバーレイ */
.overlay{
    transition: all 0.4s
}

.hamburger.-active + .overlay {
    visibility: visible;
    opacity: 0;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(178, 218, 255, 0.45);
    backdrop-filter: blur(8px);
    z-index: 997;
    opacity: 1;
}

/* ヘッダーに表示されるaddtoanyを消す */
.hamburger .addtoany_content{
    display: none;
}

/*====================================
 ハンバーガーメニュー メニュー内レイアウト
=====================================*/

@media screen and (min-width: 0px) {
    .hamburger{
        padding: 1.5em;
        max-width: 460px;
        height: 100%;
        background-color: var(--white);
        position: fixed;
        right: 0;
        top: 0;
        z-index: 998;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s ease-out;
    }

    /* オープン時のメニュー */
    .hamburger.-active{
        transform: translateX(0);
    }

    /* メニュー内レイアウト */
    .hamburger .menu_area .menu{
        margin: 1.5em 0;
        display: flex;
        flex-wrap: wrap;
        gap: 0em;
    }

    .hamburger .menu_area .menu li{
        width: 100%;
        border-bottom: solid 1px var(--border);
    }

    .hamburger .menu_area .menu li:last-child{
        border-bottom: unset;
    }

    .hamburger .menu_area .menu li a{
        padding: 1.25em 1em;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5em;
        font-size: 1.2em;
    }

    .hamburger .menu_area .menu li a::after{
        content: unset;
    }

    .menu_button{
        width: 80px;
        height: 80px;
        flex-wrap: wrap;
        border-left: solid 1px var(--blue);
        border-right: solid 1px var(--blue);
        border-bottom: solid 1px var(--blue);
        border-radius: 0 0 5px 5px;
    }

    .menu_button .hamburger__line{
        top: 10px;
    }

    .-active.menu_button {
        transform: translateX(0px);
    }

    .menu_label{
        font-weight: 600;
        font-size: 0.75em;
    }

    .hamburger_logo{
        margin-bottom: 1.5em;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

}

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

}

@media screen and (min-width: 1024px) {
    .hamburger{
        padding: unset;
        max-width: unset;
        height: unset;
        border-radius: unset;
        border-top: unset;
        border-bottom: unset;
        background-color: unset;
        position: unset;
        right: unset;
        top: unset;
        z-index: unset;
        overflow-y: unset;
        transform: unset;
        transition: unset;
    }

    .menu_button{
        display: none;
    }

    .hamburger .menu_area .menu{
        margin: 0.5em 0 0 0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 1.25em;
    }

     .hamburger .menu_area .menu li{
        width:unset;
        display: flex;
        align-items: center;
        border-bottom: unset;
    }

     .hamburger .menu_area .menu li:last-child{
        border-bottom: unset;
    }

     .hamburger .menu_area .menu li a{
        padding: 0 0 0.5em 0;
        width: unset;
        display: flex;
        justify-content: center;
        align-items: unset;
        gap: unset;
    }

    .hamburger .menu_area .menu li a::after{
        content: '';
    }

    .hamburger_logo{
        display: none;
    }
}

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

}

/*====================================
サイト内検索 検索フォーム
=====================================*/
.site_search__area{
  max-width: 300px;
  width: 100%;
}

.vkfs{
  margin-bottom: 0rem !important;
  height: 100%;
  font-size: 1rem;
  position: relative;
}

.site_search__area .vkfs__label-name{
  display: none;
  font-weight: 500;
  font-size: 14px;
}

.search_form .vkfs__input-wrap {
  align-items: center;
}

.search_form.vkfs .vkfs__input-wrap::after{
  width: 25px;
  height: 25px;
  content: '';
  mask-image: url(../img/icon/search.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--black);
  position: absolute;
  left: 10px;
  z-index: 1;
}

.search_form.vkfs input[type=text]{
  margin-bottom: 0;
  padding-left: 2rem;
  padding-right: 45px;
  height: 40px;
  border: solid 2px var(--blue);
  border-radius: 30px;
  font-weight: 500;
  font-size: 1em;
  position: relative;
}

.search_form.vkfs button[type=submit]{
  margin-top: 0rem;
  padding: 0.25rem 0;
  width: 50px;
  height: 40px;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
}

.search_form .vkfs_submit-text{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input_search.vkfs__outer-wrap{
  flex-basis: unset;
  margin-bottom: 0rem;
}