@charset "UTF-8";
html {
    overflow: hidden;
    overflow-y: scroll;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #333;
}

body .mincho {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Sawarabi Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

body .roboto {
    font-family: 'Roboto', sans-serif;
}

body .gara {
    font-family: 'EB Garamond', serif;
}

* img {
    vertical-align: middle;
    image-rendering: -webkit-optimize-contrast;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media all and (max-width: 767px) {
    body {
    }
    
    .pc {
        display: none;
    }
    
    .sp {
        display: block;
    }
}

.font_b {
    font-weight: bold;
}

.btn_a {
    position: relative;
}

.btn_a:after {
    position: absolute;
    right: 20px;
    top: 55%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: url("../img/btn_arrow.svg");
    display: block;
    width: 10px;
    transition: all 0.2s;
}

.btn_a:hover:after {
    right: 10px;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
}

#top_btn {
    position: fixed;
    right: -60px;
    bottom: 0;
    display: block;
    height: 60px;
    width: 60px;
    transition: all 0.2s;
    z-index: 999;
}

#top_btn.active {
    right: 0px;
}

.section_common {
    padding: 80px 0;
}

.content_wrap {
    width: 90%;
    margin: 0 auto;
}

.bg_tr,.bg_tl {
    position: relative;
}

.bg_tr:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 250px;
    background: #f7f9fa;
    z-index: -1;
}

.bg_tl:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 250px;
    background: #f7f9fa;
    z-index: -1;
}

.bg_dbl {
    background: #122943;
}

.bg_rbl {
    background: #f7f9fa;
}

.bg_bl {
    background: #ccd6e0;
}

.h2_common {
    position: relative;
    margin-bottom: 60px;
}

.h2_common:before {
    content: "";
    display: block;
    width: 70%;
    height: 1px;
    background: #005371;
    position: absolute;
    bottom: -5px;
    left: -40px;
}

.h2_common.fadein_left {
    animation-name: fadein_leftAnime;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-delay: 0.1s;
    animation-direction: normal;
    opacity: 0;
}

@keyframes fadein_leftAnime {
    0% {
        opacity: 0;
        transform:translate(-50px,0px);
    }

    100% {
        opacity: 1;
        transform:translate(0px,0px);
    }
}

.h2_common.sub {
    margin-bottom: 20px;
}

.h2_common span {
    font-family: 'EB Garamond', serif;
    font-size: 50px;
    color: #005371;
    margin-right: 30px;
}

.bg_dbl .h2_common {
    color: white;
}

.bg_dbl .h2_common:before {
    background: #fff;
}

.bg_dbl .h2_common span {
    color: #46607c;
}

.h2_sub {
    margin-bottom: 60px;
}

.under_h1 {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
}

.under_h1 span {
    font-family: 'EB Garamond', serif;
    font-size: 50px;
    color: #005371;
    margin-right: 30px;
}

.under_h1 {
    animation-name: h1_fadein_rightAnime;
    animation-fill-mode: forwards;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-delay: 0.5s;
    animation-direction: normal;
}

@keyframes h1_fadein_rightAnime {
    0% {
        opacity: 0;
        transform:translate(40px,0px);
    }

    100% {
        opacity: 1;
        transform:translate(0px,0px);
    }
}

.face_content .face_txt {
    padding: 5px 10px;
    background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5));
    background-size: 0 100%;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: 3s;
}

.face_content .face_txt.white {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2));
}

.face_content .face_txt.on {
  background-size: 100% 100%;
}

@media all and (max-width: 767px) {
    .wrap {
        width: 100%;
    }

    #top_btn {
        right: -50px;
        height: 50px;
        width: 50px;
    }

    .section_common {
        padding: 30px 0;
    }
    
    .h2_common {
        width: 100%;
        font-size: 15px;
        margin-bottom: 40px
    }
    
    .h2_sub {
        margin-bottom: 30px;
        font-size: 14px;
    }
    
    .h2_common:before {
        width: 110%;
        bottom: -5px;
        left: -40px;
    }
    
    .h2_common.sub {
        margin-bottom: 20px;
    }
    
    .h2_common span {
        font-size: 30px;
        margin-right: 0px;
        display: block;
    }
    
    .under_h1 {
        margin-bottom: 30px;
        font-size: 15px;
    }
    
    .under_h1 span {
        font-size: 30px;
        margin-right: 15px;
        display: block;
    }
}

