@charset "utf-8";

/**
 * 複数ページに共通するレイアウトを定義
 */

/* 全体
   ========================================================================== */

.l-container {
    /* ページ最下部に表示する設定 */
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100vw;
    max-width: 100%;
    min-height: 100vh;
    min-width: 280px;
}

/* ヘッダーエリア
   ========================================================================== */

.l-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.l-header-ux {
    padding: 0 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.l-header-ue {
    width: 100%;
    height: 5px;
    background: #f5d654;
}

.l-header-be {
    display: flex;
    align-items: center;
    justify-content: start;

    width: 100%;
    height: 55px;
    padding: 10px 0 15px 30px;
    box-sizing: border-box;
    background-color: #fff;
    border-bottom: 1px solid #e1e1e1;
}

.l-header-be__img {
    width: 185px;
}

.l-header-ux__content--title {
    height: 30px;
    margin-top: 40px;
    font-weight: bold;
}

.l-header-u {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row; /* default */
    box-shadow: 0 1px 3px rgb(0 0 0 / 16%);
    border-bottom: 1px solid #efebda;
}

.l-header-ur {
    display: flex;
}

.l-header-ur__btn {
    margin: 0 10px;
    padding: 10px 10px 10px 25px;
    position: relative;
    background-image: url("../../images/next.svg");
    background-repeat: no-repeat;
    background-position: left center;
    font-size: min(1em, 4vw);
}
.l-header-ur__btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    left: 10px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 2px 0 2px 4px;
    border-color: transparent transparent transparent #ffffff;
}

.l-header-b {
    text-align: center;
    width: 100%;
    margin-bottom: 1em;
}

/* ドロワーメニュー(SP版のみ) */
.l-drawer {
    width: 100%;
    height: 0px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.l-drawer__btn--hidden:checked + .l-drawer {
    height: 45px;
    transition: all 0.5s ease;
}

.l-drawer__btn--hidden {
    display: none;
}

.l-drawer__contents {
    height: 38px;
    background: white;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.l-drawer__content {
    display: inline-block;
    border-right: 1px solid #efebda;
    padding: 10px 20px;
}

/* フッターエリア
   ========================================================================== */

.l-footer {
    width: 100%;
    /* ページ最下部に表示する設定 */
    margin-top: auto;
    text-align: center;
}

.l-myna-portal-footer {
    background-color: #4d4d4d;
    color: #fff;
}

.l-myna-portal-footer__copyright {
    font-size: 0.875em;
    line-height: 16px;
    padding: 14px 14px;
}

/* コンテンツエリア
   ========================================================================== */

.l-contents {
    width: 100%;
    max-width: 880px;
    min-width: 280px;
    font-size: 16pt;
}

.l-screen-item {
    display: flex;
    flex-direction: column;
}