@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
}

/* ヘッダーここから */
header {
    width: 90%;
    display: flex;
    margin-top: 1%;
    margin-left: auto;
    margin-right: auto;
    align-items: baseline;
}

h1 {
    width: 20%;
    transition: 0.5s;
}

h1:hover {
    opacity: 0.7;
    transition: 0.5s;
}

h1 img {
    width: 100%;
}

nav {
    width: 70%;
    margin-left: 5%;
}

nav ul {
    display: flex;
}

nav ul li {
    width: fit-content;
    margin-left: 6%;
}

nav ul li a {
    display: block;
    line-height: 2.4;
    color: #202020;
    font-size: 1.2vw;
    text-decoration: none;
    transition: 0.5s;
}

nav ul li a:hover {
    color: #909090;
    transition: 0.5s;
}

.sns-box {
    width: 5%;
}

.sns-box a {
    display: block;
    line-height: 3;
    text-align: center;
    color: #202020;
    transition: 0.5s;
}

.sns-box a:hover {
    color: #909090;
    transition: 0.5s;
}

.sns-box a i {
    font-size: 2.5vw;
}

/* ヘッダーここまで */

/* メインビジュアルここから */
.main-vizual-box {
    display: none;
}

.smt-main-vizual-box {
    height: 90vh;
    position   : relative;
    overflow   : hidden;
}

.smt-main-vizual-box img {
    display    : block;
    position   : absolute;
    width      : 100%;
    opacity    : 0;
    animation  : slideAnime 25s ease infinite;
}

 /* スライドのアニメーションここから */
.smt-main-vizual-box img:nth-of-type(1) { animation-delay: 0s }
.smt-main-vizual-box img:nth-of-type(2) { animation-delay: 5s }
.smt-main-vizual-box img:nth-of-type(3) { animation-delay: 10s }
.smt-main-vizual-box img:nth-of-type(4) { animation-delay: 15s }
.smt-main-vizual-box img:nth-of-type(5) { animation-delay: 20s }
 
@keyframes slideAnime{
   0% { opacity: 0 }
   10% { opacity: 1 }
  20% { opacity: 1 }
  30% { opacity: 0 }
 100% { opacity: 0 }
}
 /* スライドのアニメーションここまで */

.campaign {
    position: fixed;
    width: 7vw;
    top: 6vh;
    right: 0;
    z-index: 150;
}

.campaign img {
    width: 100%;
    vertical-align: bottom;
}

.campaign img:hover {
    opacity: 0.6;
    transition: 0.5s;
}

.return {
    position: fixed;
    width: 3vw;
    bottom: 5vw;
    right: 2vw;
}

.return img {
    width: 100%;
    vertical-align: bottom;
}

/* メインビジュアルここまで */

/* メインの共通部分 */

main section h2 {
    margin-top: 4%;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5vw;
}

main section h3 {
    margin-top: 0.9%;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5vw;
}

main section h4 {
    margin-top: 0.9%;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 3vw;
    white-space: pre-wrap;
}

main section p {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.6vw;
    white-space: pre-wrap;
}
/* メインの共通部分ここまで */

/* セクションRecommendここから */
main section .banner-container {
    width: 90%;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

main section .banner-container .banner-icon {
    width: 1.5%;
}

main section .banner-container .banner-icon img {
    width: 100%;
}

main section .banner-container .banner-icon img:hover {
    opacity: 0.6;
    transition: 0.5s;

}

main section .banner-container .banner-pc {
    width: 30%;
}

main section .banner-container .banner-pc:nth-of-type(2) {
    margin-left: 2.5%;
}
main section .banner-container .banner-pc:nth-of-type(3) {
    margin-left: 1%;
    margin-right: 1%;
}

main section .banner-container .banner-pc:nth-of-type(4) {
    margin-right: 2.5%;
}

main section .banner-container .banner-pc img {
    width: 100%;
}

main section .banner-container .banner-pc img:hover {
    opacity: 0.6;
    transition: 0.5s;
}

/* セクションRecommendここまで */

/* セクションProductここから */

main section .product-container {
    display: none;
}

main section .tablet-product-container {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin-top: 1.5%;
    margin-left: auto;
    margin-right: auto;
}

main section .tablet-product-container .tablet-product-box {
    position: relative;
    width: calc(100% / 2);
    height: auto;
    cursor: pointer;
    overflow: hidden;
}

main section .tablet-product-container .tablet-product-box img {
    width: 100%;
    filter: brightness(50%);
    height: auto;
    transition: transform .6s ease;/* ゆっくり変化させる */
    vertical-align: bottom;
}

main section .tablet-product-container .tablet-product-box:hover img {
    transform: scale(1.1);/* 拡大 */
    filter: brightness(90%);
}

main section .tablet-product-container .tablet-product-box p {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2.5vw;
}

main section .tablet-product-container .tablet-product-box:nth-of-type(2),.product-box:nth-of-type(4),.product-box:nth-of-type(6) {
    margin-left: 2%;
}

/* セクションProductここまで */

/* セクション ダカラのある暮らしここから */

main section:nth-of-type(3) {
    margin-top: 5%;
}

main section:nth-of-type(3) h4::before {
    content: "";
    display: inline-block;
    width: 2.5vw;
    height: 2.5vw;
    background-image: url('../images/instagram_logo.png');
    background-position: center;
    background-size: contain;
}

main section:nth-of-type(3) p {
    margin-top: 2%;
    text-align: center;
}

main section .dakara-container {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
}

main section .dakara-container .dakara-pc {
    width: 24%;
    height: 15vw;
    overflow: hidden;
}

main section .dakara-container .dakara-pc img {
    width: 100%;
}

main section .dakara-container .dakara-pc img:hover {
    opacity: 0.6;
    transition: 0.5s;
}

/* セクション ダカラのある暮らしここまで */

/* セクション Newsここから */
main section:nth-of-type(4) {
    padding-top: 0.1%;
    background-color: #E5F2F8;
}

main section .news-container {
    width: 90%;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    padding: 3%;
    background-color: white;
}

main section .news-container li {
    line-height: 3.5;
}

main section .news-container p {
    font-size: 1.8vw;
    color: #303030;
}

main section .news-container a {
    color: #303030;
}

main section .news-container a::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url('../images/icon_pdf.gif');
    background-position: center;
    background-size: contain;
}

