/*
Theme Name: 20251106_Thermory  
Author: Yuka OE
Description: Themoryのオリジナルテーマ
Version: 1.0
*/

@charset "UTF-8";

* {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  color: #333333;
  scroll-behavior: auto !important;
}

html {
  scroll-margin-top: 90px;
}

p,
span,
dt,
dd {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}

.all-content {
  width: 100%;
  overflow: hidden;
  position: relative; /* これを追加 */
  height: auto;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.sans {
  font-family: "Noto Sans JP", sans-serif;
}

.serif,
.serif span,
.serif p {
  font-family: "Noto Serif JP", serif;
}

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

body {
  background: #fff;
  scroll-behavior: auto;
  height: auto;
}

/* header */

header {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: 95;
  font-family: "Noto Sans JP", sans-serif;
}

.header-content {
  width: 95%;
  padding-top: 2vw;
  margin: 0 auto;
}

.header_circle {
  position: absolute;
  top: -0.9vw;
  right: -0.9vw;
  z-index: 99;
}

.hd_circle {
  fill: #da291c;
  transition: 0.5s;
}

#circle {
  width: 5vw;
  height: 5vw;
}

/* fixed */
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5); /* スタイル変更例 */
  z-index: 1000;
  width: 100%;
  animation: header-fade 0.5s forwards;
  transform: translateX(0);
}

header.fixed .products-panel {
  background: rgba(0, 0, 0, 0.5); /* スタイル変更例 */
  margin-top: 31.5px;
  min-width: 635px;
}

@keyframes header-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes header-fade-out {
  0% {
    opacity: 1;
  }

  10% {
    background: transparent;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

header.fixed .header-content {
  width: 95%;
  padding: 0.5vw 0;
  margin: 0 auto;
}

@media screen and (max-width: 980px) {
  .header-content {
    width: 100%;
    padding-top: 30px;
    padding-left: 35px;
  }

  header.fixed .header-content {
    padding: 7px 0;
  }

  .header_circle {
    top: -12px;
    right: -12px;
  }

  #circle {
    width: 65px;
    height: 65px;
  }
}

@media screen and (max-width: 480px) {
  header.fixed .header-content {
    padding: 7px 0;
    width: 90%;
  }
}

.pc-nav-flex {
  display: flex;
}

.header-logo {
  max-width: 200px;
  width: 22%;
}

@media screen and (max-width: 980px) {
  .header-logo {
    max-width: 180px;
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .header-logo {
    width: 133px;
  }
}

.header-logo a {
  display: block;
  width: 100%;
}

.pc-nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.pc-nav {
  width: 78%;
}

@media screen and (max-width: 980px) {
  .pc-nav {
    display: none;
  }

  .pc-nav-flex {
    display: block;
  }
}

.pc-nav ul .inner-flex-left {
  display: flex;
  justify-content: right;
  gap: 34px;
}

.pc-nav ul .inner-flex {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 34px;
  margin-right: 35px;
}

@media screen and (max-width: 1300px) {
  .pc-nav ul .inner-flex-left {
    gap: 2.6vw;
  }

  .px-nav ul .innder-flex {
    gap: 2.6vw;
  }
}

.pc-nav ul li a {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  letter-spacing: 0.08em;
  font-size: 16px;
  line-height: 1;
  transition: 0.3s;
  position: relative;
}

.pc-nav .li02 {
  position: relative;
  white-space: nowrap;
}

/* --- ドロップダウンメニューのための修正CSS --- */

/* サブメニューの親となるli要素に基準位置を設定 */
.pc-nav li.has-children {
  position: relative;
}

/* サブメニュー全体を囲むコンテナのスタイル */
.product-menu-container {
  position: absolute; /* 親要素を基準に絶対配置 */
  top: 100%; /* 親要素のすぐ下に配置 */
  left: 0;
  z-index: 100;
  padding: 20px;

  /* ★ 初期状態では非表示にする（高さに影響しない方法） */
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* is-openクラスが付いた時にサブメニューを表示 */
.product-menu-container.is-open {
  visibility: visible;
  opacity: 1;
}

/* --- 以下は内側のアコーディオンメニューのスタイル（ほぼ既存のものを流用） --- */

.pc-nav .list02 li + li {
  margin-top: 20px;
}

.pc-nav .list03 {
  max-height: 0; /* 初期状態で高さを0に */
  overflow: hidden; /* はみ出た部分を隠す */
  transition: max-height 0.4s ease-in-out; /* アニメーションを少し調整 */
  padding-left: 20px; /* 見た目を調整 */
}

/* activeクラスが付いたliの中のlist03を開く */
.pc-nav .li02.active .list03 {
  max-height: 200px;
}

.pc-nav .li02.active .list03 li a {
  line-height: 2.26;
}

.pc-nav .li02.active .list03 li a::after {
  bottom: 0;
}

.pc-nav .li02.active > .list03 li + li {
  margin-top: 0;
}

/* .pc-nav .li02.active > .list03 li:last-child {
  padding-bottom: 10px;
} */

/* プラス/マイナスアイコンのスタイル（既存のものを流用） */
.pc-nav .li02 a.mark {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
}

.pc-nav .li02 a.mark::before,
.pc-nav .li02 a.mark::after {
  content: "";
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transition: transform 0.3s ease;
}

/* .pc-nav .li01 a::after {
  content: none;
} */

.pc-nav .li02 a.mark::before {
  height: 2px;
  width: 12px;
  margin-top: -1px;
}

.pc-nav .li02 a.mark::after {
  height: 12px;
  width: 2px;
  margin-left: 5px;
  margin-top: -6px;
}

/* active時に縦棒を90度回転させてマイナスにする */
.pc-nav .li02.active a.mark::after {
  transform: rotate(90deg);
}

.pc-nav ul li a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -7px;
  left: 0;
  transition: 0.4s;
}

.pc-nav .li02::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -7px;
  left: 0;
  transition: 0.4s;
}

.pc-nav .li02::after {
  content: none;
}

.pc-nav .has-children.products {
  position: relative;
}

/* フェード＆スライドの初期状態 */
.products-panel {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 595px;
  padding: 16px 20px;
  z-index: 50;
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  background: rgba(0, 0, 0, 0.5); /* スタイル変更例 */
  margin-top: 20px;
}

.page .products-panel {
  min-width: 615px;
}

/* 開いた状態 */
.products-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
}

