@charset "UTF-8";
/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   html, body
--------------------------------------------- */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    color: #252334;
    font-weight: 600;
    font-size: 14px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic bold", "游ゴシック bold", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 750px) {
    html,
    body {
        font-size: 1.86667vw;
    }
}

body {
    min-width: 1200px;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    body {
        min-width: 320px;
        line-height: 1.5;
    }
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
    max-width: 100%;
    width: auto;
    height: auto;
    vertical-align: bottom;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
}

/*  header-container
--------------------------------------------- */
.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto 0;
    padding: 0 20px;
    min-width: 950px;
    max-width: 1080px;
}

/* @media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .header-container {
        padding: 0 2.66667vw;
        min-width: initial;
        min-width: 0;
        max-width: initial;
        max-width: 100%;
    }
} */

@media screen and (max-width: 1100px) {
    .header-container {
        min-width: 0;
        padding-right: 120px;
    }
}

@media screen and (max-width: 750px) {
    .header-container {
        padding: 0;
        max-width: initial;
        max-width: 100%;
        width: 100%;
        height: 71px;
        margin-top: 0;
    }
}

.header__logo {
    background-size: 100% 100%;
    width: 190px;
    height: 91px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: url(/assets/img/common/bg_logo.png) no-repeat center center transparent;
    background-size: 100% auto;
}
.header__logo > a {
    width: 100%;
    height: 100%;
    padding-top: 34px;
    display: block;
}
.header__logo > a:focus-visible {
    outline-color: orange;
}
.header__logo svg {
    width: 123px;
    height: 21px;
    position: relative;
    z-index: 1;
}
.header__logo svg path {
    fill: #fff;
}
@media screen and (max-width: 1100px) {
    .header__logo {
        width: 120px;
        height: 91px;
        background-size: auto 91px;
        background-position: center right;
    }
    .header__logo svg {
        width: 95px;
        height: 16px;
    }
}
@media screen and (max-width: 750px) {
    .header__logo {
        height: 71px;
        background-size: auto 71px;
    }
    .header__logo > a {
        padding-top: 27px;
    }
}

.header__name {
    position: absolute;
    top: 0;
    left: 190px;
    display: inline-block;
    padding: 10px 20px 8px;
    border-bottom: 2px solid #0068b5;
    line-height: 1;
}
.header__name img {
    width: 210px;
    height: 14px;
}

@media screen and (max-width: 1100px) {
    .header__name {
        left: 120px;
        padding: 8px 5px 6px 5px;
    }
    .header__name img {
        width: 165px;
        height: auto;
    }
}

@media screen and (max-width: 750px) {
    .header__name img {
        width: 135px;
    }
}

.header__util {
    height: 36px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__util-contact {
    width: 145px;
    height: 100%;
    background-color: #0068b5;
}
.header__util-contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 5px;
    color: #FFFFFF;
    font-size: 12px;
    box-sizing: border-box;
    transition: opacity 150ms ease-in-out;
}
.header__util-contact a img {
    padding-right: 12px;
}
.header__util-search {
    width: 36px;
    height: 100%;
    background-color: #00469B;
}
.header__util-search-item {
    position: fixed;
    top: 91px;
    right: 0;
    left: 0;
    z-index: 99;
    display: none;
    padding: 33px 20px;
    margin: 0 auto;
    height: auto;
    background-color: #5d5d5d;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 751px) {
    .header__util-contact a:hover {
        opacity: .7;
    }
}
@media screen and (max-width: 1100px) {
    .header__util {
        height: 30px;
    }
    .header__util-contact {
        width: 125px;
    }
    .header__util-contact a {
        font-size: 10px;
    }
    .header__util-contact a img {
        padding-right: 8px;
    }
}
@media screen and (max-width: 750px) {
    .header__util {
        display: none;
    }
}

.header__toppan {
  position: absolute;
  right: 8px;
  bottom: 4px;
}
.header__toppan__btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 258px;
  height: 42px;
  padding: 0 16px;
  background-color: #f0f0f0;
  color: #000;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .04em;
  transition: background-color 150ms ease-in-out;
}
.header__toppan__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: url(/assets/img/common/icon_link_tab.svg) 50% 50%/100% no-repeat;
}
@media screen and (min-width: 751px) {
    .header__toppan__btn:hover {
        background-color: #e0e0e0;
    }
}
@media screen and (max-width: 1100px) {
    .header__toppan__btn {
        width: 203px;
        height: 32px;
        font-size: 10px;
        padding: 0 16px 0 8px;
    }
    .header__toppan__btn::after {
        right: 10px;
        width: 10px;
        height: 10px;
        margin-top: -5px;
    }
}
@media screen and (max-width: 750px) {
    .header__toppan {
        display: none;
    }
}

