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

#concept {
  scroll-margin-top: 10vh;
}

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

.en p {
  line-height: 1.7em;
  letter-spacing: 0.05em;
}

.ch {
  font-family: "Noto Serif SC";
}

.language {
  display: flex;
  gap: 1em;
  justify-content: right;
  padding-bottom: 0.5em;
}
.language li {
  font-size: 80%;
  opacity: 0.5;
}
.language li.active {
  opacity: 1;
  font-weight: 500;
  border-bottom: solid 1px #324553;
}

body {
  font-family: "Noto Serif", serif;
  background-color: #f4f4f4;
  background-image: url(../img/body_bg.png);
}

p {
  line-height: 1.9em;
  letter-spacing: 0.2em;
}

.italic {
  font-style: italic;
}

.mt1em {
  margin-top: 1em;
}

.mt2em {
  margin-top: 2em;
}

.mt3em {
  margin-top: 3em;
}

.mt4em {
  margin-top: 4em;
}

.sp-br {
  display: none;
}

.inline-b {
  display: inline-block;
}

.lts-0175 {
  letter-spacing: 0.175em;
}

.content {
  width: min(1100px, 90%);
  margin-inline: auto;
}
.content_flex {
  display: flex;
  max-width: 90%;
  justify-content: right;
  gap: 5%;
  margin-left: 10%;
  align-items: center;
}
.content_flex_left {
  width: 35%;
  position: relative;
  z-index: 4;
}
.content_flex_right {
  width: 55%;
  position: relative;
  z-index: 4;
}
.content_flex2 {
  margin-left: 0px;
  margin-right: 10%;
  justify-content: left;
}

.title-line {
  padding-block: 20px;
  width: 80%;
}

.bg-title {
  position: absolute;
  left: 5%;
  top: 40px;
  z-index: 5;
}
.bg-title_img {
  position: absolute;
  top: 270px;
  left: 6%;
  width: 10vw;
  height: 300px;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.bg-title_img_2 {
  top: 300px;
  height: 450px;
}
.bg-title_inner {
  position: relative;
  z-index: 10;
}
.bg-title_inner p {
  writing-mode: vertical-lr;
  letter-spacing: 1em;
  display: inline-block;
  padding-top: 17vh;
  font-size: 20px;
  position: relative;
  z-index: 10;
}
.bg-title_inner p::before {
  content: "";
  position: absolute;
  top: 10vh;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background-color: #000;
}

.bg-title2 {
  position: absolute;
  right: 5%;
  top: 40px;
}
.bg-title2_img {
  position: absolute;
  top: 250px;
  left: 94%;
  width: 10vw;
  height: 300px;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.bg-title2_inner {
  position: relative;
}
.bg-title2_inner p {
  writing-mode: vertical-lr;
  letter-spacing: 1em;
  position: relative;
  display: inline-block;
  padding-top: 17vh;
  font-size: 20px;
  z-index: 10;
}
.bg-title2_inner p::before {
  content: "";
  position: absolute;
  top: 10vh;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background-color: #000; /* 任意の色 */
}

.bg-title3 {
  position: absolute;
  left: 5%;
  top: 40px;
  color: #fff;
}
.bg-title3_inner {
  position: relative;
}
.bg-title3_inner p {
  writing-mode: vertical-lr;
  letter-spacing: 1em;
  position: relative;
  display: inline-block;
  padding-top: 60px;
  font-size: 20px;
}
.bg-title3_inner p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background-color: #fff;
}

.body_bg_3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  z-index: 1;
}
.body_bg_4 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  z-index: 1;
}

.header {
  padding-block: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.5s ease;
}
.header_logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_logo h1 {
  font-size: min(30px, 2vw);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-wrap: nowrap;
}
.header_logo img {
  max-width: 50px;
}
.header_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_menu {
  display: flex;
  gap: 25px;
}
.header_menu a {
  position: relative;
  text-decoration: none;
  color: inherit;
  padding-bottom: 5px;
  font-size: min(16px, 1.5vw);
}
.header_menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #5eb1bc;
  transition: width 0.4s ease, left 0.4s ease;
}
.header_menu a:hover::after {
  width: 100%;
  left: 0;
}
.header_sp {
  display: none;
}
.header_active {
  background-color: rgba(255, 255, 255, 0.8);
}

