@charset "utf-8";
/* ======================
common(共通の設定)
====================== */
html {
    font-size: 62.5%;
}

body {
    font-family:
    "Zen Kaku Gothic New",
    serif;
    font-style: normal;
    color: #725020;
    background-image: url(../images/background_image.png);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

a:hover {
    opacity: 0.7;
    transition-duration: 0.5s;
  }

#container.container {
    max-width: 750px;
}

/* ブレイクポイント */
    /*　画面サイズが750px以下はここを読み込む　*/
@media screen and (max-width:750px) { 
.PC__footer,.PC__header,.PC__right {
            display: none;
    }
}
    /*　画面サイズが751pxからはここを読み込む　*/
@media screen and (min-width:751px) {
.header,.footer {
    display: none;
      }
      .PC__header {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        padding: 20px 20px 0;
        background-image: url(../images/mainimage_L.jpg);
        background-size: cover; /* 画像のサイズ指定 */
        background-position: right center;  
        overflow-y: scroll;
        }
    .PC__header .nav__item {
        font-size: 1.4rem;
        padding: 10px 0;
    }

.PC__header .nav__list {
        background: rgba(255, 255, 255, 0.70);
        padding: 0 10px 10px;
        width: 80%;
        margin: 20px auto;
    }
.PC__header-img {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 250px;
    }
.PC__header .footer__btn {
    display:flex;
    flex-flow: column;
    gap: 10px 0;
}
/* コピーライト */
.PC__header .copyright {
    color: white;
}
}
@media screen and (min-width:751px) and ( max-width:1050px) {
    /*　画面サイズが751pxから1050pxまではここを読み込む　*/
    .PC__right {
        display: none;
}
    .PC__header {
        width: 50%;
        }
        #container.container {
            max-width: 50%;
            margin: 0 0 0 auto;
        }
}
@media screen and (min-width:1051px) {
    /*　画面サイズが1051pxからはここを読み込む　*/
    .PC__header {
        width: calc(50% - 250px);
        }
    #container.container {
        max-width: 500px;
        margin-inline: auto;
        }
    .PC__right {
        padding-top: 50px;
        width: calc(50% - 250px);
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background-image: url(../images/mainimage_L.jpg);
        background-size: cover; /* 画像のサイズ指定 */
        background-position: left center;  
    }
    .PC__right .SNS__container {
        margin: 10px 5.3% 0;
    }
    .PC__right .SNS__text {
        font-size: 1.2rem;
    }
}

/* ======================
パンくずリストの設定
====================== */
.breadcrumb-area a:hover{
     color: #FC742A;
}

/* ======================
ページトップボタンーの設定
====================== */
#page-top a {
    bottom: 10px;
    padding: 20px;
    position: fixed;
    right: 10px;
  }

  #page-top {
    bottom: 0;
    position: fixed;
    right: 0;
  }
  #page-top a {
    height: auto;
    padding: 0;
    text-align: center;
    transition: opacity .5s;
    width: 80px;
  }
  #page-top a:hover {
    opacity: 0.8;
    transition: opacity .5s;
  }
  #page-top a img {
    width: 80px;
  }

/* ======================
header(ヘッダーの設定)
====================== */
.header {

}

.header__topic,
.nav__topic {
    width: 220px;
}

/* .nav初期設定 */
.nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100; /* 最前面にnavを配置 */
    transform: translateX(-100%);
    transition: transform 0.4s;
    background-image: url(../images/background_image_sky.jpg);
    background-size: cover; /* 画像のサイズ指定 */
    overflow-y: scroll;
}

.nav__header {
    width: 100%;
    height: 70px;
    position: static;
    top: 0;
    left: 0;
    padding: 2.7%;
    background-color: white;
    display: flex; /* 要素を横並びに */
    justify-content: space-between; /* 子要素を左右両端に配置し、間に均等なスペースを設ける */
    align-items: center; /* 子要素を垂直方向に中央揃えにする */
}

.header__btn {
    display: flex; /* 要素を横並びに */
    align-items: center; /* 子要素を垂直方向に中央揃えにする */
    gap: 10px; /* 要素の隙間を設定 */
}

