@charset "utf-8";
/* ======================================
	body [ ボディ ]
====================================== */
html {
    width: 100%;
    font-size: 16px;
}
body {
    color: #000;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.8;
    width: 100%;
    background: #e60012;
    font-weight: 400;
    letter-spacing: 0.08em;
}
body * {
    box-sizing: border-box;
    font-weight: inherit;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
a, a:focus, .slick-slide, area, area:focus {
    outline: none;
}
a {
    color: #000;
    word-break: break-all;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a:hover {
    text-decoration: none;
    cursor: pointer;
    opacity: 0.8;
}
a.link {
    color: #00ceb9;
    text-decoration: underline;
}
p, dd {
    text-align: justify;
    text-justify: inter-ideograph;
}

/* ======================================
	共通スタイル
====================================== */
.d_sp {
    display: none !important;
}
.d_tb {
    display: none !important;
}
/* スクロールCSS */
.fade-in {
    opacity: 0;
}
.fade-in-up {
    transform: translate(0, 80px);
}
.fade-in-down {
    transform: translate(0, -80px);
}
.fade-in-left {
    transform: translate(-80px, 0);
}
.fade-in-right {
    transform: translate(80px, 0);
}
.scroll-in {
    animation: fadeIn 0.9s ease;
    animation-fill-mode: forwards;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}
/* font */
.barlow {
    font-family: "Barlow Condensed", sans-serif;
}
/* ======================================
	コンテンツ
====================================== */
#content {
    overflow: hidden;
}
#content .cont_inner {
    padding-left: 6.667%;
    padding-right: 6.667%;
}
/* layout
 * ************************************************** */
.pageContents__wrapper {
  position: relative;
  margin: 0 auto;
}
/* pageContents__header */
.pageContents__header {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: calc((100vw - 750px) / 2);
}
.pageContents__header .header_logo {
    margin-top: 3.6vw;
    width: 212px;
    max-width: 85%;
}
.pageContents__header .header_navi {
    display: none;
}
/* pageContents__inner */
.pageContents__inner {
    position: relative;
    width: 750px;
    margin: 0 auto;
    color: rgb(var(--c-333333));
    z-index: 1;
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.33);
}
/* pageContents__navi */
.pageContents__navi {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: calc((100vw - 750px) / 2);
}
.side_navi {
    margin-top: 120px;
    width: 300px;
    max-width: 86%;
}
.side_navi .side_navi01 {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
}
.side_navi .side_navi01 a {
    display: block;
    width: 86%;
}
.side_navi .side_navi02 {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
}
.side_navi .side_navi02 a {
    display: block;
    width: 49%;
}
.side_navi .side_navi03 .side_navi_circuit {
    width: 34.667%;
    margin-bottom: 14px;
}
.side_navi .side_navi03 ul li a {
    display: block;
    margin-bottom: 0.5em;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.15em;
}
.side_navi .side_navi04 {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
}
.side_navi .side_navi04 .modal-open {
    display: block;
    width: 86.667%;
    cursor: pointer;
}
/* mv
 * ************************************************** */
#mv {
	position: relative;
    width: 100%;
    padding: 32px 0 40px;
    background: #fff;
}
#mv .mv_date {
	position: absolute;
    top: 0;
    right: 0;
    width: 22.667%;
    animation-delay: 0.9s;
}
#mv .mv_ttl {
    margin: 0 auto 50px 3.6%;
    width: 68%;
    position:relative;
    animation:blur-op 0.4s ease-in-out forwards;
    opacity: 0;
    animation-delay: 0.9s;
}
#mv .mv_lead {
    text-align: center;
    font-size: 1.4rem;
    padding: 0 20px;
    font-weight: bold;
}
@keyframes blur-op {
  0% {
      opacity: 0;
    }
  100%{
      opacity: 1;
    }
}
#mv .mv_ttl::after {
    content:"";
    display:block;
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    backdrop-filter:blur(12px);
    animation:blur 0.4s ease-in-out forwards;
    animation-delay: 0.9s;
}
@keyframes blur {
  0% {
      backdrop-filter:blur(12px);
    }
  100%{
      backdrop-filter:none;
    }
}

/* c_store
 * ************************************************** */