@media screen and (min-width: 751px) {
    .header__opener {
        display: none !important;
    }
}
@media screen and (max-width: 750px) {
    .header__opener {
        display: block;
        position: absolute;
        top: 7px;
        right: 5px;
        z-index: 2;
    }
    .header__opener > button {
        padding: 10px 0;
        width: 64px;
        color: #222;
        display: block;
    }
    .body-fixed .header__opener {
        transition: background-color 0ms 200ms;
    }

    .header__opener__icon {
        width: 22px;
        height: 17px;
        margin: 0 auto;
        display: block;
        position: relative;
    }
    .header__opener__icon > span {
        width: 100%;
        height: 2px;
        background-color: #222;
        display: block;
        position: absolute;
        left: 0;
    }
    .header__opener__icon > span:nth-child(1) {
        top: 0;
        transition-property: all;
        transition-duration: 0.4s;
        transition-timing-function: ease;
    }
    .header__opener__icon > span:nth-child(2) {
        top: 50%;
        transform: translate3d(0, -50%, 0);
        transition-property: all;
        transition-duration: 0.4s;
        transition-timing-function: ease;
    }
    .header__opener__icon > span:nth-child(3) {
        bottom: 0;
        transition-property: all;
        transition-duration: 0.4s;
        transition-timing-function: ease;
    }
    .body-fixed .header__opener__icon > span:nth-child(1) {
        transform: rotate(45deg);
        top: 50%;
    }
    .body-fixed .header__opener__icon > span:nth-child(2) {
        opacity: 0;
        left: 100%;
    }
    .body-fixed .header__opener__icon > span:nth-child(3) {
        transform: rotate(-45deg);
        top: 50%;
    }
    .header__opener__label {
        margin-top: 12px;
        padding-left: .24em;
        font-family: "Roboto Condensed", sans-serif;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .24em;
        display: block;
    }
    .header__opener__label .open {
        display: block;
    }
    .header__opener__label .close {
        display: none;
    }
    .body-fixed .header__opener__label .open {
        display: none;
    }
    .body-fixed .header__opener__label .close {
        display: block;
    }
    .sp__header__nav {
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        position: fixed;
        top: 0;
        left: 0;
        height: 0;
        opacity: 0;
        z-index: 1;
        transition: height 0ms 251ms ease-in-out, opacity 250ms 0ms ease-in-out;
    }
    .body-fixed .sp__header__nav {
        height: 100%;
        opacity: 1;
        transition: height 0ms 0ms ease-in-out, opacity 250ms 1ms ease-in-out;
    }
}


/*  header-nav
--------------------------------------------- */
.header-nav {
    font-size: 16px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .header-nav {
        font-size: 1.33333vw;
    }
}

@media screen and (min-width: 751px) {
    .header-nav {
        display: block !important;
        height: auto !important;
        padding: 0 !important;
        margin-top: 0 !important;
    }
}

@media screen and (max-width: 750px) {
    .header-nav {
        position: absolute;
        top: 0;
        left: 0;
        overflow-y: scroll;
        margin-top: 71px;
        max-height: calc(100vh - 71px);
        width: 100%;
        height: 100vh;
        background-color: #0068b7;
        color: #fff;
    }
}

.header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    letter-spacing: .02em;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .header-nav__list {
        margin-right: 0;
        height: auto;

        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.header-nav__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .header-nav__list-item {
        display: block;
        -ms-flex-align: center;
        width: 100%;

        -webkit-box-align: center;
        align-items: center;
    }
}

.header-nav__list-item:last-child {
    padding-right: 0;
}

.header-nav__link {
    position: relative;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    -webkit-transition: .3s;
    transition: .3s;
}
.header-nav__link::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    pointer-events: none;
    transition: background-color 0.3s ease-in-out;
}

