@charset "UTF-8";
/* smoothscroll */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-smooth: always;
}

/* ボタン */
.button {
  display: none; /* 初期状態で非表示 */
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 1000;
}
.button__ticket {
  transition: 0.3s;
}
.button__ticket:hover {
  filter: brightness(120%);
  transition: 0.3s;
}
.button__box {
  background: rgba(0, 0, 0, 0.5);
  width: 119px;
  height: 38px;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 15px;
}
.button__box--image {
  width: 21px;
  height: auto;
  vertical-align: bottom;
}
.button__box--image:hover {
  opacity: 0.5;
  transition: 0.2s;
}
.button.visible {
  visibility: visible; /* 表示 */
  opacity: 1; /* 不透明 */
}

/* ヘッダー */
.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
}
.header__wrap {
  width: 100%;
  height: 80px;
  position: relative;
}
.header__hamburger {
  display: none;
}
.header__hamburger-menu {
  display: none;
}
.header__logo {
  position: absolute;
  top: 0;
  left: 10px;
}
.header__logo a {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__logo a img {
  width: 100%;
  width: 190px;
  transition: 0.3s;
}
.header__logo a img:hover {
  filter: brightness(300%);
  transition: 0.3s;
}
.header__menu {
  position: absolute;
  top: 15px;
  right: 42px;
}
.header__menu-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}
.header__menu-link {
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.header__menu-link img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 2px;
}
.header__menu-link img:hover {
  opacity: 0.6;
}
.header__menu-link:hover {
  color: red;
  opacity: 0.8;
}
.header__nav {
  min-width: 1200px;
  max-width: 1200px;
  width: 80%;
  min-width: 62.5vw;
  margin: 0 auto;
}
.header__nav-list {
  height: 80px;
  display: flex;
  justify-content: space-evenly;
  line-height: 80px;
}
.header__nav-link {
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  font-style: normal;
  font-size: clamp(1rem, 1.0625vw, 17px);
  white-space: nowrap;
  height: 70px;
}
.header__nav-link img {
  max-width: 144px;
  vertical-align: middle;
  transition: 0.3s;
}
.header__nav-link img:hover {
  filter: brightness(120%);
  transition: 0.3s;
}
.header__nav-link:hover {
  color: red;
  opacity: 0.8;
}

