/*+++++++++++++++++++++++++++++++++++++++++
　base
*+++++++++++++++++++++++++++++++++++++++++*/
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-grey: #5B5A51;
  --color-middlegrey: #5a696c;
  --color-highgrey: #f8f8f8;
  --color-rightgrey: #C3C3C3;
  --color-rightyellow: #FBF8F3;
  --color-rightgreen: #f4f8f6e9;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration-skip-ink: none;
}
html{
  scroll-behavior: smooth;
}
#news {
  scroll-margin-top: -130px;
}
#about {
  scroll-margin-top: -130px;
}
#service {
  scroll-margin-top: -130px;
}
#company {
  scroll-margin-top: 70px;
}

@media (max-width: 768px) {
  #news {
    scroll-margin-top: -60px;
  }
  #about {
    scroll-margin-top: -60px;
  }
  #service {
    scroll-margin-top: -70px;
  }
  #company {
    scroll-margin-top: 60px;
  }
}

body {
  color: var( --color-black);
  font-size: 13px;
  font-family: "Noto Sans JP", yu-gothic-pr6n, "游ゴシック", YuGothic, "Hiragino Sans", "ＭＳ Ｐゴシック", sans-serif, system-ui;
  font-weight: 300;
  line-height: 2;
}
h2 {
  font-size: 20px;
  font-weight: 300;
}
h3 {
  font-size: 18px;
  font-weight: 300;
}
img {
  width: 100%;
  vertical-align: bottom;
  flex-shrink: 0;
}
.inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 100px;
  position: relative;
  max-width: calc(1280px + 30px);
}
.center {
  text-align: center;
}
@media (max-width: 768px) {
  body{
    font-size: 12px;
  }
  h2 {
    font-size: 16px;
  }
  h3 {
    font-size: 16px;
  }
  .inner {
    padding: 0;
  }
}

/* -- 日本語フォント、タイトル、コンセプトなどに使用 -- */
.title-jp {
  font-style: normal;
  line-height: 1.8;
  color: var(--color-grey);
}
/* -- 英語フォント、タイトル、コンセプトなどに使用 -- */
.lato-thin {
  font-family: "Lato";
  font-style: normal;
}
/* -- テキストリンク -- */
.link--text{
  text-decoration: underline;
}
/* -- リンクホバー -- */
a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
/* -- pc・spビュー -- */
.pc-view {
  display: block;
}
.sp-view {
  display: none;
}
@media (max-width: 768px) {
  .pc-view {
    display: none;
  }
  .sp-view {
    display: block;
  }
}
/* フェードインアニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}
/* スクロール時に表示されるクラス */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* =================================
　 ヘッダー
================================= */
.site-header {
  background-color: var(--color-white);
  position: relative;
  z-index: 1000;
}
.site-header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
/* デスクトップ用ナビゲーション */
.site-header-nav-list {
  list-style: none;
  display: flex;
  gap: 2.2rem;
}
.site-header-nav-item a {
  display: inline-flex;
  align-items: center;
}
.site-header-nav-item-allow {
  display: flex;
  align-items: center;
}
.site-header-nav-item-allow a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 2px;
}
.site-header-nav-item-allow .link-text {
  margin-right: 0.5rem;
  color: var(--color-black);
}
.site-header-nav-item-allow img {
  animation: slideRight 2s ease-in-out infinite;
  width: 20px;
}
/* 左右に揺れるアニメーション */
@keyframes slideRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
/* メールアイコン */
.site-header-nav-item-icon a img {
  width: 25px;
  height: auto;
}
/* ハンバーガーボタン（SP用） */
.site-header-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 10px;
  width: 30px;
  padding: 0;
  margin-left: 1rem;
  position: relative;
  z-index: 1002;
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
/* ハンバーガーボタンのアニメーション */
.site-header-hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(0px) rotate(45deg);
}
.site-header-hamburger.active .hamburger-line:nth-child(2) {
  transform: translateY(-10px) rotate(-45deg);
}
/* SP用メニュー */
.mobile-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 60%;
  background-color: var(--color-rightgreen);
  padding: 1rem;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
