@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  /* scroll-behavior: smooth; */
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

.header {
  width: 100%;
  height: 12.5rem;
}
@media screen and (max-width: 768px) {
  .header {
    height: 6rem;
  }
}

.header__inner {
  max-width: 62.5rem;
  width: 100%;
  height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8.4375rem;
}
@media screen and (max-width: 768px) {
  .header__inner {
    max-width: 100%;
    flex-direction: column;
    gap: 0;
    justify-content: unset;
  }
}

.header__left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .header__left {
    background: url(../../assets/images/bg-img-sec3.jpg) no-repeat;
    width: 100%;
    height: 2.1875rem;
    padding: 5px 0;
  }
}

.header__logo {
  width: 18.75rem;
  height: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 8.4375rem;
    height: 1.25rem;
  }
}

.header__logo img,
.header__logo2 img {
  -o-object-fit: contain;
     object-fit: contain;
}

.header__logo2 {
  width: 7.375rem;
  height: 8.75rem;
}
@media screen and (max-width: 768px) {
  .header__logo2 {
    width: 2.875rem;
    height: 3.4375rem;
  }
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.4375rem;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .header__right {
    width: 100%;
    display: block;
    height: 100%;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    height: 4.375rem;
  }
}

.header__nav {
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.4375rem;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .header__items {
    justify-content: space-between;
    gap: 3.25rem;
  }
}
@media screen and (max-width: 356px) {
  .header__items {
    gap: 2.5rem;
  }
}

.header__item a img {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .header__item a img {
    width: 1.1875rem;
    height: 9.3333333333w;
  }
}

.fv {
  height: auto;
}

.fv_body {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .fv_body {
    margin-top: 2.1875rem;
  }
}

.fv_nav {
  width: 100%;
  margin: 0 auto;
}

.fv_items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv_item a {
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
  font-size: 1.5rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .fv_item a {
    font-size: 3.5vw;
    padding-left: 1.6875rem;
    padding-right: 1.6875rem;
  }
}

.fv__item:first-child a {
  padding-left: 0;
}

.fv__item:last-child a {
  padding-right: 0;
}

.fv_item + .fv_item {
  border-left: 1px solid #000;
}

/*==================================================
スライダーのためのcss
===================================*/
.fv-slider .slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fv-slider .slider {
    width: 100%;
  }
}

.fv-slider .slider img {
  width: 60vw;
  /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .fv-slider .slider img {
    width: 100vw;
  }
}

.fv-slider .slider .slick-slide {
  transform: scale(0.95);
  transition: all 0.5s;
  /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;
  /*透過50%*/
}
@media screen and (max-width: 768px) {
  .fv-slider .slider .slick-slide {
    transform: unset;
    opacity: 1;
  }
}

.fv-slider .slider .slick-slide.slick-center {
  transform: scale(0.95);
  opacity: 1;
  /*透過なし*/
}
@media screen and (max-width: 768px) {
  .fv-slider .slider .slick-slide.slick-center {
    transform: unset;
  }
}

/*ドットナビゲーションの設定*/
.fv-slider .slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  .fv-slider .slick-dots {
    margin: 10px 0 0 0;
  }
}

.fv-slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.fv-slider .slick-dots button {
  color: transparent;
  outline: none;
  width: 15px;
  /*ドットボタンのサイズ*/
  height: 15px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  border: unset;
  /*ドットボタンの色*/
}
@media screen and (max-width: 768px) {
  .fv-slider .slick-dots button {
    width: 8px !important;
    height: 8px !important;
    padding: 0;
  }
}

.fv-slider .slick-dots .slick-active button {
  background: #000;
  /*ドットボタンの現在地表示の色*/
}

.line-up {
  padding-top: 8.125rem;
  padding-bottom: 14.375rem;
}
@media screen and (max-width: 768px) {
  .line-up {
    padding-top: 2.8125rem;
    padding-bottom: 1.875rem;
    overflow: hidden;
  }
}