.nav__container {
    padding: 30px 5.3% 0;
}

.nav__list {
    margin: 20px 0;
}

.nav__item {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 20px; /* 125% 行間 */
    letter-spacing: 0.24rem;
    display: flex;
    padding: 20px  0;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px dashed #FC742A;
}
.nav__item img{
    margin-right: 1rem;
}

.nav.active {
    transform: translateX(0);
}

.article__header {
    position: relative;
}

/* SNSボタン */
.SNS__container {
    border: 1px dashed #725020;
    background: rgba(255, 255, 255, 0.70);
    display: flex;
    padding: 10px;
    align-items: center;
    align-self: stretch;
    margin-bottom: 10px;
    height: 90px;
    gap: 10px;
}
.SNS__container::after {
    content: "\e5e1";
    font-family: "Material Icons";
    fill: #017307;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.SNS__name {
    display: flex;
    align-items: center;
    gap: 10px;
}
.SNS__img {
    width: 30px;
    height: 30px;
}
.SNS__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;
}
.SNS__text {
    font-size: 1.4rem;
    line-height: 1.2;
    letter-spacing: 1.4px;
    width: 100%;
}

/* 閉じるボタン */
.close__btn {
    display: flex;
    padding: 10px 20px;
    margin: 20px 27%;
    justify-content: center;
    align-items: center;
    color: #017307;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3.2px;
    border-radius: 90px;
    border: 1px solid #017307;
}
.close__btn::after {
    content: "\e5cd";
    font-family: "Material Icons";
    fill: #017307;
    display: flex;
    font-size: 2rem;
}

/* コピーライト */
.copyright {
    color: #017307;
    text-align: center;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

/* ======================
スライドショーの設定
====================== */
#slick_box_01 {
    position: relative;
    overflow: hidden;
    z-index: 0;
    height: 743px;
    margin-bottom: 50px;
}
.text_01 {
    position: absolute;
    z-index: 2;
    top: 40%; /* 親要素の上端から50%の位置に要素の上端を配置 */
    left: 50%; /* 親要素の左端から50%の位置に要素の左端を配置 */
    transform: translate(-50%, -40%); /* 要素自体を左に50%、上に50%移動させることで、要素の中央を親要素の中央に配置 */
    -webkit-transform: translate(-50%, -40%); /* WebKitブラウザ（Chrome、Safariなど）向けのベンダープレフィックス付きtransform */
    -ms-transform: translate(-50%, -40%); /* Internet Explorer 9+向けのベンダープレフィックス付きtransform */
    color: white;
    font-size: 2rem;
    font-style: normal;
    line-height: 34px; /* 170% */
    letter-spacing: 4px;
  }
  .slick-img {
    width: 100%;
    height: 670px;
    max-width:100%;
  }
  .slick-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick-cloud01 {
    position: absolute;
    z-index: 1;
    width: 342px;
    height: 207px;
    top: 30px;
    right: -86px;
}
.slick-cloud02 {
    position: absolute;
    z-index: 1;
    width: 273px;
    height: 165px;
    top: 400px;
    left: -102px;
}
.slick-mountain {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 246px;
    top: 596px;
}

/* ======================
news(お知らせの設定)
====================== */
.section--news {
    margin-bottom: 50px;
    gap: 20px;
}

.news__item {
    margin-bottom: 10px;
}

.new__list__box {
    padding: 20px 0;
}

.new__list__box__time {
    display: inline-flex;
    align-items: center;
}
.new__list__box__time time {
    color: #017307;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3.2px;
}
.new__list__box__category {
    display: flex;
    height: 30px;
    padding: 5px 20px;
    margin-left: 10px;
    justify-content: center;
    align-items: center;

    color: #FC742A;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.8px;
    
    border-radius: 90px;
    background: #fff;
}
.new__list__box__title {
    color: #725020;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3.2px;
}

.new__entry__cards {
    padding: 20px 5.3%;
    justify-content: space-between;
    border-top: 2px dashed #017307;
}

