@charset "UTF-8";

/* 標準フォントを設定 */
html {
    font-size: 100%;
}

/* 画像の横幅をの最大幅を親要素に合わせてください。
imgタグにつけることですべての画像に反映されているよ */
img {
    max-width: 100%;
}

/* ulタグの点を取る */
ul {
    list-style-type: none;
}

/* aタグの装飾をとる */
a {
    text-decoration: none;
    color: #313131;
}

section {
    margin: 4rem auto 8rem;
}

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: #4C6376;
    text-align: center;
    color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width: 80vw;
}

/* fadeInをするアイコンの動き */
.fadeUp {
    animation: fadeInCenter 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInCenter {
    from {
        opacity: 0;
        transform: scale(0.95);
        /* 少し小さく → ふんわり感UP */
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ローディング中はハンバーガー非表示 */
body.loading .openbtn {
    visibility: hidden !important;
}

body.loading #g-nav {
    visibility: hidden !important;
}



/* --------文字の出現指定 --------*/

.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
        opacity: 0;
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}

.blurTrigger {
    opacity: 0;
}



/* -------- 背景 ------- */
body {
    background-color: #313131;
    background-image: url(img/bg.png);
    background-repeat: repeat;
    background-position: center;
    /* scroll-behavior: smooth; */
    background-attachment: fixed;
}

/*--------- ヘッダー ----------*/

header {
    background-image: url(img/bg_of_header_and_footer.jpg);
    background-size: cover;
}

.header-wp {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.header-cnt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.logo-title {
    display: flex;
    gap: 1rem;
    align-items: center;

}


.logo {
    width: 5rem;
    max-width: 100%;

}

h1 {
    font-family: Inknut Antiqua, serif;
    color: #fff;
    font-weight: 300;
    line-height: 1.5;
    font-size: 1rem;
}

.nav-pc {
    display: flex;
}

.nav-item {
    font-family: Inknut Antiqua, serif;
    color: #fff;
    margin: .8rem;
}

.nav-sns {
    display: flex;
    margin: .5rem;
    gap: 1rem;
    align-items: center;
}

.x-header-icon,
.is-header-icon {
    width: 2rem;
}

.olshop {
    font-family: Inknut Antiqua, serif;
    background-color: #fff;
    display: block;
    text-align: center;
    padding: 0 .5rem;

}

#g-nav {
    display: none;
}


/*--------- メインビジュアル ----------*/


.main-visual-cnt {
    position: relative;

}

.cc-cnt {
    position: absolute;
    top: 30px;
    left: 10%;
}

.br-sp {
    display: inline;
}

.cc,
.cc-ja {
    font-family: Hina Mincho, serif;
    color: #fff;
    font-size: 2rem;
}

.cc-ja {
    display: block;
    margin: 0 3vw -2rem;
    font-size: 2rem;
}

.logo-cc-ja {
    position: absolute;
    bottom: 10%;
    right: 5vw;
    text-align: right;
}

.mv-logo {
    width: 70%;
}

.mp-about-sns-cnt,
.kawasemi {
    display: none;
}


.mv-btn {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    bottom: 3%;
}

.gallery-link,
.olshop-link {
    color: #fff;
    font-family: Inknut Antiqua, serif;
    font-size: 2rem;
    background-color: rgba(76, 118, 99, .41);
    width: 50%;
    text-align: center;
    border: 2px solid #fff;
}

/*--------- About ----------*/
.about-wp {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/*--------- Aboutのタイトル ----------*/
.h2-cnt-a {
    display: flex;
    margin: 0;
}

.h2-r {
    margin: auto 3rem;
}

.caption-en {
    color: #4C6376;
    font-family: Inknut Antiqua, serif;
    font-size: 4rem;
    font-weight: 300;
}

.sub-title,
.caption-ja {
    color: #4C6376;
    font-family: Hina Mincho;
}


.sub-title {
    font-size: 1.5rem;
}

/*--------- Aboutのコンテンツ----------*/
.about-cnt {
    /* width: 90%; */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    /* スペースをgapで管理 */
}

/*--------- Aboutの左側----------*/
.about-l {
    font-family: Hina Mincho, serif;
    width: 50%;
    padding: 0 0 0 5%;
}

.sub-caption {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    font-family: Hina Mincho, serif;
}

.text {
    line-height: 2.5;

}


/*--------- Aboutの画像----------*/
.about-img {
    width: 40%;
    max-width: 100%;
    height: auto;
    display: block;
    /* object-fit: contain; は崩れの原因になるからやめたほうがいい*/
}

/*--------- Aboutのsnsアイコン----------*/

.about-sns-cnt {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    margin: auto;
    gap: 2rem;
}

.about-sns {
    width: 2rem;

}

.read-more {
    width: 20%;
    padding: 1rem 0 0 3rem;
}

/* ---------gallery ---------*/
.gallery-wp {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.h2-cnt {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.gallery-cnt {
    display: flex;
    justify-content: space-between;

}

.gallery-cnt img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 280px;
}

/*　画像の拡大＋テキスト出現　*/

.zoomInText {
    /*テキストの基点となる位置を定義*/
    position: relative;
}

.zoomInText span.mask {
    position: relative;
    transition: .3s ease-in-out;
    /*移り変わる速さを変更したい場合はこの数値を変更*/
    display: block;
    /*画像をくくるspanタグをブロック要素にする*/
    line-height: 0;
    /*行の高さを0にする*/
    overflow: hidden;
    /*拡大してはみ出る要素を隠す*/
}

.zoomInText:hover span.mask::before {
    /*hoverした時の変化*/
    content: "";
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: rgba(76, 99, 118, 0.5);
    /*背景色*/
}

.zoomInText img {
    transform: scale(1);
    filter: blur(0);
    transition: .3s ease-in-out;
    /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomInText:hover img {
    /*hoverした時の変化*/
    transform: scale(1.2);
    /*拡大の値を変更したい場合はこの数値を変更*/
    filter: blur(2px);
    /*ぼかし具合を変更したい場合はこの数値を変更*/
}

.zoomInText span.cap {
    opacity: 0;
    transition: .5s ease-in-out;
    /*移り変わる速さを変更したい場合はこの数値を変更*/
    position: absolute;
    z-index: 3;
    /*テキストを前面に出す*/
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: #fff;
    /*テキストの色を変えたい場合はここを修正*/
    line-height: 1.5;
    /*行の高さを1.5にする*/
    font-family: Hina Mincho, serif;
    font-size: 1.5rem;
    text-align: center;
}

.zoomInText:hover span.cap {
    /*hoverした時の変化*/
    opacity: 1;
}

.gallaery-rm {
    display: block;
    margin: 0 0 0 auto;

}

.bg-grass-g {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
}

/* ----------store---------- */
.store-wp {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.h4-title {
    font-family: Inknut Antiqua, serif;
    font-size: 2rem;
    font-weight: 300;
}

.h4-title-ja {
    font-family: Hina Mincho, serif;
    font-size: 1.5rem;
}

.store-cnt {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem
}

.online-cnt,
.consignment {
    max-width: 50%;
}

.minne,
.creama,
.only-shop {
    margin: 1rem 0;
    max-width: 50%;
}

.bg-kame {
    position: absolute;
    top: 25%;
    left: 50%;
    max-width: 50%;
    z-index: -1;
    transition: transform 1s linear;
}

/* ---------event-new-work--------- */

.enw-wp {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.enw-cnt {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.enw-cnt p {
    margin: 0rem auto;
    font-family: Hina Mincho, serif;
}

.new-work {
    position: relative;
    width: 50%;
}

.new-work img {
    position: absolute;
    bottom: -5rem;
    display: block;
    right: 0;
    max-width: 30%;
}

.event {
    position: relative;
    width: 50%;
}

.event-item {
    margin: 2rem 0;
}

.event img {
    position: absolute;
    bottom: -5rem;
    display: block;
    right: 0;
    max-width: 30%;
}

/* ---------News-------- */
.news {
    margin: 6rem auto 8rem;
    position: relative;
}

.news-wp {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.news-cnt {
    /* width: 90%;
    margin: 0 auto; */
    display: flex;
    justify-content: space-between;
}

.news-cnt,
p.text,
.text-sns,
.pa-ex-cnt,
.pa-co-text-cnt {
    font-family: Hina Mincho, serif;
}

.text-sns {
    line-height: 2.5;
}

.note-cnt,
.x-cnt,
.ig-cnt,
.tt-cnt {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.note-cnt img,
.x-cnt img,
.ig-cnt img,
.tt-cnt img {
    height: 5rem;
}

.bg-grass-r {
    position: absolute;
    top: 10%;
    left: 35%;
}

/* --------お問い合わせフォーム --------*/
.contact-wp {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.form-area {
    margin: 0 auto;
}

.form-area p {
    font-family: Hina Mincho, serif;
    width: 9rem;

}

.holder {
    font-family: Inknut Antiqua, serif;
    background-color: #F5F1EC;
    border-radius: 9px;
    width: 60%;
    display: block;
    height: 10rem;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);

}

.form-area input {
    width: 60%;
    height: 3rem;
    padding: 0 1rem
}

input.submit {
    background-color: #B08D57;
    border-radius: 9px;
    width: 30%;
    display: block;
    margin: 0 auto;
    color: #fff;
    font-family: Inknut Antiqua, serif;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    padding: 0 1rem
}
textarea.holder {
    padding: 0 1rem;
}
.name-cnt,
.mail-cnt,
.massage-cnt {
    display: flex;
    gap: 2rem;
    margin: 3rem auto;
    justify-content: center;
}

img.bg-hawk {
    width: 40%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
}

.bg-grass-c {
    position: absolute;
    bottom: -10%;
    left: 0%;
    width: 30%;
    z-index: -1;
}

/* --------フッター --------*/

footer {
    background-image: url(img/bg_of_header_and_footer.jpg);
    background-size: cover;
    position: relative;
}

.penguin {
    width: 3%;
    display: block;
    right: 1rem;
    position: absolute;
    top: -25rem;
    opacity: 0.8;
}

.footer-cnt {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    padding: 3rem 0;
    justify-content: space-between;

}

.f-logo-box {
    width: 30%;
}

.f-logo-cnt {
    align-items: center;
    display: flex;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 7rem;
}

.f-site-title {
    font-family: Inknut Antiqua, serif;
    color: #F5F1EC;
    font-size: 3rem;
    line-height: 1.2;
}

.footer-logo {
    max-width: 7rem;
}

.f-nav-pc {
    display: flex;
    justify-content: space-between;
    width: 100%;
}



.f-nav-pc a {
    color: #fff;
    font-family: Hina Mincho, serif;
    line-height: 2;
}

.f-sns {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .5rem;
}

.f-sns-text {
    color: #fff;
    font-family: Hina Mincho, serif;
    font-size: 1.2rem;
}

.f-sns img {
    width: 2.2rem;
    /* 例：これくらいが最適 */
    height: auto;
}

ul.f-btn {
    width: 60%;
}

.f-nav-pc-l {
    margin: 0 4rem 0 0;
}

.f-olshop-btn,
.f-gallery-btn {
    font-family: Inknut Antiqua, serif;
    background-color: #fff;
    display: block;
    text-align: center;
    padding: 0 .5rem;
    margin: 1rem 0;
}

.f-logo {
    display: none;
}

.copyright {
    font-family: Inknut Antiqua, serif;
    color: #fff;
    text-align: center;

}


/* --------Aboutページ　
--------*/

.about-main-visual-cnt,
.creation-wp,
.pa-ex-wp,
.pa-co-wp,
.care-wp,
.f-r-e-r-wp {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-me-text-img,
.creation-cnt,
.pa-ex-cnt,
.pa-co-cnt,
.oteire1,
.oteire2,
.accordion-area {
    width: 90%;
    margin: 0 auto;
}



/* --------About Me --------*/

#about-me {
    margin: 0;
    background-image: url(img/about/about-top-bg.png);
    background-size: cover;
    padding: 4rem;
}

.caption-en-w {
    color: #fff;
    font-family: Inknut Antiqua, serif;
    font-size: 4rem;
    font-weight: 300;
}

.cc-cnt-am {
    display: flex;
    align-items: center;
    gap: 2rem;
    top: 0;
}

p.about-me-title,
p.about-me-text,
.ab-cc {
    font-family: Hina Mincho, serif;
    color: #fff;
}

p.about-me-title {
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
}

p.about-me-text {
    font-size: 1rem;
}

.about-me-text-img {
    display: flex;
    padding: 0 0 4rem;
    align-items: center;
    justify-content: space-around;
}

.ab-main-visual {
    width: 100%;
}

img.kurukku-img {
    width: 50%;
}

.kurukku-img-mp,
.past-ex-mp {
    display: none;
}

.about-me-text-cnt {
    min-width: 50%;
}

/* Creation */
.creation-wp {
    position: relative;
}

.karasu {
    position: absolute;
    top: -3%;
    right: 0;
    width: 30%;
    /* アニメ前の初期位置（左上の外側） */
    transform: translate(-200px, -200px);
    opacity: 0;

    /* アニメの時間・イージング */
    transition: transform 1.2s ease-out, opacity 1.2s ease-out;
}

/* 画面内に入ったときに一度だけ付けるクラス */
.karasu.in-view {
    transform: translate(0, 0);
    /* 本来の位置に */
    opacity: 1;
}

.h2-cnt-a {
    align-items: center;
    gap: 3rem;
}

.cr-sub-caption {
    font-family: Hina Mincho, serif;
}

/* .creation-top,
.creation-bottom {
    display: flex;
    gap: 10%;
} */

.creation-cnt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.creation1,
.creation2,
.creation3,
.creation4 {
    width: 45%;

}

img.tiktok-read-more,
img.ig-read-more {
    width: 45%;
    position: absolute;
    bottom: -8rem;
}

.creation1,
.creation2 {
    position: relative;
    margin: 0 0 12rem 0;
}


.hakubutukan,
.design-img,
.movie {
    margin: 0 0 1rem 0;
}


/*　動画のサイズ指定  */
.movie-wp {
    aspect-ratio: 16/9;
    width: 100%;
    background-color: #313131;
}

.movie {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
}

.creation-bottom {
    margin: 15rem 0 0 0;
}

#creation {
    position: relative;
}

.ab-bg-grass-g {
    position: absolute;
    width: 20%;
    pointer-events: none;
    bottom: 0%;
}


/* 過去のイベント */

#pa-ex {
    position: relative;
    margin: 0 0 16rem 0;
}

.pa-ex-cnt,
.pa-co-cnt {
    display: flex;
    gap: 10%;
    justify-content: space-between;
}

img.pa-ex-img {
    max-width: 45%;
}

a.pa-ex-text,
a.pa-co-text {
    line-height: 2.5;
}

.pa-ex-img-mp,
.pa-co-img-mp {
    display: none;
}

.washi {
    position: absolute;
    width: 15%;

    /* ① 最初から画面内右上 */
    right: 5%;
    top: 100%;
    opacity: 0;

    /* ② 位置は動かさない */
    transform: translateX(0);
    transition: transform 2s ease-out, opacity 2s ease-out;
    pointer-events: none;
}

.washi.fly {
    /* ③ 左へスーッと移動 */
    opacity: 1;
    transform: translateX(-400%);
}

/* 過去の委託販売 */

#pa-co {
    margin: 16rem 0 0 0;
}

.ab-caption-en,
.f-r-e-r-caption-en {
    color: #4C6376;
    font-family: Inknut Antiqua, serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
}

.pa-co-wp {
    position: relative;
}


.pa-co-cnt {
    margin: 2rem auto;
}

.pa-co-img {
    width: 45%;
}

/*-------- お手入れ --------*/

.care-wp {
    position: relative;
}

img.ab-bg-grass-r1 {
    position: absolute;
    right: 0;
    width: 25%;
    top: 25%;
}

.oteire2 {
    margin: 4rem auto;
}

/* 無償交換・修理 */
.f-r-e-r-wp {
    position: relative;
}

/* --------　アコーディオンパネル --------*/
/*アコーディオン全体*/
.accordion-area {
    list-style: none;
}

.accordion-area li {
    margin: 10px 0;
    font-family: Hina Mincho, serif;
}

.accordion-area section {
    border: 0px solid rgba(0, 0, 0, 0.12);
    background-color: rgba(0, 0, 0, 0.12);
    border-radius: 20px;

}


/*アコーディオンタイトル*/
.title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
    font-family: Hina Mincho, serif;
    color: #fff;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #fff;

}

.title::before {
    top: 48%;
    left: 15px;
    transform: rotate(0deg);

}

.title::after {
    top: 48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/
.title.close::before {
    transform: rotate(45deg);
}

.title.close::after {
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;
    /*はじめは非表示*/
    background: #F5F1EC;
    padding: 5%;
    border-radius: 0px 0px 20px 20px;
}

.box p,
li.box-li {
    font-family: Hina Mincho, serif;
    list-style-position: inside;
}

/* ++++++++++++++++++++++++++++
galleryページ 
++++++++++++++++++++++++++++*/

/* メイン */
#gallery-top {
    margin: 0;
    background-image: url(img/gallery/top-pc.png);
    background-size: cover;
    padding: 4rem;
}

.caption-en-ga {
    color: #fff;
    font-family: Inknut Antiqua, serif;
    font-size: 4rem;
    font-weight: 300;
}

.ga-main-mp-img{
    display: none;
}

/* ギャラリーエリア */
#gallery-area{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/*==================================================
ギャラリーのためのcss
===================================*/

/*＝＝＝並び替えボタンのCSS*/
.sort-btn{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding:50px 20px;
}

.sort-btn li{
	background:#eee;
list-style:none;
	border-radius:10px;
	cursor: pointer;
	padding: 10px;
	margin:0 10px;
}

.sort-btn li.active{/*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
	background:#ccc;	
}

/*横幅が480px以下になった際の指定*/
@media only screen and (max-width: 480px) {
.sort-btn{
	justify-content: space-between;
}
	
.sort-btn li{
	width:48%;
	margin:0 0 10px 0;
	text-align:center;
	}	
}

/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
  position: relative;/*並び替えの基準点を指定*/
}

/*各画像の横幅などの設定*/
.item {
  display: block;
  position: absolute;
  width: 33%;/*横並びで3つ表示*/
  z-index: 1;
list-style:none;
}

/*内側のボックスの高さが崩れないように維持*/
.item-content {
  position: relative;
  width: 100%;
  height: 100%;
}

/*画像の横幅を100%にしてレスポンシブ化*/
.grid img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
    padding: 1rem;
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
.item {
  width: 49.5%;/*横並びで2つ表示*/
}
}




/* ----------------------------
　スマホ用レイアウト調整
----------------------------- */

@media (max-width: 600px) {

    /* ローディング画面の画像 */

    #splash_logo {
        width: 100vw;
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #splash_logo img {
        width: 100vw;
        height: auto;
    }

    /* ナビゲーションメニュー */
    .openbtn {
        display: block;
    }

    /* ローディング中はハンバーガーを完全に隠す（最優先） */
    body.loading .openbtn {
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        z-index: -1 !important;
    }

    #g-nav {
        display: block;
    }

    div#g-nav-list {
        display: block;
    }

    body.loading #g-nav {
        visibility: hidden !important;
    }

    body:not(.loading) .openbtn {
        position: absolute !important;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 3;
        /*ナビのスタート位置と形状*/
        top: 0;
        right: -120%;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: #4C6376;
        /*動き*/
        transition: all 0.6s;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        right: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: absolute;
        z-index: 3;
        width: 100%;
        height: 100%;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 3;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #fff;
        font-family: Hina Mincho, serif;
        text-decoration: none;
        padding: 10px;
        display: block;
        letter-spacing: 0.1em;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed !important;
        z-index: 4;
        top: 10px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }


    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }



    /* セクションごとの余白 */
    section {
        margin: 4rem auto;
    }


    /* display:flex-directionの解除 */
    .h2-cnt-a,
    .h2-cnt,
    .gallery-cnt,
    .store-cnt,
    .enw-cnt,
    .news-cnt,
    .name-cnt,
    .mail-cnt,
    .massage-cnt,
    .footer-cnt {
        display: block;
    }

    .h2-cnt {
        margin: 0 0 2rem 0;
    }


    /*-------- ヘッダー --------*/
    .nav-pc,
    .nav-sns {
        display: none;
    }

    .br-sp {
        display: block;
        /* モバイルだけMVキャッチコピーを改行 */
    }

    .cc {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .cc-ja {
        position: absolute;
        top: 87%;
        left: 25%;
        font-size: 1.5rem;
    }


    .cc-cnt {
        left: 5%;
    }

    .logo-cc-ja {
        position: absolute;
        bottom: 47%;
        text-align: center;
        right: 0;
    }

    .mv-logo {
        width: 80%;
    }

    .gallery-link,
    .olshop-link {
        font-size: 1rem;
        line-height: 4rem;
    }

    .kawasemi {
        display: block;
        width: 15%;
        position: absolute;
        left: 43%;
        top: 56%;
    }

    .mp-about-sns {
        display: block;
    }

    .mp-about-sns-cnt {
        display: flex;
        justify-content: center;
        gap: 2rem;
        position: absolute;
        left: 25%;
        top: 80%;
        width: 50%;
    }


    /* --------about-------- */

    /* .about-wp {
        margin: 0 0 0 auto;
    } */

    .caption-en {
        font-size: 2rem;
        line-height: 1;
    }

    .caption-ja {
        font-size: 1.25rem
    }

    .h2-r {
        margin: 0
    }

    .sub-caption {
        font-size: 1.25rem;
        margin: 3rem 0;
    }

    .about-cnt {
        flex-direction: column-reverse;
        gap: 0
    }

    .about-l {
        width: 100%;
        margin: 0 10% 0 0;
    }

    .about-img {
        width: 100%;
        padding: 2rem 0;
    }

    .about-sns {
        display: none;
    }

    .sub-title {
        display: none;
    }

    .read-more {
        width: 60%;
        padding: 0;
        margin: 0 0 0 auto;
    }

    .kurukku-img {
        display: none;
    }



    /* -------- gallaery --------*/

    /* .gallery-wp {
        margin: 0 0 0 auto;
    } */

    .gallery-cnt {
        display: flex;
        flex-wrap: wrap;
        /* ← 追加：これで画像が折り返せる */
        gap: 1.5rem;
        /* ← ここが隙間になる */
        justify-content: flex-start;
        /* ← space-between をやめる */
    }

    .gallery-cnt img {
        width: 100%;
    }


    /* オーバーレイを少し小さくして中央寄りにする */
    .zoomInText span.mask::before {
        content: "";
        position: absolute;
        z-index: 2;
        top: 5%;
        left: 5%;
        width: 90%;
        height: 90%;

        background: rgba(76, 99, 118, 0.5);
        border-radius: 4px;
        /* 角を少し丸くして自然に見せる */
    }

    /* 画像は拡大表示しない*/
    .zoomInText img {
        transform: none;
        filter: none;
        display: block;
        width: 100%;
        height: auto;
    }

    /* テキストも常に表示 */
    .zoomInText span.cap {
        opacity: 1;
    }

    .gallaery-rm {
        margin: 1rem 0 0 auto;
    }

    /* --------store--------- */
    .h4-title {
        font-size: 1.25rem;
    }

    .h4-title-ja {
        font-size: 1rem;
    }

    .online-cnt,
    .consignment {
        max-width: 100%;
        margin: 2rem 0;
    }

    .minne-creama {
        display: flex;
    }

    .minne,
    .creama {
        max-width: 90%;
        margin: 0;
    }

    .only-shop {
        max-width: 45%;
        margin: 0 0 3rem 0;
    }

    /* -------- EVEVT&NEWITEM  ----------*/
    .event {
        width: 100%;
    }

    .event-item {
        margin: 2rem 0;
    }

    .enw-cnt {
        width: 100%;
    }

    .enw-cnt p {
        margin: 0rem auto;
    }

    .text {
        line-height: 1.5;
    }

    .event img,
    .new-work img {
        position: static;
        max-width: 60%;
        margin: 0 0 0 auto;
    }

    .event img {
        margin: 0 0 2rem auto;
    }

    .new-work {
        width: 100%;
    }


    /* -------- NEWS --------*/
    .bg-grass-r {
        width: 50%;
    }

    .note-cnt img,
    .x-cnt img,
    .ig-cnt img,
    .tt-cnt img {
        width: 1.5rem;
        height: auto;
    }

    .note-cnt,
    .x-cnt,
    .ig-cnt,
    .tt-cnt {
        gap: 1rem;
    }

    /* -------- Contact -------*/
    .form-area .holder {
        width: 100%;
    }

    input.submit {
        width: 60%;
    }

    /* --------フッター --------*/
    .penguin {
        width: 7%;
        display: block;
        top: -9rem;
    }

    .f-logo-box {
        display: none;
    }

    .footer-cnt {
        gap: 0
    }

    .f-nav-pc {
        width: 100%;
    }

    .f-nav-sns {
        display: flex;
        flex-wrap: wrap;
        margin: 1rem 0;
    }

    .mp-sns-nav,
    .f-nav-pc-r,
    .f-nav-pc-l {
        width: 50%;
    }

    .f-nav-pc-l {
        margin: 0;
    }

    .f-sns {
        padding: .5rem 0;
    }

    ul.f-btn {
        display: flex;
        justify-content: space-between;
        margin: 1rem 0;
        width: 100%;
    }

    .f-olshop-btn,
    .f-gallery-btn {
        width: 49%;
    }

    .f-logo {
        display: block;
        margin: 0 auto;
        width: 50%;
    }

    .footer-grid {
        display: grid;
        gap: 0rem;
    }

    .f-nav-pc {
        order: 1;
    }

    .f-nav-sns {
        order: 3;
    }

    .f-btn {
        order: 2;
    }

    .footer-grid {
        justify-content: space-around;
    }

    /*------------------
 about meページ 
 -------------------*/

    /* About Me */
    #about-me {
        background-image: none;
        padding: 0;
    }

    .caption-en-w {
        color: #4C6376;
        font-size: 2rem;
        line-height: 1.5;
    }

    .ab-cc {
        color: #4C6376;
    }

    .cc-cnt-am,
    .about-me-text-img {
        display: block;
    }

    .about-me-text-img {
        padding: 0 0 5rem 0;
    }

    p.about-me-title,
    p.about-me-text {
        color: #000;
    }

    .cc-cnt-am {
        margin: 2rem auto;
    }

    .kurukku-img-mp {
        display: block;
    }

    .karasu {
        top: -2%;
    }

    /* Creation */
    .creation-top,
    .creation-bottom {
        display: block;
    }

    .creation1,
    .creation2,
    .creation3,
    .creation4 {
        width: 100%;
    }

    img.tiktok-read-more,
    img.ig-read-more {
        position: static;
    }

    .cr-sub-caption {
        margin: 3rem 0 1rem 0;
        font-family: Hina Mincho, serif;
        font-size: 1.25rem;
    }

    .creation-bottom {
        margin: 2rem auto;
    }

    .kurukku-img-mp {
        margin: 0 0 8rem 0;
    }

    .movie-wp {
        aspect-ratio: auto;
    }

    .hakubutukan,
    .design-img,
    .movie {
        margin: 0 0 4rem 0;
    }





    /*==================================================
スライダーのためのcss
===================================*/
    .slider {
        position: relative;
        z-index: 1;
        /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
        height: 100vh;
        /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    }

    /*　背景画像設定　*/

    .slider-item01 {
        background: url(../img/img_01.jpg);
    }

    .slider-item02 {
        background: url(../img/img_02.jpg);
    }

    .slider-item03 {
        background: url(../img/img_03.jpg);
    }

    .slider-item {
        width: 100%;
        /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
        height: auto;
        /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
        background-repeat: no-repeat;
        /*背景画像をリピートしない*/
        background-position: center;
        /*背景画像の位置を中央に*/
        background-size: cover;
        /*背景画像が.slider-item全体を覆い表示*/
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 171vw;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #4C6376;
        /*矢印の色*/
        border-right: 2px solid #4C6376;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*ドットナビゲーションの設定*/

    .slick-dots {
        position: absolute;
        top: 173vw;
        left: 50%;
        translate: -50% 0;
        z-index: 3;
        text-align: center;
        margin: 0 auto;
    }

    .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }

    .slick-dots button {
        color: transparent;
        outline: none;
        width: 12px;
        /*ドットボタンのサイズ*/
        height: 12px;
        /*ドットボタンのサイズ*/
        display: block;
        border-radius: 50%;
        background: #ccc;
        /*ドットボタンの色*/
    }

    .slick-dots .slick-active button {
        background: #4C6376;
        /*ドットボタンの現在地表示の色*/
    }

    /* 過去のイベント */
    section#pa-ex {
        margin: 20rem auto 8rem;
    }

    .pa-ex-wp,
    .pa-co-wp {
        width: 100%;

    }

    .h2-cnt {
        /* margin: 0 5% 2rem 5%; */
        margin: 2rem 0;
    }

    .ab-h2-cnt {
        margin: 0 5% 2rem 5%;
    }

    .pa-ex-text-cnt,
    .pa-co-text-cnt {
        margin: 0 5%;
    }

    .pa-ex-img-mp {
        display: block;
    }

    .pa-ex-img {
        display: none;
    }

    .pe-ex-text-wp {
        margin: 2rem 0;
    }

    a.pa-ex-text,
    a.pa-co-text {
        line-height: 1.5;
    }

    .washi {
        position: absolute;
        right: -10%;
        right: 0;
        width: 26%;
    }

    .washi.fly {
        opacity: 1;
        transform: translateX(-250%);
    }


    /* 過去の委託販売 */

    #pa-co {
        margin: 4rem 0 0 0;
    }

    .pa-ex-cnt,
    .pa-co-cnt {
        display: block;
    }

    .ab-caption-en,
    .f-r-e-r-caption-en {
        font-size: 2rem;
    }


    .pa-co-img-mp {
        display: block;
        width: 100vw;
    }

    .pa-co-img {
        display: none;
    }


    /* お手入れ */
    h3.title.close,
    h3.title {
        font-size: 1rem;
    }

/* 無償交換 */
.accordion-area section {
       border-radius: 10px;
}
.box {
      border-radius: 0px 0px 10px 10px;
}


}