.mainvisual {
  overflow: hidden;
  background-color: #000;
}
.mainvisual__flow {
  width: 100%;
  height: 80vh;
  max-height: 910px;
  background: url("../img/main_bk.webp") no-repeat;
  background-position: center bottom;
  transform-origin: center top; /* 変形の基点を上中央に設定 */
  background-size: 110%;
  will-change: transform, filter; /* アニメーションで変わるプロパティを指定 */
  animation-name: blurAnime;
  animation-duration: 1.5s; /* アニメーションの時間を1.5秒に延長 */
  animation-timing-function: ease-in-out; /* 緩やかに始まり緩やかに終わる */
  animation-fill-mode: forwards;
}
.mainvisual__wrap {
  height: 100%;
  background: url("../img/maintext.webp") no-repeat;
  background-size: 250px;
  background-position: top 10% left 12%;
  will-change: transform, filter; /* アニメーションで変わるプロパティを指定 */
  filter: brightness(0.2) blur(120px); /* 初期状態で黒っぽくぼかす */
  animation-name: blurAnime;
  animation-duration: 3.2s; /* アニメーションの時間を1.5秒に延長 */
  animation-timing-function: ease-in-out; /* 緩やかに始まり緩やかに終わる */
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: brightness(0.2) blur(20px);
    transform: scale(1); /* スケールをそのまま使う場合 */
  }
  to {
    filter: brightness(1) blur(0);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* 拡大感を演出するための影効果 */
    width: 100%; /* アニメーション後に幅をリセット */
  }
}
/* バナー */
.banner {
  position: relative;
  width: 100%;
  height: 190px;
  background: url("../img/about_content1.svg");
  background-size: cover;
  background-blend-mode: screen;
}
.banner img {
  vertical-align: top;
}
.banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px; /* 線の太さ */
  background: linear-gradient(90deg, #ae8625 0%, #f7ef8a 30%, #d2ac47 70%, #edc967 100%); /* 線の色 */
  z-index: 1; /* テキストより上に表示 */
}
.banner__wrap {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.banner__sp {
  display: none;
}
.banner__inner {
  padding-top: 104px;
  color: #fff;
  text-align: center;
}
.banner__img-sp {
  display: none;
}
.banner__flex-date {
  font-size: 25px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}
.banner__text {
  width: 920px;
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.banner__bk {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner__date {
  /* 中央に配置 */
  width: 920px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
}
.banner__date-sp {
  display: none;
}

/* お知らせ */
.news {
  width: 100%;
  height: 513px;
}
.news__wrap {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding-top: 99px;
}
.news__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  font-size: 30px;
  font-style: normal;
  text-align: center;
  margin-bottom: 52px;
  letter-spacing: 0.03em;
}
.news__list {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.news__item {
  font-size: 17px;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 17.6px;
  margin-bottom: 18.2px;
  padding-left: 83px;
  font-family: "ten-mincho", serif;
  font-style: normal;
}
.news__item:last-child {
  margin-bottom: 23.5px;
  border-bottom: none;
}
.news__date {
  font-size: 13px;
  letter-spacing: 0.03em;
  margin-right: 27px;
}
.news__latest {
  position: relative;
}
.news__latest::before {
  content: "NEW";
  position: absolute;
  top: 0;
  left: -82px;
  background: linear-gradient(180deg, #ff0000 0%, #db0000 100%);
  color: #fff;
  width: 60px;
  height: 21px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 21px;
  border-radius: 10px;
}
.news__text {
  letter-spacing: 0.05em;
}
.news__btn {
  max-width: 1000px;
  width: 100%;
  text-align: right;
  margin: 0 auto;
}
.news__btn-link {
  position: relative;
  display: inline-block;
  width: 233px;
  height: 46px;
  background: #efefef;
  border: 1px solid #d5a848;
  text-align: center;
  line-height: 46px;
  font-size: 15px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  border-radius: 5px;
  letter-spacing: 0.01em;
}
.news__btn-link img {
  position: absolute;
  vertical-align: middle;
  right: 15px;
  top: 14px;
}
.news__btn:hover:hover {
  opacity: 0.6;
  transition: 0.3s;
}

/* テーブルウェアフェスティバルについて */
.about {
  width: 100%;
  height: 400px;
  background: url("../img/about_content1.svg");
  background-blend-mode: screen;
  background-size: cover;
}
.about__wrap {
  width: 100%;
  height: 400px;
}
.about__inner {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}
.about__title {
  padding-top: 70px;
  text-align: center;
  margin-bottom: 20px;
}
.about__text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  font-size: 17px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.7em;
  text-shadow: 0 0 1px #eff;
}

.section-wrap {
  position: relative;
}
.section-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/feature2_left@2.webp"), url("../img/feature2_right@2.webp");
  background-repeat: repeat-y, repeat-y;
  background-position: left top, right top;
  background-size: 10%, 10%;
  z-index: 1;
  pointer-events: none;
}

/* feature1 */
.feature1,
.feature2 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 700px;
  background: url("../img/welcome_content1.webp") no-repeat center/cover;
}
.feature1__wrap,
.feature2__wrap {
  width: 100%;
  height: 700px;
}
.feature1__inner,
.feature2__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding-top: 96px;
}
.feature1__flex,
.feature2__flex {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  color: #140700;
  margin-bottom: 19px;
  z-index: 2;
}
.feature1__flex-left,
.feature2__flex-left {
  width: 40%;
  max-width: 400px;
}
.feature1__lead,
.feature2__lead {
  font-size: 15px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  text-align: center;
  line-height: 26.5px;
  margin-bottom: 6px;
}
.feature1__title,
.feature2__title {
  width: 100%;
  max-width: 400px;
  position: relative;
  display: inline-block;
  font-size: 36px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  text-align: center;
  line-height: 45px;
  margin-bottom: 30px;
}
.feature1__line,
.feature2__line {
  vertical-align: text-top;
  width: 100%;
  max-width: 400px;
  max-height: 3px;
}
.feature1__title--sub,
.feature2__title--sub {
  display: block;
  font-size: 24px;
}
.feature1__text,
.feature2__text {
  padding: 0 25px;
  font-size: 15px;
  font-weight: 800;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.025em;
  margin-bottom: 21px;
  line-height: 26.5px;
}
.feature1 .feature2__text,
.feature2 .feature2__text {
  margin-bottom: 93px;
}
.feature1__image,
.feature2__image {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.feature1__image-left,
.feature2__image-left {
  width: 50%;
}
.feature1__image-right,
.feature2__image-right {
  width: 50%;
}
.feature1__flex-right,
.feature2__flex-right {
  width: 60%;
  max-width: 760px;
}
.feature1__image-main,
.feature2__image-main {
  width: 100%;
  max-width: 760px;
}
.feature1__bland-sp,
.feature2__bland-sp {
  display: none;
}
.feature1__bland-menu,
.feature2__bland-menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  margin: 0 19px;
}
.feature1__bland-item,
.feature2__bland-item {
  font-size: 12px;
  font-family: "zen old mincho", serif;
  font-weight: 800;
  color: #140700;
  margin-right: 8px;
  white-space: nowrap;
}
.feature1__bland-item::after,
.feature2__bland-item::after {
  content: ",";
}
.feature1__bland-item--title::after,
.feature2__bland-item--title::after {
  content: "";
}
.feature1__bland-item:nth-child(1),
.feature2__bland-item:nth-child(1) {
  margin-right: 10px;
}
.feature1__bland-item:nth-child(1)::after,
.feature2__bland-item:nth-child(1)::after {
  content: "";
}
.feature1__bland-item:last-of-type::after,
.feature2__bland-item:last-of-type::after {
  content: "";
}