/*===========================================
       header設定
===========================================*/
#face {
    height: 100vh;
    width: 100%;
    position: relative;
}

header {
    height: 100vh;
    width: 25vw;
    background: #122943;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    align-self: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    z-index: 999;
}

header .top_logo {
    width: 140px;
    margin: 0 auto;
}

header .top_logo img {
    width: 100%;
}

header .top_logo.pc1 {
    display: block;
}

header .top_logo.pc2 {
    display: none;
}

header nav {
    width: 80%;
    margin: 40px 10%;
}

header nav ul {
    width: 100%;
    border-bottom: 1px solid #777;
    border-top: 1px solid #777;
}

header nav ul li:not(:last-child) {
    border-bottom: 1px solid #777;
}

header nav ul li a {
    display: block;
    padding: 15px;
    color: white;
    text-align: center;
    transition: all 0.2s;
    font-size: 15px;
}

header nav ul li a:hover {
    background: #263b53;
}

.h_contact {
    background: #fff;
    border: 3px solid #b4a082;
    width: 250px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-self: flex-end;
    margin: auto auto 0;
}

.top_contact_btn {
    background: #b4a082;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 30px;
    border-radius: 5px;
    transition: all 0.2s;
    width: 180px;
    font-weight: bold;
    font-size: 15px;
}

.top_contact_btn:hover {
    background: #736357;
}

.top_contact_btn:before {
    content: "";
    display: block;
    background-image: url(../img/mail.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.top_tel_box {
    margin-top: 10px;
}

.top_tel_box a {
    font-weight: bold;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.top_tel_box p {
    font-size: 13px;
    margin-top: 5px;
    color: #333;
}

.top_tel_box a:before {
    content: "";
    display: block;
    background-image: url(../img/tel_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-bottom: 3px;
}

.face_content {
    position: relative;
    width: 100%;
    height: 100vh;
}

.plate {
    display: none;
}

@media all and (max-width: 1200px) {
    #face {
        height: calc(100vh - 80px);
        width: 100%;
        background: #ddd;
        position: relative;
        margin-top: 80px;
    }

    header {
        height: 80px;
        min-height: auto;
        width: 100%;
        position: absolute;
        top: -80px;
        left: 0;
        padding: 15px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;
        align-content: flex-start;
    }
    
    header .top_logo {
        width: 300px;
        margin: 0;
    }
    
    header .top_logo.pc1 {
        display: none;
    }

    header .top_logo.pc2 {
        display: block;
    }

    header nav {
        width: 20em;
        margin: 0;
        position: absolute;
        top: 80px;
        right: -20em;
        background: #122943;
        overflow: hidden;
        height: auto;
        transition: all 0.2s;
    }

    header nav.on {
        right: 0em;
    }

    header nav ul {
        width: 100%;
        border-bottom: 0px solid #777;
        border-top: 0px solid #777;
        display: flex;
        flex-flow: column;
    }

    header nav ul li:not(:last-child) {
        border-bottom: 0px solid #777;
    }

    header nav ul li a {
        padding: 10px;
        font-size: 14px;
    }

    header nav ul li a:hover {
        background: #263b53;
    }

    .h_contact {
        display: none;
    }

    .face_content {
        position: relative;
        width: 100%;
        overflow: hidden;
        height: calc(100vh - 80px);
    }
    
    .plate {
        display: block;
    }
}

@media all and (max-width: 767px) {
    #face {
        margin-top: 50px;
        height: calc(100vh - 50px);
    }

    header {
        height: 50px;
        top: -50px;
    }

    header .top_logo {
        width: 200px;
        margin: 0;
    }
    
    header nav {
        width: 100vw;
        margin: 0;
        position: absolute;
        top: 50px;
        right: -100vw;
        background: #122943;
        overflow: hidden;
        transition: all 0.2s;
    }
    
    .face_content {
        height: 100%;
    }
}

/*===========================================
       main設定
===========================================*/
main {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
}

.fadein_up {
    animation-name: fadein_upAnime;
    animation-fill-mode: forwards;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-delay: 0.5s;
    animation-direction: normal;
}

@keyframes fadein_upAnime {
    0% {
        opacity: 0;
        transform:translate(0px,-15px);
    }

    100% {
        opacity: 1;
        transform:translate(0px,0px);
    }
}

/*===========================================
       form設定
===========================================*/
#overview {
    margin-bottom: 50px;
    text-align: center;
    background: #F7F9FA;
    padding: 30px;
    line-height: 2;
}

.red {
    color: red;
}

#formWrap {
    max-width: 1000px;
    margin: 0 auto;
}