/* .products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px 24px;
}
@media (min-width: 960px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(200px, 1fr));
  }
} */

.submenu-link {
  font-weight: 600;
  text-decoration: none;
  padding: 6px 0;
  display: inline-block;
}

.submenu-link::after {
  bottom: 0 !important;
}

.submenu-item.expandable {
  padding-left: 18px;
  padding-top: 15px;
}

.submenu-item:last-child {
  margin-top: 10px;
}

.submenu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: none;
  border: none;
  padding: 6px 0 6px 25px; /* 左に＋/−の余白 */
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}

/* アコーディオンの中身（アニメーション用にmax-height） */
.submenu-children {
  margin: 8px 0 0 0;
  padding-left: 2.8em;
  list-style: disc;
}

.submenu-children {
  list-style-type: " ";
}

.submenu-children a {
  text-decoration: none;
  display: inline-block;
  padding: 7px 0;
  font-weight: 500;
}

.submenu-children a::after {
  bottom: 0 !important;
}

.submenu-children li + li {
  margin-top: 10px;
}

.submenu-children li:last-child a {
  padding-bottom: 10px;
}

@media screen and (max-width: 1300px) {
  .pc-nav ul li a {
    font-size: 1.23vw;
  }

  .products-panel {
    margin-top: 1.5vw;
    min-width: 46vw;
  }

  header.fixed .products-panel {
    margin-top: 2.8vw;
    padding: 1.5vw 2vw;
  }
}

.pc-nav ul li a:hover::after {
  width: 100%;
}

.pc-nav .li02:hover::after {
  width: 100%;
}

#mail-icon {
  width: 18px;
  height: auto;
}

.nav li.contact a {
  color: #fff;
  padding: 15px 18px;
  border: 1px solid #fff;
  transition: 0.3s;
}

.nav li.contact a:hover {
  color: #fff;
  background-color: #da291c;
  border: 1px solid #da291c;
}

.nav li.contact a::after {
  height: 0;
}

.cls-1 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 0.5px;
  transition: 0.3s;
}

#mail-icon {
  width: 18px;
  margin-right: 10px;
}

.nav li.contact img {
  margin-right: 10px;
}

@media screen and (max-width: 1300px) {
  #mail-icon {
    width: 1.4vw;
  }

  .nav li.contact a {
    padding: 1.4vw;
  }

  #mail-icon {
    margin-right: 0.8vw;
  }

  .nav li.contact img {
    margin-right: 0.8vw;
  }
}

/* ハンバーガーメニュー */

.sp-nav {
  display: none;
  width: 75px;
}

@media screen and (max-width: 1000px) {
  .sp-nav {
    display: inherit;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.sp-nav-box {
  padding: 35px 0;
  padding-bottom: 100px;
}

.sp-nav-box .sp-logo {
  width: 133px;
}

/* チェックボックスを非表示にする */
.checkbox-hidden {
  display: none;
}

/* 設置スペース */
.hum-open {
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 100; /* 重なり順を一番上にする */
  cursor: pointer;
  margin-top: 25px;
  background-color: #fff;
  border-radius: 100px;
  top: 15px;
  right: 20px;
  transition: 0.5s;
}

header.fixed .hum-open {
  margin-top: 0px;
  top: 20px;
}

@media screen and (max-width: 480px) {
  header.fixed .hum-open {
    top: 10px;
  }

  .hum-open {
    margin-top: 15px;
  }
}

/* アイコンの見た目 */
.hum-open span,
.hum-open span:before,
.hum-open span:after {
  content: "";
  display: block;
  height: 1px;
  width: 20px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.5s;
  position: absolute;
}

/* 上の線の位置 */
.hum-open span:before {
  bottom: 6px;
}

/* 下の線の位置 */
.hum-open span:after {
  top: 6px;
}

/* メニューが開いた時に真ん中の線を消す */
#hum-icon:checked ~ .hum-open span {
  background: rgba(255, 255, 255, 0);
}

/* メニューが開いた時に線が×になる*/
#hum-icon:checked ~ .hum-open span::before {
  bottom: 0;
  transform: rotate(-45deg);
  background: #da291c;
}

#hum-icon:checked ~ .hum-open span::after {
  top: 0;
  transform: rotate(45deg);
  background: #da291c;
}

/* メニューが開いた時の線の色 */
#hum-icon:checked ~ .hum-open {
  background-color: #333333;
}

/* ハンバーガーメニューの中身*/
.sp-nav-content {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 101%;
  z-index: 98;
  background: #da291c;
  transition: 0.5s;
  overflow: auto;
  display: block;
}

/* アイコンがクリックされたらメニューを右から入れる */
#hum-icon:checked ~ .sp-nav-content {
  right: 0;
}

.sp-nav-box {
  width: 101%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1000;
  overflow-y: auto;
}

/* メニューのスタイル */
.sp-nav-list {
  width: 80%;
  list-style: none;
  margin: 0 auto;
  height: fit-content;
  font-size: 18px;
  overflow-y: auto;
}

.sp-nav-content .sp-nav-list h4 {
  color: #333;
  font-size: 15px;
  letter-spacing: 0.2em;
}

.sp-nav-list a li,
.sp-nav-block .li02 a.mark {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 2.26;
  transition: 0.3s;
  cursor: pointer;
}

.sp-nav-list a li:hover {
  color: #333333;
}

.sp-nav-block .list01 {
  margin-top: 20px;
  padding: 0 30px;
}

.sp-nav-block {
  padding: 30px 0;
}

