@charset "UTF-8";

/*------------------------------------------------------------------
  fonts
------------------------------------------------------------------*/
@font-face {
    font-family: "NotoSerifJP";
    src: url("../webfonts/NotoSerifJP-Regular.woff2") format("woff2"),
         url("../webfonts/NotoSerifJP-Regular.woff") format("woff");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "NotoSerifJP";
    src: url("../webfonts/NotoSerifJP-Bold.woff2") format("woff2"),
         url("../webfonts/NotoSerifJP-Bold.woff") format("woff");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Lora";
    src: url("../webfonts/Lora-Regular.woff2") format("woff2"),
         url("../webfonts/Lora-Regular.woff") format("woff");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Lora";
    src: url("../webfonts/Lora-Bold.woff2") format("woff2"),
         url("../webfonts/Lora-Bold.woff") format("woff");
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "Domine";
    src: url("../webfonts/Domine-Regular.woff2") format("woff2"),
         url("../webfonts/Domine-Regular.woff") format("woff");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Domine";
    src: url("../webfonts/Domine-Bold.woff2") format("woff2"),
         url("../webfonts/Domine-Bold.woff") format("woff");
    font-weight: 700;
    font-display: swap;
}

/* 
　NotoSansJPは「株式会社MICORI」という文字列専用です。
　読み込み速度の遅延防止のため、上記文字列のみサブセット化しています。
　そのため、それ以外のテキストにはフォントが適用されません。
*/
@font-face {
    font-family: "NotoSansJP";
    src: url("../webfonts/NotoSansJP-Regular-micori.woff2") format("woff2"),
         url("../webfonts/NotoSansJP-Regular-micori.woff") format("woff");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "NotoSansJP";
    src: url("../webfonts/NotoSansJP-Bold-micori.woff2") format("woff2"),
         url("../webfonts/NotoSansJP-Bold-micori.woff") format("woff");
    font-weight: 700;
    font-display: swap;
}

/*------------------------------------------------------------------
  base
------------------------------------------------------------------*/
body {
    font-family: "Domine", "NotoSerifJP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 16px;
    color: #fff;
    background-color: #1c1c1c !important;
    line-height: 1.5;
    letter-spacing: 0.05em;
}
@media screen and (max-width:767px){
    body {
        font-size: 14px;
    }
}
.animate{
    visibility: hidden;
}


/*------------------------------------------------------------------
  custom Bootstrap
------------------------------------------------------------------*/
@media screen and (min-width:1200px){
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl{
        max-width: 1320px;
        padding-left: 30px;
        padding-right: 30px;
    }
}


/*------------------------------------------------------------------
　header
------------------------------------------------------------------*/

/*  header
------------------------------------------------------------------*/
header{
    position: relative;
    z-index: 1000;
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
   position: fixed;
   top: 10px;
   left: 30px;
}
@media screen and (max-width:991px){
    .header-logo{
        position: fixed;
        top: 10px;
        left: 15px;
    }
    .header-logo img{
        width: 40px;
        height: auto;
    }
}

/*  header-drower
------------------------------------------------------------------*/
.header-drower{
    position: fixed;
    top: 40px;
    right: 30px;
    display: flex;
    align-items: center;
}
@media screen and (max-width:991px){
    .header-drower{
        position: fixed;
        top: 0;
        left: 100%;
        display: block;
        width: 250px;
        height: 100%;
        padding-top: 60px;
        background: #000;
        overflow-y: scroll;
        transition: .4s;
        z-index: 1;
    }
    .header-drower.in{
        transform: translateX(-100%);
    }
    .header-drower::-webkit-scrollbar {
        width: 0;
        height: 0;
    }
    .header-drower::-webkit-scrollbar-track {
        background-color: transparent;
    }
    .header-drower::-webkit-scrollbar-thumb {
        background-color: transparent;
    }
}


