/* #wpadminbar {
    display: none;
} */

body {
    color: #2B1E1D;
    font-family:
        "游ゴシック体", 
        "Yu Gothic", 
        "YuGothic", 
        "游ゴシック Medium", 
        "Yu Gothic Medium", 
        "ヒラギノ角ゴ Pro W3", 
        "Hiragino Kaku Gothic Pro", 
        "メイリオ", 
        "Meiryo", 
        "Osaka", 
        "MS Pゴシック", 
        "MS PGothic", 
        sans-serif;
    font-size: 12pt;

    -webkit-text-size-adjust: 100%;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    padding-top: 160px
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

figure {
    margin: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

a[href^=tel] {
    color: inherit;
}

ul, ol {
    list-style: none;
}

img, video, iframe {
    display: block;
}

.clearfix:after {
    display: block;
    clear: both;
    text-decoration: none;
    content: "";
}

::placeholder {
    font-weight: 500;
}

input:not(input[type="checkbox"]), textarea, select {
    display: block;
    width: 100%;
    padding: 0.5em;
    border-style: solid;
    border-color: #e6e6e6;
    border-radius: 0;
    font-size: 1em;
    outline: none;

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

input[type="radio"] {
  all: initial;       /* すべて初期値に戻す */
  appearance: auto !important;   /* UAのデフォルトUIに戻す */
  display: inline-block !important; /* radioは標準でinline-block */
  width: auto !important;
}

input:focus, textarea:focus, select:focus {
    border-width: 2px;
    border-color: #313131;
    border-radius: 5px;
}

select {
    background-repeat: no-repeat;
    background-position: right 10px center;
}

select::-ms-expand {
    display: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="reset"], input[type="button"] {
    box-sizing: border-box;
    cursor: pointer;

    -webkit-appearance: button;
    appearance: button;
}

input[type="submit"]::-webkit-search-decoration, input[type="reset"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus, input[type="reset"]::focus, input[type="button"]::focus {
    outline-offset: -2px;
}

.container {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    border-left: 3px solid #D9D9D9;
    border-right: 3px solid #D9D9D9;
}

.container {
    position: relative;
    z-index: 1;
}

/**
    ヘッダー
*/

/* 固定ヘッダー全体 */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
}

/* 中身を中央寄せに */
.header-content_container {
    max-width: 1200px; /* サイトのコンテンツ幅に合わせる */
    margin: 0 auto;
    border-left: 3px solid #D9D9D9;
    border-right: 3px solid #D9D9D9;
}

.header-top_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.header-logo-img {
    width: 250px;
    padding-left: 26px;
}

.header-nav-container {
    display: flex;
    align-items: center;
}

.language-icon {
    width: 93px;
}

.header-list {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.header-list-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100px;
    height: 61px;
    text-align: center;
    border-left: 1px solid #3A3A3A;
}

.header-list-item#menu {
    display: none;
}

.header-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 50px;
}

.header-link#menu-button {
    cursor: pointer;
}

.link-icon {
    margin: auto;
}

#facebook.link-icon {
    width: 26px;
}

#instagram.link-icon {
    width: 26px;
}

#contact.link-icon {
    width: 19px;
}

#search.link-icon {
    width: 24px;
}

#menu.link-icon {
    width: 36px;
}

.link-text {
    font-size: 12px;
    color: #3A3A3A;
    line-height: 1.2;
}

.header-bottom_container {
    background-color: #002774;
    height: 92px;
}

.menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.menu-list-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% / 6);
    height: 72px;
    border-right: 1px solid #FFFFFF;
}

.menu-list-item:last-child {
    border-right: none;
}

.menu-link {
    text-align: center;
}

.menu-link span {
    color: #FFFFFF;
}

.ja-text {
    font-size: 18px;
}

.en-text {
    font-size: 14px;
}

.mobile-menu_container {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #002774;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    z-index: 10;
}

.mobile-menu_container {
    pointer-events: none;
}

.mobile-menu_container.open {
    pointer-events: auto;
}

.container {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 0;
    }
    .header-container {
        top: 16px;
    }
    .header-top_container {
        height: initial;
        position: relative;
        z-index: 15;
    }
    .header-container {
        background-color: initial;
    }
    .header-bottom_container {
        display: none;
    }
    .header-logo {
        background-color: rgba(255, 255, 255, 0.5);
        padding: 7px 0;
        padding-right: 2px;
    }
    .header-logo-img {
        width: clamp(8.688rem, 2.705rem + 21.27vw, 16rem);
        padding-left: 6px;
    }
    .language-change {
        display: none;
    }
    .header-list-item {
        width: 60px;
        position: relative;
        background-color: rgba(255, 255, 255, 0.5);
    }
    .link-text {
        display: none;
    }
    .header-list-item {
        border-left: none;
    }
    .header-list-item#menu {
        display: flex;
    }
    .header-list-item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 85%;
        transform: translateY(-50%); 
        border-right: 1px solid #707070;
        box-sizing: border-box;
        z-index: 1;
    }
    .header-link {
        position: relative;
        z-index: 2;
    }
    .mobile-menu_container {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #002774;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-30px);
        transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
        z-index: 10;
    }
    .mobile-menu_container.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .mobile-menu-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 16px;
        margin-top: 90px;
    }
    .mobile-menu-link {
        color: #FFFFFF;
        font-size: 18px;
        transition: all 0.3s ease;
    }
    .mobile-menu-link:hover {
        opacity: 0.7;
    }
    .menu-sns-list {
        display: flex;
        column-gap: 24px;
        margin-top: 36px;
        justify-content: center;
    }
    .sns-link-icon {
        margin: auto;
        width: 50px;
    }
    .sns-menu-link {
        line-height: 0.3;
    }
    .sns-menu-link span {
        display: block;
        text-align: center;
        color: #FFFFFF;
    }
}

@media screen and (max-width: 480px) {
    .header-list {
        margin-left: 20px;
    }
    .header-list-item {
        width: 40px;
        height: 41px;
        position: relative;
    }
    #facebook.link-icon {
        width: 18px;
    }

    #instagram.link-icon {
        width: 18px;
    }

    #contact.link-icon {
        width: 16px;
    }

    #search.link-icon {
        width: 18px;
    }

    #menu.link-icon {
        width: 22px;
    }
}

/**
    フッター
*/

#footer {
    background-color: #002774;
}

.footer_container {
    width: 95%;
    margin: auto;
    font-size: 20px;
    color: #FFFFFF;
    padding: 20px 0;
}

.top-company-info_container {
    display: flex;
    column-gap: 36px;
}

.menu-flex-container {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
}

.footer-menu_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 16px;
    max-width: 530px;
    color: #FFFFFF;
}

.footer-menu-link {
    color: #FFFFFF;
}

.contact-button-img{
    max-width: 297px;
}

.copyright-text_container {
    text-align: center;
    margin-top: 40px;
}

@media screen and (max-width: 900px) {
    .footer_container {
        font-size: 18px;
    }
    .footer-menu_container {
        max-width: 400px;
    }
}

@media screen and (max-width: 700px) {
    .footer_container {
        text-align: center;
    }
    .top-company-info_container {
        flex-direction: column;
        row-gap: 20px;
    }
    .menu-flex-container {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }
}

@media screen and (max-width: 500px) {
    .footer_container {
        width: 90%;
        font-size: 14px;
        padding-bottom: 95px;
    }

    .contact-button-img {
        max-width: 250px;
    }
}