@charset "UTF-8";
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    touch-action: manipulation;
}

body.is_active {
    overflow: hidden;
}

p {
    font-size: 12px;
    margin: 0 0 16px 0;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    main {
        background-color: #fff0f5;
    }
}

/* 横向きかつ1024px以上の画面用のメディアクエリ */
@media (min-width: 1024px) and (orientation: landscape) {
    p {
        font-size: 18px;
    }
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
    display: block;
    border: 2px solid #d3d3d3;
    width: 100%;
    border-radius: 6px;
    padding: 8px 15px;
    margin-bottom: 20px;
}

.el_inputPass_wrapper {
    position: relative;
}

.el_inputPass_icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(/image/icon/pass-hide.png)no-repeat;
    background-position: center;
    background-size: 90%;
}

.el_inputPass_icon--show {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(/image/icon/pass-show.png)no-repeat;
    background-position: center;
    background-size: 90%;
}

/*----------------------------------
セレクトボックス
------------------------------------*/
.el_selectWrapper {
    position: relative;
    margin-bottom: 20px;
}

.el_selectWrapper::before {
    content: "";
    right: 9px;
    top: calc(50% - 3px);
    position: absolute;
    border-width: 10px 8px 0px 8px;
    border-color: #d3d3d3 transparent transparent transparent;
    border-style: solid;
    pointer-events: none;
}

.el_select {
    border: 2px solid #d3d3d3;
    border-radius: 6px;
    padding: 0 15px;
    width: 100%;
    height: 44px;
}

/*----------------------------------
郵便番号
------------------------------------*/
.el_postalCode {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.el_postalCode_fieldWrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: calc(100% - 116px);
    max-width: calc(100% - 116px);
}

.el_postalCode_field01,
.el_postalCode_field02 {
    margin-bottom: 0 !important;
}

.el_postalCode_field01 {
    width: 48% !important;
}

.el_postalCode_field02 {
    width: 52% !important;
}

.el_postalCode_btn {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 86px;
    max-width: 86px;
    font-size: 16px;
    background: #d3d3d3;
    border: 2px solid #9c9c9c;
    border-radius: 6px;
    height: 44px;
    text-align: center;
    font-weight: 500;
    margin-left: 30px;
}

.el_postalCode_line {
    padding: 0 2px;
}

@media (max-width:359px) {

    .el_postalCode_fieldWrapper {
        flex-basis: calc(100% - 75px);
        max-width: calc(100% - 75px);
    }

    .el_postalCode_btn {
        flex-basis: 60px;
        max-width: 60px;
        font-size: 12px;
        margin-left: 15px;
    }
}

/*----------------------------------
label
------------------------------------*/
.el_label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 1em;
}

/* 必須 */
.el_label.el_label--required::after {
    content: "必須";
    display: inline-block;
    font-size: 0.9em;
    font-weight: 500;
    background: #df0012;
    color: #fff;
    padding: 3px 7px;
    margin-left: 8px;
}

/* 任意 */
.el_label.el_label--optional::after {
    content: "任意";
    display: inline-block;
    font-size: 0.9em;
    font-weight: 500;
    background: #9c9c9c;
    color: #fff;
    padding: 3px 7px;
    margin-left: 8px;
}

/*----------------------------------
電話
------------------------------------*/
.el_telUnit {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.el_telBox {
    display: inline-block;
}

.el_telBox:first-child {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 70px;
    max-width: 70px;
}

.el_tel {
    margin-bottom: 0 !important;
}



/*----------------------------------
チェックボックス
------------------------------------*/
.bl_check_wrapper {
    font-size: 12px;
    margin-bottom: 8px;
}

.bl_check {
    margin-bottom: 0;
}

.bl_check_input {
    display: none;
}

.bl_check_parts {
    padding-left: 20px;
    position: relative;
}

.bl_check_parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #9e9da1;
    border-radius: 4px;
}

.bl_check_input:checked + .bl_check_parts::before {
    content: "";
    display: block;
    background: url(/image/icon/icon_check.svg)no-repeat;
    background-position: center;
    background-size: 10px 16px;
}

.bl_check_link {
    vertical-align: text-top;
    border-bottom: 1px solid;
}