/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    display: flex;
    margin: 0 -15px;
}
.header-nav > li{
    padding: 0 15px;
}
.header-nav > li > a{
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    letter-spacing: 0;
    line-height: 1;
    transition: .2s;
}
.header-nav > li > a.active,
.header-nav > li > a:hover{
    color: #ccb063;
}
.header-nav > li.shop-link > a > i{
    font-size: 20px;
}
.header-nav > li.shop-link > a > span{
    display: none;
}
@media screen and (max-width:991px){
    .header-nav{
        display: block;
        height: auto;
        margin: 0 0 15px;
    }
    .header-nav > li{
        padding: 0;
    }
    .header-nav > li > a{
        display: block;
        height: auto;
        padding: 20px;
        border-bottom: 1px solid #424041;
    }
    .header-nav > li > a::before {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        content: "\f054";
        font-family: "Font Awesome 6 Free";
        font-weight: bold;
        font-size: 12px;
    }
    .header-nav > li > a::after{
        display: none;
    }
    .header-nav > li > a.active{
        background: #806b43;
        color: #fff;
    }
    .header-nav > li.shop-link > a{
        background: #530b1d;
        color: #fff;
    }
    .header-nav > li.shop-link > a > i{
        font-size: 1rem;
    }
    .header-nav > li.shop-link > a > span{
        display: inline-block;
        margin-left: 10px;
    }
}

/*  hamburger
------------------------------------------------------------------*/
.hamburger{
    display: none;
}
@media screen and (max-width:991px){
    .hamburger {
        position: fixed;
        top: 15px;
        right: 15px;
        display: block;
        width: 40px;
        height: 26px;
        cursor: pointer;
        z-index: 2;
    }
    .hamburger .inner-line {
        display: block;
        position: absolute;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
        transition: .2s;
    }
    .hamburger #line1 {
        top: 0;
    }
    .hamburger #line2 {
        top: 12px;
    }
    .hamburger #line3 {
        bottom: 0;
    }
    .hamburger .line-1 {
        transform: rotate(-45deg);
        top: 12px !important;
    }
    .hamburger .line-2 {
        opacity: 0;
    }
    .hamburger .line-3 {
        transform: rotate(45deg);
        top: 12px !important;
    }
}


/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/

footer{
    padding-top: 60px;
    background: #efefef;
    color: #1c1c1c;
}
@media screen and (max-width:991px){
    footer{
        padding-top: 30px;
    }
}

/*  footer-company
------------------------------------------------------------------*/
.footer-company{
    margin-bottom: 15px;
    font-family: 'NotoSansJP', 'メイリオ', 'Meiryo', sans-serif;
    font-size: 24px;
    text-align: center;
}

/*  footer-sns
------------------------------------------------------------------*/
.footer-sns{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.footer-sns li + li{
    margin-left: 10px;
}

/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -15px;
}
.footer-nav > li{
    padding: 0 15px;
}
@media screen and (max-width:767px){
    .footer-nav{
        display: block;
        width: 80vw;
        max-width: 320px;
        margin: 0 auto 30px;
    }
    .footer-nav > li + li{
        margin-top: 10px;
    }
    .footer-nav > li > a{
        position: relative;
        display: block;
        padding: 10px 20px 10px 10px;
        border: 1px solid #333;
        font-size: 14px;
    }
    .footer-nav > li > a::after{
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-weight: bold;
        font-size: 12px;
    }
}

/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-family: 'メイリオ', 'Meiryo', sans-serif;
    margin-top: 30px;
    padding: 20px 0;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0;
}


/*----------------------------------------------------
  common page-top
---------------------------------------------------- */

/*  page-top-section
------------------------------------------------------------------*/
.page-top-section{
    position: relative;
    padding: 300px 0 150px;
    text-align: center;
}
@media screen and (max-width:1399px){
    .page-top-section{
        padding: 250px 0 80px;
    }
}
@media screen and (max-width:991px){
    .page-top-section{
        padding: 150px 0 80px;
    }
}

