@charset "UTF-8";
/* CSS Document */

.loading p {
  position:center;
 font-size: 30px;
    margin-left: 20px;
}









.loading {
  position: absolute;
  top: 50%;
  left: 50%;
}
.loading-bar {
  display: inline-block;
  width: 10px;
  height: 80px;
  border-radius: 20px;
  animation: loading 1.3s ease-in-out infinite;
}
.loading-bar:nth-child(1) {
  background-color: #DBDBDB;
  animation-delay: 0;
    margin-left: 5px;
    margin-right: 5px;
}
.loading-bar:nth-child(2) {
  background-color: #3498db;
  animation-delay: 0.09s;
     margin-left: 5px;
    margin-right: 5px;
}
.loading-bar:nth-child(3) {
  background-color: #f1c40f;
  animation-delay: .18s;
     margin-left: 5px;
    margin-right: 5px;
}
.loading-bar:nth-child(4) {
  background-color: #11C100;
  animation-delay: .27s;
     margin-left: 5px;
    margin-right: 5px;
}


.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #E03500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}













@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 175px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}





@keyframes loading {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1, 2.2);
  }
  40% {
    transform: scale(1);
  }
}



*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;  
}

ul,
ol {
    list-style: none;
}

a{
    color: inherit;
    text-decoration: none;
}
a:not(.link-button):hover {
    color: #146600;
}

body {
font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1;
    background-color: #EF4518;
}

img{
  max-width: 100%  
}
/*ヘッダー周り*/

.item-area {
    margin-top: 20px;
    display: flex;
    background-color: rgb(0 0 0 / 7%);
    border-radius: 14px;
}
.item-area img {
    width: 50%;
    max-width: 380px;
    padding-bottom: 30px;
    padding-top: 30px;
    padding-left: 30px;
}
.item-text {
    padding-top: 30px;
    padding-right: 30px;
}

.header{
    background-color: #D63720;
}
.header-inner {
    max-width: 1200px;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.toggle-menu-button {
    display: none;
}
.header-logo {
    display: block;
    width: 170px;
}
.site-menu ul {
    display: flex;
}
    
.site-menu ul li {
    margin-left: 20px;
    margin-right: 20px;    
}
.site-menu ul li a {
  font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    font-weight: bold;
    transition-duration: 0.5s;
}

/*#concept .site-menu ul li#nav-concept a, 
#menu .site-menu ul li#nav-menu a ,
#shop .site-menu ul li#nav-shop a ,
#access .site-menu ul li#nav-access a {
    color: #FFFFFF;
    pointer-events: none;
}*/
/*ページタイトル*/
/*タイトル背景（トップページとSHOPページを除く）*/
.title:not(#shop .title) {
  height: 310px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 10px #4b2c14;
}
/*ページタイトル*/
.title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: bold;
}
.title p {
  font-size: 14px;
  margin-top: 15px;
}
.bread-crumb ol {
    display: flex;
    margin-bottom: 25px;
}

.bread-crumb ol  li{
    margin-right: 25px;
    font-size: 0.9rem
}
.bread-crumb ol  li:not(:last-child)::after {
    content: ">";
    margin-left: 0.5rem;
}
/*アイテムリスト*/
.item-list dl {
  margin-top: 20px;
}
.item-list dt {
  font-weight: 500;
}
.item-list dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}
.item-list .price {
  font-weight: bold;
  margin-top: 15px;
}
.link-button {
background-color: #4C74F8;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
font-weight: 700;
    }
.link-button:hover {
    background-color: #112DD9;
}
/*フッター周り*/
.footer:not(#home .footer) {
    margin-top: 100px;
}
.footer {
    color: #ffffff;
    background-color: #24211b;
    padding-top: 30px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-logo {
    display: block;
    width: 235px;
    margin-top: 90px;
}
.footer-tel {
    font-size: 26px;
    font-weight: bold;
    margin-top: 28px;
}
.footer-time {
    font-size: 13px;
    margin-top: 16px;
}
.copyright {
    font-size: 14px;
    font-weight: bold;
    margin-top: 90px;
}

@media (max-width: 800px) {
    .site-menu ul {
     display: block;
     text-align: center;   
    }

.site-menu li {
    margin-top: 20px;
}
    .site-menu ul li a:hover {
        color: inherit;
    }    
    
#concept .site-menu ul li#nav-concept a, 
#menu .site-menu ul li#nav-menu a ,
#shop .site-menu ul li#nav-shop a ,
#access .site-menu ul li#nav-access a {
    color: #000;
    pointer-events: none;
    }
    
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    height: 50px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
.header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
}

.header-logo {
    width: 100px;
 }

.header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #ffffff;
    background-color: #736E62;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
}
.header-site-menu.is-show {
    display: block;
}
    
.toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url("../common_img/icon-menu.png");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
}
    /*メイン*/
    .main {
        padding-top: 50px;
    }
    .footer-logo {
        margin-top: 60px;
    }
    .footer-tel {
        font-size: 20px;
    }
    }