@media screen and (max-width: 1100px) {
    .header-nav__link {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media screen and (max-width: 750px) {
    .header-nav__link {
        position: relative;
        display: block;
        padding: 0 3.46667vw;
        width: 100%;
        height: 13.33333vw;
        border-bottom: 1px solid #fff;
        font-size: 3.46667vw;
        line-height: 13.33333vw;
    }
    .header-nav__link:after {
        position: absolute;
        top: 50%;
        right: 5%;
        width: 2vw;
        height: 2vw;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        content: '';
        -webkit-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
    }
}

@media screen and (min-width: 751px) {
    .header-nav__link:hover::before {
        background-color: #0068b5;
    }
    .header-nav__link.js-opened::before {
        background-color: #0068b5;
    }

}

.header-nav__link span {
    position: relative;
    top: -0.1em;
}

@media screen and (max-width: 750px) {
    .header-nav__link-sp {
        position: relative;
        display: block;
        padding: 0 3.46667vw;
        width: 100%;
        height: 13.33333vw;
        border-bottom: 1px solid #fff;
        font-size: 3.46667vw;
        line-height: 13.33333vw;
        cursor: pointer;
    }
    .header-nav__link-sp:before, .header-nav__link-sp:after {
        position: absolute;
        top: 50%;
        right: 4%;
        display: block;
        width: 3.33333vw;
        height: 2px;
        background: #fff;
        content: '';
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .header-nav__link-sp:after {
        background: #fff;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        -webkit-transform: translateY(-50%) rotate(90deg);
        transform: translateY(-50%) rotate(90deg);
    }
    .header-nav__link-sp.active:after {
        -webkit-transition: 0.5s;
        transition: 0.5s;
        -webkit-transform: translateY(-50%) rotate(0);
        transform: translateY(-50%) rotate(0);
    }
}

.header-nav__contact {
    margin: 0 15px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .header-nav__contact {
        margin: 1.25vw;
    }
}

@media screen and (max-width: 750px) {
    .header-nav__contact {
        margin: 7.2vw auto;
        padding-bottom: 21.6vw;
    }
}

.header-nav__btn {
    padding: 6px 13px 6px 40px;
    border: 2px solid #0068b7;
    background: #0068b7 url(/assets/img/mail_icon_white.png) 10px 50% no-repeat;
    background-size: 23px auto;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .header-nav__btn {
        padding: 0.5vw 1.08333vw 0.5vw 3.33333vw;
        background-size: 1.91667vw auto;
    }
}

@media screen and (max-width: 750px) {
    .header-nav__btn {
        display: block;
        margin: 0 auto;
        padding: 0 0 0 14.93333vw;
        width: 42.13333vw;
        height: 10.13333vw;
        border-radius: 14.4vw;
        background: url(/assets/img/mail_icon_red_sp.png) 6.66667vw 50% no-repeat;
        background-color: #fff;
        background-size: 15%;
        color: #0068b7;
        font-size: 3.46667vw;
        line-height: 9.53333vw;
    }
}

.header-nav__btn:hover {
    background: #fff url(/assets/img/mail_icon_red.png) 10px 50% no-repeat;
    color: #0068b7;
}

@media screen and (max-width: 750px) {
    .header-nav__btn:hover {
        background: #fff url(/assets/img/mail_icon_red_sp.png) 6.66667vw 50% no-repeat;
        background-size: 15%;
    }
}

.header-nav__btn > span {
    position: relative;
    top: .1em;
}

body.ie .header-nav__btn > span {
    top: .2em;
}

.gnav-menu-lv2 {
    position: absolute;
    top: 91px;
    right: 0;
    left: 0;
    z-index: 99;
    display: none;
    padding: 33px 0;
    height: auto;
    background-color: #5d5d5d;
    font-size: 14px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .gnav-menu-lv2 {
        padding: 2.75vw 0;
        font-size: 1.16667vw;
    }
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv2 {
        position: static;
        padding: 0;
        background-color: #4c95cd;
    }
}

.gnav-menu-lv2--search {
    background-color: rgba(255, 255, 255, 0.8);
}

.gnav-menu-lv2__list {
    margin: 0 auto;
    width: 921px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .gnav-menu-lv2__list {
        width: 77.08333vw;
    }
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv2__list {
        width: 100%;
    }
}

.gnav-menu-lv2__list--search {
    width: 1040px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .gnav-menu-lv2__list--search {
        width: 86.66667vw;
    }
}

.gnav-menu-lv2__item {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    width: 300px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .gnav-menu-lv2__item {
        width: 25vw;
    }
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv2__item {
        padding-left: 0;
        width: 100%;
    }
}

.gnav-menu-lv2__item:before {
    position: absolute;
    top: 20%;
    left: 9%;
    color: #fff;
    content: '>';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv2__item:before {
        display: none;
    }
}

.gnav-menu-lv2__item--catalog {
    padding-left: 22px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .gnav-menu-lv2__item--catalog {
        padding-left: 1.83333vw;
    }
}

.gnav-menu-lv2__item--search {
    width: 990px;
}

.gnav-menu-lv2__item--search:before {
    display: none;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .gnav-menu-lv2__item--search {
        width: 82.91667vw;
    }
}

.gnav-menu-lv2__link {
    position: relative;
    display: block;
    padding: 11px 0 11px 22px;
    color: #fff;
    text-align: left;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .gnav-menu-lv2__link {
        padding: 0.91667vw 0 0.91667vw 1.83333vw;
    }
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv2__link {
        display: block;
        padding: 4.53333vw 3.46667vw 0;
        width: 100%;
        height: 13.33333vw;
        border-bottom: 1px solid #fff;
        font-weight: normal;
        font-size: 3.46667vw;
    }
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv2__link:after {
        position: absolute;
        top: 50%;
        right: 5%;
        width: 2vw;
        height: 2vw;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        content: '';
        -webkit-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
    }
}

.gnav-menu-lv2__link--catalog {
    padding: 11px 0 11px 11px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .gnav-menu-lv2__link--catalog {
        padding: 0.91667vw 0;
    }
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv2__link--catalog {
        padding: 4.53333vw 3.46667vw 0;
    }
}

.gnav-menu-lv2__link--bold {
    background-color: #0068b7;
    font-weight: bold;
}

.gnav-menu-lv2__link:hover {
    text-decoration: none;
}

/*  gnav-menu-lv2-2
--------------------------------------------- */
.gnav-menu-lv2-2 {
    position: absolute;
    top: 91px;
    right: 0;
    left: 0;
    z-index: 99;
    display: none;
    height: auto;
    background-color: #5d5d5d;
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv2-2 {
        position: static;
        padding: 0;
        background-color: #99c3e2;
    }
}

.gnav-menu-lv2-2__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    max-width: 1040px;
    margin: 0 auto;
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv2-2__list {
        display: block;
    }
}

.gnav-menu-lv2-2__item {
    width: calc(260 / 1040 * 100%);
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv2-2__item {
        width: 100%;
    }
}

.gnav-menu-lv2-2__link {
    position: relative;
}

.gnav-menu-lv2-2__link {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #5d5d5d;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .gnav-menu-lv2-2__link {
        font-size: max(1.1vw, 12px);
    }
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv2-2__link {
        display: block;
        padding: 4.53333vw 3.46667vw 0;
        width: 100%;
        height: 13.33333vw;
        border-bottom: 1px solid #fff;
        font-weight: normal;
        font-size: 3.46667vw;
    }
}

.gnav-menu-lv2-2__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    -webkit-transform: translateY(-75%) rotate(135deg);
    transform: translateY(-75%) rotate(135deg);
    transition: 0.5s;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .gnav-menu-lv2-2__link::before {
        right: calc(18 / 1200 * 100vw);
        width: calc(8 / 1200 * 100vw);
        height: calc(8 / 1200 * 100vw);
    }
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv2-2__link::before {
        right: 5%;
        width: 2vw;
        height: 2vw;
        -webkit-transform: translateY(-25%) rotate(45deg);
        transform: translateY(-25%) rotate(45deg);
    }
}

