@charset "UTF-8";

/* ======================
common
========================= */

html {
  font-size: 62.5%;
}

body {
  font-family: Inter, "Noto Sans JP", Arial, serif;
  font-style: normal;
  color: black;
  background-color: white;
  line-height: 1.5;
}

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

.section__topic {
  color: #000;
  font-family: Inter;
  font-size: 4rem;
  font-weight: 600;
  padding: 56px;
  opacity: 0;
  transform: translateY(20px); /* 最初は少し下に */
  transition: none; /* 不要なトランジション排除 */
}

.section__topic.animate {
  animation: floatUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

iframe {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .section__topic {
    padding-top: 120px;
    margin-left: 6%;
    font-size: 8.4rem;
    font-weight: 600;
  }
  /* min-width: 769px */
}

/* ==============================
header
================================= */
.header {
  position: fixed;
  width: 100%;
  z-index: 10;
  padding: 26px 6.4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .header .change-color {
  color: black;
} */

.header_logo_pc {
  width: 100px;
}

.header_logo_pc.change-color {
  filter: brightness(0);
}

.header_contact_svg.change-color {
  filter: brightness(0) invert(1);
}

.header__topic,
.nav__topic {
  color: #fef8e2;
  font-family: Inter;
  font-size: 1.6rem;
  font-weight: 400;
}

.nav__btn {
  filter: brightness(0) saturate(100%) invert(57%) sepia(13%) saturate(465%)
    hue-rotate(4deg) brightness(98%) contrast(95%);
}

.nav {
  background-color: #000;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s;
  align-items: center;
}

.nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 26px 6.4%;
}

.nav__list {
  margin-right: 10%;
}

.nav__item {
  font-family: Inter;
  font-size: 1.6rem;
  list-style: none;
  margin: 24px 6.4%;
  color: #9c927a;
}

.nav.active {
  transform: translateX(0);
}

.nav__btn {
  width: 20px;
  height: 20px;
}

.header__btn {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(294deg) brightness(102%) contrast(103%);
  display: block;
  cursor: pointer;
  width: 27px;
  height: 21px;
  /* top: 37px; */
  right: 6.4%;
}

.header__btn.change-color {
  filter: brightness(0);
}

.header_logo_nav_header {
  display: none;
}

.header_contact_white {
  display: none;
}

.header__contact__space {
  display: flex;
}

.header__contact {
  font-size: 1.8rem;
  margin-left: 10px;
}

@media screen and (min-width: 769px) {
  .header {
    color: #ffffff;
    display: flex;
    height: 120px;
    justify-content: space-between;
    align-items: center;
  }

  .header .change-color {
    color: black;
  }

  .nav {
    background: transparent;
    width: auto;
    height: auto;
    padding: 0;
    position: static;
    transform: translate(0);
  }

  .nav__list {
    display: flex;
    align-items: center;
  }

  .nav__item {
    font-family: Inter;
    font-size: 1.2rem;
    font-weight: 400;
    margin-right: 56px;
    color: #fff;
  }

  .nav__contact {
    height: 25.625px;
    aspect-ratio: 150/25.63;
  }

  .nav__header {
    display: none;
  }

  .header_logo_pc {
    width: 200px;
  }

  .header__btn {
    display: none;
  }

  .header__contact__space {
    width: 150px;
    height: 25px;
    background-color: #fff;
    display: flex;
    align-items: center;
    border-radius: 100px;
    margin-right: 40px;
    padding-left: 2px;
    position: relative;
    z-index: 1;
  }

  .header__contact__space.change-color {
    background-color: #000;
  }

  .header__contact {
    color: #9c927a;
    font-family: Inter;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.48px;
    margin-left: 30px;
  }

  .header__contact.change-color {
    color: #fff;
  }

  .header_contact_white {
    display: none;
  }

  .header__contact__space::after {
    background-color: #9c927a;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    border-radius: 100px;
    z-index: -1;
  }

  .header__contact__space:hover p {
    color: #fff;
  }

  .header__contact__space:hover .header_contact_svg {
    display: none;
  }

  .header__contact__space:hover .header_contact_white {
    display: block;
  }

  .header__contact__space:hover::after {
    transform: scale(1, 1);
  }
  .header_logo_nav_header {
    display: none;
  }

  .company {
    display: none;
  }
}

/*  ==================================
main
====================================== */

.mainImg__pc {
  display: none;
}

.mainImg__sp {
  width: 100%;
}

.article header {
  padding-top: 77px;
  background-color: rgba(156, 146, 122, 0.8);
  text-align: center;
}

.first_visual {
  position: relative;
}

.main_copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.main_copy h1 {
  color: #fff;
  font-weight: 500;
  font-family: "Gothic A1";
}

.main_copy .t {
  font-size: 3rem;
  letter-spacing: 44px;
  letter-spacing: 16.5px;
}

.main_copy .o {
  font-size: 3rem;
  letter-spacing: 15px;
}

.main_copy .g {
  font-size: 3rem;
  letter-spacing: 12.3px;
}

.main_copy .l {
  font-size: 2.9rem;
  letter-spacing: 20px;
}

.sab_copy {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans Armenian";
  font-size: 2rem;
  font-weight: 600;
  line-height: 94px; /* 470% */
  letter-spacing: 4.8px;
}

header h2 {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 1.4rem;
  font-style: normal;
  letter-spacing: 2.1px;
  line-height: 300%;
}

.manifest2 {
  padding: 40px 0 42px;
  padding-bottom: 120px;
}

@media screen and (min-width: 769px) {
  .article header {
    padding-top: 120px;
    background-color: rgba(156, 146, 122, 0.8);
    text-align: center;
  }

  .mainImg__sp {
    display: none;
  }

  .mainImg__pc {
    display: block;
    width: 90%;
    border-radius: 100px;
    margin: 0 auto;
    overflow: hidden;
  }

  .mainImg__pc img {
    width: 100%;
    height: auto;
    animation: animationZoom 10s ease-in-out forwards;
  }
  @keyframes animationZoom {
    100% {
      transform: scale(1.2);
    }
  }

  .first_visual {
    position: relative;
  }

  .main_copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .main_copy h1 {
    color: #fff;
    font-weight: 500;
    font-family: "Gothic A1";
  }

  .main_copy .t {
    font-size: 8rem;
    letter-spacing: 44px;
  }

  .main_copy .o {
    font-size: 8rem;
    letter-spacing: 40px;
  }

  .main_copy .g {
    font-size: 8rem;
    letter-spacing: 32.8px;
  }

  .main_copy .l {
    font-size: 7.9rem;
    letter-spacing: 52.93px;
  }

  .sab_copy {
    color: #fff;
    font-family: "Noto Sans Armenian";
    font-size: 5rem;
    font-weight: 600;
    line-height: 94px;
    letter-spacing: 12px;
    margin-top: 140px;
  }

  header h2 {
    color: #fff;
    font-family: Inter;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 300%; /* 84px */
    letter-spacing: 4.2px;
  }

  .manifest1 {
    margin: 140px 0 94px;
  }
  .manifest2 {
    padding-bottom: 140px;
  }

  /* .fadeInUpTrigger {
    opacity: 0;
  } */

  .manifest1_1 {
    opacity: 0;
  }

  .manifest1_2 {
    opacity: 0;
  }

  .manifest1_3 {
    opacity: 0;
  }

  .manifest1_4 {
    opacity: 0;
  }

  .manifest2_1 {
    opacity: 0;
  }

  .manifest2_2 {
    opacity: 0;
  }

  .manifest2_3 {
    opacity: 0;
  }

  .manifest2_4 {
    opacity: 0;
  }

  .manifest2_5 {
    opacity: 0;
  }

  .br_sp {
    display: none;
  }
}

/*  ==================================
about
====================================== */

.about_img_div_pc {
  display: none;
}

.about_img_div_sp {
  display: block;
  margin: 0 0 30px 0;
}

.about__all {
  align-items: center;
}

.about_list {
  padding: 0 56px;
}

.about_txt {
  color: #000;
  font-family: Inter;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0.84px;
}

.buddy {
  font-size: 3rem;
}

.button_space {
  margin-top: 30px;
  display: flex;
  width: 263px;
  height: 44px;
  border-radius: 100px;
  background-color: #9c927a;
  align-items: center;
  padding-left: 4px;
  margin-bottom: 96px;
  position: relative;
  z-index: 1;
}

.read_more {
  color: #fff;
  font-family: Inter;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.56px;
  text-align: center;
}

.about_contact_img {
  width: 37px;
}

.about_contact_img_brown {
  width: 37px;
  display: none;
}

.button_space::after {
  background-color: #fff;
  color: #9c927a;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  border-radius: 100px;
  z-index: -1;
  border: 2px #9c927a solid;
}

.button_space:hover p {
  color: #9c927a;
}

.button_space:hover .about_contact_img {
  display: none;
}

.button_space:hover .about_contact_img_brown {
  display: block;
}

.button_space:hover::after {
  transform: scale(1, 1);
}

.button_space p {
  margin-left: 50px;
}

@media screen and (min-width: 769px) {
  .about__all {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .about_img_div_pc {
    display: block;
  }

  .about_img_div_sp {
    display: none;
  }

  .section--about {
    color: white;
    transition: color 0.3s ease;
    /* margin-left: 12%; */
  }

  /* スクロール時に黒に変えるクラス */
  .section--about.in-change-color {
    color: black;
  }

  .about_contents {
    width: 100%;
  }

  .about_list {
    margin-left: 12%;
  }

  .about_txt_1 {
    padding-bottom: 40px;
  }
  .about_txt {
    width: 600px;
    color: #000;
    font-family: Inter;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 40px; /* 190.476% */
    letter-spacing: 1.26px;
    margin: 80px 0;
  }

  .about_contact_img {
    width: 68px;
  }

  .about_contact_img_brown {
    width: 68px;
  }

  .button_space {
    display: flex;
    width: 480px;
    height: 82px;
    border-radius: 100px;
    background-color: #9c927a;
    align-items: center;
    padding-left: 9px;
    margin-bottom: 96px;
    position: relative;
    z-index: 1;
  }

  .button_space p {
    margin-left: 105px;
  }

  .read_more {
    color: #fff;
    font-family: Inter;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.8px;
  }

  .about_img_div_pc {
    margin: 10%;
  }

  .about_img {
    width: 1000px;
  }

  .buddy {
    font-size: 3rem;
  }

  .about_contact_img_brown {
    display: none;
  }

  .button_space::after {
    background-color: #fff;
    color: #9c927a;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    border-radius: 100px;
    z-index: -1;
    border: 2px #9c927a solid;
  }

  .button_space:hover p {
    color: #9c927a;
  }

  .button_space:hover .about_contact_img {
    display: none;
  }

  .button_space:hover .about_contact_img_brown {
    display: block;
  }

  .button_space:hover::after {
    transform: scale(1, 1);
  }
}

/*  ==================================
service
====================================== */

.section--service {
  background-color: rgba(156, 146, 122, 0.5);
}

.service {
  padding: 80px 66px 120px;
  width: fit-content;
  margin: auto;
  padding: 0;
  width: 90%; /* コンテンツが見切れて見えるようにする */
  overflow-x: auto; /* 横スクロールの指定 */
  white-space: nowrap; /* 横スクロールの指定 */
  -webkit-overflow-scrolling: touch; /* スクロールを滑らかにする */
}

.service .slick-dots {
  bottom: 0;
}

.service__li {
  display: inline-block; /* 横並び */
  list-style: none;
  width: 100%;
  margin-bottom: 20px;
}

.service__content {
  padding-bottom: 10px;
}

.service a {
  margin: 12px;
}

.service__item {
  position: relative;
}

.service__content__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-55%, -55%);
  z-index: 1;
}

