/* ===================================================================
CSS information
 file name  :  common.css
 style info :  共通構造（common.css）
=================================================================== */

html {
    font-size: 62.5%
}

html * {}

.sp_only {
    display: none;
}


@media only screen and (max-width: 900px) {
    img {
        max-width: 50%;
    }

    .sp_br {
        content: "";
        display: block;
        margin-top: 1.4em;
    }

    .sp_only {
        display: block;
    }

    .pc_only,
    .slick-next,
    .slick-prev,
    .next-arrow,
    .prev-arrow {
        display: none !important;
    }
}



body {
    background-color: #FFFFFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-size: 1.6rem;
    /*font-feature-settings:"palt";字詰めしたら縦書きの左右がおかしくなるので削除*/
    color: #000;
    line-height: 1.8;
    background: url('../img/craft_bg.jpg') repeat;
}

img {
    flex-shrink: 0;
    /*flex使った場合IEだと画像が伸縮されるのを回避*/
}

#main_inner {
    height: 80vh;
    min-height: 550px;
}

#wrapper {
    width: 100%;
    margin: 0 auto;
}

main {
    width: 100%;
}

#contents {
    width: 100%;
}

h2 {
    font-size: 130%;
    line-height: 1.4;
    text-align: center;
    color: #E53817;
    font-weight: bold;
    margin-bottom: 1.4em;
}

@media only screen and (min-width: 900px) {
    h2 {
        font-size: 4.5rem;
    }
}

@media only screen and (max-width: 900px) {
    body {
        font-size: 1.6rem;
        line-height: 1.438;
    }
}


/*========================================
 お知らせ
========================================*/
#info,
#mailmagazine,
#sns_nav {
    position: relative;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

#info {
    background: linear-gradient(0deg, rgba(244, 233, 219, 0) 50%, rgba(244, 233, 219, 1) 100%);
}

#info>.inner,
#mailmagazine>.inner,
#sns_nav>.inner {
    display: flex;
    z-index: 3;
    align-items: center;
    flex-direction: column;
    padding: 10px 20px;
}

#info h2,
#mailmagazine h2,
#sns_nav h2 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 0;

}
#info h2{
    margin-bottom: 20px;
}

#info dl {
    display: grid;
    grid-template-columns: 6em 1fr;
    color: #333;
    max-width: 910px;
    gap: 1em;
}

#info dt,
#info dd {
    padding: .3em;
}

#info a,
#info a:link,
#sns_nav a,
#sns_nav a:link {
    text-decoration: none;
    transition: .5s;
    color: #000;
}

#info a:hover,
#sns_nav a:hover {
    text-decoration: none;
    opacity: .3;
}


#mailmagazine p {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
}

#mailmagazine form {
    display: flex;
    padding-top: 20px;
}

#mailmagazine input {
    border: none;
    border-radius: 8px;
    box-shadow: 5px 5px 12px 0px rgb(0 0 0 / 30%);
    padding: 0 10px;
    margin: 0 10px;
}

#mailmagazine input::placeholder {
    color: #ccc;
}

#mailmagazine .btn_gf {
    padding: 1.3em 1.5em;
    min-width: auto;
}

#sns_nav ul {
    display: flex;
    gap: 20px;
}

#sns_nav img {
    max-width: 100%;
}

#sns_nav .link_nav ul {
    display: block;
    padding-top: 50px;
}

@media only screen and (min-width: 900px) {
    #sns_nav .link_nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #sns_nav ul {
        display: flex;
        gap: 20px;
    }
}

@media only screen and (max-width: 900px) {
    #sns_nav nav.link_nav {
        font-size: 1.6rem;
        line-height: 2.05;
    }
}



/*========================================
 フッター
========================================*/
footer {
    padding-top: 50px;
    margin: 0 auto;
    text-align: center;
    margin: auto;
    background: #fff;
    padding-bottom: 100px;
}

footer nav {
    line-height: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: left;
    color: #fff;
    width: 100%;
}

footer #logo {
    display: flex;
    line-height: 0;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}

