@charset "UTF-8";
/* =====================
  共通
===================== */
/* display */
.pc{}
.sp{display: none;}

/* flexbox */
.df{display: flex;}

/* tel */
a[href^="tel:"]{
    pointer-events: none;
}

/* =====================
  ボタン
==================== */
.u-btn{
    padding: 22px 1em;
}
.u-btn::after{
    right: 27px;
    width: 23px;
    height: 5px;
}
.u-btn:hover{
    background: var(--creamOn);
}
.u-btn.black:hover{
    background: var(--grey);
}
.u-btn:not([target="_blank"]):hover::after{
    right: 20px;
}

/* =====================
  アニメーション
===================== */
/* 透過 */
.hover-op{transition: opacity 250ms ease 0s;}
.hover-op:hover{opacity: 0.7;}

/* 青 */
.hover-textblue{transition: color 250ms ease 0s;}
.hover-textblue:hover{color: var(--blue);}

/* =====================
  メイン
===================== */
main{
    padding-top: 95px;
}

/* =====================
  ヘッダー
===================== */
.header{
    height: 95px;
    padding-left: 31px;
    min-width: var(--min-width);
}
.headerFixed .header{
    height: 70px;
}
.header .logo:hover .SVG_LOGO .st2{
    fill:var(--yellow);
}
.header .logo svg{
    width: 188px;
}
.header .text{
    display: inline-block;
    position: relative;
    top: 2px;
    line-height: 1;
    padding-left: 0.9em;
}
.header nav,
.header nav > ul{
    height: inherit;
}
.header nav > ul > li{
    height: inherit;
    -webkit-transition: background 250ms ease 0s,color 250ms ease 0s;
       -moz-transition: background 250ms ease 0s,color 250ms ease 0s;
        -ms-transition: background 250ms ease 0s,color 250ms ease 0s;
         -o-transition: background 250ms ease 0s,color 250ms ease 0s;
            transition: background 250ms ease 0s,color 250ms ease 0s;
}
.header nav > ul > li > a{
    width: 100%;
    display: inline-flex;
    height: inherit;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    padding: 0 1.7em;
}
.header nav > ul > li > a > span{
    position: relative;
    display: inline-flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    height: inherit;
}
.header nav > ul > li:last-child{
    min-width: 152px;
    background: var(--black);
    color: var(--white);
}
.header nav > ul > li:last-child:hover{
    background: var(--grey);
}
.header nav > ul > li:last-child a > span::before{
    font-family: 'Material Icons';
    content: "email";
    font-weight: normal;
    font-size: 18px;
    display: inline-block;
    position: relative;
    top: -2px;
    margin-right: 0.25em;
}
.header nav .nav-line{
    opacity: 0;
    position: absolute;
    width: 0em;
    bottom: 0px;
    left: 0;
    height: 2px;
    background: var(--black);
    -webkit-transition: all 350ms ease 50ms;
       -moz-transition: all 350ms ease 50ms;
        -ms-transition: all 350ms ease 50ms;
         -o-transition: all 350ms ease 50ms;
            transition: all 350ms ease 50ms;
    will-change: left, width;
}
.header nav .nav-line.on{
    opacity: 1;
}

/* =====================
  フッター
===================== */
.footer{
    min-height: 280px;
    background: #f1ede5;
    padding-top: 74px;
    min-width: var(--min-width);
}
/* コンテンツ */
.footer .article{
    margin-left: 9.2%;
    background: var(--black);
    overflow: hidden;
    -webkit-border-radius: 150px 0 0 0;
    border-radius: 150px 0 0 0;
}

/* =====================
  上部コンテンツ
===================== */
.footer .article .group[data-group="1"]{
    background-color: var(--black);
    background-image: url("../img/footer/01.png");
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    padding: 56px 100px 51px calc(122px - 110px);
}
.footer .article .group[data-group="1"] .wrap{
    width: 980px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.footer .article .group[data-group="1"] .item{
    width: 50%;
    padding-top: 11px;
    padding-bottom: 11px;
    padding-left: 120px;
}
.footer .article .group[data-group="1"] .item > .head{
    font-size: var(--fz-large);
}

/* お電話 */
.footer .article .group[data-group="1"] .item[data-item="1"]{
    padding-right: 71px;
}
.footer .article .group[data-group="1"] .item[data-item="1"] .anchor{
    font-size: 33px;
    font-weight: normal;
    display: block;
    margin-top: 0.25em;
    letter-spacing: 0.1em;
}
.footer .article .group[data-group="1"] .item[data-item="1"] .unit{
    border-width: 1px;
    border-color: rgb(131, 131, 131);
    border-style: solid;
    margin-top: 1em;
    padding: 15px 26px;
    font-size: var(--fz-middle);
}
.footer .article .group[data-group="1"] .item[data-item="1"] .unit-item{
    padding-right: 2em;
}
.footer .article .group[data-group="1"] .item[data-item="1"] .unit-item[data-unit="2"]{
    padding-left: 2em;
}
.footer .article .group[data-group="1"] .item[data-item="1"] .unit-item[data-unit="2"]::before{
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255,255,255,.5);
}
.footer .article .group[data-group="1"] .item[data-item="2"]{
    padding-left: 143px;
}
.footer .article .group[data-group="1"] .item[data-item="2"]::before{
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    left: 69px;
    top: 7px;
    background: rgba(255,255,255,.5);
}

