@charset "utf-8";
html {
    font-size: 62.5%;
}
body {
    color: #394855;
    font-family: 'Hina Mincho', serif;
    font-size: 1.4rem;
    line-height: 1.6;
    background: #f3f3f3 url("../images/bg_washi.png");
    background-size: 48px 48px;
    letter-spacing: 0.1em;
    color: #333;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
}
/*========= ローディング画面のためのCSS ===============*/

#splash {
    position: fixed;
    /*fixedで全面に固定*/
    z-index: 9999999;
    width: 100%;
    height: 100%;
    background: #efeee5;
    text-align: center;
}
#splash_logo {
    /*loading画像中央配置*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#splash_logo img {
    /*アイコンの大きさの設定*/
    width: 150px;
}
/*fadeUpをするアイコンの動き*/

.fadeUp {
    animation-name: fedeUpAnime;
    animation-duration: 0s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fedeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*navi*/

/*アクティブになったエリア*/

#g-nav.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
}
/*丸の拡大*/

.circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #efeee5;
    /*丸のスタート位置と形状*/
    transform: scale(0);
    /*scaleをはじめは0に*/
    top: calc(50% - 50px);
    /*50%から円の半径を引いた値*/
    left: calc(50% - 50px);
    /*50%から円の半径を引いた値*/
    transition: all .6s;
    /*0.6秒かけてアニメーション*/
}
.circle-bg.circleactive {
    transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
}
/*ナビゲーションの縦スクロール*/

#g-nav-list {
    display: none;
    /*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list {
    display: block;
    /*クラスが付与されたら出現*/
}
/*ナビゲーション*/

#g-nav ul {
    opacity: 0;
    /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*背景が出現後にナビゲーションを表示*/

#g-nav.panelactive ul {
    opacity: 1;
}
/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/

#g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes gnaviAnime {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*リストのレイアウト設定*/

#g-nav li {
    text-align: center;
    list-style: none;
}
#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}
/*========= ボタンのためのCSS ===============*/

.openbtn1 {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    /*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height: 50px;
}
/*×に変化*/

.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}
.openbtn1 span:nth-of-type(1) {
    top: 15px;
}
.openbtn1 span:nth-of-type(2) {
    top: 23px;
}
.openbtn1 span:nth-of-type(3) {
    top: 31px;
}
.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/*naviここまで*/

/*==================================================
スライダーのためのcss
===================================*/

#slider {
    width: 100%;
    height: 100vh;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    z-index: 1;
}
/*========= レイアウトのためのCSS ===============*/

a {
    color: #fff;
}
a:hover, a:active {
    text-decoration: none;
}
.slider_area {
    background: #efeee5;
    top: 0;
    left: 0;
    width: 180px;
    height: 440px;
    margin: auto;
    margin-top: 20%;
    opacity: 0.8
}
.slider_logo {
    width: 100px;
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding-top: 25px;
}
.slider_text {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 3.5rem;
    letter-spacing: 1.6em;
    margin: auto;
    margin-top: 30px;
}
.wrapper {
    position: relative;
}
#header .sns-link {
    left: 10px;
    bottom: 20px;
}
/* sns */

.sns-link li {
    display: inline-block;
    margin: 10px 15px 10px 20px;
}
.sns-link li img {
    width: 25px;
}
.kodawari {
    margin-top: 20vw;
    padding-bottom: 5%;
    background-image: url("../images/logo_png.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
    background-blend-mode: lighten;
}
.kodawari_text {
    width: 90%;
    margin: 0 auto;
}
.kodawari_tate {
    font-size: 22px;
    writing-mode: vertical-rl;
    margin: 0 auto;
    padding-top: 5vw;
    margin-bottom: 5vw;
    letter-spacing: 1em;
}
.kodawari_yoko {
    padding-top: 5vw;
    margin-bottom: 5vw;
    text-align: center;
    letter-spacing: 0.2em;
}
#maboroshi {
    margin-top: 20%;
    padding-top: %;
    margin-bottom: 10%;
    position: relative;
    margin: 0 0 50px 0;
}
#maboroshi .maboroshi-bg {
    position: relative;
    background: url("../images/tamogi_1.jpeg") no-repeat center;
    background-size: cover;
    background-attachment: inherit;
    width: 100%;
    height: 30vh;
}
.maboroshi_contents {
    width: 100%;
    margin: 0 auto;
}
#maboroshi {
    height: auto;
    margin: 100px 0;
}
#maboroshi .maboroshi-heading {
    width: 100%;
    text-align: center;
    letter-spacing: 1.4em;
}
#maboroshi .maboroshi-desc {
    width: 100%;
    padding: 30px 30px;
    display: block;
    height: auto;
    text-align: center;
}
#maboroshi .maboroshi-desc p {
    width: auto;
    margin: 0 0 30px 0;
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    letter-spacing: 0.3em;
}
.maboroshi-link {
    text-align: center;
}
/*link_botton*/