@media screen and (min-width: 751px) {
    .gnav-menu-lv2-2__link.js-opened {
        background-color: #f0efed;
        color: #5d5d5d;
    }

    .gnav-menu-lv2-2__link.js-opened::before {
        -webkit-transform: translateY(-25%) rotate(-45deg);
        transform: translateY(-25%) rotate(-45deg);
        border-color: #5d5d5d;
    }
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv2-2__link-sp {
        position: relative;
        display: block;
        padding: 4.53333vw 3.46667vw 0;
        width: 100%;
        height: 13.33333vw;
        border-bottom: 1px solid #fff;
        font-weight: normal;
        font-size: 3.46667vw;
        cursor: pointer;
        background-color: #4c95cd;
    }
    .gnav-menu-lv2-2__link-sp:before, .gnav-menu-lv2-2__link-sp:after {
        position: absolute;
        top: 50%;
        right: 4%;
        display: block;
        width: 3.33333vw;
        height: 2px;
        background: #fff;
        content: '';
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .gnav-menu-lv2-2__link-sp:after {
        background: #fff;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        -webkit-transform: translateY(-50%) rotate(90deg);
        transform: translateY(-50%) rotate(90deg);
    }
    .gnav-menu-lv2-2__link-sp.active:after {
        -webkit-transition: 0.5s;
        transition: 0.5s;
        -webkit-transform: translateY(-50%) rotate(0);
        transform: translateY(-50%) rotate(0);
    }
}

/*  gnav-menu-lv3
--------------------------------------------- */
.gnav-menu-lv3 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    display: none;
}

@media screen and (min-width: 751px) {
    .gnav-menu-lv3 {
        background-color: #f0efed;
        padding: 44px;
    }
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .gnav-menu-lv3 {
        padding: calc(44 / 1200 * 100vw);
    }
}

@media screen and (min-width: 751px) {
    .gnav-menu-lv3__list {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-wrap: wrap;
        max-width: 1040px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv3 {
        position: static;
    }
}

@media screen and (min-width: 751px) {
    .gnav-menu-lv3__item {
        width: calc(243.5 / 1040 * 100%);
        margin-right: calc(22 / 1040 * 100%);
    }
}

@media screen and (min-width: 751px) {
    .gnav-menu-lv3__item:nth-of-type(4n) {
        margin-right: 0;
    }

    .gnav-menu-lv3__item:nth-of-type(n + 5) {
        margin-top: 22px;
    }
}

.gnav-menu-lv3__item--btn {
    display: flex;
    align-items: center;
}

.gnav-menu-lv3__link {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv3__link {
        display: block;
        padding: 4.53333vw 3.46667vw 0;
        width: 100%;
        height: 13.33333vw;
        border-bottom: 1px solid #fff;
        font-weight: normal;
        font-size: 3.46667vw;
    }
}

.gnav-menu-lv3__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid #5d5d5d;
    border-right: 2px solid #5d5d5d;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .gnav-menu-lv3__link::after {
        width: calc(8 / 1200 * 100vw);
        height: calc(8 / 1200 * 100vw);
    }
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv3__link::after {
        right: 5%;
        width: 2vw;
        height: 2vw;
        -webkit-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
        border-color: #fff;
    }
}