.sp-nav-block.bb {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.sp-nav-list .list01,
.sp-nav-list .list02,
.sp-nav-list .list02-2 .sp-nav-list .list03 {
  list-style-position: inside;
}

/* .sp-nav-list .list01 {
  list-style-type: "･ ";
} */

/* .sp-nav-list .list01::before {
  content: "･ ";
  margin-right: 0.25em;
} */

.sp-nav-list .list01.product {
  margin-bottom: 20px;
}

.sp-nav-list .list03 {
  list-style-type: "-  ";
}

.sp-nav-list li::marker {
  color: #fff;
}

.sp-nav-block .li02,
.sp-nav-block .li02-2,
.sp-nav-block .li03 {
  position: relative;
}

.sp-nav-block .li03 a {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 2.26;
  transition: 0.3s;
  cursor: pointer;
}

.sp-nav-block .li02 a.mark,
.sp-nav-block .li02-2 {
  padding-left: 30px;
}

.sp-nav-block .list02.product {
  padding-left: 65px;
}

.sp-nav-block .list02.product .li02-2 {
  padding-left: 0;
}

.sp-nav-block .list02.product .li02-2::marker {
  color: #fff;
}

.sp-nav-block .list03 {
  max-height: 0; /* 初期状態で高さ0にする */
  overflow: hidden; /* はみ出た部分を隠す */
  transition: max-height 0.5s ease; /* トランジションの設定 */
  padding-left: 65px;
}

.sp-nav-block .li02.active .list03 {
  max-height: 200px; /* 最大の高さを設定（必要に応じて調整） */
}

.sp-nav-block .li02 a.mark::before {
  content: "";
  height: 2px;
  width: 10px;
  background-color: #fff;
  position: absolute;
  top: 18px;
  transform: translateY(-50%);
  left: 0;
  cursor: pointer;
}

.sp-nav-block .li02 a.mark::after {
  content: "";
  height: 10px;
  width: 2px;
  background-color: #fff;
  position: absolute;
  top: 18px;
  transform: translateY(-50%);
  left: 4px;
  transition: 0.3s;
  cursor: pointer;
}

.sp-nav-block .li02.active a.mark::after {
  rotate: 90deg;
  top: 13px;
  left: 0;
}

.header-sns .sns-icons a li:hover .fb,
.header-sns .sns-icons a li:hover .linkedin,
.header-sns .sns-icons a li:hover .youtube,
.header-sns .sns-icons a li:hover .insta {
  fill: #333;
}

.header-sns .sns-icons {
  margin-top: 10px;
}

/* mv */

#mv {
  position: relative;
  height: 100vh;
}

.mv-content {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  min-height: 535px;
}

.mv-img {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
  height: calc(100% - 1.53vw);
  object-fit: cover;
  object-position: center;
  padding: 1.53vw;
  padding-bottom: 0;
}

.mv-img video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 32%;
  z-index: 5;
}

.mv-img .sp {
  display: none;
}

@media screen and (max-width: 780px) {
  .mv-img .sp {
    display: inherit;
  }

  .mv-img .pc {
    display: none;
  }
}

.mv-copy {
  position: absolute;
  bottom: 6.5vw;
  left: 107px;
  z-index: 5;
}

.mv-copy h1 {
  font-size: 36px;
  letter-spacing: -0.3em;
  line-height: 1.4;
  color: #fff;
}

#mv h1 span {
  color: #fff;
}
.mv-copy h1 .big {
  font-size: 50px;
  color: #fff;
  letter-spacing: -0.4em;
}

.mv-copy .sub-copy {
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: 300;
  line-height: 1;
  margin-top: 35px;
  color: #fff;
  line-height: 1.2;
}

.mv-copy .sub-copy span {
  color: #fff;
}

.mv-copy br.sp,
.mv-copy span.sp {
  display: none;
}

@media screen and (max-width: 1300px) {
  .mv-copy h1 {
    font-size: 2.7vw;
  }

  .mv-copy h1 .big {
    font-size: 3.8vw;
  }
}

@media screen and (max-width: 1000px) {
  .mv-copy {
    left: 80px;
  }

  .mv-copy .sub-copy {
    line-height: 1.6;
    margin-top: 1vw;
    font-size: 16px;
  }
}

@media screen and (max-width: 980px) {
  .mv-copy br.sp,
  .mv-copy span.sp {
    display: inherit;
  }

  .mv-copy br.sp-none {
    display: none;
  }

  #mv {
    height: 100vh;
  }

  .mv-content {
    height: 100vh;
  }
  .mv-img {
    height: calc(100% - 20px);
    padding: 20px;
    padding-bottom: 0;
  }

  .mv-copy {
    left: 75px;
    bottom: 70px;
  }

  .mv-copy h1 {
    font-size: 30px;
    line-height: 1.7;
  }

  .mv-copy h1 .big {
    font-size: 43px;
  }

  .mv-copy .sub-copy {
    line-height: 2.25;
    margin-top: 25px;
    font-size: 16px;
    padding-right: 25px;
  }

  .mv-copy h1 {
    letter-spacing: -0.3em;
  }

  .mv-copy h1 .big {
    letter-spacing: -0.5em;
  }
}

@media screen and (max-width: 750px) {
  .mv-copy h1 {
    font-size: 4vw;
  }

  .mv-copy h1 .big {
    font-size: 5.7vw;
  }

  .mv-copy .sub-copy {
    margin-top: 3.3vw;
  }
}

@media screen and (max-width: 480px) {
  .mv-copy {
    bottom: 60px;
  }

  .mv-copy h1 {
    line-height: 1.5;
  }

  .mv-copy .sub-copy {
    margin-top: 15px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    font-size: 3.3vw;
  }

  .mv-copy h1 {
    font-size: 4.6vw;
  }

  .mv-copy h1 .big {
    font-size: 6.6vw;
  }
}
/* スクロールバー */

.scroll-anime {
  position: absolute;
  bottom: 3.9vw;
  left: 55px;
  z-index: 50;
}

.type {
  width: 30px;
  height: 195px;
  position: relative;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.type a {
  display: inline-block;
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 110px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: 0.2s;
  overflow: hidden;
  cursor: default;
  font-weight: 300;
  height: 195px;
}

.type a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 140px;
  background: #fff;
}

#type07 a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 140px;
  background: rgba(255, 255, 255, 0.4);
}

#type07 a::after {
  height: 30px;
  animation: sdl07 1.5s ease infinite;
}

@keyframes sdl07 {
  0% {
    transform: translateY(-115px);
  }
  50%,
  100% {
    transform: translateY(30px);
  }
}

@media screen and (max-width: 1000px) {
  .scroll-anime {
    left: 35px;
    scale: 0.9;
  }
}

@media screen and (max-width: 980px) {
  .scroll-anime {
    left: 30px;
    bottom: 70px;
  }
}

@media screen and (max-width: 480px) {
  .scroll-anime {
    left: 25px;
    bottom: 60px;
  }
}

.header-logo a {
  display: block;
  width: 100%;
}

.pc-nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 見出し */