/*  page-top-title
------------------------------------------------------------------*/
.page-top-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 120px;
    text-align: center;
    letter-spacing: 0;
    line-height: 1;
}
.page-top-title .treat01,
.page-top-title .treat02{
    position: absolute;
    content: "";
    background: url(../images/common/dog-foot.svg) no-repeat center / cover;
    width: 30px;
    height: 30px;
    opacity: 0;
}
.page-top-title .treat01{
    top: 0;
    left: -40px;
    transform: rotate(-10deg);
    animation: page-top-treat-view1 0.4s forwards;
    animation-delay: 1.3s;
}
.page-top-title .treat02{
    top: -20px;
    left: -80px;
    transform: rotate(-20deg);
    animation: page-top-treat-view2 0.4s forwards;
    animation-delay: 1.4s;
}
@keyframes page-top-treat-view1 {
    from{ opacity: 0;}
    to  { opacity: 1;}
}
@keyframes page-top-treat-view2 {
    from{ opacity: 0;}
    to  { opacity: 1;}
}
.page-top-title .text{
    display: block;
    overflow: hidden;
}
.page-top-title .text span{
    position: relative;
    display: inline-block;
    transform: translateY(100%);
    animation: page-top-title-view 1s forwards;
    animation-timing-function: cubic-bezier(.65,.11,.54,.99);
}
.page-top-title .text span:nth-of-type(2){
    animation-delay: 0.05s;
}
.page-top-title .text span:nth-of-type(3){
    animation-delay: 0.1s;
}
.page-top-title .text span:nth-of-type(4){
    animation-delay: 0.15s;
}
.page-top-title .text span:nth-of-type(5){
    animation-delay: 0.2s;
}
.page-top-title .text span:nth-of-type(6){
    animation-delay: 0.25s;
}
.page-top-title .text span:nth-of-type(7){
    animation-delay: 0.3s;
}
.page-top-title .text span:nth-of-type(8){
    animation-delay: 0.35s;
}
@keyframes page-top-title-view {
    from{
        transform: translateY(100%);
    }
    to{
        transform: translateY(0);
    }
}
@media screen and (max-width:1399px){
    .page-top-title{ font-size: 100px;}
    .page-top-title .treat01,
    .page-top-title .treat02{
        width: 25px;
        height: 25px;
    }
    .page-top-title .treat01{
        top: 0;
        left: -30px;
    }
    .page-top-title .treat02{
        top: -15px;
        left: -65px;
    }
}
@media screen and (max-width:1199px){
    .page-top-title{ font-size: 80px;}
    .page-top-title .treat01,
    .page-top-title .treat02{
        width: 23px;
        height: 23px;
    }
    .page-top-title .treat02{
        left: -60px;
    }
}
@media screen and (max-width:991px){
    .page-top-title{ font-size: 70px;}
    .page-top-title .treat01,
    .page-top-title .treat02{
        width: 21px;
        height: 21px;
    }
    .page-top-title .treat02{
        left: -57px;
    }
}
@media screen and (max-width:767px){
    .page-top-title{ font-size: 60px;}
    .page-top-title .treat01,
    .page-top-title .treat02{
        width: 19px;
        height: 19px;
    }
    .page-top-title .treat02{
        top: -10px;
        left: -55px;
    }
}
@media screen and (max-width:575px){
    .page-top-title{ font-size: 50px;}
    .page-top-title .treat01,
    .page-top-title .treat02{
        width: 17px;
        height: 17px;
    }
    .page-top-title .treat01{
        left: -23px;
    }
    .page-top-title .treat02{
        left: -45px;
    }
}