#c_store {
    padding-top: 45px;
    margin-bottom: 80px;
}
#c_store .store_ttl {
    margin-bottom: 25px;
}
#c_store .store_list_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
}
#c_store .store_list_wrap ul:first-child {
    width: 43%;
}
#c_store .store_list_wrap ul:last-child {
    width: 57%;
}
#c_store .store_list_wrap ul li {
    margin-bottom: 0.3em;
    padding-bottom: 0.2em;
    font-size: 1.333rem;
    color: #fff;
    letter-spacing: 0.1em;
}
#c_store .store_list_wrap ul li a {
    color: #fff;
    border-bottom: 2px solid #e60012;
    font-weight: bold;
}
#c_store .store_list_wrap ul li a:hover {
    border-bottom: 2px solid #fff;
}

/* c_howto
 * ************************************************** */
#c_howto {
    color: #fff;
    margin-bottom: 40px;
}
#c_howto .howto_ttl {
    margin: 0 auto 20px;
    width: 81.538%;
}
#c_howto .howto_ttl_s {
    font-size: 1.444rem;
    font-weight: bold;
    margin-bottom: 5px;
}
#c_howto p {
    margin-bottom: 25px;
}

/* c_map
 * ************************************************** */
#c_map {
    margin-bottom: 70px;
}
#c_map .map {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 750px;
    background: url("../images/map.png") no-repeat 50% 50% / 100%;
}
#c_map .map .map_btn {
    display: block;
    width: 42.4%;
    cursor: pointer;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0,0,0,50%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    z-index: 100;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: scroll;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 3px;
  right: 5px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #e60012;
  cursor: pointer;
}
.modal-content{
    background: #fff;
}
/* c_iichako
 * ************************************************** */
#c_iichako {
    margin-bottom: 30px;
}
#c_iichako .iichako_img {
    position: relative;
    overflow: hidden;
}
#c_iichako .iichako_img .iichako_ttl {
    position: absolute;
    top: 6.452%;
    right: 4.267%;
    width: 35.2%;
}
#c_iichako .iichako_img .iichako_btn {
    display: block;
    position: absolute;
    bottom: 3.763%;
    right: 4.667%;
    width: 19.333%;
    animation: shake 2s infinite;
}
@keyframes shake {
    0% {
        transform: rotate(12deg);
    }
    50% {
        transform: rotate(-12deg);
    }
    100% {
        transform: rotate(12deg);
    }
}
#c_iichako .iichako_txt {
    padding-top: 35px;
    padding-bottom: 35px;
    background: #fff;
}

/* circuit common
 * ************************************************** */
