@charset "UTF-8";
/*--------------------------------
header
--------------------------------*/
.header{
    top: 0;
    position: fixed;
    z-index: 100;
    width: 100%;
    background: #fff;
}
.header-inner{
    padding: 15px 0;
    display: flex;
    align-items: center;
    width: min(calc(100% - 32px),1480px);
    margin: 0 auto;
}
#logo{
    width: 216px;
    position: relative;
    z-index: 100;
}

#logo a{
    width: 216px;
    position: relative;
    z-index: 100;
}
#logo a img{
    width: 100%;
	height: auto;
	vertical-align: middle;
}
.nav{
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
    gap: 100px;
}
.nav-list{
    display: flex;
    gap: 40px;
}
.nav-link{
    color: #3A3A3A;
    font-size: 1.8rem;
    transition: .2s ease;
    font-weight: 600;
}
.nav-link:hover{
    opacity: .7;
}
.tel{
    font-size: 2.4rem;
}
.tel-icon{
    width: 24px;
    height: 24px;
}
.tel-link{
    color: #3A3A3A;
}
.closing-date{
    margin-top: 8px;
    font-size: 1.6rem;
}
.hamburger-menu{
    display: none;
}
@media screen and (max-width: 1000px){
    .nav{
        position: absolute;
        top: 0;
        right: -100%;
        margin: 0;
        background: #fff;
        width: 100%;
        padding: 100px 16px 50px;
        transition: .5s ease .2s;
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }
    .is-active .nav{
        right: 0;
    }
    .nav-list{
        flex-direction: column;
    }
    .hamburger-menu{
        position: relative;
        width: 28px;
        height: 24px;
        display: block;
        margin-left: auto;
    }
    .hamburger-menu::before,
    .hamburger-menu::after,
    .hamburger-menu span{
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: #000;
        border-radius: 2px;
        transition: .2s ease .2s;
    }
    .hamburger-menu::before{
        top: 0;
        left: 0;
    }
    .hamburger-menu::after{
        top: calc(100% - 2px);
        left: 0;
    }
    .hamburger-menu span{
        display: block;
        top: 50%;
        left: 0;
        transform: translate(0,-50%);
    }
    .is-active .hamburger-menu span{
        opacity: 0;
    }
    .is-active .hamburger-menu::before{
        top: 50%;
        transform: translate(0,-50%) rotate(45deg);
        transition: .2s ease .2s;
    }
    .is-active .hamburger-menu::after{
        top: 50%;
        transform: translate(0,-50%) rotate(-45deg);
        transition: .2s ease .2s;
    }
    .logo{
        width: 118px;
    }
}
/*--------------------------------
footer
--------------------------------*/
.footer{
    display: grid;
    grid-template-columns: 60% 40%;
    background: #EFEFEF;  
}
.footer-map-item{
    width: 100%;
    height: 100%;
}
.footer-note{
    padding: 135px 0 20px;
    width: min(calc(100% - 32px),500px);
    margin: 0 auto;
}
.footer-logo{
    width: 225px;
}
.company-name{
    margin-top: 10px;
    font-size: 1.8rem;
}
.address{
    margin-top: 30px;
    font-size: 1.6rem;
    font-style: normal;
    line-height: 1.5;
}
.footer-nav-list{
    display: flex;
    gap: 40px;
    margin-top: 137px;
    justify-content: flex-end;
    font-size: 1.4rem;
}
.footer-nav-item{
    position: relative;
}
.footer-nav-item:not(:last-child)::before{
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background: #3A3A3A;
}
.footer-nav-link{
    text-align: right;
    font-size: 1.4rem;
}
.copyright{
    margin-top: 80px;
    text-align: right;
    font-size: 1.4rem;
}
@media screen and (max-width: 767px){
    .footer{
        grid-template-columns: 1fr;
    }
    .footer-note{
        padding: 84px 0 20px;
    }
    .footer-logo img{
        width: 144px;
        margin-bottom: 31px;
    }
    .footer-nav-list{
        margin-top: 72px;
        font-size: 1.2rem;
        gap: 20px;
        justify-content: center;
    }
    .footer-nav-item:not(:last-child)::before{
        right: -10px;
    }
    .copyright{
        text-align: center;
    }
}
/*--------------------------------
home
--------------------------------*/
.mv{
    margin-top: 90px;
    margin-bottom: 124px;
    position: relative;
}
.mv .primary-heading{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    width: calc(100% - 72px);
}
.grid-list{
    display: grid;
    gap: 74px;
}
.grid-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
}
.grid-reverse .img-wrapper{
    order: 1;
}
.grid-wrapper .text-wrapper{
    width: calc(100% - 24px);
    margin-left: auto;
}
.grid-reverse .text-wrapper{
    margin: 0 auto 0 0;
}
.more-btn{
    margin-top: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%,300px);
    height: 63px;
    font-size: 1.8rem;
    border: 1px solid #131313;
    border-radius: 39px;
    color: #131313;
    letter-spacing: .1em;
    transition: .2s ease;
}
.more-btn:hover{
    background: #131313;
    color: #fff;
}
.bg-gray{
    background: #EFEFEF;
}
.blog-heading{
    font-size: 2.8rem;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: 24px;
    padding-top: 124px;
}
.blog-list{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 32px;
}
.blog-title{
    margin-top: 48px;
    font-size: 2.1rem;
    line-height: 1.5;
}
.blog-more{
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    font-size: 1.8rem;
    transition: .2s ease;
}
.blog-more img{
    width: 24px;
}
.blog-more:hover{
    opacity: .7;
}
section.news{
    padding-top: 124px;
}
.news .secondary-heading{
    text-align: center;
}
.news-item{
    border-top: 1px solid #131313;
    padding: 3em 0;
}
ul.news-list{
    max-width: 1000px;
    margin:auto;
}
.news-link{
    display: grid;
    gap: 20px;
    padding: 44px 0;
}
.news-item:last-child{
    border-bottom: 1px solid #131313;
}
.news-list + .more-btn{
    margin-inline: auto;
}
.date{
    font-size: 1.6rem;
    padding-bottom:2rem;
}
.tag{
    display: inline-block;
    border: 1px solid #131313;
    margin-left: 10px;
    padding: 2px 4px;
}
.reception .secondary-heading{
    text-align: center;
    padding-top: 124px;
}
.reception-scroll+.note{
    /* text-indent: -1em; */
    text-align: left;
    font: normal normal medium 16px/32px Noto Sans CJK JP;
    letter-spacing: 1.6px;
    color: #131313;
    opacity: 1;
}
.reception-wrapper{
    display: block;
    padding: 70px 56px;
    background: #fff;
    width: 100%;
    border-radius: 18px;
}
.reception-heading{
    font-size: 2.1rem;
    text-align: left;
    width: 20%;
}
.reception-heading-border{
    border-bottom: 2px solid #131313;
}
.reception-note-border{
    border-bottom: 1px solid #E4E4E4;
}
.reception-inner{
    display: block;
}
.reception tr{
    display: flex;
    align-items: center;
}
.reception-sub-item .reception-heading{
    width: 7%;
    text-align: center;
}
.reception-date{
    width: 13%;
    font-size: 1.8rem;
    line-height: 1.3;
    border-right: 1px solid #E4E4E4;
    border-left: 1px solid #E4E4E4;
    padding: 27px 0;
    display: grid;
    align-items: center;
    justify-content: center;
}
.reception-note{
    font-size: 1.8rem;
    width: calc(80%/6);
    text-align: center;
    border-right: 1px solid #E4E4E4;
}
.reception-item td{
    padding-bottom: 24px;
}
.reception-item th{
    padding-bottom: 21px;
    border-right: 1px solid #E4E4E4;
}
.reception-sub-item .reception-note{
    padding: 30px 0;
    font-size: 3rem;
}
.reception p.note{
    position: relative;
    padding-left: 1.5em; /* ※マークの幅に合わせて調整 */
    margin: 1em 0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .3em;
    text-indent: 0; /* text-indentを上書き */
}
.reception p.note::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
  }
