@charset "UTF-8";
/* ------------------------------------
ドキドキするボタン
  ------------------------------------*/
.doki {
  animation-name: dokidoki !important;
  animation-delay: 0s !important;
  animation-duration: 2s !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  display: block !important;
  text-decoration: none !important;
  text-align: center !important;
}

@keyframes dokidoki {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
/***********************************************
ボタンがキラッと光る
************************************************/
/* ------------------------------------
ボタンの基本スタイル
------------------------------------*/
/* ボタン自体のスタイル */
.shine-button {
  /* ボタンを光らせるために必要 */
  position: relative;
  /* ボタンの位置を基準にするため relative指定 */
  overflow: hidden;
  /* ボタンの外の領域は非表示 */
}

/* ------------------------------------
  ボタンの外側にボックス作成
  （疑似要素「before」を使う）
  ------------------------------------*/
.shine-button::before {
  content: "";
  /* 文字は表示しないので中身無しを指定 */
  position: absolute;
  /* ボタンの位置を基準に絶対値指定する */
  display: block;
  /* 形式はblock */
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  /* 背景色は透明から白になるグラデーション */
  width: 50px;
  /* 横幅 */
  height: 50px;
  /* 縦幅 */
  top: -60px;
  /* ボタン左上を基準に上へ60pxの位置 */
  left: -60px;
  /* ボタン左上を基準に左へ60pxの位置 */
  /* アニメーションの動作指定 */
  animation-name: shine-run;
  /* アニメーション名の指定 */
  animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in;
  /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
  /* アニメーションの無限繰り返しの指定 */
}

/* ------------------------------------
  アニメーションのタイミングとボックスの
  拡大率、角度、透過率の指定
  ------------------------------------*/
@keyframes shine-run {
  0% {
    transform: scale(0) rotate(50deg);
    /* アニメ開始時は大きさ0、50度の傾き */
    opacity: 0;
    /* アニメ開始時は全透過 */
  }
  40% {
    transform: scale(1) rotate(50deg);
    /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
    opacity: 1;
    /* 透過しない（しっかり表示される）ように1を設定 */
  }
  100% {
    transform: scale(250) rotate(50deg);
    /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
    opacity: 0;
    /* 全透過になるようにして、徐々に消えるような変化を付ける */
  }
}
body {
  font-family: "Shippori Mincho", serif;
  overflow-x: hidden;
  /* 横スクロールを防止 */
}

header {
  z-index: 999;
}

.sp {
  display: none !important;
}
@media (max-width: 992px) {
  .sp {
    display: block !important;
  }
}

.pc {
  display: block;
}
@media (max-width: 992px) {
  .pc {
    display: none !important;
  }
}

.inner {
  width: 98%;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-container {
  position: relative;
  width: 100%;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-container .background-section {
  width: 90%;
  margin: 0 auto;
  z-index: 1;
  background-image: url("../img/contact-up-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-container .background-section.--cta {
  background-image: url("../img/cta-bg.jpg");
}
.cta-container .main-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 0 auto;
}
.cta-container .main-content .main-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 45.79px;
  line-height: 1.448;
  color: #ffffff;
  text-align: center;
  text-shadow: 0px 0px 6px rgb(0, 0, 0);
  margin-bottom: 20px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cta-container .main-content .main-title {
    white-space: normal;
    /* SP版では改行を許可 */
  }
}
.cta-container .main-content .decorative-line {
  width: 762.15px;
  height: 1.96px;
  background: #ffffff;
  margin-bottom: 40px;
}
.cta-container .main-content .action-buttons {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  width: 100%;
  justify-content: center;
}
.cta-container .main-content .action-buttons .button-container {
  position: relative;
}
.cta-container .main-content .action-buttons .button-container .cta-button {
  width: 330px;
  /* コンテナの8割サイズに調整 */
  border-radius: 44px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.cta-container .main-content .action-buttons .button-container .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.cta-container .main-content .action-buttons .button-container .cta-button:active {
  transform: translateY(0);
}
.cta-container .main-content .action-buttons .button-container .cta-button .button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  padding: 0 32px;
}
.cta-container .main-content .action-buttons .button-container .cta-button .button-content .button-text {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  /* ボタンサイズに合わせて調整 */
  line-height: 1.448;
  color: #ffffff;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cta-container .main-content .action-buttons .button-container .cta-button .button-content .button-text {
    white-space: normal;
    /* SP版では改行を許可 */
  }
}
.cta-container .main-content .action-buttons .button-container .cta-button .button-content .email-icon,
.cta-container .main-content .action-buttons .button-container .cta-button .button-content .phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .cta-container .main-content .action-buttons .button-container.demo-button .cta-button {
    font-size: 18px;
  }
}
.cta-container .main-content .action-buttons .phone-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-container .main-content .action-buttons .phone-section .phone-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.448;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cta-container .main-content .action-buttons .phone-section .phone-title {
    white-space: normal;
    /* SP版では改行を許可 */
  }
}
.cta-container .main-content .action-buttons .phone-section .phone-button-container .cta-button.phone-button .phone-number {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 44.74px;
  line-height: 1.448;
  color: #ffffff;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cta-container .main-content .action-buttons .phone-section .phone-button-container .cta-button.phone-button .phone-number {
    white-space: normal;
    /* SP版では改行を許可 */
  }
}
@media (max-width: 480px) {
  .cta-container .main-content .action-buttons .phone-section .phone-button-container .cta-button.phone-button .phone-number {
    font-size: 28px;
  }
}
.cta-container .main-content .action-buttons .phone-section .phone-hours {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.448;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cta-container .main-content .action-buttons .phone-section .phone-hours {
    white-space: normal;
    /* SP版では改行を許可 */
  }
}
.cta-container .main-content .action-buttons .phone-section .tra {
  color: transparent;
}