/* サムネ付(new__list__box)用設定 */
.new__list__box__img {
    display: flex;
    margin: 0 auto;
	background-color: #ccc;
	background-position: center center;
	background-repeat: no-repeat;
	width: 89.4%;
	height: 207px;
	background-size: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}
.new__list__link {
    position: relative;
    margin-left: 5.3%;
    padding-right: 30px;
}

.new__entry__cards {
    position: relative;
    padding-right: 30px;
}
.new__list__link::after, .new__entry__cards::after {
    content: url('../images/arrow.svg');
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: 50%; /* 上端を中央に配置 */
}

/* ======================
about,profileの設定
====================== */
.section--about .text,
.section--profile .text {
    color: #725020;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 30px; /* 187.5% */
    letter-spacing: 3.2px;
}

.text__container {
    margin: 0 5.3% 50px;
}

/* ======================
profileの設定
====================== */
.section--profile {
    margin-bottom: 50px;
}

.section--profile .name {
    margin-top: 20px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 24px; /* 120% */
    letter-spacing: 4px;
}

.section--profile .alphabet {
    text-align: center;
    font-family: Dokdo;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 3.2px;
}

.btn__sub__container {
    display: flex;
    justify-content: center;
    margin: 20px 5.3%;
    gap: 10px;
}

/* ======================
seminarの設定
====================== */
.section--seminar {
    margin-bottom: 50px;
}

/* ======================
itemの設定
====================== */
.section--item {
    margin-bottom: 50px;
}
.item__content {
    display: block;
    margin: 10px 5.3%;
    margin-bottom: 30px;
}

.item__main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.item__content img {
    width: auto;
    height: 150px;
    border-radius:50%;
    border: 5px solid white;
    background: url(../images/item_1.jpg) lightgray 50% / cover no-repeat;
}
.item__content h5 {
    color: #017307;
    font-size: 2rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4px;
    margin-bottom: 10px;
}
.item__content p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
}

.item__detail {
    
}

.item__btn {
    display: flex;
    justify-content: center;
    gap: 10px;

}

/* ======================
eventの設定
====================== */
.section--event {
    margin-bottom: 50px;
}

/* ======================
blogの設定
====================== */
.section--blog {
    margin-bottom: 50px;
}

/* ======================
shop（取扱店舗情報）の設定
====================== */
#shop {
    margin-bottom: 50px;
}

.section--shop {
    margin: 50px 5.3% 0;
}

.section--shop h4 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
}

.section--shop a {
    color: #017307;
}

.shop__img {
    display: flex;
	background-color: #ccc;
	background-position: center center;
	background-repeat: no-repeat;
	height: 335px;
	background-size: cover;
    border-radius: 20px;
    margin: 10px 0;
}

.section--shop p {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 24px; /* 171.429% */
    letter-spacing: 1.4px;
    margin-bottom: 10px;
}

.shop__access {
    margin-bottom: 30px;
}

/* mapの設定 */
.map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ======================
footerの設定
====================== */
.footer {
    padding-top: 50px;
    background-image: url(../images/background_image_sky.jpg);
    background-size: cover; /* 画像のサイズ指定 */
}
.footer__btn {
    margin: 0 5.3%;
}

.footer__banner {
    width: 300px;
    height: auto;
    margin: 0 auto;
    padding: 20px 0;
}

.footer .nav__list {
    margin: 20px 5.3%;
}

.footer .SNS__container {
    margin: 10px 5.3%;
}

/* ======================
block__attention(ボックスデザインの設定)
====================== */
.block__attention {
    margin: 50px 5.3% 0;
    font-size: 1.6rem;
    background: #ffeaea;
    box-shadow: 0px 0px 0px 10px #ffeaea;
    border: dashed 2px #ffc3c3;
    border-radius: 30px;
}
.block__attention p { 
    padding: 20px 10px;
}
.block__attention h5 { 
    color: #725020;
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4px;
}