.line-up__inner {
  max-width: 960px;
  width: 100%;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .line-up__inner {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.line-up__title-sub {
  font-size: 3.125rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .line-up__title-sub {
    font-size: 2rem;
  }
}

.line-up__title {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .line-up__title {
    font-size: 0.9375rem;
  }
}

.line-up__body {
  margin-top: 2.625rem;
}
@media screen and (max-width: 768px) {
  .line-up__body {
    width: 100%;
    position: relative;
    margin: 1.375rem auto 0;
  }
}

.line-up__items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .line-up__items {
    display: unset;
  }
}

.line-up__item-body {
  display: grid;
  flex-direction: column;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .line-up__item-body {
    gap: 0.625rem;
  }
}

.line-up__item-img img {
  height: 15.4375rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .line-up__item-img img {
    height: 11.125rem;
  }
}

.line-up__item-img-text {
  font-size: 1.25rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .line-up__item-img-text {
    font-size: 0.875rem;
    height: 2.375rem;
  }
}

.line-up__text-wrap {
  margin-top: 3.75rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 4%;
}

.line-up__text {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #C1272D;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .line-up__text {
    font-size: 0.9375rem;
  }
}

.line-up__text span {
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

.line-up .slider {
  overflow: visible;
  position: unset;
}

.line-up .slick-list {
  overflow: hidden;
}

.line-up .prev-arrow {
  left: 30px;
}

.line-up .next-arrow {
  right: 30px;
}

.line-up .prev-arrow,
.line-up .next-arrow {
  top: 30%;
}

.sec1 {
  background: #000;
  width: 100%;
  padding-top: 5.8125rem;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 768px) {
  .sec1 {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.sec1__inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .sec1__inner {
    max-width: 100%;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.sec1__flex {
  display: flex;
  gap: 6.9375rem;
}
@media screen and (max-width: 768px) {
  .sec1__flex {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.sec1__title {
  width: 121%;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.4782608696;
  color: #fff;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .sec1__title {
    width: 100%;
    writing-mode: horizontal-tb;
    font-size: clamp(18px, 5.5vw, 42px);
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .sec1__body {
    margin: 0 auto;
  }
}

.sec1_text-wrap {
  margin-top: 2.8125rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .sec1_text-wrap {
    margin-top: 0.9375rem;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 94%;
  }
}

.sec1_text {
  font-size: 1.625rem;
  line-height: 1.7692307692;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec1_text {
    font-size: 0.875rem;
    text-align: left;
  }
}

.sec1__img {
  width: 100%;
  margin-top: calc(50% - 33.75rem);
}
@media screen and (max-width: 768px) {
  .sec1__img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin: 0 auto;
  }
}

.sec1__img img {
  aspect-ratio: 680/408;
}
@media screen and (max-width: 768px) {
  .sec1__img img {
    aspect-ratio: 340/204;
  }
}

.sec1__content {
  padding-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .sec1__content {
    padding-top: 1.5625rem;
  }
}

.sec1__content-title-wrap {
  position: relative;
  padding-bottom: 30px;
}

.sec1__content-title-wrap::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.176875rem;
  background: url(../../assets/images/img-sec1-border.png) no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.sec1__content-title-wrap::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.176875rem;
  background: url(../../assets/images/img-sec1-border.png) no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: -2vw;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .sec1__content-title-wrap::after {
    bottom: -3vw;
  }
}
@media screen and (max-width: 768px) {
  .sec1__content-title-wrap {
    padding-bottom: 10px;
  }
  .sec1__content-title-wrap::after {
    bottom: -4vw;
  }
}

.sec1__content-title-body {
  margin: 0 auto;
  padding-top: 4vw;
  padding-bottom: 4vw;
  position: relative;
  height: 30vw;
  max-height: 438px;
}
@media screen and (max-width: 768px) {
  .sec1__content-title-body {
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
    height: 45vw;
  }
}
@media screen and (max-width: 500px) {
  .sec1__content-title-body {
    height: 48vw;
  }
}

.sec1__content-title {
  width: 90%;
  margin: 0 auto;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec1__content-title img {
  width: 40vw;
  max-width: 511px;
  position: static;
}
@media screen and (max-width: 768px) {
  .sec1__content-title img {
    width: 60vw;
  }
}

.sec1__content-title span {
  font-size: 6.25rem;
}
@media screen and (max-width: 768px) {
  .sec1__content-title span {
    font-size: 2.75rem;
  }
}

.sec1__content-title-sub {
  position: static;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.5882352941;
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 100%;
  margin-top: 1vw;
}
@media screen and (max-width: 768px) {
  .sec1__content-title-sub {
    font-size: 4.3vw;
  }
}

.sec1__content2 {
  padding-top: 6.25rem;
  padding-bottom: 8.125rem;
}
@media screen and (max-width: 768px) {
  .sec1__content2 {
    padding-top: 3.125rem;
    padding-bottom: 2.3125rem;
  }
}

.sec1__content2-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .sec1__content2-flex {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.1875rem;
  }
}

.sec1__content2-title {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  .sec1__content2-title {
    font-size: clamp(16px, 5.5vw, 21px);
    text-align: center;
  }
}

.sec1__content2-text {
  margin-top: 3.125rem;
  font-size: 1.625rem;
  line-height: 1.7692307692;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec1__content2-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.sec1__content2-img {
  width: 28.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec1__content2-img {
    width: 60%;
  }
}

.sec1__content3-title {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .sec1__content3-title {
    text-align: center;
  }
}

.sec1__content3-text {
  text-align: left;
}

.sec1__content3-img {
  margin-top: 7.8125rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sec1__content3-img {
    margin: 1.375rem auto 0;
  }
}

.sec1__content3-text + .sec1__content3-text {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .sec1__content3-text + .sec1__content3-text {
    margin-top: 1.5625rem;
  }
}

.sec1__content4-text {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .sec1__content4-text {
    margin-top: 1.3125rem;
  }
}

.sec1__content4-text2 {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .sec1__content4-text2 {
    margin-top: 1.625rem;
  }
}

.sec1__content4 {
  padding-top: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .sec1__content4 {
    padding-top: 2.25rem;
  }
}

.sec2__img {
  width: 100%;
  height: auto;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 768px) {
  .sec2__img {
    margin: 0.625rem auto 0;
  }
}

.sec2__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec3 {
  background: url(../../assets/images/bg-img-sec3.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  padding: 5.9375rem 0;
}
@media screen and (max-width: 768px) {
  .sec3 {
    padding: 1.09375rem 0;
  }
}

.sec3__inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  position: relative;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .sec3__inner {
    max-width: 100%;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.sec3_img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  z-index: 10;
}

.sec3_img a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.sec3__img1.sec3_img a {
  display: inline-flex;
  flex-direction: row;
}

.sec3_img-img {
  width: 4.0rem;
  height: 16.0rem;
  /* width: 4.5625rem;
  height: 16.625rem; */
}
@media screen and (max-width: 768px) {
  .sec3_img-img {
    width: 3.4375rem;
    height: 11.875rem;
  }
}
@media screen and (max-width: 624px) {
  .sec3_img-img {
    width: 2.6125rem;
    height: 9.375rem;
  }
}
@media screen and (max-width: 543px) {
  .sec3_img-img {
    width: 1.78125rem;
    height: 6.9375rem;
  }
}
@media screen and (max-width: 411px) {
  .sec3_img-img {
    width: 1.5rem;
    height: 6.25rem;
    /* width: 1.875rem;
    height: 6.5rem; */
  }
}
@media screen and (max-width: 357px) {
  .sec3_img-img {
    width: 1.425rem;
    height: 4.875rem;
  }
}

.sec3__img-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  height: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec3__img-text {
    font-size: 0.75rem;
    height: 2rem;
  }
}
@media screen and (max-width: 471px) {
  .sec3__img-text {
    font-size: 0.625rem;
    height: 3.625rem;
  }
}
@media screen and (max-width: 411px) {
  .sec3__img-text {
    font-size: 0.5rem;
    height: 2.5rem;
  }
}

.sec3__img1 .sec3__img-text {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .sec3__img6.sec3_img a {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 768px) {
  .sec3__img6 .sec3__img-text {
    height: 4.5rem;
  }
}
@media screen and (max-width: 448px) {
  .sec3__img6 .sec3__img-text {
    height: 3.625rem;
  }
}
@media screen and (max-width: 411px) {
  .sec3__img6 .sec3__img-text {
    height: 3rem;
  }
}

.sec3__img1 {
  top: 16%;
  left: 20%;
}
@media screen and (max-width: 768px) {
  .sec3__img1 {
    top: 24%;
    left: 17%;
  }
}

.sec3__img2 {
  top: 39%;
  left: 27%;
}
@media screen and (max-width: 768px) {
  .sec3__img2 {
    top: 45%;
    left: 26%;
  }
}
@media screen and (max-width: 703px) {
  .sec3__img2 {
    top: 44%;
  }
}
@media screen and (max-width: 622px) {
  .sec3__img2 {
    top: 46%;
    left: 26%;
  }
}
@media screen and (max-width: 587px) {
  .sec3__img2 {
    top: 45%;
  }
}
@media screen and (max-width: 543px) {
  .sec3__img2 {
    top: 47%;
    left: 24%;
  }
}
@media screen and (max-width: 479px) {
  .sec3__img2 {
    top: 46%;
  }
}
@media screen and (max-width: 434px) {
  .sec3__img2 {
    top: 45%;
  }
}
@media screen and (max-width: 419px) {
  .sec3__img2 {
    top: 44%;
  }
}
@media screen and (max-width: 411px) {
  .sec3__img2 {
    top: 45%;
    left: 25%;
  }
}
@media screen and (max-width: 357px) {
  .sec3__img2 {
    top: 46%;
  }
}

.sec3__img3 {
  top: 54%;
  left: 36%;
}
@media screen and (max-width: 768px) {
  .sec3__img3 {
    top: 57%;
    left: 37%;
  }
}
@media screen and (max-width: 707px) {
  .sec3__img3 {
    top: 56%;
  }
}
@media screen and (max-width: 658px) {
  .sec3__img3 {
    top: 55%;
  }
}
@media screen and (max-width: 622px) {
  .sec3__img3 {
    top: 46%;
    left: 26%;
  }
}
@media screen and (max-width: 574px) {
  .sec3__img3 {
    top: 57%;
  }
}
@media screen and (max-width: 543px) {
  .sec3__img3 {
    top: 60%;
    left: 35%;
  }
}
@media screen and (max-width: 543px) {
  .sec3__img3 {
    top: 59%;
  }
}
@media screen and (max-width: 543px) {
  .sec3__img3 {
    top: 58%;
  }
}
@media screen and (max-width: 434px) {
  .sec3__img3 {
    top: 57%;
  }
}
@media screen and (max-width: 415px) {
  .sec3__img3 {
    top: 56%;
  }
}
@media screen and (max-width: 411px) {
  .sec3__img3 {
    top: 57%;
  }
}
@media screen and (max-width: 396px) {
  .sec3__img3 {
    top: 56%;
  }
}
@media screen and (max-width: 362px) {
  .sec3__img3 {
    top: 55%;
  }
}
@media screen and (max-width: 357px) {
  .sec3__img3 {
    top: 58%;
  }
}
@media screen and (max-width: 330px) {
  .sec3__img3 {
    top: 57%;
  }
}

.sec3__img4 {
  top: 32%;
  left: 48%;
}
@media screen and (max-width: 768px) {
  .sec3__img4 {
    top: 33%;
  }
}

.sec3__img5 {
  top: 47%;
  right: 25%;
}
@media screen and (max-width: 768px) {
  .sec3__img5 {
    top: 45%;
  }
}
@media screen and (max-width: 622px) {
  .sec3__img5 {
    top: 46%;
  }
}
@media screen and (max-width: 605px) {
  .sec3__img5 {
    top: 45%;
  }
}
@media screen and (max-width: 543px) {
  .sec3__img5 {
    top: 47%;
  }
}
@media screen and (max-width: 502px) {
  .sec3__img5 {
    top: 46%;
  }
}
@media screen and (max-width: 434px) {
  .sec3__img5 {
    top: 45%;
  }
}
@media screen and (max-width: 379px) {
  .sec3__img5 {
    top: 44%;
  }
}
@media screen and (max-width: 357px) {
  .sec3__img5 {
    top: 46%;
  }
}
@media screen and (max-width: 330px) {
  .sec3__img5 {
    top: 57%;
  }
}

.sec3__img6 {
  top: 47%;
  right: 7%;
}
@media screen and (max-width: 768px) {
  .sec3__img6 {
    top: 36%;
    right: 12%;
  }
}
@media screen and (max-width: 746px) {
  .sec3__img6 {
    top: 35%;
  }
}
@media screen and (max-width: 707px) {
  .sec3__img6 {
    top: 34%;
  }
}
@media screen and (max-width: 678px) {
  .sec3__img6 {
    top: 33%;
  }
}
@media screen and (max-width: 645px) {
  .sec3__img6 {
    top: 32%;
  }
}
@media screen and (max-width: 622px) {
  .sec3__img6 {
    top: 34%;
  }
}
@media screen and (max-width: 605px) {
  .sec3__img6 {
    top: 33%;
  }
}
@media screen and (max-width: 574px) {
  .sec3__img6 {
    top: 32%;
  }
}
@media screen and (max-width: 544px) {
  .sec3__img6 {
    top: 31%;
  }
}
@media screen and (max-width: 543px) {
  .sec3__img6 {
    top: 33%;
  }
}
@media screen and (max-width: 502px) {
  .sec3__img6 {
    top: 32%;
  }
}
@media screen and (max-width: 493px) {
  .sec3__img6 {
    top: 31%;
  }
}
@media screen and (max-width: 452px) {
  .sec3__img6 {
    top: 29%;
  }
}
@media screen and (max-width: 449px) {
  .sec3__img6 {
    top: 32%;
  }
}
@media screen and (max-width: 434px) {
  .sec3__img6 {
    top: 31%;
  }
}
@media screen and (max-width: 411px) {
  .sec3__img6 {
    top: 33%;
  }
}
@media screen and (max-width: 396px) {
  .sec3__img6 {
    top: 32%;
  }
}
@media screen and (max-width: 379px) {
  .sec3__img6 {
    top: 31%;
  }
}
@media screen and (max-width: 361px) {
  .sec3__img6 {
    top: 31%;
  }
}
@media screen and (max-width: 357px) {
  .sec3__img6 {
    top: 31%;
  }
}
@media screen and (max-width: 330px) {
  .sec3__img6 {
    top: 30%;
  }
}

.sec4 {
  padding-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .sec4 {
    padding-top: 1.85rem;
  }
}

.sec4__inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .sec4__inner {
    max-width: 100%;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.sec4__items {
  display: flex;
  flex-direction: column;
}

.sec4__item {
  display: grid;
  grid-template-columns: 44% 56%;
  padding-top: 3.125rem;
  padding-bottom: 5.625rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .sec4__item {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 1.5625rem;
  }
}

.sec4__item:first-child {
  padding-top: 0;
}

.sec4__item:last-child {
  border: none;
}

.sec4__item:nth-child(1) .sec4__item-img-logo img,
.sec4__item:nth-child(2) .sec4__item-img-logo img {
  width: 9.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .sec4__item:nth-child(1) .sec4__item-img-logo img,
  .sec4__item:nth-child(2) .sec4__item-img-logo img {
    width: 6.125rem;
  }
}

.sec4__item:nth-child(3) .sec4__item-img-logo img {
  width: 9.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .sec4__item:nth-child(3) .sec4__item-img-logo img {
    width: 4.875rem;
  }
}

.sec4__item:nth-child(4) .sec4__item-img-logo img {
  width: 9.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .sec4__item:nth-child(4) .sec4__item-img-logo img {
    width: 4.75rem;
  }
}

.sec4__item:nth-child(5) .sec4__item-img-logo img {
  width: 9.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .sec4__item:nth-child(5) .sec4__item-img-logo img {
    width: 4.75rem;
  }
}

.sec4__item:nth-child(6) .sec4__item-img-logo img {
  width: 9.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .sec4__item:nth-child(6) .sec4__item-img-logo img {
    width: 5.25rem;
  }
}

.sec4__item:nth-child(1) .sec4__item-img img {
  width: 8.6875rem;
}
@media screen and (max-width: 768px) {
  .sec4__item:nth-child(1) .sec4__item-img img {
    width: 5.5rem;
  }
}

.sec4__item:nth-child(1) .sec4__item-img picture,
.sec4__item:nth-child(2) .sec4__item-img picture,
.sec4__item:nth-child(3) .sec4__item-img picture {
  width: 8.6875rem;
}

.sec4__item:nth-child(2) .sec4__item-img img {
  width: 8.6875rem;
}
@media screen and (max-width: 768px) {
  .sec4__item:nth-child(2) .sec4__item-img img {
    width: 6.875rem;
  }
}

.sec4__item:nth-child(3) .sec4__item-img img {
  width: 8.6875rem;
}
@media screen and (max-width: 768px) {
  .sec4__item:nth-child(3) .sec4__item-img img {
    width: 3.975rem;
  }
}

.sec4__item:nth-child(4) .sec4__item-img img {
  width: 8.6875rem;
}
@media screen and (max-width: 768px) {
  .sec4__item:nth-child(4) .sec4__item-img img {
    width: 4.1875rem;
  }
}

.sec4__item:nth-child(5) .sec4__item-img img {
  width: 8.6875rem;
}
@media screen and (max-width: 768px) {
  .sec4__item:nth-child(5) .sec4__item-img img {
    width: 4.3125rem;
  }
}

.sec4__item:nth-child(6) .sec4__item-img img {
  width: 8.6875rem;
}
@media screen and (max-width: 768px) {
  .sec4__item:nth-child(6) .sec4__item-img img {
    width: 4.3125rem;
  }
}

.sec4__item .sec4__item-img-wrap {
  display: flex;
  gap: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .sec4__item .sec4__item-img-wrap {
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    transform: translateX(-7%);
  }
}

.sec4__item-title {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.7857142857;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .sec4__item-title {
    text-align: left;
    width: 85%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .sec4__item-title {
    font-size: 1.125rem;
  }
}

.sec4__item-text-wrap {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .sec4__item-text-wrap {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 85%;
    margin: 1.75rem auto 0;
  }
}

.sec4__item-text {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .sec4__item-text {
    font-size: 0.875rem;
  }
}

.sec4__item-text-2 {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .sec4__item-text-2 {
    margin-top: 1.75rem;
  }
}

.sec4__item-text-3 {
  margin-top: 3.125rem;
}
.mb110 {
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .sec4__item-text-3 {
    margin-top: 1.5625rem;
  }

  .mb110 {
    margin-bottom: 0;
  }
}

.sec4__item-button:first-child {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .sec4__item-button:first-child {
    margin-top: 0.9375rem;
  }
}

.sec4__item-button:not(:first-child) {
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .sec4__item-button:not(:first-child) {
    margin-top: 0.9375rem;
    width: 100%;
  }
}

.sec4__item-button.button {
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .sec4__item-button.button {
    justify-content: center;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25rem;
  padding: 1.25rem 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.72);
  cursor: pointer;
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .button-more {
    width: 20rem;
    padding: 0.9375rem 0;
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 439px) {
  .button-more {
    width: 17.5rem;
  }
}

.button-more::after {
  content: "";
  background: url(../../assets/images/icon-arrow-button.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 1rem;
}
@media screen and (max-width: 768px) {
  .button-more::after {
    right: 9px;
  }
}

.button-more::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: -50%;
  transform: translateX(-50%);
  transition: 0.3s;
  z-index: -1;
}

.button-more:hover::before {
  left: 50%;
}

.button-more:hover {
  color: #fff;
  z-index: 1;
}

.button-more:hover::after {
  content: "";
  background: url(../../assets/images/icon-arrow-button-hover.svg) no-repeat;
  background-size: contain;
  background-position: center;
}

.button-more2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.72);
  cursor: pointer;
  position: relative;
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  z-index: 1;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .button-more2 {
    font-size: 1.125rem;
    width: 17.625rem;
    padding-bottom: 0.875rem;
    margin-top: 0.875rem;
  }
}

.button-more2:hover {
  color: rgba(0, 0, 0, 0.5);
}

.button-more2::after {
  content: "";
  background: url(../../assets/images/icon-arrow-review.svg) no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(-180deg);
  position: absolute;
  top: 30%;
  right: 15px;
  transform: translateY(-50%);
  width: 1.375rem;
  height: 0.75rem;
}

.button-more2.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.button-more2.close::after {
  content: "";
  background: url(../../assets/images/icon-arrow-review.svg) no-repeat;
  background-size: contain;
  background-position: center;
}

.reviews__contents {
  display: none;
  /* 初期状態では非表示 */
}

.button-more2.close .reviews__contents {
  display: none;
}

.button-more2 .reviews__contents {
  display: block;
}

.button-page-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.25rem;
  height: 6.25rem;
  background: url(../../assets/images/icon-pagetop-white.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .button-page-top {
    width: 5rem;
    height: 5rem;
  }
}

.button-page-top:hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.25rem;
  height: 6.25rem;
  background: url(../../assets/images/icon-pagetop-hover.svg) no-repeat;
  background-size: contain;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .button-page-top:hover {
    width: 5rem;
    height: 5rem;
  }
}

.ranking {
  background: url(../../assets/images/bg-img-sec3.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .ranking {
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
  }
}

.ranking__inner {
  max-width: 78.125rem;
  width: 100%;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ranking__inner {
    max-width: 100%;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.ranking__title-sub {
  font-size: 3.125rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ranking__title-sub {
    font-size: 2rem;
  }
}

.ranking__title {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ranking__title {
    font-size: 0.9375rem;
  }
}

/*==================================================
スライダーのためのcss
===================================*/
.ranking__slider {
  overflow: visible;
}

.ranking__slider .slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 1.5625rem auto 0;
}

.ranking__slider .slick-list {
  overflow: hidden;
}

.ranking__slider .slider img {
  width: 18.75rem;
  height: 39.4375rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 500px) {
  .ranking__slider .slider img {
    width: 9.375rem;
    height: 19.6875rem;
  }
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.ranking__slider .slider .slick-slide {
  margin: 0 10px;
}

/*矢印の設定*/
.slick-prev,
.slick-next {
  z-index: 100;
}

.slick-prev:before,
.slick-next:before {
  color: #75E1D6;
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 80px;
  height: 80px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .prev-arrow,
  .next-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.prev-arrow {
  /* Adjusted to include translateY */
  left: -4%;
  z-index: 100;
  background: url(../../assets/images/icon-rank-left.svg) no-repeat;
  background-position: center;
  background-size: contain;
  /* Adjust this value as needed */
}

.next-arrow {
  right: -4%;
  z-index: 100;
  background: url(../../assets/images/icon-rank-right.svg) no-repeat;
  background-position: center;
  background-size: contain;
  /* Adjust this value as needed */
}

.ranking__slider .prev-arrow {
  left: -3%;
}

.ranking__slider .next-arrow {
  right: -3%;
}

.sec5 {
  background: #000;
  width: 100%;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .sec5 {
    padding-top: 2.125rem;
    padding-bottom: 2.125rem;
  }
}

.sec5__inner {
  max-width: 960px;
  width: 100%;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin: 0 auto;
}
.sec5__text {
  display: block;
  max-width: 53.125rem;
  width: 100%;
  margin: 0 auto;
  font-size: 2.625rem;
  line-height: 1.5714285714;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec5__text {
    font-size: clamp(16px, 4.8vw, 21px);
    width: 100%;
    text-align: center;
  }
}

.sec5__text span {
  font-size: 1.25rem;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .sec5__text span {
    font-size: 11px;
  }
}

.sec5__youtube {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 4.6875rem;
  width: 100%;
  height: 35.125rem;
}
@media screen and (max-width: 768px) {
  .sec5__youtube {
    width: 100%;
    height: 18.75rem;
    margin: 0 auto;
    margin-top: 1.875rem;
  }
}

.sec5__youtube iframe {
  width: 100%;
  height: 100%;
}

.sec5__img {
  margin-top: 6.25rem;
  max-width: 56.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .sec5__img {
    margin-top: 1.5625rem;
    width: 90%;
  }
}

.category {
  padding-top: 8.125rem;
  padding-bottom: 14.375rem;
}
@media screen and (max-width: 768px) {
  .category {
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
  }
}

.category__inner {
  max-width: 960px;
  width: 100%;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .category__inner {
    max-width: 100%;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.category__title-sub {
  font-size: 3.125rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .category__title-sub {
    font-size: 2rem;
  }
}

.category__title {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .category__title {
    font-size: 0.9375rem;
  }
}

.category__items {
  margin-top: 3.75rem;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .category__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
    margin: 1.875rem auto 0;
  }
}

.category__button {
  margin-top: 11.25rem;
}
@media screen and (max-width: 768px) {
  .category__button {
    margin-top: 2.1875rem;
  }
}

.category__button .button-more {
  width: 35rem;
}
@media screen and (max-width: 768px) {
  .category__button .button-more {
    width: 90%;
  }
}

.reviews {
  background: #f2f2f2;
  padding-top: 6.25rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .reviews {
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
  }
}

.reviews__inner {
  max-width: 960px;
  width: 100%;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .reviews__inner {
    max-width: 100%;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.reviews__title-sub {
  font-size: 3.125rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reviews__title-sub {
    font-size: 2rem;
  }
}

.reviews__title {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reviews__title {
    font-size: 0.9375rem;
  }
}

.reviews__items {
  margin-top: 3.75rem;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .reviews__items {
    margin: 1.875rem auto 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}

.reviews__items:nth-child(n+2) {
  margin-bottom: 30px;
}

.reviews__button {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .reviews__button {
    margin-top: 2.1875rem;
  }
}

.reviews__button.button {
  flex-direction: column;
}

.reviews__contents {
  display: block;
}

.u-md-show {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-md-show {
    display: none;
  }
}

.u-md-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md-none {
    display: block;
  }
}

.page-top__button {
  position: fixed;
  bottom: 20px;
  right: 17px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .page-top__button {
    bottom: 15px;
  }
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

.btn01 {
  display: block;
  max-width: 460px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .btn01 {
    width: 90%;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

.map_img {
  width: 88%;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .map_img {
    width: 90%;
    margin: 60px auto;
  }
}