.feature2__flex {
  flex-direction: row-reverse;
}

/* welcome */
.welcome {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 700px;
  background: url("../img/welcome_content1.webp") no-repeat center/cover;
}
@media only screen and (min-resolution: 192dpi) {
  .welcome {
    background: url("../img/welcome_content1@2.webp") no-repeat center/cover;
  }
}
.welcome__wrap {
  width: 100%;
  height: 700px;
}
.welcome__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding-top: 96px;
}
.welcome__flex {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  color: #140700;
  margin-bottom: 19px;
}
.welcome__flex-left {
  width: 40%;
  max-width: 400px;
}
.welcome__lead {
  font-size: 15px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  text-align: center;
  line-height: 26.5px;
  margin-bottom: 6px;
}
.welcome__title {
  width: 100%;
  max-width: 400px;
  position: relative;
  display: inline-block;
  font-size: 36px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  text-align: center;
  line-height: 45px;
  margin-bottom: 30px;
}
.welcome__line {
  vertical-align: text-top;
  width: 100%;
  max-width: 400px;
  max-height: 3px;
}
.welcome__title--sub {
  display: block;
  font-size: 24px;
}
.welcome__text {
  padding: 0 25px;
  font-size: 15px;
  font-weight: 800;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.025em;
  margin-bottom: 40px;
  line-height: 26.5px;
}
.welcome__image {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.welcome__image-left {
  width: 50%;
}
.welcome__image-right {
  width: 50%;
}
.welcome__flex-right {
  width: 60%;
  max-width: 760px;
}
.welcome__image-main {
  width: 100%;
  max-width: 760px;
}
.welcome__bland-sp {
  display: none;
}
.welcome__bland-menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  margin: 0 19px;
}
.welcome__bland-item {
  font-size: 12px;
  font-family: "zen old mincho", serif;
  font-weight: 800;
  color: #140700;
  margin-right: 8px;
  white-space: nowrap;
}
.welcome__bland-item::before {
  content: "・";
}
.welcome__bland-item--title::before {
  content: "";
}
.welcome__bland-item:nth-child(1) {
  margin-right: 10px;
}
.welcome__bland-item:nth-child(1)::before {
  content: "";
}

/* welcome-second */
.welcome-second {
  overflow: hidden;
  width: 100%;
  height: 700px;
  background: linear-gradient(to bottom, rgba(128, 196, 197, 0.5) 0%, rgba(128, 196, 197, 0.3) 30%, transparent 48%), url("../img/feature2_content.webp") no-repeat center/cover;
  background-blend-mode: color;
  background-size: 100%;
  background-position: top;
}
.welcome-second .welcome__title {
  font-size: 36px;
}
.welcome-second .welcome__flex {
  flex-direction: row-reverse;
}