/*== 線の上を別の線が伸びる */

.btnlinestretches4 {
    /*線の基点とするためrelativeを指定*/
    position: relative;
    /*リンクの形状*/
    color: #333;
    padding: 10px 50px 10px 30px;
    display: inline-block;
    text-decoration: none;
    outline: none;
}
/*線の設定*/

.btnlinestretches4::before, .btnlinestretches4::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    /*線の形状*/
    background: #333;
    width: 100%;
    height: 2px;
    /*アニメーションの指定*/
    transition: all 0.3s ease-in-out;
}
/*hover時に伸びる線の形状*/

.btnlinestretches4::after {
    width: 0;
    background: #ccc;
}
/*hover時に100%に伸びる*/

.btnlinestretches4:hover::after {
    width: 100%;
}
/*矢印の設定*/

.btnlinestretches4 span::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 1.3em;
    right: 20px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
/*hover時に矢印が移動*/

.btnlinestretches4:hover span::after {
    right: 15px;
}
/*ここまで＿ボタン*/

/*すーー*/

/*枠線が伸びて出現*/

.line {
    position: relative;
    /* 枠線が書かれる基点*/
}
/*上下線*/

.line::before, .line::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: #333;
    /* 枠線の色*/
}
/*上線*/

.line::before {
    top: 0;
    left: 0;
    animation: lineAnime .5s linear 0s forwards;
    /*表示されて0秒後に上線が0.5秒かけて表示*/
}
/*下線*/

.line::after {
    bottom: 0;
    right: 0;
    animation: lineAnime .5s linear 1s forwards;
    /*表示されて1秒後に下線が0.5秒かけて表示*/
}
@keyframes lineAnime {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
/*左右線*/

.line2::before, .line2::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 0;
    background: #333;
    /* 枠線の色*/
}
/*右線*/

.line2::before {
    top: 0;
    right: 0;
    animation: lineAnime2 .5s linear .5s forwards;
    /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}
/*左線*/

.line2::after {
    bottom: 0;
    left: 0;
    animation: lineAnime2 .5s linear 1.5s forwards;
    /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}
@keyframes lineAnime2 {
    0% {
        height: 0%;
    }
    100% {
        height: 100%;
    }
}
/*枠線内側の要素*/

.line .lineinappear {
    animation: lineInnerAnime .5s linear 1.5s forwards;
    /*1.5秒後に中央のエリアが0.5秒かけて表示*/
    opacity: 0;
    /*初期値を透過0にする*/
}
@keyframes lineInnerAnime {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*すーーここまで*/

.onlineshop_link {
    padding-top: 50px;
    text-align: center;
}
/*botton2*/

/*表示するテキストが切り替わる*/

.btntextchange {
    /*テキストの基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    border: 1px solid #555;
    border-radius: 25px;
    min-width: 210px;
    padding: 20px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    color: #333;
    outline: none;
    /*アニメーションの指定*/
    transition: all .2s;
}
/*hoverした際の変化*/

.btntextchange:hover {
    background: #333;
    color: #fff;
}
.btntextchange span {
    /*絶対配置でテキストの位置を決める*/
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /*アニメーションの指定*/
    transition: all .5s;
    /*ブロック要素にしてテキスト折り返しなし*/
    display: block;
    white-space: nowrap;
}
/*差し替わるテキストの設定*/

.btntextchange span:nth-child(2) {
    opacity: 0;
    /*透過0に*/
}
/*hoverするとテキストが入れ替わる設定*/

.btntextchange:hover span:nth-child(1) {
    opacity: 0;
    /*透過0に*/
}
.btntextchange:hover span:nth-child(2) {
    opacity: 1;
    /*不透明に*/
}
/*botton2_ここまで*/

.footer {
    width: 100%;
    text-align: center;
    color: #efeee5;
    background-color: #3d4025;
    padding-bottom: 5%;
}
.footer img {
    width: 15%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 30px;
}
h2 {
    font-size: 2rem
}
/*PCサイズ*/

@media screen and (min-width: 835px) {
    body {
        max-width: 1000px;
        margin: 0 auto;
    }
}
/*pofile.html*/

#header h1 {
    text-align: center;
    background-color: forestgreen;
    padding: 6px;
}
.profile {
    text-align: center;
}
.profile h4 {
    margin-top: 20px;
}
.profile h5 {
    margin-top: 20px;
}
.profile a {
    color: #111;
}