.bottom-item .inner{
    padding-top:124px;
}
.topcenter-img{
    width: 100%;
    height: auto;
    z-index : -1;
}
@media screen and (max-width: 820px){
    .box-wrapper {
        margin: -30% auto 0 !important;
        width: 80%;
    }
    .box-wrapper > div {
        min-height: 250px !important;
    }
}

@media only screen and (max-width: 431px) {
    .box-wrapper {
        margin: -30% auto 0  !important;
        width: 80% !important;
    }
    .box-wrapper .secondary-heading{
        margin-bottom: 10px;
    }
    .box-wrapper > div {
        min-height: 180px !important;
    }
}
.note{
    word-break:break-all;
}

.box-wrapper{
    margin: -300px auto 0;
    text-align: center;
    max-width: 90%;
    width: 60%;
}
.box-wrapper p{
    text-align: left;
}
.box-wrapper > div{
    min-height: 380px;
    display: grid;
    align-items: end; /* 追加 */
}
.box-wrapper > div a.more-btn{
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}

/* .bottom-item .secondary-heading{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.bottom-item .more-btn{
    margin-inline: auto;
} */
/* motoM営業日カレンダー*/
.open_hours-center{
    text-align: center;
    margin: 0 auto;
    padding: 0 0 124px 0;
    }