.circuit_cont {
    background: #fff;
    margin-bottom: 4px;
    padding-bottom: 50px;
}
.circuit_cont .circuit_img {
    position: relative;
}
.circuit_cont .circuit_img .circuit_main {
    max-width: none;
}
.circuit_cont .circuit_img .circuit_ttl,
.circuit_cont .circuit_img .circuit_main,
.circuit_cont .circuit_img .circuit_staff,
.circuit_cont .circuit_img .circuit_comment {
    position: absolute;
}
.circuit_cont .circuit_txt {
    margin-bottom: 40px;
}
.circuit_cont .circuit_txt .circuit_catch {
    margin-bottom: 10px;
    color: #e60012;
    font-weight: bold;
    font-size: 1.556rem;
    line-height: 1.4;
}
.circuit_cont .circuit_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 600px;
    max-width: 100%;
}
.circuit_cont .circuit_info .circuit_info_txt {
    width: 53.333%;
}
.circuit_cont .circuit_info .circuit_info_txt .circuit_info_ttl {
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #999;
    color: #999;
    font-weight: bold;
    line-height: 1;
    font-size: 1.4rem;
    letter-spacing: 0;
}
.circuit_cont .circuit_info .circuit_info_txt .circuit_info_name {
    margin-bottom: 10px;
    font-size: 1.333rem;
    font-weight: bold;
    line-height: 1.4;
}
.circuit_cont .circuit_info .circuit_info_txt .circuit_info_name .kana {
    font-size: 40%;
    font-weight: bold;
}
.circuit_cont .circuit_info .circuit_info_txt .circuit_info_intro {
    margin-bottom: 20px;
    font-size: 0.778rem;
    letter-spacing: 0.03em;
}
.circuit_cont .circuit_info .circuit_info_txt .circuit_info_add {
    margin-bottom: 1em;
    font-size: 0.778rem;
    letter-spacing: 0;
}
.circuit_cont .circuit_info .circuit_info_txt .circuit_info_add .tel {
    pointer-events: none;
}
.circuit_cont .circuit_info .circuit_info_img {
    width: 41.667%;
}
.circuit_cont .circuit_info .circuit_info_img img {
    margin-bottom: 10px;
}
.circuit_comment_on {
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-duration: 1.5s;
  width: 128px;
  animation-name: poyo;
}
@keyframes poyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.9);
  }
}
@keyframes poyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.9);
  }
}
/* #circuit_store01 */
#circuit_store01 .circuit_participating {
    position: absolute;
    top: 0;
    right: 6.667%;
    width: 13.067%;
}
#circuit_store01 .circuit_img {
    padding-top: 111.333%;
}
#circuit_store01 .circuit_img .circuit_ttl {
    width: 61.333%;
    top: 10.18%;
    left: 10%;
}
#circuit_store01 .circuit_img .circuit_main {
    width: 99.333%;
    top: 31.138%;
    left: 5.6%;
}
#circuit_store01 .circuit_img .circuit_staff {
    width: 12.267%;
    bottom: 3.952%;
    left: 5.6%;
}
#circuit_store01 .circuit_img .circuit_comment {
    width: 42.4%;
    bottom: 2.635%;
    left: 15.4%;
}
/* #circuit_store02 */
#circuit_store02 .circuit_img {
    padding-top: 115.2%;
}
#circuit_store02 .circuit_img .circuit_ttl {
    width: 84.4%;
    top: 6.25%;
    left: 7.2%;
}
#circuit_store02 .circuit_img .circuit_main {
    width: 92.8%;
    top: 21.991%;
    left: 3.333%;
}
#circuit_store02 .circuit_img .circuit_staff {
    width: 12.533%;
    bottom: 3.241%;
    left: 8.8%;
}
#circuit_store02 .circuit_img .circuit_comment {
    width: 45.467%;
    bottom: 2.894%;
    left: 17.867%;
}
/* #circuit_store03 */
#circuit_store03 .circuit_img {
    padding-top: 92%;
}
#circuit_store03 .circuit_img .circuit_ttl {
    width: 80.667%;
    top: 14.493%;
    left: 10%;
    z-index: 2;
}
#circuit_store03 .circuit_img .circuit_main {
    width: 107.467%;
    top: 30.435%;
    left: -4.4%;
}
#circuit_store03 .circuit_img .circuit_staff {
    width: 13.067%;
    top: 4.4%;
    left: 53.067%;
}
#circuit_store03 .circuit_img .circuit_comment {
    width: 47.467%;
    top: 13.913%;
    left: 8.2%;
}
/* #circuit_store04 */
#circuit_store04 .circuit_img {
    padding-top: 114.667%;
}
#circuit_store04 .circuit_img .circuit_ttl {
    width: 82.933%;
    top: 4.419%;
    left: 6.133%;
    z-index: 2;
}
#circuit_store04 .circuit_img .circuit_main {
    width: 104%;
    top: 16.74%;
    left: -2.933%;
}
#circuit_store04 .circuit_img .circuit_staff {
    width: 12.8%;
    bottom: 6%;
    left: 7.733%;
}
#circuit_store04 .circuit_img .circuit_comment {
    width: 48.667%;
    bottom: 2.558%;
    left: 15.733%;
}
/* #circuit_store05 */
#circuit_store05 .circuit_img {
    padding-top: 112.667%;
}
#circuit_store05 .circuit_img .circuit_ttl {
    width: 84.8%;
    top: 8.521%;
    left: 3.733%;
    z-index: 2;
}
#circuit_store05 .circuit_img .circuit_main {
    width: 105.2%;
    top: 27.219%;
    left: -2.4%;
}
#circuit_store05 .circuit_img .circuit_staff {
    width: 17.733%;
    bottom: 3.55%;
    right: 3.467%;
}
#circuit_store05 .circuit_img .circuit_comment {
    width: 44.933%;
    bottom: 4.497%;
    right: 13.867%;
}
/* #circuit_store06 */
#circuit_store06 .circuit_img {
    padding-top: 104.8%;
}
#circuit_store06 .circuit_img .circuit_ttl {
    width: 90.4%;
    top: 9.6%;
    left: 4.533%;
    z-index: 2;
}
#circuit_store06 .circuit_img .circuit_main {
    width: 90.533%;
    top: 27.481%;
    left: 15.467%;
}
#circuit_store06 .circuit_img .circuit_staff {
    width: 19.333%;
    bottom: 6.743%;
    left: 6.933%;
}
#circuit_store06 .circuit_img .circuit_comment {
    width: 43.867%;
    bottom: 2.29%;
    left: 20%;
}
#circuit_store06 .circuit_info .circuit_info_txt .circuit_info_name span {
    display: block;
}
/* #circuit_store07 */
#circuit_store07 .circuit_img {
    padding-top: 118.667%;
}
#circuit_store07 .circuit_img .circuit_ttl {
    width: 59.333%;
    top: 7.191%;
    left: 6.4%;
    z-index: 2;
}
#circuit_store07 .circuit_img .circuit_main {
    width: 94.533%;
    top: 25.281%;
    left: 3.733%;
}
#circuit_store07 .circuit_img .circuit_staff {
    width: 10.933%;
    bottom: 4.494%;
    left: 9.733%;
}
#circuit_store07 .circuit_img .circuit_comment {
    width: 45.333%;
    bottom: 6.18%;
    left: 17.333%;
}

