@charset "UTF-8";

/*共通スタイル*/
/* main colors */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  line-height: 1.75;
  font-size: 14px;
}

@media (min-width: 920px) {
  body {
    font-size: 16px;
    line-height: 2;
  }
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer !important;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  margin: 0 auto;
}

.square_btn {
  position: relative;
  display: inline-block;
  padding: 0.2571428571vw 3.3928571429vw 0.4571428571vw;
  border: 1px solid #fff;
}

.square_btn_text {
  font-size: 1.0714285714vw;
  font-weight: 600;
}

.square_btn::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.1904761905vw;
  content: "";
  display: inline-block;
  width: 0.5952380952vw;
  height: 0.6547619048vw;
  background-image: url("../img/common/btn_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.square_btn:hover::before {
  transform: translateY(-50%) translateX(5px);
}

.link_line {
  display: inline-block;
  position: relative;
  line-height: 1.5;
}

@media (min-width: 920px) {
  .link_line::before {
    background-color: #fff;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
    width: 100%;
  }
}

@media (min-width: 920px) {
  .link_line:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

.br_sp {
  display: block;
}

@media (min-width: 920px) {
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: none;
}

@media (min-width: 920px) {
  .br_pc {
    display: block;
  }
}

.main_visual {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_visual_catch {
  color: #fff;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.5;
  will-change: opacity, transform, filter;
  writing-mode: vertical-rl;
}

@media (min-width: 920px) {
  .main_visual_catch {
    font-size: max(1.5476190476vw, 26px);
    letter-spacing: 0.25em;
    line-height: 2.25;
  }
}

.main_visual_catch .blur_in {
  filter: blur(20px);
  opacity: 0;
  transition: filter 2s ease 0.75s, opacity 2s ease 0.75s;
}

.main_visual_catch .blur_in.is-inview {
  filter: blur(0);
  opacity: 1;
}

.main_visual .square_btn {
  display: none;
}

@media (min-width: 920px) {
  .main_visual .square_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: min(5.9523809524vw, 100px);
    bottom: min(5.9523809524vw, 100px);
  }
}

.main_visual_title {
  text-align: center;
}

.main_visual_title_en {
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 60px;
  position: relative;
  font-weight: 400;
}

@media (min-width: 920px) {
  .main_visual_title_en {
    font-size: max(1.6071428571vw, 20px);
    margin-bottom: 96px;
  }
}

.main_visual_title_en::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 920px) {
  .main_visual_title_en::before {
    width: 1.3095238095vw;
  }
}

.main_visual_title_ja {
  font-size: 20px;
  writing-mode: vertical-rl;
  margin: 0 auto;
  letter-spacing: 0.25em;
}

@media (min-width: 920px) {
  .main_visual_title_ja {
    font-size: max(1.5476190476vw, 20px);
  }
}

.main_visual .scroll_down {
  display: none;
}

@media (min-width: 920px) {
  .main_visual .scroll_down {
    display: block;
    position: absolute;
    bottom: min(5.2380952381vw, 88px);
    right: min(5.2380952381vw, 88px);
    width: max(30px, 2.1428571429vw);
    transition-delay: 2.5s;
  }
}

.main_visual .scroll_down img {
  width: 100%;
}

.main_visual .scroll_down_text {
  position: absolute;
  left: 20%;
  bottom: 10px;
  font-size: max(10px, 0.7142857143vw);
  color: #fff;
  writing-mode: sideways-rl;
  animation: scrollSlideLoop 2s linear infinite;
}

@keyframes scrollSlideLoop {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }

  50% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(4px);
    opacity: 0;
  }
}

.blur_in {
  filter: blur(20px);
  opacity: 0;
  transition: filter 2s ease 0.75s, opacity 2s ease 0.75s;
}

.blur_in.is-inview {
  filter: blur(0);
  opacity: 1;
}

.img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
}

.img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #10394b;
  opacity: 0.3;
}

.img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
}

.blur_text {
  filter: blur(20px);
  opacity: 0;
  transition: filter 1.5s ease, opacity 1.5s ease;
}

.blur_text.is-inview {
  filter: blur(0);
  opacity: 1;
}

.text_btn {
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: max(2.2vw, 12px);
  width: max(44.466667vw, 268px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  letter-spacing: 0.025em;
}

@media (min-width: 920px) {
  .text_btn {
    position: relative;
    font-size: max(12px, 1.0119047619vw);
    display: block;
    width: 17.7380952381vw;
    padding: 0;
    background-color: transparent;
    border: none;
  }
}

@media (min-width: 920px) {
  .text_btn::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    display: inline-block;
    width: 17.7380952381vw;
    height: 0.5357142857vw;
    background-image: url("../img/home/text_btn_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(0);
    transition: transform 0.3s ease;
  }
}

@media (min-width: 920px) {
  .text_btn:hover::before {
    transform: translateX(10px);
  }
}

.border_link {
  background-image: linear-gradient(to right, #c3c0bf, #c3c0bf);
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  line-height: 1;
  margin-top: 12px;
  width: fit-content;
  font-size: 12px;
  display: block;
}

@media (min-width: 920px) {
  .border_link {
    font-size: max(0.9523809524vw, 16px);
  }
}

.border_link:hover {
  animation: none;
}

@media (min-width: 920px) {
  .border_link:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}

@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }

  50% {
    background-size: 0 1px;
    background-position: bottom right;
  }

  51% {
    background-position: bottom left;
  }

  100% {
    background-size: 100% 1px;
  }
}

.asterisk {
  font-size: max(0.8333333333vw, 14px);
  padding-left: 0.9523809524vw;
  position: relative;
  display: inline-block;
}

@media (min-width: 920px) {
  .asterisk {
    font-size: 14px;
    padding-left: 16px;
  }
}

.asterisk::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
  color: #fff;
}

.fixed_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  font-size: max(3.4666666667vw, 13px);
  text-decoration: none;
  z-index: 999;
  border-top: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.4);
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
}

@media (min-width: 920px) {
  .fixed_btn {
    display: none;
  }
}

.fixed_btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/*ヘッダーのスタイル*/
.site_header {
  padding: 28px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

@media (min-width: 920px) {
  .site_header {
    padding: min(2.8571428571vw, 40px) min(5.9523809524vw, 100px) 20px;
  }
}

@media (max-width: 599px) {
  .site_header_logo {
    max-width: 180px;
  }
}

.global_nav {
  position: relative;
  z-index: 99;
}

.global_nav_toggle {
  box-shadow: none;
  display: block;
  width: 24px;
  height: 31px;
  border: none;
  position: relative;
  z-index: 1001;
  background: transparent;
  color: #fff;
  transition: 0.3s linear;
  text-align: left;
  padding: 0;
  border-radius: 0;
}

@media (min-width: 920px) {
  .global_nav_toggle {
    width: 60px;
    height: 42px;
  }
}

.global_nav_toggle_bar {
  background: #fff;
  display: block;
  position: absolute;
  transition: 0.3s linear;
  transition-property: transform, opacity, width;
  transform-origin: 100% 50%;
  right: 0;
  width: 24px;
  height: 1px;
}

@media (min-width: 920px) {
  .global_nav_toggle_bar {
    width: 60px;
    height: 2px;
  }
}

.global_nav_toggle_bar-top {
  top: 10px;
}

.global_nav_toggle_bar-mid {
  top: 50%;
  transform: translateY(-50%);
}

.global_nav_toggle_bar-btm {
  bottom: 10px;
}

.global_nav_toggle.is-active .global_nav_toggle_bar {
  width: 24px;
  background-color: #fff !important;
}

@media (min-width: 920px) {
  .global_nav_toggle.is-active .global_nav_toggle_bar {
    width: 60px;
  }
}

.global_nav_toggle.is-active .global_nav_toggle_bar-top {
  transform: translateY(0) rotate(-24deg);
}

@media (min-width: 920px) {
  .global_nav_toggle.is-active .global_nav_toggle_bar-top {
    transform: translateY(0) rotate(-18deg);
  }
}

.global_nav_toggle.is-active .global_nav_toggle_bar-mid {
  opacity: 0;
}

.global_nav_toggle.is-active .global_nav_toggle_bar-btm {
  transform: translateY(0) rotate(24deg);
}

@media (min-width: 920px) {
  .global_nav_toggle.is-active .global_nav_toggle_bar-btm {
    transform: translateY(0) rotate(20deg);
  }
}

.global_nav_overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: all 0.3s linear;
  overflow-y: auto;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.global_nav_overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.global_nav_container {
  background-color: #263c4d;
  width: 100%;
  min-height: 100%;
  overflow-y: auto;
  flex-shrink: 0;
  padding: 80px 20px;
}

@media (min-width: 920px) {
  .global_nav_container {
    padding: min(14.5238095238vw, 244px) 20px 50px;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 560px;
  }
}

.global_nav_list {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 920px) {
  .global_nav_list {
    align-items: flex-start;
    width: fit-content;
    gap: min(1.7857142857vw, 30px);
  }
}

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

.global_nav_list_item_bottom {
  margin-top: 50px;
}

@media (min-width: 920px) {
  .global_nav_list_item_bottom {
    margin-top: min(2.9761904762vw, 50px);
  }
}

.global_nav_list_link {
  display: block;
  line-height: 1.4;
  transition: opacity 0.3s ease-out;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
}

@media (min-width: 920px) {
  .global_nav_list_link {
    font-size: 18px;
  }
}

.global_nav_list_link_bottom {
  font-size: 11px;
}

@media (min-width: 920px) {
  .global_nav_list_link_bottom {
    font-size: 14px;
  }
}

.home .site_header {
  transition-delay: 2.5s;
}

/*フッターのスタイル*/
.site_footer {
  padding: 64px 40px 26px;
  background-color: #263c4d;
  position: relative;
  z-index: 10;
}

@media (min-width: 920px) {
  .site_footer {
    padding: 100px 40px 50px;
  }
}

.site_footer_logo {
  text-align: center;
  margin: 0 auto 30px;
  max-width: 136px;
}

@media (min-width: 920px) {
  .site_footer_logo {
    max-width: none;
    margin-bottom: 94px;
  }
}

.site_footer_nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 920px) {
  .site_footer_nav {
    gap: 62px;
  }
}

