@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    line-height: 1.7;
    color: #231815;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
.container {
    display: grid;
    width: 100%;
    grid-template-columns: 180px 1fr;
    grid-template-rows: 35px 1fr 100px;
    min-height: 100vh;
    margin: 0 auto;
}

/* 大きな背景画像 */
.big-bg {
    background-size: cover;
    background-position: left top;
    background-position-x: 180px;
    background-repeat: no-repeat;
}

/* テキスト */
h2 {
    font-size: 22px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}
/* ページタイトル */
.p-title {
    text-align: center;
}



/* HEADER
------------------------------- */
.header {
    grid-column: 1 / 5;
    grid-row: 1;
    background-color: #001C3D;
}
.main-nav {
    display: flex;
    justify-content: flex-end;
    font-size: 0.8rem;
    margin-top: 6px;
    margin-right: 30px;
    list-style: none;
}
.main-nav li {
    color: #ffffff;
}
.main-nav a {
    margin-left: 25px;
    margin-right: 25px;
    color: #ffffff;
}
.main-nav a:hover {
    color: #decda6;
    text-decoration: underline;
}

/* HOME
------------------------------- */
#home {
    background-image: url(../images/main-bg.png);
    background-color: #ffffff;
    min-height: 100vh;
}

/* NAVI
------------------------------- */
.nav {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo {
    width: 140px;
    margin: 100px 0 70px 0;
}
.logo-muranaka {
    margin-bottom: 86px;
}
.navi-menu {
    margin-bottom: 50px;
}
.navi-menu-end {
    margin-bottom: 115px;
}

/* MAIN
------------------------------- */
.main {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 100px;
    padding-left: 100px;
}
.main-img {
    margin-top: 10px;
    width: 100%;
}
.slider{
    width: 100%;
}
.items{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 54%;
}
.item{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .6s ease-in-out;
}
.current{
    opacity: 1;
}
.main-contents {
    width: 750px;
    margin-top: 50px;
}
.cont-left {
    width: 335px; 
    height: 200px;
    float: left;
}
.cont-right {
    width: 375px; 
    height: 205px; 
    float: right;
}
.img-center {
    text-align: center;
    margin: 30px 0px 60px;
}
.main-cont-center {
    display: flex;
    justify-content: center;
}

/* FOOTER
------------------------------- */
.footer {
    grid-column: 1 / 5;
    grid-row: 3;
    text-align: center;
    border-bottom:10px solid #001C3D;
}
.footer p {
    padding-top: 10px;
    font-size: 12px;
}

/* ACCESS
------------------------------- */
.shop-cont-left {
    width: 295px; 
    height: 321px;
    float: left;
}
.shop-cont-right {
    width: 420px; 
    height: 320px; 
    float: right;
}
.map {
    margin-top: 0px;
}
.address {
    clear: both;
    font-size: 14px;
    line-height: 26px;
    padding-top: 90px;
}
