/*---------------------------------------*/
body {
	/*font-family: "ヒラギノ角ゴシック","Hiragino Sans" sans-serif ;*/
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
  }
ul {
	list-style-type: disc;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}
p {
    font-family: source-han-sans-japanese, sans-serif;
    display: block;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
.tume {
    font-feature-settings: "palt";
}
img {
    image-rendering: -webkit-optimize-contrast;
    vertical-align:top;
}

a {
	color:#000;
	text-decoration: none;
}
li {
    list-style: none;
}

h1 {
    font-family: din-condensed, sans-serif;
    font-weight: 400;
}
h2 {
    font-family: din-condensed, sans-serif;
    font-weight: 400;
    font-size: 63px;
    display: inline-block;
    color: #000;
}
dt {

}

dd {
    display: block;
    margin-inline-start: 0px;
    font-size: 14px;
    font-family: source-han-sans-japanese, sans-serif;

}
span {
    font-family: source-han-sans-japanese, sans-serif;
}

/*--------------------------------------------
フローティングボタン
--------------------------------------------*/
.float-button__wrap {
    display: none;
    width: 60px;
    height: 200px;
    position: fixed;
    bottom: 125px;
    right: 0px;
    z-index: 10;
}
.float-button__wrap a {
    font-family: din-condensed, sans-serif;
    font-family: source-han-sans-japanese, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    background-color: #9D3702 ;
    color: #fff;
    writing-mode: vertical-lr;
    
    font-weight: 400;
    text-orientation: mixed;
    font-size: 20px;
}
.arrow-sample{
    display: none;
   
    position: fixed;
    bottom: 30px;
    right: 36px;
    z-index: 10;
	/* 縦横100px の正方形を作る */
	width: 28px;
	height: 28px;
    /* 塗りなし線のみの指定 */
	border: 3px solid;
	border-color: #333333 #333333 #333333 #333333;
    border-color: #333333 #333333 transparent transparent;
    /* 45度回転する */
	transform: rotate(-45deg);
}
/*--------------------------------------------
map
--------------------------------------------*/
.googlemap-bw iframe {
   /* -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);*/
  }
/*--------------------------------------------
バーガー画像フェードイン
--------------------------------------------*/
.delayed-image {
	/* じわっと画像が表示される */
 	animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}

/* じわっと画像が表示される ---------　一度追加していたら不要*/
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}

/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
/*--------------------------------------------
全体
--------------------------------------------*/
.page_wrap {
    width: 1366px;
    margin: 0 auto;
}

header {
    height: 110px;
    display: flex;
    justify-content: space-between;
    padding: 0 0px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background-color: #fff;
}
.top_attention {
    text-align: center;
    width: 100%;
    margin: 60px auto;
    border: 2px solid #9D3702;
}
.top_attention p{
    line-height: 31px;
    font-size: 14px;
    padding: 14px;
    
}
.top_attention span {
    color: #9D3702;
    display: block;
    margin-top: 28px;
    font-weight: bold;
    
}
.main_nav {
    width: 1367px;
    margin: 0 auto;
    box-sizing: border-box;
    z-index: 99;
}
.main_nav ul {
    display: flex;
}
.main_nav ul li {
    font-family: din-condensed, sans-serif;
    font-weight: 400;
    font-size: 25px;
    padding: 40px 20px;
}
.main_nav ul li:nth-last-child(1) img{
    width: 30px;
    padding-top: 2px;
    margin-right: 5px;
}
.main_nav ul li:nth-last-child(2) {
    font-family: din-condensed, sans-serif;
    font-weight: 400;
    font-size: 25px;
    padding: 30px 20px;
}

.main_nav ul li:nth-last-child(2) a{
    font-family: din-condensed, sans-serif;
    font-weight: 400;
    font-size: 25px;
    padding: 9px 20px;
    color: #9D3702;
    border: 2px solid #9D3702;
}
.main_nav ul li:nth-last-child(2) a:hover{
    font-family: din-condensed, sans-serif;
    font-weight: 400;
    font-size: 25px;
    padding: 9px 20px;
    color: #fff;
    border: 2px solid #9D3702;
   
    transition: 0.3s ;
    

}


