/* 共通スタイル */

.noto-serif-jp-light {
    font-family: "Noto Serif JP", serif;
    font-weight: 300;
    font-style: normal;
}
.noto-serif-jp-regular {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;
}
.noto-serif-jp-medium {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-style: normal;
}
.eb {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

a {
    cursor: pointer;
}

h1,h2,h3,h4,h5,p,a {
    font-weight: 100;
    letter-spacing: 3px;
    line-height: 1.7;
}
a.sans, p.sans, .sans p, .sans a {
    font-weight: 300;
}

html {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 102px;
    box-sizing: border-box;
	overflow-x: hidden;
  	overscroll-behavior-x: none;
}
body {
    width: 100%;
    /* max-width: 1920px; */
    margin: auto;
    position: relative;
    -webkit-text-size-adjust: 100% !important;
    -webkit-appearance: none !important;
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 100;
    color: #333;
    letter-spacing: 3px;
}
body#page {
	overflow-x: hidden;
}
.sans {
    font-family: 'Noto Sans JP', serif;
    font-weight: 300;
}

header {
    margin-top: 102px;
}

a {
    display: flex;
    color: #333;
}
@media (hover: hover) and (pointer: fine) {
    a:hover {
        opacity: 0.8;
    }
}

section, footer .wrapper {
    width: calc(100% - 240px);
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    padding: 0 20px 100px 20px;
    border-left: 1px solid #c8c8c8;
    border-right: 1px solid #c8c8c8;
    margin: 0 120px;
}
section:first-of-type {
    padding-top: 100px;
}
section::before, footer .wrapper::before {
    content: "";
    width: 100vw;
    height: 1px;
    background-color: #c8c8c8;
    position: absolute;
    top: 0;
    left: -120px;
}
section::after, footer .wrapper::after {
    content: "";
    width: 100vw;
    height: 1px;
    background-color: #c8c8c8;
    position: absolute;
    bottom: 100px;
    left: -120px;
}
section:first-of-type::before {
    top: 100px;
}