.service__content__title {
  color: #fff;
  font-family: Inter;
  font-size: 2rem;
  font-weight: 700;
}

.service__txt {
  color: #fff;
  font-family: Inter;
  font-size: 1.4rem;
  font-weight: 700;
}

.service__color {
  overflow: hidden;
  border-radius: 10px;
}

/*画像の調整*/
.service__color img {
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
  border-radius: 10px;
}

@media screen and (min-width: 769px) {
  .section--service {
    background-color: rgba(156, 146, 122, 0.5);
  }

  .service {
    padding: 80px 66px 120px;
    display: flex;
    width: fit-content;
    margin: auto;
  }

  .service__li:not(:first-child) {
    margin-left: 40px;
  }

  .service__item {
    position: relative;
  }

  .service__li {
    width: 31%;
  }

  .service__content__txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -45%);
    z-index: 1;
  }

  .service__content__title {
    color: #fff;
    font-family: Inter;
    font-size: 4rem;
    font-weight: 700;
  }

  .service__txt {
    color: #fff;
    font-family: Inter;
    font-size: 2rem;
    font-weight: 700;
  }

  .service__color {
    overflow: hidden;
    border-radius: 10px;
  }

  /*画像の調整*/
  .service__color img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    border-radius: 10px;
  }

  /*ホバー*/
  .service a:hover {
    object-fit: contain;
    border-radius: 10px;
    transition: 0.3s;
  }

  .service a:hover img {
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    transition: 0.3s;
    opacity: 0.6;
    border-radius: 10px;
  }
}