.nav_btn {
    position: relative;
    display: inline-block;
    width: 173px;
    height: 53px;
    line-height: 46px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;

}

/* ボタンのテキスト */
.btn__text {
    position: absolute;
    left: 0;
    display: block;
    height: 100%; /* 縦幅をボタンと同じにする */
    width: 100%; /* 横幅をボタンと同じにする */
    color: #fff; /* 文字色 */
    font-size: 25px; /* 文字サイズ */
    text-align: center; /* テキストを中央揃え */
    transition: all 0.3s; /* アニメーション実行時間 */
    color: #9D3702;
    font-family: din-condensed, sans-serif;
    line-height: 50px;
    z-index: -1;
  }
  
  /* ボタンのテキスト(デフォルトのテキスト) */
  .btn__text:nth-child(1) {
    top: 0;
  }
  
  /* ボタンのテキスト(隠れているテキスト) */
  .btn__text:nth-child(2) {
    top: -100%;
    color: #fff;
    font-family: source-han-sans-japanese, sans-serif;
    font-size: 17px;
    width: 169px;
    height: 49px;
    background-color: #9D3702;
    
  }
  
  /* ボタンホバーアクション */
  .nav_btn:hover .btn__text:nth-child(1) {
    top: 100%;
  }
  
  .nav_btn:hover .btn__text:nth-child(2) {
    top: 0;
  }

/*-ローディングテキスト-*/
  .demoTxt {
      display: block;
      opacity:0;
      font-size: 20px;
      font-weight: bold;
      text-align: center;
      color: #000;
      font-family: source-han-sans-japanese, sans-serif;
    font-size: 17px;
    padding-top: 30px;
    font-weight: 200;
    letter-spacing: 5px;
    }
    .demoTxt span {
      opacity: 0;
      -webkit-transition: .6s ease-in-out;
      transition: .6s ease-in-out;
    }

