@import url("_reset.css");
@import url("_vars.css");

html {
  width: 100%;
  font-size: 13px;
  scroll-behavior: smooth;
  background-color: #bd986f;
}

body {
  font-family: var(--base-font);
  line-height: 1.5;
  color: #231815;
  width: 100%;
  font-feature-settings: "palt";
  word-wrap: break-word;
}

a {
  text-decoration: underline;
  outline: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

p:not(:last-child) {
  margin-bottom: 0.6em;
}

main {
  max-width: 480px;
  margin: 0 auto;
  background-color: var(--bg-color);
  padding-bottom: 50px;
  overflow: clip;
}
/****** セクションのフェードイン *******/
.section-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-fade.active {
  opacity: 1;
  transform: translateY(0);
}

/******* オンラインショップ **********/
.lineup {
  /* margin-top: 15%; */
  padding: 0 5%;
  position: relative;
}

.lineup .logo {
  width: 55%;
  margin: 0 auto;
}

.lineup .logo .title02 {
  display: block;
  width: 40%;
  margin: 0 auto;
}

.lineup .headline {
  font-family: var(--serif-font);
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  position: relative;
}

@media (min-width: 481px) {
  .lineup .headline {
    font-size: 24px;
  }
}

.lineup .headline::before,
.lineup .headline::after {
  content: '';
  position: absolute;
  width: 25%;
  top: 50%;
  border-top: 2px dotted #fff;
}

.lineup .headline::before {
  left: 0;
}

.lineup .headline::after {
  right: 0;
}

.lineup .headline.online {
  margin-top: 20px;
}

.lineup .headline.online::before,
.lineup .headline.online::after {
  width: 15%;
}

/* item */
.lineup .item {
  border: 3px solid #fff;
  padding: 0 15px 15px;
  position: relative;
  margin-top: 70px;
}

.lineup .item.animation .illust img {
  opacity: 0;
  transform: scale(0.7);
}

.lineup .item .title {
  height: 28px;
  text-align: center;
  transform: translateY(-50%);
}

.lineup .item .title img {
  height: 100%;
}

/* オンラインストア追加分 */
.lineup .item.store {
  margin-top: 15px;
  background-color: #794817;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 15px;
}

.store01,
.store02,
.store03,
.store04,
.store05 {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.85, 2.35, 0.71, 1);
  filter: drop-shadow(2px 2px 2px #727171);
}

.lineup .store > div {
  width: 49%;
  background: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 5px;
}

/* store active */
.store.active .store01 { opacity: 1; transition-delay: 0.2s; }
.store.active .store02 { opacity: 1; transition-delay: 0.4s; }
.store.active .store03 { opacity: 1; transition-delay: 0.6s; }
.store.active .store04 { opacity: 1; transition-delay: 0.8s; }
.store.active .store05 { opacity: 1; transition-delay: 1s; }

.store.active .store01:hover,
.store.active .store02:hover,
.store.active .store03:hover,
.store.active .store04:hover,
.store.active .store05:hover {
  filter: drop-shadow(1px 1px 1px #aaa);
  transition-delay: 0.001s;
}

/* 会社概要 */
.company {
  padding: 0 5%;
  margin: 40px 0;
}

.company .inner {
  background: #fff;
  padding: 10px;
  border-radius: 20px;
}

.company table {
  padding: 10px;
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
  font-size: 13px;
}

@media (min-width: 481px) {
  .company table {
    font-size: 1.15rem;
  }
}

.company .headline {
  font-family: var(--serif-font);
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  position: relative;
  margin-bottom: 15px;
}

.company .headline::before,
.company .headline::after {
  content: '';
  position: absolute;
  width: 25%;
  top: 50%;
  border-top: 2px dotted #fff;
}

.company .headline::before {
  left: 0;
}

.company .headline::after {
  right: 0;
}

.company table th,
.company table td {
  border: 2px solid #fff;
  background-color: #fff7d4;
  border-radius: 0 10px 10px 0;
  padding: 1em;
  text-align: center;
}

.company table th {
  background-color: #231815;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 10px 0 0 10px;
  width: 20%;
  min-width: 4em;
  position: relative;
}

.company table th::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 10px solid #231815;
  z-index: 2;
}

.company table th::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + 2px);
  transform: translateY(-50%);
  border: 12px solid transparent;
  border-left: 12px solid #fff;
  z-index: 1;
}
.company table td{
  text-align: left;
}
/* ハンバーガーメニュー */
.menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  font-family: var(--serif-font);
  font-weight: 800;
}