/* ======================
h3,h4(見出しの設定)
====================== */
/* h3 */
.section__topic {
    text-align: center;
    position: relative;
    padding-top: 50px;
    font-family: "Zen Kaku Gothic New";
    font-size: 2.4rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.24rem;
    margin-bottom: 1rem;
}
.section__topic span {
    content: attr(date-en);
    display: block;
    color: #FC742A;
    margin: 0 auto;
    /* 英字 */
    font-family: Dokdo;
    font-size: 2rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4rem;
    margin-bottom: 40px;
    }
    
.section__topic__text {
    text-align: center;
    margin: 0 5.3% 40px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3.2px;
}

/* h4 */
.section__topic__sub {
    padding: 40px 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4px;
    }

.dotted-heading {
    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-bottom: 2px dashed #FC742A;

    color: #725020;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4px;
}

/* ======================
btn(各種ボタンの設定)
====================== */
/* オンラインショップボタン */
.btn__btn-cart {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 90px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;
    background: #FC742A;
}
.btn__btn-cart::after {
    content: url('../images/solar_cart-2-bold.svg');
    display: block;
    width: 34px;
    height: 34px;
}

/* サブボタン */
.btn-sub {
    color: #725020;
    display: flex;
    padding: 10px 0 10px 10px;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 20px; /* 125% 行間 */
    letter-spacing: 0.24rem;
    border-bottom: 1px dashed #FC742A;
    margin: 10px auto 0;
}
.btn-sub::before {
    content: url('../images/carbon_next-filled.svg');
    display: flex;
    align-items: center;
    width: 34px;
    height: 34px;
}

/* ボタン共通設定 */
.btn {
    display: flex;
    padding: 10px 20px;
    margin: 20px 15%;
    justify-content: center;
    align-items: center;
    border-radius: 90px;
    color: white;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;
  }

/* 主要ボタン */
.btn-primary {
    background: #FC742A;
  }

.btn-primary2 {
    background: #EFAD3F;
  }

/* ボタンミニ共通設定 */
.btn__mini {
    display: flex;
    align-items: center;
    justify-content: center;/*中央寄せで配置*/
    padding: 10px 20px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
}

.more {
    color: #017307;
    border-radius: 90px;
    border: 1px solid #017307;

}
.more::after {
    content: "\e5e1";
    font-family: "Material Icons";
    fill: #017307;
    display: flex;
    align-items: center;
}

.cart {
    color: white;
    border-radius: 90px;
    background: #FC742A;
}
.cart::after {
    align-items: center;
    content: '';/*何も入れない*/
    display: inline-block;
    width: 24px;/*画像の幅*/
    height: 24px;/*画像の高さ*/
    background-image: url(../images/solar_cart-2-bold.svg);
    background-size: contain; } 

/* ======================
固定ページ(page.php)の設定
====================== */
.page {
    margin: 0 5.3% 50px;
}

.page p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 30px; /* 187.5% */
    letter-spacing: 3.2px;
}

/* ======================
search(検索の設定)
====================== */
.search-box {
    display: flex;
    margin-bottom: 10px;
}

.search-box input[type="text"] {
    font-size: 1.6rem;
    flex-grow: 1;
    padding: 10px 20px;
    border: 1px solid #017307;
    border-radius: 90px 0 0 90px;
    background-color: #fff;
    width: 100%;
}

.search-box button {
    cursor: pointer;
    padding: .8rem .9rem .8rem .9rem;
    border-radius: 0 90px 90px 0;
    border: none;
    background-color: #017307;
    color: #fff;
    font-size: 1.6rem;
}

/* 検索結果 */
#search {
    margin: 0 5.3% 50px;
    font-size: 1.6rem;
}

.Search-form-style {
    font-size: 1.6rem;
}

.search-result {
    margin-bottom: 30px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3.2px;
}

/* エラー文 */
.error__statement {
    margin: 0 5.3% 50px;
    font-size: 1.6rem;
}

/* li 全体をクリック範囲に */
.nav__item a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit; /* 親要素の色を引き継ぐ */
}
.nav__item {
    list-style: none; /* リストのマーカーを非表示 */
}
