@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap");
:root {
  --main-color: #e3e000;
  --ct1-color: #d70c18;
  --ct2-color: #ffe100;
  --ct3-color: #2cacce;
}
* {
  box-sizing: border-box;
}
html {
  background-color: #606060;
}
body {
  background-color: #fff;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 500;
}
body.not_scroll {
  height: 100%;
  overflow: hidden;
}

.sample {
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
img {
  max-width: 100%;
  height: auto;
}
/* ベース: モバイル (〜480px) */
p {
  font-size: 16px;
}
.container {
  width: 100%;
  padding: 24px;
}
/* スマホのみ */
@media (max-width: 480px) {
  .hidden_sp {
    display: none;
  }
}
/* 小タブレット〜 */
@media (min-width: 481px) {
  p {
    font-size: 18px;
  }
  .container {
    padding: 0px;
  }
}
/* タブレット〜 */
@media (min-width: 768px) {
  .container {
    max-width: 768px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hidden_tab {
    display: none;
  }
}
/* デスクトップ〜 */
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
  }
}
/* 大画面〜 */
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}
#header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
#header .logoBox {
  display: flex;
}
#header .logoBox .shopname {
  font-weight: 800;
  line-height: 1.1;
}
#header .logoBox .shopname span {
  font-size: 80%;
  font-weight: 500;
}
#header .logoBox .shopname span::after {
  content: "\a";
  white-space: pre;
}
@media (max-width: 1023px) {
  #header .logoBox {
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: row;
    width: calc(100% - 60px);
  }
  #header .logoBox .logo {
    flex: 1 1 35%;
    background-image: url(../image/logoBg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 100%;
    padding: 18px 10px 35px;
  }
  #header .logoBox .logo img {
    max-width: 85%;
  }
  #header .logoBox .shopname {
    flex-basis: 65%;
    font-size: calc(100vw / 30);
    margin-top: 15px;
  }
  #header .pcNavi {
    display: none;
  }
  .navBtn {
    z-index: 999999; /*ボタンを最前面に*/
    position: fixed;
    top: 0px;
    right: 0px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background-color: #000;
    display: block;
  }
  .navBtn .openbtn {
    position: relative;
    width: 60px;
    height: 60px;
    top: 0px;
    right: 0px;
    cursor: pointer;
    display: block;
  }
  .navBtn .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 30%;
    height: 2px;
    border-radius: 1px;
    background-color: #fff;
    width: 40%;
  }
  .navBtn .openbtn span:nth-of-type(1) {
    top: 20px;
  }
  .navBtn .openbtn span:nth-of-type(2) {
    top: 27px;
  }
  .navBtn .openbtn span:nth-of-type(3) {
    top: 34px;
  }

  .navBtn .openbtn.active {
    box-shadow: none;
  }
  .navBtn .openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: calc(55% / 2);
    transform: translateY(8px) rotate(-45deg);
    width: 45%;
    background: var(--main-color);
  }
  .navBtn .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .navBtn .openbtn.active span:nth-of-type(3) {
    top: 36px;
    left: calc(55% / 2);
    transform: translateY(-8px) rotate(45deg);
    width: 45%;
    background: var(--main-color);
  }

  #g-nav {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.4s ease,
      visibility 0s linear 0.6s;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--main-color);
  }
  #g-nav.panelactive {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition:
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.4s ease,
      visibility 0s;
    z-index: 9998;
    overflow-y: auto;
  }
  #g-nav .logoBox {
    display: flex;
    align-items: center;
    width: calc(100% - 60px);
    height: 60px;
    gap: 15px;
  }
  #g-nav .logoBox .logo {
    flex-basis: calc(40% - 15px);
    display: flex;
    flex-direction: column;
  }
  #g-nav .logoBox .logo a {
    width: 100%;
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #g-nav .logoBox .logo img {
    width: 85%;
  }
  #g-nav .logoBox .shopname {
    font-weight: 800;
    line-height: 1.1;
    flex-basis: 60%;
    font-size: calc(100vw / 30);
  }
  #g-nav .logoBox .shopname span {
    font-size: 80%;
    font-weight: 500;
  }
  #g-nav .logoBox .shopname span::after {
    content: "\a";
    white-space: pre;
  }
  .navWrap {
    padding: 15px;
  }
  .navWrap dl {
    border-bottom: 1px solid #000;
  }
  .navWrap dt {
    border-bottom: 1px solid #000;
    font-weight: 800;
  }
  .navWrap dd {
    margin-left: 1em;
  }
  .navWrap dd + dd {
    border-top: 1px dotted #000;
  }
  .navWrap dd + dt {
    border-top: 1px solid #000;
  }
  .navWrap dl span,
  .navWrap dl a {
    display: block;
    padding: 0.8em 1em;
  }
  .navWrap .home a {
    padding-left: 0;
  }
  .navWrap dl .home a::before {
    content: url(../image/ico_home.png);
    margin-right: 0.5em;
  }
  .navWrap a.blank {
    display: flex;
  }
  .navWrap a.blank::after {
    content: url(../image/ico_restore.png);
    margin-left: 0.5em;
  }
  .navWrap .btn_mitsu {
    width: 90%;
    margin: 15px auto;
  }
  .navWrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navWrap ul li + li {
    border-left: 1px solid #000;
  }
  .navWrap ul li a {
    display: block;
    padding: 0.5em 1em;
    font-weight: 400;
    font-size: calc(100vw / 32);
  }
}
@media (max-width: 767px) {
  .navWrap {
    margin-bottom: 80px;
  }
}

