@charset "utf-8";
/* Copyright 2021 FSFIELD All Rights Reserved. */

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

パソコン、スマートフォン（iPhone,Android) 共通

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

/* ------------------------------------------------------------

basic

------------------------------------------------------------ */

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 500;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Bold");
    font-weight: bold;
}

* {
    font-family: "Noto Sans JP", Yu Gothic, "游ゴシック", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*-Noto Sans JPと游ゴシックを同時に読み込む場合は下記を記述する。その場合以外は削除（同時にしようするとIEで挙動がおかしくなるため）--*/
@media (-ms-high-contrast: none) {
    * {
        font-family: "Noto Sans JP", Yu Gothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    }
}

html {
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    color: #333333;
    font-weight: 400;
}

/* ------------------------------------------------------------

shortcodes

------------------------------------------------------------ */

/* font
---------------------------------------------- */
.normal {
    font-weight: normal !important;
}
.bold {
    font-weight: bold !important;
}
.italic {
    font-style: italic !important;
}

/* display
---------------------------------------------- */
.none {
    display: none !important;
}

/* margin
---------------------------------------------- */
.mb_none {
    margin-bottom: 0 !important;
}

@media print, screen and (min-width: 768px) {
    /* 表示領域が768px以上の場合に適用するスタイル */
    /*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

	PC

	_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

    /* ------------------------------------------------------------

	common

	------------------------------------------------------------ */

    body {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.6;
    }

    .sp {
        display: none;
    }

    .pc_br {
        display: block;
    }

    /* レイアウト
	---------------------------------------------- */
    #wrap_all {
        min-width: 1200px;
        overflow: hidden;
    }

    .wrapper {
        position: relative;
    }

    /*--404ページ--*/
    .wrap_404 {
        text-align: center;
        padding-top: 220px;
        margin-bottom: 160px;
    }

    .ttl_404 {
        font-size: 5rem;
        font-weight: bold;
        margin-bottom: 12px;
    }

    .txt_404 {
        margin-bottom: 30px;
    }

    /* リンク
	---------------------------------------------- */
    .link01 {
        color: #fff;
        text-decoration: underline !important;
    }

    .link01:hover {
        text-decoration: none !important;
    }

    .link02 {
        color: #333333;
        text-decoration: underline !important;
    }

    .link02:hover {
        text-decoration: none !important;
    }

    /* ページタイトル
	---------------------------------------------- */
    .pagettl01 {
        height: 400px;
        margin-right: 120px;
        padding: 0 20px;
        display: flex;
        align-items: center;
    }

    .pagettl01 h2 {
        color: #fff;
        font-size: 3.2rem;
        font-weight: bold;
        width: 1200px;
        margin: 120px auto 0;
    }

    /* 見出し
	---------------------------------------------- */
    .heading01 {
        line-height: 1;
        margin-bottom: 40px;
    }

    .heading01 p {
        display: inline-block;
        color: #ec4718;
        font-size: 5rem;
        font-weight: 600;
        font-family: "Oswald", sans-serif;
    }

    .heading01 h2 {
        display: inline-block;
        color: #635959;
        font-size: 1.6rem;
        font-weight: bold;
        padding-left: 10px;
    }

    /* テーブル
	---------------------------------------------- */
    table.type01 tbody {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    table.type01 tr {
        width: 49%;
        max-width: 580px;
        font-size: 1.6rem;
        color: #fff;
        border-top: solid 1px #4e4747;
    }

    table.type01 tr:nth-child(5),
    table.type01 tr:nth-child(6) {
        border-bottom: solid 1px #4e4747;
    }

    table.type01 th,
    table.type01 td {
        padding: 30px 0;
        line-height: 1.6;
        vertical-align: top;
    }

    table.type01 th {
        width: 174px;
    }

    /* フォーム関連
	---------------------------------------------- */
    .form {
        width: 100%;
    }

    .form th,
    .form td {
        display: block;
    }

    .form th {
        font-size: 1.6rem;
        color: #fff;
        line-height: 1;
        font-weight: bold;
        padding: 0 0 12px 0;
    }

    .form td {
        padding-bottom: 20px;
        word-break: break-all;
    }

    .form input[type="text"],
    .form input[type="tel"],
    .form input[type="email"],
    .form textarea {
        background: #fff;
        width: 100%;
        padding: 15px 10px;
        height: 46px;
        border: none;
        font-size: 1.6rem;
    }

    ::placeholder {
        color: #b9b9b9;
    }

    .form input::-moz-focus-inner,
    .form select::-moz-focus-inner {
        border: 0;
    } /* Firefox 点線消す */
    .form input {
        -webkit-appearance: none;
    } /* ios 影消す */

    .form textarea {
        display: block;
        resize: vertical;
        width: 100%;
        min-height: 150px;
    }

    .form textarea::-moz-focus-inner {
        border: 0;
    } /* Firefox 点線消す */
    .form textarea {
        -webkit-appearance: none;
    } /* ios 影消す */

    .form .must,
    .form .error {
        color: #ec4718;
    }

    .form .must {
        display: inline-block;
        font-size: 1.1rem;
        margin-left: 2px;
    }

    .form label {
        display: inline-block;
    }

    /*--ボタン--*/
    .btn_form {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 60px;
    }

    .btn_form_submit,
    .btn_form_send,
    .btn_form_back {
        width: 320px;
        position: relative;
        cursor: pointer;
        transition: 0.3s;
    }

    .btn_form_submit,
    .btn_form_send {
        background: linear-gradient(90deg, #eb943d, #ed4818);
    }

    .btn_form_back {
        background: #fff;
    }

    .btn_form_send {
        margin-left: 30px;
    }

    .btn_form_submit::before,
    .btn_form_send::before {
        content: "";
        display: block;
        background: url("../img/ico_arrow03.png") no-repeat 0 0;
        background-size: contain;
        width: 10px;
        height: 12px;
        position: absolute;
        top: 50%;
        right: 20px;
        margin-top: -5px;
    }

    .btn_form_back::before {
        content: "";
        display: block;
        background: url("../img/ico_arrow04.png") no-repeat 0 0;
        background-size: contain;
        width: 10px;
        height: 12px;
        position: absolute;
        top: 50%;
        left: 20px;
        margin-top: -5px;
    }

    .btn_form_submit:hover,
    .btn_form_send:hover,
    .btn_form_back:hover {
        opacity: 0.8;
    }

    .btn_form_submit button,
    .btn_form_send button,
    .btn_form_back button {
        outline: 0;
        border: none;
        border-radius: 0;
        -webkit-appearance: none;
        background: none;
        margin: 0;
        padding: 26px 0;
        line-height: 1;
        letter-spacing: 0.1em;
        font-weight: bold;
        font-size: 1.8rem;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    .btn_form_submit button,
    .btn_form_send button {
        color: #fff;
    }

    .btn_form_back button {
        color: #221f1f;
    }

    /*--個人情報保護方針--*/
    .privacy_txt {
        color: #fff;
        margin-bottom: 10px;
    }

    .privacy_txt h3 span {
        font-size: 1.4rem;
        padding-left: 10px;
    }

    #privacy {
        width: 100%;
        height: 150px;
        overflow: hidden;
        line-height: 1.8;
        font-size: 1.4rem;
        background: #fff;
    }

    #privacy p {
        margin-bottom: 8px;
    }

    /* ------------------------------------------------------------

	header

	------------------------------------------------------------ */
    #header {
        width: 100%;
        position: relative;
        z-index: 999;
    }

    #wrap_top {
        position: absolute;
        top: 3px;
        left: 3px;
        z-index: 2;
    }

    #wrap_top h1 {
        font-size: 1.2rem;
        line-height: 1.2;
        color: #eeeeee;
    }

    .wrap_top_inner .cloned {
        display: none;
    }

    .h_logo {
        position: absolute;
        top: 20px;
        left: 40px;
    }

    .h_logo a {
        display: block;
        width: 126px;
    }

    .h_logo a img {
        width: 100%;
    }

    /* グローバルナビ
	---------------------------------------------- */
    .drawer {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
        width: 760px;
    }

    .d_logo {
        display: none;
    }

    .nav_global ul {
        display: flex;
        transition: 0.3s;
    }

    .nav_global ul li {
        width: 160px;
        text-align: center;
        background: #000;
    }

    .nav_global ul li:last-child {
        width: 120px;
        background: linear-gradient(45deg, #ed4818, #eb993f);
    }

    .nav_global ul li a {
        display: block;
        padding: 39px 0;
        transition: 0.3s;
    }

    .nav_global ul li a:hover {
        opacity: 0.8;
    }

    .nav_global ul li a span {
        display: block;
    }

    .nav_global ul li a span:nth-child(1) {
        color: #fff;
        font-size: 2rem;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 10px;
        font-family: "Oswald", sans-serif;
    }

    .nav_global ul li a span:nth-child(2) {
        color: #525252;
        font-size: 1.2rem;
        font-weight: bold;
        line-height: 1;
    }

    .nav_global ul li:last-child a span:nth-child(2) {
        color: #f5a289;
    }

    .btn_close {
        display: none;
    }

    /* ------------------------------------------------------------

	footer

	------------------------------------------------------------ */

    .f_inner_top {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #232020;
        margin: 0 auto;
        padding: 60px 0;
    }

    .f_inner_top .col_l {
        padding: 20px 40px 20px 0;
        border-right: 1px solid #413f3f;
    }

    .f_inner_top .col_l .f_logo {
        width: 101px;
        margin-bottom: 20px;
    }

    .f_inner_top .col_l .f_logo a {
        display: block;
    }

    .f_inner_top .col_l .f_logo a img {
        width: 100%;
    }

    .f_inner_top .col_l address {
        color: #ffffff;
        font-size: 1.4rem;
    }

    .f_inner_top .col_l address p {
        line-height: 2;
    }

    .f_inner_bottom {
        color: #fff;
        background: #111111;
        text-align: center;
        padding: 20px 0;
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .f_inner_bottom .f_small {
        font-weight: bold;
        margin-bottom: 8px;
    }

    /* ナビ
	---------------------------------------------- */
    .nav_footer01 ul {
        display: flex;
    }

    .nav_footer01 ul li {
        width: 160px;
    }

    .nav_footer01 ul li a {
        display: block;
        color: #fff;
        font-weight: bold;
        font-size: 1.4rem;
        line-height: 1.2;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav_footer01 ul li a:hover {
        opacity: 0.7;
    }

    /* ページトップボタン
	---------------------------------------------- */
    #pagetop {
        right: 54px;
        z-index: 100;
        cursor: pointer;
        background: url("../img/pc/btn_pagetop01.png") no-repeat;
        background-size: contain !important;
        width: 12px;
        height: 95px;
    }

    #pagetop:hover {
        background: url("../img/pc/btn_pagetop01_on.png") no-repeat;
    }

    #pagetop span {
        display: none;
    }
} /*--@media--*/

