@charset "utf-8";

body {
  width: 100%;
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  user-select: none;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 0;
}
header .outline {
  width: 100%;
  max-width: calc(480px + 800px);
  margin: 0 auto;
  position: relative;
}
/* タイトル */
header .title {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
}
header .title button {
  display: block;
}
header .title img {
  width: 120px;
}
/* ナビゲーションボタン */
header .navBtn {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border: 1px solid #000000;
  border-radius: 100px;
}
header .navBtn .item {
  position: absolute;
  left: 50%;
  width: 30px;
  height: 1px;
  background-color: #000000;
}
/* 選択時 */
header .navBtn.selected {
  transition: opacity 0.3s 0.1s, visibility 0.1s, border 0.3s 0.3s;
}
header .navBtn.selected .item {
  top: 50%;
  transition: top 0.3s, transform 0.3s ease-in-out, background-color 0.3s 0.3s;
}
header .navBtn.selected .item:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
header .navBtn.selected .item:nth-child(2) {
  transform: translate(-50%, -50%) rotate(calc(-360deg * 3 - 45deg));
}
/* 未選択時 */
header.notTopPosition .navBtn.unselected {
  transition: opacity 0.3s 0.4s, visibility 0.1s, border 0.3s 0.1s;
}
header.notTopPosition .navBtn.unselected .item {
  transition: top 0.3s 0.3s, transform 0.3s ease-in-out 0.3s, background-color 0.3s;
}
header .navBtn.unselected .item:nth-child(1) {
  top: calc(50% - 5px);
  transform: translate(-50%, -50%);
}
header .navBtn.unselected .item:nth-child(2) {
  top: calc(50% + 5px);
  transform: translate(-50%, -50%);
}
/* トップポジション時 */
.notTopPosition .title,
.notTopPosition .navBtn {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0.1s, visibility 0.1s;
}
.topPosition .title,
.topPosition .navBtn {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.1s 0.3s;
}
/* フッター到達時 */
.notTopPosition .title.display {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0.1s, visibility 0.1s;
}
.notTopPosition .title.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.1s 0.3s;
}

/* ナビゲーション */
header .mainNav {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 520px;
  padding-top: 220px;
  background-color: rgb(0, 0, 0, 0.8);
  font-family: "Playfair Display", serif;
  color: #fff;
  overflow: auto;
}
header .mainNav.hidden {
  width: 0;
  opacity: 0;
  visibility: hidden;
  transition: width 0.5s, opacity 0.5s, visibility 0.1s 0.5s;
}
header .mainNav.display {
  width: 100%;
  opacity: 1;
  visibility: visible;
  transition: width 0.5s 0.1s, opacity 0.5s 0.1s, visibility 0.1s;
}
header .mainNav ul {
  width: 260px;
  margin-left: auto;
}
header .mainNav li {
  height: 80px;
}
header .mainNav button {
  text-transform: capitalize;
  letter-spacing: 0.2em;
  position: relative;
  transition: color 0.3s;
}
header .mainNav button:hover {
  color: rgb(255, 255, 255, 0.6);
}
header .mainNav span {
  position: absolute;
  top: calc(50% + 5px);
  right: -40px;
  transform: translate(0, -50%);
  width: 35px;
  height: 1px;
  background-color: #fff;
  transition: right 0.5s;
}
header .mainNav span::before {
  content: '';
  position: absolute;
  top: -2px;
  right: 0;
  transform: rotate(25deg);
  width: 10px;
  height: 0.5px;
  background-color: #fff;
}
header .mainNav button:hover span {
  right: -50px;
}
/* sns */
header .snsIcon {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 90px;
}
header .snsIcon li {
  margin-right: 30px;
}
header .snsIcon img {
  width: 35px;
}