.mobile-menu-item {
  margin-bottom: 1.5rem;
}
.mobile-menu-item a {
  text-decoration: none;
  color: var(--color-black);
}
.mobile-menu-item:last-child {
  margin-bottom: 0;
}
.mobile-menu-item-allow {
  display: flex;
  align-items: center;
}
.mobile-menu-item-allow a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 2px;
}
.mobile-menu-item-allow .link-text {
  margin-right: 0.5rem;
  color: var(--color-black);
  font-size: 14px;
}
.mobile-menu-item-allow img {
  animation: slideRight 2s ease-in-out infinite;
  width: 20px;
}
@media (max-width: 768px) {
  .site-header-container {
    padding: 35px 15px 0;
  }
  .site-header-hamburger {
    display: flex;
  }
  .site-header-nav {
    display: none;
  }
  .site-header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-menu-item--icon img {
    width: 20%;
    height: 20%;
  }
  .circle-logo-link {
    width: 44%;
  }
}
/* -- News一覧 ヘッダー -- */
.header--news .site-header-container {
  justify-content: space-between;
}
.header--news .circle-logo {
  width: 160px;
}
@media (max-width: 768px) {
  .header--news .circle-logo {
    width: 85%;
  }
}

/******************************************
  フッター
******************************************/
.site-footer {
  position: relative;
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 50px 0;
  margin-top: 200px;
}
.site-footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer-left {
  max-width: 220px;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  display: block;
  max-width: 200px;
  height: auto;
}
.footer-address {
  font-size: 13px;
  line-height: 1.5;
  font-style: normal;
}
.footer-right {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  flex-direction: column;
}
.footer-nav {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 25px 0 0;
}
.footer-nav a {
  text-decoration: none;
  color: var(--color-black);
  font-size: 14px;
}
.footer-mail-link img {
  width: 24px;
}
.footer-bottom {
  text-align: left;
  padding-top: 10px;
}
.footer-bottom p {
  font-size: 11px;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 0 30px 20px;
    margin-top: 130px;
  }
  .site-footer-container {
    padding: initial;
  }
  .footer-inner {
    flex-direction: column-reverse;
    margin-bottom: initial;
  }
  .footer-left {
    margin-bottom: 20px;
  }
  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 50px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 15px;
    padding: initial;
  }
  .site-header-hamburger.active {
    position: fixed;
    top: 60px;
    right: 15px;
    z-index: 1003;
  }
  .footer-logo img {
    max-width: 160px;
  }
}