main section .news-container span {
    margin-right: 1%;
    border: 0.5px solid #303030;
    padding: 0.6vw;
}

/* セクション Newsここまで */

/* Newsの後の斜めの背景ここから */
.news-bg {
    width: 100%;
    height: 15vw;
    background-image: url(../images/news_bg_after.png);
    background-repeat: no-repeat;
    background-size: cover;
}
/* Newsの後の斜めの背景ここまで */

/* セクションMOREここから */
main section:nth-of-type(5) {
    background-color: #E5F2F8;
    padding-bottom: 6%;
}

    /* 水の背景部分ここから */

    main section .water-box {
        background-image: url(../images/bg_water_new.jpg);
        width: 100%;
        height: 35vw;
        padding-top: 2%;
        overflow: hidden;
        margin-bottom: 6%;
    }

    main section .water-box .water-p {
        margin-top: 1%;
        margin-bottom: 5%;
        font-size: 1.5vw;
        text-align: center;
    }

    main section .water-box p {
        text-align: center;
    }

    main section .water-box .more-button {
        width: 20%;
        margin-top: 5%;
        margin-left: auto;
        margin-right: auto;
    }

    main section .water-box .more-button p {
        padding: 10px 30px;
        text-align: center;
        border: 0.5px solid #202020;
    }

    main section .water-box .more-button p:hover {
        color: #fff;
        background-color: #3DB4D0;
        border: none;
    }
    /* 水の背景部分ここまで */

main section .more-container {
    display: none;
}

main section .smt-more-box1 {
    width: 100%;
}

main section .smt-more-box1 img {
    width: 100%;
    vertical-align: bottom;
}

main section .smt-more-box2 {
    position: relative;
    width: 100%;
    height: 35vh;
    padding: 2%;
    background-color: #fff;
}

main section .smt-more-box2 img {
    width: 30%;
}

main section .smt-more-box2 .more-box2-child {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

main section .smt-more-box2 .more-box2-child h4 {
    margin-top: 2%;
    white-space: nowrap;
}

main section .smt-more-box2 .more-box2-child .child-p {
    font-size: 1.8vw;
    text-align: center;    
}

main section .smt-more-box2 .more-box2-child .child-p-2 {
    margin-top: 3%;
    font-size: 2vw;
}

main section .smt-more-box2 .more-box2-child .more-button {
    width: 50%;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2%;
}

main section .smt-more-box2 .more-box2-child .more-button p {
    padding: 10px 30px;
    text-align: center;
    border: 0.5px solid #202020;
}

main section .smt-more-box2 .more-box2-child .more-button p:hover {
    padding: 11px 31px;
    color: #fff;
    background-color: #3DB4D0;
    border: none;
}

/* セクションMOREここまで */

/* セクションラスト画像ここから */
main section:nth-of-type(6) {
    background-image: url(../images/news_bg_after.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

main .last-container1 {
    width: 75%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

main .last-container1 .last-pc1 {
    width: 49%;
}

main .last-container1 .last-pc1 img {
    display: block;
    width: 100%;
}

main .last-container1 .last-pc1:nth-of-type(2) {
    margin-left: 2%;
}

main .last-container2 {
    width: 75%;
    display: flex;
    margin-top: 1%;
    margin-left: auto;
    margin-right: auto;
}

main .last-container2 .last-pc2 {
    width: 32%;
}

main .last-container2 .last-pc2 img {
    display: block;
    width: 100%;
}

main .last-container2 .last-pc2:nth-of-type(2) {
    margin-left: 2%;
    margin-right: 2%;
}
/* セクションラスト画像ここまで */


/* フッター部分ここから */
footer {
    background-color: #E5F2F8;
}

/* 斜めの背景逆バージョンここから */
.bg-re {
    width: 100%;
}

.bg-re img {
    width: 100%;
    vertical-align: bottom;
}
/* 斜めの背景逆バージョンここまで */

footer .footer-container {
    display: none;
}

footer .map {
    width: 30%;
}

footer .map ul {
}

footer .map ul li {
    width: fit-content;
    margin-left: 6%;
}

footer .map ul li a {
    display: block;
    line-height: 2.4;
    color: #202020;
    font-size: 1.1vw;
    text-decoration: none;
    transition: 0.5s;
}

footer .map ul li a:hover {
    color: #909090;
    transition: 0.5s;
}


footer .footer-copyright {
    height: 10vw;
    padding-top: 4vw;
    background-color: #3DB4D0;
}

footer .footer-copyright .map {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
}

footer .footer-copyright .map ul {
    display: flex;

}

footer .footer-copyright .map ul li {
    width: fit-content;
    margin-left: 6%;
}

footer .footer-copyright .map ul li a {
    display: block;
    line-height: 2.4;
    color: #fff;
    font-size: 1vw;
    text-decoration: none;
    transition: 0.5s;
}

footer .footer-c#3DB4D0opyright .map ul li a:hover {
    color: #3DB4D0;
    transition: 0.5s;
}


footer .footer-copyright p {
    text-align: center;
    font-size: 0.85vw;
    color: #fff;
}











