@charset "utf-8";
html {
    font-size: 62.5%;
}
body {
    background: #000;
    font-size: 1.0rem;
    font-family: ltc-bodoni-175, serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
}
.kaku {
    font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
}
/*
.mincho {
    font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.maru {
    font-family: heisei-maru-gothic-std,sans-serif;
    font-weight: 400;
    font-style: normal;
}
.maruBold{
    font-family: heisei-maru-gothic-std,sans-serif;
    font-weight: 800;
    font-style: normal;
} */
.ofi {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: 'object-fit: cover;';
}
.mask {
    display: inline-block;
    overflow: hidden;
    position: relative;
}
.mask span {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: opacity;
    position: relative;
    z-index: 1;
}
.mask.show span {
    -webkit-animation: mask-svg cubic-bezier(0.645, 0.045, 0.355, 1) 1s;
    animation: mask-svg cubic-bezier(0.645, 0.045, 0.355, 1) 1s;
    opacity: 1;
}
.mask:after {
    top: 0;
    left: 0;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transform-origin: left;
    z-index: 10;
}
.mask.show:after{
    animation: mask_bg cubic-bezier(0.645, 0.045, 0.355, 1) 1s;
}
@-webkit-keyframes mask_bg {
    0% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
    100% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
}
@keyframes mask_bg {
    0% {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }
}
@-webkit-keyframes mask-svg {
    0% {
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    75% {
      opacity: 0.8;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    }
}
@keyframes mask-svg {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    75% {
        opacity: 0.8;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    }
}
a {
    transition: .3s ease;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    opacity: 0.7;
}
ul{
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}
img {
    max-width: 100%;
    height: auto;
}
.bgGray {
    background: #F5F8F8;
}
.bgWhite {
    background: #fff;
}
.flexBox {
    display: flex;
}
.spOnly {
    display: none !important;
}
.container {
    position: relative;
    text-align: center;
}
/* drawerMenu */
.drawerMenu {
    position: fixed;
    background: #000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s, height .5s;
    overflow: hidden;
    z-index: 999;
}
.drawerMenu.open {
    opacity: 1;
    visibility: visible;
    height: 500px;
}
.drawerMenu nav {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}
.drawerMenu ul {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 50%;
    height: 70%;
}
.drawerMenu p {
    font-size: 4rem;
    letter-spacing: 0.1em;
    text-align: left;
    color: #fff;
    margin-top: 10px;
}
.drawerMenu .closeBtn {
    position: fixed;
    top: 24px;
    right: 0;
    padding: 0 17px 0 20px;
    border-bottom: 2px solid #fff;
}
.drawerMenu li a {
    display: block;
}
/* .drawerMenu li a:hover {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
  }
  @-webkit-keyframes flash {
    0% {
      opacity: .4;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes flash {
    0% {
      opacity: .4;
    }
    100% {
      opacity: 1;
    }
} */
.drawerMenu figure img {
    -webkit-filter: grayscale(0) blur(0);
    filter: grayscale(0) blur(0);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.drawerMenu figure:hover img {
    -webkit-filter: grayscale(100%) blur(3px);
    filter: grayscale(100%) blur(3px);
}
/* header */
header {
    padding: 20px 0 20px 3em;
    display: flex;
    justify-content: space-between;
}
header h1 {
    margin-top: 20px;
}
header .navBtn {
    margin-top: 20px;
    padding: 0 30px 10px 20px;
    border-bottom: 2px solid #fff;
}
header .navBtn a {
    display: block;
}
header nav {
    width: 60%;
}
header ul {
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
}
header li {
    margin: 0 20px;
}
header li a {
    color: #fff;
    font-size: 2rem;
    position: relative;
    transition: none;
    padding: 0 10px;
}
header li a:hover {
    opacity: 1;
}
header li a:before,
header li.active a:before {
    position: absolute;
    top: 0.5em;
    left: 0;
    content: "";
    display: inline-block;
    width: 0;
    height: 3px;
    background: #fff;
    transition: .3s ease;
}
header li a:hover:before,
header li.active a:before {
    width: 100%;
}
/* contact */
.contact {
    padding: 150px 0 100px;
}
.contactInner {
    width: 60%;
    margin: 0 auto;
    background: #F2E9DE;
    padding: 100px 0 60px;
}
.contactInner h2 {
    font-size: 6rem;
    letter-spacing: 0.2em;
    position: relative;
    margin-top: -126px;
    margin-bottom: 40px;
}
.contactLink {
    width: 60%;
    margin: 0 auto;
    padding-bottom: 15px;
    border-bottom: 3px solid #fff;
}
.contactLink a {
    font-size: 2.8rem;
    color: #000;
}
.contactTel {
    padding-top: 30px;
    font-size: 2.8rem;
    letter-spacing: 0.1em;
}
.contactTel a {
    color: #000;
}
.companyHero {
    padding: 80px 0;
    width: 857px;
    margin:  0 auto;
}
.companyHero h2 {
    line-height: 1.4;
    font-size: 5rem;
    letter-spacing: 0.2em;
    padding-bottom: 40px;
    border-bottom: 3px solid;
}
.companyHero h2 span {
    font-size: 3rem;
}
.companyHero p {
    font-size: 1.8rem;
    margin: 0 auto;
    padding: 40px 0;
    text-align: left;
    line-height: 1.6;
    display: inline-block;
}
/* commonLink */
.commonLink a {
    position: relative;
    z-index: 1;
    padding-right: 30px;
}
.commonLink a:hover {
    opacity: 1;
}
.commonLink a:before {
    position: absolute;
    top: 0.5em;
    left: 0;
    content: "";
    display: inline-block;
    width: 0;
    height: 10px;
    background: #BFDBEF;
    transition: .3s ease;
    z-index: -1;
}
.commonLink a:hover:before{
    width: 100%;
}
/* footer */
footer {
    padding-bottom: 10px;
}
footer .copy {
    font-size: 1.6rem;
}
@media screen and (max-width: 835px) {
    .spOnly {
        display: block !important;
    }
    .pcOnly {
        display: none !important;
    }
    .drawerMenu.open {
        height: 300px;
    }
    .drawerMenu ul {
        justify-content: center;
        width: 80%;
        height: auto;
    }
    .drawerMenu li:first-child {
        margin-right: -19px;
    }
    .drawerMenu li:last-child {
        margin-left: -19px;
    }
    .drawerMenu p {
        font-size: 1.5rem;
        letter-spacing: 0;
    }
    .drawerMenu .closeBtn {
        padding: 0 9px 1px 10px;
        top: 0;
    }
    .drawerMenu .closeBtn img {
        width: 41px;
    }
    header {
        padding: 10px 0 10px 1.2em;
        align-items: flex-start;
    }
    header h1 {
        width: 32%;
        margin-top: 0;
    }
    header h1 img {
        width: 100%;
    }
    header nav {
        display: none;
    }
    header .navBtn {
        padding: 0 20px 7px 10px;
        margin-top: 5px;
    }
    .navBtn img {
        width: 30px;
    }
    .companyHero {
        padding: 30px 0;
        width: 90%;
    }
    .companyHero h2 {
        text-align: left;
        font-size: 3rem;
        padding-bottom: 10px;
    }
    .companyHero p {
        font-size: 1.4rem;
        padding: 20px 0;
        width: 100%;
    }
    /* contact */
    .contact {
        padding: 65px 0 20px;
    }
    .contactInner h2 {
        font-size: 4rem;
        margin-top: -94px;
    }
    .contactInner {
        width: 90%;
        padding: 76px 0 50px;
    }
    .contactLink {
        width: 80%;
    }
    .contactLink a {
        font-size: 2.2rem;
    }
    .contactTel {
        padding-top: 20px;
    }
    .companyHero h2 span {
        font-size: 2.4rem;
    }
}