.main_nav-right {
    justify-content: ;
}
.main_nav-left .pc_logo {
 /* padding-top: 4px; */
    /* padding-left: 13px; */
    margin-top: 24px;
}
.slider-wrap {
    margin-bottom: 135px;
    margin-top: 275px;
}
.slider li dl dt {
    font-weight: 400;
    font-size: 17px;
    border-bottom: 1px solid #000;
    padding-bottom: 13px;
    text-align: center;
    font-family: source-han-sans-japanese, sans-serif;
}
.title_wrap {
    padding: 0 100px;
    height: 100px;
    box-sizing: border-box;
    display:flex;
    align-items: center;
    margin-bottom: 37px;
}
.title_wrap ul {
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.title_wrap ul li:first-child{
   line-height: 85px;
}
.title_wrap ul li:nth-child(2){
    line-height: 66px;
    width: 17%;
    line-height: 82px;
}

.title_wrap ul li:last-child{
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: bold;
    line-height: 28px;
    font-family: source-han-sans-japanese, sans-serif;
}
.title_goods ul li:last-child{
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: bold;
    line-height: 32px;
    font-family: source-han-sans-japanese, sans-serif;
    padding-top: 4px;
}
.goods_img {
    margin-bottom: 49px;
}
.goods_list {
    text-align: center;
    margin-bottom: 80px;
}
.goods_list ul {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
    justify-content: space-between;
}
.goods_list ul li {
   margin-bottom: 16px;
}
/*ストリートビュー*/
.view_list ul{
    display: flex;
        flex-wrap: wrap;
        width: 80%;
        margin: 0 auto;
        justify-content: space-between;
    }
    .view_list ul li{
    margin-bottom: 16px;
    }
    .view_list{
    margin-top: 49px;
    }
    
.map_wrap {
    text-align: center;
}
.map_wrap_title {
    margin-bottom: 18px;
}
.map_wrap_title span {
    padding: 11px;
    display: block;
}
.map_wrap p {
    padding: 25px;
}
.about_img {
    margin-bottom: 100px;
}
.access_info {
    margin-bottom: 56px;
    }
.access_info dl{
    display: flex;
    flex-wrap: wrap;
    height: 230px;
    width: 78%;
    margin: 0 auto;
    }
.access_info dt{
    background-color: #E0E0E0;
    color: #000;
    padding: 0px;
    margin-bottom: 20px;
    line-height: 78px;
    width: 25%;
    text-align: center;
    height: 80px;
    font-size: 18px;
    font-weight: bold;
    font-family: source-han-sans-japanese, sans-serif;
}
.access_info dd{
    width: 75%;
    height: 80px;
    padding-top: 18px;
    padding-left: 20px;
    letter-spacing: 1px;
    font-family: source-han-sans-japanese, sans-serif;
    }
.access_info dl dt dd{
    font-size: 16px;
    font-family: source-han-sans-japanese, sans-serif;
    
    }
.anchor {
    display: block;
    padding-top: 120px;
    margin-top: -120px;
}

/*--------------------------------------------
動画部分
--------------------------------------------*/
.movie-box {
    width: 100%;
    height: auto;
    /* display: inline; */
    padding-top: 56.25%;
    margin-bottom: 4%;
    position: relative;
}
.movie-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*--------------------------------------------
about部分
--------------------------------------------*/
.about_h2_wrap {
    display: flex;
    margin-bottom: 30px;
    
}
.about_h2_wrap span {
    line-height: 69px;
    padding-left: 40px;
}
.about_p_wrap {
    margin-left: 59%;
    margin-top: 17.7%;
 }

.about_p_wrap p{
   line-height: 40px;
   font-size: 20px;
   font-weight: bold;
   font-family: source-han-sans-japanese, sans-serif;
}
/*-------*/
.about_h2_wrap_6 {
    display: flex;
    margin-bottom: 30px;
    
}
.about_h2_wrap_6 span {
    line-height: 69px;
    padding-left: 40px;
}
.about_p_wrap_6 {
    margin-top: 3.4%;
    margin-left: 56%;
 }

.about_p_wrap_6 p{
   line-height: 40px;
   font-size: 20px;
   font-weight: bold;
   font-family: source-han-sans-japanese, sans-serif;
}


.about_img_1 {
    margin-top: -38.6%;
}
.about_img_2 {
    margin-left: 53.2%;
    margin-top: 30.4%;
}
.about_img_3 {
    margin-left: 53.2%;
    margin-top: 9.4%;
}
.about_img_4 {
        /* margin-left: 5.8%; */
        margin-top: 15%;
}
.about_img_5 {
    margin-left: 50.5%;
    margin-top: -33%;
}
.about_img_6 {
    margin-left: 0;
    margin-top: -39%;
}
.about_img_6 p{
    position: absolute;
    margin-top: 18px;
    font-size: 14px;
    margin-left: 20px;
}
.about_p_wrap_2 {
    margin-top: -53.6%;
    margin-left: 9%;
}

.about_h2_wrap_3 {
    display: flex;
}
.about_p_wrap_2 dt {
    font-weight: bold;
    line-height: 40px;
    font-size: 17px;
    font-weight: bold;
    font-family: source-han-sans-japanese, sans-serif;
}
.about_p_wrap_2 dd {
    line-height: 27px;
    font-size: 17px;
    font-family: source-han-sans-japanese, sans-serif;
    margin-bottom: 19px;
}

.about_p_wrap_3 {
    margin-top: -29.6%;
    margin-left: 9%;
}
.about_p_wrap_3 img{
    margin-top: 42px;
    width: 32%;
    
}
.about_p_wrap_3 p {
    line-height: 40px;
    font-size: 20px;
    font-weight: bold;
    font-family: source-han-sans-japanese, sans-serif;
}


.about_p_wrap_4 {
    margin-left: 62.5%;
    margin-top: -28%;
}
.about_p_wrap_4 p{
    line-height: 40px;
    font-size: 20px;
    font-weight: bold;
    font-family: source-han-sans-japanese, sans-serif;
}
.about_p_wrap_5 {
    margin-left: 4.1%;
    margin-top: 12%;
}
.about_p_wrap_5 p{
    line-height: 40px;
    font-size: 20px;
    font-weight: bold;
    font-family: source-han-sans-japanese, sans-serif;
}

.about_p_wrap_5_2 {
    margin-left: 4.1%;
    margin-top: 2%;
}
.about_p_wrap_5_2 p{
    line-height: 40px;
    font-size: 15px;
    font-weight: bold;
    font-family: source-han-sans-japanese, sans-serif;
}

.about_p_wrap_6 dt {
    font-weight: bold;
    line-height: 40px;
    font-size: 17px;
    font-weight: bold;
    font-family: source-han-sans-japanese, sans-serif;
}
.about_p_wrap_6 dd {
    line-height: 27px;
    font-size: 17px;
    font-family: source-han-sans-japanese, sans-serif;
    margin-bottom: 19px;
}

.about_p_s {
    font-size: 14px !important;
    padding-top: 20px;
    font-weight: 0;
    font-family: source-han-sans-japanese, sans-serif;
    line-height: 31px !important;
} 
.about_p {
    text-align: center;
    padding: 66px 0;
    font-size: 14px;
    line-height: 24px;
}
/*--画像アニメーション220719追加--*/
.container {
    position: relative;
    width: 676px;
    max-width: 100%;
    height: 440px;
  }
  
  .img_ani {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: change-img-anim 15s infinite;
  }
  
  .img_ani:nth-of-type(1) {
    animation: change-img-anim-first 15s infinite;
      animation-delay: 0s;
  }
  .img_ani:nth-of-type(2) {
      animation-delay: 5s;
  }
  .img_ani:nth-of-type(3) {
      animation-delay: 10s;
  }
  @keyframes change-img-anim-first {
	0%{ opacity: 1;}
  25%{ opacity: 1;}
  35%{ opacity: 1;}
  45%{ opacity: 0;}
  100%{ opacity: 0;}
}

@keyframes change-img-anim {
    0%{ opacity: 0;}
    20%{ opacity: 1;}
    35%{ opacity: 1;}
    45%{ opacity: 0;}
    100%{ opacity: 0;}
  }

/*-------------------*/
  .container_2 {
    position: relative;
    width: 676px;
    max-width: 100%;
    height: 440px;
  }
  
  .img_ani_2 {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: change-img-anim 18s infinite;
  }
  
  .img_ani_2:nth-of-type(1) {
    animation: change-img-anim-first 18s infinite;
      animation-delay: 0s;
  }
  .img_ani_2:nth-of-type(2) {
      animation-delay: 6s;
  }
  .img_ani_2:nth-of-type(3) {
      animation-delay: 12s;
  }
  @keyframes change-img-anim-first {
	0%{ opacity: 1;}
  25%{ opacity: 1;}
  35%{ opacity: 1;}
  45%{ opacity: 0;}
  100%{ opacity: 0;}
}

@keyframes change-img-anim {
    0%{ opacity: 0;}
    20%{ opacity: 1;}
    35%{ opacity: 1;}
    45%{ opacity: 0;}
    100%{ opacity: 0;}
  }
  .container_3 {
    position: relative;
    width: 683px;
    max-width: 100%;
    height: 500px;
  }
  
  .img_ani {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: change-img-anim 15s infinite;
  }
  
  .img_ani:nth-of-type(1) {
    animation: change-img-anim-first 15s infinite;
      animation-delay: 0s;
  }
  .img_ani:nth-of-type(2) {
      animation-delay: 5s;
  }
  .img_ani:nth-of-type(3) {
      animation-delay: 10s;
  }
  @keyframes change-img-anim-first {
	0%{ opacity: 1;}
  25%{ opacity: 1;}
  35%{ opacity: 1;}
  45%{ opacity: 0;}
  100%{ opacity: 0;}
}

@keyframes change-img-anim {
    0%{ opacity: 0;}
    20%{ opacity: 1;}
    35%{ opacity: 1;}
    45%{ opacity: 0;}
    100%{ opacity: 0;}
  }

  /*-------------------*/
  .container_4 {
    position: relative;
    width: 676px;
    max-width: 100%;
    height: 440px;
  }
  
  .img_ani_4 {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: change-img-anim 20s infinite;
  }
  
  .img_ani_4:nth-of-type(1) {
    animation: change-img-anim-first 20s infinite;
      animation-delay: 0s;
  }
  .img_ani_4:nth-of-type(2) {
      animation-delay: 5s;
  }
  .img_ani_4:nth-of-type(3) {
      animation-delay: 10s;
  }
  .img_ani_4:nth-of-type(4) {
    animation-delay: 15s;
}
  @keyframes change-img-anim-first {
	0%{ opacity: 1;}
  25%{ opacity: 1;}
  35%{ opacity: 1;}
  45%{ opacity: 0;}
  100%{ opacity: 0;}
}

@keyframes change-img-anim {
    0%{ opacity: 0;}
    20%{ opacity: 1;}
    35%{ opacity: 1;}
    45%{ opacity: 0;}
    100%{ opacity: 0;}
  }
  /*--画像アニメーション230710追加--*/
.container {
    position: relative;
    width: 676px;
    max-width: 100%;
    height: 440px;
  }
  
  .img_ani_5 {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: change-img-anim5 20s infinite;
  }
  
  .img_ani_5:nth-of-type(1) {
    /*animation: change-img-anim-first 20s infinite;*/
      animation-delay: 0s;
  }
  .img_ani_5:nth-of-type(2) {
      animation-delay: 5s;
  }
  .img_ani_5:nth-of-type(3) {
      animation-delay: 10s;
  }
  .img_ani_5:nth-of-type(4) {
    animation-delay: 15s;
}
 /* @keyframes change-img-anim-first {
	0%{ opacity: 0;}
	20%{ opacity: 1;}
	30%{ opacity: 1;}
	35%{ opacity: 0;}
	100%{ opacity: 0;}
}*/

@keyframes change-img-anim5 {
    0%{ opacity: 0;}
	15%{ opacity: 1;}
    20%{ opacity: 1;}
	25%{ opacity: 1;}
    30%{ opacity: 1;}
	35%{ opacity: 0;}
	100%{ opacity: 0;}
  }
/*--------------------------------------------
footer
--------------------------------------------*/
footer {
    font-family: din-condensed, sans-serif;
    margin: 0 auto;
    width: 1366px;
    height: 608px;
    background-color: #3B3B3B;
    padding: 100px;
    box-sizing: border-box;
    text-align: center;
    color: #fff; 
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 34px;
    font-family: source-han-sans-japanese, sans-serif;
}
footer .pc_footer_logo {
    margin-bottom: 45px;
}
.dd_bottom {
    margin-bottom: 30px;
}
footer ul {
    display: flex;
    text-align: center;
    justify-content: center;
}
footer ul li a{
    color: #fff;
}
footer ul li:last-child{
    padding-left: 7px;
}
    

footer ul li a:visited{
    color: #fff;
}

footer a:visited {
    color: #fff !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;
    }
  }
  
  /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
   
  .blurTrigger{
      opacity: 0;
  }
/*インスタ埋め込み*/
.insta_list{
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin: 20px auto;
    width: 80%;
    margin-bottom: 8%;
}

.insta_list li{
    position: relative;
    width: calc((100% - 20px)/6);
    
}
.insta_wrap {
  text-align: center;
}
/*@media screen and (max-width: 750px){
    .insta_list li{
        width: calc((100% - 20px)/2);
    }
}*/

.insta_list li::before{
	content: "";
	display: block;
	padding-top: 100%;
}

.insta_list a{
	position: absolute;
    top: 0;
    object-fit: cover;
}

.insta_list img{
	width: 165px;
    height: 165px;
    object-fit: cover;
}
/*--------------------------------------------
メディアクエリ
--------------------------------------------*/
@media only screen and (max-width:1087px) {
       
}
@media only screen and (max-width:860px) {
    
}
@media only screen and (max-width:767px) {
    
}

@media only screen and (max-width:566px) {
   
}
@media only screen and (max-width: 599px){
  
}
@media only screen and (max-width:450px) {
   
}