.toppage h2 {
  font-weight: 300;
  letter-spacing: 0.11em;
  padding-left: 50px;
  position: relative;
  line-height: 1;
  font-size: 14px;
}

.toppage h2::after {
  content: "";
  height: 1px;
  width: 40px;
  background-color: rgba(102, 102, 102, 0.5);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

/* aboutus */

#aboutus {
  padding-top: 150px;
  background-image: url(img/aboutus_circle.png);
  background-size: auto calc(100% - 40px);
  background-repeat: no-repeat;
  background-position: right 40px;
  position: relative;
  z-index: 4;
}

.aboutus-content {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  position: relative;
  /* padding-bottom: 215px; */
  padding-bottom: 130px;
}

.aboutus-left {
  width: 60%;
  z-index: 5;
}

.aboutus-right {
  width: 40%;
  position: relative;
  z-index: 1;
}

/* .aboutus-right .img01{
    position:absolute;
    max-width:480px;
    width:37vw;
    top:0;
    left:0;
 } */

.aboutus-right .img02 {
  position: absolute;
  max-width: 280px;
  width: 21.5vw;
  top: 285px;
  right: -26.7%;
}

.aboutus-img.img03 {
  position: absolute;
  width: 55.4vw;
  max-width: 720px;
  left: -40vw;
  bottom: -350px;
}

.aboutus-img.img03 .sp {
  display: none;
}

@media screen and (max-width: 1300px) {
  .aboutus-right .img02 {
    top: 22vw;
  }
  .aboutus-img.img03 {
    bottom: -30vw;
  }
}

@media screen and (max-width: 780px) {
  #aboutus {
    background-position: left top;
    background-size: 100%;
    padding-top: 36vw;
  }

  .aboutus-content {
    display: block;
    padding-bottom: 150px;
  }

  .aboutus-left {
    width: 100%;
    z-index: 5;
  }

  .aboutus-right {
    width: 100%;
    height: 50vw;
    margin-top: 60px;
  }

  .aboutus-right .img01 {
    max-width: 480px;
    width: 80%;
    left: 0;
  }

  .aboutus-right .img02 {
    position: absolute;
    max-width: 580px;
    width: 50%;
    top: 36vw;
    right: 0;
  }

  .aboutus-img.img03 {
    width: 60%;
    left: 45%;
    bottom: 98%;
  }

  .aboutus-img.img03 .sp {
    display: inherit;
  }

  .aboutus-img.img03 .pc {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  #aboutus {
    background-image: url(img/aboutus_circle-sp.png);
    background-size: 100% auto;
    background-position: right -65px;
    padding-top: 45vw;
    margin-top: -20px;
  }

  .aboutus-content {
    padding-bottom: 9.27vw;
  }

  .aboutus-right .img01 {
    max-width: 480px;
    width: 70%;
    left: 0;
    transform: translateX(0%);
  }

  .aboutus-right .img02 {
    position: absolute;
    max-width: 580px;
    width: 50%;
    top: 26vw;
    right: 0;
  }
}

#aboutus h3 {
  font-size: 32px;
  line-height: 1.8;
  font-weight: 200;
  margin-top: 35px;
  letter-spacing: -0.12em;
}

#aboutus h3 br.pc-none {
  display: none;
}

/* 
#aboutus h3 span {
  display: inline-block;
  opacity: 0;
  transform: rotateX(-90deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s;
} */

/* #aboutus h3 span.show {
  opacity: 1; 
  transform: translateY(0); 
} */

@media screen and (max-width: 1100px) {
  #aboutus h3 {
    font-size: 2.9vw;
    margin-top: 2.9vw;
  }
}

@media screen and (max-width: 780px) {
  #aboutus h3 {
    font-size: 26px;
    margin-top: 28px;
  }
}

@media screen and (max-width: 600px) {
  #aboutus h3 br.pc-none {
    display: inherit;
  }

  #aboutus h3 br.tb-none {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  #aboutus h3 {
    font-size: 5vw;
    margin-top: 6.25vw;
    line-height: 1.8;
  }
}

.aboutus-txt {
  margin-top: 20px;
}

@media screen and (max-width: 480px) {
  .aboutus-txt {
    margin-top: 8.3vw;
  }
}

.aboutus-txt p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 2;
}

@media screen and (max-width: 780px) {
  .aboutus-txt p br.tb-none {
    display: none;
  }
}

#aboutus .btn01 {
  margin-top: 40px;
}

@media screen and (max-width: 480px) {
  .btn01 {
    scale: 0.95;
    transform-origin: top left;
  }

  #aboutus .btn01 {
    margin-top: 50px;
  }
}

.btn01 a {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  color: #333333;
  position: relative;
  padding: 15px 0;
  padding-left: 65px;
  height: 51px;
  display: block;
  width: fit-content;
}

.btn01 a::before {
  content: "";
  width: 50px;
  height: 50px;
  border: 1px solid #da291c;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.btn01 a::after {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 1px solid #da291c;
  border-right: 1px solid #da291c;
  position: absolute;
  left: 11px;
  top: 45%;
  transform: translateY(-50%);
  rotate: 45deg;
  transition: 0.3s;
}

.btn01 a:hover::before {
  background-color: #da291c;
}

.btn01 a:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  left: 15px;
}

.btn01 a .arrow {
  position: absolute;
  content: "";
  width: 0px;
  height: 1px;
  background-color: #da291c;
  left: 17px;
  top: 25px;
  transition: 0.3s;
}

.btn01 a:hover .arrow {
  width: 18px;
  height: 1px;
  background-color: #fff;
}

/* Technology */

.tech-content {
  display: flex;
  align-items: flex-start;
  gap: 5%;
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

.tech-left {
  width: 45%;
  margin-top: 80px;
  padding-top: 270px;
}

.tech-right {
  padding-top: 270px;
  padding-bottom: 70px;
  width: 50%;
  position: relative;
}

.tech-right::before {
  content: "";
  height: 100%;
  width: 500%;
  background-color: #edebeb;
  position: absolute;
  left: -66%;
  top: 0;
  z-index: -1;
}

@media screen and (max-width: 780px) {
  .tech-content {
    flex-direction: column-reverse;
  }

  .tech-left {
    width: 100%;
    margin-top: 0px;
    margin-left: -5.5%;
    padding-top: 0px;
  }

  .tech-right {
    padding-top: 17vw;
    width: 100%;
  }

  .tech-right::before {
    width: 100%;
    left: 5%;
  }
}

#technology h3,
#product h3,
#item-list h3,
#work h3,
#faq h3,
#showroom h3,
#news h3,
#contact h3 {
  font-size: 35px;
  font-weight: 200;
  letter-spacing: 0.06em;
  margin-top: 60px;
  line-height: 1.6;
}