.gnav-menu-lv3__link-icon {
    position: relative;
    width: 50px;
    margin-right: 13px;
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv3__link-icon {
        display: none;
    }
}

.gnav-menu-lv3__link-icon-2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

@media screen and (min-width: 751px) {
    .gnav-menu-lv3__link-icon-2 {
        transition: opacity 0.3s;
    }

    .gnav-menu-lv3__link:hover .gnav-menu-lv3__link-icon-2 {
        opacity: 1;
    }
}

@media screen and (min-width: 751px) {
    .gnav-menu-lv3__link-txt {
        position: relative;
        font-size: 14px;
        font-weight: 500;
        color: #5d5d5d;
        width: calc(100% - 50px);
        padding-right: 1em;
    }

    .gnav-menu-lv3__link-txt::after {
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #5d5d5d;
        content: "";
        -webkit-transition: .3s;
        transition: .3s;
    }

    .gnav-menu-lv3__link:hover .gnav-menu-lv3__link-txt::after {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .gnav-menu-lv3__link-txt {
        font-size: max(1.1vw, 12px);
    }
}

.gnav-menu-lv3__btn {
    position: relative;
    display: block;
    color: #fff;
    font-weight: bold;
    background-color: #0068b7;
}

@media screen and (min-width: 751px) {
    .gnav-menu-lv3__btn {
        flex-shrink: 0;
        width: calc(100% + 12px);
        padding: 6px 15px 5px;
        border: 2px solid #0068b7;
        text-align: center;
        font-size: 14px;
        line-height: 1;
        transition: background .3s, color .3s;
    }
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .gnav-menu-lv3__btn {
        font-size: max(1.1vw, 12px);
    }
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv3__btn {
        padding: 4.53333vw 3.46667vw 0;
        width: 100%;
        height: 13.33333vw;
        border-bottom: 1px solid #fff;
        font-weight: normal;
        font-size: 3.46667vw;
        background-color: #99c3e2;
    }
}

.gnav-menu-lv3__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    transition: border-color .3s;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .gnav-menu-lv3__btn::after {
        width: calc(8 / 1200 * 100vw);
        height: calc(8 / 1200 * 100vw);
    }
}

@media screen and (max-width: 750px) {
    .gnav-menu-lv3__btn::after {
        right: 5%;
        width: 2vw;
        height: 2vw;
        -webkit-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
    }
}

@media screen and (min-width: 751px) {
    .gnav-menu-lv3__btn:hover {
        color: #0068b7;
        background-color: #fff;
    }

    .gnav-menu-lv3__btn:hover::after {
        border-color: #0068b7;
    }
}

@media screen and (max-width: 750px) {
    .nav-target {
        display: none;
    }
}

/*  header-search
--------------------------------------------- */
.header-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1040px;
    height: 45px;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .header-search {
        width: 86.66667vw;
        height: 3.75vw;
    }
}

@media screen and (max-width: 750px) {
    .header-search {
        margin: 7.2vw auto 0px;
        width: 91.33333vw;
        height: 10vw;
        background-color: #fff;
    }
}

.header-search__txtbox {
    padding: 5px 15px;
    width: 995px;
    height: 45px;
    border: none;
    background-color: #eef2f3;
    font-size: 20px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .header-search__txtbox {
        padding: 0.41667vw 1.25vw;
        width: 82.91667vw;
        height: 3.75vw;
        font-size: 1.66667vw;
    }
}

@media screen and (max-width: 750px) {
    .header-search__txtbox {
        padding: 0.66667vw 3vw;
        width: 78.66667vw;
        height: 10vw;
        border: none;
        background-color: #fff;
        font-size: 3.46667vw;
    }
}

.header-search__txtbox:focus {
    outline: none;
}

.header-search__btn {
    padding-top: 45px;
    width: 45px;
    height: 0;
    border: none;
    background: url("/assets/img/icon_menu_loupe_white.jpg") center center no-repeat;
    background-color: #0068b7;
    background-size: 100%;
    cursor: pointer;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .header-search__btn {
        padding-top: 3.75vw;
        width: 3.75vw;
    }
}

