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

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

Contents:
    base settings
    javascript style hooks
    base blocks
========================================================== */
/*紫ぽい*/
/*h1*/
/*header お問い合わせ*/
/*seach txt*/
/*footer*/
/*main*/
/*border*/
/*h4 border*/
/*濃い*/
/*中間*/
/*薄い*/
/*文字*/
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #333333;
    font-size: 16px;
    font-family: "Noto Sans JP", 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;
}

/* ---------------------------------------------
*   font
--------------------------------------------- */
@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: "NotoSansCJKjp";
    src: url("../font/NotoSansCJKjp-Regular.woff");
}

@font-face {
    font-weight: bold;
    font-style: normal;
    font-family: "NotoSansCJKjp-Bold";
    src: url("../font/NotoSansCJKjp-Bold.woff");
}

.ff-sc {
    font-family: 'Noto Sans SC', sans-serif;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   base blocks
*
========================================================== */
/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    border-top: 25px solid #4F177F;
}

@media screen and (max-width: 750px) {
    .header {
        width: 100%;
        border-top: 12px solid #4F177F;
    }
}

/*  header-container
--------------------------------------------- */
.header-container {
    margin: 0 auto;
    padding-right: 10px;
    padding-left: 10px;
    width: 1000px;
}

@media screen and (max-width: 750px) {
    .header-container {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 2.66667vw;
        width: 100%;
    }
}

/*  header-upper
--------------------------------------------- */
.header-upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;

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