#work h3,
#faq h3,
#showroom h3,
#news h3,
#contact h3 {
  margin-top: 35px;
}

#technology h3 span,
#product h3 span,
#item-list h3 span,
#work h3 span,
#faq h3 span,
#showroom h3 span,
#news h3 span,
#contact h3 span {
  display: inline-block;
  /* opacity: 0;
  transform: rotateX(-90deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s; */
  letter-spacing: 0.08em;
}

#mv h1 span {
  display: inline-block;
  /* opacity: 0;
  transform: rotateX(-90deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s; */
  letter-spacing: 0.08em;
}

.js-scroll-animation {
  opacity: 0; /* 最初は透明にしておく */
}

/* 2. is-visibleクラスが付与されたら「アニメーションを開始」 */
.js-scroll-animation.is-visible {
  animation-name: SlideIn;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
}

#technology h3 span,
#product h3 span {
  letter-spacing: -0.23em;
}

@media screen and (max-width: 480px) {
  #technology h3 span,
  #item-list h3 span,
  #work h3 span,
  #faq h3 span,
  #showroom h3 span,
  #news h3 span,
  #contact h3 span {
    letter-spacing: 0em;
  }

  #technology h3 span,
  #product h3 span {
    letter-spacing: -0.3em;
  }
}

/* #technology h3 span.show,
#product h3 span.show,
#item-list h3 span.show,
#work h3 span.show,
#faq h3 span.show,
#showroom h3 span.show,
#news h3 span.show,
#contact h3 span.show,
#mv h1 span.show {
  opacity: 1; 
  transform: translateY(0); 
} */

@media screen and (max-width: 1100px) {
  #technology h3,
  #product h3,
  #item-list h3,
  #work h3,
  #faq h3,
  #showroom h3,
  #news h3,
  #contact h3 {
    font-size: 3.1vw;
    margin-top: 5.5vw;
  }

  #work h3,
  #faq h3,
  #showroom h3,
  #news h3,
  #contact h3 {
    margin-top: 3.2vw;
  }
}

@media screen and (max-width: 780px) {
  #technology h3,
  #product h3,
  #item-list h3,
  #work h3,
  #faq h3,
  #showroom h3,
  #news h3,
  #contact h3 {
    font-size: 30px;
    margin-top: 30px;
  }

  #work h3,
  #faq h3,
  #showroom h3,
  #news h3,
  #contact h3 {
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  #technology h3,
  #product h3,
  #item-list h3,
  #work h3,
  #faq h3,
  #showroom h3,
  #news h3,
  #contact h3 {
    font-size: 25px;
  }
}

.tech-txt,
.product-txt {
  margin-top: 35px;
}

.tech-txt p,
.product-txt p,
.item-txt p {
  font-weight: 300;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
}

#technology .btn01,
#product .btn01 {
  /* margin-top: 90px; */
  margin-top: 40px;
}

#item-list .btn01.item01 {
  margin-top: 50px;
}

#item-list .btn01.item02 {
  margin-top: 20px;
}

@media screen and (max-width: 780px) {
  .tech-txt,
  .product-txt {
    margin-top: 30px;
  }

  .tech-txt p br.tb-none,
  .product-txt p br.tb-none {
    display: none;
  }

  #technology .btn01,
  #product .btn01 {
    margin-top: 70px;
  }
}

@media screen and (max-width: 480px) {
  #technology .btn01,
  #product .btn01 {
    margin-top: 50px;
  }
}

.tech-img-bottom {
  max-width: 1080px;
  width: 90%;
  height: 250px;
  margin: 0 auto;
  margin: 120px auto;
  overflow: hidden;
  position: relative;
}

.tech-img-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
.tech-bg {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(img/tech-bottom.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  position: fixed;
  z-index: -5;
}

@media screen and (max-width: 780px) {
  .tech-img-bottom {
    width: 100%;
    height: 250px;
    margin: 100px auto;
    margin-bottom: 0;
  }
}

/* product */

#product {
  position: relative;
}

#product .bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 100%;
  background-image: url(img/product.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

@media screen and (max-width: 780px) {
  #product .bg {
    position: static;
    right: 0;
    top: 0;
    width: 90%;
    margin: 0 auto;
    height: 400px;
  }
}

@media screen and (max-width: 480px) {
  #product .bg {
    height: 260px;
  }
}

.product-content {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  /* padding: 130px 0; */
  padding: 100px 0;
}

.product-left {
  width: 52%;
  padding-right: 10px;
  background-color: #fff;
}

#product .btn01.sp {
  display: none;
}

@media screen and (max-width: 780px) {
  #product .btn01.pc {
    display: none;
  }

  #product .btn01.sp {
    display: inherit;
    width: 90%;
    margin: 0 auto;
    margin-top: 40px;
  }

  #product .btn01 a {
    display: block;
    width: fit-content;
    margin-left: auto;
  }

  .product-content {
    padding: 100px 0;
    padding-bottom: 70px;
  }

  .product-left {
    width: 100%;
    padding-right: 0px;
  }
}

@media screen and (max-width: 480px) {
  .product-content {
    padding: 100px 0;
    padding-bottom: 60px;
  }
}

/* item list */

.item-list-content {
  display: flex;
  justify-content: space-between;
  margin-top: 200px;
  padding-top: 200px;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.item-slide,
.item-right {
  width: 48%;
}

.item-right {
  padding-bottom: 200px;
}

.item-txt {
  margin-top: 60px;
}

#item-list .btn01 {
  margin-top: 140px;
}

@media screen and (max-width: 780px) {
  .item-list-content {
    display: block;
    margin-top: 100px;
    padding-top: 100px;
  }

  .item-slide {
    width: 100%;
  }

  .item-right {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 100px;
  }

  .item-right {
    padding-bottom: 100px;
  }

  .item-txt {
    margin-top: 30px;
  }

  .item-txt p br.tb-none {
    display: none;
  }

  #item-list .btn01 {
    margin-top: 70px;
  }
}