/* footer */
footer {
  padding-top: 220px;
  padding-bottom: calc(45px + 10px);
  border-top: 1px solid rgb(0, 0, 0, 0.2);
}
footer .innerline {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: calc(480px + 800px);
  margin: 0 auto;
  padding: 0 20px;
}
footer .innerline .links {
  width: calc(130px * 4);
}
footer .innerLinks {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  width: 100%;
  text-transform: capitalize;
  font-family: "Playfair Display", serif;
  font-size: 18px;
}
footer .innerLinks li {
  width: 130px;
  padding: 20px 20px 20px 0;
}
footer .innerLinks button {
  display: block;
  width: 100%;
  letter-spacing: 0.2em;
}
/* sns */
footer .snsIcon {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 90px;
}
footer .snsIcon li {
  margin-right: 30px;
}
footer .snsIcon img {
  width: 35px;
}
/* プライバシーポリシー、反社会的勢力 */
footer .otherLinks li {
  margin-top: 20px;
  font-family: "Shippori Mincho", serif;
}
/* 会社詳細 */
footer .companyDetail {
  width: calc(100% - (130px * 4));
}
footer address {
  padding: 0 20px;
}
footer address h3 {
  width: 220px;
  margin: 0 auto;
}
footer address h3 button {
  display: block;
}
footer address h3 img {
  width: 100%;
}
footer address ul {
  width: 220px;
  margin: 0 auto;
}
footer address li {
  margin-top: 10px;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
}
footer address .postNumber {
  display: block;
}
/* コピーライト */
footer .copyright {
  width: 210px;
  height: 45px;
  margin: 155px 0 0 0;
  line-height: 1.5;
  font-family: "Playfair Display", serif;
  font-size: 14px;
}
footer .copyright span {
  display: block;
  text-decoration: underline;
}

/* デバイスに合わせた高さ */
.setHeight {
  height: calc(var(--dvh, 1vh) * 100);
}

/* トップコンテンツ */
.topContents {
  display: flex;
  justify-content: space-around;
  align-items: start;
  width: 100%;
  max-width: calc(480px + 800px);
  height: calc((var(--dvh, 1vh) * 100) - 120px);
  margin: 0 auto 120px;
  padding: 0 20px;
}
/* 左要素 */
.topContents .leftColumn {
  width: 50%;
  max-width: 480px;
  min-width: 435px;
  height: 100%;
  font-family: "Playfair Display", serif;
}
.topContents .leftColumn h2 {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 30%;
}
.topContents .leftColumn h2 a {
  display: block;
  font-size: 52px;
}
.topContents .leftColumn h2 .since {
  display: block;
  margin-top: 15px;
  text-transform: capitalize;
  letter-spacing: 0.3em;
  font-size: 18px;
  color: rgb(0, 0, 0, 0.6);
}
/* トップナビゲーション */
.topContents .leftColumn .topNavigation {
  width: 100%;
  height: calc(50% - 90px);
  min-height: calc(55px * 6);
  font-size: 18px;
}
.topContents .leftColumn .topNavigation li {
  display: flex;
  justify-content: start;
  align-items: center;
  height: calc(100% / 6);
  text-transform: capitalize;
}
.topContents .leftColumn .topNavigation button {
  display: block;
  letter-spacing: 0.2em;
  color: #000000;
  position: relative;
  transition: color 0.3s;
}
.topContents .leftColumn .topNavigation button:hover {
  color: rgb(0, 0, 0, 0.6);
}
.topContents .leftColumn .topNavigation span {
  position: absolute;
  top: calc(50% + 5px);
  right: -40px;
  transform: translate(0, -50%);
  width: 35px;
  height: 1px;
  background-color: #000000;
  transition: right 0.5s;
}
.topContents .leftColumn .topNavigation span::before {
  content: '';
  position: absolute;
  top: -2px;
  right: 0;
  transform: rotate(25deg);
  width: 10px;
  height: 0.5px;
  background-color: #000000;
}
.topContents .leftColumn .topNavigation button:hover span {
  right: -50px;
}
/* SNS アイコン */
.topContents .snsIcon {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 90px;
}
.topContents .snsIcon li {
  margin-right: 30px;
}
.topContents .snsIcon img {
  width: 35px;
}
/* 右要素（画像） */
.topContents .rightColumn {
  width: 50%;
  max-width: 800px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@keyframes imageScale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.0);
  }
}
.topContents .rightColumn img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.2);
}