footer small {
    display: block;
    padding-top: 25px;
    font-size: 1.6rem;
}

header a,
footer a {
    transition: .5s;
    text-decoration: none !important;
}

header a:hover,
footer a:hover {
    opacity: .5;
}


@media only screen and (min-width: 769px) {
    footer {
        padding: 100px;
        width: auto;
    }

    footer nav {
        width: auto;
    }

    footer #logo {
        align-items: flex-start;
    }
}

@media only screen and (max-width: 900px) {
    footer {
        padding-top: 20px;
        padding-bottom: 40px;
    }
}


/*========================================
 その他汎用パーツ
========================================*/
/*冷凍・冷蔵マーク*/
.mark_deli {
    color: #fff;
    background: #FF9900;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 0.35em 0.8em;
    border-radius: 6px;
    display: inline-block;
}

.deli_frozen {
    background: #0099FF !important;
}
.deli_free {
    background: #e53817 !important;
}

/* ボタン */
.btn_gf_wrap {
    position: relative;
    z-index: 0;
}

a.btn_gf {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 1px 2px 2px #0000007d;
    padding: 1.3em 2.5em;
    color: #fff;
    min-width: 175px;
    position: relative;
    transition: .2s;
}

a.btn_gf:before,
a.btn_gf:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    border-radius: 8px;
    box-shadow: 5px 5px 12px 0px rgba(0, 0, 0, .3);
}

/* グラデーション1 */
a.btn_gf::before {
    transition: all .2s;
    /* アニメーション実行時間 */
    z-index: -1;
    background: linear-gradient(0deg, rgba(255, 204, 51, 1) 25%, rgba(204, 153, 51, 1) 95%);
}

/* グラデーション2
a.btn_gf:hover::after {
  z-index: -2;
  background: #000;
}*/

a.btn_gf:hover {
    bottom: -2px;
    left: 2px;
    right: -2px;
    top: 2px;
}

/* ホバー時にグラデーション1を透明にする */
a.btn_gf:hover::before,
a.btn_gf:hover::after {
    bottom: -2px;
    left: 2px;
    right: -2px;
    top: 2px;
    box-shadow: 5px 5px 6px 0px rgba(0, 0, 0, .4);
}

a.btn_casting {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 30px 35px;
    color: #7F2A09;
    min-width: 175px;
    text-align: center;
    transition: .5s;
    outline: #7F2A09 1px solid;
    outline-offset: -1px;
}

a.btn_casting:hover {
    background: #000;
    color: #eee;
    outline: #000 1px solid;
}

/* ボタン */
input.btn_gf {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 1px 2px 2px #0000007d;
    padding: 1.3em 2.5em;
    color: #fff;
    min-width: 175px;
    position: relative;
    transition: .2s;
    background: linear-gradient(0deg, rgba(255, 204, 51, 1) 25%, rgba(204, 153, 51, 1) 95%);
}

input.btn_gf:before,
input.btn_gf:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    border-radius: 8px;
    box-shadow: 5px 5px 12px 0px rgba(0, 0, 0, .3);
}

/* グラデーション1 */
input.btn_gf::before {
    transition: all .2s;
    /* アニメーション実行時間 */
    z-index: -1;
    background: linear-gradient(0deg, rgba(255, 204, 51, 1) 25%, rgba(204, 153, 51, 1) 95%) !important;
}

/* グラデーション2
a.btn_gf:hover::after {
  z-index: -2;
  background: #000;
}*/

input.btn_gf:hover {
    bottom: -2px;
    left: 2px;
    right: -2px;
    top: 2px;
}

/* ホバー時にグラデーション1を透明にする */
input.btn_gf:hover::before,
input.btn_gf:hover::after {
    bottom: -2px;
    left: 2px;
    right: -2px;
    top: 2px;
    box-shadow: 5px 5px 6px 0px rgba(0, 0, 0, .4);
}

input.btn_casting {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 30px 35px;
    color: #7F2A09;
    min-width: 175px;
    text-align: center;
    transition: .5s;
    outline: #7F2A09 1px solid;
    outline-offset: -1px;
}