.content {
    flex-direction: column;
    position: relative;
    width: 100%;
}
.content::before {
    content: "";
    height: calc(100% + 100px);
    width: 1px;
    background-color: #c8c8c8;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.content::after {
    content: "";
    height: calc(100% + 100px);
    width: 1px;
    background-color: #c8c8c8;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
section:first-of-type .content::before {
    height: calc(100% + 200px);
    top: -100px;
    left: 0;
}
section:first-of-type .content::after {
    height: calc(100% + 200px);
    top: -100px;
    right: 0;
}
.tb, .sp {
    display: none;
}
.border-top, .border-btm {
    position: static !important;
}
.border-top::before {
    content: "";
    width: 100vw;
    height: 1px;
    background: #c8c8c8;
    position: absolute;
    top: 0;
    left: -150px;
}
.border-btm::after {
    content: "";
    width: 100vw;
    height: 1px;
    background: #c8c8c8;
    position: absolute;
    bottom: 0;
    left: -150px;
}

@media screen and (max-width: 1200px) {
    html {
        scroll-padding-top: 90px;
    }
    .pc {
        display: none !important;
    }
    .tb {
        display: block;
    }
    section, footer .wrapper {
        margin: 0;
        width: 100%;
        border: none;
    }
    footer .wrapper {
        padding-bottom: 0;
    }
    section::before, footer .wrapper::before {
        left: 0;
    }
    section::after {
        left: 0;
    }
    footer .wrapper::after {
        display: none;
    }
    header {
        margin-top: 90px;
    }
    .border-top::before {
        left: -25px;
    }
    .border-btm::before {
        left: -25px;
    }
}
@media screen and (max-width: 600px) {
    html {
        scroll-padding-top: 60px;
    }
    .sp {
        display: block;
    }
    header {
        margin-top: 60px;
    }
    section {
        padding: 0 20px 60px 20px;
    }
    section:first-of-type {
        padding-top: 60px;
    }
    section::after {
        bottom: 60px;
    }
    section:first-of-type::before {
        top: 60px;
    }
    section:first-of-type .content::before, section:first-of-type .content::after {
        top: -60px;
    }
}

/*/////////////////////グローバルナビ////////////////////////////*/

#gnav {
    display: flex;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #fff;
    border-bottom: 1px solid #c8c8c8;
}
#gnav .gnav-inner {
    width: 100%;
    display: flex;
    position: relative;
    background-color: #fff;
}
#gnav a {
    white-space: nowrap;
}
.gnav-logo {
    position: relative;
    height: auto;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #c8c8c8;
    transition: .4s ease;
    z-index: 999;
}
.gnav-logo img {
    width: 250px;
    margin: auto;
}
.gnav-menu {
    flex-direction: column;
    width: calc(100% - 560px);
}
.gnav-menu .top {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 1px solid #c8c8c8;
    padding: 10px 0;
    width: 100%;
    z-index: 999;
}
.gnav-menu .top a {
    font-size: 14px;
    align-items: center;
    margin-right: 50px;
    transition: .2s ease;
}
.gnav-menu .top a::before {
    content: "";
    width: 20px;
    height: 1px;
    background: #333;
    margin-right: 6px;
}
.gnav-menu .btm {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 999;
}
.gnav-menu .btm li {
    width: 25%;
}
.gnav-menu .btm a {
    padding: 15px 0;
    justify-content: center;
    font-size: 16px;
    border-right: 1px solid #c8c8c8;
}
.gnav-menu .btm li:last-of-type a {
    border: none;
}
.gnav-contact {
    width: 230px;
    display: flex;
    background-color: #333;
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: .4s ease;
    position: relative;
    z-index: 999;
}
.gnav-contact img {
    display: flex;
    width: 24px;
    margin: auto 10px auto 0;
}
@media screen and (max-width: 1200px) {
    #gnav {
        height: 90px;
    }
    .gnav-contact {
        width: 90px;
    }
    .gnav-contact img {
        width: 45%;
        margin: auto;
    }
    .gnav-logo {
        width: calc(100% - 180px);
        padding: 8px 20px;
        align-items: center;
    }
    .gnav-logo img {
        width: 100%;
        height: 100%;
        margin: auto;
        object-fit: contain;
        object-position: center;
    }
    .sp-menuBar {
        width: 90px;
    }
    .sp-menuBar::before {
        content: "";
        display: flex;
        position: absolute;
        z-index: 995;
        width: 120vw;
        height: 100%;
        left: 0;
        top: 0;
        background-color: #fff;
        border-bottom: 1px solid #c8c8c8;
    }
    .drawer_menu-wrapper {
        width: 100%;
        height: 100%;
        cursor: pointer;
    }
    .drawer_menu {
        padding: 30% 25%;
        width: 100%;
        height: 100%;
        display: flex;
        position: relative;
        z-index: 999;
    }
    .drawer_menu.active .menu-trigger span:nth-of-type(1) {
        transform: translateY(16px) rotate(-45deg);
    }
    .drawer_menu.active .menu-trigger span:nth-of-type(2) {
        opacity: 0;
    }
    .drawer_menu.active .menu-trigger span:nth-of-type(3) {
        transform: translateY(-16px) rotate(45deg);
    }
    .drawer_menu-wrapper.active+.sp-nav-wrapper {
        left: 0;
    }
    .menu-trigger,
    .menu-trigger span {
        display: flex;
        transition: all .4s;
        box-sizing: border-box;
    }
    .menu-trigger {
        position: relative;
        width: 100%;
        height: 100%;
    }
    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #333;
        /*//border-color//*/
        border-radius: 4px;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 0;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .sp-nav-wrapper {
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: -100vh;
        left: 0;
        opacity: 0;
        background-color: #fff;
        overflow-y: scroll;
        transition: ease .5s;
        z-index: 990;
    }
    .sp-nav-inner {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
    }
    .sp-menu {
        font-size: 18px;
        padding: 25px 20px;
        border: 1px solid #c8c8c8;
        border-top: none;
        flex-grow: 1;
    }
    footer .sp-menu {
        border-left: none;
        border-right: none;
    }
    .drawer_menu-wrapper.active+.sp-nav-wrapper {
        top: 0;
        padding-top: 90px;
        opacity: 1;
    }
    .ac-item {
        flex-direction: column;
        cursor: pointer;
    }
    .ac-ttl {
        width: 100%;
        position: relative;
        display: flex;
    }
    .ac-ttl p {
        display: flex;
    }
    .ac-ttl .bar {
        position: absolute;
        right: 0;
        width: 20px;
        height: 2px;
        background-color: #000;
        border-radius: 4px;
        transition: .6s ease;
    }
    .ac-ttl .bar:nth-of-type(1) {
        top: 50%;
    }
    .ac-ttl .bar:nth-of-type(2) {
        top: 50%;
        transform: rotate(90deg);
    }
    .ac-item.active .ac-ttl span:nth-of-type(2) {
        transform: rotate(0deg);
    }
    .ac-menu {
        display: flex;
        flex-direction: column;
        height: 0;
        overflow: hidden;
        transition: .4s ease;
    }
    .ac-item.active .ac-ttl+.ac-menu {
        height: auto;
        padding: 10px 0;
    }
    .ac-menu li {
        margin-top: 10px;
    }
    .ac-menu a {
        display: flex;
        align-items: center;
        width: fit-content;
        font-size: 16px;
        margin-left: 10px;
    }
    .ac-menu a::before {
        content: "";
        width: 5px;
        height: 1px;
        margin-right: 5px;
        background-color: #333;
    }
}
@media screen and (max-width: 600px) {
    #gnav {
        height: 60px;
    }
    .gnav-contact {
        width: 60px;
    }
    .gnav-logo {
        width: calc(100% - 120px);
    }
    .sp-menuBar {
        width: 60px;
    }
    .drawer_menu-wrapper.active+.sp-nav-wrapper {
        top: 0;
        padding-top: 60px;
        opacity: 1;
    }
    .drawer_menu.active .menu-trigger span:nth-of-type(1) {
        transform: translateY(11px) rotate(-45deg);
    }
    .drawer_menu.active .menu-trigger span:nth-of-type(3) {
        transform: translateY(-10px) rotate(45deg);
    }
}
.gnav-menu .btm li {
    position: relative;
}
.gnav-menu .btm li a {
    position: relative;
    z-index: 1002;
    transition: .2s ease;
}
.gnav-menu .btm li:before {
    content: "";
    display: flex;
    width: 0;
    height: 100%;
    z-index: 1001;
    background-color: #666;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: .2s ease;
}
@media (hover: hover) and (pointer: fine) {
    .gnav-menu .btm li:hover a {
        color: #fff;
    }
    .gnav-menu .btm li:hover:before {
        transition: .4s ease;
        width: 100%;
        opacity: 1;
    }
    .gnav-contact:hover {
        background-color: #666;
    }
    .gnav-menu .top a:hover {
        opacity: 0.3;
    }
    .gnav-logo:hover {
        background-color: #bbb;
    }
    .sp-menu:hover {
        opacity: 0.6;
    }
    .sp-menu.ac-item:hover {
        opacity: 1;
    }
    .sp-menu.ac-item:hover .ac-ttl {
        opacity: 0.6;
    }
    .ac-menu a:hover {
        opacity: 0.6;
    }
    .fnav-sp a:hover {
        opacity: 0.6;
    }
}

