@charset "UTF-8";
/*リセット*/
figure {
  margin: 0;
}

dd {
  margin: 0;
}

nav,
ul,
li,
ol {
  margin: 0;
  padding: 0;
}

nav ul {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

/*共通*/
html,
body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  html,
  body {
    font-size: 14px;
  }
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
}
.container p {
  line-height: 2;
}

/*セクションタイトル*/
section h2 {
  font-family: "Noto Serif JP", "Noto Serif", serif;
  font-size: 2rem;
  text-align: center;
  background: -webkit-gradient(linear, right top, left top, from(rgb(235, 203, 67)), to(rgb(119, 84, 0)));
  background: linear-gradient(270deg, rgb(235, 203, 67) 0%, rgb(119, 84, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  section h2 {
    font-size: 1.5rem;
  }
}
section h2 img {
  height: 50px;
}
@media (max-width: 768px) {
  section h2 img {
    height: 35px;
  }
}

section {
  padding: 8vw 0;
}

/*フェード表示させる要素に使用するためのクラス*/
.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

/*header*/
#header {
  width: 100%;
  height: 100vh;
  position: relative;
}
#header h1 {
  -webkit-filter: drop-shadow(2px 4px 6px #000);
          filter: drop-shadow(2px 4px 6px #000);
}
@media (max-width: 1024px) {
  #header h1 {
    z-index: 10;
  }
}
@media (max-width: 768px) {
  #header h1 img {
    width: 85%;
  }
}
#header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1024px) {
  #header nav ul {
    padding: 30px 0;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px;
  }
}
#header nav li {
  margin-left: 30px;
}
#header nav li a {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px #121212;
  font-size: 20px;
}
#header nav li a:hover {
  background: -webkit-gradient(linear, right top, left top, from(rgb(235, 203, 67)), to(rgb(119, 84, 0)));
  background: linear-gradient(270deg, rgb(235, 203, 67) 0%, rgb(119, 84, 0) 100%);
  text-shadow: none;
  /* hover時は影なし */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#header h2 {
  font-size: 1.8rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 0px 20px 50px 20px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  /* 初期は透明 */
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  /* 中央寄せ(-50%)を保ったままYだけ下げる */
  -webkit-animation: h2-fade-in 0.9s ease-out forwards;
          animation: h2-fade-in 0.9s ease-out forwards;
}
@-webkit-keyframes h2-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@keyframes h2-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  #header h2 {
    font-size: 1.2rem;
    padding: 0px 5px 50px 5px;
  }
}
#header h2 img {
  -webkit-filter: drop-shadow(2px 4px 6px #000);
          filter: drop-shadow(2px 4px 6px #000);
  display: block;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 30px;
  width: 40%;
}
@media (max-width: 768px) {
  #header h2 img {
    width: 60%;
    height: auto;
  }
}
#header .header-inner {
  position: fixed;
  width: 100%;
  z-index: 10;
  padding: 0 20px;
  top: 10px;
}
#header .header-inner .displayflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .hmenu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  width: 50px;
  height: 50px;
  padding: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background: rgba(0, 0, 0, 0.6);
}
#header .hmenu .menu-icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) {
  #header .hmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#header .hmenu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#header .hmenu span:nth-child(1) {
  top: 22%;
}
#header .hmenu span:nth-child(2) {
  top: 50%;
}
#header .hmenu span:nth-child(3) {
  top: 78%;
}
#header .mainvisual {
  height: 100%;
  width: 100%;
}
#header .mainvisual .mainvisual-list {
  height: 100%;
  width: 100%;
}
#header .mainvisual-item {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-animation: move 25s infinite;
          animation: move 25s infinite;
}
#header .mainvisual-item img {
  height: 100%;
  width: 100%;
}
#header .mainvisual-item:first-child {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#header .mainvisual-item:nth-child(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
#header .mainvisual-item:nth-child(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
#header .mainvisual-item:nth-child(4) {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
#header .mainvisual-item:last-child {
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}
@-webkit-keyframes move {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes move {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.open #header nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgb(114, 113, 113);
  background: -webkit-gradient(linear, left top, right bottom, from(rgb(29, 32, 136)), to(rgb(145, 93, 163)));
  background: linear-gradient(to bottom right, rgb(29, 32, 136), rgb(145, 93, 163));
  text-align: center;
}
.open #header nav .menu a {
  font-size: 30px;
}
.open #header .hmenu {
  z-index: 20;
}
.open #header .hmenu span:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
}
.open #header .hmenu span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #header .hmenu span:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
}

/*message*/
#message {
  position: relative;
}
#message .container {
  text-align: center;
}
#message .container p:first-of-type {
  margin-bottom: 30px;
}
#message .wave-p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}
#message .wave-p .wave {
  position: relative;
  height: 100vh;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