@media screen and (max-width: 480px) {
  .item-list-content {
    margin-top: 0px;
  }

  .item-right {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 100px;
  }

  #item-list .btn01 {
    margin-top: 50px;
  }
}

/* item-slide */

@media screen and (min-width: 1300px) {
  .item-slide {
    padding-right: 6%;
  }
}
/* slider */

.item-slider .a-slide {
  width: 39vw;
  max-width: 510px;
  height: 40.7vw;
  max-height: 530px;
  margin-left: 2.3vw;
}

.item-slider .a-slide:nth-child(1) {
  margin-left: 0;
}

.item-slider .a-slide img {
  width: 100%;
  height: auto;
}

.arrow_box {
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
  margin-left: 16%;
  margin-top: 45px;
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 40px;
  height: 40px;
  background: #333333;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.prev-arrow:hover,
.next-arrow:hover {
  background: #da291c;
}

.next-arrow {
  transform: rotate(180deg);
}

.prev-arrow::before,
.next-arrow::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 16px solid #fff;
  border-left: 0;
  position: absolute;
  content: "";
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 780px) {
  .item-slider .a-slide {
    width: 64vw;
    max-width: 800px;
    height: 81vw;
    max-height: 1060px;
    margin-left: 20px;
  }

  .arrow_box {
    width: fit-content;
    gap: 15px;
    margin-left: calc(100% - 125px);
    margin-top: 35px;
  }
}

.slick-list {
  padding: 0 !important;
  padding-left: 6.76vw !important;
}

@media screen and (max-width: 780px) {
  .item-slider .a-slide:nth-child(1) {
    margin-left: 0;
  }

  .slick-list {
    padding-left: 0px !important;
  }
}

@media screen and (min-width: 1300px) {
  .item-slider .a-slide {
    margin-left: 30px;
  }
}

.item-bg {
  width: 80%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.5s ease; /* 不透明度のトランジション */
  opacity: 0;
}

@media screen and (max-width: 780px) {
  .item-bg {
    width: 100%;
    height: 75%;
    top: 25%;
    right: 0;
    z-index: -5;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.5s ease; /* 不透明度のトランジション */
    opacity: 0;
  }
}

.item-bg.visible {
  opacity: 0.15; /* visibleクラスが付与されたときの不透明度 */
  z-index: -1;
}

.item-bg.new {
  opacity: 0.15; /* visibleクラスが付与されたときの不透明度 */
  z-index: -5;
}

.item-bg.new.visible {
  opacity: 0.15; /* visibleクラスが付与されたときの不透明度 */
  z-index: -1;
}

/* work */

#work {
  padding-top: 200px;
  padding-bottom: 100px;
}

.work-head {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

.work-wrap {
  display: flex;
  gap: 0;
  margin-top: 35px;
}

#work .a-work {
  width: 33.4%;
  height: 33vw;
  overflow: hidden;
  position: relative;
  display: block;
}

#work .a-work::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
  transition: 0.5s;
}

#work .a-work-img {
  width: 100%;
  height: 100%;
}

#work .a-work .a-work-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.5s;
  object-position: center;
}

#work .a-work-ex {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 95%;
  opacity: 0;
  transition: 0.5s;
}

#work .a-work-ex .a-work-title {
  text-align: center;
  font-weight: 200;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.08em;
}

#work .a-work-ex .a-work-txt {
  font-size: 16px;
  color: #fff;
  line-height: 2;
  width: 55%;
  margin: 0 auto;
  margin-top: 20px;
  max-width: 225px;
  text-align: left;
}

#work .a-work:hover.a-work::after,
#work .a-work:hover .a-work-ex {
  opacity: 1;
}

#work .a-work:hover .a-work-img {
  filter: blur(3px);
}

#work .btn01 {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  margin-top: 70px;
}

#work .btn01 a {
  width: fit-content;
  display: block;
  margin-left: auto;
}

@media screen and (max-width: 780px) {
  #work {
    padding-top: 100px;
  }

  .work-wrap {
    display: block;
    margin-top: 35px;
  }

  #work .a-work {
    width: 100vw;
    height: 100vw;
  }

  #work .a-work .a-work-img {
    filter: blur(3px);
  }

  #work .a-work::after {
    opacity: 1;
  }

  #work .a-work-ex {
    width: 100%;
    opacity: 1;
    text-align: center;
  }

  #work .a-work-ex .a-work-title {
    font-size: 24px;
  }

  #work .a-work:hover.a-work::after,
  #work .a-work:hover .a-work-ex {
    opacity: 1;
  }

  #work .btn01 {
    margin-top: 50px;
  }
}

@media screen and (max-width: 480px) {
  .work-wrap {
    margin-top: 25px;
  }

  #work .a-work-ex .a-work-txt {
    width: 50%;
  }
}

/* faq */

#faq {
  background-color: #edebeb;
}

.faq-content {
  width: 84%;
  margin-left: auto;
  background-color: #fff;
  padding-left: 19vw;
  padding-right: 7.7vw;
  padding-top: 108px;
  padding-bottom: 170px;
}

.faq-wrap {
  margin-top: 10px;
}

.a-faq {
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.faq-question {
  cursor: pointer;
  position: relative;
  font-size: 16px;
  z-index: 2;
  padding-right: 50px;
}

.faq-question::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid rgba(218, 41, 28, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 0.3s ease; /* アニメーションを追加 */
}

.faq-question::before {
  content: "";
  width: 5px;
  height: 5px;
  border-left: 1px solid rgba(218, 41, 28, 0.5);
  border-bottom: 1px solid rgba(218, 41, 28, 0.5);
  position: absolute;
  top: 7px;
  right: 8px;
  transform: rotate(-45deg);
  transition: transform 0.3s ease; /* アニメーションを追加 */
}

.faq-question.active::before {
  transform: rotate(135deg); /* 矢印の回転 */
  top: 9px;
}

.faq-answer {
  padding: 0; /* 初めはパディングを0に設定 */
  height: 0; /* 高さを0に設定 */
  overflow: hidden; /* はみ出し防止 */
  transition: 0.3s; /* アニメーション設定 */
  position: relative;
  font-size: 16px;
  font-weight: 300;
  margin-top: 0px;
  z-index: 1;
}

.faq-answer.active {
  padding-left: 0;
  margin-top: 30px;
  overflow: visible;
}

.faq-question p,
.faq-answer p {
  position: relative;
  padding-left: 40px;
  display: block;
  height: auto;
  line-height: 1.7;
}

.faq-question p::before,
.faq-answer p::before {
  content: "";
  width: 27px;
  height: 27px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.faq-question p::before {
  background-image: url(img/faq-q.png);
}

.faq-answer p::before {
  background-image: url(img/faq-a.png);
}

#faq .btn01 {
  width: fit-content;
  margin-left: auto;
  margin-top: 50px;
}

@media screen and (max-width: 780px) {
  #faq {
    background: repeating-linear-gradient(
      90deg,
      #edebeb 0px,
      #edebeb 20%,
      #ffff 20%,
      #ffffff 100%
    );
  }

  .faq-content {
    width: 90%;
    margin: 0 auto;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .a-faq {
    padding: 20px 0;
  }

  .faq-answer.active {
    margin-top: 20px;
  }
}
/* ショールーム */

#showroom {
  background-color: #edebeb;
  padding-top: 100px;
  padding-bottom: 115px;
}