/*/////////////////////フッター////////////////////////////*/
footer {
    color: #fff;
    background-color: #666666;
}
footer .content {
    padding: 120px 5vw 66px 5vw;
}
footer .content::before, footer .content::after {
    height: 100%;
}
#fnav {
    display: flex;
    justify-content: space-between;
}
footer a {
    color: #fff;
}
.footer-company {
    min-width: fit-content;
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.footer-company .inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.footer-logo {
    display: flex;
    margin-bottom: 40px;
    width: 280px;
}
.footer-logo img {
    display: flex;
}
footer .com-name {
    font-size: 18px;
    margin-bottom: 20px;
}
footer .com-add {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.9;
}
footer .com-add span {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
footer .com-add span.sp-del {
    width: fit-content;
    display: contents;
}
.fnav-menu {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}
.fnav-menu_top {
    display: flex;
    justify-content: space-between;
}
.fnav-menu_btm {
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
}
.fnav-menu .item {
    margin-right: 20px;
}
.menu-ttl {
    font-size: 16px;
    margin-top: 30px;
    color: #fff;
}
.menu-ttl:first-of-type {
    margin-top: 0;
}
.menu-sub {
    display: flex;
    align-items: center;
    color: #c8c8c8;
    font-size: 15px;
    margin-top: 10px;
}
.menu-sub:first-of-type {
    margin-top: 20px;
}
.menu-sub:before {
    content: "";
    width: 5px;
    height: 1px;
    margin-right: 5px;
    background-color: #c8c8c8;
}
.box-menu_recruit {
    background-color: #4ca535;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    margin-right: 20px;
}
.box-menu_recruit .eb {
    font-size: 26px;
}
.box-menu_recruit img {
    width: 24px;
    margin: auto 0;
}
.box-menu_contact {
    background-color: #fff;
    color: #333;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
}
.box-menu_contact .eb {
    font-size: 26px;
}
.box-menu_contact img {
    width: 24px;
    margin: auto 0;
}
.footer_btm {
    position: relative;
    padding: 20px 5vw 20px 5vw;
}
.footer_btm .inner {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.footer_btm .inner::before {
    content: "";
    width: 1px;
    height: calc(100% + 100px);
    background: #c8c8c8;
    position: absolute;
    top: 0;
    left: 0;
}
.footer_btm .inner::after {
    content: "";
    width: 1px;
    height: calc(100% + 100px);
    background: #c8c8c8;
    position: absolute;
    top: 0;
    right: 0;
}
.footer_btm-menu {
    display: flex;
}
.footer_btm-menu p {
    margin: 0 20px;
}
.top-btn {
    cursor: pointer;
    display: flex;
    width: 80px;
    height: 80px;
    background-color: #4ca535;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 100% 0 0 0;
    justify-content: center;
    align-items: center;
    z-index: 200;
}
.top-btn img {
    width: 20px;
    margin: auto 20px 30px auto;
    transform: rotate(-90deg);
    transition: .4s ease;
}
@media (hover: hover) and (pointer: fine) {
    .top-btn:hover img {
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 1200px) {
    .top-btn {
        display: none;
    }
    #fnav {
        flex-direction: column;
    }
    footer {
        padding: 0;
    }
    footer .content {
        padding: 0;
    }
    footer .content::before, footer .content::after {
        height: 100%;
    }
    .footer-company {
        width: 100%;
        align-items: center;
        padding: 0 10px;
        text-align: center;
        position: relative;
        margin-right: 0;
    }
    .footer-company:after {
        content: "";
        position: absolute;
        width: calc(100% + 40px);
        height: 1px;
        background: #c8c8c8;
        bottom: 0;
        left: -20px;
    }
    .footer-company .inner {
        align-items: center;
        padding: 40px 20px;
    }
    .footer-logo {
        width: 100%;
        max-width: 230px;
        margin-bottom: 20px;
    }
    footer .com-name {
        font-size: 18px;
        margin-bottom: 10px;
    }
    footer .com-add {
        font-size: 16px;
    }
    footer .com-add span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    #fnav .sp-nav-wrapper {
        position: static;
        height: auto;
        overflow: auto;
        opacity: 1;
        background-color: transparent;
    }
    #fnav .ac-ttl .bar, #fnav .ac-menu a::before {
        background-color: #fff;
    }   
    .fnav-sp_btm {
        width: 100%;
        padding: 25px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #c8c8c8;
        border: 1px solid #c8c8c8;
        border-top: none;
        font-size: 14px;
    }
    .fnav-sp_btm p {
        margin: auto 15px;
    }
    .fnav-sp small {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 25px 20px;
        color: #fff;
        font-size: 15px;
        text-align: center;
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;
        font-weight: 200;
    }
    .fnav-sp small span span {
        white-space: nowrap;
    }
    .box-menu_recruit {
        margin-right: 0;
    }
}
@media screen and (max-width: 600px) {
    .footer-company .inner {
        padding: 40px 0;
    }
}
@media screen and (max-width: 520px) {
    footer .com-add span.sp-del {
        display: none;
    }
    footer .com-add span {
        flex-direction: column;
        align-items: center;
    }
}

/*/////////////////////事業紹介共通フッター////////////////////////////*/

.bf-wrapper {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.bf-block.left .bg {
    background: url(../img/front-page/biz-img05.jpg) no-repeat center / cover;
}
.bf-block.right .bg {
    background: url(../img/front-page/biz-img06.jpg) no-repeat center / cover;
}
#business-footer .icon-link {
    color: #fff;
    margin: auto;
    width: fit-content;
}

.bf-block {
    width: 48%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.bf-block .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: .5s ease;
    z-index: -1;
}
.bf-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bf-ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    margin-bottom: 60px;
}
.bf-ttl .eb {
    font-size: 4vw;
    line-height: 1;
    opacity: .3;
    font-weight: 100;
    letter-spacing: 3px;
}
.bf-ttl h2 {
    font-size: 20px;
    margin-top: -20px;
    font-weight: 100;
    letter-spacing: 3px;
}