/*  page-top-detail
------------------------------------------------------------------*/
.page-top-detail{
    opacity: 0;
    text-align: center;
    animation: page-top-detail-view 0.4s forwards;
    animation-delay: 1.3s;
}
@keyframes page-top-detail-view {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/*/////////////////////////////////////////////////////////////////
  index.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  index.html home-mainvis
------------------------------------------------------------------*/

/*  home-mainvis-wrapper
------------------------------------------------------------------*/
.home-mainvis-wrapper{
    position: relative;
    margin-top: 100px;
    margin-bottom: 100px;
}
@media screen and (max-width:991px){
    .home-mainvis-wrapper{
        margin-top: 80px;
        margin-bottom: 60px;
    }
}
@media screen and (max-width:767px){
    .home-mainvis-wrapper{
        margin-bottom: 30px;
    }
}

/*  home-mainvis-slider
------------------------------------------------------------------*/
@media screen and (max-width:1399px){
    #home-mainvis-slider .swiper-slide img{
        width: 1500px;
    }
}
@media screen and (max-width:991px){
    #home-mainvis-slider .swiper-slide{
        text-align: center;
    }
    #home-mainvis-slider .swiper-slide img{
        width: 100%;
        max-width: 700px;
    }
}

/*  home-mainvis-text-area
------------------------------------------------------------------*/
.home-mainvis-text-area{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
    height: 800px;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-mainvis-text-area{
        height: 600px;
    } 
}
@media screen and (max-width:991px){
    .home-mainvis-text-area{
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 20px;
    } 
}


/*  home-mainvis-title
------------------------------------------------------------------*/
.home-mainvis-title{
    position: relative;
    text-align: center;
    
}
.home-mainvis-title .foot1{
    position: absolute;
    top: -20px;
    left: -50px;
    transform: rotate(-20deg);
}
.home-mainvis-title .foot2{
    position: absolute;
    top: -10px;
    left: -25px;
    transform: rotate(-15deg);
}
.home-mainvis-title .title{
    display: block;
    margin-bottom: 20px;
    font-family: "Domine";
    font-size: 50px;
    font-style: italic;
    letter-spacing: 0.05em;
    line-height: 0.8;
}
.home-mainvis-title .text{
    display: block;
}
@media screen and (max-width:575px){
    .home-mainvis-title .title{
        font-size: 10vw;
        margin-left: auto;
        margin-right: auto;
    }
}

/*  home-mainvis-scroll
------------------------------------------------------------------*/
.home-mainvis-scroll{
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
}
.home-mainvis-scroll .circle{
    max-width: 100%;
    height: auto;
    animation: scroll-rounded 40s linear infinite;
    transform: rotate(0);
}
@keyframes scroll-rounded {
    from{
        transform: rotate(0);
    }
    to{
        transform: rotate(360deg);
    }
}
.home-mainvis-scroll .arrow{
    position: absolute;
    top: 46px;
    left: 94px;
    display: block;
    width: 1px;
    height: 100px;
    background: #fff;
    transition: .2s ease-out;
}
.home-mainvis-scroll .arrow::after{
    position: absolute;
    bottom: 0;
    left: -5px;
    transform: rotate(-30deg);
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background: #fff;
}
.home-mainvis-scroll:hover .arrow{
    top: 56px;
}
@media screen and (max-width:1399px){
    .home-mainvis-scroll{
        width: 150px;
    }
    .home-mainvis-scroll .arrow{
        top: 36px;
        left: 74px;
        display: block;
        width: 1px;
        height: 80px;
    }
    .home-mainvis-scroll .arrow::after{
        left: -3px;
        height: 10px;
    }
    .home-mainvis-scroll:hover .arrow{
        top: 50px;
    }
}
@media screen and (max-width:991px){
    .home-mainvis-scroll{
        position: relative;
        bottom: initial;
        left: initial;
        transform: initial;
        margin-top: 30px;
    }
}
@media screen and (max-width:575px){
    .home-mainvis-scroll{
        width: 70px;
        margin-top: 10px;
    }
    .home-mainvis-scroll .arrow{
        top: 15px;
        left: 34px;
        display: block;
        width: 1px;
        height: 40px;
    }
    .home-mainvis-scroll .arrow::after{
        left: -2px;
        height: 5px;
    }
}

/*------------------------------------------------------------------
  index.html - home-about
------------------------------------------------------------------*/