.showroom-content {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

.showroom-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

#showroom .a-showroom {
  width: 48%;
}

#showroom .a-showroom-map iframe {
  width: 100%;
  height: 390px;
}

.a-showroom-ex {
  margin-top: 30px;
}

.a-showroom-title {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.a-showroom .a-row {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

.a-showroom .a-row dt {
  width: 100px;
}

.a-showroom .a-row dd {
  width: calc(100% - 100px);
}

.showroom-btn-wrap {
  margin-top: 35px;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

.a-showroom .btn01 {
  width: fit-content;
}

@media screen and (max-width: 780px) {
  #showroom {
    padding-bottom: 100px;
  }

  .showroom-wrap {
    display: block;
    margin-top: 25px;
  }

  #showroom .a-showroom {
    width: 100%;
  }

  #showroom .a-showroom + .a-showroom {
    margin-top: 35px;
  }

  #showroom .a-showroom-map iframe {
    width: 100%;
    height: 56vw;
  }

  .a-showroom-ex {
    margin-top: 30px;
  }

  .a-showroom-title {
    font-size: 20px;
    padding-bottom: 15px;
  }

  .a-showroom .a-row {
    padding: 15px 0;
  }

  .a-showroom .a-row dt {
    width: 80px;
  }

  .a-showroom .a-row dd {
    width: calc(100% - 80px);
  }
}

@media screen and (max-width: 480px) {
  .showroom-btn-wrap {
    margin-top: 25px;
    gap: 10px;
  }
}
/* news */

#news {
  padding: 150px 0;
}

.news-content {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.news-head {
  width: 15%;
  min-width: 160px;
}

.news-wrap {
  width: 70%;
}

.a-news {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 25px;
}

.a-news + .a-news {
  padding: 25px 0;
}
.a-news-head {
  display: flex;
  align-items: center;
  gap: 25px;
}

.a-news-date {
  font-size: 16px;
  font-weight: 300;
}

.a-news-cat {
  display: block;
  font-size: 16px;
  letter-spacing: 0.04em;
  background-color: #da291c;
  color: #fff;
  line-height: 1;
  padding: 7px 7px;
  text-align: center;
  width: fit-content;
  white-space: nowrap;
}

.a-news-title {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.8;
  transition: 0.3s;
  position: relative;
  width: 100%;
  padding-right: 30px;
}

.a-news-title p {
  display: block;
  width: 100%;
  color: #333333;
  transition: 0.3s;
}

.a-news:hover .a-news-title p {
  color: #da291c;
}

.a-news-title::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid rgba(218, 41, 28, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 4px;
  right: 0;
  transition: 0.3s;
  z-index: 4;
}

.a-news-title::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid rgba(218, 41, 28, 0.5);
  border-bottom: 1px solid rgba(218, 41, 28, 0.5);
  position: absolute;
  rotate: -45deg;
  right: 9px;
  top: 12px;
  transition: 0.3s;
  z-index: 5;
}

.a-news:hover .a-news-title::after {
  background-color: #da291c;
}

.a-news:hover .a-news-title::before {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

#news .btn01 {
  width: fit-content;
  margin-left: auto;
  margin-top: 45px;
}

@media screen and (max-width: 780px) {
  #news {
    padding: 100px 0;
  }

  .news-content {
    display: block;
  }

  .news-head {
    width: 100%;
    min-width: 1000px;
  }

  .news-wrap {
    width: 100%;
    margin-top: 35px;
  }

  .a-news {
    display: block;
    padding-bottom: 15px;
  }

  .a-news + .a-news {
    padding: 15px 0;
  }
  .a-news-head {
    padding-bottom: 15px;
    gap: 15px;
  }
}

/* contact */

#contact {
  position: relative;
}

.contact-img-sp {
  display: none;
}

.contact-right {
  padding: 80px 7.7vw;
  width: 51%;
  margin-left: auto;
  background-color: rgba(300, 300, 300, 0.9);
  min-width: 590px;
}

.contact-txt {
  margin-top: 20px;
}

.contact-txt p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 2;
}

@media screen and (max-width: 480px) {
  .contact-txt p br.sp-none {
    display: none;
  }
}

.contact-btn {
  background-color: #da291c;
  box-sizing: border-box;
  border: 1px solid #da291c;
  color: #fff;
  font-size: 15px;
  padding: 17px 20px;
  display: block;
  width: fit-content;
  transition: 0.3s;
  margin-top: 60px;
}

.contact-btn:hover {
  color: #da291c;
  background-color: #fff;
}

#mail-icon02 {
  width: 18px;
  height: auto;
}

.cls-2 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 0.5px;
  transition: 0.3s;
}

#mail-icon02 {
  margin-right: 10px;
}

.contact-btn:hover #mail-icon02 .cls-2 {
  stroke: #da291c;
}

@media screen and (max-width: 780px) {
  #contact {
    background-image: none;
  }

  .contact-img-sp {
    display: inherit;
  }

  .contact-right {
    padding: 0;
    width: 90%;
    margin: 0 auto;
    background-color: transparent;
    min-width: 0px;
    padding: 100px 0;
  }

  .contact-btn {
    margin-top: 50px;
  }
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.mw_wp_form_confirm .form-row,
.mw_wp_form_confirm .radio-options {
  font-size: 18px;
  font-weight: 300;
}

