@charset "utf-8";
*{
	padding: 0;
	margin: 0;
	border: 0;
}
html{
    font-size: 10px;
}
body {
    font-family: Arial, sans-serif;
    margin: 0 auto;
    overflow-x: hidden;
    width: 100%;
}
header {
    background-color: #ffffff;
    color: #433030;
    padding: 10px;
    white-space: nowrap;
    margin-left: auto;
}

h1{
    font-size: 3rem;
}
h2{
    font-size: 2.4rem;
}
h3 {
    font-size: 1.8rem;
    margin: 10px 0 5px;
    white-space: nowrap;
}
p{
    font-size: 1.6rem;
}
small{
    font-size: 1.0rem;
    white-space: nowrap;
}
a{
    text-decoration: none;
    color: #433030;
}


.layout{
    max-width: 1000px;
    margin: 50px auto 0;
}
.container {
    margin: auto;
    display: flex;
    overflow: hidden;
    justify-content: space-between;
}

/*--ナビゲーション--*/
.navigation {
    border-right: solid 1px lightgray;
    width: 25%;
    max-width: 250px;
    padding: 20px;
    box-sizing: border-box;
    display: block;
}
.navigation img{
    display: block;
    margin: auto;
}
.navigation dt{
    font-size: 1.8rem;
    font-weight: bold;
}
.navigation dd{
    font-size: 1.6rem;
    margin-top: 10px;
}
.navigation h3 {
    font-size: 2.0rem;
    margin: 50px 0 10px;
    white-space: nowrap
}
.navigation ul {
    list-style: none;
    padding: 0;
}
.navigation ul li {
    margin-bottom: 10px;
}
.navigation ul li a {
    color: #433030;
    display: inline-block;
    white-space: nowrap;
    font-size: 1.8rem;
}
.navigation ul li a:hover {
    border-bottom: solid 1px gray;
}
.hamburger {
    display: none;
    width: 30px;
    height: 20px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.hamburger div {
    background-color: #988743;
    height: 4px;
    margin: 4px 0;
    transition: 0.3s;
}
.hamburger.open div:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); top: 50%; transform-origin: center; }
.hamburger.open div:nth-child(2) {
    opacity: 0;
}
.hamburger.open div:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); top: 50%; transform-origin: center; }

/*--メインコンテンツ--*/
.content-area {
    width: 70%;
    box-sizing: border-box;
}
.content-area a{
    transition: 0.15s;
}
.content-area a:hover{
    opacity: 0.5;
}
.banner {
    text-align: center;
    margin: 20px 0;
    font-size: 1.5em;
}
.main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0 60px;
}
.product {
    background: white;
    padding: 5px;
    width: calc(50% - 20px);
    box-sizing: border-box;
    text-align: center;
}
.product h3{
    font-size: 1.4rem;
    text-align: left;
    font-weight: normal;
    margin: 0;
}
.product p{
    font-size: 1.6rem;
    color: #921100;
    font-weight: bold;
    text-align: left;
}
.product img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.banner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.responsive-iframe {
    position: relative;
    width: 100%; /* 親要素の幅を100%に設定 */
    padding-top: 56.25%; /* 高さを16:9の比率に調整（高さ / 幅 * 100） */
}
  
.responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*--スライダ1 横スクロール--*/
.slider1 {
    margin: 50px 0 50px auto;
    position: relative;
    overflow: hidden;
}
.slider1-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide1 {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px 0;
}
.slide1 img {
    max-width: 100%;
    height: auto;
}

.slider1-dots {
    text-align: center;
    padding-top: 10px;
}
.dot1 {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}
.dot1.active {
    background-color: #717171;
}

/*--スライダ2 横スクロール--*/

.slider2 {
    margin: 50px 0 50px auto;
    position: relative;
    overflow: hidden;
}
.slider2-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide2 {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px 0;
}
.slide2 img {
    max-width: 100%;
    height: auto;
}

.slider2-dots {
    text-align: center;
    padding-top: 10px;
}
.dot2 {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}
.dot2.active {
    background-color: #717171;
}


/*--スライダ2 縦スクロール--*/
.slider-v {
    margin: 50px 0 50px auto;
}
.slider-v img{
    width: 100%;
    padding: 20px 0;
}

/*--フッター--*/
.footer {
    color: #433030;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

.footer {
    background-color: #988743;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 60px;
}

.footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.footer .footer-links li {
    margin: 10px;
}

.footer .footer-links a {
    color: #fff;
    font-size: 1.6rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer .footer-links a:hover {
    color: #a1a1a1;
}
.footer-slash{
    font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
    h1{
        font-size: 2.4rem;
    }
    h2{
        font-size: 2.0rem;
        padding: 0 20px;
    }
    h3 {
        font-size: 1.6rem;
        margin: 10px 0 5px;
        white-space: nowrap;
    }
    p{
        font-size: 1.4rem;
        margin: 0 10px;
    }

    .layout{
        min-width: 300px;
    }
    .top-title{
        text-align: center;
    }
    .content-area {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    .main-content {
        justify-content: center;
    }
    .navigation ul li a {
        display: block;
        color: #433030;
        background-color: #ececec;
        padding: 10px 0;
    }
    .navigation ul li a:hover {
        border-bottom: none;
    }
    .navigation dt{
        white-space: nowrap;
    }
    .navigation dd{
        white-space: nowrap;
    }
    .navigation {
        display: none;
        width: 100%;
        max-width: none;
        padding: 10px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        color: #433030;
        text-align: center;
        z-index: 2;
    }
    .container {
        flex-direction: column;
    }
    .navigation.show {
        display: block;
    }
    .hamburger {
        display: block;
    }
    .slider1{
        margin: 50px auto;
    }
    .slider1 p{
        padding: 0 20px;
    }

    .slider2{
        margin: 50px auto;
    }
    .slider2 p{
        padding: 0 20px;
    }

    .slider-v {
        margin: 50px auto;
    }
    .slider-v p{
        padding: 0 20px;
    }

    .footer {
        padding: 15px;
    }
    
    .footer .footer-links {
        flex-direction: column;
    }
    
    .footer .footer-links li {
        padding: 5px;
        margin: 5px 0;
        background-color: #7c6e37;
    }
    .footer-slash{
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .slider1-arrow {
        position: absolute;
        top: 50%;
        width: 30px;
        height: 30px;
        background-color: rgba(0, 0, 0, 0.5);
        color: #ffffff;
        border: none;
        cursor: pointer;
        z-index: 5;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slider1-arrow.left {
        left: 10px;
    }
    .slider1-arrow.right {
        right: 10px;
    }
    .slider2-arrow {
        position: absolute;
        top: 50%;
        width: 30px;
        height: 30px;
        background-color: rgba(0, 0, 0, 0.5);
        color: #ffffff;
        border: none;
        cursor: pointer;
        z-index: 5;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slider2-arrow.left {
        left: 10px;
    }
    .slider2-arrow.right {
        right: 10px;
    }
}