@media screen and (max-width: 1200px) {
    .bf-ttl .eb {
        font-size: 5vw;
    }
    .bf-wrapper {
        height: 420px;
    }
}
@media screen and (max-width: 900px) {
    .bf-wrapper {
        height: auto;
        flex-direction: column;
    }
    .bf-block {
        width: 100%;
        height: 300px;
    }
    .bf-wrapper .left {
        margin-bottom: 30px;
    }
}
@media screen and (max-width:600px) {
    #business-footer .icon-link p {
        font-size: 16px;
    }
    .bf-ttl .eb {
        font-size: 34px;
    }
    .bf-ttl h2 {
        font-size: 19px;
        margin-top: -15px;
    }
}

/*/////////////////////その他////////////////////////////*/

#page header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 550px;
    position: relative;
    padding: 20px 6vw;
}
#page header:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 20px;
}
#page header:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 20px;
}
#page .header-ttl {
    color: #fff;
}
#page .header-ttl .eb {
    font-size: 90px;
    letter-spacing: 5px;
    line-height: 1;
    margin-bottom: 15px;
}
#page .header-ttl h1, #page .header-ttl .h1 {
    font-weight: 100;
    letter-spacing: 5px;
    font-size: 30px;
}
#page .img-wrapper {
    display: flex;
    justify-content: space-between;
}
#page .img-wrapper .top-img {
    width: 45%;
    max-width: 720px;
    height: 440px;
    object-fit: cover;
}
#page .img-wrapper .top-img-sp {
    display: none;
}
#page .top-ttl-sub {
    font-size: 20px;
    padding: 20px 30px;
    border-bottom: 1px solid #c8c8c8;
}
#page .top-ttl-sub + .top-ttl h2 {
    margin-bottom: 20px;
}
#page .top-ttl {
    padding: 30px;
}
#page .top-ttl h2 {
    font-size: 28px;
    margin-bottom: 30px;
}
#page .ttl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 30px;
    border-left: 6px solid #4ca535;
    position: relative;
}
#page .ttl::after {
    content: "";
    width: 100vw;
    height: 1px;
    background-color: #c8c8c8;
    position: absolute;
    bottom: 0;
    left: -150px;
}
#page .ttl h2 {
    font-size: 20px;
}
.icon-link {
    display: flex;
    align-items: center;
	position: relative;
    z-index: 10;
}
.icon-link p {
    font-size: 18px;
    font-weight: 500;
    margin-right: 20px;
}
.icon-link .icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #4ca535;
    transition: .4s ease;
}
.icon-link img {
    width: 30px;
    display: flex;
    margin: auto;
    transition: .4s ease;
}
#page .text-block {
    padding: 30px;
}
@media screen and (max-width: 1200px) {
    #page .top-ttl {
        padding: 20px;
    }
    #page .top-ttl-sub {
        padding: 20px;
    }
    #page .text-block {
        padding: 20px;
    }
    #page .header-ttl .eb {
        font-size: 60px;
    }
    #page .header-ttl h1, #page .header-ttl .h1 {
        font-size: 20px;
    }
    #page .ttl::after {
        left: -25px;
    }
    #page .img-wrapper .top-img {
        width: 45%;
        height: 250px;
    }
}
@media screen and (max-width: 850px) {
    #page .img-wrapper .top-img-pc {
        display: none;
    }
    #page .img-wrapper .top-img-sp {
        display: flex;
    }
    #page .img-wrapper .top-img {
        width: 100%;
        max-width: 380px;
        height: 200px;
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 600px) {
    #page header {
        padding: 20px;
        height: 320px;
    }
    #page .header-ttl .eb {
        font-size: 40px;
    }
    #page .header-ttl h1, #page .header-ttl .h1 {
        font-size: 18px;
    }
    #page .top-ttl-sub {
        font-size: 18px;
    }
    #page .top-ttl {
        padding: 20px;
    }
    #page .top-ttl h2 {
        font-size: 24px;
    }
    .icon-link .icon {
        width: 50px;
        height: 50px;
    }
    .icon-link img {
        width: 25px;
    }
    #page .text-block {
        padding: 20px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .icon-link:hover img {
        transform: translateX(15px) scale(0.9);
    }
    .icon-link:hover .icon {
        transform: scale(1.3);
    }
    .bf-wrapper .bf-block:hover .bg {
        width: 120%;
        height: 120%;
    }
    .bf-block:hover .icon-link img {
        transform: translateX(15px) scale(0.9);
    }
    .bf-block:hover .icon-link .icon {
        transform: scale(1.3);
    }
}