/*----------------------------------
ヘルパー
------------------------------------*/
.hp_mb0 { margin-bottom: 0 !important; }
.hp_mb5p { margin-bottom: 5px!important; }
.hp_mb10p { margin-bottom: 10px !important; }
.hp_mb20p { margin-bottom: 20px !important; }
.hp_mb30p { margin-bottom: 30px !important; }
.hp_mb40p { margin-bottom: 40px !important; }
.hp_mb45p { margin-bottom: 45px !important; }
.hp_mb50p { margin-bottom: 50px !important; }
.hp_mb60p { margin-bottom: 60px !important; }

.hp_mt0 { margin-top: 0 !important; }
.hp_mt10p { margin-top: 10px !important; }
.hp_mt20p { margin-top: 20px !important; }
.hp_mt30p { margin-top: 30px !important; }
.hp_mt35p { margin-top: 35px !important; }
.hp_mt40p { margin-top: 40px !important; }
.hp_mt45p { margin-top: 45px !important; }
.hp_mt50p { margin-top: 50px !important; }
.hp_mt55p { margin-top: 55px !important; }
.hp_mt70p { margin-top: 70px !important; }
.hp_mt150p { margin-top: 150px !important; }

.hp_fz10p { font-size: 10px !important; }
.hp_fz12p { font-size: 12px !important; }
.hp_fz13p { font-size: 13px !important; }
.hp_fz14p { font-size: 14px !important; }
.hp_fz15p { font-size: 15px !important; }
.hp_fz16p { font-size: 16px !important; }

.hp_mw150p {
    max-width: 150px !important;
    width: 100% !important;
}