input.btn_casting:hover {
    background: #000;
    color: #eee;
    outline: #000 1px solid;
}


/*========================================
 アニメーション類
========================================*/
/* 波アニメ */
.wave {
    position: relative;
}

.wave canvas,
.wave_stop {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 30px;
    /*波の高さ変更*/
    z-index: 2;
}

@media (max-width: 768px) {
    .wave canvas {
        height: 20px;
    }

    .wave_stop {
        height: 8px;
    }
}



/* スクロールで表示されるアニメーション */
.fade-in {
    opacity: 0;
    transform: translate(0, 25px) scale(0, 0);
    transition: all 1500ms;
}

.photo_face {
    transform: translate(0, 25px) scale(0, 0);
    transition: all 1500ms cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: .1s;
}

.fade-in.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

/*スクロールなしでフェードイン
（主に汎用ページのファーストビューで使用）*/
.fadeIn-simple {
    animation-fill-mode: both;
    animation-duration: 3s;
    animation-name: fadeIn-simple;
    visibility: visible !important;
}

@keyframes fadeIn-simple {
    0% {
        transform: translate(0, 25px);
        opacity: 0;
    }

    99.9%,
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}


.txt00 {
    transition-delay: .1s;
}

.txt01 {
    transition-delay: 1s;
}

.txt02 {
    transition-delay: 2s;
}

.txt03 {
    transition-delay: 3s;
}

.txt04 {
    transition-delay: 4s;
}

.txt05 {
    transition-delay: 5s;
}

.txt06 {
    transition-delay: 6s;
}

.txt07 {
    transition-delay: 7s;
}

.txt08 {
    transition-delay: 8s;
}

.txt09 {
    transition-delay: 9s;
}

.txt10 {
    transition-delay: 10s;
}


.img01 {
    transition-delay: 1s;
}

.img02 {
    transition-delay: 2s;
}

.img03 {
    transition-delay: 3s;
}

@media only screen and (max-width: 768px) {}


/*========================================
 モーダル
========================================*/
/*
.remodal h3{
  font-size: 2rem;
  border-bottom: #D3AC6F 1px solid;
  width: 100%;
  padding-bottom: 10px;
}
.remodal h3 span{
  display: block;
  font-size: 70%;
}

.remodal h4{
  display:flex;
  line-height: 0;
  padding: 20px;
  width: 200px;
}
.remodal ruby{
  font-size: 3.2rem;
  margin-left: .5em;
}
.remodal ruby rt{font-size: 1rem;}

.rm_program{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top:20px;
}

.rm_program .diamond{
  font-size:1.2rem;
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
}
.rm_program .diamond span{
  height: 0;
  transform: rotate(-45deg);
  text-align: center;
  position: absolute;
  top: 0;
  bottom:0;
  left:0;
  right:0;
  margin: auto;
}
#detail_1017 .diamond{border: #004939 1px solid;}
#detail_1121 .diamond{border: #A11531 1px solid;}
#detail_1212 .diamond{border: #003C7E 1px solid;}
#detail_1017,
#detail_1121,
#detail_1212{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rm_program table{
  width: auto;
  margin-top: auto;
  line-height: 2;
}

.rm_program th{
  text-align: left;
  width: 8em;
  font-weight: 500;
}
.rm_program td{
  text-align: left;
  width: 6em;
  font-size:120%;
  letter-spacing: 0.2em;
}

.rest{
  font-size:1.4rem;
  display: flex;
  align-items: center;
  width: 100%;
  padding-top:40px;
}
.rest:before,
.rest:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #eee;
}
.rest:before {margin-right: 1rem;}
.rest:after {margin-left: 1rem;}

@media only screen and (min-width: 769px) {
  .rm_program{
    display:flex;
    flex-direction: row;
    align-items: flex-start;
  }
  .remodal h3{
    padding-bottom: 20px;
    font-size: 3.2rem;
}
  .remodal h3 span{
    display: inline;
    font-size: 1.4rem;
  }
  .rm_program table{
    margin-top: 30px;
  }
}*/