@media screen and (max-width: 750px) {
    .header-search__btn {
        padding-top: 10vw;
        width: 11.33333vw;
        height: 0;
        border: none;
        background: url("/assets/img/icon_menu_loupe.png") center center no-repeat;
        background-size: 60% auto;
        cursor: pointer;
    }
}

.loupe-ico {
    width: 100%;
    height: 100%;
    background: url("/assets/img/common/icon_search.svg") calc(50% - 2px) calc(50% - 2px) no-repeat;
    background-size: 19px auto;
    cursor: pointer;
    transition: opacity 150ms ease-in-out;
}
@media screen and (min-width: 751px) {
    .loupe-ico:hover {
        opacity: .7;
    }
}

/* @media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .loupe-ico {
        margin-left: 0.83333vw;
        width: 5vw;
        height: 8.33333vw;
    }
} */

/* .loupe-ico:after {
    padding-bottom: 10px;
    width: 60px;
    height: 60px;
    background: url("/assets/img/icon_menu_loupe.png") right bottom no-repeat;
    background-size: 40%;
    content: '';
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .loupe-ico:after {
        padding-bottom: 0.83333vw;
        width: 5vw;
        height: 5vw;
    }
} */

.js-search-opened {
    display: block;
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper {
    min-width: 1200px;
}

@media screen and (max-width: 750px) {
    .wrapper {
        min-width: initial;
        min-width: auto;
    }
}

body.home .wrapper {
    min-width: initial;
    min-width: auto;
    overflow-x: hidden;
}

.wrapper--contact {
    font-family: "Yu Gothic Medium", "ÓÎ¥´¥·¥Ã¥¯ Medium", "Yu Gothic bold", "ÓÎ¥´¥·¥Ã¥¯ bold", YuGothic, "ÓÎ¥´¥·¥Ã¥¯Ìå", "¥Ò¥é¥®¥Î½Ç¥´ Pro W3", "¥á¥¤¥ê¥ª", sans-serif;
}

/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
    position: relative;
}

/* ---------------------------------------------
*   main
--------------------------------------------- */
/* ---------------------------------------------
*   sidebar
--------------------------------------------- */
.sidebar {
    z-index: 9;
    width: 246px;
    height: calc(100vh - 100px - 44px);
    font-family: "ÓÎ¥´¥·¥Ã¥¯Ìå", YuGothic, "ÓÎ¥´¥·¥Ã¥¯ Medium", "Yu Gothic Medium","ÓÎ¥´¥·¥Ã¥¯ bold", "Yu Gothic bold", "ÓÎ¥´¥·¥Ã¥¯", "Yu Gothic", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
}

@media screen and (max-width: 750px) {
    .sidebar {
        margin-top: 13.33333vw;
        width: 100%;
        height: auto;
    }
}

.sidebar.is-fixed {
    position: fixed;
    top: 100px;
}

@media screen and (max-width: 750px) {
    .sidebar.is-fixed {
        position: static;
    }
}

.sidebar.is-bottom {
    position: absolute;
    top: auto;
    bottom: 44px;
}

@media screen and (max-width: 750px) {
    .sidebar.is-bottom {
        position: static;
    }
}

/* ---------------------------------------------
*   sidebar-nav
--------------------------------------------- */
.sidebar-nav {
    background-color: #fff;
    color: #0068b7;
}

@media screen and (max-width: 750px) {
    .sidebar-nav {
        margin-bottom: 7.2vw;
    }
}

.sidebar-nav__ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    height: 43px;
    border-bottom: 1px solid #0068b7;
    font-size: 16px;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .sidebar-nav__ttl {
        top: 0 !important;
        height: 9.33333vw;
        border-top: 1px solid #0068b7;
        font-size: 3.73333vw;
    }
}

.sidebar-nav__list {
    display: block;
    overflow-y: scroll;
    height: calc(100vh - 100px - 44px - 43px);
}

@media screen and (max-width: 750px) {
    .sidebar-nav__list {
        overflow: hidden;
        height: auto;
    }
    .sidebar-nav__list:after {
        display: block;
        clear: both;
        content: "";
    }
}

@media screen and (max-width: 750px) {
    .sidebar-nav__list-item {
        float: left;
        width: 50%;
    }
}

.sidebar-nav__list-item:nth-of-type(2n-1) {
    clear: both;
}

@media screen and (max-width: 750px) {
    .sidebar-nav__list-item:nth-of-type(2n-1) .sidebarnav-menu-lv2 {
        margin-right: -100%;
    }
}

@media screen and (max-width: 750px) {
    .sidebar-nav__list-item:nth-of-type(2n) .sidebarnav-menu-lv2 {
        margin-left: -100%;
    }
}

@media screen and (max-width: 750px) {
    .sidebar-nav__list-item:nth-of-type(odd) .sidebar-nav__link {
        border-right: 1px solid #0068b7;
    }
}