.site_footer_nav_list {
  display: flex;
  gap: 46px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 920px) {
  .site_footer_nav_list {
    gap: 60px;
  }
}

@media (max-width: 919px) {
  .site_footer_nav_list_right {
    margin-right: -18px;
  }
}

@media (max-width: 919px) {
  .site_footer_nav_list.first {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
  }
}

.site_footer_nav_list a {
  font-size: 11px;
}

@media (min-width: 920px) {
  .site_footer_nav_list a {
    font-size: 18px;
  }
}

@media (min-width: 920px) {
  .site_footer_nav_list_bottom {
    margin-top: 28px;
  }
}

.site_footer_nav_list_bottom .site_footer_nav_list_item a {
  font-size: 10px;
}

@media (min-width: 920px) {
  .site_footer_nav_list_bottom .site_footer_nav_list_item a {
    font-size: 12px;
  }
}

.site_footer .copyright {
  font-size: 10px;
  text-align: center;
  margin-top: 18px;
}

@media (min-width: 920px) {
  .site_footer .copyright {
    margin-top: 52px;
  }
}

.page_contents_concept .fixed_bg_section.first {
  height: 240vh;
}

.page_contents_concept .fixed_bg_section.second {
  height: 480vh;
}

.page_contents_concept .fixed_bg_section .bg_images .section_bg1 {
  background-image: url("../img/concept/concept_bg1_sp.jpg");
  background-image: image-set(url("../img/concept/concept_bg1_sp.jpg") 1x, url("../img/concept/concept_bg1_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/concept/concept_bg1_sp.jpg") 1x, url("../img/concept/concept_bg1_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .bg_images .section_bg1 {
    background-image: url("../img/concept/concept_bg1.jpg");
    background-image: image-set(url("../img/concept/concept_bg1.jpg") 1x, url("../img/concept/concept_bg1@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/concept/concept_bg1.jpg") 1x, url("../img/concept/concept_bg1@2x.jpg") 2x);
  }
}

.page_contents_concept .fixed_bg_section .bg_images .section_bg2 {
  background-image: url("../img/concept/concept_bg2_sp.jpg");
  background-image: image-set(url("../img/concept/concept_bg2_sp.jpg") 1x, url("../img/concept/concept_bg2_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/concept/concept_bg2_sp.jpg") 1x, url("../img/concept/concept_bg2_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .bg_images .section_bg2 {
    background-image: url("../img/concept/concept_bg2.jpg");
    background-image: image-set(url("../img/concept/concept_bg2.jpg") 1x, url("../img/concept/concept_bg2@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/concept/concept_bg2.jpg") 1x, url("../img/concept/concept_bg2@2x.jpg") 2x);
  }
}

.page_contents_concept .fixed_bg_section .bg_images .section_bg3 {
  background-image: url("../img/concept/concept_bg3_sp.jpg");
  background-image: image-set(url("../img/concept/concept_bg3_sp.jpg") 1x, url("../img/concept/concept_bg3_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/concept/concept_bg3_sp.jpg") 1x, url("../img/concept/concept_bg3_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .bg_images .section_bg3 {
    background-image: url("../img/concept/concept_bg3.jpg");
    background-image: image-set(url("../img/concept/concept_bg3.jpg") 1x, url("../img/concept/concept_bg3@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/concept/concept_bg3.jpg") 1x, url("../img/concept/concept_bg3@2x.jpg") 2x);
  }
}

.page_contents_concept .fixed_bg_section .bg_images .section_bg4 {
  background-image: url("../img/concept/concept_bg4_sp.jpg");
  background-image: image-set(url("../img/concept/concept_bg4_sp.jpg") 1x, url("../img/concept/concept_bg4_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/concept/concept_bg4_sp.jpg") 1x, url("../img/concept/concept_bg4_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .bg_images .section_bg4 {
    background-image: url("../img/concept/concept_bg4.jpg");
    background-image: image-set(url("../img/concept/concept_bg4.jpg") 1x, url("../img/concept/concept_bg4@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/concept/concept_bg4.jpg") 1x, url("../img/concept/concept_bg4@2x.jpg") 2x);
  }
}

.page_contents_concept .fixed_bg_section .bg_images .section_bg5 {
  background-image: url("../img/concept/concept_bg5_sp.jpg");
  background-image: image-set(url("../img/concept/concept_bg5_sp.jpg") 1x, url("../img/concept/concept_bg5_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/concept/concept_bg5_sp.jpg") 1x, url("../img/concept/concept_bg5_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .bg_images .section_bg5 {
    background-image: url("../img/concept/concept_bg5.jpg");
    background-image: image-set(url("../img/concept/concept_bg5.jpg") 1x, url("../img/concept/concept_bg5@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/concept/concept_bg5.jpg") 1x, url("../img/concept/concept_bg5@2x.jpg") 2x);
  }
}

.page_contents_concept .fixed_bg_section .bg_images .section_bg6 {
  background-image: url("../img/concept/concept_bg6_sp.jpg");
  background-image: image-set(url("../img/concept/concept_bg6_sp.jpg") 1x, url("../img/concept/concept_bg6_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/concept/concept_bg6_sp.jpg") 1x, url("../img/concept/concept_bg6_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .bg_images .section_bg6 {
    background-image: url("../img/concept/concept_bg6.jpg");
    background-image: image-set(url("../img/concept/concept_bg6.jpg") 1x, url("../img/concept/concept_bg6@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/concept/concept_bg6.jpg") 1x, url("../img/concept/concept_bg6@2x.jpg") 2x);
  }
}

.page_contents_concept .fixed_bg_section .bg_images .section_bg7 {
  background-image: url("../img/concept/concept_bg7_sp.jpg");
  background-image: image-set(url("../img/concept/concept_bg7_sp.jpg") 1x, url("../img/concept/concept_bg7_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/concept/concept_bg7_sp.jpg") 1x, url("../img/concept/concept_bg7_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .bg_images .section_bg7 {
    background-image: url("../img/concept/concept_bg7.jpg");
    background-image: image-set(url("../img/concept/concept_bg7.jpg") 1x, url("../img/concept/concept_bg7@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/concept/concept_bg7.jpg") 1x, url("../img/concept/concept_bg7@2x.jpg") 2x);
  }
}

.page_contents_concept .fixed_bg_section .text_triggers {
  position: relative;
  z-index: 1;
}

.page_contents_concept .fixed_bg_section .text_triggers .text_trigger {
  height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 2;
  flex-direction: column-reverse;
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger {
    font-size: max(20px, 1.1904761905vw);
    flex-direction: row;
  }
}

.page_contents_concept .fixed_bg_section .text_triggers .text_trigger-03 {
  padding: 0 20px;
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger-03 {
    padding: 0 11.5476190476vw;
    justify-content: flex-start;
  }
}

.page_contents_concept .fixed_bg_section .text_triggers .text_trigger-03 .section_body {
  gap: 40px;
  flex-direction: column-reverse;
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger-03 .section_body {
    gap: 188px;
    flex-direction: row;
  }
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger-03 .section_body_text {
    padding-top: 14.2857142857vw;
  }
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger-04 {
    padding: 0 11.5476190476vw 0 16.9642857143vw;
  }
}

.page_contents_concept .fixed_bg_section .text_triggers .text_trigger-04 .section_body {
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger-04 .section_body_catch {
    padding-top: 5.3571428571vw;
  }
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger-05 {
    padding: 0 11.5476190476vw;
  }
}

.page_contents_concept .fixed_bg_section .text_triggers .text_trigger-05 .section_body {
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger-06 {
    padding: 0 11.5476190476vw 0 24.0476190476vw;
  }
}

.page_contents_concept .fixed_bg_section .text_triggers .text_trigger-06 .section_body {
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger-06 .section_body_text {
    padding-top: 5.3571428571vw;
  }
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger-06 .section_body_catch_en {
    padding-top: 2.761905vw;
  }
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger-07 {
    padding: 0 18.6904761905vw 0 12.1428571429vw;
  }
}

.page_contents_concept .fixed_bg_section .text_triggers .text_trigger-07 .section_body {
  flex-direction: column-reverse;
  width: 100%;
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger-07 .section_body {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger-07 .section_body_text {
    padding-top: 11.3095238095vw;
  }
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger-07 .section_body_catch_en {
    padding-top: 3.761905vw;
  }
}

.page_contents_concept .fixed_bg_section .text_triggers .text_trigger_catch {
  display: flex;
  gap: 0.9523809524vw;
  margin-bottom: 4.0476190476vw;
  margin-left: 4px;
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger_catch {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: max(20px, 1.1904761905vw);
    gap: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.page_contents_concept .fixed_bg_section .text_triggers .text_trigger_catch_inr {
  font-size: max(3.4666666667vw, 13px);
  writing-mode: tb;
  letter-spacing: 0.25em;
}

@media (min-width: 920px) {
  .page_contents_concept .fixed_bg_section .text_triggers .text_trigger_catch_inr {
    font-size: max(20px, 1.1904761905vw);
    line-height: 2.25;
  }
}

.essence {
  background-color: #263c4d;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 920px) {
  .essence {
    padding: 0 15.119047619vw 0 17.8571428571vw;
    height: 140vh;
  }
}

.essence .section_body_catch {
  letter-spacing: 0.075em;
  line-height: 2.25;
}

.essence_body {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 40px;
}

@media (min-width: 920px) {
  .essence_body {
    flex-direction: row;
    justify-content: space-between;
    align-items: unset;
  }
}

.essence_body_catch {
  font-size: 22px;
  writing-mode: vertical-rl;
  line-height: 2.25;
  letter-spacing: 0.25em;
}

@media (min-width: 920px) {
  .essence_body_catch {
    font-size: max(1.5476190476vw, 26px);
  }
}

.essence_body_contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 920px) {
  .essence_body_contents {
    gap: 6.3095238095vw;
  }
}

.essence_body_contents_body {
  display: flex;
  gap: 46px;
}

@media (min-width: 920px) {
  .essence_body_contents_body {
    gap: 6.6666666667vw;
  }
}

.essence_body_contents_body_num {
  font-size: 16px;
  position: relative;
  height: fit-content;
  white-space: nowrap;
}

@media (min-width: 920px) {
  .essence_body_contents_body_num {
    font-size: max(1.3095238095vw, 22px);
  }
}

.essence_body_contents_body_num::before {
  position: absolute;
  content: "";
  background-color: #fff;
  height: 1px;
  width: 30px;
  bottom: 8px;
  right: -38px;
}

@media (min-width: 920px) {
  .essence_body_contents_body_num::before {
    width: 4.5238095238vw;
    bottom: 0.65238vw;
    right: -5.4761904762vw;
  }
}

.essence_body_contents_body_text_top {
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 0.2em;
}

@media (min-width: 920px) {
  .essence_body_contents_body_text_top {
    font-size: max(1.3095238095vw, 22px);
    margin-bottom: 18px;
  }
}

.essence_body_contents_body_text_inr {
  font-size: 14px;
}

@media (min-width: 920px) {
  .essence_body_contents_body_text_inr {
    font-size: max(1.0714285714vw, 18px);
  }
}

.page_contents_object .fixed_bg_section.first {
  height: 240vh;
}

.page_contents_object .fixed_bg_section.second {
  height: 240vh;
}

.page_contents_object .fixed_bg_section .bg_images .section_bg2 {
  background-image: url("../img/object/object_bg2_sp.jpg");
  background-image: image-set(url("../img/object/object_bg2_sp.jpg") 1x, url("../img/object/object_bg2_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/object/object_bg2_sp.jpg") 1x, url("../img/object/object_bg2_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .bg_images .section_bg2 {
    background-image: url("../img/object/object_bg2.jpg");
    background-image: image-set(url("../img/object/object_bg2.jpg") 1x, url("../img/object/object_bg2@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/object/object_bg2.jpg") 1x, url("../img/object/object_bg2@2x.jpg") 2x);
  }
}

.page_contents_object .fixed_bg_section .bg_images .section_bg3 {
  background-image: url("../img/object/object_bg3_sp.jpg");
  background-image: image-set(url("../img/object/object_bg3_sp.jpg") 1x, url("../img/object/object_bg3_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/object/object_bg3_sp.jpg") 1x, url("../img/object/object_bg3_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .bg_images .section_bg3 {
    background-image: url("../img/object/object_bg3.jpg");
    background-image: image-set(url("../img/object/object_bg3.jpg") 1x, url("../img/object/object_bg3@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/object/object_bg3.jpg") 1x, url("../img/object/object_bg3@2x.jpg") 2x);
  }
}

.page_contents_object .fixed_bg_section .bg_images .section_bg4 {
  background-image: url("../img/object/object_bg4_sp.jpg");
  background-image: image-set(url("../img/object/object_bg4_sp.jpg") 1x, url("../img/object/object_bg4_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/object/object_bg4_sp.jpg") 1x, url("../img/object/object_bg4_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .bg_images .section_bg4 {
    background-image: url("../img/object/object_bg4.jpg");
    background-image: image-set(url("../img/object/object_bg4.jpg") 1x, url("../img/object/object_bg4@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/object/object_bg4.jpg") 1x, url("../img/object/object_bg4@2x.jpg") 2x);
  }
}

.page_contents_object .fixed_bg_section .bg_images .section_bg5 {
  background-image: url("../img/object/object_bg5_sp.jpg");
  background-image: image-set(url("../img/object/object_bg5_sp.jpg") 1x, url("../img/object/object_bg5_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/object/object_bg5_sp.jpg") 1x, url("../img/object/object_bg5_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .bg_images .section_bg5 {
    background-image: url("../img/object/object_bg5.jpg");
    background-image: image-set(url("../img/object/object_bg5.jpg") 1x, url("../img/object/object_bg5@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/object/object_bg5.jpg") 1x, url("../img/object/object_bg5@2x.jpg") 2x);
  }
}

.page_contents_object .fixed_bg_section .text_triggers {
  position: relative;
  z-index: 1;
}

.page_contents_object .fixed_bg_section .text_triggers .text_trigger {
  height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 2;
  flex-direction: column-reverse;
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger {
    font-size: max(20px, 1.1904761905vw);
    flex-direction: row;
  }
}

.page_contents_object .fixed_bg_section .text_triggers .text_trigger-02 {
  padding: 0 21.6666666667vw 0 11.9047619048vw;
}

.page_contents_object .fixed_bg_section .text_triggers .text_trigger-02 .section_body {
  flex-direction: column-reverse;
  width: 100%;
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger-02 .section_body {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger-02 .section_body_text {
    padding-top: 11.9047619048vw;
  }
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger-02 .section_body_catch_en {
    padding-top: 2.761905vw;
  }
}

.page_contents_object .fixed_bg_section .text_triggers .text_trigger-03 {
  padding: 0 11.5476190476vw 0 17.5vw;
}

.page_contents_object .fixed_bg_section .text_triggers .text_trigger-03 .section_body {
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger-03 .section_body_text {
    padding-top: 12.5vw;
  }
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger-03 .section_body_catch_en {
    padding-top: 2.61905vw;
  }
}

.page_contents_object .fixed_bg_section .text_triggers .text_trigger-04 {
  padding: 0 35.3571428571vw 0 11.9047619048vw;
}

.page_contents_object .fixed_bg_section .text_triggers .text_trigger-04 .section_body {
  flex-direction: column-reverse;
  width: 100%;
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger-04 .section_body {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger-04 .section_body_text {
    padding-top: 12.5vw;
  }
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger-04 .section_body_text_bottom {
    margin-top: 7.1428571429vw;
  }
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger-04 .section_body_catch {
    padding-bottom: 1.7857142857vw;
  }
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger-04 .section_body_catch_en {
    padding-top: 6.761905vw;
  }
}

.page_contents_object .fixed_bg_section .text_triggers .text_trigger-05 {
  padding: 0 10.3571428571vw 0 16.9047619048vw;
}

.page_contents_object .fixed_bg_section .text_triggers .text_trigger-05 .section_body {
  justify-content: space-between;
  width: 100%;
}

.page_contents_object .fixed_bg_section .text_triggers .text_trigger-05 .section_body_catch_en {
  padding: 0;
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger-05 .section_body_catch_ja {
    padding-top: 2.380952381vw;
  }
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger-05 .section_body_text_bottom {
    margin-top: 8.3333333333vw;
  }
}

.page_contents_object .fixed_bg_section .text_triggers .text_trigger_catch {
  display: flex;
  gap: 16px;
  margin-bottom: 68px;
  margin-left: 4px;
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger_catch {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: max(20px, 15.4761904762vw);
    gap: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.page_contents_object .fixed_bg_section .text_triggers .text_trigger_catch_inr {
  font-size: max(3.4666666667vw, 13px);
  writing-mode: tb;
  letter-spacing: 0.25em;
}

@media (min-width: 920px) {
  .page_contents_object .fixed_bg_section .text_triggers .text_trigger_catch_inr {
    font-size: max(20px, 1.5476190476vw);
    line-height: 2.25;
  }
}

.object_gallery {
  background-color: #263c4d;
  position: relative;
  z-index: 1;
  padding: 10.4761904762vw 0 14.4642857143vw;
}

.object_gallery_body_contents {
  display: flex;
}

.object_gallery_body_contents-01 {
  justify-content: flex-end;
  gap: 7.5vw;
  margin-bottom: 9.5238095238vw;
}

.object_gallery_body_contents-02 {
  justify-content: center;
  margin-bottom: 9.2857142857vw;
}

.object_gallery_body_contents-03 {
  justify-content: flex-end;
  gap: 6.5476190476vw;
}

.object_gallery_body_contents_item {
  overflow: hidden;
}

.object_gallery_body_contents_item img {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1.2s ease-out, filter 0.8s ease-out;
  will-change: transform, opacity, filter;
  display: block;
  width: 100%;
  position: relative;
  display: block;
}

.object_gallery_body_contents_item.visible img {
  opacity: 1;
  filter: blur(0);
}

.object_gallery_body_contents_item_wrap {
  display: flex;
  flex-direction: column;
  gap: 2.0238095238vw;
}

.object_gallery_body_contents_item-01 {
  width: 36.4285714286vw;
}

.object_gallery_body_contents_item-02 {
  width: 50vw;
  padding-top: 8.9285714286vw;
}

.object_gallery_body_contents_item-03 {
  width: 88.0952380952vw;
}

.object_gallery_body_contents_item-04 {
  width: 37.5595238095vw;
}

.object_gallery_body_contents_item-05 {
  width: 37.5595238095vw;
}

.object_gallery_body_contents_item-06 {
  width: 50vw;
  padding-top: 7.9761904762vw;
}

.page_contents_evidence .fixed_bg_section.first {
  height: 120vh;
}

.page_contents_evidence .fixed_bg_section.second {
  height: 240vh;
}

.page_contents_evidence .fixed_bg_section.third {
  height: 120vh;
}

.page_contents_evidence .fixed_bg_section .bg_images .section_bg2 {
  background-image: url("../img/evidence/evidence_bg2_sp.jpg");
  background-image: image-set(url("../img/evidence/evidence_bg2_sp.jpg") 1x, url("../img/evidence/evidence_bg2_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/evidence/evidence_bg2_sp.jpg") 1x, url("../img/evidence/evidence_bg2_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .bg_images .section_bg2 {
    background-image: url("../img/evidence/evidence_bg2.jpg");
    background-image: image-set(url("../img/evidence/evidence_bg2.jpg") 1x, url("../img/evidence/evidence_bg2@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/evidence/evidence_bg2.jpg") 1x, url("../img/evidence/evidence_bg2@2x.jpg") 2x);
  }
}

.page_contents_evidence .fixed_bg_section .bg_images .section_bg3 {
  background-image: url("../img/evidence/evidence_bg3_sp.jpg");
  background-image: image-set(url("../img/evidence/evidence_bg3_sp.jpg") 1x, url("../img/evidence/evidence_bg3_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/evidence/evidence_bg3_sp.jpg") 1x, url("../img/evidence/evidence_bg3_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .bg_images .section_bg3 {
    background-image: url("../img/evidence/evidence_bg3.jpg");
    background-image: image-set(url("../img/evidence/evidence_bg3.jpg") 1x, url("../img/evidence/evidence_bg3@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/evidence/evidence_bg3.jpg") 1x, url("../img/evidence/evidence_bg3@2x.jpg") 2x);
  }
}

.page_contents_evidence .fixed_bg_section .bg_images .section_bg4 {
  background-image: url("../img/evidence/evidence_bg4_sp.jpg");
  background-image: image-set(url("../img/evidence/evidence_bg4_sp.jpg") 1x, url("../img/evidence/evidence_bg4_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/evidence/evidence_bg4_sp.jpg") 1x, url("../img/evidence/evidence_bg4_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .bg_images .section_bg4 {
    background-image: url("../img/evidence/evidence_bg4.jpg");
    background-image: image-set(url("../img/evidence/evidence_bg4.jpg") 1x, url("../img/evidence/evidence_bg4@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/evidence/evidence_bg4.jpg") 1x, url("../img/evidence/evidence_bg4@2x.jpg") 2x);
  }
}

.page_contents_evidence .fixed_bg_section .bg_images .section_bg5 {
  background-image: url("../img/evidence/evidence_bg5_sp.jpg");
  background-image: image-set(url("../img/evidence/evidence_bg5_sp.jpg") 1x, url("../img/evidence/evidence_bg5_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/evidence/evidence_bg5_sp.jpg") 1x, url("../img/evidence/evidence_bg5_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .bg_images .section_bg5 {
    background-image: url("../img/evidence/evidence_bg5.jpg");
    background-image: image-set(url("../img/evidence/evidence_bg5.jpg") 1x, url("../img/evidence/evidence_bg5@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/evidence/evidence_bg5.jpg") 1x, url("../img/evidence/evidence_bg5@2x.jpg") 2x);
  }
}

.page_contents_evidence .fixed_bg_section .bg_images .section_bg6 {
  background-image: url("../img/evidence/evidence_bg6_sp.jpg");
  background-image: image-set(url("../img/evidence/evidence_bg6_sp.jpg") 1x, url("../img/evidence/evidence_bg6_sp@2x.jpg") 2x);
  background-image: -webkit-image-set(url("../img/evidence/evidence_bg6_sp.jpg") 1x, url("../img/evidence/evidence_bg6_sp@2x.jpg") 2x);
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .bg_images .section_bg6 {
    background-image: url("../img/evidence/evidence_bg6.jpg");
    background-image: image-set(url("../img/evidence/evidence_bg6.jpg") 1x, url("../img/evidence/evidence_bg6@2x.jpg") 2x);
    background-image: -webkit-image-set(url("../img/evidence/evidence_bg6.jpg") 1x, url("../img/evidence/evidence_bg6@2x.jpg") 2x);
  }
}

.page_contents_evidence .fixed_bg_section .text_triggers {
  position: relative;
  z-index: 1;
}

.page_contents_evidence .fixed_bg_section .text_triggers .text_trigger {
  height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 2;
  flex-direction: column-reverse;
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .text_triggers .text_trigger {
    font-size: max(16px, 1.1904761905vw);
    flex-direction: row;
  }
}

.page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-02 {
  padding: 0 20.4761904762vw 0 11.9047619048vw;
}

.page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-02 .section_body {
  flex-direction: column-reverse;
  width: 100%;
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-02 .section_body {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-02 .section_body_catch {
    padding-bottom: 2.380952381vw;
  }
}

.page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-03 {
  padding: 0 15.119047619vw 0 11.7857142857vw;
}

.page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-03 .section_body {
  flex-direction: column-reverse;
  width: 100%;
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-03 .section_body {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-03 .section_body_text {
    padding-top: 4.7619047619vw;
  }
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-03 .section_body_catch_en {
    padding-top: 6.761905vw;
  }
}

.page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-04 {
  padding: 0 11.5476190476vw 0 21.0714285714vw;
}

.page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-04 .section_body {
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-04 .section_body_text {
    padding-top: 3.6904761905vw;
  }
}

.page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-05 {
  padding: 0 14.5238095238vw 0 11.9047619048vw;
}

.page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-05 .section_body {
  flex-direction: column-reverse;
  width: 100%;
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-05 .section_body {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-05 .section_body_catch {
    padding-top: 1.7857142857vw;
  }
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .text_triggers .text_trigger-05 .section_body_catch_en {
    padding-top: 5.761905vw;
  }
}

.page_contents_evidence .fixed_bg_section .text_triggers .text_trigger_catch {
  display: flex;
  gap: 0.9523809524vw;
  margin-bottom: 4.0476190476vw;
  margin-left: 4px;
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .text_triggers .text_trigger_catch {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: max(20px, 1.1904761905vw);
    gap: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.page_contents_evidence .fixed_bg_section .text_triggers .text_trigger_catch_inr {
  font-size: max(3.4666666667vw, 13px);
  writing-mode: tb;
  letter-spacing: 0.25em;
}

@media (min-width: 920px) {
  .page_contents_evidence .fixed_bg_section .text_triggers .text_trigger_catch_inr {
    font-size: max(16px, 1.1904761905vw);
    line-height: 2.25;
  }
}

.page_contents_evidence .data_area {
  background-color: #263c4d;
  position: relative;
  z-index: 1;
  padding: 80px 20px;
}

@media (min-width: 920px) {
  .page_contents_evidence .data_area {
    padding: 10.4761904762vw 11.7857142857vw 14.4642857143vw;
  }
}

.page_contents_evidence .data_area_name {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
}

@media (min-width: 920px) {
  .page_contents_evidence .data_area_name {
    flex-direction: row;
    justify-content: space-between;
    align-items: unset;
    gap: 1.1904761905vw;
    margin-bottom: 1.9047619048vw;
  }
}

.page_contents_evidence .data_area_name_item {
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 260px;
  border: 1px solid #fff;
  font-size: 12px;
}

@media (min-width: 920px) {
  .page_contents_evidence .data_area_name_item {
    font-size: max(1.1904761905vw, 16px);
    padding: 0.7142857143vw 1.1904761905vw;
    max-width: 36.0714285714vw;
  }
}

.page_contents_evidence .data_area_top {
  font-size: 12px;
  text-align: center;
  margin-bottom: 20px;
}

@media (min-width: 920px) {
  .page_contents_evidence .data_area_top {
    font-size: max(1.1904761905vw, 16px);
    margin-bottom: 2.380952381vw;
  }
}

.page_contents_evidence .data_area_body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 920px) {
  .page_contents_evidence .data_area_body {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.1904761905vw;
    margin-bottom: 8.6904761905vw;
  }
}

.page_contents_evidence .data_area_body_item_graph {
  padding-bottom: 40px;
  margin-bottom: 20px;
  position: relative;
}

@media (min-width: 920px) {
  .page_contents_evidence .data_area_body_item_graph {
    width: 35.9523809524vw;
    padding-bottom: 3.2142857143vw;
    margin-bottom: 2.0238095238vw;
  }
}

.page_contents_evidence .data_area_body_item_graph::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 12px;
  background-image: url("../img/evidence/arrow_bottom.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 920px) {
  .page_contents_evidence .data_area_body_item_graph::before {
    width: 2.5vw;
    height: 1.25vw;
  }
}

.page_contents_evidence .data_area_body_item_text {
  text-align: center;
  font-size: 14px;
}

@media (min-width: 920px) {
  .page_contents_evidence .data_area_body_item_text {
    font-size: max(1.3095238095vw, 16px);
  }
}

.page_contents_evidence .data_area_comment {
  padding: 20px;
  border: 1px solid #fff;
  margin: 0 auto;
}

@media (min-width: 920px) {
  .page_contents_evidence .data_area_comment {
    max-width: 69.7619047619vw;
    padding: 2.619047619vw 3.5714285714vw;
  }
}

.page_contents_evidence .data_area_comment_top {
  font-size: 14px;
  border-bottom: 1px solid #fff;
  width: fit-content;
  margin-bottom: 20px;
}

@media (min-width: 920px) {
  .page_contents_evidence .data_area_comment_top {
    font-size: max(1.1904761905vw, 16px);
    margin-bottom: 1.4285714286vw;
  }
}

.page_contents_evidence .data_area_comment_text {
  font-size: 14px;
}

@media (min-width: 920px) {
  .page_contents_evidence .data_area_comment_text {
    font-size: max(1.1904761905vw, 16px);
  }
}

.page_contents_evidence .brewery {
  padding: 80px 20px;
  background-color: #263c4d;
  position: relative;
  z-index: 1;
}

@media (min-width: 920px) {
  .page_contents_evidence .brewery {
    padding: 10.8333333333vw 10.7142857143vw 14.6428571429vw;
  }
}

.page_contents_evidence .brewery_top {
  font-size: 16px;
  writing-mode: vertical-rl;
  margin: 0 auto 20px;
  line-height: 2.25;
  letter-spacing: 0.25em;
}

@media (min-width: 920px) {
  .page_contents_evidence .brewery_top {
    font-size: max(1.5476190476vw, 20px);
    margin: 0 auto 8.8095238095vw;
  }
}

.page_contents_evidence .brewery_text {
  font-size: 12px;
  margin-bottom: 28px;
  text-align: center;
}

@media (min-width: 920px) {
  .page_contents_evidence .brewery_text {
    font-size: max(1.0714285714vw, 14px);
    margin-bottom: 10.7142857143vw;
  }
}

.page_contents_evidence .brewery_body {
  display: flex;
  flex-direction: column;
}

@media (min-width: 920px) {
  .page_contents_evidence .brewery_body {
    flex-direction: row;
  }
}

.page_contents_evidence .brewery_body_item {
  position: relative;
}

.page_contents_evidence .brewery_body_item_text {
  width: 100%;
  max-width: 260px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 920px) {
  .page_contents_evidence .brewery_body_item_text {
    width: 21.4285714286vw;
    max-width: none;
  }
}

.page_contents_evidence .brewery_body_item_text_place {
  font-size: max(1.6666666667vw, 22px);
  margin-bottom: 4.880952381vw;
  text-align: center;
}

.page_contents_evidence .brewery_body_item_text_inr {
  font-size: max(1.0119047619vw, 14px);
}

.page_contents_greeting .greeting_body {
  z-index: 1;
  position: relative;
  padding-top: 1.9047619048vw;
  overflow: hidden;
  background-color: #f0f0f0;
  background-clip: padding-box;
  background-image: url(../img/greeting/greeting_bg_sp.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 100px 20px 210px;
}

@media (min-width: 920px) {
  .page_contents_greeting .greeting_body {
    background-image: url(../img/greeting/greeting_bg.jpg);
    background-image: image-set(url(../img/greeting/greeting_bg.jpg) 1x, url(../img/greeting/greeting_bg@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/greeting/greeting_bg.jpg) 1x, url(../img/greeting/greeting_bg@2x.jpg) 2x);
    padding: 142px 23.5714285714vw 51.3095238095vw;
  }
}

.page_contents_greeting .greeting_body_title {
  text-align: center;
  margin-bottom: 80px;
}

@media (min-width: 920px) {
  .page_contents_greeting .greeting_body_title {
    margin-bottom: 11.9047619048vw;
  }
}

.page_contents_greeting .greeting_body_title_en {
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 40px;
  position: relative;
  font-weight: 400;
}

@media (min-width: 920px) {
  .page_contents_greeting .greeting_body_title_en {
    font-size: max(1.6071428571vw, 20px);
    padding-bottom: 10px;
    margin-bottom: 96px;
  }
}

.page_contents_greeting .greeting_body_title_en::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 920px) {
  .page_contents_greeting .greeting_body_title_en::before {
    width: 1.3095238095vw;
  }
}

.page_contents_greeting .greeting_body_title_ja {
  writing-mode: vertical-rl;
  font-size: 20px;
  margin: 0 auto;
  letter-spacing: 0.25em;
  white-space: nowrap;
}

@media (min-width: 920px) {
  .page_contents_greeting .greeting_body_title_ja {
    font-size: max(1.5476190476vw, 20px);
  }
}

.page_contents_greeting .greeting_body_text_inr {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 2.25;
}

@media (min-width: 920px) {
  .page_contents_greeting .greeting_body_text_inr {
    font-size: max(1.0714285714vw, 14px);
    margin-bottom: 2.2619047619vw;
  }
}

.page_contents_greeting .greeting_body_text_inr:last-of-type {
  margin-bottom: 24px;
}

@media (min-width: 920px) {
  .page_contents_greeting .greeting_body_text_inr:last-of-type {
    margin-bottom: 5.2380952381vw;
  }
}

.page_contents_greeting .greeting_body_text_name {
  width: fit-content;
  margin-left: auto;
}

.page_contents_greeting .greeting_body_text_name_item {
  font-size: 12px;
  margin-bottom: 12px;
}

@media (min-width: 920px) {
  .page_contents_greeting .greeting_body_text_name_item {
    font-size: max(0.9523809524vw, 12px);
    margin-bottom: 1.4285714286vw;
  }
}

.page_contents_greeting .greeting_body_text_name_item:last-child {
  margin-bottom: 0;
}

.page_contents_greeting .company {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 0 80px;
}

@media (min-width: 920px) {
  .page_contents_greeting .company {
    flex-direction: row;
    padding: 9.6428571429vw 10.4761904762vw 9.6428571429vw 0;
    align-items: flex-end;
    gap: 5.5952380952vw;
  }
}

@media (min-width: 920px) {
  .page_contents_greeting .company_img {
    width: 51.6071428571vw;
  }
}

@media (max-width: 919px) {
  .page_contents_greeting .company_text {
    padding: 0 20px;
  }
}

.page_contents_greeting .company_text_top {
  font-size: 14px;
  margin-bottom: 20px;
  color: #000;
}

@media (min-width: 920px) {
  .page_contents_greeting .company_text_top {
    font-size: max(1.1904761905vw, 16px);
    margin-bottom: 2.380952381vw;
  }
}

.page_contents_greeting .company_text_inr {
  margin-bottom: 28px;
}

@media (min-width: 920px) {
  .page_contents_greeting .company_text_inr {
    margin-bottom: 2.1428571429vw;
  }
}

.page_contents_greeting .company_text_inr p {
  font-size: max(1.0714285714vw, 14px);
  color: #000;
  line-height: 2.25;
}

.page_contents_greeting .company_text_inr:last-of-type {
  margin-bottom: 0;
}

.page_contents_greeting .company_text_inr_list li {
  font-size: max(1.0714285714vw, 14px);
  position: relative;
  padding-left: 8px;
  color: #000;
  line-height: 2.25;
}

@media (min-width: 920px) {
  .page_contents_greeting .company_text_inr_list li {
    padding-left: 0.4761904762vw;
  }
}

.flow_text {
  overflow: hidden;
}

.flow_text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 1s ease, transform 1s ease;
}

.flow_text .char.visible {
  opacity: 1;
  transform: translateY(0);
}

.page_contents_collection .collection_item {
  position: relative;
}

.page_contents_collection .collection_item img {
  width: 100%;
}

.page_contents_collection .collection_item_text {
  position: absolute;
  bottom: 50%;
  transform: translate(-50%, 50%);
  width: 100%;
  max-width: 300px;
}

@media (min-width: 920px) {
  .page_contents_collection .collection_item_text {
    bottom: 7.619047619vw;
    transform: none;
    width: auto;
    max-width: none;
  }
}

.page_contents_collection .collection_item_text-01 {
  left: 50%;
}

@media (min-width: 920px) {
  .page_contents_collection .collection_item_text-01 {
    left: 11.7857142857vw;
  }
}

.page_contents_collection .collection_item_text-02 {
  right: 50%;
  transform: translate(50%, 50%);
}

@media (min-width: 920px) {
  .page_contents_collection .collection_item_text-02 {
    right: 11.7857142857vw;
    transform: none;
  }
}

@media (max-width: 919px) {
  .page_contents_collection .collection_item_text .text_btn {
    font-size: 14px;
    max-width: 240px;
    width: 100% !important;
    margin: 0 auto;
  }
}

.page_contents_collection .collection_item_text_body {
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw;
  margin-bottom: 5.3333333333vw;
  align-items: center;
}

@media (min-width: 920px) {
  .page_contents_collection .collection_item_text_body {
    flex-direction: row;
    gap: 8.3333333333vw;
    margin-bottom: 6.4285714286vw;
    align-items: unset;
  }
}

.page_contents_collection .collection_item_text_body_merchandise {
  font-size: 40px;
  line-height: 1;
  text-align: center;
}

@media (min-width: 920px) {
  .page_contents_collection .collection_item_text_body_merchandise {
    font-size: max(4.2857142857vw, 50px);
    line-height: 1.25;
  }
}

.page_contents_collection .collection_item_text_body_merchandise .num {
  font-size: 28px;
}

@media (min-width: 920px) {
  .page_contents_collection .collection_item_text_body_merchandise .num {
    font-size: max(2.9761904762vw, 32px);
  }
}

.page_contents_collection .collection_item_text_body_info_amount {
  font-size: 16px;
  margin-bottom: 12px;
}

@media (min-width: 920px) {
  .page_contents_collection .collection_item_text_body_info_amount {
    font-size: max(1.5476190476vw, 20px);
    margin-bottom: 1.1904761905vw;
  }
}

.page_contents_collection .collection_item_text_body_info_inr {
  font-size: 14px;
  letter-spacing: 0.2em;
}

@media (min-width: 920px) {
  .page_contents_collection .collection_item_text_body_info_inr {
    font-size: max(1.0119047619vw, 14px);
  }
}

.page_contents_collection .nav {
  padding: 80px 20px;
}

@media (min-width: 920px) {
  .page_contents_collection .nav {
    padding: 9.5238095238vw 11.7857142857vw 10vw;
  }
}

.page_contents_collection .nav_top {
  text-align: center;
  font-size: max(0.9523809524vw, 14px);
  margin-bottom: 10.4761904762vw;
  color: #000;
}

.page_contents_collection .nav_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 920px) {
  .page_contents_collection .nav_wrap {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.7142857143vw;
  }
}

.page_contents_collection .nav_wrap_item {
  position: relative;
}

@media (min-width: 920px) {
  .page_contents_collection .nav_wrap_item {
    max-width: 24.6428571429vw;
  }
}

.page_contents_collection .nav_wrap_item_img {
  overflow: hidden;
}

.page_contents_collection .nav_wrap_item_img img {
  width: 100%;
}

@media (min-width: 920px) {
  .page_contents_collection .nav_wrap_item_img img {
    transition: transform 0.3s ease;
  }
}

@media (min-width: 920px) {
  .page_contents_collection .nav_wrap_item:hover .nav_wrap_item_img img {
    transform: scale(1.05);
  }
}

.page_contents_collection .nav_wrap_item_inr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 919px) {
  .page_contents_collection .nav_wrap_item_inr {
    width: 100% !important;
  }
}

@media (max-width: 919px) {
  .page_contents_collection .nav_wrap_item_inr .text_btn {
    max-width: 240px;
    width: 100% !important;
    margin: 0 auto;
  }
}

.page_contents_collection .nav_wrap_item_inr_top {
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
}

@media (min-width: 920px) {
  .page_contents_collection .nav_wrap_item_inr_top {
    font-size: max(0.8928571429vw, 14px);
    margin-bottom: 1.9047619048vw;
  }
}

.page_contents_collection .nav_wrap_item_inr_catch {
  font-size: 16px;
  text-align: center;
  line-height: 1.75;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

@media (min-width: 920px) {
  .page_contents_collection .nav_wrap_item_inr_catch {
    font-size: max(1.3095238095vw, 18px);
    margin-bottom: 2.2619047619vw;
  }
}

.page_contents_collection .nav_wrap_item_inr .text_btn {
  font-size: max(0.8928571429vw, 14px);
  width: 13.9285714286vw;
}

@media (min-width: 920px) {
  .page_contents_collection .nav_wrap_item_inr .text_btn::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    display: inline-block;
    width: 13.9285714286vw;
    height: 0.4761904762vw;
    background-image: url("../img/home/text_btn_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(0);
    transition: transform 0.3s ease;
  }
}

.page_contents_collection .faq {
  background-color: #263c4d;
  padding: 80px 20px;
}

@media (min-width: 920px) {
  .page_contents_collection .faq {
    padding: 8.8095238095vw 11.9047619048vw 0;
  }
}

.page_contents_collection .faq_title {
  margin-bottom: 80px;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_title {
    margin-bottom: 7.5vw;
  }
}

.page_contents_collection .faq_title_en {
  font-size: 22px;
  padding-bottom: 12px;
  margin-bottom: 26px;
  position: relative;
  text-align: center;
  font-weight: 400;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_title_en {
    font-size: max(2.1428571429vw, 24px);
    padding-bottom: 0.7142857143vw;
    margin-bottom: 2.8571428571vw;
  }
}

.page_contents_collection .faq_title_en::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  width: 20px;
  height: 1px;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_title_en::before {
    width: 1.7857142857vw;
  }
}

.page_contents_collection .faq_title_ja {
  font-size: max(1.5476190476vw, 20px);
  text-align: center;
}

.page_contents_collection .faq_body_item {
  padding: 60px 0;
  border-bottom: 1px solid #fff;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_body_item {
    padding: 9.1666666667vw 0;
  }
}

.page_contents_collection .faq_body_item:first-child {
  padding-top: 0;
}

.page_contents_collection .faq_body_item_inr {
  display: flex;
  gap: 10.7142857143vw;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_body_item_inr {
    flex-direction: row;
    padding: 0 8.6904761905vw;
    align-items: unset;
  }
}

.page_contents_collection .faq_body_item_inr_title {
  font-size: max(1.4285714286vw, 18px);
  writing-mode: vertical-rl;
  font-weight: 400;
  letter-spacing: 0.25em;
}

.page_contents_collection .faq_body_item_inr_content_wrap {
  margin-bottom: 36px;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_body_item_inr_content_wrap {
    margin-bottom: 2.8571428571vw;
  }
}

.page_contents_collection .faq_body_item_inr_content_text {
  font-size: max(0.9523809524vw, 14px);
  line-height: 2.25;
  margin-bottom: 18px;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_body_item_inr_content_text {
    margin-bottom: 2.380952381vw;
  }
}

.page_contents_collection .faq_body_item_inr_content_text:last-of-type {
  margin-bottom: 0;
}

.page_contents_collection .faq_body_item_inr_content_text .caution {
  font-size: max(0.8333333333vw, 12px);
  padding-left: 16px;
  position: relative;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_body_item_inr_content_text .caution {
    padding-left: 0.9523809524vw;
  }
}

.page_contents_collection .faq_body_item_inr_content_text .caution::before {
  content: "※";
  font-size: max(0.8333333333vw, 12px);
  color: #fff;
  position: absolute;
  left: 0;
  top: -5px;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_body_item_inr_content_text .caution::before {
    top: -0.2976190476vw;
  }
}

.page_contents_collection .faq_body_item_inr_content_list {
  list-style-type: decimal;
  padding-left: 18px;
  margin: 0;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_body_item_inr_content_list {
    padding-left: 1.0714285714vw;
  }
}

.page_contents_collection .faq_body_item_inr_content_list li {
  font-size: max(0.9523809524vw, 14px);
}

@media (min-width: 920px) {
  .page_contents_collection .faq_body_item_inr_content_list li {
    line-height: 2.25;
  }
}

.page_contents_collection .faq_body_item_inr_content_flex {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 40px;
  gap: 40px;
  align-items: center;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_body_item_inr_content_flex {
    flex-direction: row;
    margin-bottom: 3.3333333333vw;
    gap: 0;
  }
}

.page_contents_collection .faq_body_item_inr_content_flex .item img {
  width: 100%;
}

.page_contents_collection .faq_body_item_inr_content_flex .item:nth-child(1) {
  max-width: 260px;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_body_item_inr_content_flex .item:nth-child(1) {
    margin-right: 4.7619047619vw;
    width: 8.0952380952vw;
  }
}

.page_contents_collection .faq_body_item_inr_content_flex .item:nth-child(2) {
  max-width: 260px;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_body_item_inr_content_flex .item:nth-child(2) {
    margin-right: 3.0952380952vw;
    width: 8.9285714286vw;
  }
}

.page_contents_collection .faq_body_item_inr_content_flex .item:nth-child(3) {
  border: 1px solid #fff;
  padding: 12px 20px;
}

@media (min-width: 920px) {
  .page_contents_collection .faq_body_item_inr_content_flex .item:nth-child(3) {
    padding: 0.7142857143vw 1.1904761905vw;
    max-width: 17.1428571429vw;
  }
}

.page_contents_collection .faq_body_item_inr_content_flex .item:nth-child(3) .item_text {
  font-size: max(0.8333333333vw, 12px);
}

.page_contents_collection .faq_body_item_inr_content_flex .item:nth-child(3) .item_text:first-child {
  margin-bottom: 0.4761904762vw;
}

.page_contents_form.contact {
  background-color: #263c4d;
}

.page_contents_form .form input,
.page_contents_form .form textarea {
  width: 100%;
  font-size: 14px;
  padding: 0 8px;
}

@media (min-width: 920px) {

  .page_contents_form .form input,
  .page_contents_form .form textarea {
    font-size: max(0.9523809524vw, 12px);
    padding: 0 10px;
  }
}

.page_contents_form .form textarea {
  resize: none;
  height: 140px;
}

@media (min-width: 920px) {
  .page_contents_form .form textarea {
    height: 16.9047619048vw;
  }
}

.page_contents_form .form_text {
  margin-bottom: 40px;
}

@media (min-width: 920px) {
  .page_contents_form .form_text {
    margin-bottom: 7.0238095238vw;
  }
}

.page_contents_form .form_text_content {
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

@media (min-width: 920px) {
  .page_contents_form .form_text_content {
    margin-bottom: 3.2142857143vw;
    font-size: max(0.9523809524vw, 12px);
    line-height: 2.25;
  }
}

.page_contents_form .form_container {
  border-bottom: 1px solid #fff;
  padding: 0 20px 120px;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 920px) {
  .page_contents_form .form_container {
    max-width: 76.1904761905vw;
    padding: 0 17.9761904762vw 15.2380952381vw;
  }
}

.page_contents_form .form_select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../img/page/arrow_select.svg") no-repeat right 8px center;
  background-size: 8px 8px;
}

@media (min-width: 920px) {
  .page_contents_form .form_select {
    background: url("../img/page/arrow_select.svg") no-repeat right 10px center;
    background-size: 0.7142857143vw 0.7142857143vw;
  }
}

.page_contents_form .form_item {
  margin-bottom: 20px;
}

@media (min-width: 920px) {
  .page_contents_form .form_item {
    margin-bottom: 2.380952381vw;
  }
}

.page_contents_form .form_item_label {
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.2em;
}

@media (min-width: 920px) {
  .page_contents_form .form_item_label {
    font-size: max(0.9523809524vw, 12px);
    margin-bottom: 0.5952380952vw;
  }
}

.page_contents_form .form_item_label .required {
  display: inline-block;
  line-height: 1;
  font-size: 12px;
  background-color: #fff;
  color: #263c4d;
  padding: 4px 8px;
  margin-left: 10px;
  letter-spacing: 0.2em;
}

@media (min-width: 920px) {
  .page_contents_form .form_item_label .required {
    font-size: max(0.6547619048vw, 10px);
    padding: 0.1785714286vw 0.5357142857vw;
    margin-left: 0.7142857143vw;
  }
}

.page_contents_form .form_item .item_reserve {
  margin-bottom: 16px;
}

@media (min-width: 920px) {
  .page_contents_form .form_item .item_reserve {
    margin-bottom: 0.8333333333vw;
  }
}

.page_contents_form .form_item .item_reserve:last-child {
  margin-bottom: 0;
}

.page_contents_form .form_item .item_reserve .form_reserve_inner {
  display: flex;
  align-items: center;
  background: #fff;
}

.page_contents_form .form_item .item_reserve .form_reserve_inner .form_reserve_image {
  width: 120px;
  height: auto;
}

@media (min-width: 920px) {
  .page_contents_form .form_item .item_reserve .form_reserve_inner .form_reserve_image {
    width: 10.7738095238vw;
    height: 6.8452380952vw;
  }
}

.page_contents_form .form_item .item_reserve .form_reserve_inner .form_reserve_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_contents_form .form_item .item_reserve .form_reserve_inner .form_reserve_info {
  display: flex;
  align-items: center;
  padding: 20px;
  width: 57.3333333333vw;
  justify-content: space-between;
}

@media (min-width: 920px) {
  .page_contents_form .form_item .item_reserve .form_reserve_inner .form_reserve_info {
    width: 30vw;
    padding: 1.1904761905vw 1.1904761905vw 1.1904761905vw 3.3333333333vw;
  }
}

.page_contents_form .form_item .item_reserve .form_reserve_inner .form_reserve_info .form_reserve_title {
  font-size: 16px;
  color: #223847;
  margin-right: auto;
  letter-spacing: 0.2em;
}

@media (min-width: 920px) {
  .page_contents_form .form_item .item_reserve .form_reserve_inner .form_reserve_info .form_reserve_title {
    font-size: max(1.4285714286vw, 16px);
  }
}

.page_contents_form .form_item .item_reserve .form_reserve_inner .form_reserve_info .form_reserve_select {
  display: flex;
  align-items: center;
}

.page_contents_form .form_item .item_reserve .form_reserve_inner .form_reserve_info .form_reserve_select .form_select {
  padding: 0px 8px;
  border: 1px solid #263c4d;
  border-radius: 4px;
  font-size: 14px;
  color: #263c4d;
  margin-right: 8px;
  width: 60px;
  height: 30px;
  line-height: 1;
  letter-spacing: 0.2em;
}

@media (min-width: 920px) {
  .page_contents_form .form_item .item_reserve .form_reserve_inner .form_reserve_info .form_reserve_select .form_select {
    padding: 0px 0.7142857143vw;
    font-size: max(0.8333333333vw, 10px);
    margin-right: 0.7142857143vw;
    width: 5.6547619048vw;
    height: 1.7857142857vw;
    border-radius: 6px;
  }
}

.page_contents_form .form_item .item_reserve .form_reserve_inner .form_reserve_info .form_reserve_select .form_reserve_unit {
  font-size: 12px;
  color: #263c4d;
  letter-spacing: 0.2em;
}

@media (min-width: 920px) {
  .page_contents_form .form_item .item_reserve .form_reserve_inner .form_reserve_info .form_reserve_select .form_reserve_unit {
    font-size: max(0.8333333333vw, 10px);
  }
}

.page_contents_form .form_consent_text {
  font-size: 12px;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.2em;
}

@media (min-width: 920px) {
  .page_contents_form .form_consent_text {
    margin-bottom: 4.6428571429vw;
    font-size: max(0.8333333333vw, 10px);
  }
}

.page_contents_form .form_consent_text .border_link {
  font-size: 12px;
  display: inline;
  margin: 0;
  letter-spacing: 0.2em;
}

@media (min-width: 920px) {
  .page_contents_form .form_consent_text .border_link {
    margin-bottom: 4.6428571429vw;
    font-size: max(0.8333333333vw, 10px);
  }
}

.page_contents_form .form_title {
  font-size: 20px;
  writing-mode: vertical-rl;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.25em;
  letter-spacing: 0.2em;
}

@media (min-width: 920px) {
  .page_contents_form .form_title {
    margin-right: 10.8333333333vw;
    margin-bottom: 0;
    font-size: max(1.4285714286vw, 16px);
  }
}

.page_contents_form .form_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 0;
}

@media (min-width: 920px) {
  .page_contents_form .form_body {
    flex-direction: row;
    align-items: unset;
    padding: 8.9285714286vw 0 0;
  }
}

.page_contents_form .form_submit {
  text-align: center;
}

.page_contents_form .form_submit input[type=submit] {
  width: 180px;
  height: 50px;
  padding: 0 20px;
  text-align: left;
  background-color: transparent;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.2em;
}

@media (min-width: 920px) {
  .page_contents_form .form_submit input[type=submit] {
    width: 17.1428571429vw;
    height: 3.1547619048vw;
    font-size: max(1.0714285714vw, 14px);
    padding: 0 2.380952381vw;
  }
}

.page_contents_form .form_submit .wpcf7-spinner {
  display: none !important;
}

.page_contents_form.reserve .form_container {
  padding: 0 20px 120px;
  border-bottom: 1px solid #fff;
}

@media (min-width: 920px) {
  .page_contents_form.reserve .form_container {
    margin: 0 auto;
    max-width: 76.1904761905vw;
    padding: 0 6.261905vw 15.2380952381vw 9.4047619048vw;
  }
}

@media (min-width: 920px) {
  .page_contents_form.reserve .form_consent_text {
    text-align: left;
  }
}

@media (min-width: 920px) {
  .page_contents_form.reserve .form_submit {
    text-align: left;
  }
}

.page_contents_form.reserve .form_text {
  margin-bottom: 7.1428571429vw;
}

.page_contents_form.reserve .form_text_content {
  margin-bottom: 2.8571428571vw;
}

.page_contents_form.reserve .reserve_bg {
  background-color: #263c4d;
}

.page_contents_form.reserve .flow {
  padding: 120px 0 0;
}

@media (min-width: 920px) {
  .page_contents_form.reserve .flow {
    padding: 9.6428571429vw 0 0;
  }
}

.page_contents_form.reserve .flow_body {
  display: flex;
  padding: 0 20px 80px;
  border-bottom: 1px solid #fff;
  margin: 0 auto;
  max-width: 600px;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 920px) {
  .page_contents_form.reserve .flow_body {
    padding: 0 6.261905vw 9.1666666667vw 9.4047619048vw;
    max-width: 76.1904761905vw;
    flex-direction: row;
    align-items: unset;
  }
}

.page_contents_form.reserve .flow_body_content {
  display: flex;
  flex-direction: column;
}

.page_contents_form.reserve .flow_body_content_item {
  display: flex;
  gap: 8px;
  position: relative;
  flex-direction: column;
  padding-bottom: 60px;
  margin-bottom: 10px;
}

@media (min-width: 920px) {
  .page_contents_form.reserve .flow_body_content_item {
    flex-direction: row;
    gap: 3.0952380952vw;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.page_contents_form.reserve .flow_body_content_item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 50px;
  background-image: url("../img/reserve/flow_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

@media (min-width: 920px) {
  .page_contents_form.reserve .flow_body_content_item::before {
    width: 0.6547619048vw;
    height: 6.25vw;
    left: 0.1785714286vw;
    bottom: 0.2380952381vw;
    transform: none;
  }
}

.page_contents_form.reserve .flow_body_content_item.last {
  padding-bottom: 0;
  margin-bottom: 0;
}

.page_contents_form.reserve .flow_body_content_item.last::before {
  display: none;
}

.page_contents_form.reserve .flow_body_content_item_num {
  font-size: 14px;
}

@media (min-width: 920px) {
  .page_contents_form.reserve .flow_body_content_item_num {
    padding-bottom: 7.2023809524vw;
    font-size: max(0.9523809524vw, 12px);
    width: max(9.4047619048vw, 158px);
  }
}

.page_contents_form.reserve .flow_body_content_item_num.last {
  padding-bottom: 0;
}

.page_contents_form.reserve .flow_body_content_item_explanation {
  font-size: 14px;
}

@media (min-width: 920px) {
  .page_contents_form.reserve .flow_body_content_item_explanation {
    font-size: max(0.9523809524vw, 12px);
  }
}



.page_contents_form .wrap {
  display: flex;
  flex-direction: column;
}

/*# sourceMappingURL=base.css.map */