/* 各コンテンツ */
.contents {
  min-height: 100vh;
  padding: 0 20px 120px;
}
.contents .innerline {
  width: 100%;
  max-width: calc(480px + 800px);
  margin: 0 auto;
  padding-top: 220px;
}
.contents .subtitle {
  font-family: "Playfair Display", serif;
  text-transform: capitalize;
  font-size: 48px;
}

/* work */
.workContents {
  position: relative;
}
.workContents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/case_study_images/case-image-04.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}
/* 各行コンテンツ */
.workContents .row {
  padding: 60px 0;
}
.workContents .row h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  position: relative;
}
.workContents .row h3::before {
  content: '';
  position: absolute;
  top: calc(50% + 5px);
  right: 0;
  transform: translate(0, -50%);
  width: calc(100% - 40px);
  height: 0.5px;
  background-color: rgb(0, 0, 0, 0.4);
}
.workContents .row .Item {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  padding: 30px 20px;
}
.workContents .row .Item img {
  width: 100%;
  max-width: 460px;
  height: 340px;
  margin-right: 20px;
  object-fit: cover;
}
.workContents .row .text {
  width: 100%;
  max-width: 520px;
}
.workContents .row .text h4 {
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
  font-size: 26px;
  font-weight: 700;
}
.workContents .row .text p {
  margin-top: 20px;
  line-height: 2;
  color: rgb(0, 0, 0, 0.8);
}

/* company */
.companyContents .column {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 60px;
}
.companyContents .companyDetail {
  width: 100%;
  max-width: 480px;
  padding: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  position: relative;
}
.companyContents .companyDetail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255, 0.8);
}
.companyContents .companyDetail dt {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 50px;
  position: relative;
}
.companyContents .companyDetail dt::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(0, 0, 0, 0.2);
}
.companyContents .companyDetail dd {
  min-height: 80px;
  padding-top: 10px;
  line-height: 1.5;
  font-size: 18px;
}
.companyContents .companyDetail span {
  display: block;
}
.companyContents .sampleImage {
  max-width: 480px;
  min-width: 480px;
  padding: 0 20px;
}
.companyContents .sampleImage img {
  width: 100%;
}

/* access */
.accessContents .column {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  margin-top: 60px;
}
.accessContents .accessMap {
  width: 100%;
  max-width: 480px;
}
.accessContents .accessMap iframe {
  width: 100%;
}
.accessContents .companyImage {
  width: 100%;
  max-width: 540px;
  padding: 0 20px;
}
.accessContents .companyImage img {
  width: 100%;
}
.accessContents .companyImage p {
  margin-top: 20px;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
}
.accessContents .companyImage p span {
  font-size: 14px;
  font-weight: 700;
}

/* message */
.messageContents {
  margin-top: calc(var(--dvh, 1vh) * 100);
  background-color: #b7a376;
  position: relative;
  color: #fff;
}
.messageContents::before {
  content: '';
  position: absolute;
  top: calc((var(--dvh, 1vh) * -100) + 10vh);
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc((var(--dvh, 1vh) * 100) - 10vh);
  background-image: url(../img/image-16.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.8;
}
.messageContents .column {
  display: flex;
  justify-content: start;
  align-items: end;
  flex-wrap: wrap;
  padding-top: 60px;
}
.messageContents .message {
  width: 100%;
  max-width: 480px;
}
.messageContents h3 {
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 600;
  position: relative;
}
.messageContents h3::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255, 0.2);
}
.messageContents p {
  margin-top: 20px;
  line-height: 1.5;
  color: rgb(255, 255, 255, 0.8);
}
.messageContents p.fin {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
}
.messageContents .groupPhoto {
  width: 100%;
  max-width: 520px;
  padding: 0 20px;
}
.messageContents .groupPhoto img {
  width: 100%;
}