.mw_wp_form_confirm .form-row.al-top label {
  white-space: nowrap;
  padding-top: 0;
  padding-right: 10px;
}

.mw_wp_form_confirm .form-row br,
.mw_wp_form_confirm .pp-check {
  display: none;
}

@media screen and (max-width: 480px) {
  .mw_wp_form_confirm .form-row label {
    margin-bottom: 5px;
  }
}

#contact-thanks {
  padding: 150px 0;
}

#contact-thanks .thanks-content {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

#contact-thanks h2 {
  font-size: 37px;
  font-weight: 200;
  letter-spacing: 0.08em;
  text-align: center;
}

#contact-thanks .thanks-txt {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.9;
  text-align: center;
  margin-top: 90px;
}

/* footer */
footer {
  background-color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}

.footer-content {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 25px;
}

.footer-flex {
  display: flex;
}

.footer-nav {
  display: flex;
  /* flex-wrap: wrap; */
  width: 72%;
  gap: 25px;
  border-right: 1px solid rgba(300, 300, 300, 0.5);
  justify-content: flex-start;
}

.footer-nav h4 {
  font-size: 15px;
  color: #da9d99;
  letter-spacing: 0.2em;
}

.footer-nav ul li a {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.2em;
  transition: 0.3s;
}

.footer-nav ul li a:hover {
  color: #da291c;
}

.footer-nav ul li.li02 a,
.footer-nav ul li.li03 a {
  font-weight: 300;
}

.footer-nav ul {
  margin-left: 20px;
}

.footer-nav li {
  margin-top: 15px;
  width: fit-content;
}

.footer-nav ul.list01 {
  list-style-position: inside;
  list-style-type: "・ ";
  font-size: 15px;
  margin-top: 30px;
}

.footer-nav ul.list03 {
  list-style-position: inside;
  list-style-type: "- ";
  font-size: 15px;
}

.footer-nav ul.list01 li::marker,
.footer-nav ul.list03 li::marker {
  color: #fff; /* お好みの色を指定 */
}

.footer-nav-right {
  margin-left: 80px;
}

.footer-nav-right-item + .footer-nav-right-item {
  margin-top: 40px;
}

.footer-right {
  padding-left: 4.6vw;
}

.footer-logo {
  width: 200px;
}

.footer-logo.logo-second {
  margin-top: 60px;
}

.footer-logo.logo-third {
  margin: 60px auto;
  width: 120px;
}

.sns-icons {
  display: flex;
  width: fit-content;
  gap: 20px;
  margin-top: 50px;
  align-items: center;
}

.sns-icons li a img {
  width: 38px;
}

.sns-icons li a {
  transition: 0.3s;
}

#fb {
  height: 35px;
  width: auto;
}

#linkedin,
#insta {
  height: 30px;
  width: auto;
}

#youtube {
  height: 26px;
  width: auto;
}

.fb,
.linkedin,
.insta,
.youtube {
  fill: #fff;
  transition: 0.3s;
}

.sns .sns-icons li a:hover .fb,
.sns .sns-icons li a:hover .linkedin,
.sns .sns-icons li a:hover .youtube,
.sns .sns-icons li a:hover .insta {
  fill: #da291c;
}

.copyright p {
  color: #fff;
  display: block;
  width: fit-content;
  margin-left: auto;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.02em;
}

.copyright {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 15px;
}

@media screen and (max-width: 1060px) {
  .footer-nav-right {
    margin-left: 0;
  }
}

@media screen and (max-width: 780px) {
  .footer-content {
    padding: 50px 0;
  }

  .footer-flex {
    display: block;
  }

  .footer-nav {
    display: none;
  }

  .footer-right {
    padding-left: 0;
    width: fit-content;
    margin: 0 auto;
  }

  .footer-content .sns-icons {
    margin: 0 auto;
    margin-top: 50px;
  }

  .copyright p {
    margin: 0 auto;
  }
}

/* pagenavi */

.wp-pagenavi {
  width: fit-content;
  margin: 50px auto 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.wp-pagenavi span,
.wp-pagenavi a {
  font-size: 24px;
  font-weight: 300;
  display: block;
}

.wp-pagenavi span.current {
  width: 40px;
  height: 40px;
  border: 1px solid #da291c;
  border-radius: 50%;
  color: #da291c;
  text-align: center;
  padding-top: 3px;
}

.wp-pagenavi .pages {
  display: none;
}

.news-page-nav {
  display: flex;
  gap: 30px;
  width: fit-content;
  margin: 0 auto;
  margin-top: 50px;
}

.news-page-nav .prev-post a,
.news-page-nav .next-post a {
  padding: 0 20px;
}

.news-page-nav .prev-post a,
.news-page-nav .navitop a,
.news-page-nav .next-post a {
  font-size: 18px;
  font-weight: 300;
  padding-bottom: 10px;
  display: block;
  border-bottom: 1px solid #cccccc;
  white-space: nowrap;
}

@media screen and (max-width: 780px) {
  .news-page-nav {
    gap: 20px;
    margin-top: 40px;
  }

  .news-page-nav .prev-post a,
  .news-page-nav .next-post a {
    padding: 0 15px;
  }

  .news-page-nav .prev-post a,
  .news-page-nav .navitop a,
  .news-page-nav .next-post a {
    font-size: 16px;
    padding-bottom: 7px;
  }
}

@media screen and (max-width: 480px) {
  .news-page-nav {
    gap: 15px;
    margin-top: 30px;
  }

  .news-page-nav .prev-post a,
  .news-page-nav .next-post a {
    padding: 0 10px;
  }

  .news-page-nav .prev-post a,
  .news-page-nav .navitop a,
  .news-page-nav .next-post a {
    font-size: 15px;
    padding-bottom: 5px;
  }
}

/* パンくず */

.brunch {
  width: 92%;
  margin-left: auto;
  padding: 10px 0;
}

.brunch span,
.brunch p {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  display: inline-block;
}

@media screen and (max-width: 480px) {
  .brunch span,
  .brunch p {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.1em;
    display: inline-block;
  }
}

main.contact,
main.contact-confirm,
main.product,
main.single-product {
  background-color: #edebeb;
}

.no-scroll {
  height: 100vh;
  overflow: hidden;
}