/* メール */
.footer .article .group[data-group="1"] .item[data-item="2"] .anchor{
    display: block;
    width: 335px;
    padding: 1.367em;
    text-align: center;
    margin-top: 1.4em;
    font-weight: bold;
    background: var(--white);
    color: var(--black);
    font-size: var(--fz-middle);
    -webkit-transition: var(--all-animation);
       -moz-transition: var(--all-animation);
        -ms-transition: var(--all-animation);
         -o-transition: var(--all-animation);
            transition: var(--all-animation);
}
.footer .article .group[data-group="1"] .item[data-item="2"] .anchor:hover{
    background: var(--black);
    color: var(--white);
}
.footer .article .group[data-group="1"] .item[data-item="2"] .anchor i{
    display: inline-block;
    width: 14px;
    height: 15px;
    vertical-align: -2px;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: center;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden%3D%22true%22%20focusable%3D%22false%22%20data-prefix%3D%22fas%22%20data-icon%3D%22angle-double-right%22%20class%3D%22svg-inline--fa%20fa-angle-double-right%20fa-w-14%22%20role%3D%22img%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M224.3%20273l-136%20136c-9.4%209.4-24.6%209.4-33.9%200l-22.6-22.6c-9.4-9.4-9.4-24.6%200-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6%200-33.9L54.3%20103c9.4-9.4%2024.6-9.4%2033.9%200l136%20136c9.5%209.4%209.5%2024.6.1%2034zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9%200l-22.6%2022.6c-9.4%209.4-9.4%2024.6%200%2033.9l96.4%2096.4-96.4%2096.4c-9.4%209.4-9.4%2024.6%200%2033.9l22.6%2022.6c9.4%209.4%2024.6%209.4%2033.9%200l136-136c9.4-9.2%209.4-24.4%200-33.8z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
    margin-right: 0.5em;
    right: 0;
    -webkit-transition: var(--all-animation);
    -moz-transition: var(--all-animation);
    -ms-transition: var(--all-animation);
    -o-transition: var(--all-animation);
    transition: var(--all-animation);
    position: relative;
}
.footer .article .group[data-group="1"] .item[data-item="2"] .anchor:hover i{
    right: -2px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20aria-hidden%3D%22true%22%20focusable%3D%22false%22%20data-prefix%3D%22fas%22%20data-icon%3D%22angle-double-right%22%20class%3D%22svg-inline--fa%20fa-angle-double-right%20fa-w-14%22%20role%3D%22img%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M224.3%20273l-136%20136c-9.4%209.4-24.6%209.4-33.9%200l-22.6-22.6c-9.4-9.4-9.4-24.6%200-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6%200-33.9L54.3%20103c9.4-9.4%2024.6-9.4%2033.9%200l136%20136c9.5%209.4%209.5%2024.6.1%2034zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9%200l-22.6%2022.6c-9.4%209.4-9.4%2024.6%200%2033.9l96.4%2096.4-96.4%2096.4c-9.4%209.4-9.4%2024.6%200%2033.9l22.6%2022.6c9.4%209.4%2024.6%209.4%2033.9%200l136-136c9.4-9.2%209.4-24.4%200-33.8z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
}
.footer .article .group[data-group="1"] .item[data-item="2"] .anchor + .text{
    margin-top: 1.2em;
    font-size: 14px;
    line-height: 1.929;
}