.hp_centering { margin: 0 auto !important; }
.hp_color_9c9c9c { color: #9c9c9c !important; }

.hp_color_red { color: #fe0000 !important; }

/*----------------------------------
ボタン
------------------------------------*/
.el_btn {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin: 0 auto 40px;
    max-width: 230px;
    width: 100%;
    border-radius: 6px;
    padding: 10px 0;
    text-align: center;
}

.el_btn.el_btn--red {
    background: #e60012 url(/image/bg_btn_red.png)no-repeat;
    border: 2px solid #cc0012;
    background-position: center bottom;
    background-size: 100%;
    color: #fff;
    margin-top: 50px;
}

.el_btn.el_btn--green--news {
    background: #339900;
    background-position: center bottom;
    background-size: 100%;
    color:#fff;
    border: 2px solid #339900;
}

.el_btn.el_btn--line {
    background: #06c755 url(/image/icon/line.png)no-repeat;
    border: 2px solid #04b24b;
    background-size: 28px;
    background-position: 9px center;
    color: #fff;
    padding: 10px 0 10px 28px;
}

.el_btn.el_btn--google {
    background: #4285f4 url(/image/icon/btn_google.png)no-repeat;
    border: 2px solid #4285f4;
    background-size: 28px;
    background-position: 9px center;
    color: #fff;
    padding: 10px 0 10px 28px;
}

.el_btn.el_btn--green {
    background: #339900;
    background-position: center top;
    background-size: 100%;
    color:#fff;
    padding: 9px 0;
    border-style: solid;
    border-color: #04b24b;
    border-width: 1px 1px 2px 1px;
    margin-top: 80px;
    max-width: 160px;
}

.el_btn.el_btn--yellow {
    background: #fec000;
    background-position: center top;
    background-size: 100%;
    color:#fff;
    padding: 9px 0;
    border-style: solid;
    border-color: #fec000;
    border-width: 1px 1px 2px 1px;
    margin-top: 80px;
    max-width: 160px;
}

.el_btn.el_btn--grey {
    background: #d1d1d1 url(/image/bg_btn_gray.png)no-repeat;
    background-position: center top;
    background-size: 100%;
    color: #808080;
    text-shadow: 1px 1px 0 #fff;
    padding: 9px 0;
    border-style: solid;
    border-color: #b5b5b5;
    border-width: 1px 1px 2px 1px;
    margin-top: 80px;
    max-width: 160px;
}


.el_btn.el_btn--orange {
    background: #f89829 url(/image/bg_btn_orange.png)no-repeat;
    background-position: center top;
    background-size: 100%;
    border: 1px solid #f8931f;
    color: #fff;
}

.el_btn.el_btn--line-l {
    background: #06c755 url(/image/icon/line.png)no-repeat;
    border: 2px solid #06c755;
    background-size: 28px;
    background-position: 9px center;
    color: #fff;
    max-width: 100%;
    padding: 15px 0 15px 28px;
}

.el_btn.el_btn--google-l {
    background: #4285f4 url(/image/icon/btn_google.png)no-repeat;
    border: 2px solid #4285f4;
    background-size: 28px;
    background-position: 9px center;
    color: #fff;
    max-width: 100%;
    padding: 15px 0 15px 28px;
}

.el_btn.el_btn-blue {
    background: #4285f4;
    border: 2px solid #4285f4;
    background-size: 28px;
    background-position: 9px center;
    color: #fff;
    max-width: 100%;
    padding: 15px 0 15px 28px;
    margin-top: 50px;
}

.el_btn.el_btn--width{
    max-width: 160px;
}

/*----------------------------------
レイアウト
------------------------------------*/
.ly_conts {
    padding: 54px 36px 110px;
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
}

.ly_conts.ly_conts--gutter-s {
    padding-left: 15px;
    padding-right: 15px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .ly_conts {
        max-width: 100%;
        width: 700px;
        background: #fff;
        min-height: 100dvh;
        height: 100%;
    }

    .ly_conts.ly_conts--gutter-s {
        padding-left: 0;
        padding-right: 0;
    }
}
/*----------------------------------
ページタイトル（各ページで使用）
------------------------------------*/
.bl_pageTtl {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_pageTtl {
        font-size: 20px;
    }
}

.bl_pageTtl_sub {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin-bottom: 45px;
}

/*----------------------------------
media
------------------------------------*/
.bl_media {
    font-weight: 500;
    border: 1px solid #d3d3d3;
    padding: 13px 8px;
    display: flex;
    margin-bottom: 25px;
}

.bl_media:last-of-type {
    margin-bottom: 0;
}

.bl_media_imgWrapper {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 100px;
    max-width: 100px;
    align-self: center;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_media_imgWrapper {
        flex-basis: 150px;
        max-width: 150px;
    }
}

.bl_media_imgWrapper img {
    max-width: 100%;
}

.bl_media_content {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: calc(100% - 100px);
    max-width: calc(100% - 100px);
    padding-left: 14px;
}

.bl_media_date {
    margin-bottom: 10px;
    text-align: right;
}

.bl_media_date p {
    font-size: 8px;
    margin-bottom: 5px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_media_date p {
        font-size: 12px;
    }
}

.bl_media_date p:last-child {
    margin-bottom: 0;
}

.bl_media_tag {
    display: inline-block;
    font-size: 8px;
    font-weight: 500;
    background: #d3d3d3;
    padding: 3px 9px;
    margin-bottom: 5px;
}

.bl_media_ttl {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_media_tag,
    .bl_media_ttl {
        font-size: 12px;
    }
}

.bl_media_item {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    margin-bottom: 8px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_media_item {
        font-size: 12px;
    }
}

.bl_media_item:last-child {
    margin-bottom: 0;
}

.bl_info_content {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
}

/*----------------------------------
header
------------------------------------*/
/*----------------------------------
header
------------------------------------*/
.bl_header {
    margin-bottom: 65px;
}

.bl_header_inner {
    box-shadow: 2px 2px 3px rgba(0,0,0,.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 8888;
    height: 65px;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .bl_header_inner {
        padding-left: 20%;
        padding-right: 20%;
    }
}

.bl_header_logo a {
    display: inline-block;
}

.bl_header_logo img {
    width: 100%;
    aspect-ratio: auto;
    max-width: 250px;
}

.bl_header_navList {
    display: flex;
}

.bl_header_navItem {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: auto;
    margin-right: 8px;
}

.bl_header_navItem:last-child {
    margin-right: 0;
}

.bl_header_navItem_btn {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #e50012;
    border-radius: 90px;
    width: 50px;
    height: 50px;
}

.bl_header_navItem_txt {
    display: block;
    font-size: 8px;
    color: #fff;
    font-weight: 900;
    margin-top: 3px;
}

/*---------------------
プレースホルダー
----------------------*/
/* Webkit */
::-webkit-input-placeholder {
    color: #ededed;
    opacity: 1;
    font-weight: 500;
}
/* Firefox 18 以前 */
:-moz-placeholder {
    color: #ededed;
    font-weight: 500;
}
/* Firefox 19 以降 */
::-moz-placeholder {
    color: #ededed;
    opacity: 1;
    font-weight: 500;
}
/* IE 10 以降 */
:-ms-input-placeholder {
    color: #ededed;
    font-weight: 500;
}

/*----------------------------------
footer
------------------------------------*/
.ly_footer {
    background: #e60012;
}

.bl_copyright {
    font-size: 11px;
    color: #fff;
    width: 100%;
    padding: 8px;
    text-align: center;
}

.bl_copyright .small {
    font-size: 11px;
}

/*----------------------------------
nav
------------------------------------*/
.bl_navItem {
    font-size: 15px;
    font-weight: 700;
}

.bl_navItem_in {
    display: block;
    border-bottom: 1px solid #d3d3d3;
    padding: 16px 5%;
    width: 100%;
}

/*----------------------------------
navボタン
------------------------------------*/
.bl_navBtn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bl_navBtn_bar {
    display: block;
    background: #000;
    height: 3px;
    width: 29px;
}

.bl_navBtn_bar:nth-child(2){
    margin: auto 0;
}

.bl_navBtn_inner {
    height: 3px;
    width: 25px;
    background: #fff;
    display: flex;
    margin: 3px auto;
}
.bl_navBtn_border{
    border:3px solid #e60012;
    background-color:#e60012;
    border-radius:10px;
    margin: 0 auto;
    width:40px;
    height: 40px;
    display:flex;
    flex-flow: column;
    justify-content:center;
    margin-bottom: 15px;
}

/*----------------------------------
メニュー
------------------------------------*/
.bl_menu {
    background: #fff;
    position: fixed;
    top: 0;
    height: 100%;
    height: -webkit-fill-available;
    z-index: 9999;
    width: 80%;
    right: -100%;
    transition: right .5s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    max-width: 480px;
    overflow-y: scroll;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    right: -100%;
    height: 150vh;
    width: 80%;
    background: #fff;
    transition: right .5s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    z-index: 1000;
}

body.is_active::before {
    right: 0%;
}

.bl_menu.is_active {
    right: 0%;
}

.bl_menu_inner {
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

/* safari */
@supports (-webkit-touch-callout: none) {
    .bl_menu_inner {
        /* ios サファリ　閉じるボタン、下部メニューで隠れるので */
        /* The hack for Safari */
        /* height: -webkit-fill-available; */
    }
}

.bl_menuList {
    width: calc(100% - 30px);
    margin: 0 auto;
}

.bl_menu_ttl {
    background: #df0012;
    color: #fff;
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 0;
    padding: 0 30px;
    height: 45px;
    line-height: 45px;
}

.bl_menuItem {
    font-weight: 600;
    position: relative;
    border-bottom: 1px solid #e50012;
}

.bl_menuItem_link {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 16px 15px;
    line-height: 1;
    width: 100%;
}

.bl_menuItem_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 22px;
    max-width: 22px;
    margin-right: 16px;
}

/* subメニュー */
.bl_subMenu {
    display: none;
    padding: 0 16px 10px;
}

.bl_subMenu.is_active {
    display: block;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
}

.bl_subMenu_item {
    padding-left: 40px;
}

.bl_subMenu_item_link {
    display: block;
    padding: 10px 0;
    width: 100%;
    position: relative;
}

.bl_subMenu_item_link::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 2px;
    margin-right: 8px;
    background: #333;
}

/* subメニュー ボタン */
.bl_subMenu_btn {
    position: absolute;
    right: 0;
    top: 6px;
    width: 36px;
    height: 36px;
}

.bl_subMenu_btn::before,
.bl_subMenu_btn::after {
    display: block;
    content: '';
    background-color: #333;
    position: absolute;
    width: 15px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bl_subMenu_btn::before {
    width: 2px;
    height: 15px;
}

.bl_subMenu_btn.is_active::before {
    height: 0;
}

/* クローズボタン */
.bl_menu_closeBtn {
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: 50px;
    width: 50px;
    min-height: 50px;
    margin: auto 0 0 auto;
    position: relative;
}

.bl_menu_closeBtn span {
    background: #000;
    width: 22px;
    height: 2px;
    display: block;
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.bl_menu_closeBtn span:nth-child(1){
    top: 25px;
    transform: rotate(45deg);
    left: 15px;
}

.bl_menu_closeBtn span:nth-child(2){
    transform: scaleX(0);
}

.bl_menu_closeBtn span:nth-child(3){
    top: 25px;
    transform: rotate(135deg);
    left: 15px;
}

.font_red{
    color: #df0012;
}

@media (max-width:359px) {
    .bl_subMenu_item {
        padding-left: 32px;
        font-size: 13px;
    }
}