#formWrap h4 {
    margin-bottom: 20px;
}

#formWrap .error_messe {
    margin-bottom: 10px;
    color: red;
}

.formTable {
    width: 100%;
}

.formTable tr:not(:last-child) {
    margin-bottom: 40px;
    display: block;
}

.formTable th,.formTable td {
    vertical-align: top;
    width: 100%;
    display: block;
}

.formTable th {
    text-align: left;
    margin-bottom: 20px;
}

.formTable th:before {
    content: "●";
    color: #005371;
    margin-right: 5px;
}

.formTable td p {
    font-size: 14px;
    margin-top: 10px;
    color: #777;
}

.formTable td select {
    padding: 1em;
    border: 1px solid #ddd;
}

.formTable td select:not(.formTable td label input),.formTable td input:not(.formTable td label input),.formTable td textarea:not(.formTable td label input) {
    margin-top: -10px;
    background: #f9f9f9;
}

.formTable td input,.formTable td textarea {
    padding: 1em;
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 100%;
    outline: 0;
}

.formTable td.tel input {
    width: 15em;
}

.formTable td.yubin input {
    width: 10em;
}

.formTable td input::placeholder {
    color: #aaa;
}

.formTable td input:not(:first-child) {
    margin-top: 1em;
}

.formTable td input[type="text"]:focus,.formTable td textarea:focus {
    border: 1px solid #b4a082;
}

.formTable td label {
    display: inline-block;
    cursor: pointer;
}

.formTable td label:not(:last-child) {
    margin-right: 2em;
}

.formTable td label input {
    width: auto;
    margin-right: 0.5em;
}

.privacy {
    text-align: center;
    color: #4d4d4d;
}

.privacy a {
    text-decoration: underline;
}

.privacy a:hover {
    color: red;
}

.form_btn {
    text-align: center;
    margin: 50px 0 30px;
}

.form_btn input {
    width: 9em;
    padding: 0.5em 1em;
    background: white;
    border: 1px solid #005371;
    font-size: 16px;
    color: #fff;
    background: #005371;
    transition: all 0.2s;
}

.form_btn input {
    margin: 0 1em;
}

.form_btn input:hover {
    background: #DCA11D;
    color: white;
    border: 1px solid #DCA11D;
}

.form_btn h4 {
    margin-bottom: 30px;
    text-align: center;
}

.form_btn .error_messe:not(:last-child) {
    margin-bottom: 10px;
}
    
.required {
    margin-left: 0.2em;
    color: red;
}
    
#formWrap h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
}

#formWrap .h3_sub {
    text-align: center;
    font-size: 15px;
    margin-bottom: 30px;
}

@media all and (max-width: 767px) {
    #overview {
        margin-bottom: 30px;
        text-align: justify;
        font-size: 14px;
        padding: 20px;
    }
    
    #formWrap {
        padding: 0px 15px;
        width: auto;
    }
    
    .formTable th,
    .formTable td {
        font-size: 14px;
    }

    .formTable th {
        width: 100%;
        margin-bottom: 10px;
    }

    .formTable tr:not(:last-child) {
        margin-bottom: 25px;
    }

    .formTable td p {
        font-size: 13px;
        margin-top: 5px;
    }

    .formTable td select {
        padding: 0.5em;
        width: 100%;
    }

    .formTable td select:not(.formTable td label input),.formTable td input:not(.formTable td label input),.formTable td textarea:not(.formTable td label input) {
        margin-top: 0px;
    }

    .formTable td input,
    .formTable td textarea {
        padding: 1em 0.5em;
    }

    .privacy {
        font-size: 15px;
    }

    .form_btn {
        text-align: center;
        margin: 50px 0 30px;
    }

    .form_btn input {
        font-size: 14px;
    }
}

/*===========================================
       bnr設定
===========================================*/
/*========== bnr ==========*/
#bnr_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: -40px;
}

#bnr_box li {
    width: 500px;
    height: 130px;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 20px 40px;
    opacity: 0;
}

