@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Zen+Old+Mincho&display=swap');

@media screen and (max-width: 1280px) {
    html {
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
    html {
        font-size: 10px;
    }
}

body {
    background-color: #181B39;
    color: white;
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Zen Old Mincho', serif;
}

img {
    width: 100%;
    height: auto;
}

.contentWrapper {
    max-width: 1280px;
    margin: auto;
}

/* header */
.header {
    position: fixed;
    z-index: 200;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 20vh;
    width: 100%;
    max-width: 1280px;
    padding-top: 1rem;
    padding-right: 5%;
    padding-left: 5%;
}

.header .logo-wrapper {
    height: 100%;
    max-height: 100px;
    width: auto;
}

.header .logo-wrapper img {
    height: 100%;
    width: 100%;
}

/* header */
/* hamburger icon */
.hamburger {
    width: 30px;
    height: 24px;
    position: relative;
    background-color: #181b3958;
}

/* 画面幅が600px以上の場合のスタイル */
@media (min-width: 600px) {
    .hamburger {
        width: 40px;
        height: 32px;
    }
}

.hamburger_bar {
    display: block;
    width: 100%;
    height: 20%;
    position: absolute;
    left: 0;
    background: white;
}

.hamburger_bar:nth-child(1) {
    top: 0;
}

.hamburger_bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger_bar:nth-child(3) {
    top: 100%;
    transform: translateY(-100%);
}

.hamburger_bar:nth-child(3),
.hamburger_bar:nth-child(2) {
    transform-origin: center center;
}

/* hamburger icon */

.header-mask {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: white;
    transform-origin: right center;
}

.navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 100%;
    background-color: white;
    color: #181B39;
    font-size: 2.5rem;
    width: 100vw;
    height: 70vh;
    clip-path: polygon(100% 0,
            50% 0,
            0% 100%,
            100% 100%);
}

.nav-items {
    height: 60%;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    transform: translateX(60%);
}

.main {
    margin-top: 20vh;
}

.main-container {
    width: 100%;
    min-height: 100vh;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.section-title {
    border-bottom: 2px solid white;
    padding: 0.5rem;
    margin: 2rem;
}

.info-table {
    list-style-type: none;
    width: 70%;
}

@media screen and (max-width: 600px) {
    .info-table {
        width: 85%;
    }
}

.list-item {
    display: flex;
    align-items: center;
    border-bottom: 2px solid gray;
    border-left: 2px solid gray;
    border-right: 2px solid gray;
    text-align: center;
}

.list-item:first-child {
    border-top: 2px solid gray;
}

.list-item:last-child {
    border-bottom: 2px solid gray;
}

.item-head {
    width: 30%;
    border-right: 2px solid gray;
    padding: 2rem 0;
}

.item-content {
    width: 70%;
}

.footer-container {
    background-color: #464A85;
    height: 5rem;
    width: 100%;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container span {
    font-size: 1rem;
}