/*  ==================================
member
====================================== */

.member {
  padding: 40px 13%;
  justify-content: space-between;
}

.member_content {
  margin: 0 auto;
  width: 250px;
}

.member_name {
  color: #000;
  font-family: Inter;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}

.member_position {
  color: #000;
  font-family: "Zen Old Mincho";
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
  padding-bottom: 50px;
}

/* カーソルが合った時 */

.member__profile {
  position: relative;
}

.member__profile__txt {
  margin-bottom: 25px;
  transition: 0.4s;
}

.member__profile__msg {
  margin-top: 10px;
  transition: 0.4s;
}

.member__msg__title {
  color: #9c927a;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  font-weight: 700;
  transition: 0.4s;
  margin-bottom: 10px;
}

.member__msg__txt li {
  margin-bottom: 25px;
}

.good__life {
  letter-spacing: 0.9px;
}

.member__profile img {
  transition: 0.4s;
}

.member__profile__info {
  position: absolute;
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 18px; /* 166.667% */
  letter-spacing: 0.54px;
  margin: 5px;
  opacity: 0;
  transition: 0.4s;
}

.member__msg__txt {
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.54px;
  transition: 0.4s;
}

.member__profile.member_active .member__profile__info {
  opacity: 1;
  transition: 0.4s;
}