@media (min-width: 481px) and (max-width: 1023px) {
  #header .pcNavi {
    display: none;
  }
  #g-nav .logoBox .logo {
    flex-basis: calc(30% - 15px);
  }
  #g-nav .logoBox .logo img {
    width: 50%;
  }
  #header .logoBox .shopname {
    font-size: calc(100vw / 50);
  }
}

@media (min-width: 1024px) {
  #header .logoBox {
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px 20px;
    background-image: url(../image/logoBg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 100%;
    flex-direction: column;
    gap: 15px;
  }
  #header .logoBox .logo {
    width: 85%;
  }
  #header .pcNavi {
    position: absolute;
    top: 0;
    right: 30px;
    height: 120px;
    display: flex;
    align-items: center;
  }
  #header .pcNavi li {
    height: 60px;
    display: flex;
    flex-direction: column;
    border-radius: 99px;
    overflow: hidden;
  }
  #header .pcNavi li.toi {
    background-color: #000000;
    color: var(--main-color);
  }
  #header .pcNavi li a {
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2em;
  }
  #header .pcNavi li a:hover {
    background-color: rgba(55, 55, 55, 0.1);
  }
  .spNavi {
    display: none;
  }
}
#main {
  padding-top: 60px;
}
@media (min-width: 1024px) {
  #main {
    padding-top: 120px;
  }
}
.contsTtl {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  position: relative;
}
.contsTtl:before {
  position: absolute;
  bottom: 0px;
  left: calc(50% - 60px);
  width: 120px;
  height: 15px;
  content: "";
  border-radius: 3px;
  background: var(--main-color);
}
.contsTtl h1 {
  font-size: 22px;
}
@media (min-width: 768px) {
  .contsTtl {
    min-height: 200px;
  }
  .contsTtl:before {
    height: 30px;
  }
}

#footer {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 15px 0;
}
#footer .logoBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
#footer .logoBox .shopname {
  font-size: calc(100vw / 22);
  line-height: 1.2;
  font-weight: 900;
}
#footer .logoBox .shopname span {
  font-size: 12px;
  font-weight: 400;
  font-size: calc(100vw / 36);
}
#footer .logoBox .shopname span::after {
  content: "\a";
  white-space: pre;
}
@media (max-width: 767px) {
  #footer {
    padding-bottom: 80px;
    gap: 15px;
  }
  .footLink {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footLink ul {
    display: flex;
    gap: 8px;
    font-size: calc(100vw / 30);
  }
  .footLink .copyright {
  }
  #footer .logoBox {
    width: 50%;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  #footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  #footer .logoBox {
    flex-direction: row;
  }
  #footer .logoBox .logo {
    flex-basis: 160px;
  }
  #footer .logoBox .shopname {
    font-size: 24px;
  }
  #footer .logoBox .shopname span {
    font-size: 12px;
  }
  .footLink ul {
    display: flex;
  }
  .footLink ul li {
    display: flex;
    flex-direction: column;
  }
  .footLink ul li + li {
    border-left: 1px solid #000;
  }
  .footLink ul li a {
    flex-grow: 2;
    display: block;
    padding-inline: 1em;
  }
}
.fixed {
  position: fixed;
  z-index: 999;
}
@media (max-width: 480px) {
  .fixed {
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }
  .fixed a {
    width: 95%;
    display: block;
  }
}
@media (min-width: 481px) {
  .fixed {
    width: 100px;
    top: calc(50% - 50px);
    right: 8px;
  }
}
.scroll_table_wrap {
  position: relative;
}
@media (max-width: 480px) {
  .scroll_table {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .scroll_table table {
    width: 100%;
    margin-bottom: 20px;
    font-size: 80%;
  }
  .scroll_table table thead tr th {
    background-color: #eee;
  }
  .scroll_table table tr th {
    border: 1px solid #ccc;
    padding: 8px;
    background-color: #f2f2f2;
  }
  .scroll_table table tr td {
    border: 1px solid #ccc;
    padding: 8px;
  }
  .scroll::-webkit-scrollbar {
    height: 5px;
  }
  .scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .scroll::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .scroll_table_wrap {
    position: relative;
  }
  .scroll_table_wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);

    width: 120px;
    height: 120px;

    background: url("../image/scroll-hand.png") no-repeat center / contain;

    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 2;
  }

  /* 少しでもスクロールしたら非表示 */
  .scroll_table_wrap.scroll-start::after {
    opacity: 0;
  }
  /* 右端到達でも非表示 */
  .scroll_table_wrap.scroll-end::after {
    opacity: 0;
  }
  .scroll_table_wrap.no-scroll::after {
    display: none;
  }
}
@media (min-width: 481px) {
  .scroll_table table {
    margin: 0 auto 80px;
  }
  .scroll_table table tr th {
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f2f2f2;
  }
  .scroll_table table tr td {
    padding: 10px;
    border: 1px solid #ccc;
  }
}