#message .wave-p .wave::before {
  position: absolute;
  top: 80%;
  left: -50%;
  width: 200%;
  aspect-ratio: 1/1;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(245, 245, 245, 0.4)), color-stop(50%, rgba(245, 245, 245, 0.4)), to(rgba(245, 245, 245, 0.4)));
  background-image: linear-gradient(90deg, rgba(245, 245, 245, 0.4) 0%, rgba(245, 245, 245, 0.4) 50%, rgba(245, 245, 245, 0.4) 100%);
  border-radius: 50% 50%/50% 80%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: top 2s ease;
  transition: top 2s ease;
  -webkit-animation: anime linear 12s infinite;
          animation: anime linear 12s infinite;
  content: "";
}
@-webkit-keyframes anime {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes anime {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*strongtaste*/
#strongtaste {
  position: relative;
  /* background設定：最初に画像、次にグラデーション */
  background: url(../img/bg1.png) repeat, -webkit-gradient(linear, left top, right bottom, from(rgba(255, 227, 0, 0.2)), to(rgba(75, 0, 85, 0.2)));
  background: url(../img/bg1.png) repeat, linear-gradient(to bottom right, rgba(255, 227, 0, 0.2), rgba(75, 0, 85, 0.2));
  background-size: 400px, cover;
  background-blend-mode: normal;
  width: 100%;
  -webkit-animation: overview 5s linear infinite;
          animation: overview 5s linear infinite;
}
#strongtaste .bg1 {
  position: absolute;
  bottom: 0;
  left: 0;
}
#strongtaste .bg3 {
  position: absolute;
  top: 0;
  right: 0;
}
#strongtaste p + p {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
#strongtaste #strongtaste-img {
  margin: 30px auto;
  display: block;
  width: 50%;
}
@media (max-width: 768px) {
  #strongtaste #strongtaste-img {
    width: 60%;
  }
}
@-webkit-keyframes overview {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: -400px 400px, 0 0;
  }
}
@keyframes overview {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: -400px 400px, 0 0;
  }
}

/*groupcompany*/
#groupcompany .group-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
#groupcompany .group-logo a {
  display: inline-block;
}
#groupcompany .group-logo a:hover img {
  -webkit-transform: translateY(-2px) scale(1.03);
          transform: translateY(-2px) scale(1.03);
  /* ふわっと拡大 */
}
#groupcompany .group-logo a img {
  display: block;
  /* 余白のにじみ防止 */
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease, -webkit-filter 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease, -webkit-filter 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease, -webkit-transform 0.25s ease, -webkit-filter 0.25s ease;
}
#groupcompany .group-logo .logo-animation {
  opacity: 0;
  -webkit-filter: blur(30px);
          filter: blur(30px);
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  width: 50%;
}
@media (max-width: 768px) {
  #groupcompany .group-logo .logo-animation {
    width: 80%;
    margin: 0 auto;
  }
}
#groupcompany .group-logo .animation-style {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 1s 0.5s;
  transition: 1s 0.5s;
}
@media (max-width: 768px) {
  #groupcompany .group-logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#aboutus {
  /* background設定：最初に画像、次にグラデーション */
  background: url(../img/bg1.png) repeat, -webkit-gradient(linear, left top, right bottom, from(rgba(255, 227, 0, 0.2)), to(rgba(75, 0, 85, 0.2)));
  background: url(../img/bg1.png) repeat, linear-gradient(to bottom right, rgba(255, 227, 0, 0.2), rgba(75, 0, 85, 0.2));
  background-size: 400px, cover;
  background-blend-mode: normal;
  width: 100%;
  -webkit-animation: overview 5s linear infinite;
          animation: overview 5s linear infinite;
}
@keyframes overview {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: -400px 400px, 0 0;
  }
}
#aboutus .about-container {
  background-color: #fff;
}
#aboutus dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
}
@media (max-width: 768px) {
  #aboutus dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#aboutus dt {
  width: 20%;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  #aboutus dt {
    width: 100%;
    padding-bottom: 10px;
  }
}
#aboutus dt:last-of-type {
  padding-bottom: 0;
}
@media (max-width: 768px) {
  #aboutus dt:last-of-type {
    padding-bottom: 5px;
  }
}
#aboutus dd {
  width: 80%;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  #aboutus dd {
    width: 100%;
  }
}
#aboutus dd:last-of-type {
  padding-bottom: 0;
}
#aboutus iframe {
  width: 100%;
  margin-top: 20px;
}

/*footer*/
footer {
  text-align: center;
  margin: 30px 0;
}
footer img {
  display: block;
  margin: 0 auto;
  padding-bottom: 10px;
  width: 15%;
}
footer small {
  padding-top: 30px;
  background: -webkit-gradient(linear, right top, left top, from(rgb(235, 203, 67)), to(rgb(119, 84, 0)));
  background: linear-gradient(270deg, rgb(235, 203, 67) 0%, rgb(119, 84, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}