/******************************************
  ページトップへ戻るボタン
******************************************/
.page-top-link {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.page-top-link.is-active {
  opacity: 1;
  pointer-events: auto;
}
.page-top-link:hover {
  opacity: 0.5;
}
.page-top-link img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .page-top-link {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* =================================
　 TOP
================================= */
/* -- MV -- */
.top--mv h2 {
  font-size: 35px;
  font-weight: 300;
}
.top--mv-tagline h2 {
  line-height: 1.5;
  text-shadow:
  -2px -2px 5px white,
   2px -2px 5px white,
  -2px  2px 5px white,
   2px  2px 5px white;
}
.top--mv {
  display: flex;
  justify-content: space-between;
  margin-bottom: 130px;
}
.top--mv-left {
  position: relative;
  width: 25%;
}
.top--mv-logo {
  display: flex;
  align-items: center;
  margin-top: 60px;
}
.circle-logo {
  width: 85%;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}
.top--mv-circle-text {
  position: absolute;
  top: 65%;
}
.scroll-img {
  width: 45%;
  height: 45%;
  animation: rotate 15s linear infinite;
}
.scroll-allow-img {
  position: absolute;
  top: 50%;
  left: 22%;
  transform: translate(-50%, -50%);
  width: 4%;
  animation: verticalShake 3s ease-in-out infinite;
}
.top--mv-right {
  position: relative;
  width: 75%;
}
.top--mv-image {
  width: 100%;
  height: 115%;
  object-fit: cover;
  display: block;
}
.top--mv-tagline {
  position: absolute;
  top: 35%;
  left: -2%;
  transform: translate(-50%, -50%);
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes verticalShake {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}
/* -- logo circle -- */
.logo-circle-flex {
  display: flex;
  margin-bottom: 30px;
}
.logo-circle-flex-center {
  justify-content: center;
}
.logo-circle {
  text-align: center;
}
.logo-circle img {
  width: 60px;
  height: 60px;
}
.logo-circle p {
  font-size: 16px;
}
.centeraaa {
  justify-content: center;
}
@media (max-width: 768px) {
  .top--mv h2 {
    font-size: 20px;
  }
  .top--mv {
    margin-bottom: 142px;
    margin-top: 15px;
  }
  .top--mv-left {
    width: 30%;
  }
  .top--mv-right {
    width: 65%;
  }
  .top--mv-image {
    height: 155%;
    object-position: 80% 0%;
  }
  .top--mv-tagline {
    width: 110%;
    top: 42%;
    left: 8%;
  }
  .top--mv-logo {
    margin-top: 0;
  }
  .scroll-img {
    width: 100%;
    height: 100%;
  }
  .scroll-allow-img {
    top: 54%;
    left: 48%;
    width: 8%;
  }
  .top--mv-circle-text {
    top: 118%;
    left: 20%;
  }
}

/* -- About us -- */
.top--aboutus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 100px;
  padding-top: 200px;
  margin-bottom: 160px;
}
.top--aboutus-text {
  flex: 0 0 35%;
  max-width: 35%;
}
.top--aboutus-img {
  flex: 0 0 38%;
  max-width: 38%;
  position: relative;
}
.top--aboutus-img--apparel {
  position: absolute;
  left: -45%;
  bottom: -30%;
  width: 75%;
}
.top--aboutus .title-jp {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .top--aboutus {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 15px;
    padding-top: 100px;
    margin-bottom: 72px;
  }
  .top--aboutus-text {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .top--aboutus-img {
    max-width: 100%;
  }
  .top--aboutus-img img {
    max-width: 75%;
  }
  .top--aboutus-img--apparel {
    left: initial;
    bottom: -18%;
    width: 55%;
    right: 0;
  }
}

/* -- Service -- */
.top--service {
  padding-top: 200px;
}
.top--service-flex {
  display: flex;
  justify-content: space-between;
}
.top--service-box {
  width: 48%;
}
.top--service-box-img {
  position: relative;
  margin-bottom: 40px;
}
.top--service-box-text {
  display: flex;
  position: absolute;
  width: 58%;
  left: -1px;
  bottom: -1px;
  background-color: var(--color-white);
  padding: 7px 0;
}
.top--service-box-text img {
  width: 12%;
  height: 12%;
  margin-left: 15px;
}
.top--service-box-img h2 {
  margin-left: 10px;
}
.top--service-box h3 {
  margin-bottom: 30px;
}
.top--service-box p {
  margin-bottom: 90px;
}
.top--service-link {
  display: flex;
  align-items: center;
  color: #000;
}
.top--service-link img {
  width: 28%;
  margin-left: 10px;
}
/* coming soon */
.no-select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .top--service {
    padding: 130px 15px 0;
  }
  .top--service-flex {
    flex-direction: column;
  }
  .top--service-box {
    width: 100%;
  }
  .top--service-box:first-child {
    margin-bottom: 80px;
  }
  .top--service-box-img {
    margin-bottom: 20px;
  }
  .top--service-box h3 {
    margin-bottom: 20px;
  }
  .top--service-box p {
    margin-bottom: 20px;
  }
}

/* -- Company Profile -- */
.top--company-profile {
  margin-top: 200px;
}
.top--company-profile-flex {
  display: flex;
  align-items: center;
}
.top--company-info {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  padding-left: 120px;
}
.top--company-info dt {
  width: 200px;
  text-align: left;
  padding: 8px 0 8px 0;
  line-height: 1.5;
}
.top--company-info dd {
  padding: 8px 0 8px 20px;
  border-left: 1px solid var(--color-rightgrey);
  line-height: 1.5;
  width: 100%;
}
.top--company-info-list {
  display: flex;
}
/* -- Google map -- */
.map-container {
  position: relative;
  width: 660px;
  height: 430px;
  background-color: var(--color-middlegrey);
  isolation: isolate;
}
.map-container iframe {
  border: 0;
  opacity: 1;
  filter: brightness(0.9) contrast(1.2);
  mix-blend-mode: luminosity;
  width: 100%;
  height: 100%;
}
.map-container-sp {
  position: relative;
  width: 660px;
  height: 430px;
  filter: brightness(1) contrast(1.3);
}
.map-container-sp iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.map-container-sp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(94, 120, 134, 0.30);
  filter: brightness(1.3) contrast(1.4) saturate(1.3) hue-rotate(10deg);
  pointer-events: none;
}
@media (max-width: 768px) {
  .top--company-info {
    padding-left: 0;
  }
  .top--company-profile {
    margin-top: 130px;
    padding: 0 15px;
  }
  .top--company-profile-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .map-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    margin-bottom: 20px;
  }
  .map-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .map-container-sp {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    margin-bottom: 20px;
  }
  .map-container-sp iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* -- Contact -- */
.top--contact {
  text-align: center;
  margin-top: 200px;
  padding: 0 250px;
}
.top--contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-rightyellow);
  padding: 60px 0;
}
.top--contact-box img {
  width: 25px;
  margin-bottom: 30px;
}
.top--contact-box {
  color: var(--color-black);
}
.top--contact-button {
  padding: 20px 60px;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  cursor: pointer;
  transition: 0.3s;
}
.top--contact-button:hover {
  opacity: 0.5;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .top--contact {
    padding: 0 15px;
    margin-top: 130px;
  }
  .top--contact-box {
    padding: 30px 0;
  }
  .top--contact-button {
    font-size: 14px;
  }
}