.sidebar-nav__link {
    position: relative;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    padding: 15px 25px 15px 15px;
    height: 53px;
    border-bottom: 1px solid #0068b7;
    text-align: left;
    font-weight: normal;
    -webkit-transition: background-color .3s, color .3s, translate .3s;
    transition: background-color .3s, color .3s, translate .3s;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .sidebar-nav__link {
        padding: 2vw 20px;
        height: 13.33333vw;
        font-size: 3.46667vw;
    }
}

.sidebar-nav__link:hover, .sidebar-nav__link.is-current {
    background-color: #0068b7;
    color: #fff;
}

/*.sidebar-nav__link:hover:after, .sidebar-nav__link.is-current:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

@media screen and (max-width: 750px) {
    .sidebar-nav__link:hover:after, .sidebar-nav__link.is-current:after {
        right: 2.4vw;
        width: 1.6vw;
        height: 1.6vw;
    }
}*/

/*.sidebar-nav__link:after {
    position: absolute;
    top: 43%;
    right: 13px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #0068b7;
    border-right: 2px solid #0068b7;
    content: '';
    -webkit-transition: translate .3s;
    transition: translate .3s;
    -webkit-transform: translateY(-50%) rotate(135deg);
    transform: translateY(-50%) rotate(135deg);
}

@media screen and (max-width: 750px) {
    .sidebar-nav__link:after {
        right: 2.4vw;
        width: 1.6vw;
        height: 1.6vw;
    }
}*/

.sidebar-nav__link span {
    position: relative;
    top: .1em;
}

.sidebar-nav__link--other:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 6.5%;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.sidebar-nav__link--other:hover:after, .sidebar-nav__link--other.is-current:after {
    right: 6.5%;
}

/* ---------------------------------------------
*   sidebarnav-menu-lv2
--------------------------------------------- */
.sidebarnav-menu-lv2 {
    display: none;
}

@media screen and (max-width: 750px) {
    .sidebarnav-menu-lv2__list:after {
        display: block;
        clear: both;
        content: "";
    }
}

@media screen and (max-width: 750px) {
    .sidebarnav-menu-lv2__item {
        float: left;
        width: 50%;
    }
}

@media screen and (max-width: 750px) {
    .sidebarnav-menu-lv2__item:nth-of-type(odd) {
        border-right: 1px solid #0068b7;
    }
}

.sidebarnav-menu-lv2__link {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    padding: 15px;
    width: 100%;
    height: 53px;
    border-bottom: 1px solid #0068b7;
    background-color: rgba(0, 104, 183, 0.1);
    text-align: left;
    font-weight: normal;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .sidebarnav-menu-lv2__link {
        padding: 2vw;
        height: 13.33333vw;
        font-size: 2.93333vw;
    }
}

.sidebarnav-menu-lv2__link span {
    top: .1em;
}

@media screen and (max-width: 750px) {
    .sidebarnav-menu-lv2__link--empty {
        padding: 2vw;
        height: 13.33333vw;
        font-size: 2.93333vw;
    }
}

.js-acc-opened {
    background-color: #0068b7;
    color: #fff;
}

.js-acc-opened:after {
    position: absolute;
    top: 56%;
    right: 13px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}

@media screen and (max-width: 750px) {
    .js-acc-opened:after {
        right: 2.4vw;
        width: 1.6vw;
        height: 1.6vw;
    }
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    position: relative;
    width: 100%;
}
.footer a[href] {
    transition: opacity 200ms ease-in-out;
}
@media screen and (min-width: 751px) {
    .footer a[href]:hover {
        opacity: .7;
        transition: opacity 150ms ease-in-out;
    }
}

@media screen and (max-width: 750px) {
    .footer {
        margin-top: 14.93333vw;
    }
}

@media screen and (max-width: 750px) {
    .footer--mgt-s {
        margin-top: 6.66667vw;
    }
}

@media screen and (max-width: 750px) {
    .footer--mgtnone {
        margin-top: 0;
    }
}

/*  footer-container
--------------------------------------------- */
.footer-container {
    width: 100%;
}

/*  footer-bottom
--------------------------------------------- */
.footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    margin: 0 auto;
    width: 1050px;
    height: 124px;
    background-color: #fff;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .footer-bottom {
        width: 87.5vw;
        height: 10.33333vw;
    }
}

@media screen and (max-width: 750px) {
    .footer-bottom {
        display: block;
        width: 100%;
    }
}

/*  logo-wrap-right
--------------------------------------------- */
.logo-wrap-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .logo-wrap-right {
        display: block;
    }
}

.footer-logo__main {
    display: inline-block;
    margin-left: auto;
    width: 210px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .footer-logo__main {
        width: 17.5vw;
    }
}

@media screen and (max-width: 750px) {
    .footer-logo__main {
        margin: 0 auto;
        width: 50.93333vw;
    }
}