.open_hours-center h2{
font-size: 2.8rem;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: 24px;
    padding-top: 124px;
}

.open_hours-center .box{
    margin: auto;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .3em;
    text-indent: 1em;
    max-width: 70%;
    
}
.open_hours-center #oh_calendar{
    display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.open_hours-center #oh_calendar .oh_month{
    text-align: center;
    width:50%;
    padding: 20px;
}
.open_hours-center #oh_calendar .oh_month table{
    margin: auto;
    width: 100%;
    height: 100%;   
    text-align: center;   
    font-size: 1.3rem;   
    border-collapse: collapse;
}

.open_hours-center #oh_calendar .oh_month table th, .open_hours-center #oh_calendar .oh_month table td {
    text-align: center;
    padding: 10px;
    background-color: #fff;
  }
  
  .open_hours-center #oh_calendar .oh_month table td {
    font-weight: bold;
  }
  

.open_hours-center #oh_calendar table.oh_desc{
    margin: auto;
    width: 50%;
    text-align: center;

}

/*お店情報*/

.company_info-center{
    text-align: center;
    margin: 0 auto;
    padding: 0 0 124px 0;
}
.company_info-center h2{
    font-size: 2.8rem;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: 24px;
    padding-top: 124px;
}
.company_info-center .box{
    margin: auto;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .3em;
    text-indent: 1em;
    max-width: 70%;
}
.company_info-center .box table{
   
}
.company_info-center .box table th{
    text-align: right;
    white-space: nowrap;
    padding: 10px;
}
.company_info-center .box table td{
    text-align: left;
}
.company_info-center .box table td img{
    width: 100% !important;
    height: auto !important;
}

/* ブログ　記事　blog-center */
.blog-center{
    text-align: center;
    margin: 0 auto;
    padding: 0 0 124px 0;
}

.blog-center .box-out{
    margin: auto;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .3em;
    text-indent: 1em;
    max-width: 70%;
}
.blog-center .box-out .box{
    margin-bottom:50px;

}

.comment-post-box input, .comment-post-box textarea{
    border: #7c7c7c 1px solid;
    width: 100%;
}
.comment-post-box .input{
    text-indent: 0;
}
.comment-post-box .submit button{
    font-size: 12px;
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    padding: 10px 24px 10px;
    border: #7c7c7c 1px solid;
    margin-top:30px;
}


/* moto見出し*/
.article-center{
text-align: center;
margin: 0 auto;
padding: 0 0 124px 0;
}
.article-center h2{
font-size: 2.8rem;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: 24px;
    padding-top: 124px;
}

.article-center .box{
    margin: 1em 0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .3em;
    text-indent: 1em;
}
.article-center .box h3{
    margin-top: 48px;
    font-size: 2.1rem;
    line-height: 1.5;
}

/* moto新着情報*/
.news-center{
    text-align: center;
    margin: 0 auto;
    padding: 0 0 124px 0;
}

.news-center h2{
    font-size: 2.8rem;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: 24px;
    padding-top: 124px;
}
.news-center .box{
    margin: auto;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .3em;
    text-indent: 1em;
    max-width: 70%;
}

.news-center .box dl {
  /* display: flex;
  flex-wrap: wrap;
  width: 100%; */
  border-bottom: 1px solid #131313;
}

.news-center .box dt {
    border-top: 1px solid #131313;
    padding :3em 0 1em 0;
}
.news-center .box dt::after {
    border: 1px solid #131313;
    content: " リリース";
    margin-left: 10px;
}

.news-center .box dd{
    padding : 0em 0 3em 0;
}
.news-center .box dt, .news-center .box  dd{
    text-align: left;
}
/* よくある質問*/

.faq-center{
    text-align: center;
    margin: 0 auto;
    padding: 124px 0 124px 0;
}
.faq-center h2{
    font-size: 2.8rem;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: 24px;
    padding-top: 124px;
}
.faq-center .box{
    margin: auto;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .3em;
    text-indent: 1em;
    max-width: 70%;
}