/* =====================
  下部コンテンツ
===================== */
.footer .article .group[data-group="2"]{
    background-color: var(--black);
    padding: 67px 100px 64px calc(122px - 14px);
}
.footer .article .group[data-group="2"] .wrap{
    margin-left: auto;
    margin-right: auto;
    width: 890px;
}
/* 会社情報 */
.footer .article .group[data-group="2"] .item[data-item="1"]{
    width: 34%;
}
.footer .article .group[data-group="2"] .item[data-item="1"] .logo svg{
    width: 215px;
    height: 33px;
    display: inline-block;
    vertical-align: top;
}
.footer .article .group[data-group="2"] .item[data-item="1"] .logo .SVG_LOGO .st2{
    fill:#fff;
}
.footer .article .group[data-group="2"] .item[data-item="1"] .logo a:hover .SVG_LOGO .st2{
    fill:var(--yellow);
}
.footer .article .group[data-group="2"] .item[data-item="1"] address{
    margin-top: 14px;
    padding-left: 2px;
}
.footer .article .group[data-group="2"] .item[data-item="1"] address span{
    line-height: 2;
}
/* ナビ */
.footer .article .group[data-group="2"] .item[data-item="2"]{
    width: 61%;
    font-size: 16px;
    padding-top: 9px;
}
.footer .article .group[data-group="2"] .item[data-item="2"] li:last-child a span::before{
    font-family: 'Material Icons';
    content: "email";
    font-weight: normal;
    font-size: 18px;
    display: inline-block;
    position: relative;
    top: -1px;
    margin-right: 0.35em;
}
.footer .article .group[data-group="2"] .item[data-item="2"] a{
    font-weight: normal;
    padding: 0 1.5em;
}
.footer .article .group[data-group="2"] .item[data-item="2"] a span{
    position: relative;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
}
.footer .article .group[data-group="2"] .item[data-item="2"] a span::after{
    content: "";
    width: 0;
    max-width: 0;
    height: 2px;
    background: #FFF;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: var(--all-animation);
       -moz-transition: var(--all-animation);
        -ms-transition: var(--all-animation);
         -o-transition: var(--all-animation);
            transition: var(--all-animation);
}
.footer .article .group[data-group="2"] .item[data-item="2"] a:hover span::after{
    width: 100%;
    max-width: 100vw;
}
/* 下部リンク */
.footer .article .group[data-group="2"] .item[data-item="3"]{
    width: 100%;
    margin-top: 60px;
    color: var(--smoke);
}
.footer .article .group[data-group="2"] .item[data-item="3"] li + li::before{
    content: "｜";
    display: inline-block;
    margin: 0 1em;
}
/* コピーライト */
.footer small{
    position: absolute;
    width: 10vw;
    height: 10vw;
    text-align: center;
    white-space: nowrap;
    display: block;
    bottom: 213px;
    left: -6px;
    display: inline-flex;
    color: var(--greybrown);
    font-size: var(--fz-xxsmall);
    align-items: center;
    justify-content: center;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

/* =====================
  ページトップへ
===================== */
.to-top{
    display: block;
    position: fixed;
    right: 0;
    opacity: 0;
    bottom: -55px;
    width: 55px;
    height: 55px;
    background-color: #181818;
    z-index: 22;
    -webkit-transition: all 600ms var(--easeOutExpo) 0s;
       -moz-transition: all 600ms var(--easeOutExpo) 0s;
        -ms-transition: all 600ms var(--easeOutExpo) 0s;
         -o-transition: all 600ms var(--easeOutExpo) 0s;
            transition: all 600ms var(--easeOutExpo) 0s;
}
.to-top:hover{
    background: var(--black);
}
.to-top.on::before{
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    display: block;
    position: absolute;
    top: calc(50% + 4px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
       -moz-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
         -o-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transition: all 350ms ease 300ms;
       -moz-transition: all 350ms ease 300ms;
        -ms-transition: all 350ms ease 300ms;
         -o-transition: all 350ms ease 300ms;
            transition: all 350ms ease 300ms;
}
.to-top:hover::before{
    top: calc(50% + 2px);
}
.to-top.on{
    opacity: 1;
    bottom: 0;
}

/* =====================
  コンテンツ共通
===================== */
main .contents-inner .headstyle{
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    letter-spacing: 0.6px;
}
main .contents-inner .headstyle::before{
    order: -2;
    content: attr(data-en);
    display: inline-block;
    font-family: var(--ff-amiri);
    font-size: 22px;
    letter-spacing: 0.25px;
}
main .contents-inner .headstyle::after{
    content: "";
    order: -1;
    display: block;
    width: 12px;
    height: 3px;
    margin-top: 0.35em;
    margin-bottom: 0.65em;
    margin-left: auto;
    margin-right: auto;
    background: #000;
}
main .contents-inner .headstyle + p{
    margin-top: 43px;
    line-height: 2;
}