.member__profile.member_active img {
  opacity: 0.1;
  transition: 0.4s;
}

/* .member__profile:hover .member__profile__info {
  opacity: 1;
  transition: 0.4s;
} */

/* .member__profile:hover img {
  opacity: 0.1;
  transition: 0.4s;
} */

@media screen and (min-width: 1024px) {
  .section__member {
    margin-bottom: 66px;
  }
  .member {
    display: flex;
    padding: 40px 13%;
    justify-content: space-between;
  }
  .member_content {
    width: 420px;
    margin: 0 20px;
  }

  .member_name {
    color: #000;
    font-family: Inter;
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
  }

  .member_position {
    color: #000;
    font-family: "Zen Old Mincho";
    font-size: 2.1rem;
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
    padding-bottom: 50px;
  }

  /* カーソルが合った時 */

  .member__profile {
    position: relative;
  }

  .member__profile__txt {
    margin-bottom: 25px;
    transition: 0.4s;
  }

  .member__profile__msg {
    margin-top: 40px;
    transition: 0.4s;
  }

  .member__msg__title {
    color: #9c927a;
    font-family: "Zen Kaku Gothic New";
    font-size: 1.8rem;
    font-weight: 700;
    transition: 0.4s;
    margin-bottom: 10px;
  }

  .member__msg__txt li {
    margin-bottom: 25px;
  }

  .good__life {
    letter-spacing: 0.9px;
  }

  .member__profile img {
    transition: 0.4s;
  }

  .member__profile__info {
    position: absolute;
    color: #000;
    font-family: "Zen Kaku Gothic New";
    font-size: 18px;
    font-weight: 600;
    line-height: 30px; /* 166.667% */
    letter-spacing: 0.54px;
    margin: 20px;
    opacity: 0;
    transition: 0.4s;
  }

  .member__msg__txt {
    color: #000;
    font-family: "Zen Kaku Gothic New";
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.54px;
    transition: 0.4s;
  }

  .member__profile:hover .member__profile__info {
    opacity: 1;
    transition: 0.4s;
  }

  .member__profile:hover img {
    opacity: 0.1;
    transition: 0.4s;
  }
}

/*  ==================================
contact
====================================== */