.menu li {
  background-image: linear-gradient(60deg, #7e5b20 0%, #7e5b20 100%);
  border-bottom: 1px solid #3b3b3b;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  height: calc(100vh / 5);
  width: 100%;
  position: relative;
}

.menu li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
}

.menu li a:hover {
  background-image: linear-gradient(60deg, rgba(240,196,121,0.3) 0%, rgba(245,195,129,0.3) 100%);
}

.menu li {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.menu.open li {  transform: translateX(100vw);}

.menu li:nth-of-type(1) { transition-delay: 0s; }
.menu li:nth-of-type(2) { transition-delay: 0.025s; }
.menu li:nth-of-type(3) { transition-delay: 0.05s; }
.menu li:nth-of-type(4) { transition-delay: 0.075s; }
.menu li:nth-of-type(5) { transition-delay: 0.1s; }
.menu li:nth-of-type(6) { transition-delay: 0.125s; }
.menu li:nth-of-type(7) { transition-delay: 0.15s; }
.menu li:nth-of-type(8) { transition-delay: 0.175s; }
.menu li:nth-of-type(9) { transition-delay: 0.2s; }
.menu li:nth-of-type(10) { transition-delay: 0.225s; }
.menu li:nth-of-type(11) { transition-delay: 0.275s; }
  .menu li:nth-of-type(12) { transition-delay: 0.3s; }
  .menu li:nth-of-type(13) { transition-delay: 0.325s; }
  .menu li:nth-of-type(14) { transition-delay: 0.35s; }

@media (max-width: 768px) {
  .menu.open li:nth-of-type(1) { transition-delay: 0s; }
  .menu.open li:nth-of-type(2) { transition-delay: 0.025s; }
  .menu.open li:nth-of-type(3) { transition-delay: 0.05s; }
  .menu.open li:nth-of-type(4) { transition-delay: 0.075s; }
  .menu.open li:nth-of-type(5) { transition-delay: 0.1s; }
  .menu.open li:nth-of-type(6) { transition-delay: 0.125s; }
  .menu.open li:nth-of-type(7) { transition-delay: 0.15s; }
  .menu.open li:nth-of-type(8) { transition-delay: 0.175s; }
  .menu li:nth-of-type(9) { transition-delay: 0.2s; }
  .menu li:nth-of-type(10) { transition-delay: 0.225s; }
  .menu li:nth-of-type(11) { transition-delay: 0.275s; }
  .menu li:nth-of-type(12) { transition-delay: 0.3s; }
  .menu li:nth-of-type(13) { transition-delay: 0.325s; }
  .menu li:nth-of-type(14) { transition-delay: 0.35s; }
}

@media (max-width: 1000px) {
  .menu ul { flex-direction: column; }
}

.hamburger {
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  top: 20px;
  right: 20px;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 999;
}

.hamburger:focus { outline: 0; }

.hamburger .line {
  background-color: #000;
  display: block;
  margin: 4px auto;
  height: 2px;
  width: 20px;
  transition: all 0.1s ease-in;
}

.hamburger.open .line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open .line:nth-child(2) { opacity: 0; }
.hamburger.open .line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* -------------------- バナー -------------------- */
#inuyama_bnr .headline {
  text-align: center;
  margin: 0 auto;
  display: block;
}

#inuyama_bnr .headline img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.banner{
  padding: 0 5%;
  margin: 40px 0;
}

.banner .inner{
  background: #fff;
  padding: 10px;
  border-radius: 20px;
}
#inuyama_bnr .inner a{
  display: inline-block;
  margin-bottom: 10px;
}