@media (max-width: 1024px) {
  .cta-container .main-content {
    width: 90%;
    max-width: 800px;
  }
  .cta-container .main-content .action-buttons {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .cta-container .main-content .action-buttons .button-container .cta-button {
    width: 280px;
    /* コンテナの8割サイズに調整 */
  }
  .cta-container .main-content .main-title {
    font-size: 36px;
  }
  .cta-container .main-content .button-text {
    font-size: 20px;
    /* ボタンサイズに合わせて調整 */
  }
  .cta-container .main-content .phone-number {
    font-size: 12px;
  }
  .cta-container .main-content .phone-title {
    font-size: 24px;
  }
  .cta-container .main-content .phone-hours {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .cta-container .main-content {
    width: 95%;
    padding: 10px;
  }
  .cta-container .main-content .action-buttons .button-container .cta-button {
    width: 240px;
    /* コンテナの8割サイズに調整 */
  }
  .cta-container .main-content .main-title {
    font-size: 28px;
    white-space: normal;
    text-align: center;
  }
  .cta-container .main-content .button-text {
    font-size: 16px;
    /* ボタンサイズに合わせて調整 */
  }
  .cta-container .main-content .phone-number {
    font-size: 28px;
  }
  .cta-container .main-content .phone-title {
    font-size: 20px;
  }
  .cta-container .main-content .phone-hours {
    font-size: 18px;
  }
  .cta-container .main-content .decorative-line {
    width: 100%;
    max-width: 400px;
  }
  .cta-container .main-content .action-buttons .button-container .cta-button .button-content {
    gap: 5px;
  }
}
@media (max-width: 480px) {
  .cta-container .main-content .action-buttons .button-container .cta-button {
    width: 220px;
    /* コンテナの8割サイズに調整 */
  }
  .cta-container .main-content .action-buttons .button-container .cta-button .button-text {
    font-size: 12px;
    /* ボタンサイズに合わせて調整 */
  }
  .cta-container .main-content .main-title {
    font-size: 18px;
  }
  .cta-container .main-content .phone-number {
    font-size: 12px;
  }
  .cta-container .main-content .phone-title {
    font-size: 18px;
  }
  .cta-container .main-content .phone-hours {
    font-size: 16px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.text-center {
  text-align: center;
}

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

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.worry .container {
  background-color: #393939;
  margin: 0 auto;
}

.img-coffee {
  position: absolute;
  right: 15%;
  top: -6px;
  width: 18vw;
}
.img-coffee img {
  width: 100%;
  height: 100%;
}
@media (max-width: 996px) {
  .img-coffee {
    position: relative;
    margin: 0 auto;
    width: 80%;
    max-width: 400px;
    right: 0;
    top: 0;
    margin-top: 30px;
  }
  .img-coffee img {
    object-fit: cover;
    object-position: 10px;
    height: 200px;
    width: 320px;
  }
}

.five-bg {
  background-image: url("../img/five-bg-top.jpg");
}
.five-bg img {
  width: 400px;
  margin: 0 auto;
}

.mv-bgimg {
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.voice-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  min-height: 100vh;
  padding: 5rem 0;
}
.voice-section .voice-title {
  font-size: 13.125rem;
  font-weight: 700;
  color: #f1f1f1;
  text-align: center;
  line-height: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.05em;
  position: absolute;
  left: 50%;
  top: 15rem;
  transform: translateX(-50%);
  z-index: 1;
}
.voice-section .voice-container {
  position: relative;
  z-index: 10;
  max-width: 66rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.voice-section .voice-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.voice-section .voice-header .voice-header-title {
  font-size: 2.25rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.2;
  display: inline-block;
  position: relative;
}
.voice-section .voice-header .voice-header-title .title-large {
  font-size: 2.8125rem;
}
.voice-section .voice-header .voice-header-title .title-medium {
  font-size: 2.1875rem;
}
.voice-section .voice-header .voice-header-title .title-small {
  font-size: 1.75rem;
}
.voice-section .voice-content-box {
  position: relative;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 3rem;
  backdrop-filter: blur(10px);
}
.voice-section .voice-content-box::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  border: 2px solid #d4af37;
  border-radius: inherit;
  pointer-events: none;
}
.voice-section .voice-content-box .voice-content {
  position: relative;
  z-index: 10;
}
.voice-section .voice-content-box .voice-content .voice-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333333;
  text-align: center;
  margin-bottom: 1.5rem;
}
.voice-section .voice-content-box .voice-content .voice-text:last-child {
  margin-bottom: 0;
}
.voice-section .voice-content-box .voice-content .voice-text:hover {
  color: #d4af37;
  transition: color 0.3s ease;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.loading {
  opacity: 0;
  transform: translateY(20px);
}

.loaded {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.voice-content-box:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .voice-section .voice-title {
    font-size: 10rem;
  }
}
@media (max-width: 768px) {
  .voice-section .voice-title {
    font-size: 8rem;
  }
  .voice-section .voice-content-box {
    padding: 1.5rem;
  }
  .voice-section .voice-header .decorative-left,
  .voice-section .voice-header .decorative-right {
    display: none;
  }
}
@media (max-width: 640px) {
  .voice-section .voice-title {
    font-size: 6rem;
  }
  .voice-section .voice-content-box {
    padding: 1rem;
  }
  .voice-section .voice-content .voice-text {
    font-size: 1.125rem;
  }
}
.decorative-svg {
  transition: transform 0.3s ease;
}
.decorative-svg:hover {
  transform: scale(1.1);
}

.dotted-line {
  position: relative;
  margin-bottom: 3rem;
}
.dotted-line::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 2px;
  background: radial-gradient(circle, #DDB95F 2px, transparent 2px);
  background-size: 5px 2px;
  background-repeat: repeat-x;
  box-shadow: 0 2px 8px rgba(221, 185, 95, 0.2);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.title-left-rotate {
  rotate: -55deg;
}

body {
  font-family: "Noto Serif JP", serif;
}

.inner {
  width: 98%;
  max-width: 1200px;
  margin: 0 auto;
}

.bg-why {
  background-image: url("../img/bg-why.jpg");
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.ttl-about {
  font-size: 25px;
  line-height: normal;
}
.ttl-about strong {
  font-size: 150%;
  font-weight: normal;
}
@media (max-width: 768px) {
  .ttl-about {
    font-size: 18px;
  }
}

.txt-about {
  line-height: 43px;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .txt-about {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.five {
  text-align: center;
  text-shadow: 0 0 54.165px rgba(0, 0, 0, 0.65);
  font-family: "Shippori Mincho";
  font-size: 145.143px;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 70px;
  line-height: normal;
  background: linear-gradient(89deg, #E4C66A 3.81%, #B18411 21.36%, #D4A72E 35.76%, #F4E5A7 50.16%, #D4A72E 65.01%, #B18411 82.11%, #E4C66A 97.4%);
  background: linear-gradient(89deg, #E4C66A 3.81%, #B18411 21.36%, #D4A72E 35.76%, #F4E5A7 50.16%, #D4A72E 65.01%, #B18411 82.11%, #E4C66A 97.4%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg5 {
  background-color: #000;
}

body {
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-section .hero-bg {
  position: absolute;
  inset: 0;
}
.hero-section .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .hero-bg .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 5%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 100%);
}
.hero-section .hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 1rem;
}
.hero-section .hero-content h1 {
  font-size: 6rem;
  font-weight: 700;
  color: #F1F1F1;
  margin-bottom: 2rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 3rem;
  }
}
.hero-section .hero-content h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .hero-section .hero-content h2 {
    font-size: 1.5rem;
  }
}
.hero-section .hero-content h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 2rem;
  text-shadow: 0px 0px 5.5px rgba(0, 0, 0, 0.65);
}
@media (max-width: 768px) {
  .hero-section .hero-content h3 {
    font-size: 1.25rem;
  }
}
.hero-section .hero-content p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2rem;
  text-shadow: 0px 0px 5.5px rgba(0, 0, 0, 0.65);
}
@media (max-width: 768px) {
  .hero-section .hero-content p {
    font-size: 1rem;
  }
}

.golden-number {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.golden-number .number-text {
  text-align: right;
  margin-right: 1rem;
}
.golden-number .number-text p {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0px 0px 5.5px rgba(0, 0, 0, 0.65);
}
@media (max-width: 768px) {
  .golden-number .number-text p {
    font-size: 1.25rem;
  }
}
.golden-number .number {
  font-size: 8rem;
  font-weight: 800;
  background: linear-gradient(61deg, #E4C66A 4%, #B18411 21%, #D4A72E 36%, #F4E5A7 50%, #D4A72E 65%, #B18411 83%, #E4C66A 98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0px 0px 5.5px rgba(0, 0, 0, 0.65);
}
@media (max-width: 768px) {
  .golden-number .number {
    font-size: 4rem;
  }
}
.golden-number .reason-text {
  font-size: 2rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-left: 1rem;
  text-shadow: 0px 0px 5.5px rgba(0, 0, 0, 0.65);
}
@media (max-width: 768px) {
  .golden-number .reason-text {
    font-size: 1.25rem;
  }
}

.description-section {
  padding: 4rem 1rem;
  background: #FFFFFF;
}
.description-section .description-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}
.description-section .description-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #000000;
}
@media (max-width: 768px) {
  .description-section .description-content p {
    font-size: 1rem;
  }
}

.decorative-line {
  width: 100%;
  height: 0.5rem;
  background: linear-gradient(61deg, #E4C66A 4%, #B18411 21%, #D4A72E 36%, #F4E5A7 50%, #D4A72E 65%, #B18411 83%, #E4C66A 98%);
}

.reasons-section {
  padding: 4rem 1rem;
  background: #FFFFFF;
}
.reasons-section .reasons-container {
  max-width: 80rem;
  margin: 0 auto;
}
.reasons-section .reason-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .reasons-section .reason-item {
    flex-direction: row;
  }
  .reasons-section .reason-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.reasons-section .reason-item .reason-content {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .reasons-section .reason-item .reason-content {
    width: 50%;
    padding-right: 2rem;
  }
  .reasons-section .reason-item .reason-content:nth-child(even) .reasons-section .reason-item .reason-content {
    padding-right: 0;
    padding-left: 2rem;
  }
}
.reasons-section .reason-item .reason-content .reason-number {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.reasons-section .reason-item .reason-content .reason-number .number-label {
  text-align: right;
  margin-right: 1rem;
}
.reasons-section .reason-item .reason-content .reason-number .number-label span {
  font-size: 1.25rem;
  font-weight: 500;
  color: #D4A72E;
}
.reasons-section .reason-item .reason-content .reason-number .number {
  font-size: 2.5rem;
  font-weight: 500;
  color: #D4A72E;
}
.reasons-section .reason-item .reason-content .reason-number.right-aligned {
  justify-content: flex-end;
}
.reasons-section .reason-item .reason-content .reason-number.right-aligned .number-label {
  text-align: right;
  margin-right: 0;
  margin-left: 1rem;
}
.reasons-section .reason-item .reason-content h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .reasons-section .reason-item .reason-content h3 {
    font-size: 1.5rem;
  }
}
.reasons-section .reason-item .reason-content h3.right-aligned {
  text-align: right;
}
.reasons-section .reason-item .reason-content .divider {
  width: 100%;
  height: 0.25rem;
  background: #000000;
  margin-bottom: 1.5rem;
}
.reasons-section .reason-item .reason-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #000000;
}
@media (max-width: 768px) {
  .reasons-section .reason-item .reason-content p {
    font-size: 1rem;
  }
}
.reasons-section .reason-item .reason-content p.right-aligned {
  text-align: right;
}
.reasons-section .reason-item .reason-content .decorative-line {
  margin-top: 1.5rem;
}
.reasons-section .reason-item .reason-content .decorative-line svg {
  width: 6rem;
  height: 14rem;
  color: #D4A72E;
}
.reasons-section .reason-item .reason-content .decorative-line.right-aligned {
  display: flex;
  justify-content: flex-end;
}
.reasons-section .reason-item .reason-image {
  width: 100%;
}
@media (min-width: 1024px) {
  .reasons-section .reason-item .reason-image {
    width: 50%;
  }
}
.reasons-section .reason-item .reason-image .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.65);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reasons-section .reason-item .reason-image .image-container:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.reasons-section .reason-item .reason-image .image-container img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reason-card {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}
.reason-card.animate {
  opacity: 1;
  transform: translateY(0);
}

button:focus,
a:focus {
  outline: 2px solid #D4A72E;
  outline-offset: 2px;
}

/* SP用の画像スタイル */
@media (max-width: 768px) {
  .sp-image-container {
    height: 50vw;
  }
  .sp-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media print {
  .hero-section {
    background: #FFFFFF !important;
    color: #000000 !important;
  }
  .hero-section h1,
  .hero-section h2,
  .hero-section h3,
  .hero-section p {
    color: #000000 !important;
    text-shadow: none !important;
  }
}
/* レスポンシブデザイン用のユーティリティクラス */
.pc-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* タブレットサイズ（768px以下）でモバイル表示に切り替え */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
/* モバイルセクションのスタイル */
.mobile-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* 通知システム */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 400px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-text {
  flex: 1;
  margin-right: 12px;
  color: #333;
  font-size: 14px;
}

.notification-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-close:hover {
  color: #333;
}

/* ボタンのホバー効果 */
button {
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* スクロールアニメーション用 */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* アクセシビリティ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* フォーカス表示 */
button:focus,
a:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
  .bg-gray-50 {
    background-color: #f9fafb;
  }
  .text-gray-600 {
    color: #374151;
  }
  .text-gray-800 {
    color: #1f2937;
  }
}
.lineup-section th {
  background-color: #DCD1B5;
  padding: 5px;
}

.lineup-section td {
  padding: 5px;
}

.gift-flame {
  width: 95%;
  margin: 0 auto;
}

:root {
  --primary-color: #6B5112;
  --text-color: #000000;
  --light-gray: #F1F1F1;
  --border-color: #D9D9D9;
}

/* Base styles */
body {
  font-family: "Shippori Mincho", serif;
  line-height: 1.6;
  color: var(--text-color);
}

/* レスポンシブデザイン用のユーティリティクラス */
.pc-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* タブレットサイズ（768px以下）でモバイル表示に切り替え */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
/* モバイルセクションのスタイル */
.mobile-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* 通知システム */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 400px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-text {
  flex: 1;
  margin-right: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #374151;
}

.notification-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.notification-close:hover {
  background-color: #f3f4f6;
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* ホバーエフェクト */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* カスタムスクロールバー */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #d97706;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b45309;
}

/* フォーカススタイル */
input:focus,
textarea:focus,
button:focus {
  outline: none;
  ring: 2px;
  ring-color: #d97706;
}

/* レスポンシブ画像 */
img {
  max-width: 100%;
  height: auto;
}

/* Case study specific styles */
.case-section {
  padding: 5rem 2rem;
}

.case-section .case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .case-section .case-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.case-section .case-content .case-number {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.case-section .case-content .case-number h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.case-section .case-content .case-number .divider {
  width: 22px;
  height: 1px;
  background-color: var(--primary-color);
}

.case-section .case-content .case-title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.case-section .case-content .case-description {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.case-section .case-content .case-quote {
  font-size: 38px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.4;
}

/* Quote sections */
.quote-section {
  padding: 4rem 2rem;
}

.quote-section .quote-container {
  max-width: 4xl;
  margin: 0 auto;
}

.quote-section .quote-container .quote-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.quote-section .quote-container .quote-content .quote-line {
  width: 1px;
  height: 16rem;
  background-color: var(--text-color);
}

.quote-section .quote-container .quote-content .quote-text {
  flex: 1;
}

.quote-section .quote-container .quote-content .quote-text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

/* Divider */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.section-divider .divider-line {
  width: 100%;
  max-width: 80rem;
  height: 2px;
  border-top: 2px dashed var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeIn 0.6s ease-in-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .case-section .case-content .case-quote {
    font-size: 28px;
  }
  .quote-section .quote-container .quote-content {
    flex-direction: column;
    gap: 1rem;
  }
  .quote-section .quote-container .quote-content .quote-line {
    height: 1px;
    width: 100%;
  }
}
/* Animation delays for staggered effects */
.case-section:nth-child(2) .case-content {
  animation-delay: 0.2s;
}

.case-section:nth-child(4) .case-content {
  animation-delay: 0.4s;
}

.case-section:nth-child(6) .case-content {
  animation-delay: 0.6s;
}

/* Additional utility classes */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-in-out forwards;
}

/* Focus states for accessibility */
button:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --text-color: #000000;
  }
}
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* 印刷用スタイル */
@media print {
  .pc-only {
    display: block !important;
  }
  .mobile-only {
    display: none !important;
  }
  .notification {
    display: none !important;
  }
}
.cp_qa01 .cp_actab input {
  display: none;
}

/*質問テキスト*/
.cp_qa01 .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 1px;
  color: #1b2538;
  background-color: #DCD1B5;
}

.cp_qa01 .cp_actab label {
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 0 0;
  padding: 1em 2em 1em 1em;
  cursor: pointer;
  border-top: 1px solid #000;
  position: relative;
  padding-left: 44px;
}
.cp_qa01 .cp_actab label::before {
  content: "Q.";
  position: absolute;
  top: 16px;
  left: 18px;
}

.cp_qa01 .cp_actab .cp_actab-content {
  padding-left: 30px;
  position: relative;
}
.cp_qa01 .cp_actab .cp_actab-content::before {
  content: "A.";
  position: absolute;
  top: 16px;
  left: 18px;
}

.cp_qa01 .cp_actab .cp_actab-content p {
  margin: 1em;
}

.cp_qa01 .cp_actab label:hover {
  color: #6B5112;
}

.cp_qa01 .cp_actab input:checked ~ label {
  color: #6B5112;
  border-bottom: 1px dotted #000;
}

/*答えテキスト*/
.cp_qa01 .cp_actab .cp_actab-content {
  overflow: hidden;
  max-height: 0;
  color: #000;
  background-color: #fff;
  transition: max-height 0.5s ease;
}

.cp_qa01 .cp_actab input:checked ~ .cp_actab-content {
  max-height: 40em;
}

/*▼アイコン*/
.cp_qa01 .cp_actab label::after {
  position: absolute;
  content: "";
  right: 10px;
  width: 15px;
  height: 10px;
  background: #1b2538;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  transition: all 0.5s ease;
}

.cp_qa01 .cp_actab label:hover::after {
  background: #6B5112;
}

.cp_qa01 .cp_actab input[type=checkbox]:checked + label::after {
  transform: rotateX(180deg);
  background: #6B5112;
}

/* Demo Image - 画面いっぱいに表示 */
.demo-img {
  position: relative;
  margin: 0 calc(50% - 50vw);
  margin-bottom: -120px;
  width: 100vw;
  height: 300px;
  z-index: -1;
  max-width: 100vw;
  /* 横スクロール防止 */
}

.contact-up {
  width: 100vw !important;
  margin: calc(50% - 50vw) !important;
  max-width: 100vw;
  /* 横スクロール防止 */
}

/* チェックボックスのスタイル */
input[type=checkbox] {
  accent-color: #6B5112;
}

input[type=checkbox]:checked {
  background-color: #6B5112;
  border-color: #6B5112;
}

/* 角切り見出しデザイン */
.flow-title {
  position: absolute;
  top: -20px;
  left: 20px;
  display: inline-block;
  background: linear-gradient(135deg, #5D3F30 0%, #A47A0F 50%, #5D3F30 100%);
  color: white;
  padding: 12px 38px 12px 20px;
  font-weight: bold;
  font-size: 18px;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  z-index: 10;
}
@media (min-width: 768px) {
  .flow-title {
    font-size: 20px;
    padding: 16px 24px;
    top: -24px;
  }
}

/* スマホ版の06の見出しを+10px上に配置 */
@media (max-width: 767px) {
  .flow-title-step6 {
    top: -30px;
  }
}
/* 白背景コンテナのスタイル */
.flow-content-container {
  position: relative;
  margin-top: 20px;
}
.flow-content-container p {
  font-size: 14px;
  /* 18px - 4px = 14px */
}
@media (min-width: 768px) {
  .flow-content-container p {
    font-size: 18px;
    /* PC版は元のサイズ */
  }
}
@media (min-width: 768px) {
  .flow-content-container {
    margin-top: 24px;
  }
}

/* 導入事例セクションのフォントサイズ調整 */
.mobile-section h2 {
  font-size: 28px;
  /* 32px - 4px = 28px */
}
@media (min-width: 768px) {
  .mobile-section h2 {
    font-size: 36px;
    /* 40px - 4px = 36px */
  }
}
.mobile-section p {
  font-size: 16px;
  /* 18px - 2px = 16px */
}
@media (min-width: 768px) {
  .mobile-section p {
    font-size: 18px;
    /* PC版は元のサイズ */
  }
}
.mobile-section h3 {
  font-size: 16px;
  /* 18px - 2px = 16px */
}
.mobile-section h4 {
  font-size: 20px;
  /* 24px - 4px = 20px */
}
.mobile-section .text-2xl {
  font-size: 20px;
  /* 24px - 4px = 20px */
}

/* 箇条書きのフォントサイズ調整 */
.worry-text p {
  font-size: 16px;
  /* 18px - 2px = 16px */
}

/* 導入事例の引用文のフォントサイズ調整 */
.mobile-section .flex-1 p {
  font-size: 13px;
  /* 18px - 5px = 13px */
}

/* 導入事例のタイトルのline-height調整 */
.mobile-section .space-y-6 p {
  line-height: 1.6;
  /* より読みやすい行間 */
}

/* カフェ・ベーカリーの新規開業者様の見出しスタイル */
.cafe-opening-title {
  background-color: #6B5112;
  /* 茶色背景 */
  color: white;
  /* 白色フォント */
  padding: 12px 7px;
  border-radius: 0 0 25px 25px;
  /* 下部のみ角丸 */
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: inline-block;
  text-align: center;
  /* テキスト中央寄せ */
  width: 100%;
  /* 白カードの100%の長さ */
  margin: 0 auto;
  /* 中央配置 */
}

/* LINEUPタイトルのスタイル（cp_h1titleを参考） */
.lineup-title {
  position: relative;
  color: #ffffff;
  background: #000000;
  display: block;
  width: 80%;
  padding: 0.5rem 2rem;
  margin: 15px auto;
  transform: skewX(150deg);
  /*傾斜をつける*/
}

.lineup-title span {
  display: block;
  transform: skewX(-150deg);
  /*テキストのみ傾斜を戻す*/
  font-size: 1.125rem;
  /* 1.375rem - 4px = 1.125rem */
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* LINEUP番号と線のスタイル */
.lineup-header {
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lineup-line {
  width: 10px;
  height: 2px;
  background-color: #666666;
  margin-bottom: 0.15rem;
}

.lineup-number {
  font-size: 2.2rem;
  font-weight: bold;
  color: #666666;
  letter-spacing: normal;
}

.lineup-digit {
  font-size: 2.86rem;
  /*2.2rem × 1.3 = 2.86rem */
}

/* 寸法・重量の文字を折り返さない */
.lineup-section table th {
  white-space: nowrap;
}

.form2 input {
  background-color: #F8F6EF;
  margin-bottom: 30px;
}
.form2 label {
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}

.wpcf7-list-item-label::before {
  top: 12px;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  top: 14px !important;
}

input[type=submit] {
  font-size: 15px;
  color: #fff;
  background-color: #000000;
  font-family: "Shippori Mincho", serif !important;
  border: none !important;
}

/**************?
footer
/*************/
.l-footer a {
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.2s linear 0s;
  color: #fff;
  padding: 10px 0;
  display: block;
  font-weight: 400;
}

.l-footer a:hover {
  opacity: 0.7;
}

@media (min-width: 992px) {
  .l-footer {
    display: block;
    width: 100%;
  }
  .lineup-title span {
    display: block;
    transform: skewX(-150deg);
    /*テキストのみ傾斜を戻す*/
    font-size: 2rem;
    line-height: 1.7;
    /* 1.375rem - 4px = 1.125rem */
    font-weight: bold;
    letter-spacing: 0.1em;
  }
}
.l-footer__nav-items {
  width: 75%;
}

.l-footer__nav-items ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px auto 0;
}

@media (min-width: 992px) {
  .l-footer__nav-items ul {
    margin: 0 auto 0px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.l-footer__nav-items ul > li {
  display: block;
}

@media (min-width: 992px) {
  .l-footer__nav-items ul > li {
    padding: 10px 40px;
  }
}
.l-footer__copyright {
  font-size: 10px;
  color: #ffffff;
  display: block;
  font-weight: 400;
  padding: 10px 0 90px;
  background-color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.6px;
}

@media (min-width: 768px) {
  .l-footer__copyright {
    font-size: 15px;
    padding: 10px 70px 10px 0;
  }
}
.l-footer__vertical-line {
  width: 1px;
  height: 110px;
  background-color: #b2b2b2;
}

/***********************************************
    cv ボタン　最下部固定
    ************************************************/
.l-footer-cv {
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 800;
  font-size: 15px;
  font-weight: 700;
  background-color: #ffffff;
  height: 75px;
  width: 100%;
}

@media (min-width: 992px) {
  .l-footer-cv {
    display: none;
  }
}
a.l-footer-cv__btn {
  width: 50%;
  padding: 27px;
  text-align: center;
  border-right: solid 1px #fff;
  line-height: 1.5;
  color: #333 !important;
  display: block;
  width: 50%;
  height: 100%;
  background-color: #DCC878;
  padding: 27px 0px;
  font-size: 14px;
}

a.l-footer-cv__btn::after {
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 42%;
  right: 10px;
}

@media (min-width: 992px) {
  a.l-footer-cv__btn {
    width: 320px;
    height: 75px;
    right: 0;
    background-color: #DCC878;
    color: #333;
    font-size: 16px;
    padding: 25px;
  }
  a.l-footer-cv__btn::after {
    border-color: #DCC878;
    right: 20px;
  }
  a.l-footer-cv__btn.--pc {
    padding: 25px;
    background-color: #DCC878;
    color: #fff;
  }
  a.l-footer-cv__btn.--pc::after {
    border-color: #fff;
  }
}
@media (min-width: 992px) {
  .l-footer__text-small {
    font-size: 11px;
  }
}
.l-footer-cv__sp {
  display: inline;
}

@media (min-width: 992px) {
  .l-footer-cv__sp {
    display: none;
  }
}
.l-footer__wrapper {
  margin-top: 40px;
  color: #fff;
}

.l-footer__logo-nav-flex {
  display: none;
}

@media (min-width: 992px) {
  .l-footer__logo-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
  }
}
.l-footer__nav {
  margin-top: 30px;
  padding: 15px 0;
}

.l-footer__nav ul {
  display: none;
}

@media (min-width: 992px) {
  .l-footer__nav ul {
    display: flex;
    justify-content: center;
  }
}
.l-footer__nav ul > li {
  font-weight: 700;
}

@media (min-width: 992px) {
  .l-footer__nav ul > li {
    padding: 30px 15px;
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .l-footer__nav ul > li {
    padding: 30px 30px;
    font-size: 22px;
  }
}
.l-footer__nav ul > li a {
  transition: all 0.2s linear 0s;
  /*********フッターナビゲーション文字の色********/
  color: #fff;
}

.l-footer__nav ul > li a:hover {
  opacity: 0.7;
}

.l-footer__logo {
  transition: all 0.2s linear 0s;
  display: block;
}

.l-footer__logo:hover {
  opacity: 0.7;
}

@media (min-width: 992px) {
  .l-footer__logo {
    width: 99px;
  }
}
.l-footer__info {
  margin: 16px 0 9px 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: normal;
  text-align: left;
  color: #333;
}

.l-footer__contact-bg {
  padding: 30px 0 20px;
  margin: 30px 0 0 0;
  background-color: #fafafa;
}

@media (min-width: 992px) {
  .l-footer__contact-bg {
    padding: 80px 0;
    margin: 0;
  }
}
.l-footer__coffee {
  background-image: url(../img/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 100%;
  height: 100px;
  background-color: #FBF6F3;
}

@media (min-width: 992px) {
  .l-footer__coffee {
    height: 250px;
    margin: -50px 0 0;
  }
}
.c-inner__center {
  min-width: 330px;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 992px) {
  .c-inner__center {
    width: 80%;
  }
}
.c-inner__left {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 992px) {
  .c-inner__left {
    width: 80%;
  }
}
.c-inner__left.--faq {
  max-width: 800px;
}

.c-inner__flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.c-inner__flex.--sp_block {
  display: block;
}

@media (min-width: 992px) {
  .c-inner__flex.--sp_block {
    display: flex;
  }
}
.c-heading {
  text-align: center;
  margin: 65px 0 20px;
}

.c-heading__jp {
  font-size: 29px;
  font-weight: 600;
  color: #133369;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .c-heading__jp {
    font-size: 38px;
  }
}
.c-heading__jp span {
  font-size: 60%;
}

.c-heading__en {
  display: inline-block;
  margin-top: -10px;
  font-size: 14px;
  text-align: center;
  color: #000;
  padding: 20px 0;
  position: relative;
}

.c-heading__en::before,
.c-heading__en::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #133369;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
}

.c-heading__en::after {
  left: auto;
  right: -30px;
}

.p-s6__text {
  font-size: 15px;
  line-height: 1.75;
}

@media (min-width: 992px) {
  .p-s6__text {
    font-size: 17px;
  }
}
.c-icon {
  position: relative;
}

.c-icon::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.c-icon::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.ho-image {
  width: 800px;
  height: auto;
  margin: 80px auto 20px;
}
@media (max-width: 992px) {
  .ho-image {
    width: 100%;
    margin: 0 auto;
  }
}

.worry-text p {
  font-size: 17px;
}
@media (min-width: 993px) {
  .worry-text p {
    font-size: 23px;
  }
}

.effect-title {
  font-size: 26px;
}
@media (min-width: 993px) {
  .effect-title {
    font-size: 36px;
  }
}

.effect-section .max-w-4xl p {
  font-size: 17px;
}
@media (min-width: 993px) {
  .effect-section .max-w-4xl p {
    font-size: 23px;
  }
}

.lineup-section th {
  background-color: #DCD1B5;
  padding: 10px;
}
.lineup-section td {
  padding: 10px;
}
@media (min-width: 768px) {
  .lineup-section th {
    padding-left: 50px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 40%;
  }
  .lineup-section td {
    padding-left: 50px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 60%;
  }
  .lineup-section table {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .lineup-section tr {
    border-bottom: 1px solid #000;
  }
}

@media (max-width: 767px) {
  .lineup-section .text-center.pt-16.my-12 {
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
}
/* サポートカード *パソコンで絶対値配置にして表現する**/
.card-wrapper {
  width: 90%;
  height: 156vw;
  max-height: 1870px;
  max-width: 1200px;
  margin: 10px auto;
  position: relative;
}
@media (max-width: 767px) {
  .card-wrapper {
    width: 90%;
    height: auto;
  }
}

.support-card {
  width: 45%;
  max-width: 580px;
}
.support-card.--1 {
  position: absolute;
  top: 0;
  left: 0;
}
.support-card.--2 {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) !important;
}
.support-card.--3 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .support-card {
    margin: 0 auto;
    width: 100%;
    padding: 0;
  }
  .support-card.--1, .support-card.--2, .support-card.--3 {
    position: relative;
    top: 0;
    left: auto;
    right: auto;
    transform: translateY(0%) !important;
  }
}

.support-lineheight {
  padding-top: 10px;
  line-height: 2.3;
}
@media (max-width: 767px) {
  .support-lineheight {
    margin: 0 auto;
    line-height: 1.6;
  }
}

.machine-pd {
  padding-left: 100px;
}
@media (max-width: 767px) {
  .machine-pd {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .ho-img {
    overflow-x: hidden;
  }
  .ho-img img {
    width: auto;
    height: 60px !important;
    object-fit: cover;
  }
}

.case-img {
  margin-right: calc(50% - 37vw);
}
.case-img.--2 {
  margin-right: 0;
  margin-left: calc(50% - 29vw);
}

.case-title {
  color: #6B5112;
  font-family: "Shippori Mincho";
  font-size: 38.933px;
  font-style: normal;
  font-weight: 600;
  line-height: 73px;
  /* 187.5% */
}

.case-link {
  color: #000;
  font-family: "Shippori Mincho";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.case-sub-text {
  color: #000;
  font-family: "Shippori Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 160% */
}

.case-content {
  color: #000;
  text-align: center;
  font-family: "Shippori Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  /* 180% */
}

@media (max-width: 767px) {
  .case-title {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.7;
    /* 187.5% */
  }
  .case-link {
    font-size: 15px;
  }
  .case-sub-text {
    font-size: 17px;
  }
  .case-content {
    font-size: 16px;
  }
}
.contact-red {
  color: #FF0000;
}