.section--contact {
  background-color: rgba(156, 146, 122, 0.8);
  padding-bottom: 40px;
  padding-top: 55px;
}

.section__contact {
  font-family: Inter;
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
}

.contact_content {
  color: #fff;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  margin-left: 12%;
}

.contact_content p {
  font-family: "Gothic A1";
  font-size: 1.4rem;
  font-weight: 500;
}

.contact_arrow {
  margin-right: 12%;
  width: 70px;
  height: 70px;
}

.section--contact {
  transition: 0.3s;
}

.section--contact:hover {
  background-color: #9c927a;
  transition: 0.3s;
}

.section--contact:hover .contact_arrow img {
  transform: scale(1.2);
  transition: 0.3s;
}

.animate__bounceIn {
  animation-delay: 0.3s;
}

@media screen and (min-width: 769px) {
  .section--contact {
    background-color: rgba(156, 146, 122, 0.8);
    padding-bottom: 114px;
  }

  .section__contact {
    font-family: Inter;
    font-size: 8.4rem;
    font-weight: 600;
    color: #fff;
    padding-top: 120px;
  }
  .contact_content {
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-left: 12%;
  }

  .contact_content p {
    font-family: "Gothic A1";
    font-size: 1.8rem;
    font-weight: 500;
  }

  .contact_arrow {
    margin-right: 12%;
    width: 132px;
    height: 132px;
  }

  .section--contact {
    transition: 0.3s;
  }

  .section--contact:hover {
    background-color: #9c927a;
    transition: 0.3s;
  }

  .section--contact:hover .contact_arrow img {
    transform: scale(1.2);
    transition: 0.3s;
  }

  .animate__bounceIn {
    animation-delay: 0.3s;
  }
}

/*  ==================================
footer
====================================== */
.footer {
  background-color: #000;
  color: #9c927a;
  font-family: "Inter";
  text-align: center;
  margin: 0 auto;
}

.footer__logo__div {
  width: 300px;
  margin: 0 auto;
}

.footer__logo__div a {
  text-align: 0 center;
}

.menu_title {
  display: flex;
  align-items: center;
  text-align: center;
}

.footer_menu_list {
  display: none;
}

.footer__logo_pc {
  display: none;
}

.footer__logo_sp {
  display: block;
  width: 50%;
}

.menu_title svg {
  display: none;
}

.footer__logo__div a img {
  text-align: center;
  margin: 0 auto;
  padding: 60px 0;
}

.menu__item {
  padding-bottom: 40px;
  width: fit-content;
  margin: auto;
}

.copy {
  padding: 60px 0;
}

@media screen and (min-width: 1024px) {
  .footer {
    background-color: #000;
    color: #9c927a;
    font-family: "Inter";
    text-align: left;
  }

  .footer_menu_list {
    display: block;
  }

  .footer__content {
    padding: 135px 9% 40px 9%;
  }

  .footer__logo_pc {
    display: block;
    width: 150px;
    height: auto;
  }

  .footer__logo_sp {
    display: none;
  }

  .menu_title {
    display: flex;
    margin-bottom: 35px;
    align-items: center;
  }

  .menu_title p {
    font-size: 2rem;
    font-weight: 500;
    margin-left: 20px;
  }

  .footer__group {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer_menu_item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
  }

  .footer_menu_item :not(:first-child) {
    margin-right: 100px;
  }

  .footer_menu_item p {
    margin-left: 10px;
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .rotate-text {
    display: inline-block;
    transition: transform 1s ease; /* 回転にスムーズな遷移を追加 */
  }

  .rotate-text:hover {
    transform: rotateX(360deg); /* ホバー時に縦回転 */
  }

  .insta__icon {
    margin: 60px 0;
    text-align: right;
  }

  .insta__icon_img {
    width: 30px;
  }

  .copy {
    text-align: right;
    color: #9c927a;
    font-family: Inter;
    font-size: 1.6rem;
    font-weight: 500;
  }

  .menu_title:hover svg {
    transform: scale(1.2);
    transition: 0.3s;
  }

  .menu__list {
    display: flex;
  }

  .footer__logo__div {
    margin: 0;
  }

  .menu_title svg {
    display: block;
  }

  .menu__item {
    padding-bottom: 0;
    margin: 0;
  }
}