.menu_sp {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: rgba(94, 177, 188, 0.9);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
  text-align: center;
}
.menu_sp.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.menu_sp li a {
  width: 100%;
  font-size: 3.5vw;
  background-color: rgba(94, 177, 188, 0.5);
  display: block;
  padding-block: 0.5em;
  color: #fff;
  border-bottom: solid 1px #fff;
}

.fv {
  padding-top: 100px;
  padding-bottom: 5vh;
}
.fv_slideshow {
  position: relative;
  width: 100%;
}
.fv_slides {
  display: flex;
  transition: transform 0.5s ease;
  position: relative;
  overflow: hidden;
  height: 75vh;
}
.fv_slides .slide-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 1s ease;
}
.fv_slides .slide-img.fade-in {
  animation: slideFadeIn 3s ease;
}
.fv_indicator {
  position: absolute;
  right: -20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.fv_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s ease;
}
.fv_dot.active {
  background-color: #555;
}
.fv_flex {
  display: flex;
  gap: 4vw;
  align-items: center;
}
.fv_flex_left {
  width: 90%;
  position: relative;
}
.fv_flex_right {
  width: 30%;
  padding-right: 3vw;
}
.fv_title {
  writing-mode: vertical-rl;
  font-weight: 600;
  letter-spacing: 0.7em;
  line-height: 2.5em;
  font-size: max(30px, 2vw);
}
.fv_title_en {
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.7em;
  font-size: max(30px, 2vw);
}