.footer-logo1 {
    width: 300px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .footer-logo1 {
        width: 25vw;
    }
}

@media screen and (max-width: 750px) {
    .footer-logo1 {
        margin: 4.4vw auto 0;
        width: 72.26667vw;
    }
}

.footer-logo-right {
    margin-right: 30px;
    text-align: right;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .footer-logo-right {
        margin-right: 2.5vw;
    }
}

@media screen and (max-width: 750px) {
    .footer-logo-right {
        margin: 14.13333vw 0 0;
        text-align: center;
    }
}

.privacy {
    width: 70px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .privacy {
        width: 5.83333vw;
    }
}

@media screen and (max-width: 750px) {
    .privacy {
        margin: 4.13333vw auto 0;
        width: 16.66667vw;
        text-align: center;
    }
}

.footer__inner {
    width: 1040px;
    margin: 0 auto;
    padding: 60px 0 35px;
    position: relative;
}
.footer__logo {
    position: absolute;
    top: 64px;
    left: 0;
}
.footer__logo > img {
    width: 330px;
    height: auto;
}
.footer__sns {
    position: absolute;
    top: 108px;
    left: 0;
}
.footer__sns > ul {
    font-size: 0;
}
.footer__sns > ul > li {
    font-size: 10px;
    display: inline-block;
    vertical-align: middle;
}
.footer__sns > ul > li + li {
    margin-left: 20px;
}
.footer__sns > ul > li a img {
    width: auto;
    height: 22px;
}
.footer__sns__item.-youtube a img {
    height: 18px;
}
.footer__links {
    margin-left: 395px;
}
.footer__links .company__links {
    display: flex;
    gap: 0 16px;
    margin-bottom: 32px;
}
.footer__links .company__links > li a {
    display: inline-block;
    background-color: #0068b5;
    line-height: 1;
    padding: 9px 12px;
}
.footer__links .company__links > li.-holdings img {
    width: 195px;
}
.footer__links .company__links > li.-toppan img {
    width: 110px;
}
.footer__links .internal__links {
    font-size: 0;
}
.footer__links .internal__links > li {
    width: 33%;
    margin-bottom: 18px;
    display: inline-block;
}
.footer__links .internal__links > li a {
    color: #222;
    font-size: 13px;
    line-height: 2;
}
.footer__links .internal__links > li a img {
    display: inline-block;
    vertical-align: top;
    padding-top: 10px;
    padding-right: 8px;
}

.footer__policy {
    margin-top: 45px;
}
.footer__policy > ul {
    font-size: 0;
    text-align: center;
}
.footer__policy > ul > li {
    min-width: 70px;
    margin: 0 8px;
    font-size: 10px;
    display: inline-block;
    vertical-align: middle;
}

.footer__policy__item.-i1 img {
    width: 68px;
}

.footer__copyright {
    margin-top: 50px;
    text-align: center;
}
.footer__copyright small {
    font-family: "Roboto", sans-serif;
    color: #2e3642;
    font-size: 11px;
    font-weight: 700;
}
@media (max-width: 750px) {
    .footer__inner {
        width: 100%;
        padding: 40px 20px 37px;
    }

    .footer__logo {
        position: relative;
        top: auto;
        left: auto;
    }
    .footer__logo > img {
        width: 238px;
        height: auto;
    }

    .footer__sns {
        margin-top: 22px;
        position: relative;
        top: auto;
        left: auto;
    }
    .footer__sns > ul > li + li {
        margin-left: 22px;
    }
    .footer__sns > ul > li a img {
        width: auto;
        height: 26px;
    }

    .footer__sns__item.-youtube a img {
        height: 21px;
    }

    .footer__links {
        margin-top: 35px;
        margin-left: 0;
    }
    .footer__links .company__links {
        display: block;
        margin-bottom: 35px;
    }
    .footer__links .company__links > li:not(last-child) {
        margin-bottom: 8px;
    }
    .footer__links .internal__links > li {
        width: 50%;
        margin-bottom: 10px;
    }
    .footer__links .internal__links > li a {
        font-size: 12px;
        display: block;
    }

    .footer__policy {
        margin-top: 35px;
    }
    .footer__policy > ul > li {
        min-width: 32px;
        margin: 0 7px;
        font-size: 5px;
    }

    .footer__policy__item.-i1 img {
        width: 40px;
    }

    .footer__copyright {
        margin-top: 35px;
    }
    .footer__copyright small {
        font-size: 9px;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    margin-top: 13px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .footer-copyright {
        margin-top: 1.08333vw;
    }
}

@media screen and (max-width: 750px) {
    .footer-copyright {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        -ms-flex-align: center;
        margin-top: 4vw;
        height: 11.2vw;
        background-color: #4f525d;
        color: #fff;
        text-align: center;
        font-size: 3.5vw;

        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
    }
}
