@charset "UTF-8";
/* html共通部分
------------------------*/
html {
    font-size: 100%;
}

body {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 1.8;
}

/* スマホでハンバーガーメニューを開いてスクロールする際に、背景を固定 */
body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
}

/* スマホでハンバーガーメニューを開いてスクロールする際に、背景を固定 */
body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: top;
}

/* レイアウト
------------------------*/
.ly_wrapper {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 4%;
}

.ly_header {
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 2;
}

@media (max-width: 600px) {
    .ly_header {
        height: 100px;
    }
}

.ly_header.subPage {
    position: relative;
    padding: 1rem 2rem;
    top: 0;
}

.ly_header_inner {
    margin: 0 auto;
    padding: 0 15px;
}

.ly_cont {
    max-width: 1230px;
    padding: 60px 50px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .ly_cont {
        padding: 30px 20px;
        margin: 0 auto 40px;
    }
}

.bl_headerLogo {
    margin-top: 20px;
}

.bl_bgF6 {
    background-color: #f6f6f6;
}

.ly_footer {
    padding: 80px 0;
    color: #3e3d35;
    background-color: #f8f8f4;
}

.ly_footer_inner {
    max-width: 460px;
    padding: 0 15px;
    margin: 0 auto;
}

.el_footerLogo {
    width: 120px;
}

/* ヘッダーロゴと電話番号
------------------------*/
.bl_headerLogoAndTel {
    display: flex;
    justify-content: end;
}

.bl_headerLogo img {
    height: 80px;
}

.bl_headerTel img {
    height: 50px;
}

.bl_headerTel img:hover {
    opacity: 0.7;
}

/* 見出し
------------------------*/
.el_h2 {
    font-size: 2.2rem;
    line-height: 1.6rem;
    padding: 20px 0 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.el_h2_below {
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    padding-bottom: 20px;
}

/* ハンバーガーメニュー
------------------------*/
/* ボタン */
.el_openbtn {
    position: fixed;
    top: 20px;
    right: 26px;
    background-color: #222;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    z-index: 1000;
}

.el_openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
}

.el_openbtn span:nth-of-type(1) {
    top: 15px;
}

.el_openbtn span:nth-of-type(2) {
    top: 23px;
}

.el_openbtn span:nth-of-type(3) {
    top: 31px;
}

.el_openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 12px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

.el_openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.el_openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 12px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}

/* ナビゲーションPC */
.bl_gNavPc {
    height: 60px;
}

.bl_gNavPc ul {
    padding: 0;
    text-align: right;
}

.bl_gNavPc ul li {
    display: inline-block;
}

.bl_gNavPc ul li a {
    display: block;
    padding: 14px 16px;
    color: #fff;
    text-decoration: none;
}

.ly_header.subPage .bl_gNavPc ul li a {
    color: #000;
}

.bl_gNavPc ul a::first-line {
    font-size: 16px;
    font-weight: bold;
}

/* ナビゲーションSP */
.bl_gNav {
    position: fixed;
    z-index: 999;
    top: 0px;
    left: -120%;
    width: 100%;
    height: 100vh;
    background-color: #222;
    transition: all 0.6s;
}

.bl_gNav.panelactive {
    left: 0;
}

.bl_gNav.panelactive .bl_gNavList {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.bl_gNav ul {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 100px;
}

.bl_gNav ul li {
    padding-bottom: 1rem;
}

.bl_gNav ul li a {
    color: #fff;
    font-size: 1.4rem;
}


/* ページトップへ */
#page-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
}

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0px);
    }
    to {
        opacity: 1;
        transform: translateY(100px);
    }
}

#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s;
}

#page-top a:hover {
    background-color: #777;
}

/* 2カラム
------------------------*/
.bl_twoColumn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.bl_twoColumn_body {
    width: 48%;
}

.bl_twoColumn_img {
    width: 50%;
}

.bl_twoColumn_img img {
    width: 100%;
}

@media (max-width: 600px) {
    .bl_twoColumn_body {
        width: 100%;
        padding-bottom: 20px;
    }

    .bl_twoColumn_img {
        width: 100%;
    }

    .bl_twoColumn.reverse {
        flex-direction: column-reverse;
    }
}

/* フッタータイトル */
.bl_footer_title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.bl_footer_title {
    position: relative;
    padding: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.bl_footer_title:before {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: '';
    border-radius: 3px;
    background: #c3c6c6;
}

/* フッター上ナビゲーション
------------------------*/
.bl_twoColumnFooterNav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bl_twoColumnFooterNav_body {
    width: 40%;
}

.bl_twoColumnFooterNav_body li {
    padding-bottom: 40px;
}

.bl_twoColumnFooterNav_body li a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .bl_twoColumnFooterNav {
        display: block;
    }

    .bl_twoColumnFooterNav_body {
        width: auto;
        display: flex;
        justify-content: space-between;
    }

    .bl_twoColumnFooterNav_body li {
        width: 100%;
    }
}