@media screen and (max-width: 750px) {
    .header-upper {
        -ms-flex-pack: justify;
        height: 50px;

        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

/*  headet-left
--------------------------------------------- */
.header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

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

.header-left__logo {
    margin-right: 10px;
    margin-bottom: 10px;
    width: 80px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.header-left__logo:hover {
    opacity: 0.8;
}

@media screen and (max-width: 750px) {
    .header-left__logo {
        margin-bottom: 0;
        width: 39px;
    }
}

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

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

.header-right__logo {
    width: 65px;
    margin: 10px 0;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.header-right__logo:hover {
    opacity: 0.8;
}

@media screen and (max-width: 750px) {
    .header-right__logo {
        width: 40px;
    }
}

.header-right__logo img {
    width: 100%;
}

/*  header-ttl
--------------------------------------------- */
.header-ttl {
    color: #313131;
    font-weight: bold;
    font-size: 20px;
}

@media screen and (max-width: 750px) {
    .header-ttl {
        font-size: 12px;
    }
}

/*  header-contact
--------------------------------------------- */
.header-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 20px;
    padding: 7px 30px;
    border: 1px solid #B69ECC;
    border-radius: 5px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.header-contact:hover {
    opacity: 0.8;
}

.header-contact__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin-right: 10px;

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

.header-contact__txt {
    color: #1B1B1B;
    font-weight: bold;
    font-size: 12px;
}

/*  header-nav
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1000;
        display: none;
        overflow: scroll;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        box-sizing: border-box;
        padding: 22.66667vw 2.66667vw;
        width: 100%;
        height: 100vh;
        background-color: #4F177F;
    }
}

.js-sp-menu-opened .header-nav {
    display: block;
}

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

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

.header-nav__list-item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100% / 6);
    height: 50px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    background-color: #4F177F;
    color: #fff;
}

.ie .header-nav__list-item {
    width: calc((100% - 5px) / 6);
}

.edge .header-nav__list-item {
    width: calc((100% - 5px) / 6);
}

@media screen and (max-width: 750px) {
    .header-nav__list-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(182, 158, 204, 0.3);

        -webkit-box-align: center;
        align-items: center;
    }
    .header-nav__list-item:first-of-type {
        border-top: 1px solid rgba(182, 158, 204, 0.3);
    }
}

.header-nav__list-item--large {
    width: calc(100% / 4);
    border-bottom: none;
}

.ie .header-nav__list-item--large {
    width: calc((100% - 5px) / 4);
}

.edge .header-nav__list-item--large {
    width: calc((100% - 5px) / 4);
}

@media screen and (max-width: 750px) {
    .header-nav__list-item--large {
        width: 100%;
        border-bottom: 1px solid rgba(182, 158, 204, 0.3);
    }
}

.header-nav__list-item--top-left {
    border-top-left-radius: 5px;
}

@media screen and (max-width: 750px) {
    .header-nav__list-item--top-left {
        border-top-left-radius: 0;
    }
}

.header-nav__list-item--top-right {
    border-right: none;
    border-top-right-radius: 5px;
}

@media screen and (max-width: 750px) {
    .header-nav__list-item--top-right {
        border-top-right-radius: 0;
    }
}

.header-nav__list-item--bottom-left {
    border-bottom-left-radius: 5px;
}

@media screen and (max-width: 750px) {
    .header-nav__list-item--bottom-left {
        border-bottom-left-radius: 0;
    }
}

.header-nav__list-item--bottom-right {
    border-bottom-right-radius: 5px;
}

@media screen and (max-width: 750px) {
    .header-nav__list-item--bottom-right {
        border-bottom-right-radius: 0;
    }
}

.header-nav__list-item--current {
    background-color: #B69ECC;
    color: #400B36;
}

@media screen and (max-width: 750px) {
    .header-nav__list-item--current {
        background-color: #4F177F;
        color: #fff;
    }
}

.header-nav__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 100%;
    height: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

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

.header-nav__link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 750px) {
    .header-nav__link {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 4vw 0;
        font-size: 4.26667vw;
    }
}

/*  header-search
--------------------------------------------- */
.header-search {
    margin-top: 10px;
    padding: 20px 0;
    border-radius: 5px;
    background-color: #EEE9F1;
}

@media screen and (max-width: 750px) {
    .header-search {
        margin-top: 1.33333vw;
        padding: 2.66667vw;
        border-radius: 1.33333vw;
    }
}

.header-search__container {
    margin: 0 auto;
    width: 560px;
}

@media screen and (max-width: 750px) {
    .header-search__container {
        width: 100%;
    }
}

.header-search__txt {
    font-size: 14px;
}

@media screen and (max-width: 750px) {
    .header-search__txt {
        font-size: 3.2vw;
    }
}

/* ---------------------------------------------
*   cse-search-box
--------------------------------------------- */

.cse-search-box {
    margin-bottom: 10px;
}

@media screen and (max-width: 750px) {
    .cse-search-box {
        margin-bottom: 1vw;
    }
}

.cse-search-box__input {
    width: 425px;
    border: 1px solid #BBBBBB;
    border-radius: 5px;
    height: 40px;
    font-size: 14px;
    padding-left: 10px;
    box-sizing: border-box;
    margin-right: 20px;
}

 @media screen and (max-width: 750px) {
    .cse-search-box__input {
        height: 8vw;
        padding-left: 2vw;
        margin-right: 2vw;
        font-size: 3.2vw;
        width: 77vw;
    }
 }

.cse-search-box__btn {
    padding: 0;
    width: 127px;
    height: 40px;
    border: none;
    border-radius: 5px;
    background-color: #434343;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
    cursor: pointer;
}

@media screen and (max-width: 750px) {
    .cse-search-box__btn {
        width: 8vw;
        height: 8vw;
        font-size: 3.2vw;
    }
}

.cse-search-box__btn:hover {
    opacity: 0.8;
}

.cse-search-box__icon {
    width: 13px;
    height: 13px;
    display: inline-block;
    margin-right: 5px;
    margin-top: -5px;
}

@media screen and (max-width: 750px) {
    .cse-search-box__icon {
        width: 3.6vw;
        height: 3.6vw;
        margin: 0;
    }

    .cse-search-box__icon img {
        width: 100%;
        box-sizing: border-box;
    }
}

/* ---------------------------------------------
*   カスタム検索　デザイン変更
--------------------------------------------- */

.gsc-search-button-v2 svg {
    display: none;
}

#gsc-i-id1 {
    background: none !important;
    text-indent: 0 !important;
}

@media screen and (max-width: 750px) {
    #gsc-i-id1.gsc-input {
        font-size: 3.2vw !important;
    }
}


.cse .gsc-control-cse, .gsc-control-cse {
    background-color: inherit !important;
    border: none !important;
    padding: 0 !important;
}

.gsc-input {
    padding: 0 !important;
}

.gsc-search-button-v2 {
    padding: 0;
    width: 127px !important;
    height: 40px;
    border: none;
    border-radius: 5px;
    background-color: #434343 !important;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
    color: #fff;
    font-weight: bold;
    font-size: 14px !important;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
    cursor: pointer;
    border: none !important;
    border-radius: 5px !important;
    background-image: url(../img/icon_search.svg) !important;
    background-position: 35% 50%;
    background-repeat: no-repeat;
    background-size: 13px auto !important;
    padding: 0 0 0 20px !important;
    margin-left: 20px !important;
}

@media screen and (max-width: 750px) {
    .gsc-search-button-v2 {
        background-position: 45% 45%;
        background-size: 3.6vw auto !important;
        width: 8vw !important;
        height: 8vw !important;
        margin-left: 2vw !important;
    }
}

@media screen and (max-width: 750px) {
    table.gsc-search-box {
        width: 98% !important;
    }
}

.gsc-input-box {
    height: 40px;
    border: 1px solid #BBBBBB !important;
    border-radius: 5px;
}

@media screen and (max-width: 750px) {
    .gsc-input-box {
        height: 8vw;
    }
}

.gsib_a {
    padding: 10px !important;
}

@media screen and (max-width: 750px) {
    .gsib_a {
        padding: 2vw !important;
    }
}

/*  header-menu-button
--------------------------------------------- */
.header-menu-button {
    position: relative;
    z-index: 2000;
    display: block;
    margin: 0;
    margin-right: 4vw;
    padding: 0;
    outline: none;
    border: 0;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.js-sp-menu-opened .header-menu-button {
    position: fixed;
}

.header-menu-button__lines {
    position: relative;
    display: block;
    width: 16px;
    height: 14px;
}

.header-menu-button__line {
    position: absolute;
    left: 0;
    display: block;
    padding-top: 2px;
    width: 100%;
    height: 0;
}

.header-menu-button__line--top, .header-menu-button__line--center, .header-menu-button__line--bottom {
    -webkit-transition: 500ms;
    transition: 500ms;
}

.header-menu-button__line--top {
    top: 0;
    background-color: #4F177F;
}

.header-menu-button__line--center {
    top: 50%;
    margin-top: -1px;
    background-color: #4F177F;
}

.header-menu-button__line--bottom {
    bottom: 0;
    width: 60%;
    background-color: #4F177F;
}

.js-sp-menu-opened .header-menu-button__line--top {
    top: 50%;
    background-color: #EEE9F1;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.js-sp-menu-opened .header-menu-button__line--center {
    background-color: rgba(0, 0, 0, 0);
}

.js-sp-menu-opened .header-menu-button__line--bottom {
    bottom: 50%;
    width: 100%;
    background-color: #EEE9F1;
    -webkit-transform: translateY(50%) rotate(-45deg);
    transform: translateY(50%) rotate(-45deg);
}

/*  header-menu-overlay
--------------------------------------------- */
.header-menu-overlay {
    position: fixed;
    top: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: calc(100% - 50px);
    background-color: rgba(0, 0, 0, 0.5);
}

.js-sp-menu-opened .header-menu-overlay {
    display: block;
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
/* ---------------------------------------------
*   main
--------------------------------------------- */
/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    padding: 35px 0;
    background-color: #D3D3D3;
}

@media screen and (max-width: 750px) {
    .footer {
        padding: 5.33333vw 0;
    }
}

.footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-align: center;
    margin: 0 auto;
    width: 1000px;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-box-align: center;
    align-items: center;
}

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

/*  footer-logo
--------------------------------------------- */
.footer-logo {
    margin-left: 30px;
}

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

.footer-logo__link {
    display: block;
    width: 57px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.footer-logo__link:hover {
    opacity: 0.8;
}

.footer-logo__link img {
    width: 100%;
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    text-align: center;
}

.footer-copyright__text {
    font-size: 12px;
}

@media screen and (max-width: 750px) {
    .footer-copyright__text {
        font-size: 3.2vw;
    }
}