@media print {
    /* 印刷時のみ */
    /*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

	PC

	_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

    /* ------------------------------------------------------------

	common

	------------------------------------------------------------ */

    /* レイアウト
	---------------------------------------------- */
    #wrap_all {
        width: 1200px;
        transform: scale(0.8);
        transform-origin: 0 0;
    }
} /*--@media--*/

@media only screen and (max-width: 767px) {
    /* 表示領域が767px以下の場合に適用するスタイル */
    /*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

	スマートフォン（iPhone,Android)

	_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

    /* ------------------------------------------------------------

	common

	------------------------------------------------------------ */

    body {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .pc {
        display: none;
    }

    .sp_br {
        display: block;
    }

    /* レイアウト
	---------------------------------------------- */
    #wrap_all {
        min-width: 320px;
        overflow: hidden;
    }

    .wrap_type01 {
        padding: 10px 10px 50px;
    }

    /*--404ページ--*/
    .wrap_404 {
        text-align: center;
        padding: 100px 20px 0;
        margin-bottom: 100px;
    }

    .ttl_404 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 12px;
    }

    .txt_404 {
        margin-bottom: 30px;
    }

    /* リンク
	---------------------------------------------- */
    .link01 {
        color: #ffffff;
        text-decoration: underline !important;
    }

    .link02 {
        color: #333333;
        text-decoration: underline !important;
    }

    /* ページタイトル
	---------------------------------------------- */
    .pagettl01 {
        height: 60.8vw;
        display: flex;
        align-items: center;
        padding: 0 15px;
    }

    .pagettl01 h2 {
        color: #fff;
        font-weight: bold;
        font-size: 2.2rem;
        line-height: 1;
        margin-top: 30px;
    }

    /* 見出し
	---------------------------------------------- */
    .heading01 {
        line-height: 1;
        margin-bottom: 30px;
    }

    .heading01 p {
        display: inline-block;
        color: #ec4718;
        font-size: 4rem;
        font-weight: 600;
        font-family: "Oswald", sans-serif;
    }

    .heading01 h2 {
        display: inline-block;
        color: #635959;
        font-size: 1.3rem;
        font-weight: bold;
        padding-left: 10px;
    }

    /* テーブル
	---------------------------------------------- */
    table.type01 tr {
        color: #fff;
        border-top: solid 1px #4e4747;
    }

    table.type01 tr:last-child {
        border-bottom: solid 1px #4e4747;
    }

    table.type01 th,
    table.type01 td {
        padding: 20px 0;
        vertical-align: top;
    }

    table.type01 th {
        width: 30%;
    }

    /* フォーム関連
	---------------------------------------------- */
    .form {
        width: 100%;
    }

    .form th,
    .form td {
        width: 100%;
        display: block;
    }

    .form th {
        font-weight: bold;
        color: #fff;
        padding-bottom: 10px;
    }

    .form td {
        word-break: break-all;
        margin-bottom: 20px;
    }

    .form input[type="text"],
    .form input[type="tel"],
    .form input[type="email"],
    .form textarea {
        width: 100%;
        border: none;
        padding: 8px;
        border-radius: 0;
        font-size: 1.6rem;
        outline: none;
    }

    .form input[type="text"]:focus,
    .form textarea:focus {
        outline: none !important;
    }

    .form input::-moz-focus-inner,
    .form select::-moz-focus-inner {
        border: 0;
    } /* Firefox 点線消す */
    .form select::-ms-expand {
        display: none;
    } /* IEで矢印消す */
    .form input {
        -webkit-appearance: none;
    } /* ios 影消す */

    .form textarea {
        display: block;
        border-radius: 0;
        resize: vertical;
        -webkit-appearance: none; /*--safariの影なくす--*/
        min-height: 150px;
    }

    .form textarea::-moz-focus-inner {
        border: 0;
    } /* Firefox 点線消す */
    .form textarea {
        -webkit-appearance: none;
    } /* ios 影消す */

    .form .error,
    .form .must {
        color: #eb4618;
    }

    .form .must {
        font-size: 1rem;
        font-weight: initial;
        margin-left: 2px;
    }

    .form label {
        display: inline-block;
    }

    ::placeholder {
        color: #b9b9b9;
    }

    /*--ボタン--*/
    .btn_form {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }

    .btn_form_submit,
    .btn_form_send,
    .btn_form_back {
        position: relative;
        cursor: pointer;
    }

    .btn_form_submit {
        width: 79.71%;
    }

    .btn_form_send,
    .btn_form_back {
        width: 48.55%;
    }

    .btn_form_submit,
    .btn_form_send {
        background: linear-gradient(90deg, #eb943d, #ed4818);
    }

    .btn_form_back {
        background: #fff;
    }

    .btn_form_send {
        margin-left: 10px;
    }

    .btn_form_submit::before,
    .btn_form_send::before {
        content: "";
        display: block;
        background: url("../img/ico_arrow03.png") no-repeat 0 0;
        background-size: contain;
        width: 8px;
        height: 10px;
        position: absolute;
        top: 50%;
        right: 15px;
        margin-top: -5px;
    }

    .btn_form_back::before {
        content: "";
        display: block;
        background: url("../img/ico_arrow04.png") no-repeat 0 0;
        background-size: contain;
        width: 8px;
        height: 10px;
        position: absolute;
        top: 50%;
        left: 15px;
        margin-top: -5px;
    }

    .btn_form_submit button,
    .btn_form_send button,
    .btn_form_back button {
        outline: 0;
        border: none;
        border-radius: 0;
        -webkit-appearance: none;
        background: none;
        margin: 0;
        padding: 22px 0;
        width: 100%;
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1;
        letter-spacing: 0.1em;
    }

    .btn_form_submit button,
    .btn_form_send button {
        color: #fff;
    }

    .btn_form_back button {
        color: #221f1f;
    }

    /*--個人情報保護方針--*/
    .privacy_txt {
        color: #fff;
        margin-bottom: 10px;
    }

    .privacy_txt h3 span {
        display: block;
        font-size: 1.2rem;
    }

    #privacy {
        width: 100%;
        height: 150px;
        overflow: hidden;
        line-height: 1.8;
        font-size: 1.2rem;
        background: #fff;
    }

    #privacy p {
        margin-bottom: 8px;
    }

    /* ------------------------------------------------------------

	header

	------------------------------------------------------------ */
    #header {
        position: relative;
    }

    #wrap_top {
        color: #eeeeee;
        font-size: 1rem;
        line-height: 1.2;
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
    }

    .wrap_top_inner {
        display: flex;
        flex-wrap: nowrap;
        padding: 2px 0;
    }

    .wrap_top_inner h1 {
        white-space: nowrap;
    }

    .h_logo {
        width: 87px;
        position: absolute;
        top: 15px;
        left: 15px;
    }

    .h_logo img {
        width: 100%;
    }

    /* メニュー
	---------------------------------------------- */
    /*--メニューを開いたとき背景固定--*/
    #wrap_all.open .wrapper {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
    }

    /*--メニューを開くボタン--*/
    .btn_menu {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 3;
        width: 60px;
        height: 60px;
        cursor: pointer;
        background: linear-gradient(45deg, #ed4818, #eb993f);
    }

    .btn_menu.fixed {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 3;
    }

    .btn_menu span {
        display: block;
        width: 26px;
        height: 2px;
        background: #fff;
        transition: 0.3s ease-in-out;
        position: absolute;
    }

    .btn_menu span:nth-of-type(1) {
        top: 23px;
    }
    .btn_menu span:nth-of-type(2) {
        top: 29px;
        left: 17px;
    }
    .btn_menu span:nth-of-type(3) {
        top: 35px;
        left: 17px;
    }

    #wrap_all.open .btn_menu span:nth-of-type(1) {
        top: 29px;
        left: 17px;
        background: #fff;
        transform: rotate(-45deg);
    }

    #wrap_all.open .btn_menu span:nth-of-type(2),
    #wrap_all.open .btn_menu span:nth-of-type(3) {
        top: 29px;
        left: 17px;
        background: #fff;
        transform: rotate(45deg);
    }

    /* メニュー内
	---------------------------------------------- */
    .drawer {
        background: #232020;
        width: 100%;
        height: 100vh;
        transition: opacity 0.3s;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 3;
        visibility: hidden;
    }

    #wrap_all.open .drawer {
        opacity: 1;
        pointer-events: auto;
        overflow: hidden;
        visibility: visible;
    }

    .drawer .drawer_inner {
        width: 100%;
        height: 100%;
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
        padding-bottom: 70px;
        display: flex;
        flex-direction: column;
    }

    .d_logo {
        height: 60px;
        display: flex;
        align-items: center;
        padding: 0 15px;
    }

    .d_logo a {
        display: block;
        width: 87px;
    }

    .d_logo a img {
        width: 100%;
    }

    .nav_global ul li:first-child {
        border-top: solid 1px #4e4747;
    }

    .nav_global ul li:not(:last-child) {
        border-bottom: solid 1px #4e4747;
    }

    .nav_global ul li:not(:last-child) a {
        display: block;
        padding: 20px 15px;
        position: relative;
    }

    .nav_global ul li:not(:last-child) a::after {
        content: "";
        position: absolute;
        top: 50%;
        bottom: 0;
        right: 15px;
        margin-top: -2.5px;
        background: url("../img/ico_arrow01.png") no-repeat 0 0;
        background-size: contain;
        width: 25.5px;
        height: 5px;
    }

    .nav_global ul li a span:nth-child(1) {
        display: block;
        color: #fff;
        font-size: 1.6rem;
        font-weight: 600;
        font-family: "Oswald", sans-serif;
        line-height: 1;
        position: relative;
        margin-bottom: 9px;
    }

    .nav_global ul li a span:nth-child(2) {
        display: block;
        color: #525252;
        font-weight: bold;
        font-size: 1.2rem;
        line-height: 1;
    }

    .nav_global ul li:last-child {
        text-align: center;
        margin-top: 50px;
    }

    .nav_global ul li:last-child a {
        display: block;
        background: linear-gradient(90deg, #eb943d, #ed4818);
        padding: 20px 0;
    }

    .nav_global ul li:last-child a span:nth-child(2) {
        color: #f4a188;
    }

    /* ------------------------------------------------------------

	footer

	------------------------------------------------------------ */
    #footer {
        position: relative;
        padding-top: 55px;
    }

    .f_inner_top {
        background: #232020;
        padding: 50px 15px 35px;
    }

    .f_inner_top .col_l {
        padding-bottom: 30px;
        margin-bottom: 15px;
        border-bottom: 1px solid #413f3f;
    }

    .f_inner_top .col_l .f_logo {
        width: 86.5px;
        margin-bottom: 20px;
    }

    .f_inner_top .col_l .f_logo a {
        display: block;
    }

    .f_inner_top .col_l .f_logo a img {
        width: 100%;
    }

    .f_inner_top .col_l address p {
        color: #fff;
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .f_inner_top .col_l address p:last-child {
        margin-bottom: 0;
    }

    .f_inner_bottom {
        background: #111111;
        padding: 20px 15px;
        color: #fff;
        line-height: 1.2;
    }

    .f_inner_bottom .f_small {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .f_inner_bottom .f_seo {
        font-size: 1rem;
    }

    /* ナビ
	---------------------------------------------- */
    .nav_footer01 ul {
        display: flex;
        flex-wrap: wrap;
    }

    .nav_footer01 ul li {
        width: 30.434%;
        margin-right: 15px;
    }

    .nav_footer01 ul li:nth-child(3) {
        margin-right: 0;
    }

    .nav_footer01 ul li a {
        display: block;
        padding: 15px 0;
        color: #fff;
        font-size: 1.3rem;
        font-weight: bold;
    }

    /* ページトップボタン
	---------------------------------------------- */
    #pagetop {
        width: 100%;
        height: 55px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid #e5e5e5;
        cursor: pointer;
        background: #232020;
        position: absolute !important;
        top: 0;
        left: 0;
    }

    #pagetop.pagetop_show {
        opacity: 1;
        pointer-events: auto;
    }

    #pagetop.pagetop_bottom {
        bottom: 30px;
    }

    #pagetop span {
        color: #fff;
        padding-left: 20px;
        font-weight: 600;
        font-family: "Oswald", sans-serif;
        font-size: 1.3rem;
        line-height: 1;
        position: relative;
    }

    #pagetop span::after {
        content: "";
        display: block;
        background: url(../img/ico_arrow06.png) no-repeat 0 0;
        background-size: contain;
        width: 10px;
        height: 8px;
        position: absolute;
        top: 50%;
        left: 00;
        margin-top: -4px;
    }
} /*--@media--*/