/* feature3 */
.feature3 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  background: linear-gradient(to bottom, rgb(183, 196, 217) 0%, rgba(183, 196, 217, 0.3) 30%, transparent 60%), url("../img/feature3_content.webp") no-repeat center/cover;
  background-blend-mode: color;
}
.feature3__wrap {
  width: 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: left 13px top 2px, right 8px top 2px;
}
.feature3__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 60px;
}
.feature3__section-title {
  font-size: 30px;
  font-family: "zen old mincho", serif;
  font-weight: 800;
  text-align: center;
  margin-bottom: 65px;
  letter-spacing: 0.04em;
}
.feature3__flex {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: normal;
  margin-bottom: 19px;
}
.feature3__flex-left {
  width: 60%;
  max-width: 760px;
}
.feature3__lead {
  font-size: 17px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  text-align: center;
  line-height: 0.5em;
  margin-bottom: 6px;
}
.feature3__lead img {
  vertical-align: sub;
  margin-left: 10px;
}
.feature3__title {
  width: 100%;
  max-width: 400px;
  position: relative;
  display: inline-block;
  font-size: 28px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  text-align: center;
  line-height: 62px;
  margin-bottom: 15px;
  letter-spacing: 0.03em;
}
.feature3__line {
  vertical-align: text-top;
  width: 100%;
  max-width: 400px;
  max-height: 3px;
}
.feature3__title--sub {
  display: block;
  font-size: 24px;
}
.feature3__text {
  padding: 0 25px;
  font-size: 15px;
  font-weight: 800;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.025em;
  margin-bottom: 63px;
  line-height: 25.5px;
}
.feature3__image {
  display: flex;
  justify-content: center;
  width: 100%;
}
.feature3__image-left {
  width: 50%;
}
.feature3__image-right {
  width: 50%;
}
.feature3__flex-right {
  width: 40%;
  max-width: 400px;
}
.feature3__image-main {
  width: 100%;
  max-width: 760px;
}
.feature3__bland {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: end;
  margin-bottom: 70px;
}
.feature3__bland-menu {
  display: flex;
  justify-content: left;
  width: 100%;
  max-width: 400px;
}
.feature3__bland-sp {
  display: none;
}
.feature3__bland-item {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
.feature3__bland-item::before {
  content: "・";
}
.feature3__bland-item--title::before {
  content: "";
}
.feature3__main {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  font-style: normal;
  text-align: center;
}
.feature3__main-wrap {
  margin: 0 auto;
}
.feature3__main-lead {
  font-size: 17px;
  line-height: 0.5em;
  margin-bottom: 1px;
}
.feature3__main-lead img {
  vertical-align: sub;
  margin-left: 10px;
}
.feature3__main-title {
  font-size: 26px;
  line-height: 62px;
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}
.feature3__main-text {
  font-size: 15px;
  font-weight: 800;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.025em;
  margin-bottom: 40px;
  line-height: 23.5px;
  text-align: center;
}
.feature3__main-box {
  background-color: transparent;
  padding: 54px 125px 48px;
  margin: 0 auto;
}
.feature3__main-box--item {
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  font-style: normal;
}
.feature3__main-box--images {
  max-width: 600px;
}
.feature3__main-box--image {
  width: 33.3333333333%;
}
.feature3__main-box--title {
  font-size: 24px;
  margin-bottom: 19px;
  line-height: 24px;
}
.feature3__main-box-text {
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 56px;
}
.feature3__main-box--item2 .lacquerware__main-box--title {
  margin-bottom: 14px;
}
.feature3__main-box--item2 .lacquerware__main-box--title span {
  display: block;
  font-size: 15px;
  line-height: 32px;
  letter-spacing: 0.045em;
}
.feature3__main-box--item2 .lacquerware__main-box-text {
  margin-bottom: 35px;
}
.feature3__main-box--images {
  width: 90%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: 26px;
  gap: 20px;
}
.feature3__main-introduce {
  width: 540px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: normal;
}
.feature3__linear {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ae8625 0%, #f7ef8a 30%, #d2ac47 70%, #edc967 100%);
  z-index: 10;
}

/* vessel */
.vessel {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 1433px;
  background-image: linear-gradient(to bottom, rgba(208, 222, 200, 0.7) 0px, rgba(208, 222, 200, 0.7) 665px, rgba(208, 222, 200, 0.35) 666px), url("../img/vessel_top.webp");
  background-repeat: repeat-x;
  background-size: 62%;
  /* 上側の画像 */
  background-position: top left;
  background-blend-mode: color-burn;
}
.vessel__wrap {
  width: 100%;
  height: 1433px;
  background-repeat: no-repeat, no-repeat;
  background-position: left 13px top 2px, right 8px top 2px;
}
.vessel__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding-top: 98px;
}
.vessel__flex {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: top;
  margin-bottom: 115px;
  flex-direction: row-reverse;
  z-index: 2;
}
.vessel__flex-left {
  width: 40%;
  max-width: 400px;
}
.vessel__title {
  width: 100%;
  max-width: 400px;
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  text-align: center;
  line-height: 45px;
  margin-bottom: 21px;
}
.vessel__line {
  vertical-align: text-top;
  width: 100%;
  max-width: 400px;
  max-height: 3px;
}
.vessel__title--sub {
  display: block;
  font-size: 24px;
}
.vessel__text {
  padding: 0 25px;
  font-size: 15px;
  font-weight: 800;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.025em;
  margin-bottom: 176px;
  line-height: 26.5px;
}
.vessel__image {
  display: flex;
  justify-content: center;
  width: 100%;
}
.vessel__image-left {
  width: 50%;
}
.vessel__image-right {
  width: 50%;
}
.vessel__flex-right {
  width: 60%;
  max-width: 760px;
}
.vessel__image-main {
  width: 100%;
  max-width: 760px;
  vertical-align: bottom;
}
.vessel__info {
  background-color: #fff;
  width: 320px;
  height: 30px;
  margin: 0 auto;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 30px;
  border-radius: 15px;
  letter-spacing: -0.005em;
  margin-bottom: 30px;
}
.vessel__box {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.vessel__box-item {
  position: relative;
  width: 350px;
  margin-bottom: 25px;
  margin-right: 25px;
  border-radius: 5px 5px 5px 5px;
  background-color: #fff;
  /* 四方に影をつける */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: 0.3s;
}
.vessel__box-item img {
  width: 100%;
  vertical-align: bottom;
  border-radius: 5px 5px 0 0;
}
.vessel__box-item-3 {
  margin-right: 0;
}
.vessel__box-item a:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.vessel__box-item-name {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 9px;
  font-family: "ten-mincho", serif;
  font-style: normal;
  border-radius: 0 0 5px 5px;
}
.vessel__linear {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ae8625 0%, #f7ef8a 30%, #d2ac47 70%, #edc967 100%);
  z-index: 2;
}

.welcome__slider {
  border: 1px solid #d5a848;
}
.welcome__slider img {
  width: 100%;
  height: auto;
}

.vessel__slider {
  border: 1px solid #d5a848;
}

.vessel__slider img {
  width: 100%;
  height: auto;
}

.feature1__slider,
.feature2__slider {
  border: 1px solid #d5a848;
}
.feature1__slider img,
.feature2__slider img {
  width: 100%;
  height: auto;
}

.lacquerware__slider {
  border: 1px solid #d5a848;
}

.lacquerware__slider img {
  width: 100%;
  height: auto;
}

.slick-prev,
.slick-next {
  z-index: 1; /* 矢印を画像の上に表示 */
  width: 50px; /* 矢印の幅を調整 */
  height: 50px; /* 矢印の高さを調整 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: none; /* 背景色を削除 */
  border: none; /* ボーダーを削除 */
}

.slick-prev {
  left: 10px; /* 左端に配置 */
}

.slick-next {
  right: 10px; /* 右端に配置 */
}

.slick-prev:before,
.slick-next:before {
  font-size: 30px; /* 矢印のサイズを大きくする */
  color: #fff; /* 矢印の色を白にする */
}

.slick-prev:before,
.slick-next:before {
  content: unset;
  content: url(../img/white-arrow_left.png);
  width: 40px;
  height: 40px;
  background-color: rgba(124, 124, 124, 0.6);
  border-radius: 50%;
}

.slick-next:before {
  content: url(../img/white-arrow_right.png);
}

/* contest */
.contest {
  position: relative;
  width: 100%;
  height: 892px;
  background-image: linear-gradient(to bottom, rgba(237, 201, 103, 0.8) 0%, rgba(247, 239, 138, 0.75) 10%, #ffffff 50%, #ffffff 60%, rgba(247, 239, 138, 0.75) 90%, rgba(237, 201, 103, 0.8) 100%), url("../img/vessel_top.webp");
  background-repeat: repeat-x;
  background-size: 62%;
  background-blend-mode: color;
}
.contest__wrap {
  width: 100%;
  height: 892px;
}
.contest__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding-top: 58px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  font-style: normal;
}
.contest__title {
  width: 100%;
  max-width: 530px;
  position: relative;
  font-size: 30px;
  margin: 0 auto;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.contest__title img {
  position: absolute;
}
.contest__title img:nth-child(1) {
  top: 26%;
  left: 10px;
}
.contest__title img:nth-child(3) {
  top: 26%;
  right: 10px;
}
.contest__title-sub {
  display: block;
  font-size: 20px;
  line-height: 2.3em;
}
.contest__line {
  margin-bottom: 16px;
  width: 100%;
  max-width: 400px;
  max-height: 3px;
}
.contest__text {
  font-size: 17px;
  margin-bottom: 60px;
}
.contest__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.contest__box-item {
  max-width: 575px;
  width: calc(100% - 25px);
  padding: 12.5px;
  background-color: #f0f0f0;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.contest__box-item img {
  width: 100%;
}
.contest__box-item--text {
  font-size: 17px;
  margin-top: 9px;
}
.contest__btn {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.contest__btn-link {
  position: relative;
  display: inline-block;
  width: 233px;
  height: 46px;
  background: #efefef;
  border: 1px solid #d5a848;
  text-align: center;
  line-height: 46px;
  font-size: 15px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  border-radius: 5px;
  letter-spacing: 0.01em;
}
.contest__btn-link img {
  position: absolute;
  vertical-align: middle;
  right: 15px;
  top: 14px;
}
.contest__btn-link:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.contest__linear {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ae8625 0%, #f7ef8a 30%, #d2ac47 70%, #edc967 100%);
  z-index: 10;
}

/* concept */
.concept {
  overflow: hidden;
  width: 100%;
  height: 810px;
  background: linear-gradient(180deg, rgba(216, 132, 166, 0.6) 0%, rgba(220, 145, 176, 0.6) 6%, transparent 72%);
}
.concept__wrap {
  width: 100%;
  height: 810px;
}
.concept__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 101px;
}
.concept__flex {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: top;
  margin-bottom: 78px;
  z-index: 2;
}
.concept__flex-left {
  width: 60%;
  max-width: 760px;
}
.concept__flex-right {
  width: 40%;
  max-width: 400px;
}
.concept__flex-right--image {
  display: block;
  margin: 0 auto;
  width: 60px;
  height: 60px;
}
.concept__title {
  position: relative;
  width: 100%;
  max-width: 400px;
  font-size: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  text-align: center;
  margin: 0 0 -8px;
  padding-bottom: 21px;
  letter-spacing: 0.03em;
  display: inline-block;
}
.concept__title img {
  position: absolute;
  top: 10%;
  left: 10px;
}
.concept__title-sub {
  display: block;
  font-size: 18px;
  line-height: 2.3em;
}
.concept__line {
  width: 100%;
  max-width: 400px;
  max-height: 3px;
  vertical-align: text-top;
}
.concept__title-sub {
  display: block;
  font-size: 20px;
  line-height: 1.7em;
  transform: translateX(10px);
}
.concept__text {
  padding: 0 25px;
  font-size: 15px;
  font-weight: 800;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.025em;
  margin-bottom: 17px;
  line-height: 25.5px;
}
.concept__text--date {
  font-size: 13px;
  padding: 4px 0;
  font-weight: bold;
  display: block;
}
.concept__image {
  display: flex;
  justify-content: center;
  width: 100%;
}
.concept__image-left {
  width: 50%;
}
.concept__image-right {
  width: 50%;
}
.concept__image-main {
  width: 100%;
  max-width: 760px;
}
.concept__btn-box {
  width: 496px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.concept__btn {
  max-width: 233px;
  width: 100%;
  text-align: center;
}
.concept__btn-link {
  position: relative;
  display: inline-block;
  width: 233px;
  height: 46px;
  background: #efefef;
  border: 1px solid #d5a848;
  text-align: center;
  line-height: 46px;
  font-size: 15px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  border-radius: 5px;
  letter-spacing: 0.01em;
}
.concept__btn-link img {
  position: absolute;
  right: 15px;
  top: 14px;
}
.concept__btn-link:hover {
  opacity: 0.6;
  background: #fff;
  transition: 0.3s;
}
.concept__linear {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ae8625 0%, #f7ef8a 30%, #d2ac47 70%, #edc967 100%);
}

/* booth */
.booth {
  overflow: hidden;
  width: 100%;
  height: 1461px;
  background-color: rgba(222, 227, 232, 0.8); /* 背景色 */
  background-image: url("../img/vessel_top.png");
  background-repeat: repeat-x;
  /* 上側の画像 */
  background-position: top left;
  background-blend-mode: hard-light;
  background-size: 62%;
}
.booth__wrap {
  width: 100%;
  height: 1461px;
  background-repeat: no-repeat, no-repeat;
  background-position: left 13px top 2px, right 8px top 2px;
}
.booth__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding-top: 101px;
}
.booth__flex {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: normal;
  margin-bottom: 78px;
  flex-direction: row-reverse;
  z-index: 2;
}
.booth__flex-left {
  max-width: 760px;
}
.booth__title {
  width: 100%;
  max-width: 400px;
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  text-align: center;
  line-height: 62px;
  margin-bottom: -8px;
  letter-spacing: 0.03em;
  padding-bottom: 24px;
}
.booth__line {
  vertical-align: text-top;
  width: 100%;
  max-width: 400px;
  max-height: 3px;
}
.booth__title--sub {
  display: block;
  font-size: 24px;
}
.booth__text {
  padding: 0 25px;
  font-size: 15px;
  font-weight: 800;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.025em;
  margin-bottom: 116px;
  line-height: 25.5px;
}
.booth__image {
  display: flex;
  justify-content: center;
  width: 100%;
}
.booth__image-left {
  width: 50%;
}
.booth__image-right {
  width: 50%;
}
.booth__flex-right {
  width: 40%;
  max-width: 400px;
}
.booth__image-main {
  width: 100%;
  max-width: 760px;
}
.booth__box-title {
  font-size: 24px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  text-align: center;
  margin-bottom: 22px;
}
.booth__box {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.booth__box-item {
  position: relative;
  max-width: 240px;
  margin-bottom: 42px;
  margin-right: 25px;
  /* 四方に影をつける */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px 5px 5px 5px;
  z-index: 2;
}
.booth__box-item img {
  width: 100%;
  vertical-align: bottom;
  border-radius: 5px 5px 0 0;
}
.booth__box-item-4, .booth__box-item-8 {
  margin-right: 0;
}
.booth__box-item-name {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 17px;
  font-family: "ten-mincho", serif;
  font-style: normal;
  font-size: 17px;
  border-radius: 0 0 5px 5px;
}
.booth__box-detail {
  position: relative;
  background-color: #fff;
}
.booth__box-detail::before {
  /*コンテンツの右上に詳細を表示*/
  content: "詳細";
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #d5a848 0%, #6b4a24 100%);
  color: #fff;
  width: 71px;
  height: 22px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 21px;
  border-radius: 0 5px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.3em;
  z-index: 1;
  transition: 0.3s;
}
.booth__box-detail a {
  display: block;
  width: 100%;
  height: 100%;
}
.booth__box-detail a:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.booth__box-detail:hover::before {
  opacity: 0.6; /* 親要素のホバー状態に応じて疑似要素の透明度を変更 */
  transition: 0.3s;
}
.booth__btn-box {
  width: 496px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.booth__btn {
  max-width: 233px;
  width: 100%;
  text-align: center;
}
.booth__btn-link {
  position: relative;
  display: inline-block;
  width: 233px;
  height: 46px;
  background: #efefef;
  border: 1px solid #d5a848;
  text-align: center;
  line-height: 46px;
  font-size: 15px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  border-radius: 5px;
  letter-spacing: 0.01em;
}
.booth__btn-link img {
  position: absolute;
  vertical-align: middle;
  right: 15px;
  top: 14px;
}
.booth__btn-link:hover {
  opacity: 0.6;
  background: #fff;
  transition: 0.3s;
}
.booth__linear {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ae8625 0%, #f7ef8a 30%, #d2ac47 70%, #edc967 100%);
}

/* sponsor */
.sponsor {
  width: 100%;
  height: 510px;
  background-color: transparent; /* 背景色 */
}
.sponsor__wrap {
  width: 100%;
  height: 510px;
}
.sponsor__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding-top: 56px;
}
.sponsor__title {
  font-size: 30px;
  font-family: "zen old mincho", serif;
  font-weight: 800;
  text-align: center;
  margin-bottom: 59px;
  letter-spacing: 0.04em;
}
.sponsor__flex {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.sponsor__flex-item {
  width: auto;
  text-align: center;
  margin-bottom: 42px;
  margin-right: 60px;
}
.sponsor__image-1 {
  width: 110px;
}
.sponsor__image-2 {
  width: 202px;
}
.sponsor__image-3 {
  width: 207px;
}
.sponsor__image-4 {
  width: 130px;
}
.sponsor__image-5 {
  width: 170px;
}
.sponsor__image-6 {
  width: 172px;
}
.sponsor__image-7 {
  width: 140px;
}
.sponsor__image-8 {
  width: 170px;
}
.sponsor__image-9 {
  width: 172px;
}
.sponsor__image-10 {
  width: 140px;
}

/* footer */
.footer {
  text-shadow: 0 0 0 #eff;
  /* 上段 */
  /* 下段 */
}
.footer__above {
  width: 100%;
  height: 358px;
  background: linear-gradient(180deg, #f67e24, #e25d18);
}
.footer__above-wrap {
  width: 100%;
  height: 358px;
}
.footer__above-inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding-top: 56px;
}
.footer__above-box {
  width: 100%;
  max-width: 1200px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 14px;
}
.footer__above-box a {
  font-size: 14px;
}
.footer__above-box-item {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}
.footer__above-box-item:nth-child(6) {
  margin-bottom: 0px;
  padding-bottom: 40px;
}
.footer__above-box-left {
  width: 6%;
  display: flex;
  justify-content: space-between;
}
.footer__above-box-right {
  width: 90%;
}
.footer__below {
  width: 100%;
  height: 183px;
  background: linear-gradient(180deg, #414141, #222222);
}
.footer__below-wrap {
  position: relative;
  width: 100%;
  height: 183px;
}
.footer__below-inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 14px;
}
.footer__below-box {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 18px;
}
.footer__below-box a {
  font-size: 12px;
  color: #fff;
}
.footer__below-list {
  width: 100%;
  max-width: 988px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.footer__below-item {
  position: relative;
}
.footer__below-item::before {
  position: absolute;
  content: "";
  top: 6px;
  left: -14px;
  width: 1px;
  height: 12px;
  background-color: #fff;
}
.footer__below-item:first-child::before {
  display: none;
}
.footer__below-logo {
  margin-bottom: 24px;
}
.footer__below-copy {
  color: #fff;
  font-size: 10px;
}

/* popup */
.popup-body {
  width: 100%;
  height: 100%;
}
.popup-flex {
  display: flex;
  height: 100%;
}
.popup-flex-left {
  width: 480px;
  height: 100%;
  background-color: #000;
  border-radius: 15px 0 0 15px;
}
.popup-flex-left img {
  width: 100%;
  max-width: 480px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 0 0 15px;
}
.popup-flex-right {
  width: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
}
.popup-flex-right--wrap {
  width: calc(100% - 40px);
  margin: 0 auto;
}
.popup-item-name {
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2c2c2c;
}
.popup-item-body {
  font-size: 14px;
  letter-spacing: 0.025em;
  margin-bottom: 40px;
}
.popup-item-tag {
  display: flex;
  flex-wrap: wrap;
}
.popup-item-tag span {
  display: block;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  padding: 2px 12px;
  border: 1px solid #dedede;
  border-radius: 12px;
  cursor: pointer;
}

/* coming soon */
/* header */
.header__nav-item--8, .header__nav-item--9 {
  position: relative;
}
.header__nav-item--8 a, .header__nav-item--9 a {
  color: #7e7c7c;
  pointer-events: none;
}
.header__hamburger-link-7, .header__hamburger-link-8 {
  color: #7e7c7c;
  pointer-events: none;
}

/* ボタン部分 */
.news__btn {
  opacity: 0.7;
}
.news__btn:hover:hover {
  opacity: 0.7;
}

.contest__btn-link {
  position: relative;
  color: #7e7c7c;
  pointer-events: none;
}
.contest__btn-link::after {
  content: "Coming Soon";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(65, 65, 65, 0.6);
  border-radius: 5px;
  font-size: 15px;
  color: #fff;
}

.concept__btn-link {
  position: relative;
  color: #7e7c7c;
  pointer-events: none;
}
.concept__btn-link::after {
  content: "Coming Soon";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(65, 65, 65, 0.6);
  border-radius: 5px;
  font-size: 15px;
  color: #fff;
}

.booth__btn-link {
  position: relative;
  color: #7e7c7c;
  pointer-events: none;
}
.booth__btn-link::after {
  content: "Coming Soon";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(65, 65, 65, 0.6);
  border-radius: 5px;
  font-size: 15px;
  color: #fff;
}/*# sourceMappingURL=top.css.map */