/*/////////////////////アニメーション////////////////////////////*/

.ttl_en .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: calc(var(--char-index) * 0.2s);
}

.ttl_en.animate .char {
  animation-name: fadeUp;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all .8s;
}
.fade-up.active {
    opacity: 1;
    transform: translateY(0px);
}

.fade-R {
    opacity: 0;
    transform: translateX(35px);
    transition: all 1.2s;
}
.fade-R.active {
    opacity: 1;
    transform: translateX(0px);
}

.fade-L {
    opacity: 0;
    transform: translateX(-35px);
    transition: all 1.2s;
}
.fade-L.active {
    opacity: 1;
    transform: translateX(0px);
}

.fade-in {
    opacity: 0;
    transform: scale(80%);
    transition: all .6s;
}
.fade-in.active {
    opacity: 1;
    transform: scale(0%);
}


#page .rhLink,
#front .rhLink {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
}
#page .rhLink a,
#front .rhLink a {
	display: inline-block;
}
#page .rhLink a:hover,
#front .rhLink a:hover {
	opacity: 0.7;
}
#page .rhLink .pc,
#front .rhLink .pc { display: block !important; }
#page .rhLink .sp,
#front .rhLink .sp { display: none !important; }


@media all and (max-width: 896px) {
	#page .rhLink img,
	#front .rhLink img{
	    width: 100%;
	}
	#page .rhLink,
	#front .rhLink {
	        position: fixed;
	        bottom: 20px;
	        right:0;
	}
	#page .rhLink .pc,
	#front .rhLink .pc { display: none !important; }
	#page .rhLink .sp,
	#front .rhLink .sp { display: block !important; }
}