@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
@media (min-width: 768px) {
    .pc_hide {
        display: none;
    }
}

@media (max-width: 767px) {
    .smart_hide {
        display: none;
    }
}


/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/


/* reset margin
-----------------------------------------------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    zoom: 1;
    /* hasLayout in IE */
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    font-family: 'Noto Sans JP', san-serif;
    vertical-align: baseline;
    background: transparent;
    -webkit-text-size-adjust: 100%;
    word-break: break-all;
}


/* reset font style
-----------------------------------------------------------------*/

html {
    box-sizing: border-box;
    font-weight: normal;
    font-size: 62.5%;
}

html * {
    box-sizing: inherit;
}

@media (min-width: 768px) {
    html {
        box-sizing: border-box;
        width: 100%;
    }
}

body {
    display: none;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 2;
    color: #6a6a64;
}

@media (max-width: 768px) {
    body {
        font-size: 1.5rem;
        width: 100%;
    }
}

p {
    max-height: 100%;
}

ul {
    list-style-type: none;
}

a {
    margin: 0;
    padding: 0;
    color: inherit;
    text-decoration: none;
    line-height: 0;
}

img {
    max-width: 100%;
}


/* reset table
-----------------------------------------------------------------*/

table {
    border-collapse: collapse;
    border-spacing: 0;
}

table,
th,
td {
    table-layout: fixed;
}

caption,
th,
td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}


/*-----------------------------------------------------------------
 loading
-----------------------------------------------------------------*/

#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
}

#loading img {
    width: 100px;
}


/*-----------------------------------------------------------------
 main visual
-----------------------------------------------------------------*/

.main_visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.mv_left {
    width: 50%;
    height: 100vh;
    background: url(../img/bg-l.png);
    background-repeat: no-repeat;
    background-position: 1% 1%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 1024px) {
    .main_visual {
        height: 100vh;
    }
    .mv_left {
        width: 80%;
    }
}

.content_wrap {
    text-align: center;
    float: right;
    padding-right: 20px;
    z-index: 100;
}

.content_wrap .content_img {
    display: block;
    margin: 0 auto 60px;
}

@media (max-width: 768px) {
    .mv_left {
        width: 100%;
        height: 100vh;
        background: url(../img/ph.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        align-items: center;
    }
    .content_wrap {
        width: 100%;
        margin: 0 2%;
        padding: 20% 4%;
        background: rgb(255 255 255 / 80%);
    }
    .content_wrap .content_img {
        margin-bottom: 30px;
    }
}

.txt_wrap {
    text-align: left;
    z-index: 100;
}

.white_bg {
    width: 400px;
    height: 400px;
    position: absolute;
    bottom: 15%;
    right: -10%;
    background: #fff;
    opacity: 0.6;
}

.scroll_btn {
    position: absolute;
    bottom: 15%;
    left: 20%;
    margin: 0;
    transition: 0.5s;
}

.scroll_btn:hover {
    bottom: 13%;
    transition: 0.5s;
}

.scroll_txt {
    position: relative;
}

.scroll_txt span {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 15px;
    height: 15px;
    margin-left: -7px;
    border-left: 1px solid #333;
    border-bottom: 1px solid #333;
    -webkit-transform: rotate( -45deg);
    transform: rotate( -45deg);
    box-sizing: border-box;
}

.mv_right {
    width: 50%;
    /* height: 100vh;
    background: url(../img/ph.jpg);
    background-repeat: no-repeat;
    background-position-x: right;
    background-size: cover; */
    position: relative;
    z-index: -1;
}

@media (max-width: 768px) {
    .white_bg {
        display: none;
    }
    .scroll_btn {
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transition: none;
    }
    .scroll_btn:hover {
        bottom: auto;
        transition: none;
    }
    .mv_right {
        display: none;
    }
}

.bg-ph {
    width: auto;
    float: right;
    /* height: 100vh; */
}

.bg-r {
    position: absolute;
    right: 1%;
    bottom: -90px;
}


/*-----------------------------------------------------------------
 contact
-----------------------------------------------------------------*/

#main {
    background: url(../img/contact_bg.jpg) no-repeat;
    background-size: cover;
    color: #fff;
    margin-top: 160px;
}

.contact {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.contact_l {
    width: 50%;
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    #main {
        margin-top: 80px;
    }
    .contact {
        flex-wrap: wrap;
    }
    .contact_l {
        width: 100%;
        padding: 30px 0;
        border-right: none;
        border-bottom: 1px solid #fafafa;
    }
}

.contact_l p {
    font-family: 'Noto serif JP', serif;
    padding-left: 45px;
}

.tel_bn {
    width: 360px;
}

.contact_r {
    width: 50%;
    padding: 80px 0;
    padding-left: 10%;
    border-left: 1px solid #fafafa;
}

@media (max-width: 768px) {
    .tel_bn {
        width: 78%;
    }
    .contact_r {
        width: 100%;
        padding: 30px 0;
        text-align: center;
    }
}

.contact a:hover {
    opacity: 0.5;
}

.contact h2.catch_txt {
    border: 1px solid #fff;
    padding: 8px 22px;
    margin-bottom: 20px;
    font-family: 'Noto serif JP', serif;
    display: inline;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact h2.catch_txt {
        width: 80%;
        text-align: center;
        display: block;
        margin: 0 auto 20px;
    }
}

.inquiry_txt {
    display: block;
    font-size: 4.0rem;
    line-height: 1.6;
    font-family: 'Noto serif JP', serif;
    position: relative;
    margin-top: 10px;
    letter-spacing: 4px;
}

.inquiry_txt:hover {
    opacity: 0.5;
}

.inquiry_txt span {
    display: block;
    font-size: 12px;
    letter-spacing: normal;
}

.inquiry_txt::after {
    content: url(../img/more_btn.png);
    position: absolute;
    left: 200px;
    top: -10px;
    transition: 0.5s;
}

.inquiry_txt:hover::after {
    left: 210px;
    transition: 0.5s;
}

@media (max-width: 1024px) {
    .inquiry_txt::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .inquiry_txt {
        font-size: 4.0rem;
        margin-top: -10px;
    }
}

.footer {
    background: url(../img/footer_bg.jpg);
}

.footer__inner {
    padding: 80px 0;
    text-align: center;
    font-size: 1.6rem;
}

.map_link {
    text-decoration: underline;
    font-family: 'Noto serif JP', serif;
}

@media (max-width: 768px) {
    .footer__inner {
        padding: 40px 0;
    }
    .map_link {
        display: block;
    }
}

.map_link:hover {
    background: linear-gradient( to right, #3a81c4, #1e2c5c);
    -webkit-background-clip: text;
    color: transparent;
    transition: 0.5s;
}

.c_func {
    color: #9e9a9a;
    font-size: 1.2rem;
    margin-top: 40px;
}

.footer__copyright {
    background: #000;
    width: 100%;
    display: block;
    font-size: 1.2rem;
    text-align: center;
    color: #fff;
    padding: 5px 0;
}

@media (max-width: 768px) {
    .c_func {
        margin-top: 20px;
    }
}


/*-----------------------------------------------------------------
 404
-----------------------------------------------------------------*/

#error {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 120px 20px;
}

.error_title {
    font-size: 9rem;
    color: #263361;
}

.error_lead {
    margin-bottom: 30px;
}

.btn {
    background: #263361;
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
}

.btn:hover {
    opacity: 0.8;
}