* {
  margin: 0;
  padding: 0;
}
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  position: relative;
  color: #000;
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  line-height: 160%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}
body {
  -webkit-animation: fadeIn 4s ease 0s 1 normal;
  -moz-animation: fadeIn 4s ease 0s 1 normal;
  animation: fadeIn 4s ease 0s 1 normal;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
body > #wrapper {
  height: 100%;
}
a,
a:link,
a:visited,
a:active,
a:hover {
  color: #111;
}
.header {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  width: 100%;
}
.header__title {
  width: 180px;
  height: 22px;
}
.header__title img {
  width: 100%;
  height: 100%;
}
.header__title__link {
  display: block;
}
.header__description {
  font-size: 8px;
  letter-spacing: 0.1em;
}
.header__sns__listing {
  display: flex;
  gap: 0 15px;
}
.header__sns__item--cart {
  width: 28px;
  height: 25px;
}
.header__sns__item--insta {
  width: 25px;
  height: 25px;
}
.header__sns__link img {
  display: block;
  width: 100%;
  height: 100%;
}

/*//////////////////////////////////////////////////////////
//  - グロナビ（202406加筆）
//////////////////////////////////////////////////////////*/
nav {
  width: 100%;
  margin: 0 auto 40px auto;
  padding: 0;
}

nav ul{
  margin-top: 24px;
  padding: 14px 0;
  display: flex;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  justify-content: space-evenly;
}

nav ul li {
  position: relative;
}

nav ul li.online-shop {
  display: none;
}

nav ul li a,
nav ul li span{
  font-weight: 300;
  text-decoration: none;
}

.trigger-child {
  position: relative;
  cursor: pointer;
}

.trigger-child::before {
  position: absolute;
  top: 20px;
  width: 100%;
  height: 24px;
  content: '';
}

.child-list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 40px;
  left: -10px;
  z-index: 2;
  width: 190px;
  background-color: #fff;
  transition-property: opacity;
  transition-duration: .3s;
}

.child-list:hover {
  opacity: 1;
  visibility: visible;
}

.trigger-child:hover + .child-list,
.trigger-child.is-show + .child-list {
  opacity: 1;
  visibility: visible;
}

.child-item {
  display: flex;
  align-items: center;
  height: 52px;
  padding: 0 20px;
  border-bottom: 1px dashed #000;
  font-size: 13px;
}

.child-item:hover {
  background-color: #eee;
}

.main {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 80px - 105px - 40px);
  margin: 0 auto 40px auto;
  padding: 0;
}
.main__inner {
  position: relative;
}
.main .section {
  margin: 0;
  padding: 0 5% 0;
}
.main .section.mainvisual{
  padding: 40px 5% 0;
}
.main .section__title {
  position: relative;
  width: auto;
  height: 50px;
  text-align: center;
  margin: 0 auto 20px auto;
}
.main .section__title--text {
  font-size: 28px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.main__pagetop {
  position: fixed;
  width: 40px;
  height: 40px;
  left: 50%;
  bottom: 30px;
  margin: 0 0 0 -20px;
  z-index: 999;
}
.main__pagetop__link {
  position: relative;
  display: block;
  color: #000 !important;
  font-size: 24px;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  margin: 0 auto;
}
.main__pagetop__link:before {
  position: absolute;
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #000;
  transform: rotate(45deg);
  z-index: -1;
}
.main__pagetop__link:hover {
  color: #fff !important;
}
.main__pagetop__link:hover:before {
  background-color: #000;
}
.footer {
  position: relative;
  text-align: center;
  width: 100%;
  background-color: #bfc1c6;
  padding: 40px 0;
  z-index: 9999;
}
.footer__copyrights {
  color: #fff;
  font-size: 12px;
}

/*//////////////////////////////////////////////////////////
//  - Service
//////////////////////////////////////////////////////////*/

#section .service {
  margin-top: 30px;
  padding: 0 5%;
}

.service__intro {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.service__items-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  background-color: #EBEDF1;
}

.service__items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  padding: 15px;
}

.service__item,
.service__item:link,
.service__item:active,
.service__item:visited {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 14px) / 2);
  height: 58px;
  background-color: #0D0D0D;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
}