.faq-center .box dl {


  }
  
  .faq-center .box dt {
	background: #444; /* 「Q」タイトルの背景色 */
	color: #fff; /* 「Q」タイトルの文字色 */
	padding: 8px;
	border-radius: 2px;
  }
  .faq-center .box dt::before {
	content: "Q.";
	font-weight: bold;
	margin-right: 8px;
  }
  
  .faq-center .box dd{
	margin: 24px 16px 40px 32px;
	line-height: 140%;
	text-indent: -24px;
    padding: 3px 3px 3px 18px;
  }
  .faq-center .box dd::before {
	content: "A.";
	font-weight: bold;
	margin-right: 8px;
}
  .faq-center .box dt, .faq-center .box  dd{
      text-align: left;
  }




/* 問い合わせフォーム*/
.contact-center{
    text-align: center;
    margin: 0 auto;
    padding: 124px 0 124px 0;
}
.contact-center h2{
    font-size: 2.8rem;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: 24px;
    padding-top: 124px;
}

.contact-center .box{
    margin: auto;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .3em;
    text-indent: 1em;
    max-width: 70%;
}
.contact-center .box form{
    margin-top:30px;
}
.contact-center .box table {
    margin: auto;
     width: 80%;
}
.contact-center .box table th{
    text-align: left;
    white-space: nowrap;
    padding: 10px;
    vertical-align: top;
}
.contact-center .box table td{
    text-align: left;
}
.contact-center .box table td .text-input input, .contact-center .box table td .input{
    border: #7c7c7c 1px solid;
    width: 100%;
}

.contact-center .box .submit-button input{
    font-size: 12px;
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    padding: 10px 24px 10px;
    border: #7c7c7c 1px solid;
}

.contact-center .box span.must{
    color:rgb(255, 0, 0)
}

/* フッター部分のテキストとボタンの重なりを解消 */
.footer .secondary-heading,
.footer .more-btn {
    margin-top: 1em; /* テキストとボタンの間にスペースを追加 */
}
@media screen and (max-width: 1000px){
    .mv{
        margin-top: 64px;
    }
}
@media screen and (max-width: 767px){
    .more-btn{
        margin-top: 40px;
    }
    .grid-list{
        gap: 65px;
    }
    .grid-wrapper{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .grid-wrapper .text-wrapper{
        display: contents;
    }
    .grid-wrapper .secondary-heading{
        order: -2;
        margin-bottom: 0;
    }
    .grid-wrapper .wide-img{
        width: 100vw;
        margin: 0 calc(50% - 50vw);
    }
    .grid-wrapper .more-btn{
        margin: 0 auto;
    }
    .grid-reverse .img-wrapper{
        order: -1;
    }
    .blog-heading{
        font-size: 2.1rem;
    }
    .blog-list{
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .blog-title{
        margin-top: 32px;
        font-size: 1.8rem;
    }
    .news .secondary-heading{
        text-align: left;
    }
    .news-link{
        padding: 27px 0;
    }
    .reception .secondary-heading{
        text-align: left;
    }
    .reception-scroll{
        overflow-x: scroll;
        padding-bottom: 30px;
        margin-bottom: 40px;
    }
    .reception-wrapper{
        min-width: 1000px;
    }
    .reception-scroll::-webkit-scrollbar{
        width: 100%;
        height: 18px;
    }
    .reception-scroll::-webkit-scrollbar-track{
        background-color: #B1B1B1;
        border-radius: 9px;
    }
    .reception-scroll::-webkit-scrollbar-thumb{
        background-color: #fff;
        border-radius: 9px;
    }
    .bottom-item .secondary-heading{
        position: static;
        transform: translate(0,0);
    }
    .open_hours-center #oh_calendar{
        flex-direction: column;
    }
    .open_hours-center .box {
        max-width: 99%;
    }
    .open_hours-center #oh_calendar .oh_month{
        width: 100%;
    }
    .contact-center .box {
        max-width: 100%;
    }
    .contact-center .box p{
        padding: 10px;
    }
    .contact-center .box table th,
    .contact-center .box table td{
      display: block;
    }

    .faq-center .box {
        max-width: 100%;
        padding: 15px;
    }

}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 431px) {
    .pc { display: none !important; }
    .sp { display: block !important; width: 100%; }
    
	.fit-img {
		max-width: 100%;
	}
}