/* -- News -- */
.top--news {
  padding: 0 200px;
  padding-top: 200px;
}
.top--news-list {
  display: flex;
  flex-direction: column;
}
.top--news-item {
  border-bottom: 1px solid var(--color-rightgrey);
  padding: 30px 0;
}
.top--news-item:first-child {
  border-top: 1px solid var(--color-rightgrey);
}
.top--news-date {
  font-size: 13px;
  color: var(--color-black);
}
.top--news-title {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-grey);
  margin-bottom: 10px;
}
.top--news-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-black);
}
.top--news-link {
  text-align: right;
  margin-top: 40px;
}
.top--news-link a {
  font-size: 13px;
  color: var(--color-black);
  text-decoration: underline;
}
.top--news-link a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .top--news {
    padding: 0 15px;
    padding-top: 100px;
    margin-bottom: 30px;
  }
  .top--news-item {
    padding: 20px 0;
  }
  .top--news-date {
    font-size: 12px;
  }
  .top--news-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .top--news-text {
    font-size: 12px;
  }
  .top--news-link a {
    font-size: 12px;
  }
  .top--news-link {
    margin-top: 20px;
  }
}

/* =================================
　 News一覧ページ
================================= */
.news-archive {
  padding: 0 200px;
  padding-top: 200px;
  margin-bottom: 200px;
}
.news-archive-list {
  display: flex;
  flex-direction: column;
}
.news-archive-item {
  border-bottom: 1px solid var(--color-rightgrey);
  padding: 30px 0;
}
.news-archive-item:first-child {
  border-top: 1px solid var(--color-rightgrey);
}
.news-archive-date {
  font-size: 13px;
  color: var(--color-black);
}
.news-archive-title {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-grey);
  margin-bottom: 10px;
}
.news-archive-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-black);
}
/* パンくず */
.breadcrumb {
  width: 100%;
  text-align: right;
  font-size: 14px;
  color: var(--color-black);
}
.breadcrumb a {
  color: var(--color-black);
}
.breadcrumb a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.breadcrumb-separator {
  margin: 0 8px;
}
@media (max-width: 768px) {
  .news-archive {
    padding: 0 15px;
    padding-top: 100px;
    margin-bottom: 80px;
  }
  .news-archive-item {
    padding: 20px 0;
  }
  .news-archive-date {
    font-size: 12px;
  }
  .news-archive-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .news-archive-text {
    font-size: 12px;
  }
  .breadcrumb {
    width: 100%;
    text-align: right;
    font-size: 14px;
    color: var(--color-black);
    padding: 0 15px;
  }
}