/* ボタン
------------------------*/
.bl_btnArea {
    padding: 40px 0 20px;
}

.el_btn {
    display: inline-block;
    width: 160px;
    max-width: 100%;
    padding: 5px 10px;
    background-color: #94191d;
    border: 2px solid transparent;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    transition: .25s;
    border-radius: 30px;
}

.el_btn.w300 {
    width: 300px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.el_btn:focus,
.el_btn:hover {
    background-color: #fff;
    border-color: currentColor;
    color: #444;
}

/* 文字サイズや色の指定
------------------------*/
.hp_white_text {
    color: #fff;
}

.hp_red_text {
    color: #cb000f;
}

.hp_bgWhite {
    background-color: #fff;
}

/* ブロークングリッド
------------------------*/
.ly_brokenGrid {
    max-width: 1230px;
    padding: 60px 50px 120px;
    margin: 0 auto 80px;
}

@media (max-width: 600px) {
    .ly_brokenGrid {
        padding: 60px 0 120px;
    }
}

.bl_brokenGrid {
    display: flex;
}

.bl_brokenGrid--background {
    align-self: flex-start;
    width: 60%;
    height: 280px;
}

.bl_brokenGrid--foreground {
    align-self: flex-end;
    width: calc(40% + 100px);
    margin-left: -100px;
    transform: translate(0, 60px);
    background-color: rgba(240,96,96,0.85);
    height: 376px;
}

@media (max-width: 600px) {
    .bl_brokenGrid {
        flex-direction: column;
    }

    .bl_brokenGrid--background {
        width: 100%;
        height: 280px;
    }

    .bl_brokenGrid--foreground {
        width: 100%;
        margin-left: 0;
        transform: translate(0, 260px);
        height: 520px;
        margin-bottom: 60px;
    }
}

.bl_brokenGrid--foreground_inner {
    padding: 8px 20px;
}

/* ヘルパー
------------------------*/
/* margin-bottom */
.hp_mb20 {
    margin-bottom: 20px !important;
}

.hp_mb40 {
    margin-bottom: 40px !important;
}

.hp_mb60 {
    margin-bottom: 60px !important;
}

.hp_mb80 {
    margin-bottom: 80px !important;
}

.hp_mb100 {
    margin-bottom: 100px !important;
}

/* margin-top */
.hp_mt20 {
    margin-top: 20px !important;
}

.hp_mt40 {
    margin-top: 40px !important;
}

.hp_mt60 {
    margin-top: 60px !important;
}

.hp_mt80 {
    margin-top: 80px !important;
}

.hp_mt100 {
    margin-top: 100px !important;
}

/* padding-bottom */
.hp_pb20 {
    padding-bottom: 20px !important;
}

.hp_pb40 {
    padding-bottom: 40px !important;
}

.hp_pb60 {
    padding-bottom: 60px !important;
}

.hp_pb80 {
    padding-bottom: 80px !important;
}

.hp_pb100 {
    padding-bottom: 100px !important;
}

/* padding-top */
.hp_pt20 {
    padding-top: 20px !important;
}

.hp_pt40 {
    padding-top: 40px !important;
}

.hp_pt60 {
    padding-top: 60px !important;
}

.hp_pt80 {
    padding-top: 80px !important;
}

.hp_pt100 {
    padding-top: 100px !important;
}

/* padding-left */
.hp_pl20 {
    padding-left: 20px !important;
}

/* text-align */
.hp_tac {
    text-align: center;
}

.hp_tal {
    text-align: left;
}

.hp_tar {
    text-align: right;
}

@media (max-width: 600px) {
    .hp_tac_sp {
        text-align: center;
    }

    .hp_tal_sp {
        text-align: left;
    }

    .hp_tar_sp {
        text-align: right;
    }
}

/* デスクトップのみ表示とスマホのみ表示 */
.pc_only {
    display: block !important;
}

.sp_only {
    display: none !important;
}

@media (max-width: 600px) {
    .pc_only {
        display: none !important;
    }

    .sp_only {
        display: block !important;
    }
}

/* marker */
.hp_marker_yellow {
    background:linear-gradient(transparent 60%, rgba(255, 255, 102, 0.4) 60%);
}

.hp_marker_pink {
    background:linear-gradient(transparent 60%, rgba(255, 102, 204, 0.4) 60%);
}

.hp_marker_blue {
    background:linear-gradient(transparent 60%, rgba(102, 204, 255, 0.4) 60%);
}

.hp_marker_green {
    background:linear-gradient(transparent 60%, rgba(102, 255, 102, 0.4) 60%);
}

/* font size */
.hp_fs12 {
    font-size: 12px;
}

.hp_fs13 {
    font-size: 13px;
}

.hp_fs14 {
    font-size: 14px;
}

.hp_fs16 {
    font-size: 16px;
}

/* line height */
.hp_lh12 {
    line-height: 1.2;
}