/* ======================================
	footer [ フッタ ]
====================================== */
#footer {
    padding: 40px 30px 50px;
    background: #fff;
}
#footer p {
    text-align: center;
    letter-spacing: 0.03em;
}
#footer .footer_credit {
    margin-bottom: 30px;
}
#footer .footer_credit p {
    font-size: 0.6rem;
    margin-bottom: 1em;
}
#footer .footer_notes01,
#footer .footer_contact {
    font-size: 0.778rem;
    margin-bottom: 30px;
    line-height: 2;
}
#footer .footer_notes02 {
    font-size: 0.667rem;
    margin-bottom: 50px;
}
#footer .copy a {
    display: block;
    font-size: 0.75rem;
    text-align: center;
    letter-spacing: 0;
    color: #231815;
    text-decoration: none;
}
/* notes */
.notes01,
.notes02 {
    padding-left: 20px;
    padding-right: 20px;
    color: #231815;
    font-weight: 400;
}
.notes01 p {
	padding-bottom: 20px;
	text-align: center;
	font-size: 0.933rem;
}
.notes02 {
	padding-bottom: 55px;
}
.notes02 p {
	text-align: center;
	font-size: 0.8rem;
}
/* share button */
.shareBtn ul {
    margin: 0 auto 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.shareBtn li {
    margin: 0 8px;
    width: 75px;
}
.shareBtn li:hover {
    transform: translateY(-.5rem);
    transition: .5s;
}
.shareBtn li a:hover {
    opacity: 1;
}
#page-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 80px;
    z-index: 98;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 1250px) {
    .pageContents__header {
        width: calc(100vw - 750px);
    }
    .pageContents__header .header_logo {
        margin: 3.6vw auto 0;
        width: 212px;
        max-width: 85%;
    }
    .pageContents__header .header_navi {
        display: block;
        margin: 60px auto 0;
    }
    .pageContents__inner {
        margin: 0 0 0 auto;
    }
    .pageContents__navi {
        display: none!important;
    }
}
@media (max-width: 1080px) {
    html {
        font-size: 13px;
    }
    .pageContents__header {
        width: 330px;
    }
    .pageContents__inner {
        width: calc(100% - 330px);
    }
    #c_map .map {
        height: calc(100vw - 330px);
    }
}
@media (max-height: 639px) {
    .pageContents__header .header_logo {
        margin: 2vw auto 0;
        width: 180px;
        max-width: 80%;
    }
    .pageContents__header .header_navi {
        margin: 40px auto 0;
    }
}