/*  home-about-section
------------------------------------------------------------------*/
.home-about-section{
    position: relative;
    padding: 250px 0;
    background: url(../images/home-about-bg.jpg) no-repeat center / cover;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .home-about-section{
        padding: 60px 0;
    }
}
@media screen and (max-width:991px){
    .home-about-section{
        background: url(../images/home-about-bg-sp.jpg) no-repeat center / cover;
    }
}

/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    max-width: 605px;
    margin-bottom: 40px;
    line-height: 2.5;
}
@media screen and (max-width:1199px){
    .home-about-text{
        max-width: 500px;
    }
}
@media screen and (max-width:991px){
    .home-about-text{
        max-width: initial;
        line-height: 2;
    }
}


/*------------------------------------------------------------------
  index.html - home-business
------------------------------------------------------------------*/

/*  home-business-section
------------------------------------------------------------------*/
.home-business-section{
    padding-bottom: 150px;
}
@media screen and (max-width:767px){
    .home-business-section{
        padding-bottom: 100px;
    }
}

/*  home-business-contents
------------------------------------------------------------------*/
.home-business-contents{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100vw - (100vw - 1290px) / 2);
}
.home-business-contents:nth-of-type(even){
    flex-direction: row-reverse;
    margin-left: auto;
}
.home-business-contents + .home-business-contents{
    margin-top: 100px;
}
@media screen and (max-width:1399px){
    .home-business-contents{
        width: 100%;
    }
}
@media screen and (max-width:767px){
    .home-business-contents{
        display: block;
        max-width: 540px;
        padding: 0 15px;
        margin-left: auto;
        margin-right: auto;
    }
    .home-business-contents + .home-business-contents{
        margin-top: 80px;
    }
}

/*  home-business-photo-area
------------------------------------------------------------------*/
.home-business-photo-area{
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
}
@media screen and (max-width:1399px){
    .home-business-photo-area img{
        width: 700px;
        height: auto;
    }
}
@media screen and (max-width:1199px){
    .home-business-photo-area img{
        width: 600px;
    }
}
@media screen and (max-width:991px){
    .home-business-photo-area img{
        width: 500px;
    }
}
@media screen and (max-width:767px){
    .home-business-photo-area{
        max-height: 300px;
        margin-bottom: 30px;
    }
    .home-business-photo-area img{
        width: 100%;
    }
}

/*  home-business-text-area
------------------------------------------------------------------*/
.home-business-text-area{
    flex-shrink: 0;
    width: 660px;
    padding: 0 100px;
}
@media screen and (max-width:1199px){
    .home-business-text-area{
        width: 580px;
        padding: 0 70px;
    }
}
@media screen and (max-width:991px){
    .home-business-text-area{
        width: 400px;
        padding: 0 30px;
    }
}
@media screen and (max-width:767px){
    .home-business-text-area{
        width: 100%;
        padding: 0;
    }
}


/*------------------------------------------------------------------
  index.html - home-company
------------------------------------------------------------------*/

/*  home-company-top
------------------------------------------------------------------*/
.home-company-top{
    height: 700px;
    overflow: hidden;
    text-align: center;
}
.home-company-top img{
    width: 100%;
}
@media screen and (max-width:1399px){
    .home-company-top{
        height: 600px;
    }
}
@media screen and (max-width:1199px){
    .home-company-top{
        height: 500px;
    }
}
@media screen and (max-width:991px){
    .home-company-top{
        height: 400px;
    }
}
@media screen and (max-width:767px){
    .home-company-top{
        height: 300px;
    }
}
@media screen and (max-width:575px){
    .home-company-top{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 200px;
    }
}


