@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
.main_inner {
  overflow-x: hidden;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  ベーススタイル
///////////////////////////////////////////////////////////////////////////////////////
*/

.lp-barbour_260204 {
  --color-white: #fff;
  --color-black: #000;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-source: "source-han-sans-japanese", sans-serif;
  --font-en: var(--font-barbour-sans);
  --font-ja: var(--font-noto);
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  font-feature-settings: normal;
  overflow: clip;
  /* width: var(--container-default); */
  /* width: min(100%, 1440px); */
  width: 100%;
  margin: 0 auto;
}
.lp-barbour_260204 {
  font-family: var(--font-zen-kaku-gothic-new);
  color: var(--color-black);
  font-weight: var(--fw-regular);
}

/* vimeo動画 */
.lp_movie_inner {
  width: auto;
  height: 100%;
}

/* ●CSSで表示非表示を切り替える
.hidden-mobile
.hidden-desktop 
*/

  
/*
///////////////////////////////////////////////////////////////////////////////////////
  アニメーション
///////////////////////////////////////////////////////////////////////////////////////
*/

/* その場でフェード(js不使用) */
.fadein {
  opacity: 0;
  animation: fadein .7s ease forwards;
  animation-delay: 3.5s;
}
@keyframes fadein {
  100% {  opacity: 1;}
}

/* 下から上にフェードイン */
.jsFade {
  opacity: 0;
  transform: translateY(20px);
}
.jsFade.isActive {
  opacity: 1;
  transform: translateY(0px);
  transition: all .7s;
}
.jsFade.delay01.isActive {
  transition-delay: 0.5s;
}
.jsFade.delay02.isActive {
  transition-delay: 1s;
}
.jsFade.delay03.isActive {
  transition-delay: 1.5s;
}

/* 右方向からスライドイン */
.jsFade.slide_right {
  /* opacity: 1; */
  transform: translateX(20px);
}
.jsFade.slide_right.isActive {
  /* opacity: 1; */
  transform: translateX(0px);
  transition: all .7s;
}
.jsFade.slide_right.delay01.isActive {
  transition-delay: 1s;
}

/* 左方向からスライドイン */
.jsFade.slide_left {
  /* opacity: 1; */
  transform: translateX(-20px);
}
.jsFade.slide_left.isActive {
  /* opacity: 1; */
  transform: translateX(0px);
  transition: all .7s;
}
.jsFade.slide_left.delay01.isActive {
  transition-delay: 1s;
}

/* その場でフェード */
.jsFade.jsFade_spot {
  opacity: 0;
  transform: unset;
}
.jsFade.jsFade_spot.isActive {
  opacity: 1;
  transition: all .7s;
  transform: unset;
}
.jsFade.jsFade_spot.delay01.isActive {
  transition-delay: 0.5s;
}

/* .fadeInUp ---------------------------------------*/
.fadeInUp.active {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  visibility: visible ;
}

@keyframes fadeInUp{
  0% {
    opacity: 0;
    -webkit-transform: translateY(1em);
    -ms-transform: translateY(1em);
    transform: translateY(1em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .fadeInUp_sp{
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s, visibility 1s;
  }
  .fadeInUp_sp.active {
    opacity: 1;
    visibility: visible;
  }

}

.hidden-desktop {
  display: none !important;
}
.hidden-desktop_f {
  display: none !important;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  loading_image
///////////////////////////////////////////////////////////////////////////////////////
*/
.loading_image {
  position: fixed;
  background: #fff;
  width: 100vw;
  height: 100svh;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  transition: opacity 0.8s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading_image_inner {
  width: 100%;
  height: 100vh;
  position: relative;
  line-height: 0;
}
.loading_image .loading_image_inner picture {
  width: 100%;
  height: 100%;
}
.loading_image .loading_image_inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.animate-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  transition: opacity 0.8s ease, backdrop-filter 0.8s ease;
  opacity: 1;
}
/* JSで付与する非表示用のクラス */
.is-hidden {
  opacity: 0 !important;
  pointer-events: none; /* クリックを無効化 */
  /* backdrop-filterも消す場合 */
  backdrop-filter: blur(0px) !important;
}

@media screen and (max-width: 767px) {
  .loading_image_inner {
    height: 100vh;
  }
  .loading_image .loading_image_inner img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center top;
  }
}


/*
///////////////////////////////////////////////////////////////////////////////////////
  main_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.lp-barbour_260204 .heading-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.main_area {
  width: 100%;
  margin: 0 auto calc(180* (100vw /1440));
}
.main_area_img {
  width: 100%;
  margin: 0 auto;
  margin-bottom: calc(180* (100vw /1440));
}
.main_area_ttl {
  font-size: 2.4rem;
  line-height: 1.5833;
  text-align: center;
  margin-bottom: calc(60* (100vw /1440));
  font-weight: var(--fw-bold);
  font-family: var(--font-en);
}
.main_area_lead {
  width: 96rem;
  margin: 0 auto;
  font-size: 1.7rem;
  line-height: 2;
  /* text-align: justify; */
  font-weight: var(--fw-medium);
}

/* style_section01 */
.style_section {
  margin-bottom: calc(180* (100vw /1440));
}
.style_section01 {
  width: 100%;
}
.style_section01_img01 {
  width: calc(840* (100vw /1440));
  margin-left: calc(120* (100vw /1440));
  margin-bottom: calc(80* (100vw /1440));
}
.flex_between {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.style_section01_flex {
  width: calc(1380* (100vw /1440));
  margin-left: auto;
}
.style_section01_img02 {
  width: calc(360* (100vw /1440));
  margin-top: calc(400* (100vw /1440));
}
.style_section01_img03 {
  width: calc(660* (100vw /1440));
}
.credit_wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  margin-top: calc(10* (100vw /1440));
}
.credit_inner {
  font-family: var(--font-en);
  font-size: 1.2rem;
  display: flex;
}
.credit_ttl {
  font-weight: var(--fw-regular);
  margin-right: 1rem;
}
.credit_name {
  font-weight: var(--fw-light);
  margin-right: 1rem;
}
.credit_name.jp {
  font-family: var(--font-zen-kaku-gothic-new);
  font-weight: var(--fw-regular);
  margin-right: 0;
}
.credit_price {
  font-weight: var(--fw-light);
  text-decoration: underline;
}
.credit_price.cs {
  text-decoration: none;
}
.credit_price.cs span {
  font-family: var(--font-zen-kaku-gothic-new);
  font-weight: var(--fw-regular);
}
.credit_type {
  font-weight: var(--fw-light);
  margin-right: 1rem;
}

/* style_section02 */
.style_section02_img01 {
  width: 100%;
}
.credit_wrap02 {
  width: 61rem;
  margin-inline: auto;
}

/* style_section03 */
.style_section03_flex {
  width: calc(1380* (100vw /1440));
}
.style_section03_img01 {
  width: calc(660* (100vw /1440));
}
.style_section03_img02 {
  width: calc(480* (100vw /1440));
  margin-top: calc(400* (100vw /1440));
}
.credit_wrap03 {
  width: 48rem;
  margin-inline: auto;
}

/* style_section04 */
.flex_center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.style_section04_flex {
  width: calc(1200* (100vw /1440));
  margin: 0 auto;
}
.style_section04_img01 , .style_section04_img02 {
  width: calc(600* (100vw /1440));
}

/* style_section05 */
.style_section05_flex {
  width: calc(1380* (100vw /1440));
}
.style_section05_img01 {
  width: calc(660* (100vw /1440));
}
.style_section05_img02 {
  width: calc(480* (100vw /1440));
  margin-top: calc(400* (100vw /1440));
}

/* style_section06 */
.style_section06_flex {
  width: 100%;
}
.style_section06_img01 {
  width: calc(480* (100vw /1440));
}
.style_section06_img02 {
  width: calc(720* (100vw /1440));
}

/* style_section07 */
.style_section07_flex {
  width: calc(1200* (100vw /1440));
  margin-left: calc(60* (100vw /1440));
}
.style_section07_img01 {
  width: calc(360* (100vw /1440));
  margin-top: calc(400* (100vw /1440));
}
.style_section07_img02 {
  width: calc(660* (100vw /1440));
}

/* style_section08 */
.style_section.style_section08 {
  margin-bottom: 0;
}
.style_section08_flex {
  width: calc(1200* (100vw /1440));
  margin-left: auto;
}
.style_section08_img01 {
  width: calc(600* (100vw /1440));
}
.style_section08_img02 {
  width: calc(480* (100vw /1440));
  margin-top: calc(400* (100vw /1440));
}

/* style_section09 */
.style_section09_flex {
  width: 100%;
}
.style_section09_flex_left {
  width: calc(480* (100vw /1440));
}
.style_section09_flex_right {
  width: calc(720* (100vw /1440));
  margin-top: calc(400* (100vw /1440));
}
.style_section09_img01 {
  width: 100%;
  margin-bottom: calc(218* (100vw /1440));
}
.style_section09_img02 {
  width: calc(360* (100vw /1440));
  margin: 0 auto;
}
.style_section09_img03 {
  width: 100%;
}

/* style_section10 */
.style_section10_flex {
  width: calc(1200* (100vw /1440));
  margin: 0 auto;
}
.style_section10_img01 , .style_section10_img02 {
  width: calc(600* (100vw /1440));
}

/* style_section11 */
.style_section11_img01 {
  width: 100%;
}

/* style_section12 */
.style_section.style_section12 {
  margin-bottom: calc(60* (100vw /1440));
}
.style_section12_flex {
  width: calc(1380* (100vw /1440));
}
.style_section12_flex_left {
  width: calc(360* (100vw /1440));
}
.style_section12_img01 {
  width: 100%;
}
.style_section12_img02 {
  width: 100%;
}
.style_section12_flex_right {
  width: calc(600* (100vw /1440));
}
.style_section12_img03 {
  width: 100%;
}
.credit_wrap12 {
  width: 40rem;
  margin-inline: auto;
}

/* style_section13 */
.style_section13_flex {
  width: calc(1320* (100vw /1440));
}
.style_section13_img01 {
  width: calc(480* (100vw /1440));
  margin-top: calc(400* (100vw /1440));
}
.credit_wrap13 {
  width: 28rem;
  margin-inline: auto;
}
.style_section13_img02 {
  width: calc(720* (100vw /1440));
}
.credit_wrap13_1 {
  width: 68rem;
  margin-inline: auto;
}

/* style_section14 */
.style_section.style_section14 {
  margin-bottom: calc(242* (100vw /1440));
}
.style_section14_flex {
  width: calc(1380* (100vw /1440));
}
.style_section14_img01 {
  width: calc(720* (100vw /1440));
}
.style_section14_img02 {
  width: calc(480* (100vw /1440));
}
.credit_wrap14_2 {
  width: 30rem;
  margin-inline: auto;
}

/* slide_text */
.slide_text {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  margin-bottom: calc(280* (100vw /1440));
}
.text_slide_inner {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}
.text_slide_inner p {
  display: inline-block;
  padding-right: 10rem;
  font-family: var(--font-en);
  font-weight: var(--fw-light);
  font-size: 2.4rem;
  white-space: nowrap;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* style_section15 */
.style_section15_flex {
  width: 100%;
}
.style_section15_img01 , .style_section15_img02 {
  width: calc(720* (100vw /1440));
}

/* style_section16 */
.style_section16_flex {
  width: calc(1320* (100vw /1440));
  margin: 0 auto;
}
.style_section16_img01 {
  width: calc(660* (100vw /1440));
}
.credit_wrap16 {
  width: 31rem;
  margin-inline: auto;
}
.style_section16_img02 {
  width: calc(360* (100vw /1440));
  margin-top: calc(400* (100vw /1440));
}

/* style_section17 */
.style_section17_img01 {
  width: calc(720* (100vw /1440));
  margin-left: calc(240* (100vw /1440));
}

/* style_section18 */
.style_section18_flex {
  width: calc(1320* (100vw /1440));
  margin: 0 auto;
}
.style_section18_img01 {
  width: calc(360* (100vw /1440));
  margin-top: calc(400* (100vw /1440));
  position: relative;
}
.style_section18_img02 {
  width: calc(660* (100vw /1440));
}
.credit_wrap18 {
  width: 37rem;
  margin-inline: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.credit_wrap18 .credit_inner {
  flex-wrap: wrap;
  justify-content: center;
}
.credit_wrap18_2 {
  width: 36rem;
  margin-inline: auto;
}

/* style_section19 */
.style_section19_img01 {
  width: calc(720* (100vw /1440));
  margin-left: calc(480* (100vw /1440));
}
.credit_wrap19 {
  width: 30rem;
  margin-inline: auto;
}

/* style_section19_2 */
.style_section19_img02 {
  width: calc(720* (100vw /1440));
  margin-left: calc(240* (100vw /1440));
}

/* style_section20 */
.style_section20_flex {
  width: calc(1320* (100vw /1440));
  margin-inline: auto;
}
.style_section20_img01 {
  width: calc(540* (100vw /1440));
  margin-top: calc(400* (100vw /1440));
}
.credit_wrap20 {
  width: 30rem;
  margin-inline: auto;
}
.style_section20_img02 {
  width: calc(600* (100vw /1440));
}

/* style_section21 */
.style_section21_flex {
  width: 100%;
}
.style_section21_img01 , .style_section21_img02 {
  width: calc(720* (100vw /1440));
}
.credit_wrap21 {
  width: 56rem;
  margin-inline: auto;
}

/* style_section22 */
.style_section.style_section22 {
  margin-bottom: calc(240* (100vw /1440));
}
.style_section22_flex {
  width: calc(1320* (100vw /1440));
  margin-inline: auto;
}
.style_section22_img01 {
  width: calc(660* (100vw /1440));
}
.style_section22_img02 {
  width: calc(360* (100vw /1440));
  margin-top: calc(400* (100vw /1440));
}

/* all_item */
.all_item {
  width: 96rem;
  height: 5.8rem;
  background-color: #4E4E4E;
  color: #fff;
  font-family: var(--font-en);
  text-align: center;
  font-weight: var(--fw-light);
  font-size: 1.8rem;
  padding: 2rem 0;
  margin-inline: auto;
  margin-bottom: calc(253* (100vw /1440));
}

/* special */
.special {
  width: 96rem;
  margin: 0 auto 24rem;
}
.special_border {
  border: solid 1px #000;
}
.special_ttl {
  width: 19.2rem;
  margin: -1.5rem auto 8.6rem;
  background-color: #fff;
  font-size: 2.8rem;
  font-weight: var(--fw-medium);
  text-align: center;
}
.special_img {
  width: 24rem;
  margin: 0 auto 7rem;
}
.special_lead {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 9.9rem;
}
.end_attention {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-top: 5rem;
}


/*
///////////////////////////////////////////////////////////////////////////////////////
  SP
///////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 767px) {
.hidden-desktop {
  display: block !important;
}
.hidden-desktop_f {
  display: flex !important;
}
.hidden-mobile {
  display: none !important;
}
.hidden-mobile_f {
  display: none !important;
}
.jsFade.delay01.isActive {
  /* transition-delay: unset; */
}
.jsFade.delay02.isActive {
  /* transition-delay: unset; */
}
.jsFade.delay03.isActive {
  transition-delay: unset;
}
/*
///////////////////////////////////////////////////////////////////////////////////////
  main_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.main_area {
  margin: 0 auto calc(100* (100vw /402));
}
.main_area_img {
  margin-bottom: calc(100* (100vw /402));
  width: 100%;
}
.main_area_ttl {
  font-size: calc(22* (100vw /402));
  line-height: 1.727;
  margin-bottom: calc(60* (100vw /402));
}
.main_area_lead {
  width: calc(360* (100vw /402));
  font-size: calc(14* (100vw /402));
  line-height: 2;
}

.style_section01_img01 {
    width: calc(360* (100vw /402));
    margin-left: auto;
    margin-right: auto;
    margin-bottom: calc(10* (100vw /402));
}
.style_section01_flex {
    width: 100%;
    margin-left: unset;
}
.style_section01_img02 {
    width: calc(171* (100vw /402));
    margin-top: 0;
    margin-bottom: calc(10* (100vw /402));
}
.style_section01_img03 {
    width: calc(291* (100vw /402));
    margin-left: auto;
}
.credit_wrap {
  gap: calc(8* (100vw /402)) calc(8* (100vw /402));
  margin-top: calc(10* (100vw /402));
}
.credit_inner {
  font-size: calc(12* (100vw /402));
  flex-wrap: wrap;
  justify-content: center;
}
.credit_ttl {
  margin-right: calc(10* (100vw /402));
}
.credit_name {
  margin-right: calc(10* (100vw /402));
}
.credit_type {
  margin-right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: calc(8* (100vw /402));
}
.style_section {
    margin-bottom: calc(60* (100vw /402));
}
.credit_wrap02 {
    width: calc(300* (100vw /402));
}

.style_section03_flex {
    width: 100%;;
}
.style_section03_img01 {
    width: calc(201* (100vw /402));
}
.style_section03_img02 {
    width: calc(240* (100vw /402));
    margin-left: auto;
    margin-right: calc(21* (100vw /402));
    margin-top: calc(10* (100vw /402));
}
.credit_wrap03 {
    width: calc(240* (100vw /402));
    margin-inline: auto;
}

.style_section04_flex {
    width: calc(300* (100vw /402));
}
.style_section04_img01, .style_section04_img02 {
    width: calc(300* (100vw /402));
}
.style_section04_img01 {
  margin-bottom: calc(60* (100vw /402));
}

.style_section05_flex {
    width: calc(381* (100vw /402));
}
.style_section05_img01 {
    width: calc(291* (100vw /402));
}
.style_section05_img02 {
    width: calc(240* (100vw /402));
    margin-top: calc(10* (100vw /402));
    margin-left: auto;
}
.credit_wrap05 {
  width: calc(400* (100vw /402));
  margin-inline: auto;
  margin-top: calc(16* (100vw /402));
}

.style_section06_img01 {
    width: calc(81* (100vw /402));
}
.style_section06_img02 {
    width: calc(291* (100vw /402));
}

.style_section07_flex {
    width: 100%;
    margin-left: 0;
}
.style_section07_img01 {
    width: calc(270* (100vw /402));
    margin-top: 0;
}
.style_section07_img02 {
    width: calc(270* (100vw /402));
}

.style_section08_flex {
    width: calc(381* (100vw /402));
    margin-left: auto;
}
.style_section08_img01 {
    width: calc(210* (100vw /402));
}
.style_section08_img02 {
    width: calc(161* (100vw /402));
    margin-top: calc(66* (100vw /402));
}
.style_section.style_section08 {
    margin-bottom: calc(60* (100vw /402));
}

.style_section09_flex_left {
    width: calc(321* (100vw /402));
}
.style_section09_img01 {
    width: 100%;
    margin-bottom: calc(60* (100vw /402));
}
.style_section09_flex_right {
    width: calc(351* (100vw /402));
    margin-top: 0;
    margin-left: auto;
}

.style_section10_flex_left {
  width: calc(201* (100vw /402));
}
.style_section10_flex_right {
  width: calc(191* (100vw /402));
  margin-top: calc(160* (100vw /402));
}
.style_section10_flex {
    width: 100%;
    margin: 0 auto;
}
.style_section10_img01 {
    width: calc(191* (100vw /402));
}
.style_section10_img02 {
  width: calc(201* (100vw /402));
}
.style_section09_img02 {
    width: calc(180* (100vw /402));
    margin-right: unset;
    margin-left: auto;
    margin-bottom: calc(10* (100vw /402));
}
.credit_wrap10 {
  width: calc(270* (100vw /402));
  margin-inline: auto;
}

.style_section.style_section12 {
    margin-bottom: calc(60* (100vw /402));
}
.style_section12_flex {
    width: 100%;
}
.style_section12_flex_left {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.style_section12_flex_right {
    width: calc(300* (100vw /402));
    margin-left: auto;
    margin-right: calc(21* (100vw /402));
    margin-bottom: calc(60* (100vw /402));
}
.style_section12_img01 {
    width: calc(110* (100vw /402));
}
.style_section12_img02 {
    width: calc(261* (100vw /402));
}
.credit_wrap12 {
    width: calc(370* (100vw /402));
    position: relative;
    left: 40%;
    transform: translateX(-50%);
}

.style_section13_flex {
    width: calc(300* (100vw /402));
    margin: 0 auto;
}
.style_section13_img01 {
    width: 100%;
    margin-top: 0;
    margin-bottom: calc(60* (100vw /402));
}
.credit_wrap13 {
    width: 100%;
}
.style_section13_img02 {
    width: 100%;
}
.credit_wrap13_1 {
    width: calc(380* (100vw /402));
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.style_section.style_section14 {
    margin-bottom: calc(121* (100vw /402));
}
.style_section14_flex {
    width: calc(381* (100vw /402));
}
.style_section14_img01 {
    width: calc(321* (100vw /402));
    margin-bottom: calc(60* (100vw /402));
}
.style_section14_img02 {
    width: calc(270* (100vw /402));
    margin-left: auto;
}
.credit_wrap14_2 {
    width: 100%;
}

.slide_text {
    margin-bottom: calc(140* (100vw /402));
}
.text_slide_inner p {
    padding-right: calc(60* (100vw /402));
    font-size: calc(20* (100vw /402));
}

.style_section15_flex {
    width: calc(360* (100vw /402));
    margin: 0 auto;
    justify-content: space-between;
}
.style_section15_img01, .style_section15_img02 {
    width: calc(300* (100vw /402));
}
.style_section15_img02 {
  margin-left: auto;
  margin-top: calc(60* (100vw /402));
}

.style_section16_flex {
    width: 100%;
    justify-content: center;
}
.style_section16_img01 {
    width: 100%;
}
.credit_wrap16 {
    width: calc(310* (100vw /402));
}
.style_section16_img02 {
    width: calc(240* (100vw /402));
    margin-top: calc(60* (100vw /402));
}

.style_section17_img01 {
    width: calc(351* (100vw /402));
    margin-left: 0;
}
.credit_wrap17 {
    width: calc(400* (100vw /402));
    position: relative;
    left: 58%;
    transform: translateX(-50%);
}

.style_section18_flex {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}
.style_section18_img01 {
    width: calc(240* (100vw /402));
    margin-top: 0;
    margin-inline: auto;
    margin-bottom: calc(60* (100vw /402));
}
.credit_wrap18 {
  width: calc(370* (100vw /402));
  margin-inline: auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.style_section18_img02 {
    width: 100%;
}
.credit_wrap18_2 {
    width: calc(280* (100vw /402));
}

.style_section19_img01 {
    width: calc(300* (100vw /402));
    margin-left: calc(81* (100vw /402));
}
.credit_wrap19 {
    width: 100%;
}

.style_section19_img02 {
    width: calc(300* (100vw /402));
    margin-left: calc(21* (100vw /402));
}

.style_section20_flex {
    width: 100%;
}
.style_section20_img01 {
    order: 1;
    width: calc(351* (100vw /402));
    margin-top: calc(60* (100vw /402));
    margin-left: auto;
}
.style_section20_img02 {
    width: 100%;
    order: -1;
}

.credit_wrap21 {
    width: calc(270* (100vw /402));
}
.style_section21_img01, .style_section21_img02 {
    width: calc(270* (100vw /402));
}

.style_section.style_section22 {
    margin-bottom: calc(200* (100vw /402));
}
.style_section22_flex {
    width: 100%;
    justify-content: center;
}
.style_section22_img01 {
    width: 100%;
}
.style_section22_img02 {
    width: calc(240* (100vw /402));
    margin-top: calc(60* (100vw /402));
}

.all_item {
    width: calc(360* (100vw /402));
    height: calc(56* (100vw /402));
    font-size: calc(16* (100vw /402));
    padding: calc(20* (100vw /402)) 0;
    margin-bottom: calc(211* (100vw /402));
}

.special {
    width: calc(360* (100vw /402));
    margin: 0 auto calc(200* (100vw /402));
}
.special_ttl {
    width: calc(178* (100vw /402));
    margin: calc(-12* (100vw /402)) auto calc(87* (100vw /402));
    font-size: calc(24* (100vw /402));
}
.special_img {
    width: calc(180* (100vw /402));
    margin: 0 auto calc(61* (100vw /402));
}
.special_lead {
    font-size: calc(15* (100vw /402));
    line-height: 1.666;
    margin-bottom: calc(78* (100vw /402));
}
.end_attention {
    font-size: calc(12* (100vw /402));
    line-height: 1.666;
    margin-top: calc(60* (100vw /402));
}
}