#bnr_box li:nth-child(1).bnr {
    background-image: url(../img/bnr1.jpg);
}
#bnr_box li:nth-child(2).bnr {
    background-image: url(../img/bnr2.jpg);
}
#bnr_box li:nth-child(3).bnr {
    background-image: url(../img/bnr3.jpg);
}
#bnr_box li:nth-child(4).bnr {
    background-image: url(../img/bnr4.jpg);
}

#bnr_box.on li.bnr {
    animation-name: bnrAnime;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-direction: normal;
}

#bnr_box li:nth-child(1).bnr {
    animation-delay: 0s;
}
#bnr_box li:nth-child(2).bnr {
    animation-delay: 0.25s;
}
#bnr_box li:nth-child(3).bnr {
    animation-delay: 0.5s;
}
#bnr_box li:nth-child(4).bnr {
    animation-delay: .75s;
}

@keyframes bnrAnime {
    0% {
        opacity: 0;
        transform:translate(0px,-20px);
    }

    100% {
        opacity: 1;
        transform:translate(0px,0px);
    }
}

#bnr_box li:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 130px 70px;
    border-color: transparent transparent #122943 transparent;
    position: absolute;
    right: -70px;
    bottom: 0;
    transition: all 0.2s;
}

#bnr_box li:after {
    content: "";
    display: block;
    width: 150px;
    height: 130px;
    background: #122943;
    position: absolute;
    right: -220px;
    bottom: 0;
    transition: all 0.2s;
}

#bnr_box li:hover:before {
    right: 150px;
}

#bnr_box li:hover:after {
    right: 0px;
}

.bnr_wrap {
    width: 200px;
    height: 100%;
    background: #122943;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.2s;
}

#bnr_box li:hover .bnr_wrap {
    background: #dca11d;
    transition-delay: 0.2s;
}

.bnr_wrap:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 130px 70px 0 0;
    border-color: #122943 transparent transparent transparent;
    position: absolute;
    right: -70px;
    top: 0;
    transition: all 0.2s;
}

#bnr_box li:hover .bnr_wrap:before {
    border-color: #dca11d transparent transparent transparent;
    transition-delay: 0.2s;
}

.bnr_wrap div {
    text-align: center;
}

.bnr_wrap div img {
    width: 60px;
    margin-bottom: 5px;
}

.bnr_wrap div p {
    color: white;
    text-align: center;
}

@media all and (max-width: 767px) {
    #bnr_box {
        margin-bottom: -30px;
    }

    #bnr_box li {
        width: 100vw;
        height: 26vw;
        margin: 0 0px 30px;
    }

    #bnr_box li:before {
        border-width: 0 0 26vw 14vw;
        right: -14vw;
    }

    #bnr_box li:after {
        width: 30vw;
        height: 26vw;
        right: -44vw;
    }

    #bnr_box li:hover:before {
        right: 30vw;
    }

    .bnr_wrap {
        width: 40vw;
    }

    .bnr_wrap:before {
        border-width: 26vw 14vw 0 0;
        right: -14vw;
    }

    .bnr_wrap div img {
        width: 50px;
    }

    .bnr_wrap div p {
        font-size: 14px;
    }
}

/*===========================================
       link_box
===========================================*/
#link_box {
    background-color: #f7f9fa;
    padding: 3em 1em;
    font-size: 16px;
}

#link_box ul {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
    gap: 1.5em;
    justify-content: center;
}

#link_box ul li {
    position: relative;
}

#link_box ul li a {
    display: block;
    height: 100%;
    padding: 1em;
    background-color: #00af8d;
    color: white;
    transition: all 0.2s;
}

#link_box ul li a:hover {
    background-color: #006f59;
}

#link_box ul li img {
    position: absolute;
    top: 50%;
    right: 0.7em;;
    transform: translateY(-50%);
    width: 1.3em;
    height: 1.3em;
}

#link_box ul li:last-of-type img {
    display: none;
}

@media all and (max-width: 767px) {
    #link_box {
        padding: 2em 1em;
        font-size: 14px;
    }

    #link_box ul {
        width: 100%;
        gap: 1em;
        grid-template-columns: repeat(auto-fit, minmax(15em, 1fr));
    }
}

/*===========================================
       footer設定
===========================================*/
footer {
    margin-top: 0px
}

.footer_main {
    background: #122943;
    padding: 50px 0 0;
}

.footer_box {
    display: flex;
    justify-content: center;
}

.fbox_l {
    width: 400px;
    border-right: 1px solid #fff;
    padding: 20px;
    color: white;
    line-height: 1.5;
}