/*  home-company-wrapper
------------------------------------------------------------------*/
.home-company-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 0;
}
@media screen and (max-width:1399px){
    .home-company-wrapper{
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    .home-company-wrapper{
        display: block;
        padding: 60px 0;
    }
}

/*  home-company-text-area
------------------------------------------------------------------*/
.home-company-text-area{
    max-width: 700px;
    margin-right: 60px;
}
@media screen and (max-width:991px){
    .home-company-text-area{
        margin-right: initial;
        margin-bottom: 30px;
    }
}

/*  home-company-photo-area
------------------------------------------------------------------*/
.home-company-photo-area{
    text-align: center;
}


/*/////////////////////////////////////////////////////////////////
  business.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  business.html business-link
------------------------------------------------------------------*/

/*  business-link-section
------------------------------------------------------------------*/
.business-link-section{
    padding: 120px 0;
}
@media screen and (max-width:1199px){
    .business-link-section{
        padding: 70px 0;
    }
}
@media screen and (max-width:991px){
    .business-link-section{
        padding: 0;
    }
}

/*  business-link
------------------------------------------------------------------*/
.business-link{
    position: relative;
    display: block;
}
.business-link::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
    transition: .2s ease-in-out;
}
.business-link::after{
    position: absolute;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px #000;
    z-index: 2;
    transition: .2s ease-in-out;
}
.business-link figure{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}
.business-link figure img{
    transition: .2s ease-in-out;
}
/* ホバー時動作 */
.business-link:hover figure img{
    transform: scale(1.1);
}
.business-link:hover::before{
    background: rgb(204, 176, 99, 0.5);
}
.business-link:hover::after{
    bottom: 5px;
}
@media screen and (max-width:1199px){
    .business-link::after{
        font-size: 18px;
    }
}
@media screen and (max-width:991px){
    .business-link{
        height: 100px;
        margin-bottom: 30px;
    }
    .business-link::after{
        right: 10px;
        bottom: 50%;
        transform: translateY(50%);
        font-size: 16px;
    }
    .business-link:hover::after{
        bottom: 50%;
    }
}
@media screen and (max-width:575px){
    .business-link{
        height: 80px;
        margin-bottom: 15px;
    }
}

/*  business-link-text
------------------------------------------------------------------*/
.business-link-text{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    white-space: nowrap;
    text-shadow: 0 0 10px #000,
                 0 0 10px #000;
    z-index: 2;
    text-align: center;
}
.business-link-text .title{
    font-size: 36px;
}
@media screen and (max-width:1199px){
    .business-link-text .title{
        font-size: 30px;
    }
}
@media screen and (max-width:991px){
    .business-link-text{
        padding-left: 30px;
        text-align: left;
    }
    .business-link-text .title{
        font-size: 28px;
    }
}
@media screen and (max-width:575px){
    .business-link-text{
        padding-left: 15px;
    }
    .business-link-text .title{
        font-size: 24px;
    }
}

/*------------------------------------------------------------------
  business.html business-cafe
------------------------------------------------------------------*/

/*  business-cafe-subimg
------------------------------------------------------------------*/
.business-cafe-subimg{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 500px;
}
.business-cafe-subimg img{
    width: auto;
    height: 100%;
}
@media screen and (max-width:991px){
    .business-cafe-subimg{
        max-height: 400px;
    }
    .business-cafe-subimg img{
        width: 100%;
        height: auto;
    }
}

/*/////////////////////////////////////////////////////////////////
  login.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  login.html login
------------------------------------------------------------------*/

/*  login-section
------------------------------------------------------------------*/
.login-section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-height: 650px;
    padding: 0 15px;
}

/*  login-box
------------------------------------------------------------------*/
.login-box{
    width: 100%;
    max-width: 500px;
    padding: 50px;
    border: 1px solid #aaa;
}
@media screen and (max-width:575px){
    .login-box{
        padding: 50px 30px;
    }
}

/*  login-password-wrapper
------------------------------------------------------------------*/
.login-password-wrapper{
    position: relative;
}


/*  login-field-icon
------------------------------------------------------------------*/
.login-field-icon{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #1c1c1c;
    z-index: 1;
}


/* 
　NotoSansJPは「株式会社MICORI」という文字列専用です。
　読み込み速度の遅延防止のため、上記文字列のみサブセット化しています。
　そのため、それ以外のテキストにはフォントが適用されません。
*/
.ff-micori{
    font-family:'NotoSansJP','メイリオ', 'Meiryo', sans-serif;
}