/* menber */
.memberContents {
  position: relative;
}
.memberContents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 180px;
  background-image: url(../img/image-05.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.8;
}
.memberContents .menbers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.memberContents .menberItem {
  width: calc(100% / 3);
  max-width: 320px;
  margin: 30px 30px 30px 0;
}
.memberContents .menberItem img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}
.memberContents .textData {
  display: block;
  padding-top: 30px;
}
.memberContents h3 {
  padding-top: 10px;
  line-height: 1.5;
  font-family: "Playfair Display", serif;
}
.memberContents h3 .post {
  display: block;
  font-size: 16px;
}
.memberContents h3 .jp {
  margin-right: 5px;
  font-size: 26px;
}
.memberContents h3 .en {
  display: block;
  letter-spacing: 0.3em;
  font-size: 18px;
  color: rgb(0, 0, 0, 0.6);
}
.memberContents .message {
  padding-top: 20px;
  line-height: 1.5;
}

/* contact */
.contactContents {
  min-height: auto;
  margin-top: calc((var(--dvh, 1vh) * 100) / 2.5);
  position: relative;
}
.contactContents::before {
  content: '';
  position: absolute;
  top: calc((var(--dvh, 1vh) * 100) / -2.5);
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc((var(--dvh, 1vh) * 100) / 2.5);
  background-image: url(../img/image-06.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.8;
}
.contactContents .contactItem {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 60px;
}
.contactContents .contactItem p {
  width: 100%;
  line-height: 1.5;
}
.contactContents .contactBtn {
  display: flex;
  justify-content: start;
  align-items: center;
  padding-top: 30px;
}
.contactContents .contactItem span {
  display: block;
  font-family: "Playfair Display", serif;
  text-transform: capitalize;
}
.contactContents .contactItem a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-left: 220px;
  background-color: #b7a376;
  box-shadow: 2px 2px 5px -2px rgb(0, 0, 0, 0.6);
  border-radius: 100px;
  position: relative;
}
.contactContents .contactItem a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -210px;
  transform: translate(0, -50%);
  width: 200px;
  height: 1px;
  background-color: rgb(0, 0, 0, 0.2);
}
.contactContents .contactItem img {
  width: 35px;
}

/* プライバシーポリシー */
.privacypolicyContents {
  display: block;
  max-width: none;
  height: auto;
  margin: 0;
  padding: 35px 0;
  font-family: "Shippori Mincho", serif;
}
.privacypolicyContents .contents {
  min-height: auto;
  padding: 0;
}
.privacypolicyContents .innerline {
  width: 100%;
  max-width: calc(480px + 800px);
  margin: 0 auto;
  padding: 0 20px;
}
.privacypolicyContents h1 {
  padding-bottom: 30px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.privacypolicyContents p {
  line-height: 1.5;
}
.privacypolicyContents h2 {
  font-size: 20px;
  padding-top: 30px;
  padding-bottom: 20px;
  font-weight: 700;
}
.privacypolicyContents li {
  margin-top: 10px;
  padding-left: 35px;
  line-height: 1.5;
  position: relative;
}
.privacypolicyContents li::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  text-align: center;
}
/* お問い合わせ窓口 */
.privacypolicyContents .contactPoint h3 {
  line-height: 1.5;
}
.privacypolicyContents .contactPoint dt {
  display: flex;
  justify-content: start;
  align-items: end;
  height: 25px;
  text-transform: capitalize;
  font-size: 14px;
}
.privacypolicyContents .contactPoint dd {
  height: 35px;
}
.privacypolicyContents .contactPoint a {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
}