.fbox_l .f_logo {
    width: 220px;
    display: block;
    margin-bottom: 30px;
}

.fbox_l .f_logo img {
    width: 100%;
}

.fbox_l .add_box {
    margin-left: 20px;
}

.fbox_l .address {
    margin: 20px 0 15px;
}

.fbox_r {
    width: 780px;
    padding: 20px 20px 20px 40px;
    color: white;
    line-height: 1.2;
    display: flex;
}

.fbox_r > ul:not(:last-child) {
    margin-right: 100px;
}

.fbox_r li:not(:last-child) {
    margin-bottom: 20px;
}

.fbox_r .fnav_under {
    margin-top: 20px;
}

.fbox_r .fnav_under li {
    color: #aaa;
}

.fbox_r .fnav_under li:before {
    content: "―";
    margin-right: 10px;
}

.fbox_r .fnav_under li:not(:last-child) {
    margin-bottom: 15px;
}

.fbox_r li a:hover {
    text-decoration: underline;
}

.fbox_r .f_contact_wrap {
    width: 250px;
}

.fbox_r .f_contact_wrap .f_con_btn {
    background: #fff;
    color: #263b53;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px 10px 30px;
    border-radius: 5px;
    transition: all 0.2s;
    width: 100%;
    font-weight: bold;
}

.fbox_r .f_contact_wrap .f_con_btn:hover {
    background: #ffb;
}

.fbox_r .f_contact_wrap .f_con_btn:before {
    content: "";
    display: block;
    background-image: url(../img/mail_b.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.f_con_tel {
    margin-top: 15px;
}

.f_con_tel a {
    font-weight: bold;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

.f_con_tel p {
    font-size: 15px;
    margin-top: 5px;
    color: #fff;
    text-align: center;
}

.f_con_tel a:before {
    content: "";
    display: block;
    background-image: url(../img/tel_icon_b.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 28px;
    height: 28px;
    margin-right: 5px;
    margin-bottom: 3px;
}

.sns_box {
    padding: 10px 20px 20px;
    border-bottom: 1px solid #fff;
}

.sns_box ul {
    /*display: flex;*/
    display: none;
    justify-content: flex-end;
}

.sns_box ul li {
    margin-left: 20px;
    width: 25px;
}

.sns_box ul li img {
    width: 100%;
}

.copy {
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 20px;
}

@media all and (max-width: 1299px) {
    .footer_box {
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .fbox_l {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #aaa;
        padding: 0 20px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px
    }

    .fbox_l .f_logo {
        margin-bottom: 0;
    }

    .fbox_l .add_box {
        margin-left: 40px;
    }

    .fbox_l .address {
        margin: 0px 0 10px;
    }

    .fbox_r {
        width: 100%;
        padding: 20px 0;
        justify-content: center;
    }
}

@media all and (max-width: 767px) {
    footer {
        margin-top: 0px;
    }

    .footer_main {
        padding: 30px 0 0;
    }

    .footer_box {
        flex-wrap: wrap;
        padding: 0 15px;
    }

    .fbox_l {
        padding: 0 0px 20px;
        flex-wrap: wrap;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .fbox_l .f_logo {
        margin-bottom: 20px;
    }

    .fbox_l .add_box {
        margin-left: 0px;
    }

    .fbox_l .address {
        margin: 0px 0 10px;
    }

    .fbox_r {
        width: 100%;
        padding: 10px 0px 20px;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .fbox_r ul {
        width: 15em;
        margin: 0 auto;
    }
    
    .fbox_r ul:first-child {
        margin-bottom: 20px
    }

    .fbox_r > ul:not(:last-child) {
        margin-right: auto;
    }
    
    .fbox_r li {
        width: 100%;
    }

    .fbox_r li:not(:last-child) {
        margin-bottom: 20px;
    }

    .fbox_r .fnav_under {
        margin: 20px 0 20px 15px;
        width: 15em;
    }

    .fbox_r .fnav_under li:not(:last-child) {
        margin-bottom: 15px;
    }


    .sns_box ul {
        display: flex;
        justify-content: center;
    }

    .sns_box ul li {
        margin: 0 15px;
        width: 20px;
    }
    
    .fbox_r .f_contact_wrap {
        margin-top: 30px;
    }
    
    .copy {
        color: white;
        font-size: 12px;
        text-align: center;
        padding: 15px;
    }
}