@keyframes slideFadeIn {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.concept {
  position: relative;
  padding-block: 10vh;
}

.about {
  position: relative;
  padding-block: 10vh;
}

.human {
  background-image: url(../img/human_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding-block: 10vh;
  background-color: #3e4f53;
}
.human_flex {
  display: flex;
  flex-wrap: wrap;
  width: 925px;
  max-width: 80%;
  margin-inline: auto;
  align-items: stretch;
}
.human_flex > div {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .human_flex > div {
    flex: 1 1 50%;
  }
}
.human_flex_left {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}
@media (max-width: 767px) {
  .human_flex_left {
    height: auto;
  }
}
.human_flex_right {
  display: flex;
  align-items: stretch;
}
.human_flex_right img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.menu {
  padding-block: 10vh;
  position: relative;
}
.menu_inner {
  width: 925px;
  max-width: 80%;
  position: relative;
  z-index: 6;
  margin-inline: auto;
}
.menu_flex {
  display: flex;
  gap: 50px;
  align-items: center;
}
.menu_flex_left {
  width: 50%;
}
.menu_flex_right {
  width: 50%;
}
.menu_sp {
  display: none;
}

.access {
  position: relative;
  padding-block: 10vh;
}
.access_inner {
  width: 925px;
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
}
.access_inner iframe {
  width: 100%;
  height: 350px;
}

.shopping {
  background-color: #3e4f53;
  padding-block: 10vh;
  position: relative;
  background-image: url(../img/shopping_bg.png);
}
.shopping_inner {
  width: 925px;
  max-width: 80%;
  margin-inline: auto;
  position: relative;
}
.shopping_bg-item_1 {
  position: absolute;
  top: -10px;
  right: 0;
  width: 30%;
}
.shopping_bg-item_2 {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 20%;
  z-index: 1;
}
.shopping_top {
  margin-bottom: 50px;
}
.shopping_content {
  background-image: url(../img/shopping_bg_2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.shopping_content_inner {
  padding: 20px;
}
.shopping_content_block {
  padding: 4em 2em;
  border: solid 2px #fff;
  text-align: center;
}
.shopping_content_block img {
  width: 100px;
  max-width: 100%;
  padding-block: 2em;
}
.shopping_content_title {
  text-align: center;
  color: #fff;
  font-size: min(5vw, 30px);
}
.shopping_content_text {
  color: #fff;
  text-align: center;
  font-size: min(16px, 1.5vw);
}
.shopping_list {
  display: flex;
  gap: 50px;
}
.shopping_item {
  width: 50%;
  background-color: #fff;
}
.shopping_item_bottom {
  padding: 30px;
}

.footer {
  background-color: #000;
  padding-block: 50px;
  position: relative;
  z-index: 10;
}
.footer_flex {
  display: flex;
  width: 925px;
  max-width: 80%;
  margin-inline: auto;
  align-items: center;
  gap: 50px;
}
.footer_flex_left {
  width: 50%;
  text-align: left;
}
.footer_flex_left img {
  width: 80%;
  display: inline;
}
.footer_flex_right {
  width: 50%;
  color: #fff;
}
.footer_flex_right table {
  line-height: 1.5em;
}
.footer_flex_right table td {
  padding: 10px;
}
.footer_title {
  font-size: min(25px, 5vw);
  font-weight: 700;
}
.footer_title img {
  padding-block: 20px 30px;
  width: 80%;
}

.section_title {
  font-size: min(2.5vw, 30px);
  line-height: 1.5em;
  color: #324553;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.section_title_en {
  letter-spacing: 0.05em;
  font-size: min(2.5vw, 25px);
  line-height: 1.5em;
  color: #324553;
  font-weight: 600;
}
.section_text {
  padding-bottom: 20px;
  font-size: min(16px, 1.5vw);
}

@media screen and (max-width: 767px) {
  p {
    font-size: max(16px, 3.8vw);
    letter-spacing: 0;
  }
  .sp-br {
    display: block;
  }
  .sp-br_2 {
    display: none;
  }
  .language {
    display: none;
  }
  .language_sp {
    display: flex;
    justify-content: space-around;
    border-bottom: solid 1px #fff;
  }
  .language_sp li {
    width: 33%;
  }
  .language_sp li:nth-child(2) {
    border-left: solid 1px #fff;
    border-right: solid 1px #fff;
  }
  .language_sp li a {
    border-bottom: none;
    font-size: 90%;
  }
  .header {
    height: 60px;
    padding-block: 0px;
  }
  .header_menu {
    display: none;
  }
  .header_sp {
    display: block;
  }
  .header h1 {
    font-size: 4vw;
  }
  .fv {
    padding-top: 80px;
    padding-bottom: 0px;
  }
  .fv_flex {
    flex-wrap: wrap;
    gap: 2em;
  }
  .fv_flex_left {
    width: 100%;
  }
  .fv_flex_right {
    width: 100%;
    padding-right: 0px;
  }
  .fv_slides {
    height: auto;
  }
  .fv_title {
    writing-mode: lr;
    text-align: center;
    line-height: 1.5em;
    font-size: 5vw;
    letter-spacing: 0.5em;
  }
  .fv_indicator {
    display: none;
  }
  .content_flex {
    margin-left: 0px;
    max-width: 90%;
    margin-inline: auto;
    flex-wrap: wrap;
    gap: 2em;
  }
  .content_flex_left {
    width: 100%;
    order: 2;
  }
  .content_flex_right {
    width: 100%;
    order: 1;
  }
  .concept {
    padding-block: 10vh 0px;
  }
  .about {
    padding-bottom: 5vh;
  }
  .human {
    background-size: auto 100%;
  }
  .human_flex {
    flex-wrap: wrap;
    max-width: 100%;
  }
  .human_flex_left {
    width: 100%;
    order: 2;
    padding-block: 0px 2em;
  }
  .human_flex_right {
    width: 100%;
    order: 1;
  }
  .human_flex_right img {
    padding: 5vh;
    background-color: #fff;
  }
  .menu {
    padding-bottom: 0px;
  }
  .menu_flex {
    flex-wrap: wrap;
  }
  .menu_flex_left {
    width: 100%;
  }
  .menu_flex_right {
    width: 100%;
  }
  .menu_inner {
    max-width: 100%;
  }
  .menu_sp {
    display: block;
  }
  .access_inner {
    width: 90%;
    max-width: 100%;
  }
  .shopping_inner {
    max-width: 100%;
  }
  .shopping_item {
    width: 90%;
    margin-inline: auto;
  }
  .shopping_list {
    flex-wrap: wrap;
  }
  .shopping_content_block {
    padding-inline: 1em;
  }
  .shopping_content_text {
    text-align: left;
    font-size: max(16px, 3vw);
  }
  .footer_flex {
    flex-wrap: wrap;
    width: 90%;
    margin-inline: auto;
    justify-content: center;
    gap: 2em;
  }
  .footer_flex_left {
    width: 50%;
  }
  .footer_flex_left img {
    width: 100%;
  }
  .footer_flex_right {
    width: 100%;
  }
  .footer_title {
    text-align: center;
  }
  .footer_title p {
    font-size: 7vw;
  }
  .footer_title img {
    width: 100%;
  }
  .section_title {
    font-size: 5vw;
  }
  .section_text {
    font-size: 3.8vw;
  }
  .bg-title {
    position: unset;
    text-align: center;
  }
  .bg-title_inner p {
    writing-mode: lr;
    padding-top: 0px;
    padding-bottom: 2em;
    padding-inline: 2em;
    letter-spacing: 0.2em;
    font-size: 4vw;
  }
  .bg-title_inner p::before, .bg-title_inner p::after {
    content: "";
    position: absolute;
    top: 3vw;
    width: 30px;
    height: 1px;
    background-color: #000;
    transform: translateY(-50%);
  }
  .bg-title_inner p::before {
    left: -15px;
  }
  .bg-title_inner p::after {
    right: -15px;
  }
  .bg-title_img {
    display: none;
  }
  .bg-title2 {
    position: unset;
    text-align: center;
  }
  .bg-title2_img {
    display: none;
  }
  .bg-title2_inner p {
    writing-mode: lr;
    padding-top: 0px;
    padding-bottom: 2em;
    padding-inline: 2em;
    font-size: 4vw;
    letter-spacing: 0.2em;
  }
  .bg-title2_inner p::before, .bg-title2_inner p::after {
    content: "";
    position: absolute;
    top: 25%;
    width: 30px;
    height: 1px;
    background-color: #000;
    transform: translateY(-50%);
  }
  .bg-title2_inner p::before {
    left: -15px;
  }
  .bg-title2_inner p::after {
    right: -15px;
  }
  .bg-title3 {
    position: unset;
    text-align: center;
  }
  .bg-title3_inner p {
    writing-mode: lr;
    padding-top: 0px;
    padding-bottom: 2em;
    padding-inline: 2em;
    letter-spacing: 0.2em;
    font-size: 4vw;
  }
  .bg-title3_inner p::before, .bg-title3_inner p::after {
    content: "";
    position: absolute;
    top: 25%;
    width: 30px;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%);
  }
  .bg-title3_inner p::before {
    left: -15px;
  }
  .bg-title3_inner p::after {
    right: -15px;
  }
  .header_sp {
    position: relative;
    z-index: 1000;
  }
  .header_sp .hamburger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin: 20px;
    z-index: 1100;
  }
  .header_sp .hamburger span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .header_sp .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .header_sp .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .header_sp .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
.en-bg-title {
  position: absolute;
  left: 5%;
  top: -140px;
  z-index: 5;
}
.en-bg-title_img {
  position: absolute;
  top: 30px;
  left: 10vw;
  width: 10vw;
  height: 300px;
  transform: translate(-50%, -50%) rotate(90deg);
  z-index: 1;
}
.en-bg-title_img_2 {
  top: 50px;
  height: 450px;
}
.en-bg-title_grand {
  top: -120px;
}
.en-bg-title_inner {
  position: relative;
  z-index: 10;
}
.en-bg-title_inner p {
  letter-spacing: 0.5em;
  display: inline-block;
  padding-top: 17vh;
  font-size: 20px;
  position: relative;
  z-index: 10;
}
.en-bg-title_inner p::before {
  content: "";
  position: absolute;
  top: 90%;
  left: -5vh;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: #000;
}

.en-bg-title2 {
  position: absolute;
  right: 5%;
  top: -140px;
}
.en-bg-title2_img {
  position: absolute;
  top: 30px;
  left: 92%;
  width: 10vw;
  height: 300px;
  transform: translate(-50%, -50%) rotate(90deg);
  z-index: 1;
}
.en-bg-title2_inner {
  position: relative;
}
.en-bg-title2_inner p {
  letter-spacing: 0.5em;
  position: relative;
  display: inline-block;
  padding-top: 17vh;
  font-size: 20px;
  z-index: 10;
}
.en-bg-title2_inner p::before {
  content: "";
  position: absolute;
  top: 90%;
  right: -10vh;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: #000; /* 任意の色 */
}

.en-bg-title3 {
  position: absolute;
  left: 5%;
  top: -40px;
  color: #fff;
}
.en-bg-title3_inner {
  position: relative;
}
.en-bg-title3_inner p {
  letter-spacing: 0.5em;
  position: relative;
  display: inline-block;
  padding-top: 60px;
  font-size: 20px;
}
.en-bg-title3_inner p::before {
  content: "";
  position: absolute;
  top: 80%;
  left: -5vh;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .header_logo h1 {
    text-wrap: wrap;
  }
  .fv_title_en {
    text-align: center;
  }
  .section_title_en {
    font-size: 5vw;
  }
  .en-bg-title {
    position: unset;
    text-align: center;
  }
  .en-bg-title_inner p {
    writing-mode: lr;
    padding-top: 0px;
    padding-bottom: 2em;
    padding-inline: 2em;
    letter-spacing: 0.2em;
    font-size: 4vw;
  }
  .en-bg-title_inner p::before, .en-bg-title_inner p::after {
    content: "";
    position: absolute;
    top: 3vw;
    width: 30px;
    height: 1px;
    background-color: #000;
    transform: translateY(-50%);
  }
  .en-bg-title_inner p::before {
    left: -15px;
  }
  .en-bg-title_inner p::after {
    right: -15px;
  }
  .en-bg-title_img {
    display: none;
  }
  .en-bg-title2 {
    position: unset;
    text-align: center;
  }
  .en-bg-title2_img {
    display: none;
  }
  .en-bg-title2_inner p {
    writing-mode: lr;
    padding-top: 0px;
    padding-bottom: 2em;
    padding-inline: 2em;
    font-size: 4vw;
    letter-spacing: 0.2em;
  }
  .en-bg-title2_inner p::before, .en-bg-title2_inner p::after {
    content: "";
    position: absolute;
    top: 25%;
    width: 30px;
    height: 1px;
    background-color: #000;
    transform: translateY(-50%);
  }
  .en-bg-title2_inner p::before {
    left: -15px;
  }
  .en-bg-title2_inner p::after {
    right: -15px;
  }
  .en-bg-title3 {
    position: unset;
    text-align: center;
  }
  .en-bg-title3_inner p {
    writing-mode: lr;
    padding-top: 0px;
    padding-bottom: 2em;
    padding-inline: 2em;
    letter-spacing: 0.2em;
    font-size: 4vw;
  }
  .en-bg-title3_inner p::before, .en-bg-title3_inner p::after {
    content: "";
    position: absolute;
    top: 25%;
    width: 30px;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%);
  }
  .en-bg-title3_inner p::before {
    left: -15px;
  }
  .en-bg-title3_inner p::after {
    right: -15px;
  }
}/*# sourceMappingURL=style.css.map */